]> git.sur5r.net Git - openldap/blob - servers/slapd/controls.c
add "What Failed?" LDAP control (ITS#5784)
[openldap] / servers / slapd / controls.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2008 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 #include "ldif.h"
25 #include "lutil.h"
26
27 #include "../../libraries/liblber/lber-int.h"
28
29 static SLAP_CTRL_PARSE_FN parseAssert;
30 static SLAP_CTRL_PARSE_FN parseDomainScope;
31 static SLAP_CTRL_PARSE_FN parseDontUseCopy;
32 static SLAP_CTRL_PARSE_FN parseManageDSAit;
33 static SLAP_CTRL_PARSE_FN parseNoOp;
34 static SLAP_CTRL_PARSE_FN parsePagedResults;
35 static SLAP_CTRL_PARSE_FN parsePermissiveModify;
36 static SLAP_CTRL_PARSE_FN parsePreRead, parsePostRead;
37 static SLAP_CTRL_PARSE_FN parseProxyAuthz;
38 static SLAP_CTRL_PARSE_FN parseRelax;
39 static SLAP_CTRL_PARSE_FN parseSearchOptions;
40 #ifdef SLAP_CONTROL_X_SORTEDRESULTS
41 static SLAP_CTRL_PARSE_FN parseSortedResults;
42 #endif
43 static SLAP_CTRL_PARSE_FN parseSubentries;
44 #ifdef SLAP_CONTROL_X_TREE_DELETE
45 static SLAP_CTRL_PARSE_FN parseTreeDelete;
46 #endif
47 static SLAP_CTRL_PARSE_FN parseValuesReturnFilter;
48 #ifdef SLAP_CONTROL_X_SESSION_TRACKING
49 static SLAP_CTRL_PARSE_FN parseSessionTracking;
50 #endif
51 #ifdef SLAP_CONTROL_X_WHATFAILED
52 static SLAP_CTRL_PARSE_FN parseWhatFailed;
53 #endif
54
55 #undef sc_mask /* avoid conflict with Irix 6.5 <sys/signal.h> */
56
57 const struct berval slap_pre_read_bv = BER_BVC(LDAP_CONTROL_PRE_READ);
58 const struct berval slap_post_read_bv = BER_BVC(LDAP_CONTROL_POST_READ);
59
60 struct slap_control_ids slap_cids;
61
62 struct slap_control {
63         /* Control OID */
64         char *sc_oid;
65
66         /* The controlID for this control */
67         int sc_cid;
68
69         /* Operations supported by control */
70         slap_mask_t sc_mask;
71
72         /* Extended operations supported by control */
73         char **sc_extendedops;          /* input */
74         BerVarray sc_extendedopsbv;     /* run-time use */
75
76         /* Control parsing callback */
77         SLAP_CTRL_PARSE_FN *sc_parse;
78
79         LDAP_SLIST_ENTRY(slap_control) sc_next;
80 };
81
82 static LDAP_SLIST_HEAD(ControlsList, slap_control) controls_list
83         = LDAP_SLIST_HEAD_INITIALIZER(&controls_list);
84
85 /*
86  * all known request control OIDs should be added to this list
87  */
88 /*
89  * NOTE: initialize num_known_controls to 1 so that cid = 0 always
90  * addresses an undefined control; this allows to safely test for 
91  * well known controls even if they are not registered, e.g. if 
92  * they get moved to modules.  An example is sc_LDAPsync, which 
93  * is implemented in the syncprov overlay and thus, if configured 
94  * as dynamic module, may not be registered.  One side effect is that 
95  * slap_known_controls[0] == NULL, so it should always be used 
96  * starting from 1.
97  * FIXME: should we define the "undefined control" oid?
98  */
99 char *slap_known_controls[SLAP_MAX_CIDS+1];
100 static int num_known_controls = 1;
101
102 static char *proxy_authz_extops[] = {
103         LDAP_EXOP_MODIFY_PASSWD,
104         LDAP_EXOP_WHO_AM_I,
105         LDAP_EXOP_REFRESH,
106         NULL
107 };
108
109 static char *manageDSAit_extops[] = {
110         LDAP_EXOP_REFRESH,
111         NULL
112 };
113
114 #ifdef SLAP_CONTROL_X_SESSION_TRACKING
115 static char *session_tracking_extops[] = {
116         LDAP_EXOP_MODIFY_PASSWD,
117         LDAP_EXOP_WHO_AM_I,
118         LDAP_EXOP_REFRESH,
119         NULL
120 };
121 #endif
122
123 static struct slap_control control_defs[] = {
124         {  LDAP_CONTROL_ASSERT,
125                 (int)offsetof(struct slap_control_ids, sc_assert),
126                 SLAP_CTRL_DELETE|SLAP_CTRL_MODIFY|SLAP_CTRL_RENAME|
127                         SLAP_CTRL_COMPARE|SLAP_CTRL_SEARCH,
128                 NULL, NULL,
129                 parseAssert, LDAP_SLIST_ENTRY_INITIALIZER(next) },
130         { LDAP_CONTROL_PRE_READ,
131                 (int)offsetof(struct slap_control_ids, sc_preRead),
132                 SLAP_CTRL_DELETE|SLAP_CTRL_MODIFY|SLAP_CTRL_RENAME,
133                 NULL, NULL,
134                 parsePreRead, LDAP_SLIST_ENTRY_INITIALIZER(next) },
135         { LDAP_CONTROL_POST_READ,
136                 (int)offsetof(struct slap_control_ids, sc_postRead),
137                 SLAP_CTRL_ADD|SLAP_CTRL_MODIFY|SLAP_CTRL_RENAME,
138                 NULL, NULL,
139                 parsePostRead, LDAP_SLIST_ENTRY_INITIALIZER(next) },
140         { LDAP_CONTROL_VALUESRETURNFILTER,
141                 (int)offsetof(struct slap_control_ids, sc_valuesReturnFilter),
142                 SLAP_CTRL_GLOBAL|SLAP_CTRL_SEARCH,
143                 NULL, NULL,
144                 parseValuesReturnFilter, LDAP_SLIST_ENTRY_INITIALIZER(next) },
145         { LDAP_CONTROL_PAGEDRESULTS,
146                 (int)offsetof(struct slap_control_ids, sc_pagedResults),
147                 SLAP_CTRL_SEARCH,
148                 NULL, NULL,
149                 parsePagedResults, LDAP_SLIST_ENTRY_INITIALIZER(next) },
150 #ifdef SLAP_CONTROL_X_SORTEDRESULTS
151         { LDAP_CONTROL_SORTREQUEST,
152                 (int)offsetof(struct slap_control_ids, sc_sortedResults),
153                 SLAP_CTRL_GLOBAL|SLAP_CTRL_SEARCH|SLAP_CTRL_HIDE,
154                 NULL, NULL,
155                 parseSortedResults, LDAP_SLIST_ENTRY_INITIALIZER(next) },
156 #endif
157         { LDAP_CONTROL_X_DOMAIN_SCOPE,
158                 (int)offsetof(struct slap_control_ids, sc_domainScope),
159                 SLAP_CTRL_GLOBAL|SLAP_CTRL_SEARCH|SLAP_CTRL_HIDE,
160                 NULL, NULL,
161                 parseDomainScope, LDAP_SLIST_ENTRY_INITIALIZER(next) },
162         { LDAP_CONTROL_DONTUSECOPY,
163                 (int)offsetof(struct slap_control_ids, sc_dontUseCopy),
164                 SLAP_CTRL_GLOBAL|SLAP_CTRL_INTROGATE|SLAP_CTRL_HIDE,
165                 NULL, NULL,
166                 parseDontUseCopy, LDAP_SLIST_ENTRY_INITIALIZER(next) },
167         { LDAP_CONTROL_X_PERMISSIVE_MODIFY,
168                 (int)offsetof(struct slap_control_ids, sc_permissiveModify),
169                 SLAP_CTRL_MODIFY|SLAP_CTRL_HIDE,
170                 NULL, NULL,
171                 parsePermissiveModify, LDAP_SLIST_ENTRY_INITIALIZER(next) },
172 #ifdef SLAP_CONTROL_X_TREE_DELETE
173         { LDAP_CONTROL_X_TREE_DELETE,
174                 (int)offsetof(struct slap_control_ids, sc_treeDelete),
175                 SLAP_CTRL_DELETE|SLAP_CTRL_HIDE,
176                 NULL, NULL,
177                 parseTreeDelete, LDAP_SLIST_ENTRY_INITIALIZER(next) },
178 #endif
179         { LDAP_CONTROL_X_SEARCH_OPTIONS,
180                 (int)offsetof(struct slap_control_ids, sc_searchOptions),
181                 SLAP_CTRL_GLOBAL|SLAP_CTRL_SEARCH|SLAP_CTRL_HIDE,
182                 NULL, NULL,
183                 parseSearchOptions, LDAP_SLIST_ENTRY_INITIALIZER(next) },
184         { LDAP_CONTROL_SUBENTRIES,
185                 (int)offsetof(struct slap_control_ids, sc_subentries),
186                 SLAP_CTRL_SEARCH,
187                 NULL, NULL,
188                 parseSubentries, LDAP_SLIST_ENTRY_INITIALIZER(next) },
189         { LDAP_CONTROL_NOOP,
190                 (int)offsetof(struct slap_control_ids, sc_noOp),
191                 SLAP_CTRL_ACCESS|SLAP_CTRL_HIDE,
192                 NULL, NULL,
193                 parseNoOp, LDAP_SLIST_ENTRY_INITIALIZER(next) },
194         { LDAP_CONTROL_RELAX,
195                 (int)offsetof(struct slap_control_ids, sc_relax),
196                 SLAP_CTRL_GLOBAL|SLAP_CTRL_UPDATE|SLAP_CTRL_HIDE,
197                 NULL, NULL,
198                 parseRelax, LDAP_SLIST_ENTRY_INITIALIZER(next) },
199 #ifdef LDAP_X_TXN
200         { LDAP_CONTROL_X_TXN_SPEC,
201                 (int)offsetof(struct slap_control_ids, sc_txnSpec),
202                 SLAP_CTRL_UPDATE|SLAP_CTRL_HIDE,
203                 NULL, NULL,
204                 txn_spec_ctrl, LDAP_SLIST_ENTRY_INITIALIZER(next) },
205 #endif
206         { LDAP_CONTROL_MANAGEDSAIT,
207                 (int)offsetof(struct slap_control_ids, sc_manageDSAit),
208                 SLAP_CTRL_ACCESS,
209                 manageDSAit_extops, NULL,
210                 parseManageDSAit, LDAP_SLIST_ENTRY_INITIALIZER(next) },
211         { LDAP_CONTROL_PROXY_AUTHZ,
212                 (int)offsetof(struct slap_control_ids, sc_proxyAuthz),
213                 SLAP_CTRL_GLOBAL|SLAP_CTRL_ACCESS,
214                 proxy_authz_extops, NULL,
215                 parseProxyAuthz, LDAP_SLIST_ENTRY_INITIALIZER(next) },
216 #ifdef SLAP_CONTROL_X_SESSION_TRACKING
217         { LDAP_CONTROL_X_SESSION_TRACKING,
218                 (int)offsetof(struct slap_control_ids, sc_sessionTracking),
219                 SLAP_CTRL_GLOBAL|SLAP_CTRL_ACCESS|SLAP_CTRL_BIND|SLAP_CTRL_HIDE,
220                 session_tracking_extops, NULL,
221                 parseSessionTracking, LDAP_SLIST_ENTRY_INITIALIZER(next) },
222 #endif
223 #ifdef SLAP_CONTROL_X_WHATFAILED
224         { LDAP_CONTROL_X_WHATFAILED,
225                 (int)offsetof(struct slap_control_ids, sc_whatFailed),
226                 SLAP_CTRL_GLOBAL|SLAP_CTRL_ACCESS|SLAP_CTRL_HIDE,
227                 NULL, NULL,
228                 parseWhatFailed, LDAP_SLIST_ENTRY_INITIALIZER(next) },
229 #endif
230
231         { NULL, 0, 0, NULL, 0, NULL, LDAP_SLIST_ENTRY_INITIALIZER(next) }
232 };
233
234 static struct slap_control *
235 find_ctrl( const char *oid );
236
237 /*
238  * Register a supported control.
239  *
240  * This can be called by an OpenLDAP plugin or, indirectly, by a
241  * SLAPI plugin calling slapi_register_supported_control().
242  *
243  * NOTE: if flags == 1 the control is replaced if already registered;
244  * otherwise registering an already registered control is not allowed.
245  */
246 int
247 register_supported_control2(const char *controloid,
248         slap_mask_t controlmask,
249         char **controlexops,
250         SLAP_CTRL_PARSE_FN *controlparsefn,
251         unsigned flags,
252         int *controlcid)
253 {
254         struct slap_control *sc = NULL;
255         int i;
256         BerVarray extendedopsbv = NULL;
257
258         if ( num_known_controls >= SLAP_MAX_CIDS ) {
259                 Debug( LDAP_DEBUG_ANY, "Too many controls registered."
260                         " Recompile slapd with SLAP_MAX_CIDS defined > %d\n",
261                 SLAP_MAX_CIDS, 0, 0 );
262                 return LDAP_OTHER;
263         }
264
265         if ( controloid == NULL ) {
266                 return LDAP_PARAM_ERROR;
267         }
268
269         /* check if already registered */
270         for ( i = 0; slap_known_controls[ i ]; i++ ) {
271                 if ( strcmp( controloid, slap_known_controls[ i ] ) == 0 ) {
272                         if ( flags == 1 ) {
273                                 Debug( LDAP_DEBUG_TRACE,
274                                         "Control %s already registered; replacing.\n",
275                                         controloid, 0, 0 );
276                                 /* (find and) replace existing handler */
277                                 sc = find_ctrl( controloid );
278                                 assert( sc != NULL );
279                                 break;
280                         }
281
282                         Debug( LDAP_DEBUG_ANY,
283                                 "Control %s already registered.\n",
284                                 controloid, 0, 0 );
285                         return LDAP_PARAM_ERROR;
286                 }
287         }
288
289         /* turn compatible extended operations into bervals */
290         if ( controlexops != NULL ) {
291                 int i;
292
293                 for ( i = 0; controlexops[ i ]; i++ );
294
295                 extendedopsbv = ber_memcalloc( i + 1, sizeof( struct berval ) );
296                 if ( extendedopsbv == NULL ) {
297                         return LDAP_NO_MEMORY;
298                 }
299
300                 for ( i = 0; controlexops[ i ]; i++ ) {
301                         ber_str2bv( controlexops[ i ], 0, 1, &extendedopsbv[ i ] );
302                 }
303         }
304
305         if ( sc == NULL ) {
306                 sc = (struct slap_control *)SLAP_MALLOC( sizeof( *sc ) );
307                 if ( sc == NULL ) {
308                         return LDAP_NO_MEMORY;
309                 }
310
311                 sc->sc_oid = ch_strdup( controloid );
312                 sc->sc_cid = num_known_controls;
313
314                 /* Update slap_known_controls, too. */
315                 slap_known_controls[num_known_controls - 1] = sc->sc_oid;
316                 slap_known_controls[num_known_controls++] = NULL;
317
318                 LDAP_SLIST_NEXT( sc, sc_next ) = NULL;
319                 LDAP_SLIST_INSERT_HEAD( &controls_list, sc, sc_next );
320
321         } else {
322                 if ( sc->sc_extendedopsbv ) {
323                         /* FIXME: in principle, we should rather merge
324                          * existing extops with those supported by the
325                          * new control handling implementation.
326                          * In fact, whether a control is compatible with
327                          * an extop should not be a matter of implementation.
328                          * We likely also need a means for a newly
329                          * registered extop to declare that it is
330                          * comptible with an already registered control.
331                          */
332                         ber_bvarray_free( sc->sc_extendedopsbv );
333                         sc->sc_extendedopsbv = NULL;
334                         sc->sc_extendedops = NULL;
335                 }
336         }
337
338         sc->sc_extendedopsbv = extendedopsbv;
339         sc->sc_mask = controlmask;
340         sc->sc_parse = controlparsefn;
341         if ( controlcid ) {
342                 *controlcid = sc->sc_cid;
343         }
344
345         return LDAP_SUCCESS;
346 }
347
348 /*
349  * One-time initialization of internal controls.
350  */
351 int
352 slap_controls_init( void )
353 {
354         int i, rc;
355
356         rc = LDAP_SUCCESS;
357
358         for ( i = 0; control_defs[i].sc_oid != NULL; i++ ) {
359                 int *cid = (int *)(((char *)&slap_cids) + control_defs[i].sc_cid );
360                 rc = register_supported_control( control_defs[i].sc_oid,
361                         control_defs[i].sc_mask, control_defs[i].sc_extendedops,
362                         control_defs[i].sc_parse, cid );
363                 if ( rc != LDAP_SUCCESS ) break;
364         }
365
366         return rc;
367 }
368
369 /*
370  * Free memory associated with list of supported controls.
371  */
372 void
373 controls_destroy( void )
374 {
375         struct slap_control *sc;
376
377         while ( !LDAP_SLIST_EMPTY(&controls_list) ) {
378                 sc = LDAP_SLIST_FIRST(&controls_list);
379                 LDAP_SLIST_REMOVE_HEAD(&controls_list, sc_next);
380
381                 ch_free( sc->sc_oid );
382                 if ( sc->sc_extendedopsbv != NULL ) {
383                         ber_bvarray_free( sc->sc_extendedopsbv );
384                 }
385                 ch_free( sc );
386         }
387 }
388
389 /*
390  * Format the supportedControl attribute of the root DSE,
391  * detailing which controls are supported by the directory
392  * server.
393  */
394 int
395 controls_root_dse_info( Entry *e )
396 {
397         AttributeDescription *ad_supportedControl
398                 = slap_schema.si_ad_supportedControl;
399         struct berval vals[2];
400         struct slap_control *sc;
401
402         vals[1].bv_val = NULL;
403         vals[1].bv_len = 0;
404
405         LDAP_SLIST_FOREACH( sc, &controls_list, sc_next ) {
406                 if( sc->sc_mask & SLAP_CTRL_HIDE ) continue;
407
408                 vals[0].bv_val = sc->sc_oid;
409                 vals[0].bv_len = strlen( sc->sc_oid );
410
411                 if ( attr_merge( e, ad_supportedControl, vals, NULL ) ) {
412                         return -1;
413                 }
414         }
415
416         return 0;
417 }
418
419 /*
420  * Return a list of OIDs and operation masks for supported
421  * controls. Used by SLAPI.
422  */
423 int
424 get_supported_controls(char ***ctrloidsp,
425         slap_mask_t **ctrlmasks)
426 {
427         int n;
428         char **oids;
429         slap_mask_t *masks;
430         struct slap_control *sc;
431
432         n = 0;
433
434         LDAP_SLIST_FOREACH( sc, &controls_list, sc_next ) {
435                 n++;
436         }
437
438         if ( n == 0 ) {
439                 *ctrloidsp = NULL;
440                 *ctrlmasks = NULL;
441                 return LDAP_SUCCESS;
442         }
443
444         oids = (char **)SLAP_MALLOC( (n + 1) * sizeof(char *) );
445         if ( oids == NULL ) {
446                 return LDAP_NO_MEMORY;
447         }
448         masks = (slap_mask_t *)SLAP_MALLOC( (n + 1) * sizeof(slap_mask_t) );
449         if  ( masks == NULL ) {
450                 SLAP_FREE( oids );
451                 return LDAP_NO_MEMORY;
452         }
453
454         n = 0;
455
456         LDAP_SLIST_FOREACH( sc, &controls_list, sc_next ) {
457                 oids[n] = ch_strdup( sc->sc_oid );
458                 masks[n] = sc->sc_mask;
459                 n++;
460         }
461         oids[n] = NULL;
462         masks[n] = 0;
463
464         *ctrloidsp = oids;
465         *ctrlmasks = masks;
466
467         return LDAP_SUCCESS;
468 }
469
470 /*
471  * Find a control given its OID.
472  */
473 static struct slap_control *
474 find_ctrl( const char *oid )
475 {
476         struct slap_control *sc;
477
478         LDAP_SLIST_FOREACH( sc, &controls_list, sc_next ) {
479                 if ( strcmp( oid, sc->sc_oid ) == 0 ) {
480                         return sc;
481                 }
482         }
483
484         return NULL;
485 }
486
487 int
488 slap_find_control_id(
489         const char *oid,
490         int *cid )
491 {
492         struct slap_control *ctrl = find_ctrl( oid );
493         if ( ctrl ) {
494                 if ( cid ) *cid = ctrl->sc_cid;
495                 return LDAP_SUCCESS;
496         }
497         return LDAP_CONTROL_NOT_FOUND;
498 }
499
500 int
501 slap_global_control( Operation *op, const char *oid, int *cid )
502 {
503         struct slap_control *ctrl = find_ctrl( oid );
504
505         if ( ctrl == NULL ) {
506                 /* should not be reachable */
507                 Debug( LDAP_DEBUG_ANY,
508                         "slap_global_control: unrecognized control: %s\n",      
509                         oid, 0, 0 );
510                 return LDAP_CONTROL_NOT_FOUND;
511         }
512
513         if ( cid ) *cid = ctrl->sc_cid;
514
515         if ( ( ctrl->sc_mask & SLAP_CTRL_GLOBAL ) ||
516                 ( ( op->o_tag & LDAP_REQ_SEARCH ) &&
517                 ( ctrl->sc_mask & SLAP_CTRL_GLOBAL_SEARCH ) ) )
518         {
519                 return LDAP_COMPARE_TRUE;
520         }
521
522 #if 0
523         Debug( LDAP_DEBUG_TRACE,
524                 "slap_global_control: unavailable control: %s\n",      
525                 oid, 0, 0 );
526 #endif
527
528         return LDAP_COMPARE_FALSE;
529 }
530
531 void slap_free_ctrls(
532         Operation *op,
533         LDAPControl **ctrls )
534 {
535         int i;
536
537         for (i=0; ctrls[i]; i++) {
538                 op->o_tmpfree(ctrls[i], op->o_tmpmemctx );
539         }
540         op->o_tmpfree( ctrls, op->o_tmpmemctx );
541 }
542
543 int slap_parse_ctrl(
544         Operation *op,
545         SlapReply *rs,
546         LDAPControl *control,
547         const char **text )
548 {
549         struct slap_control *sc;
550         int rc = LDAP_SUCCESS;
551
552         sc = find_ctrl( control->ldctl_oid );
553         if( sc != NULL ) {
554                 /* recognized control */
555                 slap_mask_t tagmask;
556                 switch( op->o_tag ) {
557                 case LDAP_REQ_ADD:
558                         tagmask = SLAP_CTRL_ADD;
559                         break;
560                 case LDAP_REQ_BIND:
561                         tagmask = SLAP_CTRL_BIND;
562                         break;
563                 case LDAP_REQ_COMPARE:
564                         tagmask = SLAP_CTRL_COMPARE;
565                         break;
566                 case LDAP_REQ_DELETE:
567                         tagmask = SLAP_CTRL_DELETE;
568                         break;
569                 case LDAP_REQ_MODIFY:
570                         tagmask = SLAP_CTRL_MODIFY;
571                         break;
572                 case LDAP_REQ_RENAME:
573                         tagmask = SLAP_CTRL_RENAME;
574                         break;
575                 case LDAP_REQ_SEARCH:
576                         tagmask = SLAP_CTRL_SEARCH;
577                         break;
578                 case LDAP_REQ_UNBIND:
579                         tagmask = SLAP_CTRL_UNBIND;
580                         break;
581                 case LDAP_REQ_ABANDON:
582                         tagmask = SLAP_CTRL_ABANDON;
583                         break;
584                 case LDAP_REQ_EXTENDED:
585                         tagmask=~0L;
586                         assert( op->ore_reqoid.bv_val != NULL );
587                         if( sc->sc_extendedopsbv != NULL ) {
588                                 int i;
589                                 for( i=0; !BER_BVISNULL( &sc->sc_extendedopsbv[i] ); i++ ) {
590                                         if( bvmatch( &op->ore_reqoid,
591                                                 &sc->sc_extendedopsbv[i] ) )
592                                         {
593                                                 tagmask=0L;
594                                                 break;
595                                         }
596                                 }
597                         }
598                         break;
599                 default:
600                         *text = "controls internal error";
601                         return LDAP_OTHER;
602                 }
603
604                 if (( sc->sc_mask & tagmask ) == tagmask ) {
605                         /* available extension */
606                         if ( sc->sc_parse ) {
607                                 rc = sc->sc_parse( op, rs, control );
608                                 assert( rc != LDAP_UNAVAILABLE_CRITICAL_EXTENSION );
609
610                         } else if ( control->ldctl_iscritical ) {
611                                 *text = "not yet implemented";
612                                 rc = LDAP_OTHER;
613                         }
614
615
616                 } else if ( control->ldctl_iscritical ) {
617                         /* unavailable CRITICAL control */
618                         *text = "critical extension is unavailable";
619                         rc = LDAP_UNAVAILABLE_CRITICAL_EXTENSION;
620                 }
621
622         } else if ( control->ldctl_iscritical ) {
623                 /* unrecognized CRITICAL control */
624                 *text = "critical extension is not recognized";
625                 rc = LDAP_UNAVAILABLE_CRITICAL_EXTENSION;
626         }
627
628         return rc;
629 }
630
631 int get_ctrls(
632         Operation *op,
633         SlapReply *rs,
634         int sendres )
635 {
636         int nctrls = 0;
637         ber_tag_t tag;
638         ber_len_t len;
639         char *opaque;
640         BerElement *ber = op->o_ber;
641         struct berval bv;
642 #ifdef SLAP_CONTROL_X_WHATFAILED
643         /* NOTE: right now, slapd checks the validity of each control
644          * while parsing.  As a consequence, it can only detect one
645          * cause of failure at a time.  This results in returning
646          * exactly one OID with the whatFailed control, or no control
647          * at all.
648          */
649         char *failed_oid = NULL;
650 #endif
651
652         len = ber_pvt_ber_remaining(ber);
653
654         if( len == 0) {
655                 /* no controls */
656                 rs->sr_err = LDAP_SUCCESS;
657                 return rs->sr_err;
658         }
659
660         if(( tag = ber_peek_tag( ber, &len )) != LDAP_TAG_CONTROLS ) {
661                 if( tag == LBER_ERROR ) {
662                         rs->sr_err = SLAPD_DISCONNECT;
663                         rs->sr_text = "unexpected data in PDU";
664                 }
665
666                 goto return_results;
667         }
668
669         Debug( LDAP_DEBUG_TRACE,
670                 "=> get_ctrls\n", 0, 0, 0 );
671
672         if( op->o_protocol < LDAP_VERSION3 ) {
673                 rs->sr_err = SLAPD_DISCONNECT;
674                 rs->sr_text = "controls require LDAPv3";
675                 goto return_results;
676         }
677
678         /* one for first control, one for termination */
679         op->o_ctrls = op->o_tmpalloc( 2 * sizeof(LDAPControl *), op->o_tmpmemctx );
680
681 #if 0
682         if( op->ctrls == NULL ) {
683                 rs->sr_err = LDAP_NO_MEMORY;
684                 rs->sr_text = "no memory";
685                 goto return_results;
686         }
687 #endif
688
689         op->o_ctrls[nctrls] = NULL;
690
691         /* step through each element */
692         for( tag = ber_first_element( ber, &len, &opaque );
693                 tag != LBER_ERROR;
694                 tag = ber_next_element( ber, &len, opaque ) )
695         {
696                 LDAPControl *c;
697                 LDAPControl **tctrls;
698
699                 c = op->o_tmpalloc( sizeof(LDAPControl), op->o_tmpmemctx );
700                 memset(c, 0, sizeof(LDAPControl));
701
702                 /* allocate pointer space for current controls (nctrls)
703                  * + this control + extra NULL
704                  */
705                 tctrls = op->o_tmprealloc( op->o_ctrls,
706                         (nctrls+2) * sizeof(LDAPControl *), op->o_tmpmemctx );
707
708 #if 0
709                 if( tctrls == NULL ) {
710                         ch_free( c );
711                         ldap_controls_free(op->o_ctrls);
712                         op->o_ctrls = NULL;
713
714                         rs->sr_err = LDAP_NO_MEMORY;
715                         rs->sr_text = "no memory";
716                         goto return_results;
717                 }
718 #endif
719                 op->o_ctrls = tctrls;
720
721                 op->o_ctrls[nctrls++] = c;
722                 op->o_ctrls[nctrls] = NULL;
723
724                 tag = ber_scanf( ber, "{m" /*}*/, &bv );
725                 c->ldctl_oid = bv.bv_val;
726
727                 if( tag == LBER_ERROR ) {
728                         Debug( LDAP_DEBUG_TRACE, "=> get_ctrls: get oid failed.\n",
729                                 0, 0, 0 );
730
731                         slap_free_ctrls( op, op->o_ctrls );
732                         op->o_ctrls = NULL;
733                         rs->sr_err = SLAPD_DISCONNECT;
734                         rs->sr_text = "decoding controls error";
735                         goto return_results;
736
737                 } else if( c->ldctl_oid == NULL ) {
738                         Debug( LDAP_DEBUG_TRACE,
739                                 "get_ctrls: conn %lu got emtpy OID.\n",
740                                 op->o_connid, 0, 0 );
741
742                         slap_free_ctrls( op, op->o_ctrls );
743                         op->o_ctrls = NULL;
744                         rs->sr_err = LDAP_PROTOCOL_ERROR;
745                         rs->sr_text = "OID field is empty";
746                         goto return_results;
747                 }
748
749                 tag = ber_peek_tag( ber, &len );
750
751                 if( tag == LBER_BOOLEAN ) {
752                         ber_int_t crit;
753                         tag = ber_scanf( ber, "b", &crit );
754
755                         if( tag == LBER_ERROR ) {
756                                 Debug( LDAP_DEBUG_TRACE, "=> get_ctrls: get crit failed.\n",
757                                         0, 0, 0 );
758                                 slap_free_ctrls( op, op->o_ctrls );
759                                 op->o_ctrls = NULL;
760                                 rs->sr_err = SLAPD_DISCONNECT;
761                                 rs->sr_text = "decoding controls error";
762                                 goto return_results;
763                         }
764
765                         c->ldctl_iscritical = (crit != 0);
766                         tag = ber_peek_tag( ber, &len );
767                 }
768
769                 if( tag == LBER_OCTETSTRING ) {
770                         tag = ber_scanf( ber, "m", &c->ldctl_value );
771
772                         if( tag == LBER_ERROR ) {
773                                 Debug( LDAP_DEBUG_TRACE, "=> get_ctrls: conn %lu: "
774                                         "%s (%scritical): get value failed.\n",
775                                         op->o_connid, c->ldctl_oid,
776                                         c->ldctl_iscritical ? "" : "non" );
777                                 slap_free_ctrls( op, op->o_ctrls );
778                                 op->o_ctrls = NULL;
779                                 rs->sr_err = SLAPD_DISCONNECT;
780                                 rs->sr_text = "decoding controls error";
781                                 goto return_results;
782                         }
783                 }
784
785                 Debug( LDAP_DEBUG_TRACE,
786                         "=> get_ctrls: oid=\"%s\" (%scritical)\n",
787                         c->ldctl_oid, c->ldctl_iscritical ? "" : "non", 0 );
788
789                 rs->sr_err = slap_parse_ctrl( op, rs, c, &rs->sr_text );
790                 if ( rs->sr_err != LDAP_SUCCESS ) {
791 #ifdef SLAP_CONTROL_X_WHATFAILED
792                         failed_oid = c->ldctl_oid;
793 #endif
794                         goto return_results;
795                 }
796         }
797
798 return_results:
799         Debug( LDAP_DEBUG_TRACE,
800                 "<= get_ctrls: n=%d rc=%d err=\"%s\"\n",
801                 nctrls, rs->sr_err, rs->sr_text ? rs->sr_text : "");
802
803         if( sendres && rs->sr_err != LDAP_SUCCESS ) {
804                 if( rs->sr_err == SLAPD_DISCONNECT ) {
805                         rs->sr_err = LDAP_PROTOCOL_ERROR;
806                         send_ldap_disconnect( op, rs );
807                         rs->sr_err = SLAPD_DISCONNECT;
808                 } else {
809 #ifdef SLAP_CONTROL_X_WHATFAILED
810                         /* might have not been parsed yet? */
811                         if ( failed_oid != NULL ) {
812                                 if ( !get_whatFailed( op ) ) {
813                                         /* look it up */
814
815                                         /* step through each remaining element */
816                                         for ( ; tag != LBER_ERROR; tag = ber_next_element( ber, &len, opaque ) )
817                                         {
818                                                 LDAPControl c = { 0 };
819
820                                                 tag = ber_scanf( ber, "{m" /*}*/, &bv );
821                                                 c.ldctl_oid = bv.bv_val;
822
823                                                 if ( tag == LBER_ERROR ) {
824                                                         slap_free_ctrls( op, op->o_ctrls );
825                                                         op->o_ctrls = NULL;
826                                                         break;
827
828                                                 } else if ( c.ldctl_oid == NULL ) {
829                                                         slap_free_ctrls( op, op->o_ctrls );
830                                                         op->o_ctrls = NULL;
831                                                         break;
832                                                 }
833
834                                                 tag = ber_peek_tag( ber, &len );
835                                                 if ( tag == LBER_BOOLEAN ) {
836                                                         ber_int_t crit;
837                                                         tag = ber_scanf( ber, "b", &crit );
838                                                         if( tag == LBER_ERROR ) {
839                                                                 slap_free_ctrls( op, op->o_ctrls );
840                                                                 op->o_ctrls = NULL;
841                                                                 break;
842                                                         }
843
844                                                         tag = ber_peek_tag( ber, &len );
845                                                 }
846
847                                                 if ( tag == LBER_OCTETSTRING ) {
848                                                         tag = ber_scanf( ber, "m", &c.ldctl_value );
849
850                                                         if( tag == LBER_ERROR ) {
851                                                                 slap_free_ctrls( op, op->o_ctrls );
852                                                                 op->o_ctrls = NULL;
853                                                                 break;
854                                                         }
855                                                 }
856
857                                                 if ( strcmp( c.ldctl_oid, LDAP_CONTROL_X_WHATFAILED ) == 0 ) {
858                                                         const char *text;
859                                                         slap_parse_ctrl( op, rs, &c, &text );
860                                                         break;
861                                                 }
862                                         }
863                                 }
864
865                                 if ( get_whatFailed( op ) ) {
866                                         char *oids[ 2 ] = { failed_oid, NULL };
867                                         slap_ctrl_whatFailed_add( op, rs, oids );
868                                 }
869                         }
870 #endif
871
872                         send_ldap_result( op, rs );
873                 }
874         }
875
876         return rs->sr_err;
877 }
878
879 int
880 slap_remove_control(
881         Operation       *op,
882         SlapReply       *rs,
883         int             ctrl,
884         BI_chk_controls fnc )
885 {
886         int             i, j;
887
888         switch ( op->o_ctrlflag[ ctrl ] ) {
889         case SLAP_CONTROL_NONCRITICAL:
890                 for ( i = 0, j = -1; op->o_ctrls[ i ] != NULL; i++ ) {
891                         if ( strcmp( op->o_ctrls[ i ]->ldctl_oid,
892                                 slap_known_controls[ ctrl - 1 ] ) == 0 )
893                         {
894                                 j = i;
895                         }
896                 }
897
898                 if ( j == -1 ) {
899                         rs->sr_err = LDAP_OTHER;
900                         break;
901                 }
902
903                 if ( fnc ) {
904                         (void)fnc( op, rs );
905                 }
906
907                 op->o_tmpfree( op->o_ctrls[ j ], op->o_tmpmemctx );
908
909                 if ( i > 1 ) {
910                         AC_MEMCPY( &op->o_ctrls[ j ], &op->o_ctrls[ j + 1 ],
911                                 ( i - j ) * sizeof( LDAPControl * ) );
912
913                 } else {
914                         op->o_tmpfree( op->o_ctrls, op->o_tmpmemctx );
915                         op->o_ctrls = NULL;
916                 }
917
918                 op->o_ctrlflag[ ctrl ] = SLAP_CONTROL_IGNORED;
919
920                 Debug( LDAP_DEBUG_ANY, "%s: "
921                         "non-critical control \"%s\" not supported; stripped.\n",
922                         op->o_log_prefix, slap_known_controls[ ctrl ], 0 );
923                 /* fall thru */
924
925         case SLAP_CONTROL_IGNORED:
926         case SLAP_CONTROL_NONE:
927                 rs->sr_err = SLAP_CB_CONTINUE;
928                 break;
929
930         case SLAP_CONTROL_CRITICAL:
931                 rs->sr_err = LDAP_UNAVAILABLE_CRITICAL_EXTENSION;
932                 if ( fnc ) {
933                         (void)fnc( op, rs );
934                 }
935                 Debug( LDAP_DEBUG_ANY, "%s: "
936                         "critical control \"%s\" not supported.\n",
937                         op->o_log_prefix, slap_known_controls[ ctrl ], 0 );
938                 break;
939
940         default:
941                 /* handle all cases! */
942                 assert( 0 );
943         }
944
945         return rs->sr_err;
946 }
947
948 static int parseDontUseCopy (
949         Operation *op,
950         SlapReply *rs,
951         LDAPControl *ctrl )
952 {
953         if ( op->o_dontUseCopy != SLAP_CONTROL_NONE ) {
954                 rs->sr_text = "dontUseCopy control specified multiple times";
955                 return LDAP_PROTOCOL_ERROR;
956         }
957
958         if ( !BER_BVISNULL( &ctrl->ldctl_value )) {
959                 rs->sr_text = "dontUseCopy control value not absent";
960                 return LDAP_PROTOCOL_ERROR;
961         }
962
963         if ( !ctrl->ldctl_iscritical ) {
964                 rs->sr_text = "dontUseCopy criticality of FALSE not allowed";
965                 return LDAP_PROTOCOL_ERROR;
966         }
967
968         op->o_dontUseCopy = SLAP_CONTROL_CRITICAL;
969         return LDAP_SUCCESS;
970 }
971
972 static int parseRelax (
973         Operation *op,
974         SlapReply *rs,
975         LDAPControl *ctrl )
976 {
977         if ( op->o_relax != SLAP_CONTROL_NONE ) {
978                 rs->sr_text = "relax control specified multiple times";
979                 return LDAP_PROTOCOL_ERROR;
980         }
981
982         if ( !BER_BVISNULL( &ctrl->ldctl_value )) {
983                 rs->sr_text = "relax control value not absent";
984                 return LDAP_PROTOCOL_ERROR;
985         }
986
987         op->o_relax = ctrl->ldctl_iscritical
988                 ? SLAP_CONTROL_CRITICAL
989                 : SLAP_CONTROL_NONCRITICAL;
990
991         return LDAP_SUCCESS;
992 }
993
994 static int parseManageDSAit (
995         Operation *op,
996         SlapReply *rs,
997         LDAPControl *ctrl )
998 {
999         if ( op->o_managedsait != SLAP_CONTROL_NONE ) {
1000                 rs->sr_text = "manageDSAit control specified multiple times";
1001                 return LDAP_PROTOCOL_ERROR;
1002         }
1003
1004         if ( !BER_BVISNULL( &ctrl->ldctl_value )) {
1005                 rs->sr_text = "manageDSAit control value not absent";
1006                 return LDAP_PROTOCOL_ERROR;
1007         }
1008
1009         op->o_managedsait = ctrl->ldctl_iscritical
1010                 ? SLAP_CONTROL_CRITICAL
1011                 : SLAP_CONTROL_NONCRITICAL;
1012
1013         return LDAP_SUCCESS;
1014 }
1015
1016 static int parseProxyAuthz (
1017         Operation *op,
1018         SlapReply *rs,
1019         LDAPControl *ctrl )
1020 {
1021         int             rc;
1022         struct berval   dn = BER_BVNULL;
1023
1024         if ( op->o_proxy_authz != SLAP_CONTROL_NONE ) {
1025                 rs->sr_text = "proxy authorization control specified multiple times";
1026                 return LDAP_PROTOCOL_ERROR;
1027         }
1028
1029         if ( BER_BVISNULL( &ctrl->ldctl_value )) {
1030                 rs->sr_text = "proxy authorization control value absent";
1031                 return LDAP_PROTOCOL_ERROR;
1032         }
1033
1034         if ( !( global_allows & SLAP_ALLOW_PROXY_AUTHZ_ANON )
1035                 && BER_BVISEMPTY( &op->o_ndn ) )
1036         {
1037                 rs->sr_text = "anonymous proxied authorization not allowed";
1038                 return LDAP_PROXIED_AUTHORIZATION_DENIED;
1039         }
1040
1041         op->o_proxy_authz = ctrl->ldctl_iscritical
1042                 ? SLAP_CONTROL_CRITICAL
1043                 : SLAP_CONTROL_NONCRITICAL;
1044
1045         Debug( LDAP_DEBUG_ARGS,
1046                 "parseProxyAuthz: conn %lu authzid=\"%s\"\n", 
1047                 op->o_connid,
1048                 ctrl->ldctl_value.bv_len ?  ctrl->ldctl_value.bv_val : "anonymous",
1049                 0 );
1050
1051         if ( BER_BVISEMPTY( &ctrl->ldctl_value )) {
1052                 Debug( LDAP_DEBUG_TRACE,
1053                         "parseProxyAuthz: conn=%lu anonymous\n", 
1054                         op->o_connid, 0, 0 );
1055
1056                 /* anonymous */
1057                 if ( !BER_BVISNULL( &op->o_ndn ) ) {
1058                         op->o_ndn.bv_val[ 0 ] = '\0';
1059                 }
1060                 op->o_ndn.bv_len = 0;
1061
1062                 if ( !BER_BVISNULL( &op->o_dn ) ) {
1063                         op->o_dn.bv_val[ 0 ] = '\0';
1064                 }
1065                 op->o_dn.bv_len = 0;
1066
1067                 return LDAP_SUCCESS;
1068         }
1069
1070         rc = slap_sasl_getdn( op->o_conn, op, &ctrl->ldctl_value,
1071                         NULL, &dn, SLAP_GETDN_AUTHZID );
1072
1073         /* FIXME: empty DN in proxyAuthz control should be legal... */
1074         if( rc != LDAP_SUCCESS /* || !dn.bv_len */ ) {
1075                 if ( dn.bv_val ) {
1076                         ch_free( dn.bv_val );
1077                 }
1078                 rs->sr_text = "authzId mapping failed";
1079                 return LDAP_PROXIED_AUTHORIZATION_DENIED;
1080         }
1081
1082         Debug( LDAP_DEBUG_TRACE,
1083                 "parseProxyAuthz: conn=%lu \"%s\"\n", 
1084                 op->o_connid,
1085                 dn.bv_len ? dn.bv_val : "(NULL)", 0 );
1086
1087         rc = slap_sasl_authorized( op, &op->o_ndn, &dn );
1088
1089         if ( rc ) {
1090                 ch_free( dn.bv_val );
1091                 rs->sr_text = "not authorized to assume identity";
1092                 return LDAP_PROXIED_AUTHORIZATION_DENIED;
1093         }
1094
1095         ch_free( op->o_ndn.bv_val );
1096         ch_free( op->o_dn.bv_val );
1097
1098         /*
1099          * NOTE: since slap_sasl_getdn() returns a normalized dn,
1100          * from now on op->o_dn is normalized
1101          */
1102         op->o_ndn = dn;
1103         ber_dupbv( &op->o_dn, &dn );
1104
1105         Statslog( LDAP_DEBUG_STATS, "%s PROXYAUTHZ dn=\"%s\"\n",
1106             op->o_log_prefix, dn.bv_val, 0, 0, 0 );
1107
1108         return LDAP_SUCCESS;
1109 }
1110
1111 static int parseNoOp (
1112         Operation *op,
1113         SlapReply *rs,
1114         LDAPControl *ctrl )
1115 {
1116         if ( op->o_noop != SLAP_CONTROL_NONE ) {
1117                 rs->sr_text = "noop control specified multiple times";
1118                 return LDAP_PROTOCOL_ERROR;
1119         }
1120
1121         if ( !BER_BVISNULL( &ctrl->ldctl_value ) ) {
1122                 rs->sr_text = "noop control value not empty";
1123                 return LDAP_PROTOCOL_ERROR;
1124         }
1125
1126         op->o_noop = ctrl->ldctl_iscritical
1127                 ? SLAP_CONTROL_CRITICAL
1128                 : SLAP_CONTROL_NONCRITICAL;
1129
1130         return LDAP_SUCCESS;
1131 }
1132
1133 static int parsePagedResults (
1134         Operation *op,
1135         SlapReply *rs,
1136         LDAPControl *ctrl )
1137 {
1138         BerElementBuffer berbuf;
1139         BerElement      *ber = (BerElement *)&berbuf;
1140         struct berval   cookie;
1141         PagedResultsState       *ps;
1142         int             rc = LDAP_SUCCESS;
1143         ber_tag_t       tag;
1144         ber_int_t       size;
1145
1146         if ( op->o_pagedresults != SLAP_CONTROL_NONE ) {
1147                 rs->sr_text = "paged results control specified multiple times";
1148                 return LDAP_PROTOCOL_ERROR;
1149         }
1150
1151         if ( BER_BVISNULL( &ctrl->ldctl_value ) ) {
1152                 rs->sr_text = "paged results control value is absent";
1153                 return LDAP_PROTOCOL_ERROR;
1154         }
1155
1156         if ( BER_BVISEMPTY( &ctrl->ldctl_value ) ) {
1157                 rs->sr_text = "paged results control value is empty";
1158                 return LDAP_PROTOCOL_ERROR;
1159         }
1160
1161         /* Parse the control value
1162          *      realSearchControlValue ::= SEQUENCE {
1163          *              size    INTEGER (0..maxInt),
1164          *                              -- requested page size from client
1165          *                              -- result set size estimate from server
1166          *              cookie  OCTET STRING
1167          * }
1168          */
1169         ber_init2( ber, &ctrl->ldctl_value, LBER_USE_DER );
1170
1171         tag = ber_scanf( ber, "{im}", &size, &cookie );
1172
1173         if ( tag == LBER_ERROR ) {
1174                 rs->sr_text = "paged results control could not be decoded";
1175                 rc = LDAP_PROTOCOL_ERROR;
1176                 goto done;
1177         }
1178
1179         if ( size < 0 ) {
1180                 rs->sr_text = "paged results control size invalid";
1181                 rc = LDAP_PROTOCOL_ERROR;
1182                 goto done;
1183         }
1184
1185         ps = op->o_tmpalloc( sizeof(PagedResultsState), op->o_tmpmemctx );
1186         *ps = op->o_conn->c_pagedresults_state;
1187         ps->ps_size = size;
1188         ps->ps_cookieval = cookie;
1189         op->o_pagedresults_state = ps;
1190         if ( !cookie.bv_len ) {
1191                 ps->ps_count = 0;
1192                 ps->ps_cookie = 0;
1193         }
1194
1195         /* NOTE: according to RFC 2696 3.:
1196
1197     If the page size is greater than or equal to the sizeLimit value, the
1198     server should ignore the control as the request can be satisfied in a
1199     single page.
1200
1201          * NOTE: this assumes that the op->ors_slimit be set
1202          * before the controls are parsed.     
1203          */
1204
1205         if ( op->ors_slimit > 0 && size >= op->ors_slimit ) {
1206                 op->o_pagedresults = SLAP_CONTROL_IGNORED;
1207
1208         } else if ( ctrl->ldctl_iscritical ) {
1209                 op->o_pagedresults = SLAP_CONTROL_CRITICAL;
1210
1211         } else {
1212                 op->o_pagedresults = SLAP_CONTROL_NONCRITICAL;
1213         }
1214
1215 done:;
1216         return rc;
1217 }
1218
1219 #ifdef SLAP_CONTROL_X_SORTEDRESULTS
1220 static int parseSortedResults (
1221         Operation *op,
1222         SlapReply *rs,
1223         LDAPControl *ctrl )
1224 {
1225         int             rc = LDAP_SUCCESS;
1226
1227         if ( op->o_sortedresults != SLAP_CONTROL_NONE ) {
1228                 rs->sr_text = "sorted results control specified multiple times";
1229                 return LDAP_PROTOCOL_ERROR;
1230         }
1231
1232         if ( BER_BVISNULL( &ctrl->ldctl_value ) ) {
1233                 rs->sr_text = "sorted results control value is absent";
1234                 return LDAP_PROTOCOL_ERROR;
1235         }
1236
1237         if ( BER_BVISEMPTY( &ctrl->ldctl_value ) ) {
1238                 rs->sr_text = "sorted results control value is empty";
1239                 return LDAP_PROTOCOL_ERROR;
1240         }
1241
1242         /* blow off parsing the value */
1243
1244         op->o_sortedresults = ctrl->ldctl_iscritical
1245                 ? SLAP_CONTROL_CRITICAL
1246                 : SLAP_CONTROL_NONCRITICAL;
1247
1248         return rc;
1249 }
1250 #endif
1251
1252 static int parseAssert (
1253         Operation *op,
1254         SlapReply *rs,
1255         LDAPControl *ctrl )
1256 {
1257         BerElement      *ber;
1258         struct berval   fstr = BER_BVNULL;
1259
1260         if ( op->o_assert != SLAP_CONTROL_NONE ) {
1261                 rs->sr_text = "assert control specified multiple times";
1262                 return LDAP_PROTOCOL_ERROR;
1263         }
1264
1265         if ( BER_BVISNULL( &ctrl->ldctl_value )) {
1266                 rs->sr_text = "assert control value is absent";
1267                 return LDAP_PROTOCOL_ERROR;
1268         }
1269
1270         if ( BER_BVISEMPTY( &ctrl->ldctl_value )) {
1271                 rs->sr_text = "assert control value is empty";
1272                 return LDAP_PROTOCOL_ERROR;
1273         }
1274
1275         ber = ber_init( &(ctrl->ldctl_value) );
1276         if (ber == NULL) {
1277                 rs->sr_text = "assert control: internal error";
1278                 return LDAP_OTHER;
1279         }
1280
1281         rs->sr_err = get_filter( op, ber, (Filter **)&(op->o_assertion),
1282                 &rs->sr_text);
1283         (void) ber_free( ber, 1 );
1284         if( rs->sr_err != LDAP_SUCCESS ) {
1285                 if( rs->sr_err == SLAPD_DISCONNECT ) {
1286                         rs->sr_err = LDAP_PROTOCOL_ERROR;
1287                         send_ldap_disconnect( op, rs );
1288                         rs->sr_err = SLAPD_DISCONNECT;
1289                 } else {
1290                         send_ldap_result( op, rs );
1291                 }
1292                 if( op->o_assertion != NULL ) {
1293                         filter_free_x( op, op->o_assertion, 1 );
1294                 }
1295                 return rs->sr_err;
1296         }
1297
1298 #ifdef LDAP_DEBUG
1299         filter2bv_x( op, op->o_assertion, &fstr );
1300
1301         Debug( LDAP_DEBUG_ARGS, "parseAssert: conn %ld assert: %s\n",
1302                 op->o_connid, fstr.bv_len ? fstr.bv_val : "empty" , 0 );
1303         op->o_tmpfree( fstr.bv_val, op->o_tmpmemctx );
1304 #endif
1305
1306         op->o_assert = ctrl->ldctl_iscritical
1307                 ? SLAP_CONTROL_CRITICAL
1308                 : SLAP_CONTROL_NONCRITICAL;
1309
1310         rs->sr_err = LDAP_SUCCESS;
1311         return LDAP_SUCCESS;
1312 }
1313
1314 #define READMSG(post, msg) \
1315         ( post ? "postread control: " msg : "preread control: " msg )
1316
1317 static int
1318 parseReadAttrs(
1319         Operation *op,
1320         SlapReply *rs,
1321         LDAPControl *ctrl,
1322         int post )
1323 {
1324         ber_len_t       siz, off, i;
1325         BerElement      *ber;
1326         AttributeName   *an = NULL;
1327
1328         if ( ( post && op->o_postread != SLAP_CONTROL_NONE ) ||
1329                 ( !post && op->o_preread != SLAP_CONTROL_NONE ) )
1330         {
1331                 rs->sr_text = READMSG( post, "specified multiple times" );
1332                 return LDAP_PROTOCOL_ERROR;
1333         }
1334
1335         if ( BER_BVISNULL( &ctrl->ldctl_value ) ) {
1336                 rs->sr_text = READMSG( post, "value is absent" );
1337                 return LDAP_PROTOCOL_ERROR;
1338         }
1339
1340         if ( BER_BVISEMPTY( &ctrl->ldctl_value ) ) {
1341                 rs->sr_text = READMSG( post, "value is empty" );
1342                 return LDAP_PROTOCOL_ERROR;
1343         }
1344
1345 #ifdef LDAP_X_TXN
1346         if ( op->o_txnSpec ) { /* temporary limitation */
1347                 rs->sr_text = READMSG( post, "cannot perform in transaction" );
1348                 return LDAP_UNWILLING_TO_PERFORM;
1349         }
1350 #endif
1351
1352         ber = ber_init( &ctrl->ldctl_value );
1353         if ( ber == NULL ) {
1354                 rs->sr_text = READMSG( post, "internal error" );
1355                 return LDAP_OTHER;
1356         }
1357
1358         rs->sr_err = LDAP_SUCCESS;
1359         siz = sizeof( AttributeName );
1360         off = offsetof( AttributeName, an_name );
1361         if ( ber_scanf( ber, "{M}", &an, &siz, off ) == LBER_ERROR ) {
1362                 rs->sr_text = READMSG( post, "decoding error" );
1363                 rs->sr_err = LDAP_PROTOCOL_ERROR;
1364                 goto done;
1365         }
1366
1367         for ( i = 0; i < siz; i++ ) {
1368                 const char      *dummy = NULL;
1369                 int             rc;
1370
1371                 an[i].an_desc = NULL;
1372                 an[i].an_oc = NULL;
1373                 an[i].an_oc_exclude = 0;
1374                 rc = slap_bv2ad( &an[i].an_name, &an[i].an_desc, &dummy );
1375                 if ( rc == LDAP_SUCCESS ) {
1376                         an[i].an_name = an[i].an_desc->ad_cname;
1377
1378                 } else {
1379                         int                     j;
1380                         static struct berval    special_attrs[] = {
1381                                 BER_BVC( LDAP_NO_ATTRS ),
1382                                 BER_BVC( LDAP_ALL_USER_ATTRIBUTES ),
1383                                 BER_BVC( LDAP_ALL_OPERATIONAL_ATTRIBUTES ),
1384                                 BER_BVNULL
1385                         };
1386
1387                         /* deal with special attribute types */
1388                         for ( j = 0; !BER_BVISNULL( &special_attrs[ j ] ); j++ ) {
1389                                 if ( bvmatch( &an[i].an_name, &special_attrs[ j ] ) ) {
1390                                         an[i].an_name = special_attrs[ j ];
1391                                         break;
1392                                 }
1393                         }
1394
1395                         if ( BER_BVISNULL( &special_attrs[ j ] ) && ctrl->ldctl_iscritical ) {
1396                                 rs->sr_err = rc;
1397                                 rs->sr_text = dummy ? dummy
1398                                         : READMSG( post, "unknown attributeType" );
1399                                 goto done;
1400                         }
1401                 }
1402         }
1403
1404         if ( post ) {
1405                 op->o_postread_attrs = an;
1406                 op->o_postread = ctrl->ldctl_iscritical
1407                         ? SLAP_CONTROL_CRITICAL
1408                         : SLAP_CONTROL_NONCRITICAL;
1409         } else {
1410                 op->o_preread_attrs = an;
1411                 op->o_preread = ctrl->ldctl_iscritical
1412                         ? SLAP_CONTROL_CRITICAL
1413                         : SLAP_CONTROL_NONCRITICAL;
1414         }
1415
1416 done:
1417         (void) ber_free( ber, 1 );
1418         return rs->sr_err;
1419 }
1420
1421 static int parsePreRead (
1422         Operation *op,
1423         SlapReply *rs,
1424         LDAPControl *ctrl )
1425 {
1426         return parseReadAttrs( op, rs, ctrl, 0 );
1427 }
1428
1429 static int parsePostRead (
1430         Operation *op,
1431         SlapReply *rs,
1432         LDAPControl *ctrl )
1433 {
1434         return parseReadAttrs( op, rs, ctrl, 1 );
1435 }
1436
1437 static int parseValuesReturnFilter (
1438         Operation *op,
1439         SlapReply *rs,
1440         LDAPControl *ctrl )
1441 {
1442         BerElement      *ber;
1443         struct berval   fstr = BER_BVNULL;
1444
1445         if ( op->o_valuesreturnfilter != SLAP_CONTROL_NONE ) {
1446                 rs->sr_text = "valuesReturnFilter control specified multiple times";
1447                 return LDAP_PROTOCOL_ERROR;
1448         }
1449
1450         if ( BER_BVISNULL( &ctrl->ldctl_value )) {
1451                 rs->sr_text = "valuesReturnFilter control value is absent";
1452                 return LDAP_PROTOCOL_ERROR;
1453         }
1454
1455         if ( BER_BVISEMPTY( &ctrl->ldctl_value )) {
1456                 rs->sr_text = "valuesReturnFilter control value is empty";
1457                 return LDAP_PROTOCOL_ERROR;
1458         }
1459
1460         ber = ber_init( &(ctrl->ldctl_value) );
1461         if (ber == NULL) {
1462                 rs->sr_text = "internal error";
1463                 return LDAP_OTHER;
1464         }
1465
1466         rs->sr_err = get_vrFilter( op, ber,
1467                 (ValuesReturnFilter **)&(op->o_vrFilter), &rs->sr_text);
1468
1469         (void) ber_free( ber, 1 );
1470
1471         if( rs->sr_err != LDAP_SUCCESS ) {
1472                 if( rs->sr_err == SLAPD_DISCONNECT ) {
1473                         rs->sr_err = LDAP_PROTOCOL_ERROR;
1474                         send_ldap_disconnect( op, rs );
1475                         rs->sr_err = SLAPD_DISCONNECT;
1476                 } else {
1477                         send_ldap_result( op, rs );
1478                 }
1479                 if( op->o_vrFilter != NULL) vrFilter_free( op, op->o_vrFilter ); 
1480         }
1481 #ifdef LDAP_DEBUG
1482         else {
1483                 vrFilter2bv( op, op->o_vrFilter, &fstr );
1484         }
1485
1486         Debug( LDAP_DEBUG_ARGS, "       vrFilter: %s\n",
1487                 fstr.bv_len ? fstr.bv_val : "empty", 0, 0 );
1488         op->o_tmpfree( fstr.bv_val, op->o_tmpmemctx );
1489 #endif
1490
1491         op->o_valuesreturnfilter = ctrl->ldctl_iscritical
1492                 ? SLAP_CONTROL_CRITICAL
1493                 : SLAP_CONTROL_NONCRITICAL;
1494
1495         rs->sr_err = LDAP_SUCCESS;
1496         return LDAP_SUCCESS;
1497 }
1498
1499 static int parseSubentries (
1500         Operation *op,
1501         SlapReply *rs,
1502         LDAPControl *ctrl )
1503 {
1504         if ( op->o_subentries != SLAP_CONTROL_NONE ) {
1505                 rs->sr_text = "subentries control specified multiple times";
1506                 return LDAP_PROTOCOL_ERROR;
1507         }
1508
1509         /* FIXME: should use BER library */
1510         if( ( ctrl->ldctl_value.bv_len != 3 )
1511                 || ( ctrl->ldctl_value.bv_val[0] != 0x01 )
1512                 || ( ctrl->ldctl_value.bv_val[1] != 0x01 ))
1513         {
1514                 rs->sr_text = "subentries control value encoding is bogus";
1515                 return LDAP_PROTOCOL_ERROR;
1516         }
1517
1518         op->o_subentries = ctrl->ldctl_iscritical
1519                 ? SLAP_CONTROL_CRITICAL
1520                 : SLAP_CONTROL_NONCRITICAL;
1521
1522         if (ctrl->ldctl_value.bv_val[2]) {
1523                 set_subentries_visibility( op );
1524         }
1525
1526         return LDAP_SUCCESS;
1527 }
1528
1529 static int parsePermissiveModify (
1530         Operation *op,
1531         SlapReply *rs,
1532         LDAPControl *ctrl )
1533 {
1534         if ( op->o_permissive_modify != SLAP_CONTROL_NONE ) {
1535                 rs->sr_text = "permissiveModify control specified multiple times";
1536                 return LDAP_PROTOCOL_ERROR;
1537         }
1538
1539         if ( BER_BVISNULL( &ctrl->ldctl_value )) {
1540                 rs->sr_text = "permissiveModify control value not absent";
1541                 return LDAP_PROTOCOL_ERROR;
1542         }
1543
1544         op->o_permissive_modify = ctrl->ldctl_iscritical
1545                 ? SLAP_CONTROL_CRITICAL
1546                 : SLAP_CONTROL_NONCRITICAL;
1547
1548         return LDAP_SUCCESS;
1549 }
1550
1551 static int parseDomainScope (
1552         Operation *op,
1553         SlapReply *rs,
1554         LDAPControl *ctrl )
1555 {
1556         if ( op->o_domain_scope != SLAP_CONTROL_NONE ) {
1557                 rs->sr_text = "domainScope control specified multiple times";
1558                 return LDAP_PROTOCOL_ERROR;
1559         }
1560
1561         if ( BER_BVISNULL( &ctrl->ldctl_value )) {
1562                 rs->sr_text = "domainScope control value not empty";
1563                 return LDAP_PROTOCOL_ERROR;
1564         }
1565
1566         op->o_domain_scope = ctrl->ldctl_iscritical
1567                 ? SLAP_CONTROL_CRITICAL
1568                 : SLAP_CONTROL_NONCRITICAL;
1569
1570         return LDAP_SUCCESS;
1571 }
1572
1573 #ifdef SLAP_CONTROL_X_TREE_DELETE
1574 static int parseTreeDelete (
1575         Operation *op,
1576         SlapReply *rs,
1577         LDAPControl *ctrl )
1578 {
1579         if ( op->o_tree_delete != SLAP_CONTROL_NONE ) {
1580                 rs->sr_text = "treeDelete control specified multiple times";
1581                 return LDAP_PROTOCOL_ERROR;
1582         }
1583
1584         if ( !BER_BVISNULL( &ctrl->ldctl_value )) {
1585                 rs->sr_text = "treeDelete control value not absent";
1586                 return LDAP_PROTOCOL_ERROR;
1587         }
1588
1589         op->o_tree_delete = ctrl->ldctl_iscritical
1590                 ? SLAP_CONTROL_CRITICAL
1591                 : SLAP_CONTROL_NONCRITICAL;
1592
1593         return LDAP_SUCCESS;
1594 }
1595 #endif
1596
1597 static int parseSearchOptions (
1598         Operation *op,
1599         SlapReply *rs,
1600         LDAPControl *ctrl )
1601 {
1602         BerElement *ber;
1603         ber_int_t search_flags;
1604         ber_tag_t tag;
1605
1606         if ( BER_BVISNULL( &ctrl->ldctl_value )) {
1607                 rs->sr_text = "searchOptions control value is absent";
1608                 return LDAP_PROTOCOL_ERROR;
1609         }
1610
1611         if ( BER_BVISEMPTY( &ctrl->ldctl_value )) {
1612                 rs->sr_text = "searchOptions control value is empty";
1613                 return LDAP_PROTOCOL_ERROR;
1614         }
1615
1616         ber = ber_init( &ctrl->ldctl_value );
1617         if( ber == NULL ) {
1618                 rs->sr_text = "internal error";
1619                 return LDAP_OTHER;
1620         }
1621
1622         tag = ber_scanf( ber, "{i}", &search_flags );
1623         (void) ber_free( ber, 1 );
1624
1625         if ( tag == LBER_ERROR ) {
1626                 rs->sr_text = "searchOptions control decoding error";
1627                 return LDAP_PROTOCOL_ERROR;
1628         }
1629
1630         if ( search_flags & LDAP_SEARCH_FLAG_DOMAIN_SCOPE ) {
1631                 if ( op->o_domain_scope != SLAP_CONTROL_NONE ) {
1632                         rs->sr_text = "searchOptions control specified multiple times "
1633                                 "or with domainScope control";
1634                         return LDAP_PROTOCOL_ERROR;
1635                 }
1636
1637                 op->o_domain_scope = ctrl->ldctl_iscritical
1638                         ? SLAP_CONTROL_CRITICAL
1639                         : SLAP_CONTROL_NONCRITICAL;
1640         }
1641
1642         if ( search_flags & ~(LDAP_SEARCH_FLAG_DOMAIN_SCOPE) ) {
1643                 /* Other search flags not recognised so far,
1644                  * including:
1645                  *              LDAP_SEARCH_FLAG_PHANTOM_ROOM
1646                  */
1647                 rs->sr_text = "searchOptions contained unrecognized flag";
1648                 return LDAP_UNWILLING_TO_PERFORM;
1649         }
1650
1651         return LDAP_SUCCESS;
1652 }
1653
1654 #ifdef SLAP_CONTROL_X_SESSION_TRACKING
1655 struct berval session_tracking_formats[] = {
1656         BER_BVC( LDAP_CONTROL_X_SESSION_TRACKING_RADIUS_ACCT_SESSION_ID ),
1657                 BER_BVC( "RADIUS-Acct-Session-Id" ),
1658         BER_BVC( LDAP_CONTROL_X_SESSION_TRACKING_RADIUS_ACCT_MULTI_SESSION_ID ),
1659                 BER_BVC( "RADIUS-Acct-Multi-Session-Id" ),
1660         BER_BVC( LDAP_CONTROL_X_SESSION_TRACKING_USERNAME ),
1661                 BER_BVC( "USERNAME" ),
1662
1663         BER_BVNULL
1664 };
1665
1666 static int parseSessionTracking(
1667         Operation *op,
1668         SlapReply *rs,
1669         LDAPControl *ctrl )
1670 {
1671         BerElement              *ber;
1672         ber_tag_t               tag;
1673         ber_len_t               len;
1674         int                     i, rc;
1675
1676         struct berval           sessionSourceIp = BER_BVNULL,
1677                                 sessionSourceName = BER_BVNULL,
1678                                 formatOID = BER_BVNULL,
1679                                 sessionTrackingIdentifier = BER_BVNULL;
1680
1681         size_t                  st_len, st_pos;
1682
1683         if ( ctrl->ldctl_iscritical ) {
1684                 rs->sr_text = "sessionTracking criticality is TRUE";
1685                 return LDAP_PROTOCOL_ERROR;
1686         }
1687
1688         if ( BER_BVISNULL( &ctrl->ldctl_value ) ) {
1689                 rs->sr_text = "sessionTracking control value is absent";
1690                 return LDAP_PROTOCOL_ERROR;
1691         }
1692
1693         if ( BER_BVISEMPTY( &ctrl->ldctl_value ) ) {
1694                 rs->sr_text = "sessionTracking control value is empty";
1695                 return LDAP_PROTOCOL_ERROR;
1696         }
1697
1698         /* TODO: add the capability to determine if a client is allowed
1699          * to use this control, based on identity, ip and so */
1700
1701         ber = ber_init( &ctrl->ldctl_value );
1702         if ( ber == NULL ) {
1703                 rs->sr_text = "internal error";
1704                 return LDAP_OTHER;
1705         }
1706
1707         tag = ber_skip_tag( ber, &len );
1708         if ( tag != LBER_SEQUENCE ) {
1709                 tag = LBER_ERROR;
1710                 goto error;
1711         }
1712
1713         /* sessionSourceIp */
1714         tag = ber_peek_tag( ber, &len );
1715         if ( tag == LBER_DEFAULT ) {
1716                 tag = LBER_ERROR;
1717                 goto error;
1718         }
1719
1720         if ( len == 0 ) {
1721                 tag = ber_skip_tag( ber, &len );
1722
1723         } else if ( len > 128 ) {
1724                 rs->sr_text = "sessionTracking.sessionSourceIp too long";
1725                 rs->sr_err = LDAP_PROTOCOL_ERROR;
1726                 goto error;
1727
1728         } else {
1729                 tag = ber_scanf( ber, "m", &sessionSourceIp );
1730         }
1731
1732         if ( ldif_is_not_printable( sessionSourceIp.bv_val, sessionSourceIp.bv_len ) ) {
1733                 BER_BVZERO( &sessionSourceIp );
1734         }
1735
1736         /* sessionSourceName */
1737         tag = ber_peek_tag( ber, &len );
1738         if ( tag == LBER_DEFAULT ) {
1739                 tag = LBER_ERROR;
1740                 goto error;
1741         }
1742
1743         if ( len == 0 ) {
1744                 tag = ber_skip_tag( ber, &len );
1745
1746         } else if ( len > 65536 ) {
1747                 rs->sr_text = "sessionTracking.sessionSourceName too long";
1748                 rs->sr_err = LDAP_PROTOCOL_ERROR;
1749                 goto error;
1750
1751         } else {
1752                 tag = ber_scanf( ber, "m", &sessionSourceName );
1753         }
1754
1755         if ( ldif_is_not_printable( sessionSourceName.bv_val, sessionSourceName.bv_len ) ) {
1756                 BER_BVZERO( &sessionSourceName );
1757         }
1758
1759         /* formatOID */
1760         tag = ber_peek_tag( ber, &len );
1761         if ( tag == LBER_DEFAULT ) {
1762                 tag = LBER_ERROR;
1763                 goto error;
1764         }
1765
1766         if ( len == 0 ) {
1767                 rs->sr_text = "sessionTracking.formatOID empty";
1768                 rs->sr_err = LDAP_PROTOCOL_ERROR;
1769                 goto error;
1770
1771         } else if ( len > 1024 ) {
1772                 rs->sr_text = "sessionTracking.formatOID too long";
1773                 rs->sr_err = LDAP_PROTOCOL_ERROR;
1774                 goto error;
1775
1776         } else {
1777                 tag = ber_scanf( ber, "m", &formatOID );
1778         }
1779
1780         rc = numericoidValidate( NULL, &formatOID );
1781         if ( rc != LDAP_SUCCESS ) {
1782                 rs->sr_text = "sessionTracking.formatOID invalid";
1783                 goto error;
1784         }
1785
1786         for ( i = 0; !BER_BVISNULL( &session_tracking_formats[ i ] ); i += 2 )
1787         {
1788                 if ( bvmatch( &formatOID, &session_tracking_formats[ i ] ) ) {
1789                         formatOID = session_tracking_formats[ i + 1 ];
1790                         break;
1791                 }
1792         }
1793
1794         /* sessionTrackingIdentifier */
1795         tag = ber_peek_tag( ber, &len );
1796         if ( tag == LBER_DEFAULT ) {
1797                 tag = LBER_ERROR;
1798                 goto error;
1799         }
1800
1801         if ( len == 0 ) {
1802                 tag = ber_skip_tag( ber, &len );
1803
1804         } else {
1805                 /* note: should not be more than 65536... */
1806                 tag = ber_scanf( ber, "m", &sessionTrackingIdentifier );
1807                 if ( ldif_is_not_printable( sessionTrackingIdentifier.bv_val, sessionTrackingIdentifier.bv_len ) ) {
1808                         /* we want the OID printed, at least */
1809                         BER_BVSTR( &sessionTrackingIdentifier, "" );
1810                 }
1811         }
1812
1813         /* closure */
1814         tag = ber_skip_tag( ber, &len );
1815         if ( tag != LBER_DEFAULT || len != 0 ) {
1816                 tag = LBER_ERROR;
1817                 goto error;
1818         }
1819         tag = 0;
1820
1821         st_len = 0;
1822         if ( !BER_BVISNULL( &sessionSourceIp ) ) {
1823                 st_len += STRLENOF( "IP=" ) + sessionSourceIp.bv_len;
1824         }
1825         if ( !BER_BVISNULL( &sessionSourceName ) ) {
1826                 if ( st_len ) st_len++;
1827                 st_len += STRLENOF( "NAME=" ) + sessionSourceName.bv_len;
1828         }
1829         if ( !BER_BVISNULL( &sessionTrackingIdentifier ) ) {
1830                 if ( st_len ) st_len++;
1831                 st_len += formatOID.bv_len + STRLENOF( "=" )
1832                         + sessionTrackingIdentifier.bv_len;
1833         }
1834
1835         if ( st_len == 0 ) {
1836                 goto error;
1837         }
1838
1839         st_len += STRLENOF( " []" );
1840         st_pos = strlen( op->o_log_prefix );
1841
1842         if ( sizeof( op->o_log_prefix ) - st_pos > st_len ) {
1843                 char    *ptr = &op->o_log_prefix[ st_pos ];
1844
1845                 ptr = lutil_strcopy( ptr, " [" /*]*/ );
1846
1847                 st_len = 0;
1848                 if ( !BER_BVISNULL( &sessionSourceIp ) ) {
1849                         ptr = lutil_strcopy( ptr, "IP=" );
1850                         ptr = lutil_strcopy( ptr, sessionSourceIp.bv_val );
1851                         st_len++;
1852                 }
1853
1854                 if ( !BER_BVISNULL( &sessionSourceName ) ) {
1855                         if ( st_len ) *ptr++ = ' ';
1856                         ptr = lutil_strcopy( ptr, "NAME=" );
1857                         ptr = lutil_strcopy( ptr, sessionSourceName.bv_val );
1858                         st_len++;
1859                 }
1860
1861                 if ( !BER_BVISNULL( &sessionTrackingIdentifier ) ) {
1862                         if ( st_len ) *ptr++ = ' ';
1863                         ptr = lutil_strcopy( ptr, formatOID.bv_val );
1864                         *ptr++ = '=';
1865                         ptr = lutil_strcopy( ptr, sessionTrackingIdentifier.bv_val );
1866                 }
1867
1868                 *ptr++ = /*[*/ ']';
1869                 *ptr = '\0';
1870         }
1871
1872 error:;
1873         (void)ber_free( ber, 1 );
1874
1875         if ( tag == LBER_ERROR ) {
1876                 rs->sr_text = "sessionTracking control decoding error";
1877                 return LDAP_PROTOCOL_ERROR;
1878         }
1879
1880
1881         return rs->sr_err;
1882 }
1883
1884 int
1885 slap_ctrl_session_tracking_add(
1886         Operation *op,
1887         SlapReply *rs,
1888         struct berval *ip,
1889         struct berval *name,
1890         struct berval *id,
1891         LDAPControl *ctrl )
1892 {
1893         BerElementBuffer berbuf;
1894         BerElement      *ber = (BerElement *)&berbuf;
1895
1896         static struct berval    oid = BER_BVC( LDAP_CONTROL_X_SESSION_TRACKING_USERNAME );
1897
1898         assert( ctrl != NULL );
1899
1900         ber_init2( ber, NULL, LBER_USE_DER );
1901
1902         ber_printf( ber, "{OOOO}", ip, name, &oid, id ); 
1903
1904         if ( ber_flatten2( ber, &ctrl->ldctl_value, 0 ) == -1 ) {
1905                 rs->sr_err = LDAP_OTHER;
1906                 goto done;
1907         }
1908
1909         ctrl->ldctl_oid = LDAP_CONTROL_X_SESSION_TRACKING;
1910         ctrl->ldctl_iscritical = 0;
1911
1912         rs->sr_err = LDAP_SUCCESS;
1913
1914 done:;
1915         return rs->sr_err;
1916 }
1917
1918 int
1919 slap_ctrl_session_tracking_request_add( Operation *op, SlapReply *rs, LDAPControl *ctrl )
1920 {
1921         static struct berval    bv_unknown = BER_BVC( SLAP_STRING_UNKNOWN );
1922         struct berval           ip = BER_BVNULL,
1923                                 name = BER_BVNULL,
1924                                 id = BER_BVNULL;
1925
1926         if ( !BER_BVISNULL( &op->o_conn->c_peer_name ) &&
1927                 memcmp( op->o_conn->c_peer_name.bv_val, "IP=", STRLENOF( "IP=" ) ) == 0 )
1928         {
1929                 char    *ptr;
1930
1931                 ip.bv_val = op->o_conn->c_peer_name.bv_val + STRLENOF( "IP=" );
1932                 ip.bv_len = op->o_conn->c_peer_name.bv_len - STRLENOF( "IP=" );
1933
1934                 ptr = ber_bvchr( &ip, ':' );
1935                 if ( ptr ) {
1936                         ip.bv_len = ptr - ip.bv_val;
1937                 }
1938         }
1939
1940         if ( !BER_BVISNULL( &op->o_conn->c_peer_domain ) &&
1941                 !bvmatch( &op->o_conn->c_peer_domain, &bv_unknown ) )
1942         {
1943                 name = op->o_conn->c_peer_domain;
1944         }
1945
1946         if ( !BER_BVISNULL( &op->o_dn ) && !BER_BVISEMPTY( &op->o_dn ) ) {
1947                 id = op->o_dn;
1948         }
1949
1950         return slap_ctrl_session_tracking_add( op, rs, &ip, &name, &id, ctrl );
1951 }
1952 #endif
1953
1954 #ifdef SLAP_CONTROL_X_WHATFAILED
1955 static int parseWhatFailed(
1956         Operation *op,
1957         SlapReply *rs,
1958         LDAPControl *ctrl )
1959 {
1960         if ( op->o_whatFailed != SLAP_CONTROL_NONE ) {
1961                 rs->sr_text = "\"WHat Failed?\" control specified multiple times";
1962                 return LDAP_PROTOCOL_ERROR;
1963         }
1964
1965         if ( !BER_BVISNULL( &ctrl->ldctl_value )) {
1966                 rs->sr_text = "\"What Failed?\" control value not absent";
1967                 return LDAP_PROTOCOL_ERROR;
1968         }
1969
1970         op->o_whatFailed = ctrl->ldctl_iscritical
1971                 ? SLAP_CONTROL_CRITICAL
1972                 : SLAP_CONTROL_NONCRITICAL;
1973
1974         return LDAP_SUCCESS;
1975 }
1976
1977 int
1978 slap_ctrl_whatFailed_add(
1979         Operation *op,
1980         SlapReply *rs,
1981         char **oids )
1982 {
1983         BerElementBuffer berbuf;
1984         BerElement *ber = (BerElement *) &berbuf;
1985         LDAPControl **ctrls = NULL;
1986         struct berval ctrlval;
1987         int i, rc = LDAP_SUCCESS;
1988
1989         ber_init2( ber, NULL, LBER_USE_DER );
1990         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
1991         ber_printf( ber, "[" /*]*/ );
1992         for ( i = 0; oids[ i ] != NULL; i++ ) {
1993                 ber_printf( ber, "s", oids[ i ] );
1994         }
1995         ber_printf( ber, /*[*/ "]" );
1996
1997         if ( ber_flatten2( ber, &ctrlval, 0 ) == -1 ) {
1998                 rc = LDAP_OTHER;
1999                 goto done;
2000         }
2001
2002         i = 0;
2003         if ( rs->sr_ctrls != NULL ) {
2004                 for ( ; rs->sr_ctrls[ i ] != NULL; i++ ) {
2005                         if ( strcmp( rs->sr_ctrls[ i ]->ldctl_oid, LDAP_CONTROL_X_WHATFAILED ) != 0 ) {
2006                                 /* TODO: add */
2007                                 assert( 0 );
2008                         }
2009                 }
2010         }
2011
2012         ctrls = op->o_tmprealloc( rs->sr_ctrls,
2013                         sizeof(LDAPControl *)*( i + 2 )
2014                         + sizeof(LDAPControl)
2015                         + ctrlval.bv_len + 1,
2016                         op->o_tmpmemctx );
2017         if ( ctrls == NULL ) {
2018                 rc = LDAP_OTHER;
2019                 goto done;
2020         }
2021         ctrls[ i + 1 ] = NULL;
2022         ctrls[ i ] = (LDAPControl *)&ctrls[ i + 2 ];
2023         ctrls[ i ]->ldctl_oid = LDAP_CONTROL_X_WHATFAILED;
2024         ctrls[ i ]->ldctl_iscritical = 0;
2025         ctrls[ i ]->ldctl_value.bv_val = (char *)&ctrls[ i ][ 1 ];
2026         AC_MEMCPY( ctrls[ i ]->ldctl_value.bv_val, ctrlval.bv_val, ctrlval.bv_len + 1 );
2027         ctrls[ i ]->ldctl_value.bv_len = ctrlval.bv_len;
2028
2029         ber_free_buf( ber );
2030
2031         rs->sr_ctrls = ctrls;
2032
2033 done:;
2034         return rc;
2035 }
2036 #endif