]> git.sur5r.net Git - openldap/blob - servers/slapd/search.c
Fix maxDeref directive
[openldap] / servers / slapd / search.c
1 /*
2  * Copyright (c) 1995 Regents of the University of Michigan.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of Michigan at Ann Arbor. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  */
12
13 #include "portable.h"
14
15 #include <stdio.h>
16
17 #include <ac/string.h>
18 #include <ac/socket.h>
19
20 #include "ldap_defaults.h"
21 #include "slap.h"
22
23
24 int
25 do_search(
26     Connection  *conn,  /* where to send results                       */
27     Operation   *op     /* info about the op to which we're responding */
28 )
29 {
30         int             i, err;
31         ber_int_t               scope, deref, attrsonly;
32         ber_int_t               sizelimit, timelimit;
33         char            *base = NULL, *fstr = NULL;
34         Filter          *filter = NULL;
35         char            **attrs = NULL;
36         Backend         *be;
37         int                     rc;
38
39         Debug( LDAP_DEBUG_TRACE, "do_search\n", 0, 0, 0 );
40
41         if( op->o_bind_in_progress ) {
42                 Debug( LDAP_DEBUG_ANY, "do_search: SASL bind in progress.\n",
43                         0, 0, 0 );
44                 send_ldap_result( conn, op, LDAP_SASL_BIND_IN_PROGRESS,
45                         NULL, "SASL bind in progress", NULL, NULL );
46                 return LDAP_SASL_BIND_IN_PROGRESS;
47         }
48
49         /*
50          * Parse the search request.  It looks like this:
51          *
52          *      SearchRequest := [APPLICATION 3] SEQUENCE {
53          *              baseObject      DistinguishedName,
54          *              scope           ENUMERATED {
55          *                      baseObject      (0),
56          *                      singleLevel     (1),
57          *                      wholeSubtree    (2)
58          *              },
59          *              derefAliases    ENUMERATED {
60          *                      neverDerefaliases       (0),
61          *                      derefInSearching        (1),
62          *                      derefFindingBaseObj     (2),
63          *                      alwaysDerefAliases      (3)
64          *              },
65          *              sizelimit       INTEGER (0 .. 65535),
66          *              timelimit       INTEGER (0 .. 65535),
67          *              attrsOnly       BOOLEAN,
68          *              filter          Filter,
69          *              attributes      SEQUENCE OF AttributeType
70          *      }
71          */
72
73         /* baseObject, scope, derefAliases, sizelimit, timelimit, attrsOnly */
74         if ( ber_scanf( op->o_ber, "{aiiiib",
75                 &base, &scope, &deref, &sizelimit,
76             &timelimit, &attrsonly ) == LBER_ERROR ) {
77                 send_ldap_disconnect( conn, op,
78                         LDAP_PROTOCOL_ERROR, "decoding error" );
79                 rc = -1;
80                 goto return_results;
81         }
82
83         switch( scope ) {
84         case LDAP_SCOPE_BASE:
85         case LDAP_SCOPE_ONELEVEL:
86         case LDAP_SCOPE_SUBTREE:
87                 break;
88         default:
89                 send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR,
90                         NULL, "invalid scope", NULL, NULL );
91                 rc = -1;
92                 goto return_results;
93         }
94
95         switch( deref ) {
96         case LDAP_DEREF_NEVER:
97         case LDAP_DEREF_FINDING:
98         case LDAP_DEREF_SEARCHING:
99         case LDAP_DEREF_ALWAYS:
100                 break;
101         default:
102                 send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR,
103                         NULL, "invalid deref", NULL, NULL );
104                 rc = -1;
105                 goto return_results;
106         }
107
108         (void) dn_normalize_case( base );
109
110         Debug( LDAP_DEBUG_ARGS, "SRCH \"%s\" %d %d", base, scope, deref );
111         Debug( LDAP_DEBUG_ARGS, "    %d %d %d\n", sizelimit, timelimit,
112             attrsonly);
113
114         /* filter - returns a "normalized" version */
115         if ( (err = get_filter( conn, op->o_ber, &filter, &fstr )) != 0 ) {
116                 if( err == -1 ) {
117                         send_ldap_disconnect( conn, op,
118                                 LDAP_PROTOCOL_ERROR, "decode error" );
119                 } else {
120                         send_ldap_result( conn, op, err,
121                                 NULL, "Bad search filter", NULL, NULL );
122                 }
123                 goto return_results;
124         }
125
126         Debug( LDAP_DEBUG_ARGS, "    filter: %s\n", fstr, 0, 0 );
127
128         /* attributes */
129         if ( ber_scanf( op->o_ber, /*{*/ "{v}}", &attrs ) == LBER_ERROR ) {
130                 send_ldap_disconnect( conn, op,
131                         LDAP_PROTOCOL_ERROR, "decoding error" );
132                 rc = -1;
133                 goto return_results;
134         }
135
136         if( (rc = get_ctrls( conn, op, 1 )) != LDAP_SUCCESS ) {
137                 Debug( LDAP_DEBUG_ANY, "do_search: get_ctrls failed\n", 0, 0, 0 );
138                 goto return_results;
139         } 
140
141         rc = 0;
142
143         Debug( LDAP_DEBUG_ARGS, "    attrs:", 0, 0, 0 );
144
145         if ( attrs != NULL ) {
146                 for ( i = 0; attrs[i] != NULL; i++ ) {
147                         attr_normalize( attrs[i] );
148                         Debug( LDAP_DEBUG_ARGS, " %s", attrs[i], 0, 0 );
149                 }
150         }
151
152         Debug( LDAP_DEBUG_ARGS, "\n", 0, 0, 0 );
153
154         Statslog( LDAP_DEBUG_STATS,
155             "conn=%d op=%d SRCH base=\"%s\" scope=%d filter=\"%s\"\n",
156             op->o_connid, op->o_opid, base, scope, fstr );
157
158         if ( scope == LDAP_SCOPE_BASE ) {
159 #if defined( SLAPD_MONITOR_DN )
160                 if ( strcmp( base, SLAPD_MONITOR_DN ) == 0 ) {
161                         monitor_info( conn, op );
162                         goto return_results;
163                 }
164 #endif
165
166 #if defined( SLAPD_CONFIG_DN )
167                 if ( strcmp( base, SLAPD_CONFIG_DN ) == 0 ) {
168                         config_info( conn, op );
169                         goto return_results;
170                 }
171 #endif
172
173 #if defined( SLAPD_SCHEMA_DN )
174                 if ( strcmp( base, SLAPD_SCHEMA_DN ) == 0 ) {
175                         schema_info( conn, op, attrs, attrsonly );
176                         goto return_results;
177                 }
178 #endif
179
180                 if ( strcmp( base, LDAP_ROOT_DSE ) == 0 ) {
181                         root_dse_info( conn, op, attrs, attrsonly );
182                         goto return_results;
183                 }
184         }
185
186         /*
187          * We could be serving multiple database backends.  Select the
188          * appropriate one, or send a referral to our "referral server"
189          * if we don't hold it.
190          */
191         if ( (be = select_backend( base )) == NULL ) {
192                 send_ldap_result( conn, op, rc = LDAP_REFERRAL,
193                         NULL, NULL, default_referral, NULL );
194
195                 goto return_results;
196         }
197
198         /* actually do the search and send the result(s) */
199         if ( be->be_search ) {
200                 (*be->be_search)( be, conn, op, base, scope, deref, sizelimit,
201                     timelimit, filter, fstr, attrs, attrsonly );
202         } else {
203                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
204                         NULL, "Function not implemented", NULL, NULL );
205         }
206
207 return_results:;
208         if( base != NULL) free( base );
209         if( fstr != NULL) free( fstr );
210         if( filter != NULL) filter_free( filter );
211         if ( attrs != NULL ) {
212                 charray_free( attrs );
213         }
214
215         return rc;
216 }