]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/bind.c
2d1131f5aabb7e1f0b3442fa38843e9111932fae
[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         int             is_tls = op->o_conn->c_is_tls;
397
398         assert( lcp != NULL );
399
400         rs->sr_err = ldap_initialize( &ld, li->url );
401         if ( rs->sr_err != LDAP_SUCCESS ) {
402                 goto error_return;
403         }
404
405         /* Set LDAP version. This will always succeed: If the client
406          * bound with a particular version, then so can we.
407          */
408         ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, (const void *)&vers );
409
410         /* automatically chase referrals ("[dont-]chase-referrals" statement) */
411         if ( LDAP_BACK_CHASE_REFERRALS( li ) ) {
412                 ldap_set_option( ld, LDAP_OPT_REFERRALS, LDAP_OPT_ON );
413         }
414
415 #ifdef HAVE_TLS
416         rs->sr_err = ldap_back_start_tls( ld,
417                         op->o_protocol, &is_tls,
418                         li->url, li->flags, &rs->sr_text );
419         if ( rs->sr_err != LDAP_SUCCESS ) {
420                 ldap_unbind_ext( ld, NULL, NULL );
421                 goto error_return;
422         }
423 #endif /* HAVE_TLS */
424
425         if ( *lcp == NULL ) {
426                 *lcp = (struct ldapconn *)ch_calloc( 1, sizeof( struct ldapconn ) );
427                 (*lcp)->lc_flags= li->flags;
428         }
429         (*lcp)->lc_ld = ld;
430         (*lcp)->lc_refcnt = 1;
431         (*lcp)->lc_is_tls = is_tls;
432
433 error_return:;
434         if ( rs->sr_err != LDAP_SUCCESS ) {
435                 rs->sr_err = slap_map_api2result( rs );
436                 if ( sendok & LDAP_BACK_SENDERR ) {
437                         if ( rs->sr_text == NULL ) {
438                                 rs->sr_text = "ldap_initialize() failed";
439                         }
440                         send_ldap_result( op, rs );
441                         rs->sr_text = NULL;
442                 }
443         }
444
445         return rs->sr_err;
446 }
447
448 struct ldapconn *
449 ldap_back_getconn( Operation *op, SlapReply *rs, ldap_back_send_t sendok )
450 {
451         struct ldapinfo *li = (struct ldapinfo *)op->o_bd->be_private;
452         struct ldapconn *lc,
453                         lc_curr = { 0 };
454         int             refcnt = 1;
455
456         /* Searches for a ldapconn in the avl tree */
457
458         /* Explicit binds must not be shared */
459         if ( op->o_tag == LDAP_REQ_BIND
460                 || ( op->o_conn
461                         && op->o_conn->c_authz_backend
462                         && op->o_bd->be_private == op->o_conn->c_authz_backend->be_private ) )
463         {
464                 lc_curr.lc_conn = op->o_conn;
465
466         } else {
467                 lc_curr.lc_conn = op->o_conn->c_is_tls ? 
468                         LDAP_BACK_PRIV_CONN_TLS : LDAP_BACK_PRIV_CONN;
469         }
470         
471         /* Internal searches are privileged and shared. So is root. */
472         /* FIXME: there seem to be concurrency issues */
473         if ( op->o_do_not_cache || be_isroot( op ) ) {
474                 lc_curr.lc_local_ndn = op->o_bd->be_rootndn;
475                 lc_curr.lc_conn = op->o_conn->c_is_tls ? 
476                         LDAP_BACK_PRIV_CONN_TLS : LDAP_BACK_PRIV_CONN;
477                 lc_curr.lc_ispriv = 1;
478
479         } else {
480                 lc_curr.lc_local_ndn = op->o_ndn;
481         }
482
483         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
484
485         lc = (struct ldapconn *)avl_find( li->conntree, 
486                         (caddr_t)&lc_curr, ldap_back_conn_cmp );
487         if ( lc != NULL ) {
488                 refcnt = ++lc->lc_refcnt;
489         }
490         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
491
492         /* Looks like we didn't get a bind. Open a new session... */
493         if ( lc == NULL ) {
494                 if ( ldap_back_prepare_conn( &lc, op, rs, sendok ) != LDAP_SUCCESS ) {
495                         return NULL;
496                 }
497
498                 lc->lc_conn = lc_curr.lc_conn;
499                 ber_dupbv( &lc->lc_local_ndn, &lc_curr.lc_local_ndn );
500
501                 if ( lc_curr.lc_ispriv ) {
502                         ber_dupbv( &lc->lc_cred, &li->acl_passwd );
503                         ber_dupbv( &lc->lc_bound_ndn, &li->acl_authcDN );
504                         lc->lc_ispriv = lc_curr.lc_ispriv;
505
506                 } else {
507                         BER_BVZERO( &lc->lc_cred );
508                         BER_BVZERO( &lc->lc_bound_ndn );
509                         if ( op->o_conn && !BER_BVISEMPTY( &op->o_ndn )
510                                 && op->o_bd->be_private == op->o_conn->c_authz_backend->be_private )
511                         {
512                                 ber_dupbv( &lc->lc_bound_ndn, &op->o_ndn );
513                         }
514                 }
515
516                 /* if start TLS failed but it was not mandatory,
517                  * check if the non-TLS connection was already
518                  * in cache; in case, destroy the newly created
519                  * connection and use the existing one */
520                 if ( lc->lc_conn == LDAP_BACK_PRIV_CONN_TLS
521                                 && !ldap_tls_inplace( lc->lc_ld ) )
522                 {
523                         struct ldapconn *tmplc;
524                         
525                         lc_curr.lc_conn = LDAP_BACK_PRIV_CONN;
526                         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
527                         tmplc = (struct ldapconn *)avl_find( li->conntree, 
528                                         (caddr_t)&lc_curr, ldap_back_conn_cmp );
529                         if ( tmplc != NULL ) {
530                                 refcnt = ++tmplc->lc_refcnt;
531                                 ldap_back_conn_free( lc );
532                                 lc = tmplc;
533                         }
534                         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
535
536                         if ( tmplc != NULL ) {
537                                 goto done;
538                         }
539                 }
540
541                 lc->lc_bound = 0;
542
543                 /* Inserts the newly created ldapconn in the avl tree */
544                 ldap_pvt_thread_mutex_lock( &li->conn_mutex );
545
546                 assert( lc->lc_refcnt == 1 );
547                 rs->sr_err = avl_insert( &li->conntree, (caddr_t)lc,
548                         ldap_back_conn_cmp, ldap_back_conn_dup );
549
550 #if PRINT_CONNTREE > 0
551                 myprint( li->conntree );
552 #endif /* PRINT_CONNTREE */
553         
554                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
555
556                 Debug( LDAP_DEBUG_TRACE,
557                         "=>ldap_back_getconn: conn %p inserted (refcnt=%u)\n",
558                         (void *)lc, refcnt, 0 );
559         
560                 /* Err could be -1 in case a duplicate ldapconn is inserted */
561                 if ( rs->sr_err != 0 ) {
562                         ldap_back_conn_free( lc );
563                         rs->sr_err = LDAP_OTHER;
564                         if ( op->o_conn && ( sendok & LDAP_BACK_SENDERR ) ) {
565                                 send_ldap_error( op, rs, LDAP_OTHER,
566                                         "internal server error" );
567                         }
568                         return NULL;
569                 }
570
571         } else {
572                 Debug( LDAP_DEBUG_TRACE,
573                         "=>ldap_back_getconn: conn %p fetched (refcnt=%u)\n",
574                         (void *)lc, refcnt, 0 );
575         }
576
577 done:;
578         return lc;
579 }
580
581 void
582 ldap_back_release_conn(
583         Operation               *op,
584         SlapReply               *rs,
585         struct ldapconn         *lc )
586 {
587         struct ldapinfo *li = (struct ldapinfo *)op->o_bd->be_private;
588
589         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
590         assert( lc->lc_refcnt > 0 );
591         lc->lc_refcnt--;
592         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
593 }
594
595 /*
596  * ldap_back_dobind
597  *
598  * Note: as the check for the value of lc->lc_bound was already here, I removed
599  * it from all the callers, and I made the function return the flag, so
600  * it can be used to simplify the check.
601  *
602  * Note: dolock indicates whether li->conn_mutex must be locked or not
603  */
604 static int
605 ldap_back_dobind_int(
606         struct ldapconn         *lc,
607         Operation               *op,
608         SlapReply               *rs,
609         ldap_back_send_t        sendok,
610         int                     retries,
611         int                     dolock )
612 {       
613         int             rc;
614         ber_int_t       msgid;
615
616         assert( retries >= 0 );
617
618         if ( !lc->lc_bound ) {
619                 struct ldapinfo *li = (struct ldapinfo *)op->o_bd->be_private;
620
621                 /*
622                  * FIXME: we need to let clients use proxyAuthz
623                  * otherwise we cannot do symmetric pools of servers;
624                  * we have to live with the fact that a user can
625                  * authorize itself as any ID that is allowed
626                  * by the authzTo directive of the "proxyauthzdn".
627                  */
628                 /*
629                  * NOTE: current Proxy Authorization specification
630                  * and implementation do not allow proxy authorization
631                  * control to be provided with Bind requests
632                  */
633                 /*
634                  * if no bind took place yet, but the connection is bound
635                  * and the "idassert-authcDN" (or other ID) is set, 
636                  * then bind as the asserting identity and explicitly 
637                  * add the proxyAuthz control to every operation with the
638                  * dn bound to the connection as control value.
639                  * This is done also if this is the authrizing backend,
640                  * but the "override" flag is given to idassert.
641                  * It allows to use SASL bind and yet proxyAuthz users
642                  */
643                 if ( op->o_conn != NULL &&
644                                 !op->o_do_not_cache &&
645                                 ( BER_BVISNULL( &lc->lc_bound_ndn ) ||
646                                   ( li->idassert_flags & LDAP_BACK_AUTH_OVERRIDE ) ) )
647                 {
648                         (void)ldap_back_proxy_authz_bind( lc, op, rs );
649                         goto done;
650                 }
651
652 #ifdef HAVE_CYRUS_SASL
653                 if ( lc->lc_ispriv && li->acl_authmethod == LDAP_AUTH_SASL ) {
654                         void            *defaults = NULL;
655
656 #if 1   /* will deal with this later... */
657                         if ( li->acl_secprops != NULL ) {
658                                 rc = ldap_set_option( lc->lc_ld,
659                                         LDAP_OPT_X_SASL_SECPROPS, li->acl_secprops);
660
661                                 if( rc != LDAP_OPT_SUCCESS ) {
662                                         Debug( LDAP_DEBUG_ANY, "Error: ldap_set_option "
663                                                 "(%s,SECPROPS,\"%s\") failed!\n",
664                                                 li->url, li->acl_secprops, 0 );
665                                         goto done;
666                                 }
667                         }
668 #endif
669
670                         defaults = lutil_sasl_defaults( lc->lc_ld,
671                                         li->acl_sasl_mech.bv_val,
672                                         li->acl_sasl_realm.bv_val,
673                                         li->acl_authcID.bv_val,
674                                         li->acl_passwd.bv_val,
675                                         NULL );
676
677                         rs->sr_err = ldap_sasl_interactive_bind_s( lc->lc_ld,
678                                         li->acl_authcDN.bv_val,
679                                         li->acl_sasl_mech.bv_val, NULL, NULL,
680                                         LDAP_SASL_QUIET, lutil_sasl_interact,
681                                         defaults );
682
683                         lutil_sasl_freedefs( defaults );
684
685                         rs->sr_err = slap_map_api2result( rs );
686                         if ( rs->sr_err != LDAP_SUCCESS ) {
687                                 lc->lc_bound = 0;
688                                 send_ldap_result( op, rs );
689
690                         } else {
691                                 lc->lc_bound = 1;
692                         }
693                         goto done;
694                 }
695 #endif /* HAVE_CYRUS_SASL */
696
697 retry:;
698                 rs->sr_err = ldap_sasl_bind( lc->lc_ld,
699                                 lc->lc_bound_ndn.bv_val,
700                                 LDAP_SASL_SIMPLE, &lc->lc_cred,
701                                 NULL, NULL, &msgid );
702
703                 if ( rs->sr_err == LDAP_SERVER_DOWN ) {
704                         if ( retries > 0 ) {
705                                 if ( dolock ) {
706                                         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
707                                 }
708
709                                 assert( lc->lc_refcnt > 0 );
710                                 if ( lc->lc_refcnt == 1 ) {
711                                         ldap_unbind_ext( lc->lc_ld, NULL, NULL );
712                                         lc->lc_ld = NULL;
713
714                                         /* lc here must be the regular lc, reset and ready for init */
715                                         rs->sr_err = ldap_back_prepare_conn( &lc, op, rs, sendok );
716                                 }
717                                 if ( dolock ) {
718                                         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
719                                 }
720                                 if ( rs->sr_err == LDAP_SUCCESS ) {
721                                         retries--;
722                                         goto retry;
723                                 }
724                         }
725
726                         ldap_back_freeconn( op, lc );
727                         rs->sr_err = slap_map_api2result( rs );
728
729                         return 0;
730                 }
731
732                 rc = ldap_back_op_result( lc, op, rs, msgid, sendok );
733                 if ( rc == LDAP_SUCCESS ) {
734                         lc->lc_bound = 1;
735                 }
736         }
737
738 done:;
739         rc = lc->lc_bound;
740         return rc;
741 }
742
743 int
744 ldap_back_dobind( struct ldapconn *lc, Operation *op, SlapReply *rs, ldap_back_send_t sendok )
745 {
746         return ldap_back_dobind_int( lc, op, rs, sendok, 1, 1 );
747 }
748
749 /*
750  * ldap_back_rebind
751  *
752  * This is a callback used for chasing referrals using the same
753  * credentials as the original user on this session.
754  */
755 static int 
756 ldap_back_rebind( LDAP *ld, LDAP_CONST char *url, ber_tag_t request,
757         ber_int_t msgid, void *params )
758 {
759         struct ldapconn *lc = (struct ldapconn *)params;
760
761 #ifdef HAVE_TLS
762         /* ... otherwise we couldn't get here */
763         assert( lc != NULL );
764
765         if ( !ldap_tls_inplace( ld ) ) {
766                 int             is_tls = lc->lc_is_tls,
767                                 rc;
768                 const char      *text = NULL;
769
770                 rc = ldap_back_start_tls( ld, 0, &is_tls, url, lc->lc_flags, &text );
771                 if ( rc != LDAP_SUCCESS ) {
772                         return rc;
773                 }
774         }
775 #endif /* HAVE_TLS */
776
777         /* FIXME: add checks on the URL/identity? */
778
779         return ldap_sasl_bind_s( ld, lc->lc_bound_ndn.bv_val,
780                         LDAP_SASL_SIMPLE, &lc->lc_cred, NULL, NULL, NULL );
781 }
782
783 int
784 ldap_back_op_result(
785                 struct ldapconn         *lc,
786                 Operation               *op,
787                 SlapReply               *rs,
788                 ber_int_t               msgid,
789                 ldap_back_send_t        sendok )
790 {
791         char            *match = NULL;
792         LDAPMessage     *res = NULL;
793         char            *text = NULL;
794
795 #define ERR_OK(err) ((err) == LDAP_SUCCESS || (err) == LDAP_COMPARE_FALSE || (err) == LDAP_COMPARE_TRUE)
796
797         rs->sr_text = NULL;
798         rs->sr_matched = NULL;
799
800         /* if the error recorded in the reply corresponds
801          * to a successful state, get the error from the
802          * remote server response */
803         if ( ERR_OK( rs->sr_err ) ) {
804                 int             rc;
805                 struct timeval  tv = { 0, 0 };
806
807 retry:;
808                 /* if result parsing fails, note the failure reason */
809                 switch ( ldap_result( lc->lc_ld, msgid, 1, &tv, &res ) ) {
810                 case 0:
811                         tv.tv_sec = 0;
812                         tv.tv_usec = 100000;    /* 0.1 s */
813                         ldap_pvt_thread_yield();
814                         goto retry;
815
816                 case -1:
817                         ldap_get_option( lc->lc_ld, LDAP_OPT_ERROR_NUMBER,
818                                         &rs->sr_err );
819                         break;
820
821
822                 /* otherwise get the result; if it is not
823                  * LDAP_SUCCESS, record it in the reply
824                  * structure (this includes 
825                  * LDAP_COMPARE_{TRUE|FALSE}) */
826                 default:
827                         rc = ldap_parse_result( lc->lc_ld, res, &rs->sr_err,
828                                         &match, &text, NULL, NULL, 1 );
829                         rs->sr_text = text;
830                         if ( rc != LDAP_SUCCESS ) {
831                                 rs->sr_err = rc;
832                         }
833                 }
834         }
835
836         /* if the error in the reply structure is not
837          * LDAP_SUCCESS, try to map it from client 
838          * to server error */
839         if ( !ERR_OK( rs->sr_err ) ) {
840                 rs->sr_err = slap_map_api2result( rs );
841
842                 /* internal ops ( op->o_conn == NULL ) 
843                  * must not reply to client */
844                 if ( op->o_conn && !op->o_do_not_cache && match ) {
845
846                         /* record the (massaged) matched
847                          * DN into the reply structure */
848                         rs->sr_matched = match;
849                 }
850         }
851         if ( op->o_conn &&
852                         ( ( sendok & LDAP_BACK_SENDOK ) 
853                           || ( ( sendok & LDAP_BACK_SENDERR ) && rs->sr_err != LDAP_SUCCESS ) ) )
854         {
855                 send_ldap_result( op, rs );
856         }
857         if ( match ) {
858                 if ( rs->sr_matched != match ) {
859                         free( (char *)rs->sr_matched );
860                 }
861                 rs->sr_matched = NULL;
862                 ldap_memfree( match );
863         }
864         if ( text ) {
865                 ldap_memfree( text );
866         }
867         rs->sr_text = NULL;
868         return( ERR_OK( rs->sr_err ) ? 0 : -1 );
869 }
870
871 /* return true if bound, false if failed */
872 int
873 ldap_back_retry( struct ldapconn *lc, Operation *op, SlapReply *rs, ldap_back_send_t sendok )
874 {
875         int             rc = 0;
876         struct ldapinfo *li = (struct ldapinfo *)op->o_bd->be_private;
877         
878         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
879
880         if ( lc->lc_refcnt == 1 ) {
881                 ldap_unbind_ext( lc->lc_ld, NULL, NULL );
882                 lc->lc_ld = NULL;
883                 lc->lc_bound = 0;
884
885                 /* lc here must be the regular lc, reset and ready for init */
886                 rc = ldap_back_prepare_conn( &lc, op, rs, sendok );
887                 if ( rc == LDAP_SUCCESS ) {
888                         rc = ldap_back_dobind_int( lc, op, rs, sendok, 0, 0 );
889                 }
890         }
891
892         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
893
894         return rc;
895 }
896
897 static int
898 ldap_back_proxy_authz_bind( struct ldapconn *lc, Operation *op, SlapReply *rs )
899 {
900         struct ldapinfo *li = (struct ldapinfo *)op->o_bd->be_private;
901         struct berval   binddn = slap_empty_bv;
902         struct berval   bindcred = slap_empty_bv;
903         int             dobind = 0;
904         int             msgid;
905         int             rc;
906
907         /*
908          * FIXME: we need to let clients use proxyAuthz
909          * otherwise we cannot do symmetric pools of servers;
910          * we have to live with the fact that a user can
911          * authorize itself as any ID that is allowed
912          * by the authzTo directive of the "proxyauthzdn".
913          */
914         /*
915          * NOTE: current Proxy Authorization specification
916          * and implementation do not allow proxy authorization
917          * control to be provided with Bind requests
918          */
919         /*
920          * if no bind took place yet, but the connection is bound
921          * and the "proxyauthzdn" is set, then bind as 
922          * "proxyauthzdn" and explicitly add the proxyAuthz 
923          * control to every operation with the dn bound 
924          * to the connection as control value.
925          */
926
927         /* bind as proxyauthzdn only if no idassert mode
928          * is requested, or if the client's identity
929          * is authorized */
930         switch ( li->idassert_mode ) {
931         case LDAP_BACK_IDASSERT_LEGACY:
932                 if ( !BER_BVISNULL( &op->o_conn->c_ndn ) && !BER_BVISEMPTY( &op->o_conn->c_ndn ) ) {
933                         if ( !BER_BVISNULL( &li->idassert_authcDN ) && !BER_BVISEMPTY( &li->idassert_authcDN ) )
934                         {
935                                 binddn = li->idassert_authcDN;
936                                 bindcred = li->idassert_passwd;
937                                 dobind = 1;
938                         }
939                 }
940                 break;
941
942         default:
943                 /* NOTE: rootdn can always idassert */
944                 if ( li->idassert_authz && !be_isroot( op ) ) {
945                         struct berval authcDN;
946
947                         if ( BER_BVISNULL( &op->o_conn->c_ndn ) ) {
948                                 authcDN = slap_empty_bv;
949
950                         } else {
951                                 authcDN = op->o_conn->c_ndn;
952                         }       
953                         rs->sr_err = slap_sasl_matches( op, li->idassert_authz,
954                                         &authcDN, &authcDN );
955                         if ( rs->sr_err != LDAP_SUCCESS ) {
956                                 if ( li->idassert_flags & LDAP_BACK_AUTH_PRESCRIPTIVE ) {
957                                         send_ldap_result( op, rs );
958                                         lc->lc_bound = 0;
959
960                                 } else {
961                                         rs->sr_err = LDAP_SUCCESS;
962                                         binddn = slap_empty_bv;
963                                         bindcred = slap_empty_bv;
964                                         break;
965                                 }
966
967                                 goto done;
968                         }
969                 }
970
971                 binddn = li->idassert_authcDN;
972                 bindcred = li->idassert_passwd;
973                 dobind = 1;
974                 break;
975         }
976
977         if ( dobind && li->idassert_authmethod == LDAP_AUTH_SASL ) {
978 #ifdef HAVE_CYRUS_SASL
979                 void            *defaults = NULL;
980                 struct berval   authzID = BER_BVNULL;
981                 int             freeauthz = 0;
982
983                 /* if SASL supports native authz, prepare for it */
984                 if ( ( !op->o_do_not_cache || !op->o_is_auth_check ) &&
985                                 ( li->idassert_flags & LDAP_BACK_AUTH_NATIVE_AUTHZ ) )
986                 {
987                         switch ( li->idassert_mode ) {
988                         case LDAP_BACK_IDASSERT_OTHERID:
989                         case LDAP_BACK_IDASSERT_OTHERDN:
990                                 authzID = li->idassert_authzID;
991                                 break;
992
993                         case LDAP_BACK_IDASSERT_ANONYMOUS:
994                                 BER_BVSTR( &authzID, "dn:" );
995                                 break;
996
997                         case LDAP_BACK_IDASSERT_SELF:
998                                 if ( BER_BVISNULL( &op->o_conn->c_ndn ) ) {
999                                         /* connection is not authc'd, so don't idassert */
1000                                         BER_BVSTR( &authzID, "dn:" );
1001                                         break;
1002                                 }
1003                                 authzID.bv_len = STRLENOF( "dn:" ) + op->o_conn->c_ndn.bv_len;
1004                                 authzID.bv_val = slap_sl_malloc( authzID.bv_len + 1, op->o_tmpmemctx );
1005                                 AC_MEMCPY( authzID.bv_val, "dn:", STRLENOF( "dn:" ) );
1006                                 AC_MEMCPY( authzID.bv_val + STRLENOF( "dn:" ),
1007                                                 op->o_conn->c_ndn.bv_val, op->o_conn->c_ndn.bv_len + 1 );
1008                                 freeauthz = 1;
1009                                 break;
1010
1011                         default:
1012                                 break;
1013                         }
1014                 }
1015
1016 #if 0   /* will deal with this later... */
1017                 if ( sasl_secprops != NULL ) {
1018                         rs->sr_err = ldap_set_option( lc->lc_ld, LDAP_OPT_X_SASL_SECPROPS,
1019                                 (void *) sasl_secprops );
1020
1021                         if ( rs->sr_err != LDAP_OPT_SUCCESS ) {
1022                                 send_ldap_result( op, rs );
1023                                 lc->lc_bound = 0;
1024                                 goto done;
1025                         }
1026                 }
1027 #endif
1028
1029                 defaults = lutil_sasl_defaults( lc->lc_ld,
1030                                 li->idassert_sasl_mech.bv_val,
1031                                 li->idassert_sasl_realm.bv_val,
1032                                 li->idassert_authcID.bv_val,
1033                                 li->idassert_passwd.bv_val,
1034                                 authzID.bv_val );
1035
1036                 rs->sr_err = ldap_sasl_interactive_bind_s( lc->lc_ld, binddn.bv_val,
1037                                 li->idassert_sasl_mech.bv_val, NULL, NULL,
1038                                 LDAP_SASL_QUIET, lutil_sasl_interact,
1039                                 defaults );
1040
1041                 lutil_sasl_freedefs( defaults );
1042                 if ( freeauthz ) {
1043                         slap_sl_free( authzID.bv_val, op->o_tmpmemctx );
1044                 }
1045
1046                 rs->sr_err = slap_map_api2result( rs );
1047                 if ( rs->sr_err != LDAP_SUCCESS ) {
1048                         lc->lc_bound = 0;
1049                         send_ldap_result( op, rs );
1050
1051                 } else {
1052                         lc->lc_bound = 1;
1053                 }
1054                 goto done;
1055 #endif /* HAVE_CYRUS_SASL */
1056         }
1057
1058         switch ( li->idassert_authmethod ) {
1059         case LDAP_AUTH_SIMPLE:
1060                 rs->sr_err = ldap_sasl_bind( lc->lc_ld,
1061                                 binddn.bv_val, LDAP_SASL_SIMPLE,
1062                                 &bindcred, NULL, NULL, &msgid );
1063                 break;
1064
1065         case LDAP_AUTH_NONE:
1066                 lc->lc_bound = 1;
1067                 goto done;
1068
1069         default:
1070                 /* unsupported! */
1071                 lc->lc_bound = 0;
1072                 rs->sr_err = LDAP_AUTH_METHOD_NOT_SUPPORTED;
1073                 send_ldap_result( op, rs );
1074                 goto done;
1075         }
1076
1077         rc = ldap_back_op_result( lc, op, rs, msgid, LDAP_BACK_SENDERR );
1078         if ( rc == LDAP_SUCCESS ) {
1079                 lc->lc_bound = 1;
1080         }
1081 done:;
1082         return lc->lc_bound;
1083 }
1084
1085 /*
1086  * ldap_back_proxy_authz_ctrl() prepends a proxyAuthz control
1087  * to existing server-side controls if required; if not,
1088  * the existing server-side controls are placed in *pctrls.
1089  * The caller, after using the controls in client API 
1090  * operations, if ( *pctrls != op->o_ctrls ), should
1091  * free( (*pctrls)[ 0 ] ) and free( *pctrls ).
1092  * The function returns success if the control could
1093  * be added if required, or if it did nothing; in the future,
1094  * it might return some error if it failed.
1095  * 
1096  * if no bind took place yet, but the connection is bound
1097  * and the "proxyauthzdn" is set, then bind as "proxyauthzdn" 
1098  * and explicitly add proxyAuthz the control to every operation
1099  * with the dn bound to the connection as control value.
1100  *
1101  * If no server-side controls are defined for the operation,
1102  * simply add the proxyAuthz control; otherwise, if the
1103  * proxyAuthz control is not already set, add it as
1104  * the first one
1105  *
1106  * FIXME: is controls order significant for security?
1107  * ANSWER: controls ordering and interoperability
1108  * must be indicated by the specs of each control; if none
1109  * is specified, the order is irrelevant.
1110  */
1111 int
1112 ldap_back_proxy_authz_ctrl(
1113                 struct ldapconn *lc,
1114                 Operation       *op,
1115                 SlapReply       *rs,
1116                 LDAPControl     ***pctrls )
1117 {
1118         struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
1119         LDAPControl     **ctrls = NULL;
1120         int             i = 0,
1121                         mode;
1122         struct berval   assertedID;
1123
1124         *pctrls = NULL;
1125
1126         rs->sr_err = LDAP_SUCCESS;
1127
1128         /* FIXME: SASL/EXTERNAL over ldapi:// doesn't honor the authcID,
1129          * but if it is not set this test fails.  We need a different
1130          * means to detect if idassert is enabled */
1131         if ( ( BER_BVISNULL( &li->idassert_authcID ) || BER_BVISEMPTY( &li->idassert_authcID ) )
1132                         && ( BER_BVISNULL( &li->idassert_authcDN ) || BER_BVISEMPTY( &li->idassert_authcDN ) ) )
1133         {
1134                 goto done;
1135         }
1136
1137         if ( !op->o_conn || op->o_do_not_cache || be_isroot( op ) ) {
1138                 goto done;
1139         }
1140
1141         if ( li->idassert_mode == LDAP_BACK_IDASSERT_LEGACY ) {
1142                 if ( op->o_proxy_authz ) {
1143                         /*
1144                          * FIXME: we do not want to perform proxyAuthz
1145                          * on behalf of the client, because this would
1146                          * be performed with "proxyauthzdn" privileges.
1147                          *
1148                          * This might actually be too strict, since
1149                          * the "proxyauthzdn" authzTo, and each entry's
1150                          * authzFrom attributes may be crafted
1151                          * to avoid unwanted proxyAuthz to take place.
1152                          */
1153 #if 0
1154                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1155                         rs->sr_text = "proxyAuthz not allowed within namingContext";
1156 #endif
1157                         goto done;
1158                 }
1159
1160                 if ( !BER_BVISNULL( &lc->lc_bound_ndn ) ) {
1161                         goto done;
1162                 }
1163
1164                 if ( BER_BVISNULL( &op->o_conn->c_ndn ) ) {
1165                         goto done;
1166                 }
1167
1168                 if ( BER_BVISNULL( &li->idassert_authcDN ) ) {
1169                         goto done;
1170                 }
1171
1172         } else if ( li->idassert_authmethod == LDAP_AUTH_SASL ) {
1173                 if ( ( li->idassert_flags & LDAP_BACK_AUTH_NATIVE_AUTHZ )
1174                                 /* && ( !BER_BVISNULL( &op->o_conn->c_ndn ) || lc->lc_bound ) */ )
1175                 {
1176                         /* already asserted in SASL via native authz */
1177                         /* NOTE: the test on lc->lc_bound is used to trap
1178                          * native authorization of anonymous users,
1179                          * since in that case op->o_conn->c_ndn is NULL */
1180                         goto done;
1181                 }
1182
1183         } else if ( li->idassert_authz && !be_isroot( op ) ) {
1184                 int             rc;
1185                 struct berval authcDN;
1186
1187                 if ( BER_BVISNULL( &op->o_conn->c_ndn ) ) {
1188                         authcDN = slap_empty_bv;
1189                 } else {
1190                         authcDN = op->o_conn->c_ndn;
1191                 }
1192                 rc = slap_sasl_matches( op, li->idassert_authz,
1193                                 &authcDN, & authcDN );
1194                 if ( rc != LDAP_SUCCESS ) {
1195                         if ( li->idassert_flags & LDAP_BACK_AUTH_PRESCRIPTIVE )
1196                         {
1197                                 /* op->o_conn->c_ndn is not authorized
1198                                  * to use idassert */
1199                                 return rc;
1200                         }
1201                         return rs->sr_err;
1202                 }
1203         }
1204
1205         if ( op->o_proxy_authz ) {
1206                 /*
1207                  * FIXME: we can:
1208                  * 1) ignore the already set proxyAuthz control
1209                  * 2) leave it in place, and don't set ours
1210                  * 3) add both
1211                  * 4) reject the operation
1212                  *
1213                  * option (4) is very drastic
1214                  * option (3) will make the remote server reject
1215                  * the operation, thus being equivalent to (4)
1216                  * option (2) will likely break the idassert
1217                  * assumptions, so we cannot accept it;
1218                  * option (1) means that we are contradicting
1219                  * the client's reques.
1220                  *
1221                  * I think (4) is the only correct choice.
1222                  */
1223                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1224                 rs->sr_text = "proxyAuthz not allowed within namingContext";
1225         }
1226
1227         if ( op->o_do_not_cache && op->o_is_auth_check ) {
1228                 mode = LDAP_BACK_IDASSERT_NOASSERT;
1229
1230         } else {
1231                 mode = li->idassert_mode;
1232         }
1233
1234         switch ( mode ) {
1235         case LDAP_BACK_IDASSERT_LEGACY:
1236         case LDAP_BACK_IDASSERT_SELF:
1237                 /* original behavior:
1238                  * assert the client's identity */
1239                 if ( BER_BVISNULL( &op->o_conn->c_ndn ) ) {
1240                         assertedID = slap_empty_bv;
1241                 } else {
1242                         assertedID = op->o_conn->c_ndn;
1243                 }
1244                 break;
1245
1246         case LDAP_BACK_IDASSERT_ANONYMOUS:
1247                 /* assert "anonymous" */
1248                 assertedID = slap_empty_bv;
1249                 break;
1250
1251         case LDAP_BACK_IDASSERT_NOASSERT:
1252                 /* don't assert; bind as proxyauthzdn */
1253                 goto done;
1254
1255         case LDAP_BACK_IDASSERT_OTHERID:
1256         case LDAP_BACK_IDASSERT_OTHERDN:
1257                 /* assert idassert DN */
1258                 assertedID = li->idassert_authzID;
1259                 break;
1260
1261         default:
1262                 assert( 0 );
1263         }
1264
1265         if ( BER_BVISNULL( &assertedID ) ) {
1266                 assertedID = slap_empty_bv;
1267         }
1268
1269         if ( op->o_ctrls ) {
1270                 for ( i = 0; op->o_ctrls[ i ]; i++ )
1271                         /* just count ctrls */ ;
1272         }
1273
1274         ctrls = ch_malloc( sizeof( LDAPControl * ) * (i + 2) );
1275         ctrls[ 0 ] = ch_malloc( sizeof( LDAPControl ) );
1276         
1277         ctrls[ 0 ]->ldctl_oid = LDAP_CONTROL_PROXY_AUTHZ;
1278         ctrls[ 0 ]->ldctl_iscritical = 1;
1279
1280         switch ( li->idassert_mode ) {
1281         /* already in u:ID or dn:DN form */
1282         case LDAP_BACK_IDASSERT_OTHERID:
1283         case LDAP_BACK_IDASSERT_OTHERDN:
1284                 ber_dupbv( &ctrls[ 0 ]->ldctl_value, &assertedID );
1285                 break;
1286
1287         /* needs the dn: prefix */
1288         default:
1289                 ctrls[ 0 ]->ldctl_value.bv_len = assertedID.bv_len + STRLENOF( "dn:" );
1290                 ctrls[ 0 ]->ldctl_value.bv_val = ch_malloc( ctrls[ 0 ]->ldctl_value.bv_len + 1 );
1291                 AC_MEMCPY( ctrls[ 0 ]->ldctl_value.bv_val, "dn:", STRLENOF( "dn:" ) );
1292                 AC_MEMCPY( &ctrls[ 0 ]->ldctl_value.bv_val[ STRLENOF( "dn:" ) ],
1293                                 assertedID.bv_val, assertedID.bv_len + 1 );
1294                 break;
1295         }
1296
1297         if ( op->o_ctrls ) {
1298                 for ( i = 0; op->o_ctrls[ i ]; i++ ) {
1299                         ctrls[ i + 1 ] = op->o_ctrls[ i ];
1300                 }
1301         }
1302         ctrls[ i + 1 ] = NULL;
1303
1304 done:;
1305         if ( ctrls == NULL ) {
1306                 ctrls = op->o_ctrls;
1307         }
1308
1309         *pctrls = ctrls;
1310         
1311         return rs->sr_err;
1312 }
1313
1314 int
1315 ldap_back_proxy_authz_ctrl_free( Operation *op, LDAPControl ***pctrls )
1316 {
1317         LDAPControl     **ctrls = *pctrls;
1318
1319         /* we assume that the first control is the proxyAuthz
1320          * added by back-ldap, so it's the only one we explicitly 
1321          * free */
1322         if ( ctrls && ctrls != op->o_ctrls ) {
1323                 assert( ctrls[ 0 ] != NULL );
1324
1325                 if ( !BER_BVISNULL( &ctrls[ 0 ]->ldctl_value ) ) {
1326                         free( ctrls[ 0 ]->ldctl_value.bv_val );
1327                 }
1328
1329                 free( ctrls[ 0 ] );
1330                 free( ctrls );
1331         } 
1332
1333         *pctrls = NULL;
1334
1335         return 0;
1336 }