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