]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/bind.c
should compile also when #undef HAVE_TLS
[openldap] / servers / slapd / back-ldap / bind.c
1 /* bind.c - ldap backend bind function */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1999-2005 The OpenLDAP Foundation.
6  * Portions Copyright 2000-2003 Pierangelo Masarati.
7  * Portions Copyright 1999-2003 Howard Chu.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted only as authorized by the OpenLDAP
12  * Public License.
13  *
14  * A copy of this license is available in the file LICENSE in the
15  * top-level directory of the distribution or, alternatively, at
16  * <http://www.OpenLDAP.org/license.html>.
17  */
18 /* ACKNOWLEDGEMENTS:
19  * This work was initially developed by Howard Chu for inclusion
20  * in OpenLDAP Software and subsequently enhanced by Pierangelo
21  * Masarati.
22  */
23
24 #include "portable.h"
25
26 #include <stdio.h>
27
28 #include <ac/errno.h>
29 #include <ac/socket.h>
30 #include <ac/string.h>
31
32 #define AVL_INTERNAL
33 #include "slap.h"
34 #include "back-ldap.h"
35
36 #include <lutil_ldap.h>
37
38 #define PRINT_CONNTREE 0
39
40 static LDAP_REBIND_PROC ldap_back_rebind;
41
42 static int
43 ldap_back_proxy_authz_bind( struct ldapconn *lc, Operation *op, SlapReply *rs );
44
45 static int
46 ldap_back_prepare_conn( struct ldapconn **lcp, Operation *op, SlapReply *rs, ldap_back_send_t sendok );
47
48 int
49 ldap_back_bind( Operation *op, SlapReply *rs )
50 {
51         struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
52         struct ldapconn *lc;
53
54         int rc = 0;
55         ber_int_t msgid;
56
57         lc = ldap_back_getconn( op, rs, LDAP_BACK_SENDERR );
58         if ( !lc ) {
59                 return rs->sr_err;
60         }
61
62         if ( !BER_BVISNULL( &lc->lc_bound_ndn ) ) {
63                 ch_free( lc->lc_bound_ndn.bv_val );
64                 BER_BVZERO( &lc->lc_bound_ndn );
65         }
66         lc->lc_bound = 0;
67
68         /* method is always LDAP_AUTH_SIMPLE if we got here */
69         rs->sr_err = ldap_sasl_bind( lc->lc_ld, op->o_req_dn.bv_val,
70                         LDAP_SASL_SIMPLE,
71                         &op->orb_cred, op->o_ctrls, NULL, &msgid );
72         rc = ldap_back_op_result( lc, op, rs, msgid, LDAP_BACK_SENDERR );
73
74         if ( rc == LDAP_SUCCESS ) {
75                 /* If defined, proxyAuthz will be used also when
76                  * back-ldap is the authorizing backend; for this
77                  * purpose, a successful bind is followed by a
78                  * bind with the configured identity assertion */
79                 /* NOTE: use with care */
80                 if ( li->idassert_flags & LDAP_BACK_AUTH_OVERRIDE ) {
81                         ldap_back_proxy_authz_bind( lc, op, rs );
82                         if ( lc->lc_bound == 0 ) {
83                                 rc = 1;
84                                 goto done;
85                         }
86                 }
87
88                 lc->lc_bound = 1;
89                 ber_dupbv( &lc->lc_bound_ndn, &op->o_req_ndn );
90
91                 if ( LDAP_BACK_SAVECRED( li ) ) {
92                         if ( !BER_BVISNULL( &lc->lc_cred ) ) {
93                                 memset( lc->lc_cred.bv_val, 0,
94                                                 lc->lc_cred.bv_len );
95                         }
96                         ber_bvreplace( &lc->lc_cred, &op->orb_cred );
97                         ldap_set_rebind_proc( lc->lc_ld, ldap_back_rebind, lc );
98                 }
99         }
100 done:;
101
102         /* must re-insert if local DN changed as result of bind */
103         if ( lc->lc_bound && !dn_match( &op->o_req_ndn, &lc->lc_local_ndn ) ) {
104                 int             lerr;
105
106                 /* wait for all other ops to release the connection */
107 retry_lock:;
108                 switch ( ldap_pvt_thread_mutex_trylock( &li->conn_mutex ) ) {
109                 case LDAP_PVT_THREAD_EBUSY:
110                 default:
111                         ldap_pvt_thread_yield();
112                         goto retry_lock;
113
114                 case 0:
115                         if ( lc->lc_refcnt > 1 ) {
116                                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
117                                 ldap_pvt_thread_yield();
118                                 goto retry_lock;
119                         }
120                         break;
121                 }
122
123                 assert( lc->lc_refcnt == 1 );
124                 lc = avl_delete( &li->conntree, (caddr_t)lc,
125                                 ldap_back_conn_cmp );
126                 assert( lc != NULL );
127
128                 ber_bvreplace( &lc->lc_local_ndn, &op->o_req_ndn );
129                 lerr = avl_insert( &li->conntree, (caddr_t)lc,
130                         ldap_back_conn_cmp, ldap_back_conn_dup );
131                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
132                 if ( lerr == -1 ) {
133                         /* we can do this because lc_refcnt == 1 */
134                         ldap_back_conn_free( lc );
135                         lc = NULL;
136                 }
137         }
138
139         if ( lc != NULL ) {
140                 ldap_back_release_conn( op, rs, lc );
141         }
142
143         return( rc );
144 }
145
146 /*
147  * ldap_back_conn_cmp
148  *
149  * compares two struct ldapconn based on the value of the conn pointer;
150  * used by avl stuff
151  */
152 int
153 ldap_back_conn_cmp( const void *c1, const void *c2 )
154 {
155         const struct ldapconn *lc1 = (const struct ldapconn *)c1;
156         const struct ldapconn *lc2 = (const struct ldapconn *)c2;
157         int rc;
158
159         /* If local DNs don't match, it is definitely not a match */
160         rc = ber_bvcmp( &lc1->lc_local_ndn, &lc2->lc_local_ndn );
161         if ( rc ) {
162                 return rc;
163         }
164
165         /* For shared sessions, conn is NULL. Only explicitly
166          * bound sessions will have non-NULL conn.
167          */
168         return SLAP_PTRCMP( lc1->lc_conn, lc2->lc_conn );
169 }
170
171 /*
172  * ldap_back_conn_dup
173  *
174  * returns -1 in case a duplicate struct ldapconn has been inserted;
175  * used by avl stuff
176  */
177 int
178 ldap_back_conn_dup( void *c1, void *c2 )
179 {
180         struct ldapconn *lc1 = (struct ldapconn *)c1;
181         struct ldapconn *lc2 = (struct ldapconn *)c2;
182
183         /* Cannot have more than one shared session with same DN */
184         if ( dn_match( &lc1->lc_local_ndn, &lc2->lc_local_ndn ) &&
185                         lc1->lc_conn == lc2->lc_conn )
186         {
187                 return -1;
188         }
189                 
190         return 0;
191 }
192
193 #if PRINT_CONNTREE > 0
194 static void
195 ravl_print( Avlnode *root, int depth )
196 {
197         int     i;
198         struct ldapconn *lc;
199         
200         if ( root == 0 ) {
201                 return;
202         }
203         
204         ravl_print( root->avl_right, depth+1 );
205         
206         for ( i = 0; i < depth; i++ ) {
207                 printf( "   " );
208         }
209
210         lc = root->avl_data;
211         printf( "lc(%lx) local(%s) conn(%lx) %d\n",
212                         lc, lc->lc_local_ndn.bv_val, lc->lc_conn, root->avl_bf );
213         
214         ravl_print( root->avl_left, depth+1 );
215 }
216
217 static void
218 myprint( Avlnode *root )
219 {
220         printf( "********\n" );
221         
222         if ( root == 0 ) {
223                 printf( "\tNULL\n" );
224
225         } else {
226                 ravl_print( root, 0 );
227         }
228         
229         printf( "********\n" );
230 }
231 #endif /* PRINT_CONNTREE */
232
233 int
234 ldap_back_freeconn( Operation *op, struct ldapconn *lc )
235 {
236         struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
237
238         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
239
240         assert( lc->lc_refcnt > 0 );
241         if ( --lc->lc_refcnt == 0 ) {
242                 lc = avl_delete( &li->conntree, (caddr_t)lc,
243                                 ldap_back_conn_cmp );
244                 assert( lc != NULL );
245
246                 ldap_back_conn_free( (void *)lc );
247         }
248
249         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
250
251         return 0;
252 }
253
254 #ifdef HAVE_TLS
255 static int
256 ldap_back_start_tls(
257         LDAP            *ld,
258         int             protocol,
259         int             *is_tls,
260         const char      *url,
261         unsigned        flags,
262         const char      **text )
263 {
264         int             rc = LDAP_SUCCESS;
265         struct ldapinfo li;
266
267         /* this is ridicolous... */
268         li.flags = flags;
269
270         /* start TLS ("tls-[try-]{start,propagate}" statements) */
271         if ( ( LDAP_BACK_USE_TLS( &li ) || ( *is_tls && LDAP_BACK_PROPAGATE_TLS( &li ) ) )
272                                 && !ldap_is_ldaps_url( url ) )
273         {
274 #ifdef SLAP_STARTTLS_ASYNCHRONOUS
275                 /*
276                  * use asynchronous StartTLS
277                  * in case, chase referral (not implemented yet)
278                  */
279                 int             msgid;
280
281                 if ( protocol == 0 ) {
282                         ldap_get_option( ld, LDAP_OPT_PROTOCOL_VERSION,
283                                         (void *)&protocol );
284                 }
285
286                 if ( protocol < LDAP_VERSION3 ) {
287                         protocol = LDAP_VERSION3;
288                         /* Set LDAP version */
289                         ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION,
290                                         (const void *)&protocol );
291                 }
292
293                 rc = ldap_start_tls( ld, NULL, NULL, &msgid );
294                 if ( rc == LDAP_SUCCESS ) {
295                         LDAPMessage     *res = NULL;
296                         int             retries = 1;
297                         struct timeval  tv = { 0, 0 };
298
299 retry:;
300                         rc = ldap_result( ld, msgid, LDAP_MSG_ALL, &tv, &res );
301                         if ( rc < 0 ) {
302                                 rc = LDAP_OTHER;
303
304                         } else if ( rc == 0 ) {
305                                 if ( retries ) {
306                                         retries--;
307                                         tv.tv_sec = 0;
308                                         tv.tv_usec = 100000;
309                                         goto retry;
310                                 }
311                                 rc = LDAP_OTHER;
312
313                         } else if ( rc == LDAP_RES_EXTENDED ) {
314                                 struct berval   *data = NULL;
315
316                                 rc = ldap_parse_extended_result( ld, res,
317                                                 NULL, &data, 0 );
318                                 if ( rc == LDAP_SUCCESS ) {
319                                         rc = ldap_result2error( ld, res, 1 );
320                                         res = NULL;
321                                         
322                                         /* FIXME: in case a referral 
323                                          * is returned, should we try
324                                          * using it instead of the 
325                                          * configured URI? */
326                                         if ( rc == LDAP_SUCCESS ) {
327                                                 rc = ldap_install_tls( ld );
328
329                                         } else if ( rc == LDAP_REFERRAL ) {
330                                                 rc = LDAP_OTHER;
331                                                 *text = "unwilling to chase referral returned by Start TLS exop";
332                                         }
333
334                                         if ( data ) {
335                                                 if ( data->bv_val ) {
336                                                         ber_memfree( data->bv_val );
337                                                 }
338                                                 ber_memfree( data );
339                                         }
340                                 }
341
342                         } else {
343                                 rc = LDAP_OTHER;
344                         }
345
346                         if ( res != NULL ) {
347                                 ldap_msgfree( res );
348                         }
349                 }
350 #else /* ! SLAP_STARTTLS_ASYNCHRONOUS */
351                 /*
352                  * use synchronous StartTLS
353                  */
354                 rc = ldap_start_tls_s( ld, NULL, NULL );
355 #endif /* ! SLAP_STARTTLS_ASYNCHRONOUS */
356
357                 /* if StartTLS is requested, only attempt it if the URL
358                  * is not "ldaps://"; this may occur not only in case
359                  * of misconfiguration, but also when used in the chain 
360                  * overlay, where the "uri" can be parsed out of a referral */
361                 switch ( rc ) {
362                 case LDAP_SUCCESS:
363                         *is_tls = 1;
364                         break;
365
366                 case LDAP_SERVER_DOWN:
367                         break;
368
369                 default:
370                         if ( LDAP_BACK_TLS_CRITICAL( &li ) ) {
371                                 *text = "could not start TLS";
372                                 break;
373                         }
374
375                         /* in case Start TLS is not critical */
376                         *is_tls = 0;
377                         rc = LDAP_SUCCESS;
378                         break;
379                 }
380
381         } else {
382                 *is_tls = 0;
383         }
384
385 error_return:;
386         return rc;
387 }
388 #endif /* HAVE_TLS */
389
390 static int
391 ldap_back_prepare_conn( struct ldapconn **lcp, Operation *op, SlapReply *rs, ldap_back_send_t sendok )
392 {
393         struct ldapinfo *li = (struct ldapinfo *)op->o_bd->be_private;
394         int             vers = op->o_protocol;
395         LDAP            *ld = NULL;
396 #ifdef HAVE_TLS
397         int             is_tls = op->o_conn->c_is_tls;
398 #endif /* HAVE_TLS */
399
400         assert( lcp != NULL );
401
402         rs->sr_err = ldap_initialize( &ld, li->url );
403         if ( rs->sr_err != LDAP_SUCCESS ) {
404                 goto error_return;
405         }
406
407         /* Set LDAP version. This will always succeed: If the client
408          * bound with a particular version, then so can we.
409          */
410         ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, (const void *)&vers );
411
412         /* automatically chase referrals ("[dont-]chase-referrals" statement) */
413         if ( LDAP_BACK_CHASE_REFERRALS( li ) ) {
414                 ldap_set_option( ld, LDAP_OPT_REFERRALS, LDAP_OPT_ON );
415         }
416
417 #ifdef HAVE_TLS
418         rs->sr_err = ldap_back_start_tls( ld,
419                         op->o_protocol, &is_tls,
420                         li->url, li->flags, &rs->sr_text );
421         if ( rs->sr_err != LDAP_SUCCESS ) {
422                 ldap_unbind_ext( ld, NULL, NULL );
423                 goto error_return;
424         }
425 #endif /* HAVE_TLS */
426
427         if ( *lcp == NULL ) {
428                 *lcp = (struct ldapconn *)ch_calloc( 1, sizeof( struct ldapconn ) );
429                 (*lcp)->lc_flags= li->flags;
430         }
431         (*lcp)->lc_ld = ld;
432         (*lcp)->lc_refcnt = 1;
433 #ifdef HAVE_TLS
434         (*lcp)->lc_is_tls = is_tls;
435 #endif /* HAVE_TLS */
436
437 error_return:;
438         if ( rs->sr_err != LDAP_SUCCESS ) {
439                 rs->sr_err = slap_map_api2result( rs );
440                 if ( sendok & LDAP_BACK_SENDERR ) {
441                         if ( rs->sr_text == NULL ) {
442                                 rs->sr_text = "ldap_initialize() failed";
443                         }
444                         send_ldap_result( op, rs );
445                         rs->sr_text = NULL;
446                 }
447         }
448
449         return rs->sr_err;
450 }
451
452 struct ldapconn *
453 ldap_back_getconn( Operation *op, SlapReply *rs, ldap_back_send_t sendok )
454 {
455         struct ldapinfo *li = (struct ldapinfo *)op->o_bd->be_private;
456         struct ldapconn *lc,
457                         lc_curr = { 0 };
458         int             refcnt = 1;
459
460         /* Searches for a ldapconn in the avl tree */
461
462         /* Explicit binds must not be shared */
463         if ( op->o_tag == LDAP_REQ_BIND
464                 || ( op->o_conn
465                         && op->o_conn->c_authz_backend
466                         && op->o_bd->be_private == op->o_conn->c_authz_backend->be_private ) )
467         {
468                 lc_curr.lc_conn = op->o_conn;
469
470         } else {
471 #ifdef HAVE_TLS
472                 if ( op->o_conn->c_is_tls ) {
473                         lc_curr.lc_conn = LDAP_BACK_PRIV_CONN_TLS;
474                 } else
475 #endif /* HAVE_TLS */
476                 {
477                         lc_curr.lc_conn = LDAP_BACK_PRIV_CONN;
478                 }
479         }
480         
481         /* Internal searches are privileged and shared. So is root. */
482         /* FIXME: there seem to be concurrency issues */
483         if ( op->o_do_not_cache || be_isroot( op ) ) {
484                 lc_curr.lc_local_ndn = op->o_bd->be_rootndn;
485 #ifdef HAVE_TLS
486                 if ( op->o_conn->c_is_tls ) {
487                         lc_curr.lc_conn = LDAP_BACK_PRIV_CONN_TLS;
488                 } else
489 #endif /* HAVE_TLS */
490                 {
491                         lc_curr.lc_conn = LDAP_BACK_PRIV_CONN;
492                 }
493                 lc_curr.lc_ispriv = 1;
494
495         } else {
496                 lc_curr.lc_local_ndn = op->o_ndn;
497         }
498
499         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
500
501         lc = (struct ldapconn *)avl_find( li->conntree, 
502                         (caddr_t)&lc_curr, ldap_back_conn_cmp );
503         if ( lc != NULL ) {
504                 refcnt = ++lc->lc_refcnt;
505         }
506         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
507
508         /* Looks like we didn't get a bind. Open a new session... */
509         if ( lc == NULL ) {
510                 if ( ldap_back_prepare_conn( &lc, op, rs, sendok ) != LDAP_SUCCESS ) {
511                         return NULL;
512                 }
513
514                 lc->lc_conn = lc_curr.lc_conn;
515                 ber_dupbv( &lc->lc_local_ndn, &lc_curr.lc_local_ndn );
516
517                 if ( lc_curr.lc_ispriv ) {
518                         ber_dupbv( &lc->lc_cred, &li->acl_passwd );
519                         ber_dupbv( &lc->lc_bound_ndn, &li->acl_authcDN );
520                         lc->lc_ispriv = lc_curr.lc_ispriv;
521
522                 } else {
523                         BER_BVZERO( &lc->lc_cred );
524                         BER_BVZERO( &lc->lc_bound_ndn );
525                         if ( op->o_conn && !BER_BVISEMPTY( &op->o_ndn )
526                                 && op->o_bd->be_private == op->o_conn->c_authz_backend->be_private )
527                         {
528                                 ber_dupbv( &lc->lc_bound_ndn, &op->o_ndn );
529                         }
530                 }
531
532                 /* if start TLS failed but it was not mandatory,
533                  * check if the non-TLS connection was already
534                  * in cache; in case, destroy the newly created
535                  * connection and use the existing one */
536                 if ( lc->lc_conn == LDAP_BACK_PRIV_CONN_TLS
537                                 && !ldap_tls_inplace( lc->lc_ld ) )
538                 {
539                         struct ldapconn *tmplc;
540                         
541                         lc_curr.lc_conn = LDAP_BACK_PRIV_CONN;
542                         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
543                         tmplc = (struct ldapconn *)avl_find( li->conntree, 
544                                         (caddr_t)&lc_curr, ldap_back_conn_cmp );
545                         if ( tmplc != NULL ) {
546                                 refcnt = ++tmplc->lc_refcnt;
547                                 ldap_back_conn_free( lc );
548                                 lc = tmplc;
549                         }
550                         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
551
552                         if ( tmplc != NULL ) {
553                                 goto done;
554                         }
555                 }
556
557                 lc->lc_bound = 0;
558
559                 /* Inserts the newly created ldapconn in the avl tree */
560                 ldap_pvt_thread_mutex_lock( &li->conn_mutex );
561
562                 assert( lc->lc_refcnt == 1 );
563                 rs->sr_err = avl_insert( &li->conntree, (caddr_t)lc,
564                         ldap_back_conn_cmp, ldap_back_conn_dup );
565
566 #if PRINT_CONNTREE > 0
567                 myprint( li->conntree );
568 #endif /* PRINT_CONNTREE */
569         
570                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
571
572                 Debug( LDAP_DEBUG_TRACE,
573                         "=>ldap_back_getconn: conn %p inserted (refcnt=%u)\n",
574                         (void *)lc, refcnt, 0 );
575         
576                 /* Err could be -1 in case a duplicate ldapconn is inserted */
577                 if ( rs->sr_err != 0 ) {
578                         ldap_back_conn_free( lc );
579                         rs->sr_err = LDAP_OTHER;
580                         if ( op->o_conn && ( sendok & LDAP_BACK_SENDERR ) ) {
581                                 send_ldap_error( op, rs, LDAP_OTHER,
582                                         "internal server error" );
583                         }
584                         return NULL;
585                 }
586
587         } else {
588                 Debug( LDAP_DEBUG_TRACE,
589                         "=>ldap_back_getconn: conn %p fetched (refcnt=%u)\n",
590                         (void *)lc, refcnt, 0 );
591         }
592
593 done:;
594         return lc;
595 }
596
597 void
598 ldap_back_release_conn(
599         Operation               *op,
600         SlapReply               *rs,
601         struct ldapconn         *lc )
602 {
603         struct ldapinfo *li = (struct ldapinfo *)op->o_bd->be_private;
604
605         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
606         assert( lc->lc_refcnt > 0 );
607         lc->lc_refcnt--;
608         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
609 }
610
611 /*
612  * ldap_back_dobind
613  *
614  * Note: as the check for the value of lc->lc_bound was already here, I removed
615  * it from all the callers, and I made the function return the flag, so
616  * it can be used to simplify the check.
617  *
618  * Note: dolock indicates whether li->conn_mutex must be locked or not
619  */
620 static int
621 ldap_back_dobind_int(
622         struct ldapconn         *lc,
623         Operation               *op,
624         SlapReply               *rs,
625         ldap_back_send_t        sendok,
626         int                     retries,
627         int                     dolock )
628 {       
629         int             rc;
630         ber_int_t       msgid;
631
632         assert( retries >= 0 );
633
634         if ( !lc->lc_bound ) {
635                 struct ldapinfo *li = (struct ldapinfo *)op->o_bd->be_private;
636
637                 /*
638                  * FIXME: we need to let clients use proxyAuthz
639                  * otherwise we cannot do symmetric pools of servers;
640                  * we have to live with the fact that a user can
641                  * authorize itself as any ID that is allowed
642                  * by the authzTo directive of the "proxyauthzdn".
643                  */
644                 /*
645                  * NOTE: current Proxy Authorization specification
646                  * and implementation do not allow proxy authorization
647                  * control to be provided with Bind requests
648                  */
649                 /*
650                  * if no bind took place yet, but the connection is bound
651                  * and the "idassert-authcDN" (or other ID) is set, 
652                  * then bind as the asserting identity and explicitly 
653                  * add the proxyAuthz control to every operation with the
654                  * dn bound to the connection as control value.
655                  * This is done also if this is the authrizing backend,
656                  * but the "override" flag is given to idassert.
657                  * It allows to use SASL bind and yet proxyAuthz users
658                  */
659                 if ( op->o_conn != NULL &&
660                                 !op->o_do_not_cache &&
661                                 ( BER_BVISNULL( &lc->lc_bound_ndn ) ||
662                                   ( li->idassert_flags & LDAP_BACK_AUTH_OVERRIDE ) ) )
663                 {
664                         (void)ldap_back_proxy_authz_bind( lc, op, rs );
665                         goto done;
666                 }
667
668 #ifdef HAVE_CYRUS_SASL
669                 if ( lc->lc_ispriv && li->acl_authmethod == LDAP_AUTH_SASL ) {
670                         void            *defaults = NULL;
671
672 #if 1   /* will deal with this later... */
673                         if ( li->acl_secprops != NULL ) {
674                                 rc = ldap_set_option( lc->lc_ld,
675                                         LDAP_OPT_X_SASL_SECPROPS, li->acl_secprops);
676
677                                 if( rc != LDAP_OPT_SUCCESS ) {
678                                         Debug( LDAP_DEBUG_ANY, "Error: ldap_set_option "
679                                                 "(%s,SECPROPS,\"%s\") failed!\n",
680                                                 li->url, li->acl_secprops, 0 );
681                                         goto done;
682                                 }
683                         }
684 #endif
685
686                         defaults = lutil_sasl_defaults( lc->lc_ld,
687                                         li->acl_sasl_mech.bv_val,
688                                         li->acl_sasl_realm.bv_val,
689                                         li->acl_authcID.bv_val,
690                                         li->acl_passwd.bv_val,
691                                         NULL );
692
693                         rs->sr_err = ldap_sasl_interactive_bind_s( lc->lc_ld,
694                                         li->acl_authcDN.bv_val,
695                                         li->acl_sasl_mech.bv_val, NULL, NULL,
696                                         LDAP_SASL_QUIET, lutil_sasl_interact,
697                                         defaults );
698
699                         lutil_sasl_freedefs( defaults );
700
701                         rs->sr_err = slap_map_api2result( rs );
702                         if ( rs->sr_err != LDAP_SUCCESS ) {
703                                 lc->lc_bound = 0;
704                                 send_ldap_result( op, rs );
705
706                         } else {
707                                 lc->lc_bound = 1;
708                         }
709                         goto done;
710                 }
711 #endif /* HAVE_CYRUS_SASL */
712
713 retry:;
714                 rs->sr_err = ldap_sasl_bind( lc->lc_ld,
715                                 lc->lc_bound_ndn.bv_val,
716                                 LDAP_SASL_SIMPLE, &lc->lc_cred,
717                                 NULL, NULL, &msgid );
718
719                 if ( rs->sr_err == LDAP_SERVER_DOWN ) {
720                         if ( retries > 0 ) {
721                                 if ( dolock ) {
722                                         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
723                                 }
724
725                                 assert( lc->lc_refcnt > 0 );
726                                 if ( lc->lc_refcnt == 1 ) {
727                                         ldap_unbind_ext( lc->lc_ld, NULL, NULL );
728                                         lc->lc_ld = NULL;
729
730                                         /* lc here must be the regular lc, reset and ready for init */
731                                         rs->sr_err = ldap_back_prepare_conn( &lc, op, rs, sendok );
732                                 }
733                                 if ( dolock ) {
734                                         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
735                                 }
736                                 if ( rs->sr_err == LDAP_SUCCESS ) {
737                                         retries--;
738                                         goto retry;
739                                 }
740                         }
741
742                         ldap_back_freeconn( op, lc );
743                         rs->sr_err = slap_map_api2result( rs );
744
745                         return 0;
746                 }
747
748                 rc = ldap_back_op_result( lc, op, rs, msgid, sendok );
749                 if ( rc == LDAP_SUCCESS ) {
750                         lc->lc_bound = 1;
751                 }
752         }
753
754 done:;
755         rc = lc->lc_bound;
756         return rc;
757 }
758
759 int
760 ldap_back_dobind( struct ldapconn *lc, Operation *op, SlapReply *rs, ldap_back_send_t sendok )
761 {
762         return ldap_back_dobind_int( lc, op, rs, sendok, 1, 1 );
763 }
764
765 /*
766  * ldap_back_rebind
767  *
768  * This is a callback used for chasing referrals using the same
769  * credentials as the original user on this session.
770  */
771 static int 
772 ldap_back_rebind( LDAP *ld, LDAP_CONST char *url, ber_tag_t request,
773         ber_int_t msgid, void *params )
774 {
775         struct ldapconn *lc = (struct ldapconn *)params;
776
777 #ifdef HAVE_TLS
778         /* ... otherwise we couldn't get here */
779         assert( lc != NULL );
780
781         if ( !ldap_tls_inplace( ld ) ) {
782                 int             is_tls = lc->lc_is_tls,
783                                 rc;
784                 const char      *text = NULL;
785
786                 rc = ldap_back_start_tls( ld, 0, &is_tls, url, lc->lc_flags, &text );
787                 if ( rc != LDAP_SUCCESS ) {
788                         return rc;
789                 }
790         }
791 #endif /* HAVE_TLS */
792
793         /* FIXME: add checks on the URL/identity? */
794
795         return ldap_sasl_bind_s( ld, lc->lc_bound_ndn.bv_val,
796                         LDAP_SASL_SIMPLE, &lc->lc_cred, NULL, NULL, NULL );
797 }
798
799 int
800 ldap_back_op_result(
801                 struct ldapconn         *lc,
802                 Operation               *op,
803                 SlapReply               *rs,
804                 ber_int_t               msgid,
805                 ldap_back_send_t        sendok )
806 {
807         char            *match = NULL;
808         LDAPMessage     *res = NULL;
809         char            *text = NULL;
810
811 #define ERR_OK(err) ((err) == LDAP_SUCCESS || (err) == LDAP_COMPARE_FALSE || (err) == LDAP_COMPARE_TRUE)
812
813         rs->sr_text = NULL;
814         rs->sr_matched = NULL;
815
816         /* if the error recorded in the reply corresponds
817          * to a successful state, get the error from the
818          * remote server response */
819         if ( ERR_OK( rs->sr_err ) ) {
820                 int             rc;
821                 struct timeval  tv = { 0, 0 };
822
823 retry:;
824                 /* if result parsing fails, note the failure reason */
825                 switch ( ldap_result( lc->lc_ld, msgid, 1, &tv, &res ) ) {
826                 case 0:
827                         tv.tv_sec = 0;
828                         tv.tv_usec = 100000;    /* 0.1 s */
829                         ldap_pvt_thread_yield();
830                         goto retry;
831
832                 case -1:
833                         ldap_get_option( lc->lc_ld, LDAP_OPT_ERROR_NUMBER,
834                                         &rs->sr_err );
835                         break;
836
837
838                 /* otherwise get the result; if it is not
839                  * LDAP_SUCCESS, record it in the reply
840                  * structure (this includes 
841                  * LDAP_COMPARE_{TRUE|FALSE}) */
842                 default:
843                         rc = ldap_parse_result( lc->lc_ld, res, &rs->sr_err,
844                                         &match, &text, NULL, NULL, 1 );
845                         rs->sr_text = text;
846                         if ( rc != LDAP_SUCCESS ) {
847                                 rs->sr_err = rc;
848                         }
849                 }
850         }
851
852         /* if the error in the reply structure is not
853          * LDAP_SUCCESS, try to map it from client 
854          * to server error */
855         if ( !ERR_OK( rs->sr_err ) ) {
856                 rs->sr_err = slap_map_api2result( rs );
857
858                 /* internal ops ( op->o_conn == NULL ) 
859                  * must not reply to client */
860                 if ( op->o_conn && !op->o_do_not_cache && match ) {
861
862                         /* record the (massaged) matched
863                          * DN into the reply structure */
864                         rs->sr_matched = match;
865                 }
866         }
867         if ( op->o_conn &&
868                         ( ( sendok & LDAP_BACK_SENDOK ) 
869                           || ( ( sendok & LDAP_BACK_SENDERR ) && rs->sr_err != LDAP_SUCCESS ) ) )
870         {
871                 send_ldap_result( op, rs );
872         }
873         if ( match ) {
874                 if ( rs->sr_matched != match ) {
875                         free( (char *)rs->sr_matched );
876                 }
877                 rs->sr_matched = NULL;
878                 ldap_memfree( match );
879         }
880         if ( text ) {
881                 ldap_memfree( text );
882         }
883         rs->sr_text = NULL;
884         return( ERR_OK( rs->sr_err ) ? 0 : -1 );
885 }
886
887 /* return true if bound, false if failed */
888 int
889 ldap_back_retry( struct ldapconn *lc, Operation *op, SlapReply *rs, ldap_back_send_t sendok )
890 {
891         int             rc = 0;
892         struct ldapinfo *li = (struct ldapinfo *)op->o_bd->be_private;
893         
894         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
895
896         if ( lc->lc_refcnt == 1 ) {
897                 ldap_unbind_ext( lc->lc_ld, NULL, NULL );
898                 lc->lc_ld = NULL;
899                 lc->lc_bound = 0;
900
901                 /* lc here must be the regular lc, reset and ready for init */
902                 rc = ldap_back_prepare_conn( &lc, op, rs, sendok );
903                 if ( rc == LDAP_SUCCESS ) {
904                         rc = ldap_back_dobind_int( lc, op, rs, sendok, 0, 0 );
905                 }
906         }
907
908         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
909
910         return rc;
911 }
912
913 static int
914 ldap_back_proxy_authz_bind( struct ldapconn *lc, Operation *op, SlapReply *rs )
915 {
916         struct ldapinfo *li = (struct ldapinfo *)op->o_bd->be_private;
917         struct berval   binddn = slap_empty_bv;
918         struct berval   bindcred = slap_empty_bv;
919         int             dobind = 0;
920         int             msgid;
921         int             rc;
922
923         /*
924          * FIXME: we need to let clients use proxyAuthz
925          * otherwise we cannot do symmetric pools of servers;
926          * we have to live with the fact that a user can
927          * authorize itself as any ID that is allowed
928          * by the authzTo directive of the "proxyauthzdn".
929          */
930         /*
931          * NOTE: current Proxy Authorization specification
932          * and implementation do not allow proxy authorization
933          * control to be provided with Bind requests
934          */
935         /*
936          * if no bind took place yet, but the connection is bound
937          * and the "proxyauthzdn" is set, then bind as 
938          * "proxyauthzdn" and explicitly add the proxyAuthz 
939          * control to every operation with the dn bound 
940          * to the connection as control value.
941          */
942
943         /* bind as proxyauthzdn only if no idassert mode
944          * is requested, or if the client's identity
945          * is authorized */
946         switch ( li->idassert_mode ) {
947         case LDAP_BACK_IDASSERT_LEGACY:
948                 if ( !BER_BVISNULL( &op->o_conn->c_ndn ) && !BER_BVISEMPTY( &op->o_conn->c_ndn ) ) {
949                         if ( !BER_BVISNULL( &li->idassert_authcDN ) && !BER_BVISEMPTY( &li->idassert_authcDN ) )
950                         {
951                                 binddn = li->idassert_authcDN;
952                                 bindcred = li->idassert_passwd;
953                                 dobind = 1;
954                         }
955                 }
956                 break;
957
958         default:
959                 /* NOTE: rootdn can always idassert */
960                 if ( li->idassert_authz && !be_isroot( op ) ) {
961                         struct berval authcDN;
962
963                         if ( BER_BVISNULL( &op->o_conn->c_ndn ) ) {
964                                 authcDN = slap_empty_bv;
965
966                         } else {
967                                 authcDN = op->o_conn->c_ndn;
968                         }       
969                         rs->sr_err = slap_sasl_matches( op, li->idassert_authz,
970                                         &authcDN, &authcDN );
971                         if ( rs->sr_err != LDAP_SUCCESS ) {
972                                 if ( li->idassert_flags & LDAP_BACK_AUTH_PRESCRIPTIVE ) {
973                                         send_ldap_result( op, rs );
974                                         lc->lc_bound = 0;
975
976                                 } else {
977                                         rs->sr_err = LDAP_SUCCESS;
978                                         binddn = slap_empty_bv;
979                                         bindcred = slap_empty_bv;
980                                         break;
981                                 }
982
983                                 goto done;
984                         }
985                 }
986
987                 binddn = li->idassert_authcDN;
988                 bindcred = li->idassert_passwd;
989                 dobind = 1;
990                 break;
991         }
992
993         if ( dobind && li->idassert_authmethod == LDAP_AUTH_SASL ) {
994 #ifdef HAVE_CYRUS_SASL
995                 void            *defaults = NULL;
996                 struct berval   authzID = BER_BVNULL;
997                 int             freeauthz = 0;
998
999                 /* if SASL supports native authz, prepare for it */
1000                 if ( ( !op->o_do_not_cache || !op->o_is_auth_check ) &&
1001                                 ( li->idassert_flags & LDAP_BACK_AUTH_NATIVE_AUTHZ ) )
1002                 {
1003                         switch ( li->idassert_mode ) {
1004                         case LDAP_BACK_IDASSERT_OTHERID:
1005                         case LDAP_BACK_IDASSERT_OTHERDN:
1006                                 authzID = li->idassert_authzID;
1007                                 break;
1008
1009                         case LDAP_BACK_IDASSERT_ANONYMOUS:
1010                                 BER_BVSTR( &authzID, "dn:" );
1011                                 break;
1012
1013                         case LDAP_BACK_IDASSERT_SELF:
1014                                 if ( BER_BVISNULL( &op->o_conn->c_ndn ) ) {
1015                                         /* connection is not authc'd, so don't idassert */
1016                                         BER_BVSTR( &authzID, "dn:" );
1017                                         break;
1018                                 }
1019                                 authzID.bv_len = STRLENOF( "dn:" ) + op->o_conn->c_ndn.bv_len;
1020                                 authzID.bv_val = slap_sl_malloc( authzID.bv_len + 1, op->o_tmpmemctx );
1021                                 AC_MEMCPY( authzID.bv_val, "dn:", STRLENOF( "dn:" ) );
1022                                 AC_MEMCPY( authzID.bv_val + STRLENOF( "dn:" ),
1023                                                 op->o_conn->c_ndn.bv_val, op->o_conn->c_ndn.bv_len + 1 );
1024                                 freeauthz = 1;
1025                                 break;
1026
1027                         default:
1028                                 break;
1029                         }
1030                 }
1031
1032 #if 0   /* will deal with this later... */
1033                 if ( sasl_secprops != NULL ) {
1034                         rs->sr_err = ldap_set_option( lc->lc_ld, LDAP_OPT_X_SASL_SECPROPS,
1035                                 (void *) sasl_secprops );
1036
1037                         if ( rs->sr_err != LDAP_OPT_SUCCESS ) {
1038                                 send_ldap_result( op, rs );
1039                                 lc->lc_bound = 0;
1040                                 goto done;
1041                         }
1042                 }
1043 #endif
1044
1045                 defaults = lutil_sasl_defaults( lc->lc_ld,
1046                                 li->idassert_sasl_mech.bv_val,
1047                                 li->idassert_sasl_realm.bv_val,
1048                                 li->idassert_authcID.bv_val,
1049                                 li->idassert_passwd.bv_val,
1050                                 authzID.bv_val );
1051
1052                 rs->sr_err = ldap_sasl_interactive_bind_s( lc->lc_ld, binddn.bv_val,
1053                                 li->idassert_sasl_mech.bv_val, NULL, NULL,
1054                                 LDAP_SASL_QUIET, lutil_sasl_interact,
1055                                 defaults );
1056
1057                 lutil_sasl_freedefs( defaults );
1058                 if ( freeauthz ) {
1059                         slap_sl_free( authzID.bv_val, op->o_tmpmemctx );
1060                 }
1061
1062                 rs->sr_err = slap_map_api2result( rs );
1063                 if ( rs->sr_err != LDAP_SUCCESS ) {
1064                         lc->lc_bound = 0;
1065                         send_ldap_result( op, rs );
1066
1067                 } else {
1068                         lc->lc_bound = 1;
1069                 }
1070                 goto done;
1071 #endif /* HAVE_CYRUS_SASL */
1072         }
1073
1074         switch ( li->idassert_authmethod ) {
1075         case LDAP_AUTH_SIMPLE:
1076                 rs->sr_err = ldap_sasl_bind( lc->lc_ld,
1077                                 binddn.bv_val, LDAP_SASL_SIMPLE,
1078                                 &bindcred, NULL, NULL, &msgid );
1079                 break;
1080
1081         case LDAP_AUTH_NONE:
1082                 lc->lc_bound = 1;
1083                 goto done;
1084
1085         default:
1086                 /* unsupported! */
1087                 lc->lc_bound = 0;
1088                 rs->sr_err = LDAP_AUTH_METHOD_NOT_SUPPORTED;
1089                 send_ldap_result( op, rs );
1090                 goto done;
1091         }
1092
1093         rc = ldap_back_op_result( lc, op, rs, msgid, LDAP_BACK_SENDERR );
1094         if ( rc == LDAP_SUCCESS ) {
1095                 lc->lc_bound = 1;
1096         }
1097 done:;
1098         return lc->lc_bound;
1099 }
1100
1101 /*
1102  * ldap_back_proxy_authz_ctrl() prepends a proxyAuthz control
1103  * to existing server-side controls if required; if not,
1104  * the existing server-side controls are placed in *pctrls.
1105  * The caller, after using the controls in client API 
1106  * operations, if ( *pctrls != op->o_ctrls ), should
1107  * free( (*pctrls)[ 0 ] ) and free( *pctrls ).
1108  * The function returns success if the control could
1109  * be added if required, or if it did nothing; in the future,
1110  * it might return some error if it failed.
1111  * 
1112  * if no bind took place yet, but the connection is bound
1113  * and the "proxyauthzdn" is set, then bind as "proxyauthzdn" 
1114  * and explicitly add proxyAuthz the control to every operation
1115  * with the dn bound to the connection as control value.
1116  *
1117  * If no server-side controls are defined for the operation,
1118  * simply add the proxyAuthz control; otherwise, if the
1119  * proxyAuthz control is not already set, add it as
1120  * the first one
1121  *
1122  * FIXME: is controls order significant for security?
1123  * ANSWER: controls ordering and interoperability
1124  * must be indicated by the specs of each control; if none
1125  * is specified, the order is irrelevant.
1126  */
1127 int
1128 ldap_back_proxy_authz_ctrl(
1129                 struct ldapconn *lc,
1130                 Operation       *op,
1131                 SlapReply       *rs,
1132                 LDAPControl     ***pctrls )
1133 {
1134         struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
1135         LDAPControl     **ctrls = NULL;
1136         int             i = 0,
1137                         mode;
1138         struct berval   assertedID;
1139
1140         *pctrls = NULL;
1141
1142         rs->sr_err = LDAP_SUCCESS;
1143
1144         /* FIXME: SASL/EXTERNAL over ldapi:// doesn't honor the authcID,
1145          * but if it is not set this test fails.  We need a different
1146          * means to detect if idassert is enabled */
1147         if ( ( BER_BVISNULL( &li->idassert_authcID ) || BER_BVISEMPTY( &li->idassert_authcID ) )
1148                         && ( BER_BVISNULL( &li->idassert_authcDN ) || BER_BVISEMPTY( &li->idassert_authcDN ) ) )
1149         {
1150                 goto done;
1151         }
1152
1153         if ( !op->o_conn || op->o_do_not_cache || be_isroot( op ) ) {
1154                 goto done;
1155         }
1156
1157         if ( li->idassert_mode == LDAP_BACK_IDASSERT_LEGACY ) {
1158                 if ( op->o_proxy_authz ) {
1159                         /*
1160                          * FIXME: we do not want to perform proxyAuthz
1161                          * on behalf of the client, because this would
1162                          * be performed with "proxyauthzdn" privileges.
1163                          *
1164                          * This might actually be too strict, since
1165                          * the "proxyauthzdn" authzTo, and each entry's
1166                          * authzFrom attributes may be crafted
1167                          * to avoid unwanted proxyAuthz to take place.
1168                          */
1169 #if 0
1170                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1171                         rs->sr_text = "proxyAuthz not allowed within namingContext";
1172 #endif
1173                         goto done;
1174                 }
1175
1176                 if ( !BER_BVISNULL( &lc->lc_bound_ndn ) ) {
1177                         goto done;
1178                 }
1179
1180                 if ( BER_BVISNULL( &op->o_conn->c_ndn ) ) {
1181                         goto done;
1182                 }
1183
1184                 if ( BER_BVISNULL( &li->idassert_authcDN ) ) {
1185                         goto done;
1186                 }
1187
1188         } else if ( li->idassert_authmethod == LDAP_AUTH_SASL ) {
1189                 if ( ( li->idassert_flags & LDAP_BACK_AUTH_NATIVE_AUTHZ )
1190                                 /* && ( !BER_BVISNULL( &op->o_conn->c_ndn ) || lc->lc_bound ) */ )
1191                 {
1192                         /* already asserted in SASL via native authz */
1193                         /* NOTE: the test on lc->lc_bound is used to trap
1194                          * native authorization of anonymous users,
1195                          * since in that case op->o_conn->c_ndn is NULL */
1196                         goto done;
1197                 }
1198
1199         } else if ( li->idassert_authz && !be_isroot( op ) ) {
1200                 int             rc;
1201                 struct berval authcDN;
1202
1203                 if ( BER_BVISNULL( &op->o_conn->c_ndn ) ) {
1204                         authcDN = slap_empty_bv;
1205                 } else {
1206                         authcDN = op->o_conn->c_ndn;
1207                 }
1208                 rc = slap_sasl_matches( op, li->idassert_authz,
1209                                 &authcDN, & authcDN );
1210                 if ( rc != LDAP_SUCCESS ) {
1211                         if ( li->idassert_flags & LDAP_BACK_AUTH_PRESCRIPTIVE )
1212                         {
1213                                 /* op->o_conn->c_ndn is not authorized
1214                                  * to use idassert */
1215                                 return rc;
1216                         }
1217                         return rs->sr_err;
1218                 }
1219         }
1220
1221         if ( op->o_proxy_authz ) {
1222                 /*
1223                  * FIXME: we can:
1224                  * 1) ignore the already set proxyAuthz control
1225                  * 2) leave it in place, and don't set ours
1226                  * 3) add both
1227                  * 4) reject the operation
1228                  *
1229                  * option (4) is very drastic
1230                  * option (3) will make the remote server reject
1231                  * the operation, thus being equivalent to (4)
1232                  * option (2) will likely break the idassert
1233                  * assumptions, so we cannot accept it;
1234                  * option (1) means that we are contradicting
1235                  * the client's reques.
1236                  *
1237                  * I think (4) is the only correct choice.
1238                  */
1239                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1240                 rs->sr_text = "proxyAuthz not allowed within namingContext";
1241         }
1242
1243         if ( op->o_do_not_cache && op->o_is_auth_check ) {
1244                 mode = LDAP_BACK_IDASSERT_NOASSERT;
1245
1246         } else {
1247                 mode = li->idassert_mode;
1248         }
1249
1250         switch ( mode ) {
1251         case LDAP_BACK_IDASSERT_LEGACY:
1252         case LDAP_BACK_IDASSERT_SELF:
1253                 /* original behavior:
1254                  * assert the client's identity */
1255                 if ( BER_BVISNULL( &op->o_conn->c_ndn ) ) {
1256                         assertedID = slap_empty_bv;
1257                 } else {
1258                         assertedID = op->o_conn->c_ndn;
1259                 }
1260                 break;
1261
1262         case LDAP_BACK_IDASSERT_ANONYMOUS:
1263                 /* assert "anonymous" */
1264                 assertedID = slap_empty_bv;
1265                 break;
1266
1267         case LDAP_BACK_IDASSERT_NOASSERT:
1268                 /* don't assert; bind as proxyauthzdn */
1269                 goto done;
1270
1271         case LDAP_BACK_IDASSERT_OTHERID:
1272         case LDAP_BACK_IDASSERT_OTHERDN:
1273                 /* assert idassert DN */
1274                 assertedID = li->idassert_authzID;
1275                 break;
1276
1277         default:
1278                 assert( 0 );
1279         }
1280
1281         if ( BER_BVISNULL( &assertedID ) ) {
1282                 assertedID = slap_empty_bv;
1283         }
1284
1285         if ( op->o_ctrls ) {
1286                 for ( i = 0; op->o_ctrls[ i ]; i++ )
1287                         /* just count ctrls */ ;
1288         }
1289
1290         ctrls = ch_malloc( sizeof( LDAPControl * ) * (i + 2) );
1291         ctrls[ 0 ] = ch_malloc( sizeof( LDAPControl ) );
1292         
1293         ctrls[ 0 ]->ldctl_oid = LDAP_CONTROL_PROXY_AUTHZ;
1294         ctrls[ 0 ]->ldctl_iscritical = 1;
1295
1296         switch ( li->idassert_mode ) {
1297         /* already in u:ID or dn:DN form */
1298         case LDAP_BACK_IDASSERT_OTHERID:
1299         case LDAP_BACK_IDASSERT_OTHERDN:
1300                 ber_dupbv( &ctrls[ 0 ]->ldctl_value, &assertedID );
1301                 break;
1302
1303         /* needs the dn: prefix */
1304         default:
1305                 ctrls[ 0 ]->ldctl_value.bv_len = assertedID.bv_len + STRLENOF( "dn:" );
1306                 ctrls[ 0 ]->ldctl_value.bv_val = ch_malloc( ctrls[ 0 ]->ldctl_value.bv_len + 1 );
1307                 AC_MEMCPY( ctrls[ 0 ]->ldctl_value.bv_val, "dn:", STRLENOF( "dn:" ) );
1308                 AC_MEMCPY( &ctrls[ 0 ]->ldctl_value.bv_val[ STRLENOF( "dn:" ) ],
1309                                 assertedID.bv_val, assertedID.bv_len + 1 );
1310                 break;
1311         }
1312
1313         if ( op->o_ctrls ) {
1314                 for ( i = 0; op->o_ctrls[ i ]; i++ ) {
1315                         ctrls[ i + 1 ] = op->o_ctrls[ i ];
1316                 }
1317         }
1318         ctrls[ i + 1 ] = NULL;
1319
1320 done:;
1321         if ( ctrls == NULL ) {
1322                 ctrls = op->o_ctrls;
1323         }
1324
1325         *pctrls = ctrls;
1326         
1327         return rs->sr_err;
1328 }
1329
1330 int
1331 ldap_back_proxy_authz_ctrl_free( Operation *op, LDAPControl ***pctrls )
1332 {
1333         LDAPControl     **ctrls = *pctrls;
1334
1335         /* we assume that the first control is the proxyAuthz
1336          * added by back-ldap, so it's the only one we explicitly 
1337          * free */
1338         if ( ctrls && ctrls != op->o_ctrls ) {
1339                 assert( ctrls[ 0 ] != NULL );
1340
1341                 if ( !BER_BVISNULL( &ctrls[ 0 ]->ldctl_value ) ) {
1342                         free( ctrls[ 0 ]->ldctl_value.bv_val );
1343                 }
1344
1345                 free( ctrls[ 0 ] );
1346                 free( ctrls );
1347         } 
1348
1349         *pctrls = NULL;
1350
1351         return 0;
1352 }