]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/bind.c
b6b449cd8228bcf0383146d03cd1e4bef1478a97
[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-2006 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 #ifndef PRINT_CONNTREE
39 #define PRINT_CONNTREE 0
40 #endif /* !PRINT_CONNTREE */
41
42 #define LDAP_CONTROL_OBSOLETE_PROXY_AUTHZ       "2.16.840.1.113730.3.4.12"
43
44 static LDAP_REBIND_PROC ldap_back_default_rebind;
45
46 LDAP_REBIND_PROC        *ldap_back_rebind_f = ldap_back_default_rebind;
47
48 static int
49 ldap_back_proxy_authz_bind( ldapconn_t *lc, Operation *op, SlapReply *rs, ldap_back_send_t sendok );
50
51 static int
52 ldap_back_prepare_conn( ldapconn_t **lcp, Operation *op, SlapReply *rs, ldap_back_send_t sendok );
53
54 static int
55 ldap_back_conndnlc_cmp( const void *c1, const void *c2 );
56
57 int
58 ldap_back_bind( Operation *op, SlapReply *rs )
59 {
60         ldapinfo_t      *li = (ldapinfo_t *) op->o_bd->be_private;
61         ldapconn_t      *lc;
62
63         int rc = 0;
64         ber_int_t msgid;
65
66         lc = ldap_back_getconn( op, rs, LDAP_BACK_BIND_SERR );
67         if ( !lc ) {
68                 return rs->sr_err;
69         }
70
71         if ( !BER_BVISNULL( &lc->lc_bound_ndn ) ) {
72                 ch_free( lc->lc_bound_ndn.bv_val );
73                 BER_BVZERO( &lc->lc_bound_ndn );
74         }
75         LDAP_BACK_CONN_ISBOUND_CLEAR( lc );
76
77         /* method is always LDAP_AUTH_SIMPLE if we got here */
78         rs->sr_err = ldap_sasl_bind( lc->lc_ld, op->o_req_dn.bv_val,
79                         LDAP_SASL_SIMPLE,
80                         &op->orb_cred, op->o_ctrls, NULL, &msgid );
81         rc = ldap_back_op_result( lc, op, rs, msgid, 0, LDAP_BACK_SENDERR );
82
83         if ( rc == LDAP_SUCCESS ) {
84                 /* If defined, proxyAuthz will be used also when
85                  * back-ldap is the authorizing backend; for this
86                  * purpose, a successful bind is followed by a
87                  * bind with the configured identity assertion */
88                 /* NOTE: use with care */
89                 if ( li->li_idassert_flags & LDAP_BACK_AUTH_OVERRIDE ) {
90                         ldap_back_proxy_authz_bind( lc, op, rs, LDAP_BACK_SENDERR );
91                         if ( !LDAP_BACK_CONN_ISBOUND( lc ) ) {
92                                 rc = 1;
93                                 goto done;
94                         }
95                 }
96
97                 LDAP_BACK_CONN_ISBOUND_SET( lc );
98                 ber_dupbv( &lc->lc_bound_ndn, &op->o_req_ndn );
99
100                 if ( LDAP_BACK_SAVECRED( li ) ) {
101                         if ( !BER_BVISNULL( &lc->lc_cred ) ) {
102                                 memset( lc->lc_cred.bv_val, 0,
103                                                 lc->lc_cred.bv_len );
104                         }
105                         ber_bvreplace( &lc->lc_cred, &op->orb_cred );
106                         ldap_set_rebind_proc( lc->lc_ld, ldap_back_rebind_f, lc );
107                 }
108         }
109 done:;
110
111         assert( lc->lc_binding == 1 );
112         lc->lc_binding = 0;
113
114         /* must re-insert if local DN changed as result of bind */
115         if ( !LDAP_BACK_CONN_ISBOUND( lc )
116                 || ( LDAP_BACK_CONN_ISBOUND( lc )
117                         && !dn_match( &op->o_req_ndn, &lc->lc_local_ndn ) ) )
118         {
119                 int             lerr = -1;
120                 ldapconn_t      *tmplc;
121
122                 /* wait for all other ops to release the connection */
123 retry_lock:;
124                 ldap_pvt_thread_mutex_lock( &li->li_conninfo.lai_mutex );
125                 if ( lc->lc_refcnt > 1 ) {
126                         ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
127                         ldap_pvt_thread_yield();
128                         goto retry_lock;
129                 }
130
131                 assert( lc->lc_refcnt == 1 );
132                 tmplc = avl_delete( &li->li_conninfo.lai_tree, (caddr_t)lc,
133                                 ldap_back_conndnlc_cmp );
134                 assert( lc == tmplc );
135
136                 if ( LDAP_BACK_CONN_ISBOUND( lc ) ) {
137                         ber_bvreplace( &lc->lc_local_ndn, &op->o_req_ndn );
138                         lerr = avl_insert( &li->li_conninfo.lai_tree, (caddr_t)lc,
139                                 ldap_back_conndn_cmp, ldap_back_conndn_dup );
140                 }
141
142                 ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
143                 switch ( lerr ) {
144                 case 0:
145                         break;
146
147                 case -1:
148                         /* duplicate; someone else successfully bound
149                          * on the same connection with the same identity;
150                          * we can do this because lc_refcnt == 1 */
151                         ldap_back_conn_free( lc );
152                         lc = NULL;
153                 }
154         }
155
156         if ( lc != NULL ) {
157                 ldap_back_release_conn( op, rs, lc );
158         }
159
160         return( rc );
161 }
162
163 /*
164  * ldap_back_conndn_cmp
165  *
166  * compares two ldapconn_t based on the value of the conn pointer
167  * and of the local DN; used by avl stuff for insert, lookup
168  * and direct delete
169  */
170 int
171 ldap_back_conndn_cmp( const void *c1, const void *c2 )
172 {
173         const ldapconn_t        *lc1 = (const ldapconn_t *)c1;
174         const ldapconn_t        *lc2 = (const ldapconn_t *)c2;
175         int rc;
176
177         /* If local DNs don't match, it is definitely not a match */
178         /* For shared sessions, conn is NULL. Only explicitly
179          * bound sessions will have non-NULL conn.
180          */
181         rc = SLAP_PTRCMP( lc1->lc_conn, lc2->lc_conn );
182         if ( rc == 0 ) {
183                 rc = ber_bvcmp( &lc1->lc_local_ndn, &lc2->lc_local_ndn );
184         }
185
186         return rc;
187 }
188
189 /*
190  * ldap_back_conndnlc_cmp
191  *
192  * compares two ldapconn_t based on the value of the conn pointer,
193  * the local DN and the lc pointer; used by avl stuff for insert, lookup
194  * and direct delete
195  */
196 static int
197 ldap_back_conndnlc_cmp( const void *c1, const void *c2 )
198 {
199         const ldapconn_t        *lc1 = (const ldapconn_t *)c1;
200         const ldapconn_t        *lc2 = (const ldapconn_t *)c2;
201         int rc;
202
203         /* If local DNs don't match, it is definitely not a match */
204         /* For shared sessions, conn is NULL. Only explicitly
205          * bound sessions will have non-NULL conn.
206          */
207         rc = SLAP_PTRCMP( lc1->lc_conn, lc2->lc_conn );
208         if ( rc == 0 ) {
209                 rc = ber_bvcmp( &lc1->lc_local_ndn, &lc2->lc_local_ndn );
210                 if ( rc == 0 ) {
211                         rc = SLAP_PTRCMP( lc1, lc2 );
212                 }
213         }
214
215         return rc;
216 }
217
218 /*
219  * ldap_back_conn_cmp
220  *
221  * compares two ldapconn_t based on the value of the conn pointer;
222  * used by avl stuff for delete of all conns with the same connid
223  */
224 int
225 ldap_back_conn_cmp( const void *c1, const void *c2 )
226 {
227         const ldapconn_t        *lc1 = (const ldapconn_t *)c1;
228         const ldapconn_t        *lc2 = (const ldapconn_t *)c2;
229
230         /* For shared sessions, conn is NULL. Only explicitly
231          * bound sessions will have non-NULL conn.
232          */
233         return SLAP_PTRCMP( lc1->lc_conn, lc2->lc_conn );
234 }
235
236 /*
237  * ldap_back_conndn_dup
238  *
239  * returns -1 in case a duplicate ldapconn_t has been inserted;
240  * used by avl stuff
241  */
242 int
243 ldap_back_conndn_dup( void *c1, void *c2 )
244 {
245         ldapconn_t      *lc1 = (ldapconn_t *)c1;
246         ldapconn_t      *lc2 = (ldapconn_t *)c2;
247
248         /* Cannot have more than one shared session with same DN */
249         if ( lc1->lc_conn == lc2->lc_conn &&
250                 dn_match( &lc1->lc_local_ndn, &lc2->lc_local_ndn ) )
251         {
252                 return -1;
253         }
254                 
255         return 0;
256 }
257
258 #if PRINT_CONNTREE > 0
259 static void
260 ravl_print( Avlnode *root, int depth )
261 {
262         int             i;
263         ldapconn_t      *lc;
264         
265         if ( root == 0 ) {
266                 return;
267         }
268         
269         ravl_print( root->avl_right, depth+1 );
270         
271         for ( i = 0; i < depth; i++ ) {
272                 fprintf( stderr, "-" );
273         }
274
275         lc = root->avl_data;
276         fprintf( stderr, "lc=%p local=\"%s\" conn=%p %s refcnt=%d\n",
277                 (void *)lc, lc->lc_local_ndn.bv_val, (void *)lc->lc_conn,
278                 avl_bf2str( root->avl_bf ), lc->lc_refcnt );
279         
280         ravl_print( root->avl_left, depth+1 );
281 }
282
283 static void
284 myprint( Avlnode *root )
285 {
286         fprintf( stderr, "========>\n" );
287         
288         if ( root == 0 ) {
289                 fprintf( stderr, "\tNULL\n" );
290
291         } else {
292                 ravl_print( root, 0 );
293         }
294         
295         fprintf( stderr, "<========\n" );
296 }
297 #endif /* PRINT_CONNTREE */
298
299 int
300 ldap_back_freeconn( Operation *op, ldapconn_t *lc, int dolock )
301 {
302         ldapinfo_t      *li = (ldapinfo_t *) op->o_bd->be_private;
303         ldapconn_t      *tmplc;
304
305         if ( dolock ) {
306                 ldap_pvt_thread_mutex_lock( &li->li_conninfo.lai_mutex );
307         }
308
309         assert( lc->lc_refcnt >= 0 );
310         tmplc = avl_delete( &li->li_conninfo.lai_tree, (caddr_t)lc,
311                         ldap_back_conndnlc_cmp );
312         assert( LDAP_BACK_CONN_TAINTED( lc ) || tmplc == lc );
313         if ( lc->lc_refcnt == 0 ) {
314                 ldap_back_conn_free( (void *)lc );
315         }
316
317         if ( dolock ) {
318                 ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
319         }
320
321         return 0;
322 }
323
324 #ifdef HAVE_TLS
325 static int
326 ldap_back_start_tls(
327         LDAP            *ld,
328         int             protocol,
329         int             *is_tls,
330         const char      *url,
331         unsigned        flags,
332         int             retries,
333         const char      **text )
334 {
335         int             rc = LDAP_SUCCESS;
336         ldapinfo_t      dummy;
337
338         /* this is ridiculous... */
339         dummy.li_flags = flags;
340
341         /* start TLS ("tls-[try-]{start,propagate}" statements) */
342         if ( ( LDAP_BACK_USE_TLS( &dummy ) || ( *is_tls && LDAP_BACK_PROPAGATE_TLS( &dummy ) ) )
343                                 && !ldap_is_ldaps_url( url ) )
344         {
345 #ifdef SLAP_STARTTLS_ASYNCHRONOUS
346                 /*
347                  * use asynchronous StartTLS
348                  * in case, chase referral (not implemented yet)
349                  */
350                 int             msgid;
351
352                 if ( protocol == 0 ) {
353                         ldap_get_option( ld, LDAP_OPT_PROTOCOL_VERSION,
354                                         (void *)&protocol );
355                 }
356
357                 if ( protocol < LDAP_VERSION3 ) {
358                         protocol = LDAP_VERSION3;
359                         /* Set LDAP version */
360                         ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION,
361                                         (const void *)&protocol );
362                 }
363
364                 rc = ldap_start_tls( ld, NULL, NULL, &msgid );
365                 if ( rc == LDAP_SUCCESS ) {
366                         LDAPMessage     *res = NULL;
367                         struct timeval  tv;
368
369                         LDAP_BACK_TV_SET( &tv );
370
371 retry:;
372                         rc = ldap_result( ld, msgid, LDAP_MSG_ALL, &tv, &res );
373                         if ( rc < 0 ) {
374                                 rc = LDAP_UNAVAILABLE;
375
376                         } else if ( rc == 0 ) {
377                                 if ( retries != LDAP_BACK_RETRY_NEVER ) {
378                                         ldap_pvt_thread_yield();
379                                         if ( retries > 0 ) {
380                                                 retries--;
381                                         }
382                                         LDAP_BACK_TV_SET( &tv );
383                                         goto retry;
384                                 }
385                                 rc = LDAP_UNAVAILABLE;
386
387                         } else if ( rc == LDAP_RES_EXTENDED ) {
388                                 struct berval   *data = NULL;
389
390                                 rc = ldap_parse_extended_result( ld, res,
391                                                 NULL, &data, 0 );
392                                 if ( rc == LDAP_SUCCESS ) {
393                                         int err;
394                                         rc = ldap_parse_result( ld, res, &err,
395                                                 NULL, NULL, NULL, NULL, 1 );
396                                         if ( rc == LDAP_SUCCESS ) {
397                                                 rc = err;
398                                         }
399                                         res = NULL;
400                                         
401                                         /* FIXME: in case a referral 
402                                          * is returned, should we try
403                                          * using it instead of the 
404                                          * configured URI? */
405                                         if ( rc == LDAP_SUCCESS ) {
406                                                 rc = ldap_install_tls( ld );
407
408                                         } else if ( rc == LDAP_REFERRAL ) {
409                                                 rc = LDAP_UNWILLING_TO_PERFORM;
410                                                 *text = "unwilling to chase referral returned by Start TLS exop";
411                                         }
412
413                                         if ( data ) {
414                                                 if ( data->bv_val ) {
415                                                         ber_memfree( data->bv_val );
416                                                 }
417                                                 ber_memfree( data );
418                                         }
419                                 }
420
421                         } else {
422                                 rc = LDAP_OTHER;
423                         }
424
425                         if ( res != NULL ) {
426                                 ldap_msgfree( res );
427                         }
428                 }
429 #else /* ! SLAP_STARTTLS_ASYNCHRONOUS */
430                 /*
431                  * use synchronous StartTLS
432                  */
433                 rc = ldap_start_tls_s( ld, NULL, NULL );
434 #endif /* ! SLAP_STARTTLS_ASYNCHRONOUS */
435
436                 /* if StartTLS is requested, only attempt it if the URL
437                  * is not "ldaps://"; this may occur not only in case
438                  * of misconfiguration, but also when used in the chain 
439                  * overlay, where the "uri" can be parsed out of a referral */
440                 switch ( rc ) {
441                 case LDAP_SUCCESS:
442                         *is_tls = 1;
443                         break;
444
445                 case LDAP_SERVER_DOWN:
446                         break;
447
448                 default:
449                         if ( LDAP_BACK_TLS_CRITICAL( &dummy ) ) {
450                                 *text = "could not start TLS";
451                                 break;
452                         }
453
454                         /* in case Start TLS is not critical */
455                         *is_tls = 0;
456                         rc = LDAP_SUCCESS;
457                         break;
458                 }
459
460         } else {
461                 *is_tls = 0;
462         }
463
464         return rc;
465 }
466 #endif /* HAVE_TLS */
467
468 static int
469 ldap_back_prepare_conn( ldapconn_t **lcp, Operation *op, SlapReply *rs, ldap_back_send_t sendok )
470 {
471         ldapinfo_t      *li = (ldapinfo_t *)op->o_bd->be_private;
472         int             vers = op->o_protocol;
473         LDAP            *ld = NULL;
474 #ifdef HAVE_TLS
475         int             is_tls = op->o_conn->c_is_tls;
476 #endif /* HAVE_TLS */
477
478         assert( lcp != NULL );
479
480         rs->sr_err = ldap_initialize( &ld, li->li_uri );
481         if ( rs->sr_err != LDAP_SUCCESS ) {
482                 goto error_return;
483         }
484
485         /* Set LDAP version. This will always succeed: If the client
486          * bound with a particular version, then so can we.
487          */
488         if ( vers == 0 ) {
489                 /* assume it's an internal op; set to LDAPv3 */
490                 vers = LDAP_VERSION3;
491         }
492         ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, (const void *)&vers );
493
494         /* automatically chase referrals ("chase-referrals [{yes|no}]" statement) */
495         ldap_set_option( ld, LDAP_OPT_REFERRALS,
496                 LDAP_BACK_CHASE_REFERRALS( li ) ? LDAP_OPT_ON : LDAP_OPT_OFF );
497
498         if ( li->li_network_timeout > 0 ) {
499                 struct timeval          tv;
500
501                 tv.tv_sec = li->li_network_timeout;
502                 tv.tv_usec = 0;
503                 ldap_set_option( ld, LDAP_OPT_NETWORK_TIMEOUT, (const void *)&tv );
504         }
505
506 #ifdef HAVE_TLS
507         rs->sr_err = ldap_back_start_tls( ld, op->o_protocol, &is_tls,
508                         li->li_uri, li->li_flags, li->li_nretries, &rs->sr_text );
509         if ( rs->sr_err != LDAP_SUCCESS ) {
510                 ldap_unbind_ext( ld, NULL, NULL );
511                 goto error_return;
512         }
513 #endif /* HAVE_TLS */
514
515         if ( *lcp == NULL ) {
516                 *lcp = (ldapconn_t *)ch_calloc( 1, sizeof( ldapconn_t ) );
517                 (*lcp)->lc_flags= li->li_flags;
518         }
519         (*lcp)->lc_ld = ld;
520         (*lcp)->lc_refcnt = 1;
521         (*lcp)->lc_binding = 1;
522 #ifdef HAVE_TLS
523         if ( is_tls ) {
524                 LDAP_BACK_CONN_ISTLS_SET( *lcp );
525         } else {
526                 LDAP_BACK_CONN_ISTLS_CLEAR( *lcp );
527         }
528 #endif /* HAVE_TLS */
529
530 error_return:;
531         if ( rs->sr_err != LDAP_SUCCESS ) {
532                 rs->sr_err = slap_map_api2result( rs );
533                 if ( sendok & LDAP_BACK_SENDERR ) {
534                         if ( rs->sr_text == NULL ) {
535                                 rs->sr_text = "ldap_initialize() failed";
536                         }
537                         send_ldap_result( op, rs );
538                         rs->sr_text = NULL;
539                 }
540
541         } else {
542                 if ( li->li_conn_ttl > 0 ) {
543                         (*lcp)->lc_create_time = op->o_time;
544                 }
545         }
546
547         return rs->sr_err;
548 }
549
550 ldapconn_t *
551 ldap_back_getconn( Operation *op, SlapReply *rs, ldap_back_send_t sendok )
552 {
553         ldapinfo_t      *li = (ldapinfo_t *)op->o_bd->be_private;
554         ldapconn_t      *lc = NULL,
555                         lc_curr = { 0 };
556         int             refcnt = 1, binding = 1;
557
558         /* Internal searches are privileged and shared. So is root. */
559         if ( op->o_do_not_cache || be_isroot( op ) ) {
560                 LDAP_BACK_CONN_ISPRIV_SET( &lc_curr );
561                 lc_curr.lc_local_ndn = op->o_bd->be_rootndn;
562                 lc_curr.lc_conn = LDAP_BACK_PCONN_SET( op );
563
564         } else {
565                 lc_curr.lc_local_ndn = op->o_ndn;
566                 /* Explicit binds must not be shared */
567                 if ( op->o_tag == LDAP_REQ_BIND || SLAP_IS_AUTHZ_BACKEND( op ) ) {
568                         lc_curr.lc_conn = op->o_conn;
569         
570                 } else {
571                         lc_curr.lc_conn = LDAP_BACK_PCONN_SET( op );
572                 }
573         }
574
575         /* Explicit Bind requests always get their own conn */
576         if ( !( sendok & LDAP_BACK_BINDING ) ) {
577                 /* Searches for a ldapconn in the avl tree */
578 retry_lock:
579                 ldap_pvt_thread_mutex_lock( &li->li_conninfo.lai_mutex );
580
581                 lc = (ldapconn_t *)avl_find( li->li_conninfo.lai_tree, 
582                                 (caddr_t)&lc_curr, ldap_back_conndn_cmp );
583                 if ( lc != NULL ) {
584                         /* Don't reuse connections while they're still binding */
585                         if ( LDAP_BACK_CONN_BINDING( lc ) ) {
586                                 ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
587                                 ldap_pvt_thread_yield();
588                                 goto retry_lock;
589                         }
590                         refcnt = ++lc->lc_refcnt;
591                         binding = ++lc->lc_binding;
592                 }
593                 ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
594         }
595
596         /* Looks like we didn't get a bind. Open a new session... */
597         if ( lc == NULL ) {
598                 if ( ldap_back_prepare_conn( &lc, op, rs, sendok ) != LDAP_SUCCESS ) {
599                         return NULL;
600                 }
601                 if ( sendok & LDAP_BACK_BINDING ) {
602                         LDAP_BACK_CONN_BINDING_SET( lc );
603                 }
604                 lc->lc_conn = lc_curr.lc_conn;
605                 ber_dupbv( &lc->lc_local_ndn, &lc_curr.lc_local_ndn );
606
607                 if ( LDAP_BACK_CONN_ISPRIV( &lc_curr ) ) {
608                         ber_dupbv( &lc->lc_cred, &li->li_acl_passwd );
609                         ber_dupbv( &lc->lc_bound_ndn, &li->li_acl_authcDN );
610                         LDAP_BACK_CONN_ISPRIV_SET( lc );
611
612                 } else {
613                         BER_BVZERO( &lc->lc_cred );
614                         BER_BVZERO( &lc->lc_bound_ndn );
615 #if 0
616                         /* FIXME: if we set lc_bound_ndn = o_ndn
617                          * we end up with a bind with DN but no password! */
618                         if ( !BER_BVISEMPTY( &op->o_ndn )
619                                 && SLAP_IS_AUTHZ_BACKEND( op ) )
620                         {
621                                 ber_dupbv( &lc->lc_bound_ndn, &op->o_ndn );
622                         }
623 #endif
624                 }
625
626 #ifdef HAVE_TLS
627                 /* if start TLS failed but it was not mandatory,
628                  * check if the non-TLS connection was already
629                  * in cache; in case, destroy the newly created
630                  * connection and use the existing one */
631                 if ( lc->lc_conn == LDAP_BACK_PCONN_TLS
632                                 && !ldap_tls_inplace( lc->lc_ld ) )
633                 {
634                         ldapconn_t *tmplc;
635                         
636                         lc_curr.lc_conn = LDAP_BACK_PCONN;
637                         ldap_pvt_thread_mutex_lock( &li->li_conninfo.lai_mutex );
638                         tmplc = (ldapconn_t *)avl_find( li->li_conninfo.lai_tree, 
639                                         (caddr_t)&lc_curr, ldap_back_conndn_cmp );
640                         if ( tmplc != NULL ) {
641                                 refcnt = ++tmplc->lc_refcnt;
642                                 binding = ++tmplc->lc_binding;
643                                 ldap_back_conn_free( lc );
644                                 lc = tmplc;
645                         }
646                         ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
647
648                         if ( tmplc != NULL ) {
649                                 goto done;
650                         }
651                 }
652 #endif /* HAVE_TLS */
653
654                 LDAP_BACK_CONN_ISBOUND_CLEAR( lc );
655
656                 /* Inserts the newly created ldapconn in the avl tree */
657                 ldap_pvt_thread_mutex_lock( &li->li_conninfo.lai_mutex );
658
659                 assert( lc->lc_refcnt == 1 );
660                 assert( lc->lc_binding == 1 );
661                 rs->sr_err = avl_insert( &li->li_conninfo.lai_tree, (caddr_t)lc,
662                         ldap_back_conndn_cmp, ldap_back_conndn_dup );
663
664 #if PRINT_CONNTREE > 0
665                 myprint( li->li_conninfo.lai_tree );
666 #endif /* PRINT_CONNTREE */
667         
668                 ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
669
670                 Debug( LDAP_DEBUG_TRACE,
671                         "=>ldap_back_getconn: conn %p inserted refcnt=%u binding=%u\n",
672                         (void *)lc, refcnt, binding );
673         
674                 /* Err could be -1 in case a duplicate ldapconn is inserted */
675                 switch ( rs->sr_err ) {
676                 case 0:
677                         break;
678
679                 case -1:
680                         if ( !( sendok & LDAP_BACK_BINDING ) ) {
681                                 /* duplicate: free and try to get the newly created one */
682                                 goto retry_lock;
683                         }
684                         /* taint connection, so that it'll be freed when released */
685                         ldap_pvt_thread_mutex_lock( &li->li_conninfo.lai_mutex );
686                         (void *)avl_delete( &li->li_conninfo.lai_tree, (caddr_t)lc,
687                                         ldap_back_conndnlc_cmp );
688                         ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
689                         LDAP_BACK_CONN_TAINTED_SET( lc );
690                         break;
691
692                 default:
693                         ldap_back_conn_free( lc );
694                         rs->sr_err = LDAP_OTHER;
695                         rs->sr_text = "proxy bind collision";
696                         if ( op->o_conn && ( sendok & LDAP_BACK_SENDERR ) ) {
697                                 send_ldap_result( op, rs );
698                                 rs->sr_text = NULL;
699                         }
700                         return NULL;
701                 }
702
703         } else {
704                 char    buf[ SLAP_TEXT_BUFLEN ];
705                 int     expiring = 0;
706
707                 if ( ( li->li_idle_timeout != 0 && op->o_time > lc->lc_time + li->li_idle_timeout )
708                         || ( li->li_conn_ttl != 0 && op->o_time > lc->lc_create_time + li->li_conn_ttl ) )
709                 {
710                         expiring = 1;
711
712                         /* let it be used, but taint/delete it so that 
713                          * no-one else can look it up any further */
714                         ldap_pvt_thread_mutex_lock( &li->li_conninfo.lai_mutex );
715                         (void *)avl_delete( &li->li_conninfo.lai_tree, (caddr_t)lc,
716                                         ldap_back_conndnlc_cmp );
717                         ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
718                         LDAP_BACK_CONN_TAINTED_SET( lc );
719                 }
720
721                 if ( LogTest( LDAP_DEBUG_TRACE ) ) {
722                         snprintf( buf, sizeof( buf ),
723                                 "conn %p fetched refcnt=%u binding=%u%s",
724                                 (void *)lc, refcnt, binding, expiring ? " expiring" : "" );
725                         Debug( LDAP_DEBUG_TRACE,
726                                 "=>ldap_back_getconn: %s.\n", buf, 0, 0 );
727                 }
728         }
729
730         if ( li->li_idle_timeout && lc ) {
731                 lc->lc_time = op->o_time;
732         }
733
734 done:;
735         return lc;
736 }
737
738 void
739 ldap_back_release_conn_lock(
740         Operation               *op,
741         SlapReply               *rs,
742         ldapconn_t              *lc,
743         int                     dolock )
744 {
745         ldapinfo_t      *li = (ldapinfo_t *)op->o_bd->be_private;
746
747         if ( dolock ) {
748                 ldap_pvt_thread_mutex_lock( &li->li_conninfo.lai_mutex );
749         }
750         assert( lc->lc_refcnt > 0 );
751         LDAP_BACK_CONN_BINDING_CLEAR( lc );
752         if ( --lc->lc_refcnt == 0 || LDAP_BACK_CONN_TAINTED( lc ) ) {
753                 ldap_back_freeconn( op, lc, 0 );
754         }
755         if ( dolock ) {
756                 ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
757         }
758 }
759
760 /*
761  * ldap_back_dobind
762  *
763  * Note: as the check for the value of lc->lc_bound was already here, I removed
764  * it from all the callers, and I made the function return the flag, so
765  * it can be used to simplify the check.
766  *
767  * Note: dolock indicates whether li->li_conninfo.lai_mutex must be locked or not
768  */
769 static int
770 ldap_back_dobind_int(
771         ldapconn_t              *lc,
772         Operation               *op,
773         SlapReply               *rs,
774         ldap_back_send_t        sendok,
775         int                     retries,
776         int                     dolock )
777 {       
778         ldapinfo_t      *li = (ldapinfo_t *)op->o_bd->be_private;
779
780         int             rc, binding = 0;
781         ber_int_t       msgid;
782
783         assert( retries >= 0 );
784
785 retry_lock:;
786         if ( dolock ) {
787                 ldap_pvt_thread_mutex_lock( &li->li_conninfo.lai_mutex );
788         }
789
790         if ( binding == 0 ) {
791                 /* check if already bound */
792                 rc = LDAP_BACK_CONN_ISBOUND( lc );
793                 if ( rc ) {
794                         lc->lc_binding--;
795                         if ( dolock ) {
796                                 ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
797                         }
798                         return rc;
799                 }
800
801                 if ( LDAP_BACK_CONN_BINDING( lc ) ) {
802                         /* if someone else is about to bind it, give up and retry */
803                         if ( dolock ) {
804                                 ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
805                         }
806                         ldap_pvt_thread_yield();
807                         goto retry_lock;
808
809                 } else {
810                         /* otherwise this thread will bind it */
811                         LDAP_BACK_CONN_BINDING_SET( lc );
812                         binding = 1;
813                 }
814         }
815
816         /* wait for pending operations to finish */
817         /* FIXME: may become a bottleneck! */
818         if ( lc->lc_refcnt != lc->lc_binding ) {
819                 if ( dolock ) {
820                         ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
821                 }
822                 ldap_pvt_thread_yield();
823                 goto retry_lock;
824         }
825
826         if ( dolock ) {
827                 ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
828         }
829
830 #if 0
831         while ( lc->lc_refcnt > 1 ) {
832                 ldap_pvt_thread_yield();
833                 rc = LDAP_BACK_CONN_ISBOUND( lc );
834                 if ( rc ) {
835                         return rc;
836                 }
837         }
838
839         if ( dolock ) {
840                 ldap_pvt_thread_mutex_lock( &li->li_conninfo.lai_mutex );
841         }
842         LDAP_BACK_CONN_BINDING_SET( lc );
843         if ( dolock ) {
844                 ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
845         }
846 #endif
847
848         /*
849          * FIXME: we need to let clients use proxyAuthz
850          * otherwise we cannot do symmetric pools of servers;
851          * we have to live with the fact that a user can
852          * authorize itself as any ID that is allowed
853          * by the authzTo directive of the "proxyauthzdn".
854          */
855         /*
856          * NOTE: current Proxy Authorization specification
857          * and implementation do not allow proxy authorization
858          * control to be provided with Bind requests
859          */
860         /*
861          * if no bind took place yet, but the connection is bound
862          * and the "idassert-authcDN" (or other ID) is set, 
863          * then bind as the asserting identity and explicitly 
864          * add the proxyAuthz control to every operation with the
865          * dn bound to the connection as control value.
866          * This is done also if this is the authrizing backend,
867          * but the "override" flag is given to idassert.
868          * It allows to use SASL bind and yet proxyAuthz users
869          */
870         if ( op->o_conn != NULL &&
871                         !op->o_do_not_cache &&
872                         ( BER_BVISNULL( &lc->lc_bound_ndn ) ||
873                           ( li->li_idassert_flags & LDAP_BACK_AUTH_OVERRIDE ) ) )
874         {
875                 (void)ldap_back_proxy_authz_bind( lc, op, rs, sendok );
876                 goto done;
877         }
878
879 #ifdef HAVE_CYRUS_SASL
880         if ( LDAP_BACK_CONN_ISPRIV( lc )
881                 && li->li_acl_authmethod == LDAP_AUTH_SASL )
882         {
883                 void            *defaults = NULL;
884
885                 if ( li->li_acl_secprops != NULL ) {
886                         rc = ldap_set_option( lc->lc_ld,
887                                 LDAP_OPT_X_SASL_SECPROPS, li->li_acl_secprops);
888
889                         if ( rc != LDAP_OPT_SUCCESS ) {
890                                 Debug( LDAP_DEBUG_ANY, "Error: ldap_set_option "
891                                         "(%s,SECPROPS,\"%s\") failed!\n",
892                                         li->li_uri, li->li_acl_secprops, 0 );
893                                 goto done;
894                         }
895                 }
896
897                 defaults = lutil_sasl_defaults( lc->lc_ld,
898                                 li->li_acl_sasl_mech.bv_val,
899                                 li->li_acl_sasl_realm.bv_val,
900                                 li->li_acl_authcID.bv_val,
901                                 li->li_acl_passwd.bv_val,
902                                 NULL );
903
904                 rs->sr_err = ldap_sasl_interactive_bind_s( lc->lc_ld,
905                                 li->li_acl_authcDN.bv_val,
906                                 li->li_acl_sasl_mech.bv_val, NULL, NULL,
907                                 LDAP_SASL_QUIET, lutil_sasl_interact,
908                                 defaults );
909
910                 lutil_sasl_freedefs( defaults );
911
912                 rs->sr_err = slap_map_api2result( rs );
913                 if ( rs->sr_err != LDAP_SUCCESS ) {
914                         LDAP_BACK_CONN_ISBOUND_CLEAR( lc );
915                         send_ldap_result( op, rs );
916
917                 } else {
918                         LDAP_BACK_CONN_ISBOUND_SET( lc );
919                 }
920                 goto done;
921         }
922 #endif /* HAVE_CYRUS_SASL */
923
924 retry:;
925         rs->sr_err = ldap_sasl_bind( lc->lc_ld,
926                         lc->lc_bound_ndn.bv_val,
927                         LDAP_SASL_SIMPLE, &lc->lc_cred,
928                         NULL, NULL, &msgid );
929
930         if ( rs->sr_err == LDAP_SERVER_DOWN ) {
931                 if ( retries != LDAP_BACK_RETRY_NEVER ) {
932                         if ( dolock ) {
933                                 ldap_pvt_thread_mutex_lock( &li->li_conninfo.lai_mutex );
934                         }
935
936                         assert( lc->lc_refcnt > 0 );
937                         if ( lc->lc_refcnt == 1 ) {
938                                 ldap_unbind_ext( lc->lc_ld, NULL, NULL );
939                                 lc->lc_ld = NULL;
940
941                                 /* lc here must be the regular lc, reset and ready for init */
942                                 rs->sr_err = ldap_back_prepare_conn( &lc, op, rs, sendok );
943                                 if ( rs->sr_err != LDAP_SUCCESS ) {
944                                         lc->lc_binding--;
945                                         lc->lc_refcnt = 0;
946                                 }
947                         }
948
949                         if ( dolock ) {
950                                 ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
951                         }
952
953                         if ( rs->sr_err == LDAP_SUCCESS ) {
954                                 if ( retries > 0 ) {
955                                         retries--;
956                                 }
957                                 goto retry;
958                         }
959
960                 } else {
961                         if ( dolock ) {
962                                 ldap_pvt_thread_mutex_lock( &li->li_conninfo.lai_mutex );
963                         }
964                         lc->lc_binding--;
965                         if ( dolock ) {
966                                 ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
967                         }
968                 }
969
970                 ldap_back_freeconn( op, lc, dolock );
971                 rs->sr_err = slap_map_api2result( rs );
972
973                 return 0;
974         }
975
976         rc = ldap_back_op_result( lc, op, rs, msgid, 0, sendok );
977         if ( rc == LDAP_SUCCESS ) {
978                 LDAP_BACK_CONN_ISBOUND_SET( lc );
979         }
980
981 done:;
982         lc->lc_binding--;
983         LDAP_BACK_CONN_BINDING_CLEAR( lc );
984         rc = LDAP_BACK_CONN_ISBOUND( lc );
985         if ( !rc ) {
986                 ldap_back_release_conn_lock( op, rs, lc, dolock );
987         }
988
989         return rc;
990 }
991
992 int
993 ldap_back_dobind( ldapconn_t *lc, Operation *op, SlapReply *rs, ldap_back_send_t sendok )
994 {
995         ldapinfo_t      *li = (ldapinfo_t *)op->o_bd->be_private;
996
997         return ldap_back_dobind_int( lc, op, rs, sendok, li->li_nretries, 1 );
998 }
999
1000 /*
1001  * ldap_back_default_rebind
1002  *
1003  * This is a callback used for chasing referrals using the same
1004  * credentials as the original user on this session.
1005  */
1006 static int 
1007 ldap_back_default_rebind( LDAP *ld, LDAP_CONST char *url, ber_tag_t request,
1008         ber_int_t msgid, void *params )
1009 {
1010         ldapconn_t      *lc = (ldapconn_t *)params;
1011
1012 #ifdef HAVE_TLS
1013         /* ... otherwise we couldn't get here */
1014         assert( lc != NULL );
1015
1016         if ( !ldap_tls_inplace( ld ) ) {
1017                 int             is_tls = LDAP_BACK_CONN_ISTLS( lc ),
1018                                 rc;
1019                 const char      *text = NULL;
1020
1021                 rc = ldap_back_start_tls( ld, 0, &is_tls, url, lc->lc_flags,
1022                         LDAP_BACK_RETRY_DEFAULT, &text );
1023                 if ( rc != LDAP_SUCCESS ) {
1024                         return rc;
1025                 }
1026         }
1027 #endif /* HAVE_TLS */
1028
1029         /* FIXME: add checks on the URL/identity? */
1030
1031         return ldap_sasl_bind_s( ld, lc->lc_bound_ndn.bv_val,
1032                         LDAP_SASL_SIMPLE, &lc->lc_cred, NULL, NULL, NULL );
1033 }
1034
1035 int
1036 ldap_back_op_result(
1037                 ldapconn_t              *lc,
1038                 Operation               *op,
1039                 SlapReply               *rs,
1040                 ber_int_t               msgid,
1041                 time_t                  timeout,
1042                 ldap_back_send_t        sendok )
1043 {
1044         char            *match = NULL;
1045         LDAPMessage     *res = NULL;
1046         char            *text = NULL;
1047
1048 #define ERR_OK(err) ((err) == LDAP_SUCCESS || (err) == LDAP_COMPARE_FALSE || (err) == LDAP_COMPARE_TRUE)
1049
1050         rs->sr_text = NULL;
1051         rs->sr_matched = NULL;
1052
1053         /* if the error recorded in the reply corresponds
1054          * to a successful state, get the error from the
1055          * remote server response */
1056         if ( ERR_OK( rs->sr_err ) ) {
1057                 int             rc;
1058                 struct timeval  tv;
1059
1060                 if ( timeout ) {
1061                         tv.tv_sec = timeout;
1062                         tv.tv_usec = 0;
1063
1064                 } else {
1065                         LDAP_BACK_TV_SET( &tv );
1066                 }
1067
1068 retry:;
1069                 /* if result parsing fails, note the failure reason */
1070                 rc = ldap_result( lc->lc_ld, msgid, LDAP_MSG_ALL, &tv, &res );
1071                 switch ( rc ) {
1072                 case 0:
1073                         if ( timeout ) {
1074                                 (void)ldap_abandon_ext( lc->lc_ld, msgid, NULL, NULL );
1075                                 rs->sr_err = op->o_protocol >= LDAP_VERSION3 ?
1076                                         LDAP_ADMINLIMIT_EXCEEDED : LDAP_OPERATIONS_ERROR;
1077                                 rs->sr_text = "Operation timed out";
1078                                 break;
1079                         }
1080
1081                         LDAP_BACK_TV_SET( &tv );
1082                         ldap_pvt_thread_yield();
1083                         goto retry;
1084
1085                 case -1:
1086                         ldap_get_option( lc->lc_ld, LDAP_OPT_ERROR_NUMBER,
1087                                         &rs->sr_err );
1088                         break;
1089
1090
1091                 /* otherwise get the result; if it is not
1092                  * LDAP_SUCCESS, record it in the reply
1093                  * structure (this includes 
1094                  * LDAP_COMPARE_{TRUE|FALSE}) */
1095                 default:
1096                         rc = ldap_parse_result( lc->lc_ld, res, &rs->sr_err,
1097                                         &match, &text, NULL, NULL, 1 );
1098                         rs->sr_text = text;
1099                         if ( rc != LDAP_SUCCESS ) {
1100                                 rs->sr_err = rc;
1101                         }
1102                 }
1103         }
1104
1105         /* if the error in the reply structure is not
1106          * LDAP_SUCCESS, try to map it from client 
1107          * to server error */
1108         if ( !ERR_OK( rs->sr_err ) ) {
1109                 rs->sr_err = slap_map_api2result( rs );
1110
1111                 /* internal ops ( op->o_conn == NULL ) 
1112                  * must not reply to client */
1113                 if ( op->o_conn && !op->o_do_not_cache && match ) {
1114
1115                         /* record the (massaged) matched
1116                          * DN into the reply structure */
1117                         rs->sr_matched = match;
1118                 }
1119         }
1120         if ( op->o_conn &&
1121                         ( ( sendok & LDAP_BACK_SENDOK ) 
1122                           || ( ( sendok & LDAP_BACK_SENDERR ) && rs->sr_err != LDAP_SUCCESS ) ) )
1123         {
1124                 send_ldap_result( op, rs );
1125         }
1126         if ( match ) {
1127                 if ( rs->sr_matched != match ) {
1128                         free( (char *)rs->sr_matched );
1129                 }
1130                 rs->sr_matched = NULL;
1131                 ldap_memfree( match );
1132         }
1133         if ( text ) {
1134                 ldap_memfree( text );
1135         }
1136         rs->sr_text = NULL;
1137         return( ERR_OK( rs->sr_err ) ? LDAP_SUCCESS : rs->sr_err );
1138 }
1139
1140 /* return true if bound, false if failed */
1141 int
1142 ldap_back_retry( ldapconn_t **lcp, Operation *op, SlapReply *rs, ldap_back_send_t sendok )
1143 {
1144         int             rc = 0;
1145         ldapinfo_t      *li = (ldapinfo_t *)op->o_bd->be_private;
1146
1147         assert( lcp != NULL );
1148         assert( *lcp != NULL );
1149
1150         ldap_pvt_thread_mutex_lock( &li->li_conninfo.lai_mutex );
1151
1152         if ( (*lcp)->lc_refcnt == 1 ) {
1153                 Debug( LDAP_DEBUG_ANY,
1154                         "%s ldap_back_retry: retrying URI=\"%s\" DN=\"%s\"\n",
1155                         op->o_log_prefix, li->li_uri,
1156                         BER_BVISNULL( &(*lcp)->lc_bound_ndn ) ?
1157                                 "" : (*lcp)->lc_bound_ndn.bv_val );
1158
1159                 ldap_unbind_ext( (*lcp)->lc_ld, NULL, NULL );
1160                 (*lcp)->lc_ld = NULL;
1161                 LDAP_BACK_CONN_ISBOUND_CLEAR( (*lcp) );
1162
1163                 /* lc here must be the regular lc, reset and ready for init */
1164                 rc = ldap_back_prepare_conn( lcp, op, rs, sendok );
1165                 if ( rc != LDAP_SUCCESS ) {
1166                         rc = 0;
1167                         *lcp = NULL;
1168
1169                 } else {
1170                         rc = ldap_back_dobind_int( *lcp, op, rs, sendok, 0, 0 );
1171                         if ( rc == 0 ) {
1172                                 *lcp = NULL;
1173                         }
1174                 }
1175
1176         } else {
1177                 Debug( LDAP_DEBUG_TRACE,
1178                         "ldap_back_retry: conn %p refcnt=%u unable to retry.\n",
1179                         (void *)(*lcp), (*lcp)->lc_refcnt, 0 );
1180
1181                 ldap_back_release_conn_lock( op, rs, *lcp, 0 );
1182                 *lcp = NULL;
1183
1184                 if ( sendok ) {
1185                         rs->sr_err = LDAP_UNAVAILABLE;
1186                         rs->sr_text = "unable to retry";
1187                         send_ldap_result( op, rs );
1188                 }
1189         }
1190
1191         ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
1192
1193         return rc;
1194 }
1195
1196 static int
1197 ldap_back_proxy_authz_bind( ldapconn_t *lc, Operation *op, SlapReply *rs, ldap_back_send_t sendok )
1198 {
1199         ldapinfo_t      *li = (ldapinfo_t *)op->o_bd->be_private;
1200         struct berval   binddn = slap_empty_bv;
1201         struct berval   bindcred = slap_empty_bv;
1202         struct berval   ndn;
1203         int             dobind = 0;
1204         int             msgid;
1205         int             rc;
1206
1207         if ( !BER_BVISNULL( &op->o_conn->c_ndn ) ) {
1208                 ndn = op->o_conn->c_ndn;
1209
1210         } else {
1211                 ndn = op->o_ndn;
1212         }
1213
1214         /*
1215          * FIXME: we need to let clients use proxyAuthz
1216          * otherwise we cannot do symmetric pools of servers;
1217          * we have to live with the fact that a user can
1218          * authorize itself as any ID that is allowed
1219          * by the authzTo directive of the "proxyauthzdn".
1220          */
1221         /*
1222          * NOTE: current Proxy Authorization specification
1223          * and implementation do not allow proxy authorization
1224          * control to be provided with Bind requests
1225          */
1226         /*
1227          * if no bind took place yet, but the connection is bound
1228          * and the "proxyauthzdn" is set, then bind as 
1229          * "proxyauthzdn" and explicitly add the proxyAuthz 
1230          * control to every operation with the dn bound 
1231          * to the connection as control value.
1232          */
1233
1234         /* bind as proxyauthzdn only if no idassert mode
1235          * is requested, or if the client's identity
1236          * is authorized */
1237         switch ( li->li_idassert_mode ) {
1238         case LDAP_BACK_IDASSERT_LEGACY:
1239                 if ( !BER_BVISNULL( &ndn ) && !BER_BVISEMPTY( &ndn ) ) {
1240                         if ( !BER_BVISNULL( &li->li_idassert_authcDN ) && !BER_BVISEMPTY( &li->li_idassert_authcDN ) )
1241                         {
1242                                 binddn = li->li_idassert_authcDN;
1243                                 bindcred = li->li_idassert_passwd;
1244                                 dobind = 1;
1245                         }
1246                 }
1247                 break;
1248
1249         default:
1250                 /* NOTE: rootdn can always idassert */
1251                 if ( BER_BVISNULL( &ndn ) && li->li_idassert_authz == NULL ) {
1252                         if ( li->li_idassert_flags & LDAP_BACK_AUTH_PRESCRIPTIVE ) {
1253                                 rs->sr_err = LDAP_INAPPROPRIATE_AUTH;
1254                                 if ( sendok & LDAP_BACK_SENDERR ) {
1255                                         send_ldap_result( op, rs );
1256                                 }
1257                                 LDAP_BACK_CONN_ISBOUND_CLEAR( lc );
1258
1259                         } else {
1260                                 rs->sr_err = LDAP_SUCCESS;
1261                                 binddn = slap_empty_bv;
1262                                 bindcred = slap_empty_bv;
1263                                 break;
1264                         }
1265
1266                         goto done;
1267
1268                 } else if ( li->li_idassert_authz && !be_isroot( op ) ) {
1269                         struct berval authcDN;
1270
1271                         if ( BER_BVISNULL( &ndn ) ) {
1272                                 authcDN = slap_empty_bv;
1273
1274                         } else {
1275                                 authcDN = ndn;
1276                         }       
1277                         rs->sr_err = slap_sasl_matches( op, li->li_idassert_authz,
1278                                         &authcDN, &authcDN );
1279                         if ( rs->sr_err != LDAP_SUCCESS ) {
1280                                 if ( li->li_idassert_flags & LDAP_BACK_AUTH_PRESCRIPTIVE ) {
1281                                         if ( sendok & LDAP_BACK_SENDERR ) {
1282                                                 send_ldap_result( op, rs );
1283                                         }
1284                                         LDAP_BACK_CONN_ISBOUND_CLEAR( lc );
1285
1286                                 } else {
1287                                         rs->sr_err = LDAP_SUCCESS;
1288                                         binddn = slap_empty_bv;
1289                                         bindcred = slap_empty_bv;
1290                                         break;
1291                                 }
1292
1293                                 goto done;
1294                         }
1295                 }
1296
1297                 binddn = li->li_idassert_authcDN;
1298                 bindcred = li->li_idassert_passwd;
1299                 dobind = 1;
1300                 break;
1301         }
1302
1303         if ( dobind && li->li_idassert_authmethod == LDAP_AUTH_SASL ) {
1304 #ifdef HAVE_CYRUS_SASL
1305                 void            *defaults = NULL;
1306                 struct berval   authzID = BER_BVNULL;
1307                 int             freeauthz = 0;
1308
1309                 /* if SASL supports native authz, prepare for it */
1310                 if ( ( !op->o_do_not_cache || !op->o_is_auth_check ) &&
1311                                 ( li->li_idassert_flags & LDAP_BACK_AUTH_NATIVE_AUTHZ ) )
1312                 {
1313                         switch ( li->li_idassert_mode ) {
1314                         case LDAP_BACK_IDASSERT_OTHERID:
1315                         case LDAP_BACK_IDASSERT_OTHERDN:
1316                                 authzID = li->li_idassert_authzID;
1317                                 break;
1318
1319                         case LDAP_BACK_IDASSERT_ANONYMOUS:
1320                                 BER_BVSTR( &authzID, "dn:" );
1321                                 break;
1322
1323                         case LDAP_BACK_IDASSERT_SELF:
1324                                 if ( BER_BVISNULL( &ndn ) ) {
1325                                         /* connection is not authc'd, so don't idassert */
1326                                         BER_BVSTR( &authzID, "dn:" );
1327                                         break;
1328                                 }
1329                                 authzID.bv_len = STRLENOF( "dn:" ) + ndn.bv_len;
1330                                 authzID.bv_val = slap_sl_malloc( authzID.bv_len + 1, op->o_tmpmemctx );
1331                                 AC_MEMCPY( authzID.bv_val, "dn:", STRLENOF( "dn:" ) );
1332                                 AC_MEMCPY( authzID.bv_val + STRLENOF( "dn:" ),
1333                                                 ndn.bv_val, ndn.bv_len + 1 );
1334                                 freeauthz = 1;
1335                                 break;
1336
1337                         default:
1338                                 break;
1339                         }
1340                 }
1341
1342                 if ( li->li_idassert_secprops != NULL ) {
1343                         rs->sr_err = ldap_set_option( lc->lc_ld,
1344                                 LDAP_OPT_X_SASL_SECPROPS,
1345                                 (void *)li->li_idassert_secprops );
1346
1347                         if ( rs->sr_err != LDAP_OPT_SUCCESS ) {
1348                                 rs->sr_err = LDAP_OTHER;
1349                                 if ( sendok & LDAP_BACK_SENDERR ) {
1350                                         send_ldap_result( op, rs );
1351                                 }
1352                                 LDAP_BACK_CONN_ISBOUND_CLEAR( lc );
1353                                 goto done;
1354                         }
1355                 }
1356
1357                 defaults = lutil_sasl_defaults( lc->lc_ld,
1358                                 li->li_idassert_sasl_mech.bv_val,
1359                                 li->li_idassert_sasl_realm.bv_val,
1360                                 li->li_idassert_authcID.bv_val,
1361                                 li->li_idassert_passwd.bv_val,
1362                                 authzID.bv_val );
1363
1364                 rs->sr_err = ldap_sasl_interactive_bind_s( lc->lc_ld, binddn.bv_val,
1365                                 li->li_idassert_sasl_mech.bv_val, NULL, NULL,
1366                                 LDAP_SASL_QUIET, lutil_sasl_interact,
1367                                 defaults );
1368
1369                 rs->sr_err = slap_map_api2result( rs );
1370                 if ( rs->sr_err != LDAP_SUCCESS ) {
1371                         LDAP_BACK_CONN_ISBOUND_CLEAR( lc );
1372                         if ( sendok & LDAP_BACK_SENDERR ) {
1373                                 send_ldap_result( op, rs );
1374                         }
1375
1376                 } else {
1377                         LDAP_BACK_CONN_ISBOUND_SET( lc );
1378                 }
1379
1380                 lutil_sasl_freedefs( defaults );
1381                 if ( freeauthz ) {
1382                         slap_sl_free( authzID.bv_val, op->o_tmpmemctx );
1383                 }
1384
1385                 goto done;
1386 #endif /* HAVE_CYRUS_SASL */
1387         }
1388
1389         switch ( li->li_idassert_authmethod ) {
1390         case LDAP_AUTH_NONE:
1391                 LDAP_BACK_CONN_ISBOUND_SET( lc );
1392                 goto done;
1393
1394         case LDAP_AUTH_SIMPLE:
1395                 rs->sr_err = ldap_sasl_bind( lc->lc_ld,
1396                                 binddn.bv_val, LDAP_SASL_SIMPLE,
1397                                 &bindcred, NULL, NULL, &msgid );
1398                 break;
1399
1400         default:
1401                 /* unsupported! */
1402                 LDAP_BACK_CONN_ISBOUND_CLEAR( lc );
1403                 rs->sr_err = LDAP_AUTH_METHOD_NOT_SUPPORTED;
1404                 if ( sendok & LDAP_BACK_SENDERR ) {
1405                         send_ldap_result( op, rs );
1406                 }
1407                 goto done;
1408         }
1409
1410         rc = ldap_back_op_result( lc, op, rs, msgid, 0, sendok );
1411         if ( rc == LDAP_SUCCESS ) {
1412                 LDAP_BACK_CONN_ISBOUND_SET( lc );
1413         }
1414 done:;
1415         return LDAP_BACK_CONN_ISBOUND( lc );
1416 }
1417
1418 /*
1419  * ldap_back_proxy_authz_ctrl() prepends a proxyAuthz control
1420  * to existing server-side controls if required; if not,
1421  * the existing server-side controls are placed in *pctrls.
1422  * The caller, after using the controls in client API 
1423  * operations, if ( *pctrls != op->o_ctrls ), should
1424  * free( (*pctrls)[ 0 ] ) and free( *pctrls ).
1425  * The function returns success if the control could
1426  * be added if required, or if it did nothing; in the future,
1427  * it might return some error if it failed.
1428  * 
1429  * if no bind took place yet, but the connection is bound
1430  * and the "proxyauthzdn" is set, then bind as "proxyauthzdn" 
1431  * and explicitly add proxyAuthz the control to every operation
1432  * with the dn bound to the connection as control value.
1433  *
1434  * If no server-side controls are defined for the operation,
1435  * simply add the proxyAuthz control; otherwise, if the
1436  * proxyAuthz control is not already set, add it as
1437  * the first one
1438  *
1439  * FIXME: is controls order significant for security?
1440  * ANSWER: controls ordering and interoperability
1441  * must be indicated by the specs of each control; if none
1442  * is specified, the order is irrelevant.
1443  */
1444 int
1445 ldap_back_proxy_authz_ctrl(
1446                 ldapconn_t      *lc,
1447                 Operation       *op,
1448                 SlapReply       *rs,
1449                 LDAPControl     ***pctrls )
1450 {
1451         ldapinfo_t      *li = (ldapinfo_t *) op->o_bd->be_private;
1452         LDAPControl     **ctrls = NULL;
1453         int             i = 0,
1454                         mode;
1455         struct berval   assertedID,
1456                         ndn;
1457
1458         *pctrls = NULL;
1459
1460         rs->sr_err = LDAP_SUCCESS;
1461
1462         /* FIXME: SASL/EXTERNAL over ldapi:// doesn't honor the authcID,
1463          * but if it is not set this test fails.  We need a different
1464          * means to detect if idassert is enabled */
1465         if ( ( BER_BVISNULL( &li->li_idassert_authcID ) || BER_BVISEMPTY( &li->li_idassert_authcID ) )
1466                         && ( BER_BVISNULL( &li->li_idassert_authcDN ) || BER_BVISEMPTY( &li->li_idassert_authcDN ) ) )
1467         {
1468                 goto done;
1469         }
1470
1471         if ( !op->o_conn || op->o_do_not_cache || be_isroot( op ) ) {
1472                 goto done;
1473         }
1474
1475         if ( !BER_BVISNULL( &op->o_conn->c_ndn ) ) {
1476                 ndn = op->o_conn->c_ndn;
1477
1478         } else {
1479                 ndn = op->o_ndn;
1480         }
1481
1482         if ( li->li_idassert_mode == LDAP_BACK_IDASSERT_LEGACY ) {
1483                 if ( op->o_proxy_authz ) {
1484                         /*
1485                          * FIXME: we do not want to perform proxyAuthz
1486                          * on behalf of the client, because this would
1487                          * be performed with "proxyauthzdn" privileges.
1488                          *
1489                          * This might actually be too strict, since
1490                          * the "proxyauthzdn" authzTo, and each entry's
1491                          * authzFrom attributes may be crafted
1492                          * to avoid unwanted proxyAuthz to take place.
1493                          */
1494 #if 0
1495                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1496                         rs->sr_text = "proxyAuthz not allowed within namingContext";
1497 #endif
1498                         goto done;
1499                 }
1500
1501                 if ( !BER_BVISNULL( &lc->lc_bound_ndn ) ) {
1502                         goto done;
1503                 }
1504
1505                 if ( BER_BVISNULL( &ndn ) ) {
1506                         goto done;
1507                 }
1508
1509                 if ( BER_BVISNULL( &li->li_idassert_authcDN ) ) {
1510                         goto done;
1511                 }
1512
1513         } else if ( li->li_idassert_authmethod == LDAP_AUTH_SASL ) {
1514                 if ( ( li->li_idassert_flags & LDAP_BACK_AUTH_NATIVE_AUTHZ )
1515                                 /* && ( !BER_BVISNULL( &ndn )
1516                                         || LDAP_BACK_CONN_ISBOUND( lc ) ) */ )
1517                 {
1518                         /* already asserted in SASL via native authz */
1519                         /* NOTE: the test on lc->lc_bound is used to trap
1520                          * native authorization of anonymous users,
1521                          * since in that case ndn is NULL */
1522                         goto done;
1523                 }
1524
1525         } else if ( li->li_idassert_authz && !be_isroot( op ) ) {
1526                 int             rc;
1527                 struct berval authcDN;
1528
1529                 if ( BER_BVISNULL( &ndn ) ) {
1530                         authcDN = slap_empty_bv;
1531                 } else {
1532                         authcDN = ndn;
1533                 }
1534                 rc = slap_sasl_matches( op, li->li_idassert_authz,
1535                                 &authcDN, & authcDN );
1536                 if ( rc != LDAP_SUCCESS ) {
1537                         if ( li->li_idassert_flags & LDAP_BACK_AUTH_PRESCRIPTIVE )
1538                         {
1539                                 /* ndn is not authorized
1540                                  * to use idassert */
1541                                 rs->sr_err = rc;
1542                         }
1543                         goto done;
1544                 }
1545         }
1546
1547         if ( op->o_proxy_authz ) {
1548                 /*
1549                  * FIXME: we can:
1550                  * 1) ignore the already set proxyAuthz control
1551                  * 2) leave it in place, and don't set ours
1552                  * 3) add both
1553                  * 4) reject the operation
1554                  *
1555                  * option (4) is very drastic
1556                  * option (3) will make the remote server reject
1557                  * the operation, thus being equivalent to (4)
1558                  * option (2) will likely break the idassert
1559                  * assumptions, so we cannot accept it;
1560                  * option (1) means that we are contradicting
1561                  * the client's reques.
1562                  *
1563                  * I think (4) is the only correct choice.
1564                  */
1565                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1566                 rs->sr_text = "proxyAuthz not allowed within namingContext";
1567         }
1568
1569         if ( op->o_is_auth_check ) {
1570                 mode = LDAP_BACK_IDASSERT_NOASSERT;
1571
1572         } else {
1573                 mode = li->li_idassert_mode;
1574         }
1575
1576         switch ( mode ) {
1577         case LDAP_BACK_IDASSERT_SELF:
1578                 if ( BER_BVISNULL( &ndn ) ) {
1579                         goto done;
1580                 }
1581                 assertedID = ndn;
1582                 break;
1583
1584         case LDAP_BACK_IDASSERT_LEGACY:
1585                 /* original behavior:
1586                  * assert the client's identity */
1587                 if ( BER_BVISNULL( &ndn ) ) {
1588                         assertedID = slap_empty_bv;
1589                 } else {
1590                         assertedID = ndn;
1591                 }
1592                 break;
1593
1594         case LDAP_BACK_IDASSERT_ANONYMOUS:
1595                 /* assert "anonymous" */
1596                 assertedID = slap_empty_bv;
1597                 break;
1598
1599         case LDAP_BACK_IDASSERT_NOASSERT:
1600                 /* don't assert; bind as proxyauthzdn */
1601                 goto done;
1602
1603         case LDAP_BACK_IDASSERT_OTHERID:
1604         case LDAP_BACK_IDASSERT_OTHERDN:
1605                 /* assert idassert DN */
1606                 assertedID = li->li_idassert_authzID;
1607                 break;
1608
1609         default:
1610                 assert( 0 );
1611         }
1612
1613         if ( BER_BVISNULL( &assertedID ) ) {
1614                 assertedID = slap_empty_bv;
1615         }
1616
1617         if ( op->o_ctrls ) {
1618                 for ( i = 0; op->o_ctrls[ i ]; i++ )
1619                         /* just count ctrls */ ;
1620         }
1621
1622         ctrls = op->o_tmpalloc( sizeof( LDAPControl * ) * (i + 2) + sizeof( LDAPControl ),
1623                         op->o_tmpmemctx );
1624         ctrls[ 0 ] = (LDAPControl *)&ctrls[ i + 2 ];
1625         
1626         ctrls[ 0 ]->ldctl_oid = LDAP_CONTROL_PROXY_AUTHZ;
1627         ctrls[ 0 ]->ldctl_iscritical = 1;
1628
1629         switch ( li->li_idassert_mode ) {
1630         /* already in u:ID or dn:DN form */
1631         case LDAP_BACK_IDASSERT_OTHERID:
1632         case LDAP_BACK_IDASSERT_OTHERDN:
1633                 ber_dupbv_x( &ctrls[ 0 ]->ldctl_value, &assertedID, op->o_tmpmemctx );
1634                 break;
1635
1636         /* needs the dn: prefix */
1637         default:
1638                 ctrls[ 0 ]->ldctl_value.bv_len = assertedID.bv_len + STRLENOF( "dn:" );
1639                 ctrls[ 0 ]->ldctl_value.bv_val = op->o_tmpalloc( ctrls[ 0 ]->ldctl_value.bv_len + 1,
1640                                 op->o_tmpmemctx );
1641                 AC_MEMCPY( ctrls[ 0 ]->ldctl_value.bv_val, "dn:", STRLENOF( "dn:" ) );
1642                 AC_MEMCPY( &ctrls[ 0 ]->ldctl_value.bv_val[ STRLENOF( "dn:" ) ],
1643                                 assertedID.bv_val, assertedID.bv_len + 1 );
1644                 break;
1645         }
1646
1647         /* Older versions of <draft-weltman-ldapv3-proxy> required
1648          * to encode the value of the authzID (and called it proxyDN);
1649          * this hack provides compatibility with those DSAs that
1650          * implement it this way */
1651         if ( li->li_idassert_flags & LDAP_BACK_AUTH_OBSOLETE_ENCODING_WORKAROUND ) {
1652                 struct berval           authzID = ctrls[ 0 ]->ldctl_value;
1653                 BerElementBuffer        berbuf;
1654                 BerElement              *ber = (BerElement *)&berbuf;
1655                 ber_tag_t               tag;
1656
1657                 ber_init2( ber, 0, LBER_USE_DER );
1658                 ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
1659
1660                 tag = ber_printf( ber, "O", &authzID );
1661                 if ( tag == LBER_ERROR ) {
1662                         rs->sr_err = LDAP_OTHER;
1663                         goto free_ber;
1664                 }
1665
1666                 if ( ber_flatten2( ber, &ctrls[ 0 ]->ldctl_value, 1 ) == -1 ) {
1667                         rs->sr_err = LDAP_OTHER;
1668                         goto free_ber;
1669                 }
1670
1671 free_ber:;
1672                 op->o_tmpfree( authzID.bv_val, op->o_tmpmemctx );
1673                 ber_free_buf( ber );
1674
1675                 if ( rs->sr_err != LDAP_SUCCESS ) {
1676                         op->o_tmpfree( ctrls, op->o_tmpmemctx );
1677                         ctrls = NULL;
1678                 }
1679
1680         } else if ( li->li_idassert_flags & LDAP_BACK_AUTH_OBSOLETE_PROXY_AUTHZ ) {
1681                 struct berval           authzID = ctrls[ 0 ]->ldctl_value,
1682                                         tmp;
1683                 BerElementBuffer        berbuf;
1684                 BerElement              *ber = (BerElement *)&berbuf;
1685                 ber_tag_t               tag;
1686
1687                 if ( strncasecmp( authzID.bv_val, "dn:", STRLENOF( "dn:" ) ) != 0 ) {
1688                         op->o_tmpfree( ctrls[ 0 ]->ldctl_value.bv_val, op->o_tmpmemctx );
1689                         op->o_tmpfree( ctrls, op->o_tmpmemctx );
1690                         rs->sr_err = LDAP_PROTOCOL_ERROR;
1691                         goto done;
1692                 }
1693
1694                 tmp = authzID;
1695                 tmp.bv_val += STRLENOF( "dn:" );
1696                 tmp.bv_len -= STRLENOF( "dn:" );
1697
1698                 ber_init2( ber, 0, LBER_USE_DER );
1699                 ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
1700
1701                 /* apparently, Mozilla API encodes this
1702                  * as "SEQUENCE { LDAPDN }" */
1703                 tag = ber_printf( ber, "{O}", &tmp );
1704                 if ( tag == LBER_ERROR ) {
1705                         rs->sr_err = LDAP_OTHER;
1706                         goto free_ber2;
1707                 }
1708
1709                 if ( ber_flatten2( ber, &ctrls[ 0 ]->ldctl_value, 1 ) == -1 ) {
1710                         rs->sr_err = LDAP_OTHER;
1711                         goto free_ber2;
1712                 }
1713
1714 free_ber2:;
1715                 op->o_tmpfree( authzID.bv_val, op->o_tmpmemctx );
1716                 ber_free_buf( ber );
1717
1718                 if ( rs->sr_err != LDAP_SUCCESS ) {
1719                         op->o_tmpfree( ctrls, op->o_tmpmemctx );
1720                         ctrls = NULL;
1721                         goto done;
1722                 }
1723
1724                 ctrls[ 0 ]->ldctl_oid = LDAP_CONTROL_OBSOLETE_PROXY_AUTHZ;
1725         }
1726
1727         if ( op->o_ctrls ) {
1728                 for ( i = 0; op->o_ctrls[ i ]; i++ ) {
1729                         ctrls[ i + 1 ] = op->o_ctrls[ i ];
1730                 }
1731         }
1732         ctrls[ i + 1 ] = NULL;
1733
1734 done:;
1735         if ( ctrls == NULL ) {
1736                 ctrls = op->o_ctrls;
1737         }
1738
1739         *pctrls = ctrls;
1740         
1741         return rs->sr_err;
1742 }
1743
1744 int
1745 ldap_back_proxy_authz_ctrl_free( Operation *op, LDAPControl ***pctrls )
1746 {
1747         LDAPControl     **ctrls = *pctrls;
1748
1749         /* we assume that the first control is the proxyAuthz
1750          * added by back-ldap, so it's the only one we explicitly 
1751          * free */
1752         if ( ctrls && ctrls != op->o_ctrls ) {
1753                 assert( ctrls[ 0 ] != NULL );
1754
1755                 if ( !BER_BVISNULL( &ctrls[ 0 ]->ldctl_value ) ) {
1756                         op->o_tmpfree( ctrls[ 0 ]->ldctl_value.bv_val, op->o_tmpmemctx );
1757                 }
1758
1759                 op->o_tmpfree( ctrls, op->o_tmpmemctx );
1760         } 
1761
1762         *pctrls = NULL;
1763
1764         return 0;
1765 }