]> git.sur5r.net Git - openldap/blob - servers/slapd/search.c
Add DNS SRV to error text
[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 int
29 do_search(
30     Connection  *conn,  /* where to send results                       */
31     Operation   *op     /* info about the op to which we're responding */
32 ) {
33         int             i;
34         ber_int_t               scope, deref, attrsonly;
35         ber_int_t               sizelimit, timelimit;
36         char            *base = NULL, *nbase = NULL, *fstr = NULL;
37         Filter          *filter = NULL;
38         char            **attrs = NULL;
39         Backend         *be;
40         int                     rc;
41         const char              *text;
42         int                     manageDSAit;
43
44 #ifdef NEW_LOGGING
45         LDAP_LOG(( "operation", LDAP_LEVEL_ENTRY,
46                    "do_search: conn %d\n", conn->c_connid ));
47 #else
48         Debug( LDAP_DEBUG_TRACE, "do_search\n", 0, 0, 0 );
49 #endif
50
51         /*
52          * Parse the search request.  It looks like this:
53          *
54          *      SearchRequest := [APPLICATION 3] SEQUENCE {
55          *              baseObject      DistinguishedName,
56          *              scope           ENUMERATED {
57          *                      baseObject      (0),
58          *                      singleLevel     (1),
59          *                      wholeSubtree    (2)
60          *              },
61          *              derefAliases    ENUMERATED {
62          *                      neverDerefaliases       (0),
63          *                      derefInSearching        (1),
64          *                      derefFindingBaseObj     (2),
65          *                      alwaysDerefAliases      (3)
66          *              },
67          *              sizelimit       INTEGER (0 .. 65535),
68          *              timelimit       INTEGER (0 .. 65535),
69          *              attrsOnly       BOOLEAN,
70          *              filter          Filter,
71          *              attributes      SEQUENCE OF AttributeType
72          *      }
73          */
74
75         /* baseObject, scope, derefAliases, sizelimit, timelimit, attrsOnly */
76         if ( ber_scanf( op->o_ber, "{aiiiib" /*}*/,
77                 &base, &scope, &deref, &sizelimit,
78             &timelimit, &attrsonly ) == LBER_ERROR ) {
79                 send_ldap_disconnect( conn, op,
80                         LDAP_PROTOCOL_ERROR, "decoding error" );
81                 rc = SLAPD_DISCONNECT;
82                 goto return_results;
83         }
84
85         switch( scope ) {
86         case LDAP_SCOPE_BASE:
87         case LDAP_SCOPE_ONELEVEL:
88         case LDAP_SCOPE_SUBTREE:
89                 break;
90         default:
91                 send_ldap_result( conn, op, rc = LDAP_PROTOCOL_ERROR,
92                         NULL, "invalid scope", NULL, NULL );
93                 goto return_results;
94         }
95
96         switch( deref ) {
97         case LDAP_DEREF_NEVER:
98         case LDAP_DEREF_FINDING:
99         case LDAP_DEREF_SEARCHING:
100         case LDAP_DEREF_ALWAYS:
101                 break;
102         default:
103                 send_ldap_result( conn, op, rc = LDAP_PROTOCOL_ERROR,
104                         NULL, "invalid deref", NULL, NULL );
105                 goto return_results;
106         }
107
108         nbase = ch_strdup( base );
109
110         if( dn_normalize( nbase ) == NULL ) {
111                 send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX,
112                         NULL, "invalid DN", NULL, NULL );
113                 goto return_results;
114         }
115
116 #ifdef NEW_LOGGING
117         LDAP_LOG(( "operation", LDAP_LEVEL_ARGS,
118                    "do_search \"%s\" %d %d %d %d %d\n", base, scope,
119                    deref, sizelimit, timelimit, attrsonly ));
120 #else
121         Debug( LDAP_DEBUG_ARGS, "SRCH \"%s\" %d %d", base, scope, deref );
122         Debug( LDAP_DEBUG_ARGS, "    %d %d %d\n", sizelimit, timelimit,
123             attrsonly);
124 #endif
125
126         /* filter - returns a "normalized" version */
127         rc = get_filter( conn, op->o_ber, &filter, &fstr, &text );
128         if( rc != LDAP_SUCCESS ) {
129                 if( rc == SLAPD_DISCONNECT ) {
130                         send_ldap_disconnect( conn, op,
131                                 LDAP_PROTOCOL_ERROR, text );
132                 } else {
133                         send_ldap_result( conn, op, rc,
134                                 NULL, text, NULL, NULL );
135                 }
136                 goto return_results;
137         }
138
139 #ifdef NEW_LOGGING
140         LDAP_LOG(( "operation", LDAP_LEVEL_ARGS,
141                    "do_search: conn %d  filter: %s\n", conn->c_connid, fstr ));
142 #else
143         Debug( LDAP_DEBUG_ARGS, "    filter: %s\n", fstr, 0, 0 );
144 #endif
145
146
147         /* attributes */
148         if ( ber_scanf( op->o_ber, /*{*/ "{v}}", &attrs ) == LBER_ERROR ) {
149                 send_ldap_disconnect( conn, op,
150                         LDAP_PROTOCOL_ERROR, "decoding attrs error" );
151                 rc = SLAPD_DISCONNECT;
152                 goto return_results;
153         }
154
155         if( (rc = get_ctrls( conn, op, 1 )) != LDAP_SUCCESS ) {
156 #ifdef NEW_LOGGING
157                 LDAP_LOG(( "operation", LDAP_LEVEL_INFO,
158                            "do_search: conn %d  get_ctrls failed (%d)\n",
159                            conn->c_connid, rc ));
160 #else
161                 Debug( LDAP_DEBUG_ANY, "do_search: get_ctrls failed\n", 0, 0, 0 );
162 #endif
163
164                 goto return_results;
165         } 
166
167         rc = 0;
168
169 #ifdef NEW_LOGGING
170         LDAP_LOG(( "operation", LDAP_LEVEL_ARGS,
171                    "do_search: conn %d  attrs:", conn->c_connid ));
172 #else
173         Debug( LDAP_DEBUG_ARGS, "    attrs:", 0, 0, 0 );
174 #endif
175
176
177         if ( attrs != NULL ) {
178                 for ( i = 0; attrs[i] != NULL; i++ ) {
179 #ifdef NEW_LOGGING
180                         LDAP_LOG(( "operation", LDAP_LEVEL_ARGS,
181                                    "do_search:     %s", attrs[i] ));
182 #else
183                         Debug( LDAP_DEBUG_ARGS, " %s", attrs[i], 0, 0 );
184 #endif
185
186                 }
187         }
188
189 #ifdef NEW_LOGGING
190         LDAP_LOG(( "operation", LDAP_LEVEL_ARGS, "\n" ));
191 #else
192         Debug( LDAP_DEBUG_ARGS, "\n", 0, 0, 0 );
193 #endif
194
195
196         Statslog( LDAP_DEBUG_STATS,
197             "conn=%ld op=%d SRCH base=\"%s\" scope=%d filter=\"%s\"\n",
198             op->o_connid, op->o_opid, base, scope, fstr );
199
200         if ( scope == LDAP_SCOPE_BASE ) {
201                 Entry *entry = NULL;
202
203                 if ( strcasecmp( nbase, LDAP_ROOT_DSE ) == 0 ) {
204                         rc = root_dse_info( conn, &entry, &text );
205                 }
206
207 #if defined( SLAPD_MONITOR_DN )
208                 else if ( strcasecmp( nbase, SLAPD_MONITOR_DN ) == 0 ) {
209                         rc = monitor_info( &entry, &text );
210                 }
211 #endif
212
213 #if defined( SLAPD_CONFIG_DN )
214                 else if ( strcasecmp( nbase, SLAPD_CONFIG_DN ) == 0 ) {
215                         rc = config_info( &entry, &text );
216                 }
217 #endif
218
219 #if defined( SLAPD_SCHEMA_DN )
220                 else if ( strcasecmp( nbase, SLAPD_SCHEMA_DN ) == 0 ) {
221                         rc= schema_info( &entry, &text );
222                 }
223 #endif
224
225                 if( rc != LDAP_SUCCESS ) {
226                         send_ldap_result( conn, op, rc,
227                                 NULL, text, NULL, NULL );
228                         goto return_results;
229
230                 } else if ( entry != NULL ) {
231                         rc = test_filter( NULL, conn, op,
232                                 entry, filter );
233
234                         if( rc == LDAP_COMPARE_TRUE ) {
235                                 send_search_entry( &backends[0], conn, op,
236                                         entry, attrs, attrsonly, NULL );
237                         }
238                         entry_free( entry );
239
240                         send_ldap_result( conn, op, LDAP_SUCCESS,
241                                 NULL, NULL, NULL, NULL );
242
243                         goto return_results;
244                 }
245         }
246
247         if( nbase[0] == '\0' && default_search_nbase != NULL ) {
248                 ch_free( base );
249                 ch_free( nbase );
250                 base = ch_strdup( default_search_base );
251                 nbase = ch_strdup( default_search_nbase );
252         }
253
254         manageDSAit = get_manageDSAit( op );
255
256         /*
257          * We could be serving multiple database backends.  Select the
258          * appropriate one, or send a referral to our "referral server"
259          * if we don't hold it.
260          */
261         if ( (be = select_backend( nbase, manageDSAit )) == NULL ) {
262                 send_ldap_result( conn, op, rc = LDAP_REFERRAL,
263                         NULL, NULL, default_referral, NULL );
264
265                 goto return_results;
266         }
267
268         /* check restrictions */
269         rc = backend_check_restrictions( be, conn, op, NULL, &text ) ;
270         if( rc != LDAP_SUCCESS ) {
271                 send_ldap_result( conn, op, rc,
272                         NULL, text, NULL, NULL );
273                 goto return_results;
274         }
275
276         /* check for referrals */
277         rc = backend_check_referrals( be, conn, op, base, nbase );
278         if ( rc != LDAP_SUCCESS ) {
279                 goto return_results;
280         }
281
282         /* deref the base if needed */
283         nbase = suffix_alias( be, nbase );
284
285         /* actually do the search and send the result(s) */
286         if ( be->be_search ) {
287                 (*be->be_search)( be, conn, op, base, nbase, scope, deref, sizelimit,
288                     timelimit, filter, fstr, attrs, attrsonly );
289         } else {
290                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
291                         NULL, "operation not supported within namingContext", NULL, NULL );
292         }
293
294 return_results:;
295         if( base != NULL) free( base );
296         if( nbase != NULL) free( nbase );
297         if( fstr != NULL) free( fstr );
298         if( filter != NULL) filter_free( filter );
299         if ( attrs != NULL ) {
300                 charray_free( attrs );
301         }
302
303         return rc;
304 }