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