]> git.sur5r.net Git - openldap/blob - servers/slapd/controls.c
9b98a911903660740d94a4f25fa7d9c739b06a10
[openldap] / servers / slapd / controls.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2004 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15
16 #include "portable.h"
17
18 #include <stdio.h>
19
20 #include <ac/string.h>
21 #include <ac/socket.h>
22
23 #include "slap.h"
24
25 #include "../../libraries/liblber/lber-int.h"
26
27 static SLAP_CTRL_PARSE_FN parseAssert;
28 static SLAP_CTRL_PARSE_FN parsePreRead;
29 static SLAP_CTRL_PARSE_FN parsePostRead;
30 static SLAP_CTRL_PARSE_FN parseProxyAuthz;
31 static SLAP_CTRL_PARSE_FN parseManageDSAit;
32 static SLAP_CTRL_PARSE_FN parseModifyIncrement;
33 static SLAP_CTRL_PARSE_FN parseNoOp;
34 static SLAP_CTRL_PARSE_FN parsePagedResults;
35 static SLAP_CTRL_PARSE_FN parseValuesReturnFilter;
36 static SLAP_CTRL_PARSE_FN parsePermissiveModify;
37 static SLAP_CTRL_PARSE_FN parseDomainScope;
38 static SLAP_CTRL_PARSE_FN parseTreeDelete;
39 static SLAP_CTRL_PARSE_FN parseSearchOptions;
40
41 #ifdef LDAP_CONTROL_SUBENTRIES
42 static SLAP_CTRL_PARSE_FN parseSubentries;
43 #endif
44
45 #undef sc_mask /* avoid conflict with Irix 6.5 <sys/signal.h> */
46
47 const struct berval slap_pre_read_bv = BER_BVC(LDAP_CONTROL_PRE_READ);
48 const struct berval slap_post_read_bv = BER_BVC(LDAP_CONTROL_POST_READ);
49
50 struct slap_control_ids slap_cids;
51
52 struct slap_control {
53         /* Control OID */
54         char *sc_oid;
55
56         /* The controlID for this control */
57         int sc_cid;
58
59         /* Operations supported by control */
60         slap_mask_t sc_mask;
61
62         /* Extended operations supported by control */
63         char **sc_extendedops;
64
65         /* Control parsing callback */
66         SLAP_CTRL_PARSE_FN *sc_parse;
67
68         LDAP_SLIST_ENTRY(slap_control) sc_next;
69 };
70
71 static LDAP_SLIST_HEAD(ControlsList, slap_control) controls_list
72         = LDAP_SLIST_HEAD_INITIALIZER(&controls_list);
73
74 /*
75  * all known request control OIDs should be added to this list
76  */
77 /*
78  * NOTE: initialize num_known_controls to 1 so that cid = 0 always
79  * addresses an undefined control; this allows to safely test for 
80  * well known controls even if they are not registered, e.g. if 
81  * they get moved to modules.  An example is sc_LDAPsync, which 
82  * is implemented in the syncprov overlay and thus, if configured 
83  * as dynamic module, may not be registered.  One side effect is that 
84  * slap_known_controls[0] == NULL, so it should always be used 
85  * starting from 1.
86  * FIXME: should we define the "undefined control" oid?
87  */
88 char *slap_known_controls[SLAP_MAX_CIDS+1];
89 static int num_known_controls = 1;
90
91 static char *proxy_authz_extops[] = {
92         LDAP_EXOP_MODIFY_PASSWD,
93         LDAP_EXOP_X_WHO_AM_I,
94         NULL
95 };
96
97 static struct slap_control control_defs[] = {
98         {  LDAP_CONTROL_ASSERT,
99                 (int)offsetof(struct slap_control_ids, sc_assert),
100                 SLAP_CTRL_HIDE|SLAP_CTRL_ACCESS, NULL,
101                 parseAssert, LDAP_SLIST_ENTRY_INITIALIZER(next) },
102         { LDAP_CONTROL_PRE_READ,
103                 (int)offsetof(struct slap_control_ids, sc_preRead),
104                 SLAP_CTRL_HIDE|SLAP_CTRL_DELETE|SLAP_CTRL_MODIFY|SLAP_CTRL_RENAME, NULL,
105                 parsePreRead, LDAP_SLIST_ENTRY_INITIALIZER(next) },
106         { LDAP_CONTROL_POST_READ,
107                 (int)offsetof(struct slap_control_ids, sc_postRead),
108                 SLAP_CTRL_HIDE|SLAP_CTRL_ADD|SLAP_CTRL_MODIFY|SLAP_CTRL_RENAME, NULL,
109                 parsePostRead, LDAP_SLIST_ENTRY_INITIALIZER(next) },
110         { LDAP_CONTROL_VALUESRETURNFILTER,
111                 (int)offsetof(struct slap_control_ids, sc_valuesReturnFilter),
112                 SLAP_CTRL_SEARCH, NULL,
113                 parseValuesReturnFilter, LDAP_SLIST_ENTRY_INITIALIZER(next) },
114         { LDAP_CONTROL_PAGEDRESULTS,
115                 (int)offsetof(struct slap_control_ids, sc_pagedResults),
116                 SLAP_CTRL_SEARCH, NULL,
117                 parsePagedResults, LDAP_SLIST_ENTRY_INITIALIZER(next) },
118 #ifdef LDAP_CONTROL_X_DOMAIN_SCOPE
119         { LDAP_CONTROL_X_DOMAIN_SCOPE,
120                 (int)offsetof(struct slap_control_ids, sc_domainScope),
121                 SLAP_CTRL_FRONTEND|SLAP_CTRL_SEARCH, NULL,
122                 parseDomainScope, LDAP_SLIST_ENTRY_INITIALIZER(next) },
123 #endif
124 #ifdef LDAP_CONTROL_X_PERMISSIVE_MODIFY
125         { LDAP_CONTROL_X_PERMISSIVE_MODIFY,
126                 (int)offsetof(struct slap_control_ids, sc_permissiveModify),
127                 SLAP_CTRL_MODIFY, NULL,
128                 parsePermissiveModify, LDAP_SLIST_ENTRY_INITIALIZER(next) },
129 #endif
130 #ifdef LDAP_CONTROL_X_TREE_DELETE
131         { LDAP_CONTROL_X_TREE_DELETE,
132                 (int)offsetof(struct slap_control_ids, sc_treeDelete),
133                 SLAP_CTRL_DELETE, NULL,
134                 parseTreeDelete, LDAP_SLIST_ENTRY_INITIALIZER(next) },
135 #endif
136 #ifdef LDAP_CONTORL_X_SEARCH_OPTIONS
137         { LDAP_CONTORL_X_SEARCH_OPTIONS,
138                 (int)offsetof(struct slap_control_ids, sc_searchOptions),
139                 SLAP_CTRL_FRONTEND|SLAP_CTRL_SEARCH, NULL,
140                 parseSearchOptions, LDAP_SLIST_ENTRY_INITIALIZER(next) },
141 #endif
142 #ifdef LDAP_CONTROL_SUBENTRIES
143         { LDAP_CONTROL_SUBENTRIES,
144                 (int)offsetof(struct slap_control_ids, sc_subentries),
145                 SLAP_CTRL_SEARCH, NULL,
146                 parseSubentries, LDAP_SLIST_ENTRY_INITIALIZER(next) },
147 #endif
148         { LDAP_CONTROL_NOOP,
149                 (int)offsetof(struct slap_control_ids, sc_noOp),
150                 SLAP_CTRL_HIDE|SLAP_CTRL_ACCESS, NULL,
151                 parseNoOp, LDAP_SLIST_ENTRY_INITIALIZER(next) },
152 #ifdef LDAP_CONTROL_MODIFY_INCREMENT
153         { LDAP_CONTROL_MODIFY_INCREMENT,
154                 (int)offsetof(struct slap_control_ids, sc_modifyIncrement),
155                 SLAP_CTRL_HIDE|SLAP_CTRL_MODIFY, NULL,
156                 parseModifyIncrement, LDAP_SLIST_ENTRY_INITIALIZER(next) },
157 #endif
158         { LDAP_CONTROL_MANAGEDSAIT,
159                 (int)offsetof(struct slap_control_ids, sc_manageDSAit),
160                 SLAP_CTRL_ACCESS, NULL,
161                 parseManageDSAit, LDAP_SLIST_ENTRY_INITIALIZER(next) },
162         { LDAP_CONTROL_PROXY_AUTHZ,
163                 (int)offsetof(struct slap_control_ids, sc_proxyAuthz),
164                 SLAP_CTRL_FRONTEND|SLAP_CTRL_ACCESS, proxy_authz_extops,
165                 parseProxyAuthz, LDAP_SLIST_ENTRY_INITIALIZER(next) },
166         { NULL, 0, 0, NULL, 0, LDAP_SLIST_ENTRY_INITIALIZER(next) }
167 };
168
169 /*
170  * Register a supported control.
171  *
172  * This can be called by an OpenLDAP plugin or, indirectly, by a
173  * SLAPI plugin calling slapi_register_supported_control().
174  */
175 int
176 register_supported_control(const char *controloid,
177         slap_mask_t controlmask,
178         char **controlexops,
179         SLAP_CTRL_PARSE_FN *controlparsefn,
180         int *controlcid)
181 {
182         struct slap_control *sc;
183         int i;
184
185         if ( num_known_controls >= SLAP_MAX_CIDS ) {
186                 Debug( LDAP_DEBUG_ANY, "Too many controls registered."
187                         " Recompile slapd with SLAP_MAX_CIDS defined > %d\n",
188                 SLAP_MAX_CIDS, 0, 0 );
189                 return LDAP_OTHER;
190         }
191
192         if ( controloid == NULL ) return LDAP_PARAM_ERROR;
193
194         /* sanity check - should never happen */
195         for ( i = 1; slap_known_controls[ i ]; i++ ) {
196                 if ( strcmp( controloid, slap_known_controls[ i ] ) == 0 ) {
197                         Debug( LDAP_DEBUG_ANY,
198                                 "Control %s already registered.\n",
199                                 controloid, 0, 0 );
200                         return LDAP_PARAM_ERROR;
201                 }
202         }
203
204         sc = (struct slap_control *)SLAP_MALLOC( sizeof( *sc ) );
205         if ( sc == NULL ) return LDAP_NO_MEMORY;
206
207         sc->sc_oid = ch_strdup( controloid );
208         sc->sc_mask = controlmask;
209         if ( controlexops != NULL ) {
210                 sc->sc_extendedops = ldap_charray_dup( controlexops );
211                 if ( sc->sc_extendedops == NULL ) {
212                         ch_free( sc );
213                         return LDAP_NO_MEMORY;
214                 }
215         } else {
216                 sc->sc_extendedops = NULL;
217         }
218         sc->sc_parse = controlparsefn;
219
220         if ( controlcid ) *controlcid = num_known_controls;
221         sc->sc_cid = num_known_controls;
222
223         /* Update slap_known_controls, too. */
224         slap_known_controls[num_known_controls++] = sc->sc_oid;
225         slap_known_controls[num_known_controls] = NULL;
226
227         LDAP_SLIST_NEXT( sc, sc_next ) = NULL;
228         LDAP_SLIST_INSERT_HEAD( &controls_list, sc, sc_next );
229         return LDAP_SUCCESS;
230 }
231
232 /*
233  * One-time initialization of internal controls.
234  */
235 int
236 slap_controls_init( void )
237 {
238         int i, rc;
239         struct slap_control *sc;
240
241         rc = LDAP_SUCCESS;
242
243         for ( i = 0; control_defs[i].sc_oid != NULL; i++ ) {
244                 int *cid = (int *)(((char *)&slap_cids) + control_defs[i].sc_cid );
245                 rc = register_supported_control( control_defs[i].sc_oid,
246                         control_defs[i].sc_mask, control_defs[i].sc_extendedops,
247                         control_defs[i].sc_parse, cid );
248                 if ( rc != LDAP_SUCCESS ) break;
249         }
250
251         return rc;
252 }
253
254 /*
255  * Free memory associated with list of supported controls.
256  */
257 void
258 controls_destroy( void )
259 {
260         struct slap_control *sc;
261
262         while ( !LDAP_SLIST_EMPTY(&controls_list) ) {
263                 sc = LDAP_SLIST_FIRST(&controls_list);
264                 LDAP_SLIST_REMOVE_HEAD(&controls_list, sc_next);
265
266                 ch_free( sc->sc_oid );
267                 if ( sc->sc_extendedops != NULL ) {
268                         ldap_charray_free( sc->sc_extendedops );
269                 }
270                 ch_free( sc );
271         }
272 }
273
274 /*
275  * Format the supportedControl attribute of the root DSE,
276  * detailing which controls are supported by the directory
277  * server.
278  */
279 int
280 controls_root_dse_info( Entry *e )
281 {
282         AttributeDescription *ad_supportedControl
283                 = slap_schema.si_ad_supportedControl;
284         struct berval vals[2];
285         struct slap_control *sc;
286
287         vals[1].bv_val = NULL;
288         vals[1].bv_len = 0;
289
290         LDAP_SLIST_FOREACH( sc, &controls_list, sc_next ) {
291                 if( sc->sc_mask & SLAP_CTRL_HIDE ) continue;
292
293                 vals[0].bv_val = sc->sc_oid;
294                 vals[0].bv_len = strlen( sc->sc_oid );
295
296                 if ( attr_merge( e, ad_supportedControl, vals, NULL ) ) {
297                         return -1;
298                 }
299         }
300
301         return 0;
302 }
303
304 /*
305  * Return a list of OIDs and operation masks for supported
306  * controls. Used by SLAPI.
307  */
308 int
309 get_supported_controls(char ***ctrloidsp,
310         slap_mask_t **ctrlmasks)
311 {
312         int i, n;
313         char **oids;
314         slap_mask_t *masks;
315         int rc;
316         struct slap_control *sc;
317
318         n = 0;
319
320         LDAP_SLIST_FOREACH( sc, &controls_list, sc_next ) {
321                 n++;
322         }
323
324         if ( n == 0 ) {
325                 *ctrloidsp = NULL;
326                 *ctrlmasks = NULL;
327                 return LDAP_SUCCESS;
328         }
329
330         oids = (char **)SLAP_MALLOC( (n + 1) * sizeof(char *) );
331         if ( oids == NULL ) {
332                 return LDAP_NO_MEMORY;
333         }
334         masks = (slap_mask_t *)SLAP_MALLOC( (n + 1) * sizeof(slap_mask_t) );
335         if  ( masks == NULL ) {
336                 ch_free( oids );
337                 return LDAP_NO_MEMORY;
338         }
339
340         n = 0;
341
342         LDAP_SLIST_FOREACH( sc, &controls_list, sc_next ) {
343                 oids[n] = ch_strdup( sc->sc_oid );
344                 masks[n] = sc->sc_mask;
345                 n++;
346         }
347         oids[n] = NULL;
348         masks[n] = 0;
349
350         *ctrloidsp = oids;
351         *ctrlmasks = masks;
352
353         return LDAP_SUCCESS;
354 }
355
356 /*
357  * Find a control given its OID.
358  */
359 static struct slap_control *
360 find_ctrl( const char *oid )
361 {
362         struct slap_control *sc;
363
364         LDAP_SLIST_FOREACH( sc, &controls_list, sc_next ) {
365                 if ( strcmp( oid, sc->sc_oid ) == 0 ) {
366                         return sc;
367                 }
368         }
369
370         return NULL;
371 }
372
373 int
374 slap_find_control_id(
375         const char *oid,
376         int *cid )
377 {
378         struct slap_control *ctrl = find_ctrl( oid );
379         if ( ctrl ) {
380                 if ( cid ) *cid = ctrl->sc_cid;
381                 return LDAP_SUCCESS;
382         }
383         return LDAP_CONTROL_NOT_FOUND;
384 }
385
386 void slap_free_ctrls(
387         Operation *op,
388         LDAPControl **ctrls )
389 {
390         int i;
391
392         for (i=0; ctrls[i]; i++) {
393                 op->o_tmpfree(ctrls[i], op->o_tmpmemctx );
394         }
395         op->o_tmpfree( ctrls, op->o_tmpmemctx );
396 }
397
398 int get_ctrls(
399         Operation *op,
400         SlapReply *rs,
401         int sendres )
402 {
403         int nctrls = 0;
404         ber_tag_t tag;
405         ber_len_t len;
406         char *opaque;
407         BerElement *ber = op->o_ber;
408         struct slap_control *sc;
409         struct berval bv;
410
411         len = ber_pvt_ber_remaining(ber);
412
413         if( len == 0) {
414                 /* no controls */
415                 rs->sr_err = LDAP_SUCCESS;
416                 return rs->sr_err;
417         }
418
419         if(( tag = ber_peek_tag( ber, &len )) != LDAP_TAG_CONTROLS ) {
420                 if( tag == LBER_ERROR ) {
421                         rs->sr_err = SLAPD_DISCONNECT;
422                         rs->sr_text = "unexpected data in PDU";
423                 }
424
425                 goto return_results;
426         }
427
428         Debug( LDAP_DEBUG_TRACE,
429                 "=> get_ctrls\n", 0, 0, 0 );
430
431         if( op->o_protocol < LDAP_VERSION3 ) {
432                 rs->sr_err = SLAPD_DISCONNECT;
433                 rs->sr_text = "controls require LDAPv3";
434                 goto return_results;
435         }
436
437         /* one for first control, one for termination */
438         op->o_ctrls = op->o_tmpalloc( 2 * sizeof(LDAPControl *), op->o_tmpmemctx );
439
440 #if 0
441         if( op->ctrls == NULL ) {
442                 rs->sr_err = LDAP_NO_MEMORY;
443                 rs->sr_text = "no memory";
444                 goto return_results;
445         }
446 #endif
447
448         op->o_ctrls[nctrls] = NULL;
449
450         /* step through each element */
451         for( tag = ber_first_element( ber, &len, &opaque );
452                 tag != LBER_ERROR;
453                 tag = ber_next_element( ber, &len, opaque ) )
454         {
455                 LDAPControl *c;
456                 LDAPControl **tctrls;
457
458                 c = op->o_tmpalloc( sizeof(LDAPControl), op->o_tmpmemctx );
459                 memset(c, 0, sizeof(LDAPControl));
460
461                 /* allocate pointer space for current controls (nctrls)
462                  * + this control + extra NULL
463                  */
464                 tctrls = op->o_tmprealloc( op->o_ctrls,
465                         (nctrls+2) * sizeof(LDAPControl *), op->o_tmpmemctx );
466
467 #if 0
468                 if( tctrls == NULL ) {
469                         ch_free( c );
470                         ldap_controls_free(op->o_ctrls);
471                         op->o_ctrls = NULL;
472
473                         rs->sr_err = LDAP_NO_MEMORY;
474                         rs->sr_text = "no memory";
475                         goto return_results;
476                 }
477 #endif
478                 op->o_ctrls = tctrls;
479
480                 op->o_ctrls[nctrls++] = c;
481                 op->o_ctrls[nctrls] = NULL;
482
483                 tag = ber_scanf( ber, "{m" /*}*/, &bv );
484                 c->ldctl_oid = bv.bv_val;
485
486                 if( tag == LBER_ERROR ) {
487                         Debug( LDAP_DEBUG_TRACE, "=> get_ctrls: get oid failed.\n",
488                                 0, 0, 0 );
489
490                         slap_free_ctrls( op, op->o_ctrls );
491                         op->o_ctrls = NULL;
492                         rs->sr_err = SLAPD_DISCONNECT;
493                         rs->sr_text = "decoding controls error";
494                         goto return_results;
495
496                 } else if( c->ldctl_oid == NULL ) {
497                         Debug( LDAP_DEBUG_TRACE,
498                                 "get_ctrls: conn %lu got emtpy OID.\n",
499                                 op->o_connid, 0, 0 );
500
501                         slap_free_ctrls( op, op->o_ctrls );
502                         op->o_ctrls = NULL;
503                         rs->sr_err = LDAP_PROTOCOL_ERROR;
504                         rs->sr_text = "OID field is empty";
505                         goto return_results;
506                 }
507
508                 tag = ber_peek_tag( ber, &len );
509
510                 if( tag == LBER_BOOLEAN ) {
511                         ber_int_t crit;
512                         tag = ber_scanf( ber, "b", &crit );
513
514                         if( tag == LBER_ERROR ) {
515                                 Debug( LDAP_DEBUG_TRACE, "=> get_ctrls: get crit failed.\n",
516                                         0, 0, 0 );
517                                 slap_free_ctrls( op, op->o_ctrls );
518                                 op->o_ctrls = NULL;
519                                 rs->sr_err = SLAPD_DISCONNECT;
520                                 rs->sr_text = "decoding controls error";
521                                 goto return_results;
522                         }
523
524                         c->ldctl_iscritical = (crit != 0);
525                         tag = ber_peek_tag( ber, &len );
526                 }
527
528                 if( tag == LBER_OCTETSTRING ) {
529                         tag = ber_scanf( ber, "m", &c->ldctl_value );
530
531                         if( tag == LBER_ERROR ) {
532                                 Debug( LDAP_DEBUG_TRACE, "=> get_ctrls: conn %lu: "
533                                         "%s (%scritical): get value failed.\n",
534                                         op->o_connid, c->ldctl_oid,
535                                         c->ldctl_iscritical ? "" : "non" );
536                                 slap_free_ctrls( op, op->o_ctrls );
537                                 op->o_ctrls = NULL;
538                                 rs->sr_err = SLAPD_DISCONNECT;
539                                 rs->sr_text = "decoding controls error";
540                                 goto return_results;
541                         }
542                 }
543
544                 Debug( LDAP_DEBUG_TRACE,
545                         "=> get_ctrls: oid=\"%s\" (%scritical)\n",
546                         c->ldctl_oid, c->ldctl_iscritical ? "" : "non", 0 );
547
548                 sc = find_ctrl( c->ldctl_oid );
549                 if( sc != NULL ) {
550                         /* recognized control */
551                         slap_mask_t tagmask;
552                         switch( op->o_tag ) {
553                         case LDAP_REQ_ADD:
554                                 tagmask = SLAP_CTRL_ADD;
555                                 break;
556                         case LDAP_REQ_BIND:
557                                 tagmask = SLAP_CTRL_BIND;
558                                 break;
559                         case LDAP_REQ_COMPARE:
560                                 tagmask = SLAP_CTRL_COMPARE;
561                                 break;
562                         case LDAP_REQ_DELETE:
563                                 tagmask = SLAP_CTRL_DELETE;
564                                 break;
565                         case LDAP_REQ_MODIFY:
566                                 tagmask = SLAP_CTRL_MODIFY;
567                                 break;
568                         case LDAP_REQ_RENAME:
569                                 tagmask = SLAP_CTRL_RENAME;
570                                 break;
571                         case LDAP_REQ_SEARCH:
572                                 tagmask = SLAP_CTRL_SEARCH;
573                                 break;
574                         case LDAP_REQ_UNBIND:
575                                 tagmask = SLAP_CTRL_UNBIND;
576                                 break;
577                         case LDAP_REQ_ABANDON:
578                                 tagmask = SLAP_CTRL_ABANDON;
579                                 break;
580                         case LDAP_REQ_EXTENDED:
581                                 tagmask=~0L;
582                                 assert( op->ore_reqoid.bv_val != NULL );
583                                 if( sc->sc_extendedops != NULL ) {
584                                         int i;
585                                         for( i=0; sc->sc_extendedops[i] != NULL; i++ ) {
586                                                 if( strcmp( op->ore_reqoid.bv_val,
587                                                         sc->sc_extendedops[i] ) == 0 )
588                                                 {
589                                                         tagmask=0L;
590                                                         break;
591                                                 }
592                                         }
593                                 }
594                                 break;
595                         default:
596                                 rs->sr_err = LDAP_OTHER;
597                                 rs->sr_text = "controls internal error";
598                                 goto return_results;
599                         }
600
601                         if (( sc->sc_mask & tagmask ) == tagmask ) {
602                                 /* available extension */
603                                 int     rc;
604
605                                 if( !sc->sc_parse ) {
606                                         rs->sr_err = LDAP_OTHER;
607                                         rs->sr_text = "not yet implemented";
608                                         goto return_results;
609                                 }
610
611                                 rc = sc->sc_parse( op, rs, c );
612                                 if ( rc ) {
613                                         assert( rc != LDAP_UNAVAILABLE_CRITICAL_EXTENSION );
614                                         rs->sr_err = rc;
615                                         goto return_results;
616                                 }
617
618                                 if ( sc->sc_mask & SLAP_CTRL_FRONTEND ) {
619                                         /* kludge to disable backend_control() check */
620                                         c->ldctl_iscritical = 0;
621
622                                 } else if ( tagmask == SLAP_CTRL_SEARCH &&
623                                         sc->sc_mask & SLAP_CTRL_FRONTEND_SEARCH )
624                                 {
625                                         /* kludge to disable backend_control() check */
626                                         c->ldctl_iscritical = 0;
627                                 }
628
629                         } else if( c->ldctl_iscritical ) {
630                                 /* unavailable CRITICAL control */
631                                 rs->sr_err = LDAP_UNAVAILABLE_CRITICAL_EXTENSION;
632                                 rs->sr_text = "critical extension is unavailable";
633                                 goto return_results;
634                         }
635
636                 } else if( c->ldctl_iscritical ) {
637                         /* unrecognized CRITICAL control */
638                         rs->sr_err = LDAP_UNAVAILABLE_CRITICAL_EXTENSION;
639                         rs->sr_text = "critical extension is not recognized";
640                         goto return_results;
641                 }
642 next_ctrl:;
643         }
644
645 return_results:
646         Debug( LDAP_DEBUG_TRACE,
647                 "<= get_ctrls: n=%d rc=%d err=\"%s\"\n",
648                 nctrls, rs->sr_err, rs->sr_text ? rs->sr_text : "");
649
650         if( sendres && rs->sr_err != LDAP_SUCCESS ) {
651                 if( rs->sr_err == SLAPD_DISCONNECT ) {
652                         rs->sr_err = LDAP_PROTOCOL_ERROR;
653                         send_ldap_disconnect( op, rs );
654                         rs->sr_err = SLAPD_DISCONNECT;
655                 } else {
656                         send_ldap_result( op, rs );
657                 }
658         }
659
660         return rs->sr_err;
661 }
662
663 static int parseModifyIncrement (
664         Operation *op,
665         SlapReply *rs,
666         LDAPControl *ctrl )
667 {
668 #if 0
669         if ( op->o_modifyIncrement != SLAP_CONTROL_NONE ) {
670                 rs->sr_text = "modifyIncrement control specified multiple times";
671                 return LDAP_PROTOCOL_ERROR;
672         }
673 #endif
674
675         if ( ctrl->ldctl_value.bv_len ) {
676                 rs->sr_text = "modifyIncrement control value not empty";
677                 return LDAP_PROTOCOL_ERROR;
678         }
679
680 #if 0
681         op->o_modifyIncrement = ctrl->ldctl_iscritical
682                 ? SLAP_CONTROL_CRITICAL
683                 : SLAP_CONTROL_NONCRITICAL;
684 #endif
685
686         return LDAP_SUCCESS;
687 }
688
689 static int parseManageDSAit (
690         Operation *op,
691         SlapReply *rs,
692         LDAPControl *ctrl )
693 {
694         if ( op->o_managedsait != SLAP_CONTROL_NONE ) {
695                 rs->sr_text = "manageDSAit control specified multiple times";
696                 return LDAP_PROTOCOL_ERROR;
697         }
698
699         if ( ctrl->ldctl_value.bv_len ) {
700                 rs->sr_text = "manageDSAit control value not empty";
701                 return LDAP_PROTOCOL_ERROR;
702         }
703
704         op->o_managedsait = ctrl->ldctl_iscritical
705                 ? SLAP_CONTROL_CRITICAL
706                 : SLAP_CONTROL_NONCRITICAL;
707
708         return LDAP_SUCCESS;
709 }
710
711 static int parseProxyAuthz (
712         Operation *op,
713         SlapReply *rs,
714         LDAPControl *ctrl )
715 {
716         int             rc;
717         struct berval   dn = BER_BVNULL;
718
719         if ( op->o_proxy_authz != SLAP_CONTROL_NONE ) {
720                 rs->sr_text = "proxy authorization control specified multiple times";
721                 return LDAP_PROTOCOL_ERROR;
722         }
723
724         op->o_proxy_authz = ctrl->ldctl_iscritical
725                 ? SLAP_CONTROL_CRITICAL
726                 : SLAP_CONTROL_NONCRITICAL;
727
728         Debug( LDAP_DEBUG_ARGS,
729                 "parseProxyAuthz: conn %lu authzid=\"%s\"\n", 
730                 op->o_connid,
731                 ctrl->ldctl_value.bv_len ?  ctrl->ldctl_value.bv_val : "anonymous",
732                 0 );
733
734         if( ctrl->ldctl_value.bv_len == 0 ) {
735                 Debug( LDAP_DEBUG_TRACE,
736                         "parseProxyAuthz: conn=%lu anonymous\n", 
737                         op->o_connid, 0, 0 );
738
739                 /* anonymous */
740                 free( op->o_dn.bv_val );
741                 op->o_dn.bv_len = 0;
742                 op->o_dn.bv_val = ch_strdup( "" );
743
744                 free( op->o_ndn.bv_val );
745                 op->o_ndn.bv_len = 0;
746                 op->o_ndn.bv_val = ch_strdup( "" );
747
748                 return LDAP_SUCCESS;
749         }
750
751         rc = slap_sasl_getdn( op->o_conn, op, &ctrl->ldctl_value,
752                         NULL, &dn, SLAP_GETDN_AUTHZID );
753
754         /* FIXME: empty DN in proxyAuthz control should be legal... */
755         if( rc != LDAP_SUCCESS /* || !dn.bv_len */ ) {
756                 if ( dn.bv_val ) {
757                         ch_free( dn.bv_val );
758                 }
759                 rs->sr_text = "authzId mapping failed";
760                 return LDAP_PROXY_AUTHZ_FAILURE;
761         }
762
763         Debug( LDAP_DEBUG_TRACE,
764                 "parseProxyAuthz: conn=%lu \"%s\"\n", 
765                 op->o_connid,
766                 dn.bv_len ? dn.bv_val : "(NULL)", 0 );
767
768         rc = slap_sasl_authorized( op, &op->o_ndn, &dn );
769
770         if( rc ) {
771                 ch_free( dn.bv_val );
772                 rs->sr_text = "not authorized to assume identity";
773                 return LDAP_PROXY_AUTHZ_FAILURE;
774         }
775
776         ch_free( op->o_dn.bv_val );
777         ch_free( op->o_ndn.bv_val );
778
779         op->o_dn.bv_val = NULL;
780         op->o_ndn = dn;
781
782         Statslog( LDAP_DEBUG_STATS, "%s PROXYAUTHZ dn=\"%s\"\n",
783             op->o_log_prefix, dn.bv_val, 0, 0, 0 );
784
785         /*
786          * NOTE: since slap_sasl_getdn() returns a normalized dn,
787          * from now on op->o_dn is normalized
788          */
789         ber_dupbv( &op->o_dn, &dn );
790
791         return LDAP_SUCCESS;
792 }
793
794 static int parseNoOp (
795         Operation *op,
796         SlapReply *rs,
797         LDAPControl *ctrl )
798 {
799         if ( op->o_noop != SLAP_CONTROL_NONE ) {
800                 rs->sr_text = "noop control specified multiple times";
801                 return LDAP_PROTOCOL_ERROR;
802         }
803
804         if ( ctrl->ldctl_value.bv_len ) {
805                 rs->sr_text = "noop control value not empty";
806                 return LDAP_PROTOCOL_ERROR;
807         }
808
809         op->o_noop = ctrl->ldctl_iscritical
810                 ? SLAP_CONTROL_CRITICAL
811                 : SLAP_CONTROL_NONCRITICAL;
812
813         return LDAP_SUCCESS;
814 }
815
816 static int parsePagedResults (
817         Operation *op,
818         SlapReply *rs,
819         LDAPControl *ctrl )
820 {
821         int             rc = LDAP_SUCCESS;
822         ber_tag_t       tag;
823         ber_int_t       size;
824         BerElement      *ber;
825         struct berval   cookie = BER_BVNULL;
826         PagedResultsState       *ps;
827
828         if ( op->o_pagedresults != SLAP_CONTROL_NONE ) {
829                 rs->sr_text = "paged results control specified multiple times";
830                 return LDAP_PROTOCOL_ERROR;
831         }
832
833 #if 0   /* DELETE ME */
834         if ( op->o_sync != SLAP_CONTROL_NONE ) {
835                 rs->sr_text = "paged results control specified with sync control";
836                 return LDAP_PROTOCOL_ERROR;
837         }
838 #endif
839
840         if ( BER_BVISEMPTY( &ctrl->ldctl_value ) ) {
841                 rs->sr_text = "paged results control value is empty (or absent)";
842                 return LDAP_PROTOCOL_ERROR;
843         }
844
845         /* Parse the control value
846          *      realSearchControlValue ::= SEQUENCE {
847          *              size    INTEGER (0..maxInt),
848          *                              -- requested page size from client
849          *                              -- result set size estimate from server
850          *              cookie  OCTET STRING
851          * }
852          */
853         ber = ber_init( &ctrl->ldctl_value );
854         if ( ber == NULL ) {
855                 rs->sr_text = "internal error";
856                 return LDAP_OTHER;
857         }
858
859         tag = ber_scanf( ber, "{im}", &size, &cookie );
860
861         if ( tag == LBER_ERROR ) {
862                 rs->sr_text = "paged results control could not be decoded";
863                 rc = LDAP_PROTOCOL_ERROR;
864                 goto done;
865         }
866
867         if ( size < 0 ) {
868                 rs->sr_text = "paged results control size invalid";
869                 rc = LDAP_PROTOCOL_ERROR;
870                 goto done;
871         }
872
873 #if 0
874         /* defer cookie decoding/checks to backend... */
875         if ( cookie.bv_len ) {
876                 PagedResultsCookie reqcookie;
877                 if( cookie.bv_len != sizeof( reqcookie ) ) {
878                         /* bad cookie */
879                         rs->sr_text = "paged results cookie is invalid";
880                         rc = LDAP_PROTOCOL_ERROR;
881                         goto done;
882                 }
883
884                 AC_MEMCPY( &reqcookie, cookie.bv_val, sizeof( reqcookie ));
885
886                 if ( reqcookie > op->o_pagedresults_state.ps_cookie ) {
887                         /* bad cookie */
888                         rs->sr_text = "paged results cookie is invalid";
889                         rc = LDAP_PROTOCOL_ERROR;
890                         goto done;
891
892                 } else if ( reqcookie < op->o_pagedresults_state.ps_cookie ) {
893                         rs->sr_text = "paged results cookie is invalid or old";
894                         rc = LDAP_UNWILLING_TO_PERFORM;
895                         goto done;
896                 }
897
898         } else {
899                 /* Initial request.  Initialize state. */
900 #if 0
901                 if ( op->o_conn->c_pagedresults_state.ps_cookie != 0 ) {
902                         /* There's another pagedResults control on the
903                          * same connection; reject new pagedResults controls 
904                          * (allowed by RFC2696) */
905                         rs->sr_text = "paged results cookie unavailable; try later";
906                         rc = LDAP_UNWILLING_TO_PERFORM;
907                         goto done;
908                 }
909 #endif
910                 op->o_pagedresults_state.ps_cookie = 0;
911                 op->o_pagedresults_state.ps_count = 0;
912         }
913 #endif
914
915         ps = op->o_tmpalloc( sizeof(PagedResultsState), op->o_tmpmemctx );
916         *ps = op->o_conn->c_pagedresults_state;
917         ps->ps_size = size;
918         op->o_pagedresults_state = ps;
919
920         /* NOTE: according to RFC 2696 3.:
921
922     If the page size is greater than or equal to the sizeLimit value, the
923     server should ignore the control as the request can be satisfied in a
924     single page.
925          
926          * NOTE: this assumes that the op->ors_slimit be set
927          * before the controls are parsed.     
928          */
929                 
930         if ( op->ors_slimit > 0 && size >= op->ors_slimit ) {
931                 op->o_pagedresults = SLAP_CONTROL_IGNORED;
932
933         } else if ( ctrl->ldctl_iscritical ) {
934                 op->o_pagedresults = SLAP_CONTROL_CRITICAL;
935
936         } else {
937                 op->o_pagedresults = SLAP_CONTROL_NONCRITICAL;
938         }
939
940 done:;
941         (void)ber_free( ber, 1 );
942         return rc;
943 }
944
945 static int parseAssert (
946         Operation *op,
947         SlapReply *rs,
948         LDAPControl *ctrl )
949 {
950         BerElement      *ber;
951         struct berval   fstr = BER_BVNULL;
952         const char *err_msg = "";
953
954         if ( op->o_assert != SLAP_CONTROL_NONE ) {
955                 rs->sr_text = "assert control specified multiple times";
956                 return LDAP_PROTOCOL_ERROR;
957         }
958
959         if ( ctrl->ldctl_value.bv_len == 0 ) {
960                 rs->sr_text = "assert control value is empty (or absent)";
961                 return LDAP_PROTOCOL_ERROR;
962         }
963
964         ber = ber_init( &(ctrl->ldctl_value) );
965         if (ber == NULL) {
966                 rs->sr_text = "assert control: internal error";
967                 return LDAP_OTHER;
968         }
969         
970         rs->sr_err = get_filter( op, ber, (Filter **)&(op->o_assertion), &rs->sr_text);
971
972         if( rs->sr_err != LDAP_SUCCESS ) {
973                 if( rs->sr_err == SLAPD_DISCONNECT ) {
974                         rs->sr_err = LDAP_PROTOCOL_ERROR;
975                         send_ldap_disconnect( op, rs );
976                         rs->sr_err = SLAPD_DISCONNECT;
977                 } else {
978                         send_ldap_result( op, rs );
979                 }
980                 if( op->o_assertion != NULL ) {
981                         filter_free_x( op, op->o_assertion );
982                 }
983                 return rs->sr_err;
984         }
985
986 #ifdef LDAP_DEBUG
987         filter2bv_x( op, op->o_assertion, &fstr );
988
989         Debug( LDAP_DEBUG_ARGS, "parseAssert: conn %ld assert: %s\n",
990                 op->o_connid, fstr.bv_len ? fstr.bv_val : "empty" , 0 );
991         op->o_tmpfree( fstr.bv_val, op->o_tmpmemctx );
992 #endif
993
994         op->o_assert = ctrl->ldctl_iscritical
995                 ? SLAP_CONTROL_CRITICAL
996                 : SLAP_CONTROL_NONCRITICAL;
997
998         rs->sr_err = LDAP_SUCCESS;
999         return LDAP_SUCCESS;
1000 }
1001
1002 static int parsePreRead (
1003         Operation *op,
1004         SlapReply *rs,
1005         LDAPControl *ctrl )
1006 {
1007         ber_len_t siz, off, i;
1008         AttributeName *an = NULL;
1009         BerElement      *ber;
1010
1011         if ( op->o_preread != SLAP_CONTROL_NONE ) {
1012                 rs->sr_text = "preread control specified multiple times";
1013                 return LDAP_PROTOCOL_ERROR;
1014         }
1015
1016         if ( ctrl->ldctl_value.bv_len == 0 ) {
1017                 rs->sr_text = "preread control value is empty (or absent)";
1018                 return LDAP_PROTOCOL_ERROR;
1019         }
1020
1021         ber = ber_init( &(ctrl->ldctl_value) );
1022         if (ber == NULL) {
1023                 rs->sr_text = "preread control: internal error";
1024                 return LDAP_OTHER;
1025         }
1026
1027         siz = sizeof( AttributeName );
1028         off = offsetof( AttributeName, an_name );
1029         if ( ber_scanf( ber, "{M}", &an, &siz, off ) == LBER_ERROR ) {
1030                 rs->sr_text = "preread control: decoding error";
1031                 return LDAP_PROTOCOL_ERROR;
1032         }
1033
1034         for( i=0; i<siz; i++ ) {
1035                 int             rc = LDAP_SUCCESS;
1036                 const char      *dummy = NULL;
1037
1038                 an[i].an_desc = NULL;
1039                 an[i].an_oc = NULL;
1040                 an[i].an_oc_exclude = 0;
1041                 rc = slap_bv2ad( &an[i].an_name, &an[i].an_desc, &dummy );
1042                 if ( rc != LDAP_SUCCESS && ctrl->ldctl_iscritical ) {
1043                         rs->sr_text = dummy ? dummy : "postread control: unknown attributeType";
1044                         return rc;
1045                 }
1046         }
1047
1048         op->o_preread = ctrl->ldctl_iscritical
1049                 ? SLAP_CONTROL_CRITICAL
1050                 : SLAP_CONTROL_NONCRITICAL;
1051
1052         op->o_preread_attrs = an;
1053
1054         rs->sr_err = LDAP_SUCCESS;
1055         return LDAP_SUCCESS;
1056 }
1057
1058 static int parsePostRead (
1059         Operation *op,
1060         SlapReply *rs,
1061         LDAPControl *ctrl )
1062 {
1063         ber_len_t siz, off, i;
1064         AttributeName *an = NULL;
1065         BerElement      *ber;
1066
1067         if ( op->o_postread != SLAP_CONTROL_NONE ) {
1068                 rs->sr_text = "postread control specified multiple times";
1069                 return LDAP_PROTOCOL_ERROR;
1070         }
1071
1072         if ( ctrl->ldctl_value.bv_len == 0 ) {
1073                 rs->sr_text = "postread control value is empty (or absent)";
1074                 return LDAP_PROTOCOL_ERROR;
1075         }
1076
1077         ber = ber_init( &(ctrl->ldctl_value) );
1078         if (ber == NULL) {
1079                 rs->sr_text = "postread control: internal error";
1080                 return LDAP_OTHER;
1081         }
1082
1083         siz = sizeof( AttributeName );
1084         off = offsetof( AttributeName, an_name );
1085         if ( ber_scanf( ber, "{M}", &an, &siz, off ) == LBER_ERROR ) {
1086                 rs->sr_text = "postread control: decoding error";
1087                 return LDAP_PROTOCOL_ERROR;
1088         }
1089
1090         for( i=0; i<siz; i++ ) {
1091                 int             rc = LDAP_SUCCESS;
1092                 const char      *dummy = NULL;
1093
1094                 an[i].an_desc = NULL;
1095                 an[i].an_oc = NULL;
1096                 an[i].an_oc_exclude = 0;
1097                 rc = slap_bv2ad( &an[i].an_name, &an[i].an_desc, &dummy );
1098                 if ( rc != LDAP_SUCCESS && ctrl->ldctl_iscritical ) {
1099                         rs->sr_text = dummy ? dummy : "postread control: unknown attributeType";
1100                         return rc;
1101                 }
1102         }
1103
1104         op->o_postread = ctrl->ldctl_iscritical
1105                 ? SLAP_CONTROL_CRITICAL
1106                 : SLAP_CONTROL_NONCRITICAL;
1107
1108         op->o_postread_attrs = an;
1109
1110         rs->sr_err = LDAP_SUCCESS;
1111         return LDAP_SUCCESS;
1112 }
1113
1114 int parseValuesReturnFilter (
1115         Operation *op,
1116         SlapReply *rs,
1117         LDAPControl *ctrl )
1118 {
1119         BerElement      *ber;
1120         struct berval   fstr = BER_BVNULL;
1121         const char *err_msg = "";
1122
1123         if ( op->o_valuesreturnfilter != SLAP_CONTROL_NONE ) {
1124                 rs->sr_text = "valuesReturnFilter control specified multiple times";
1125                 return LDAP_PROTOCOL_ERROR;
1126         }
1127
1128         if ( ctrl->ldctl_value.bv_len == 0 ) {
1129                 rs->sr_text = "valuesReturnFilter control value is empty (or absent)";
1130                 return LDAP_PROTOCOL_ERROR;
1131         }
1132
1133         ber = ber_init( &(ctrl->ldctl_value) );
1134         if (ber == NULL) {
1135                 rs->sr_text = "internal error";
1136                 return LDAP_OTHER;
1137         }
1138         
1139         rs->sr_err = get_vrFilter( op, ber, (ValuesReturnFilter **)&(op->o_vrFilter), &rs->sr_text);
1140
1141         if( rs->sr_err != LDAP_SUCCESS ) {
1142                 if( rs->sr_err == SLAPD_DISCONNECT ) {
1143                         rs->sr_err = LDAP_PROTOCOL_ERROR;
1144                         send_ldap_disconnect( op, rs );
1145                         rs->sr_err = SLAPD_DISCONNECT;
1146                 } else {
1147                         send_ldap_result( op, rs );
1148                 }
1149                 if( op->o_vrFilter != NULL) vrFilter_free( op, op->o_vrFilter ); 
1150         }
1151 #ifdef LDAP_DEBUG
1152         else {
1153                 vrFilter2bv( op, op->o_vrFilter, &fstr );
1154         }
1155
1156         Debug( LDAP_DEBUG_ARGS, "       vrFilter: %s\n",
1157                 fstr.bv_len ? fstr.bv_val : "empty", 0, 0 );
1158         op->o_tmpfree( fstr.bv_val, op->o_tmpmemctx );
1159 #endif
1160
1161         op->o_valuesreturnfilter = ctrl->ldctl_iscritical
1162                 ? SLAP_CONTROL_CRITICAL
1163                 : SLAP_CONTROL_NONCRITICAL;
1164
1165         rs->sr_err = LDAP_SUCCESS;
1166         return LDAP_SUCCESS;
1167 }
1168
1169 #ifdef LDAP_CONTROL_SUBENTRIES
1170 static int parseSubentries (
1171         Operation *op,
1172         SlapReply *rs,
1173         LDAPControl *ctrl )
1174 {
1175         if ( op->o_subentries != SLAP_CONTROL_NONE ) {
1176                 rs->sr_text = "subentries control specified multiple times";
1177                 return LDAP_PROTOCOL_ERROR;
1178         }
1179
1180         /* FIXME: should use BER library */
1181         if( ( ctrl->ldctl_value.bv_len != 3 )
1182                 && ( ctrl->ldctl_value.bv_val[0] != 0x01 )
1183                 && ( ctrl->ldctl_value.bv_val[1] != 0x01 ))
1184         {
1185                 rs->sr_text = "subentries control value encoding is bogus";
1186                 return LDAP_PROTOCOL_ERROR;
1187         }
1188
1189         op->o_subentries = ctrl->ldctl_iscritical
1190                 ? SLAP_CONTROL_CRITICAL
1191                 : SLAP_CONTROL_NONCRITICAL;
1192
1193         if ( (void *)(ctrl->ldctl_value.bv_val[2] != 0x00))
1194                 set_subentries_visibility( op );
1195
1196         return LDAP_SUCCESS;
1197 }
1198 #endif
1199
1200 #ifdef LDAP_CONTROL_X_PERMISSIVE_MODIFY
1201 static int parsePermissiveModify (
1202         Operation *op,
1203         SlapReply *rs,
1204         LDAPControl *ctrl )
1205 {
1206         if ( op->o_permissive_modify != SLAP_CONTROL_NONE ) {
1207                 rs->sr_text = "permissiveModify control specified multiple times";
1208                 return LDAP_PROTOCOL_ERROR;
1209         }
1210
1211         if ( ctrl->ldctl_value.bv_len ) {
1212                 rs->sr_text = "permissiveModify control value not empty";
1213                 return LDAP_PROTOCOL_ERROR;
1214         }
1215
1216         op->o_permissive_modify = ctrl->ldctl_iscritical
1217                 ? SLAP_CONTROL_CRITICAL
1218                 : SLAP_CONTROL_NONCRITICAL;
1219
1220         return LDAP_SUCCESS;
1221 }
1222 #endif
1223
1224 #ifdef LDAP_CONTROL_X_DOMAIN_SCOPE
1225 static int parseDomainScope (
1226         Operation *op,
1227         SlapReply *rs,
1228         LDAPControl *ctrl )
1229 {
1230         if ( op->o_domain_scope != SLAP_CONTROL_NONE ) {
1231                 rs->sr_text = "domainScope control specified multiple times";
1232                 return LDAP_PROTOCOL_ERROR;
1233         }
1234
1235         if ( ctrl->ldctl_value.bv_len ) {
1236                 rs->sr_text = "domainScope control value not empty";
1237                 return LDAP_PROTOCOL_ERROR;
1238         }
1239
1240         op->o_domain_scope = ctrl->ldctl_iscritical
1241                 ? SLAP_CONTROL_CRITICAL
1242                 : SLAP_CONTROL_NONCRITICAL;
1243
1244         return LDAP_SUCCESS;
1245 }
1246 #endif
1247
1248 #ifdef LDAP_CONTROL_X_TREE_DELETE
1249 static int parseTreeDelete (
1250         Operation *op,
1251         SlapReply *rs,
1252         LDAPControl *ctrl )
1253 {
1254         if ( op->o_tree_delete != SLAP_CONTROL_NONE ) {
1255                 rs->sr_text = "treeDelete control specified multiple times";
1256                 return LDAP_PROTOCOL_ERROR;
1257         }
1258
1259         if ( ctrl->ldctl_value.bv_len ) {
1260                 rs->sr_text = "treeDelete control value not empty";
1261                 return LDAP_PROTOCOL_ERROR;
1262         }
1263
1264         op->o_tree_delete = ctrl->ldctl_iscritical
1265                 ? SLAP_CONTROL_CRITICAL
1266                 : SLAP_CONTROL_NONCRITICAL;
1267
1268         return LDAP_SUCCESS;
1269 }
1270 #endif
1271
1272 #ifdef LDAP_CONTORL_X_SEARCH_OPTIONS
1273 static int parseSearchOptions (
1274         Operation *op,
1275         SlapReply *rs,
1276         LDAPControl *ctrl )
1277 {
1278         BerElement *ber;
1279         ber_int_t search_flags;
1280
1281         if ( ctrl->ldctl_value.bv_len == 0 ) {
1282                 rs->sr_text = "searchOptions control value not empty";
1283                 return LDAP_PROTOCOL_ERROR;
1284         }
1285
1286         ber = ber_init( &ctrl->ldctl_value );
1287         if( ber == NULL ) {
1288                 rs->sr_text = "internal error";
1289                 return LDAP_OTHER;
1290         }
1291
1292         if ( (tag = ber_scanf( ber, "{i}", &search_flags )) == LBER_ERROR ) {
1293                 rs->sr_text = "searchOptions control decoding error";
1294                 return LDAP_PROTOCOL_ERROR;
1295         }
1296
1297         (void) ber_free( ber, 1 );
1298
1299         if ( search_flags & LDAP_SEARCH_FLAG_DOMAIN_SCOPE ) {
1300                 if ( op->o_domain_scope != SLAP_CONTROL_NONE ) {
1301                         rs->sr_text = "searchOptions control specified multiple times "
1302                                 "or with domainScope control";
1303                         return LDAP_PROTOCOL_ERROR;
1304                 }
1305
1306                 op->o_domain_scope = ctrl->ldctl_iscritical
1307                         ? SLAP_CONTROL_CRITICAL
1308                         : SLAP_CONTROL_NONCRITICAL;
1309         }
1310
1311         if ( search_flags & ~(LDAP_SEARCH_FLAG_DOMAIN_SCOPE) ) {
1312                 /* Other search flags not recognised so far */
1313                 rs->sr_text = "searchOptions contained unrecongized flag";
1314                 return LDAP_UNWILLING_TO_PERFORM;
1315         }
1316
1317         return LDAP_SUCCESS;
1318 }
1319 #endif
1320