]> git.sur5r.net Git - openldap/blob - servers/slapd/search.c
Import slapd nextid chunking from -devel.
[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 "ldapconfig.h"
21 #include "slap.h"
22
23
24 void
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         int             scope, deref, attrsonly;
32         int             sizelimit, timelimit;
33         char            *base = NULL, *fstr = NULL;
34         Filter          *filter = NULL;
35         char            **attrs = NULL;
36         Backend         *be;
37
38         Debug( LDAP_DEBUG_TRACE, "do_search\n", 0, 0, 0 );
39
40         /*
41          * Parse the search request.  It looks like this:
42          *
43          *      SearchRequest := [APPLICATION 3] SEQUENCE {
44          *              baseObject      DistinguishedName,
45          *              scope           ENUMERATED {
46          *                      baseObject      (0),
47          *                      singleLevel     (1),
48          *                      wholeSubtree    (2)
49          *              },
50          *              derefAliases    ENUMERATED {
51          *                      neverDerefaliases       (0),
52          *                      derefInSearching        (1),
53          *                      derefFindingBaseObj     (2),
54          *                      alwaysDerefAliases      (3)
55          *              },
56          *              sizelimit       INTEGER (0 .. 65535),
57          *              timelimit       INTEGER (0 .. 65535),
58          *              attrsOnly       BOOLEAN,
59          *              filter          Filter,
60          *              attributes      SEQUENCE OF AttributeType
61          *      }
62          */
63
64         /* baseObject, scope, derefAliases, sizelimit, timelimit, attrsOnly */
65         if ( ber_scanf( op->o_ber, "{aiiiib", &base, &scope, &deref, &sizelimit,
66             &timelimit, &attrsonly ) == LBER_ERROR ) {
67                 send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR, NULL, "" );
68                 goto return_results;
69         }
70         if ( scope != LDAP_SCOPE_BASE && scope != LDAP_SCOPE_ONELEVEL
71             && scope != LDAP_SCOPE_SUBTREE ) {
72                 send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR, NULL,
73                     "Unknown search scope" );
74                 goto return_results;
75         }
76
77         (void) dn_normalize_case( base );
78
79         Debug( LDAP_DEBUG_ARGS, "SRCH \"%s\" %d %d", base, scope, deref );
80         Debug( LDAP_DEBUG_ARGS, "    %d %d %d\n", sizelimit, timelimit,
81             attrsonly);
82
83         /* filter - returns a "normalized" version */
84         if ( (err = get_filter( conn, op->o_ber, &filter, &fstr )) != 0 ) {
85                 send_ldap_result( conn, op, err, NULL, "Bad search filter" );
86                 goto return_results;
87         }
88         Debug( LDAP_DEBUG_ARGS, "    filter: %s\n", fstr, 0, 0 );
89
90         /* attributes */
91         if ( ber_scanf( op->o_ber, "{v}}", &attrs ) == LBER_ERROR ) {
92                 send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR, NULL, "" );
93                 goto return_results;
94         }
95
96         Debug( LDAP_DEBUG_ARGS, "    attrs:", 0, 0, 0 );
97         if ( attrs != NULL ) {
98                 for ( i = 0; attrs[i] != NULL; i++ ) {
99                         attr_normalize( attrs[i] );
100                         Debug( LDAP_DEBUG_ARGS, " %s", attrs[i], 0, 0 );
101                 }
102         }
103         Debug( LDAP_DEBUG_ARGS, "\n", 0, 0, 0 );
104
105         Statslog( LDAP_DEBUG_STATS,
106             "conn=%d op=%d SRCH base=\"%s\" scope=%d filter=\"%s\"\n",
107             conn->c_connid, op->o_opid, base, scope, fstr );
108
109 #if defined( SLAPD_MONITOR_DN ) || defined( SLAPD_CONFIG_DN ) || defined( SLAPD_SCHEMA_DN )
110         if ( scope == LDAP_SCOPE_BASE ) {
111 #if defined( SLAPD_MONITOR_DN )
112                 if ( strcmp( base, SLAPD_MONITOR_DN ) == 0 ) {
113                         monitor_info( conn, op );
114                         goto return_results;
115                 }
116 #endif
117 #if defined( SLAPD_CONFIG_DN )
118                 if ( strcmp( base, SLAPD_CONFIG_DN ) == 0 ) {
119                         config_info( conn, op );
120                         goto return_results;
121                 }
122 #endif
123 #if defined( SLAPD_SCHEMA_DN )
124                 if ( strcmp( base, SLAPD_SCHEMA_DN ) == 0 ) {
125                         schema_info( conn, op );
126                         goto return_results;
127                 }
128 #endif
129         }
130 #endif /* monitor or config or schema dn */
131
132         /*
133          * We could be serving multiple database backends.  Select the
134          * appropriate one, or send a referral to our "referral server"
135          * if we don't hold it.
136          */
137         if ( (be = select_backend( base )) == NULL ) {
138                 send_ldap_result( conn, op, LDAP_PARTIAL_RESULTS, NULL,
139                     default_referral );
140
141                 goto return_results;
142         }
143
144         /* translate the base if it matches an aliased base part */
145         base = suffixAlias ( base, op, be );
146
147         /* actually do the search and send the result(s) */
148         if ( be->be_search != NULL ) {
149                 (*be->be_search)( be, conn, op, base, scope, deref, sizelimit,
150                     timelimit, filter, fstr, attrs, attrsonly );
151         } else {
152                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
153                     "Function not implemented" );
154         }
155
156 return_results:;
157         if( base != NULL) free( base );
158         if( fstr != NULL) free( fstr );
159         if( filter != NULL) filter_free( filter );
160         if ( attrs != NULL ) {
161                 charray_free( attrs );
162         }
163 }