]> git.sur5r.net Git - openldap/blob - servers/slapd/search.c
Apply ITS#12 fix 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, *fstr;
34         Filter          *filter;
35         char            **attrs;
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                 return;
69         }
70         if ( scope != LDAP_SCOPE_BASE && scope != LDAP_SCOPE_ONELEVEL
71             && scope != LDAP_SCOPE_SUBTREE ) {
72                 free( base );
73                 send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR, NULL,
74                     "Unknown search scope" );
75                 return;
76         }
77         (void) dn_normalize( 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         filter = NULL;
85         fstr = NULL;
86         if ( (err = get_filter( conn, op->o_ber, &filter, &fstr )) != 0 ) {
87                 if ( fstr != NULL ) {
88                         free( fstr );
89                 }
90                 free( base );
91                 send_ldap_result( conn, op, err, NULL, "Bad search filter" );
92                 return;
93         }
94         Debug( LDAP_DEBUG_ARGS, "    filter: %s\n", fstr, 0, 0 );
95
96         /* attributes */
97         attrs = NULL;
98         if ( ber_scanf( op->o_ber, "{v}}", &attrs ) == LBER_ERROR ) {
99                 free( base );
100                 free( fstr );
101                 send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR, NULL, "" );
102                 return;
103         }
104         Debug( LDAP_DEBUG_ARGS, "    attrs:", 0, 0, 0 );
105         if ( attrs != NULL ) {
106                 for ( i = 0; attrs[i] != NULL; i++ ) {
107                         attr_normalize( attrs[i] );
108                         Debug( LDAP_DEBUG_ARGS, " %s", attrs[i], 0, 0 );
109                 }
110         }
111         Debug( LDAP_DEBUG_ARGS, "\n", 0, 0, 0 );
112
113         Statslog( LDAP_DEBUG_STATS,
114             "conn=%d op=%d SRCH base=\"%s\" scope=%d filter=\"%s\"\n",
115             conn->c_connid, op->o_opid, base, scope, fstr );
116
117 #if defined( SLAPD_MONITOR_DN ) || defined( SLAPD_CONFIG_DN ) || defined( SLAPD_SCHEMA_DN )
118         if ( scope == LDAP_SCOPE_BASE ) {
119 #if defined( SLAPD_MONITOR_DN )
120                 if ( strcasecmp( base, SLAPD_MONITOR_DN ) == 0 ) {
121                         free( base );
122                         free( fstr );
123                         monitor_info( conn, op );
124                         return;
125                 }
126 #endif
127 #if defined( SLAPD_CONFIG_DN )
128                 if ( strcasecmp( base, SLAPD_CONFIG_DN ) == 0 ) {
129                         free( base );
130                         free( fstr );
131                         config_info( conn, op );
132                         return;
133                 }
134 #endif
135 #if defined( SLAPD_SCHEMA_DN )
136                 if ( strcasecmp( base, SLAPD_SCHEMA_DN ) == 0 ) {
137                         free( base );
138                         free( fstr );
139                         schema_info( conn, op );
140                         return;
141                 }
142 #endif
143         }
144 #endif /* monitor or config or schema dn */
145
146         /*
147          * We could be serving multiple database backends.  Select the
148          * appropriate one, or send a referral to our "referral server"
149          * if we don't hold it.
150          */
151         if ( (be = select_backend( base )) == NULL ) {
152                 send_ldap_result( conn, op, LDAP_PARTIAL_RESULTS, NULL,
153                     default_referral );
154
155                 free( base );
156                 free( fstr );
157                 filter_free( filter );
158                 if ( attrs != NULL ) {
159                         charray_free( attrs );
160                 }
161                 return;
162         }
163
164         /* translate the base if it matches an aliased base part */
165         base = suffixAlias ( base, op, be );
166
167         /* actually do the search and send the result(s) */
168         if ( be->be_search != NULL ) {
169                 (*be->be_search)( be, conn, op, base, scope, deref, sizelimit,
170                     timelimit, filter, fstr, attrs, attrsonly );
171         } else {
172                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
173                     "Function not implemented" );
174         }
175
176         free( base );
177         free( fstr );
178         filter_free( filter );
179         if ( attrs != NULL ) {
180                 charray_free( attrs );
181         }
182 }