]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/conn.c
ITS#7524 make sure binding flag is set before trying to bind
[openldap] / servers / slapd / back-meta / conn.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1999-2013 The OpenLDAP Foundation.
5  * Portions Copyright 2001-2003 Pierangelo Masarati.
6  * Portions Copyright 1999-2003 Howard Chu.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was initially developed by the Howard Chu for inclusion
19  * in OpenLDAP Software and subsequently enhanced by Pierangelo
20  * Masarati.
21  */
22
23 #include "portable.h"
24
25 #include <stdio.h>
26
27 #include <ac/errno.h>
28 #include <ac/socket.h>
29 #include <ac/string.h>
30
31
32 #define AVL_INTERNAL
33 #include "slap.h"
34 #include "../back-ldap/back-ldap.h"
35 #include "back-meta.h"
36
37 /*
38  * meta_back_conndn_cmp
39  *
40  * compares two struct metaconn based on the value of the conn pointer
41  * and of the local DN; used by avl stuff
42  */
43 int
44 meta_back_conndn_cmp(
45         const void *c1,
46         const void *c2 )
47 {
48         metaconn_t      *mc1 = ( metaconn_t * )c1;
49         metaconn_t      *mc2 = ( metaconn_t * )c2;
50         int             rc;
51         
52         /* If local DNs don't match, it is definitely not a match */
53         /* For shared sessions, conn is NULL. Only explicitly
54          * bound sessions will have non-NULL conn.
55          */
56         rc = SLAP_PTRCMP( mc1->mc_conn, mc2->mc_conn );
57         if ( rc == 0 ) {
58                 rc = ber_bvcmp( &mc1->mc_local_ndn, &mc2->mc_local_ndn );
59         }
60
61         return rc;
62 }
63
64 /*
65  * meta_back_conndnmc_cmp
66  *
67  * compares two struct metaconn based on the value of the conn pointer,
68  * the local DN and the struct pointer; used by avl stuff
69  */
70 static int
71 meta_back_conndnmc_cmp(
72         const void *c1,
73         const void *c2 )
74 {
75         metaconn_t      *mc1 = ( metaconn_t * )c1;
76         metaconn_t      *mc2 = ( metaconn_t * )c2;
77         int             rc;
78         
79         /* If local DNs don't match, it is definitely not a match */
80         /* For shared sessions, conn is NULL. Only explicitly
81          * bound sessions will have non-NULL conn.
82          */
83         rc = SLAP_PTRCMP( mc1->mc_conn, mc2->mc_conn );
84         if ( rc == 0 ) {
85                 rc = ber_bvcmp( &mc1->mc_local_ndn, &mc2->mc_local_ndn );
86                 if ( rc == 0 ) {
87                         rc = SLAP_PTRCMP( mc1, mc2 );
88                 }
89         }
90
91         return rc;
92 }
93
94 /*
95  * meta_back_conn_cmp
96  *
97  * compares two struct metaconn based on the value of the conn pointer;
98  * used by avl stuff
99  */
100 int
101 meta_back_conn_cmp(
102         const void *c1,
103         const void *c2 )
104 {
105         metaconn_t      *mc1 = ( metaconn_t * )c1;
106         metaconn_t      *mc2 = ( metaconn_t * )c2;
107         
108         /* For shared sessions, conn is NULL. Only explicitly
109          * bound sessions will have non-NULL conn.
110          */
111         return SLAP_PTRCMP( mc1->mc_conn, mc2->mc_conn );
112 }
113
114 /*
115  * meta_back_conndn_dup
116  *
117  * returns -1 in case a duplicate struct metaconn has been inserted;
118  * used by avl stuff
119  */
120 int
121 meta_back_conndn_dup(
122         void *c1,
123         void *c2 )
124 {
125         metaconn_t      *mc1 = ( metaconn_t * )c1;
126         metaconn_t      *mc2 = ( metaconn_t * )c2;
127
128         /* Cannot have more than one shared session with same DN */
129         if ( mc1->mc_conn == mc2->mc_conn &&
130                 dn_match( &mc1->mc_local_ndn, &mc2->mc_local_ndn ) )
131         {
132                 return -1;
133         }
134                 
135         return 0;
136 }
137
138 /*
139  * Debug stuff (got it from libavl)
140  */
141 #if META_BACK_PRINT_CONNTREE > 0
142 static void
143 meta_back_print( metaconn_t *mc, char *avlstr )
144 {
145         int     i;
146
147         fputs( "targets=[", stderr );
148         for ( i = 0; i < mc->mc_info->mi_ntargets; i++ ) {
149                 fputc( mc->mc_conns[ i ].msc_ld ? '*' : 'o', stderr);
150         }
151         fputc( ']', stderr );
152
153         fprintf( stderr, " mc=%p local=\"%s\" conn=%p refcnt=%d%s %s\n",
154                 (void *)mc,
155                 mc->mc_local_ndn.bv_val ? mc->mc_local_ndn.bv_val : "",
156                 (void *)mc->mc_conn,
157                 mc->mc_refcnt,
158                 LDAP_BACK_CONN_TAINTED( mc ) ? " tainted" : "",
159                 avlstr );
160 }
161
162 static void
163 meta_back_ravl_print( Avlnode *root, int depth )
164 {
165         int             i;
166
167         if ( root == 0 ) {
168                 return;
169         }
170         
171         meta_back_ravl_print( root->avl_right, depth + 1 );
172         
173         for ( i = 0; i < depth; i++ ) {
174                 fprintf( stderr, "-" );
175         }
176         fputc( ' ', stderr );
177
178         meta_back_print( (metaconn_t *)root->avl_data,
179                 avl_bf2str( root->avl_bf ) );
180
181         meta_back_ravl_print( root->avl_left, depth + 1 );
182 }
183
184 /* NOTE: duplicate from back-ldap/bind.c */
185 static char* priv2str[] = {
186         "privileged",
187         "privileged/TLS",
188         "anonymous",
189         "anonymous/TLS",
190         "bind",
191         "bind/TLS",
192         NULL
193 };
194
195 void
196 meta_back_print_conntree( metainfo_t *mi, char *msg )
197 {
198         int     c;
199
200         fprintf( stderr, "========> %s\n", msg );
201         
202         for ( c = LDAP_BACK_PCONN_FIRST; c < LDAP_BACK_PCONN_LAST; c++ ) {
203                 int             i = 0;
204                 metaconn_t      *mc;
205
206                 fprintf( stderr, "  %s[%d]\n", priv2str[ c ], mi->mi_conn_priv[ c ].mic_num );
207
208                 LDAP_TAILQ_FOREACH( mc, &mi->mi_conn_priv[ c ].mic_priv, mc_q )
209                 {
210                         fprintf( stderr, "    [%d] ", i );
211                         meta_back_print( mc, "" );
212                         i++;
213                 }
214         }
215         
216         if ( mi->mi_conninfo.lai_tree == NULL ) {
217                 fprintf( stderr, "\t(empty)\n" );
218
219         } else {
220                 meta_back_ravl_print( mi->mi_conninfo.lai_tree, 0 );
221         }
222         
223         fprintf( stderr, "<======== %s\n", msg );
224 }
225 #endif /* META_BACK_PRINT_CONNTREE */
226 /*
227  * End of debug stuff
228  */
229
230 /*
231  * metaconn_alloc
232  * 
233  * Allocates a connection structure, making room for all the referenced targets
234  */
235 static metaconn_t *
236 metaconn_alloc(
237         Operation               *op )
238 {
239         metainfo_t      *mi = ( metainfo_t * )op->o_bd->be_private;
240         metaconn_t      *mc;
241         int             ntargets = mi->mi_ntargets;
242
243         assert( ntargets > 0 );
244
245         /* malloc all in one */
246         mc = ( metaconn_t * )ch_calloc( 1, sizeof( metaconn_t )
247                 + sizeof( metasingleconn_t ) * ( ntargets - 1 ) );
248         if ( mc == NULL ) {
249                 return NULL;
250         }
251
252         mc->mc_info = mi;
253
254         mc->mc_authz_target = META_BOUND_NONE;
255         mc->mc_refcnt = 1;
256
257         return mc;
258 }
259
260 /*
261  * meta_back_init_one_conn
262  * 
263  * Initializes one connection
264  */
265 int
266 meta_back_init_one_conn(
267         Operation               *op,
268         SlapReply               *rs,
269         metaconn_t              *mc,
270         int                     candidate,
271         int                     ispriv,
272         ldap_back_send_t        sendok,
273         int                     dolock )
274 {
275         metainfo_t              *mi = ( metainfo_t * )op->o_bd->be_private;
276         metatarget_t            *mt = mi->mi_targets[ candidate ];
277         metasingleconn_t        *msc = &mc->mc_conns[ candidate ];
278         int                     version;
279         dncookie                dc;
280         int                     isauthz = ( candidate == mc->mc_authz_target );
281         int                     do_return = 0;
282 #ifdef HAVE_TLS
283         int                     is_ldaps = 0;
284         int                     do_start_tls = 0;
285 #endif /* HAVE_TLS */
286
287         /* if the server is quarantined, and
288          * - the current interval did not expire yet, or
289          * - no more retries should occur,
290          * don't return the connection */
291         if ( mt->mt_isquarantined ) {
292                 slap_retry_info_t       *ri = &mt->mt_quarantine;
293                 int                     dont_retry = 0;
294
295                 if ( mt->mt_quarantine.ri_interval ) {
296                         ldap_pvt_thread_mutex_lock( &mt->mt_quarantine_mutex );
297                         dont_retry = ( mt->mt_isquarantined > LDAP_BACK_FQ_NO );
298                         if ( dont_retry ) {
299                                 dont_retry = ( ri->ri_num[ ri->ri_idx ] == SLAP_RETRYNUM_TAIL
300                                         || slap_get_time() < ri->ri_last + ri->ri_interval[ ri->ri_idx ] );
301                                 if ( !dont_retry ) {
302                                         if ( LogTest( LDAP_DEBUG_ANY ) ) {
303                                                 char    buf[ SLAP_TEXT_BUFLEN ];
304
305                                                 snprintf( buf, sizeof( buf ),
306                                                         "meta_back_init_one_conn[%d]: quarantine "
307                                                         "retry block #%d try #%d",
308                                                         candidate, ri->ri_idx, ri->ri_count );
309                                                 Debug( LDAP_DEBUG_ANY, "%s %s.\n",
310                                                         op->o_log_prefix, buf, 0 );
311                                         }
312
313                                         mt->mt_isquarantined = LDAP_BACK_FQ_RETRYING;
314                                 }
315
316                         }
317                         ldap_pvt_thread_mutex_unlock( &mt->mt_quarantine_mutex );
318                 }
319
320                 if ( dont_retry ) {
321                         rs->sr_err = LDAP_UNAVAILABLE;
322                         if ( op->o_conn && ( sendok & LDAP_BACK_SENDERR ) ) {
323                                 rs->sr_text = "Target is quarantined";
324                                 send_ldap_result( op, rs );
325                         }
326                         return rs->sr_err;
327                 }
328         }
329
330 retry_lock:;
331         if ( dolock ) {
332                 ldap_pvt_thread_mutex_lock( &mi->mi_conninfo.lai_mutex );
333         }
334
335         /*
336          * Already init'ed
337          */
338         if ( LDAP_BACK_CONN_ISBOUND( msc )
339                 || LDAP_BACK_CONN_ISANON( msc ) )
340         {
341                 assert( msc->msc_ld != NULL );
342                 rs->sr_err = LDAP_SUCCESS;
343                 do_return = 1;
344
345         } else if ( META_BACK_CONN_CREATING( msc )
346                 || LDAP_BACK_CONN_BINDING( msc ) )
347         {
348                 if ( !LDAP_BACK_USE_TEMPORARIES( mi ) ) {
349                         if ( dolock ) {
350                                 ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
351                         }
352
353                         ldap_pvt_thread_yield();
354                         goto retry_lock;
355                 }
356
357                 /* sounds more appropriate */
358                 rs->sr_err = LDAP_BUSY;
359                 rs->sr_text = "No connections to target are available";
360                 do_return = 1;
361
362         } else if ( META_BACK_CONN_INITED( msc ) ) {
363                 assert( msc->msc_ld != NULL );
364                 rs->sr_err = LDAP_SUCCESS;
365                 do_return = 1;
366
367         } else {
368                 /*
369                  * creating...
370                  */
371                 META_BACK_CONN_CREATING_SET( msc );
372         }
373
374         if ( dolock ) {
375                 ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
376         }
377
378         if ( do_return ) {
379                 if ( rs->sr_err != LDAP_SUCCESS
380                         && op->o_conn
381                         && ( sendok & LDAP_BACK_SENDERR ) )
382                 {
383                         send_ldap_result( op, rs );
384                 }
385
386                 return rs->sr_err;
387         }
388
389         assert( msc->msc_ld == NULL );
390        
391         /*
392          * Attempts to initialize the connection to the target ds
393          */
394         ldap_pvt_thread_mutex_lock( &mt->mt_uri_mutex );
395         rs->sr_err = ldap_initialize( &msc->msc_ld, mt->mt_uri );
396 #ifdef HAVE_TLS
397         is_ldaps = ldap_is_ldaps_url( mt->mt_uri );
398 #endif /* HAVE_TLS */
399         ldap_pvt_thread_mutex_unlock( &mt->mt_uri_mutex );
400         if ( rs->sr_err != LDAP_SUCCESS ) {
401                 goto error_return;
402         }
403
404         /*
405          * Set LDAP version. This will always succeed: If the client
406          * bound with a particular version, then so can we.
407          */
408         if ( mt->mt_version != 0 ) {
409                 version = mt->mt_version;
410
411         } else if ( op->o_conn->c_protocol != 0 ) {
412                 version = op->o_conn->c_protocol;
413
414         } else {
415                 version = LDAP_VERSION3;
416         }
417         ldap_set_option( msc->msc_ld, LDAP_OPT_PROTOCOL_VERSION, &version );
418         ldap_set_urllist_proc( msc->msc_ld, mt->mt_urllist_f, mt->mt_urllist_p );
419
420         /* automatically chase referrals ("chase-referrals [{yes|no}]" statement) */
421         ldap_set_option( msc->msc_ld, LDAP_OPT_REFERRALS,
422                 META_BACK_TGT_CHASE_REFERRALS( mt ) ? LDAP_OPT_ON : LDAP_OPT_OFF );
423
424 #ifdef HAVE_TLS
425         if ( !is_ldaps ) {
426                 slap_bindconf *sb = NULL;
427
428                 if ( ispriv ) {
429                         sb = &mt->mt_idassert.si_bc;
430                 } else {
431                         sb = &mt->mt_tls;
432                 }
433
434                 if ( sb->sb_tls_do_init ) {
435                         bindconf_tls_set( sb, msc->msc_ld );
436                 } else if ( sb->sb_tls_ctx ) {
437                         ldap_set_option( msc->msc_ld, LDAP_OPT_X_TLS_CTX, sb->sb_tls_ctx );
438                 }
439
440                 if ( sb == &mt->mt_idassert.si_bc && sb->sb_tls_ctx ) {
441                         do_start_tls = 1;
442
443                 } else if ( META_BACK_TGT_USE_TLS( mt )
444                         || ( op->o_conn->c_is_tls && META_BACK_TGT_PROPAGATE_TLS( mt ) ) )
445                 {
446                         do_start_tls = 1;
447                 }
448         }
449
450         /* start TLS ("tls [try-]{start|propagate}" statement) */
451         if ( do_start_tls ) {
452 #ifdef SLAP_STARTTLS_ASYNCHRONOUS
453                 /*
454                  * use asynchronous StartTLS; in case, chase referral
455                  * FIXME: OpenLDAP does not return referral on StartTLS yet
456                  */
457                 int             msgid;
458
459                 rs->sr_err = ldap_start_tls( msc->msc_ld, NULL, NULL, &msgid );
460                 if ( rs->sr_err == LDAP_SUCCESS ) {
461                         LDAPMessage     *res = NULL;
462                         int             rc, nretries = mt->mt_nretries;
463                         struct timeval  tv;
464
465                         LDAP_BACK_TV_SET( &tv );
466
467 retry:;
468                         rc = ldap_result( msc->msc_ld, msgid, LDAP_MSG_ALL, &tv, &res );
469                         switch ( rc ) {
470                         case -1:
471                                 rs->sr_err = LDAP_OTHER;
472                                 break;
473
474                         case 0:
475                                 if ( nretries != 0 ) {
476                                         if ( nretries > 0 ) {
477                                                 nretries--;
478                                         }
479                                         LDAP_BACK_TV_SET( &tv );
480                                         goto retry;
481                                 }
482                                 rs->sr_err = LDAP_OTHER;
483                                 break;
484
485                         default:
486                                 /* only touch when activity actually took place... */
487                                 if ( mi->mi_idle_timeout != 0 && msc->msc_time < op->o_time ) {
488                                         msc->msc_time = op->o_time;
489                                 }
490                                 break;
491                         }
492
493                         if ( rc == LDAP_RES_EXTENDED ) {
494                                 struct berval   *data = NULL;
495
496                                 /* NOTE: right now, data is unused, so don't get it */
497                                 rs->sr_err = ldap_parse_extended_result( msc->msc_ld,
498                                         res, NULL, NULL /* &data */ , 0 );
499                                 if ( rs->sr_err == LDAP_SUCCESS ) {
500                                         int             err;
501
502                                         /* FIXME: matched? referrals? response controls? */
503                                         rs->sr_err = ldap_parse_result( msc->msc_ld,
504                                                 res, &err, NULL, NULL, NULL, NULL, 1 );
505                                         res = NULL;
506
507                                         if ( rs->sr_err == LDAP_SUCCESS ) {
508                                                 rs->sr_err = err;
509                                         }
510                                         rs->sr_err = slap_map_api2result( rs );
511                                         
512                                         /* FIXME: in case a referral 
513                                          * is returned, should we try
514                                          * using it instead of the 
515                                          * configured URI? */
516                                         if ( rs->sr_err == LDAP_SUCCESS ) {
517                                                 ldap_install_tls( msc->msc_ld );
518
519                                         } else if ( rs->sr_err == LDAP_REFERRAL ) {
520                                                 /* FIXME: LDAP_OPERATIONS_ERROR? */
521                                                 rs->sr_err = LDAP_OTHER;
522                                                 rs->sr_text = "Unwilling to chase referral "
523                                                         "returned by Start TLS exop";
524                                         }
525
526                                         if ( data ) {
527                                                 ber_bvfree( data );
528                                         }
529                                 }
530
531                         } else {
532                                 rs->sr_err = LDAP_OTHER;
533                         }
534
535                         if ( res != NULL ) {
536                                 ldap_msgfree( res );
537                         }
538                 }
539 #else /* ! SLAP_STARTTLS_ASYNCHRONOUS */
540                 /*
541                  * use synchronous StartTLS
542                  */
543                 rs->sr_err = ldap_start_tls_s( msc->msc_ld, NULL, NULL );
544 #endif /* ! SLAP_STARTTLS_ASYNCHRONOUS */
545
546                 /* if StartTLS is requested, only attempt it if the URL
547                  * is not "ldaps://"; this may occur not only in case
548                  * of misconfiguration, but also when used in the chain 
549                  * overlay, where the "uri" can be parsed out of a referral */
550                 if ( rs->sr_err == LDAP_SERVER_DOWN
551                         || ( rs->sr_err != LDAP_SUCCESS
552                                 && META_BACK_TGT_TLS_CRITICAL( mt ) ) )
553                 {
554
555 #ifdef DEBUG_205
556                         Debug( LDAP_DEBUG_ANY,
557                                 "### %s meta_back_init_one_conn(TLS) "
558                                 "ldap_unbind_ext[%d] ld=%p\n",
559                                 op->o_log_prefix, candidate,
560                                 (void *)msc->msc_ld );
561 #endif /* DEBUG_205 */
562
563                         /* need to trash a failed Start TLS */
564                         meta_clear_one_candidate( op, mc, candidate );
565                         goto error_return;
566                 }
567         }
568 #endif /* HAVE_TLS */
569
570         /*
571          * Set the network timeout if set
572          */
573         if ( mt->mt_network_timeout != 0 ) {
574                 struct timeval  network_timeout;
575
576                 network_timeout.tv_usec = 0;
577                 network_timeout.tv_sec = mt->mt_network_timeout;
578
579                 ldap_set_option( msc->msc_ld, LDAP_OPT_NETWORK_TIMEOUT,
580                                 (void *)&network_timeout );
581         }
582
583         /*
584          * If the connection DN is not null, an attempt to rewrite it is made
585          */
586
587         if ( ispriv ) {
588                 if ( !BER_BVISNULL( &mt->mt_idassert_authcDN ) ) {
589                         ber_bvreplace( &msc->msc_bound_ndn, &mt->mt_idassert_authcDN );
590                         if ( !BER_BVISNULL( &mt->mt_idassert_passwd ) ) {
591                                 if ( !BER_BVISNULL( &msc->msc_cred ) ) {
592                                         memset( msc->msc_cred.bv_val, 0,
593                                                 msc->msc_cred.bv_len );
594                                 }
595                                 ber_bvreplace( &msc->msc_cred, &mt->mt_idassert_passwd );
596                         }
597                         LDAP_BACK_CONN_ISIDASSERT_SET( msc );
598
599                 } else {
600                         ber_bvreplace( &msc->msc_bound_ndn, &slap_empty_bv );
601                 }
602
603         } else {
604                 if ( !BER_BVISNULL( &msc->msc_cred ) ) {
605                         memset( msc->msc_cred.bv_val, 0, msc->msc_cred.bv_len );
606                         ber_memfree_x( msc->msc_cred.bv_val, NULL );
607                         BER_BVZERO( &msc->msc_cred );
608                 }
609                 if ( !BER_BVISNULL( &msc->msc_bound_ndn ) ) {
610                         ber_memfree_x( msc->msc_bound_ndn.bv_val, NULL );
611                         BER_BVZERO( &msc->msc_bound_ndn );
612                 }
613                 if ( !BER_BVISEMPTY( &op->o_ndn )
614                         && SLAP_IS_AUTHZ_BACKEND( op )
615                         && isauthz )
616                 {
617                         dc.target = mt;
618                         dc.conn = op->o_conn;
619                         dc.rs = rs;
620                         dc.ctx = "bindDN";
621                 
622                         /*
623                          * Rewrite the bind dn if needed
624                          */
625                         if ( ldap_back_dn_massage( &dc, &op->o_conn->c_dn,
626                                                 &msc->msc_bound_ndn ) )
627                         {
628
629 #ifdef DEBUG_205
630                                 Debug( LDAP_DEBUG_ANY,
631                                         "### %s meta_back_init_one_conn(rewrite) "
632                                         "ldap_unbind_ext[%d] ld=%p\n",
633                                         op->o_log_prefix, candidate,
634                                         (void *)msc->msc_ld );
635 #endif /* DEBUG_205 */
636
637                                 /* need to trash a connection not fully established */
638                                 meta_clear_one_candidate( op, mc, candidate );
639                                 goto error_return;
640                         }
641                         
642                         /* copy the DN if needed */
643                         if ( msc->msc_bound_ndn.bv_val == op->o_conn->c_dn.bv_val ) {
644                                 ber_dupbv( &msc->msc_bound_ndn, &op->o_conn->c_dn );
645                         }
646
647                         assert( !BER_BVISNULL( &msc->msc_bound_ndn ) );
648
649                 } else {
650                         ber_dupbv( &msc->msc_bound_ndn, (struct berval *)&slap_empty_bv );
651                 }
652         }
653
654         assert( !BER_BVISNULL( &msc->msc_bound_ndn ) );
655
656 error_return:;
657         if ( dolock ) {
658                 ldap_pvt_thread_mutex_lock( &mi->mi_conninfo.lai_mutex );
659         }
660         META_BACK_CONN_CREATING_CLEAR( msc );
661         if ( rs->sr_err == LDAP_SUCCESS ) {
662                 /*
663                  * Sets a cookie for the rewrite session
664                  */
665                 ( void )rewrite_session_init( mt->mt_rwmap.rwm_rw, op->o_conn );
666                 META_BACK_CONN_INITED_SET( msc );
667         }
668         if ( dolock ) {
669                 ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
670         }
671
672         if ( rs->sr_err != LDAP_SUCCESS ) {
673                 rs->sr_err = slap_map_api2result( rs );
674                 if ( sendok & LDAP_BACK_SENDERR ) {
675                         send_ldap_result( op, rs );
676                 }
677         }
678
679         return rs->sr_err;
680 }
681
682 /*
683  * meta_back_retry
684  * 
685  * Retries one connection
686  */
687 int
688 meta_back_retry(
689         Operation               *op,
690         SlapReply               *rs,
691         metaconn_t              **mcp,
692         int                     candidate,
693         ldap_back_send_t        sendok )
694 {
695         metainfo_t              *mi = ( metainfo_t * )op->o_bd->be_private;
696         metatarget_t            *mt = mi->mi_targets[ candidate ];
697         metaconn_t              *mc = *mcp;
698         metasingleconn_t        *msc = &mc->mc_conns[ candidate ];
699         int                     rc = LDAP_UNAVAILABLE,
700                                 binding,
701                                 quarantine = 1;
702
703         ldap_pvt_thread_mutex_lock( &mi->mi_conninfo.lai_mutex );
704
705         assert( !META_BACK_CONN_CREATING( msc ) );
706         binding = LDAP_BACK_CONN_BINDING( msc );
707         LDAP_BACK_CONN_BINDING_CLEAR( msc );
708
709         assert( mc->mc_refcnt > 0 );
710         if ( mc->mc_refcnt == 1 ) {
711                 struct berval save_cred;
712
713                 if ( LogTest( LDAP_DEBUG_ANY ) ) {
714                         char    buf[ SLAP_TEXT_BUFLEN ];
715
716                         /* this lock is required; however,
717                          * it's invoked only when logging is on */
718                         ldap_pvt_thread_mutex_lock( &mt->mt_uri_mutex );
719                         snprintf( buf, sizeof( buf ),
720                                 "retrying URI=\"%s\" DN=\"%s\"",
721                                 mt->mt_uri,
722                                 BER_BVISNULL( &msc->msc_bound_ndn ) ?
723                                         "" : msc->msc_bound_ndn.bv_val );
724                         ldap_pvt_thread_mutex_unlock( &mt->mt_uri_mutex );
725
726                         Debug( LDAP_DEBUG_ANY,
727                                 "%s meta_back_retry[%d]: %s.\n",
728                                 op->o_log_prefix, candidate, buf );
729                 }
730
731                 /* save credentials, if any, for later use;
732                  * meta_clear_one_candidate() would free them */
733                 save_cred = msc->msc_cred;
734                 BER_BVZERO( &msc->msc_cred );
735
736                 meta_clear_one_candidate( op, mc, candidate );
737                 LDAP_BACK_CONN_ISBOUND_CLEAR( msc );
738
739                 ( void )rewrite_session_delete( mt->mt_rwmap.rwm_rw, op->o_conn );
740
741                 /* mc here must be the regular mc, reset and ready for init */
742                 rc = meta_back_init_one_conn( op, rs, mc, candidate,
743                         LDAP_BACK_CONN_ISPRIV( mc ), sendok, 0 );
744
745                 /* restore credentials, if any and if needed;
746                  * meta_back_init_one_conn() restores msc_bound_ndn, if any;
747                  * if no msc_bound_ndn is restored, destroy credentials */
748                 if ( !BER_BVISNULL( &msc->msc_bound_ndn )
749                         && BER_BVISNULL( &msc->msc_cred ) )
750                 {
751                         msc->msc_cred = save_cred;
752
753                 } else if ( !BER_BVISNULL( &save_cred ) ) {
754                         memset( save_cred.bv_val, 0, save_cred.bv_len );
755                         ber_memfree_x( save_cred.bv_val, NULL );
756                 }
757
758                 /* restore the "binding" flag, in case */
759                 if ( binding ) {
760                         LDAP_BACK_CONN_BINDING_SET( msc );
761                 }
762
763                 if ( rc == LDAP_SUCCESS ) {
764                         quarantine = 0;
765                         LDAP_BACK_CONN_BINDING_SET( msc ); binding = 1;
766                         rc = meta_back_single_dobind( op, rs, mcp, candidate,
767                                 sendok, mt->mt_nretries, 0 );
768
769                         Debug( LDAP_DEBUG_ANY,
770                                 "%s meta_back_retry[%d]: "
771                                 "meta_back_single_dobind=%d\n",
772                                 op->o_log_prefix, candidate, rc );
773                         if ( rc == LDAP_SUCCESS ) {
774                                 if ( !BER_BVISNULL( &msc->msc_bound_ndn ) &&
775                                         !BER_BVISEMPTY( &msc->msc_bound_ndn ) )
776                                 {
777                                         LDAP_BACK_CONN_ISBOUND_SET( msc );
778
779                                 } else {
780                                         LDAP_BACK_CONN_ISANON_SET( msc );
781                                 }
782
783                                 /* when bound, dispose of the "binding" flag */
784                                 if ( binding ) {
785                                         LDAP_BACK_CONN_BINDING_CLEAR( msc );
786                                 }
787                         }
788                 }
789
790                 /* don't send twice */
791                 sendok &= ~LDAP_BACK_SENDERR;
792         }
793
794         if ( rc != LDAP_SUCCESS ) {
795                 SlapReply               *candidates = meta_back_candidates_get( op );
796
797                 candidates[ candidate ].sr_err = rc;
798
799                 if ( *mcp != NULL ) {
800                         if ( mc->mc_refcnt == 1 ) {
801                                 if ( binding ) {
802                                         LDAP_BACK_CONN_BINDING_CLEAR( msc );
803                                 }
804                                 (void)meta_clear_one_candidate( op, mc, candidate );
805                         }
806
807                         LDAP_BACK_CONN_TAINTED_SET( mc );
808                         /* only release if mandatory; otherwise
809                          * let the caller do what's best before
810                          * releasing */
811                         if ( META_BACK_ONERR_STOP( mi ) ) {
812                                 meta_back_release_conn_lock( mi, mc, 0 );
813                                 *mcp = NULL;
814
815                         } else {
816 #if META_BACK_PRINT_CONNTREE > 0
817                                 meta_back_print_conntree( mi, ">>> meta_back_retry" );
818 #endif /* META_BACK_PRINT_CONNTREE */
819
820                                 /* FIXME: could be done better, reworking meta_back_release_conn_lock() */
821                                 if ( LDAP_BACK_PCONN_ISPRIV( mc ) ) {
822                                         if ( mc->mc_q.tqe_prev != NULL ) {
823                                                 assert( LDAP_BACK_CONN_CACHED( mc ) );
824                                                 assert( mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_num > 0 );
825                                                 LDAP_TAILQ_REMOVE( &mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_priv,
826                                                         mc, mc_q );
827                                                 mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_num--;
828                                                 LDAP_TAILQ_ENTRY_INIT( mc, mc_q );
829
830                                         } else {
831                                                 assert( !LDAP_BACK_CONN_CACHED( mc ) );
832                                         }
833
834                                 } else {
835                                         /* FIXME: check if in tree, for consistency? */
836                                         (void)avl_delete( &mi->mi_conninfo.lai_tree,
837                                                 ( caddr_t )mc, meta_back_conndnmc_cmp );
838                                 }
839                                 LDAP_BACK_CONN_CACHED_CLEAR( mc );
840
841 #if META_BACK_PRINT_CONNTREE > 0
842                                 meta_back_print_conntree( mi, "<<< meta_back_retry" );
843 #endif /* META_BACK_PRINT_CONNTREE */
844                         }
845                 }
846
847                 if ( sendok & LDAP_BACK_SENDERR ) {
848                         rs->sr_err = rc;
849                         rs->sr_text = "Unable to retry";
850                         send_ldap_result( op, rs );
851                 }
852         }
853
854         if ( quarantine && META_BACK_TGT_QUARANTINE( mt ) ) {
855                 meta_back_quarantine( op, rs, candidate );
856         }
857
858         ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
859
860         return rc == LDAP_SUCCESS ? 1 : 0;
861 }
862
863 /*
864  * callback for unique candidate selection
865  */
866 static int
867 meta_back_conn_cb( Operation *op, SlapReply *rs )
868 {
869         assert( op->o_tag == LDAP_REQ_SEARCH );
870
871         switch ( rs->sr_type ) {
872         case REP_SEARCH:
873                 ((long *)op->o_callback->sc_private)[0] = (long)op->o_private;
874                 break;
875
876         case REP_SEARCHREF:
877         case REP_RESULT:
878                 break;
879
880         default:
881                 return rs->sr_err;
882         }
883
884         return 0;
885 }
886
887
888 static int
889 meta_back_get_candidate(
890         Operation       *op,
891         SlapReply       *rs,
892         struct berval   *ndn )
893 {
894         metainfo_t      *mi = ( metainfo_t * )op->o_bd->be_private;
895         long            candidate;
896
897         /*
898          * tries to get a unique candidate
899          * (takes care of default target)
900          */
901         candidate = meta_back_select_unique_candidate( mi, ndn );
902
903         /*
904          * if any is found, inits the connection
905          */
906         if ( candidate == META_TARGET_NONE ) {
907                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
908                 rs->sr_text = "No suitable candidate target found";
909
910         } else if ( candidate == META_TARGET_MULTIPLE ) {
911                 Operation       op2 = *op;
912                 SlapReply       rs2 = { REP_RESULT };
913                 slap_callback   cb2 = { 0 };
914                 int             rc;
915
916                 /* try to get a unique match for the request ndn
917                  * among the multiple candidates available */
918                 op2.o_tag = LDAP_REQ_SEARCH;
919                 op2.o_req_dn = *ndn;
920                 op2.o_req_ndn = *ndn;
921                 op2.ors_scope = LDAP_SCOPE_BASE;
922                 op2.ors_deref = LDAP_DEREF_NEVER;
923                 op2.ors_attrs = slap_anlist_no_attrs;
924                 op2.ors_attrsonly = 0;
925                 op2.ors_limit = NULL;
926                 op2.ors_slimit = 1;
927                 op2.ors_tlimit = SLAP_NO_LIMIT;
928
929                 op2.ors_filter = (Filter *)slap_filter_objectClass_pres;
930                 op2.ors_filterstr = *slap_filterstr_objectClass_pres;
931
932                 op2.o_callback = &cb2;
933                 cb2.sc_response = meta_back_conn_cb;
934                 cb2.sc_private = (void *)&candidate;
935
936                 rc = op->o_bd->be_search( &op2, &rs2 );
937
938                 switch ( rs2.sr_err ) {
939                 case LDAP_SUCCESS:
940                 default:
941                         rs->sr_err = rs2.sr_err;
942                         break;
943
944                 case LDAP_SIZELIMIT_EXCEEDED:
945                         /* if multiple candidates can serve the operation,
946                          * and a default target is defined, and it is
947                          * a candidate, try using it (FIXME: YMMV) */
948                         if ( mi->mi_defaulttarget != META_DEFAULT_TARGET_NONE
949                                 && meta_back_is_candidate( mi->mi_targets[ mi->mi_defaulttarget ],
950                                                 ndn, op->o_tag == LDAP_REQ_SEARCH ? op->ors_scope : LDAP_SCOPE_BASE ) )
951                         {
952                                 candidate = mi->mi_defaulttarget;
953                                 rs->sr_err = LDAP_SUCCESS;
954                                 rs->sr_text = NULL;
955
956                         } else {
957                                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
958                                 rs->sr_text = "Unable to select unique candidate target";
959                         }
960                         break;
961                 }
962
963         } else {
964                 rs->sr_err = LDAP_SUCCESS;
965         }
966
967         return candidate;
968 }
969
970 static void     *meta_back_candidates_dummy;
971
972 static void
973 meta_back_candidates_keyfree(
974         void            *key,
975         void            *data )
976 {
977         metacandidates_t        *mc = (metacandidates_t *)data;
978
979         ber_memfree_x( mc->mc_candidates, NULL );
980         ber_memfree_x( data, NULL );
981 }
982
983 SlapReply *
984 meta_back_candidates_get( Operation *op )
985 {
986         metainfo_t              *mi = ( metainfo_t * )op->o_bd->be_private;
987         metacandidates_t        *mc;
988
989         if ( op->o_threadctx ) {
990                 void            *data = NULL;
991
992                 ldap_pvt_thread_pool_getkey( op->o_threadctx,
993                                 &meta_back_candidates_dummy, &data, NULL );
994                 mc = (metacandidates_t *)data;
995
996         } else {
997                 mc = mi->mi_candidates;
998         }
999
1000         if ( mc == NULL ) {
1001                 mc = ch_calloc( sizeof( metacandidates_t ), 1 );
1002                 mc->mc_ntargets = mi->mi_ntargets;
1003                 mc->mc_candidates = ch_calloc( sizeof( SlapReply ), mc->mc_ntargets );
1004                 if ( op->o_threadctx ) {
1005                         void            *data = NULL;
1006
1007                         data = (void *)mc;
1008                         ldap_pvt_thread_pool_setkey( op->o_threadctx,
1009                                         &meta_back_candidates_dummy, data,
1010                                         meta_back_candidates_keyfree,
1011                                         NULL, NULL );
1012
1013                 } else {
1014                         mi->mi_candidates = mc;
1015                 }
1016
1017         } else if ( mc->mc_ntargets < mi->mi_ntargets ) {
1018                 /* NOTE: in the future, may want to allow back-config
1019                  * to add/remove targets from back-meta... */
1020                 mc->mc_candidates = ch_realloc( mc->mc_candidates,
1021                                 sizeof( SlapReply ) * mi->mi_ntargets );
1022                 memset( &mc->mc_candidates[ mc->mc_ntargets ], 0,
1023                         sizeof( SlapReply ) * ( mi->mi_ntargets - mc->mc_ntargets ) );
1024                 mc->mc_ntargets = mi->mi_ntargets;
1025         }
1026
1027         return mc->mc_candidates;
1028 }
1029
1030 /*
1031  * meta_back_getconn
1032  * 
1033  * Prepares the connection structure
1034  * 
1035  * RATIONALE:
1036  *
1037  * - determine what DN is being requested:
1038  *
1039  *      op      requires candidate      checks
1040  *
1041  *      add     unique                  parent of o_req_ndn
1042  *      bind    unique^*[/all]          o_req_ndn [no check]
1043  *      compare unique^+                o_req_ndn
1044  *      delete  unique                  o_req_ndn
1045  *      modify  unique                  o_req_ndn
1046  *      search  any                     o_req_ndn
1047  *      modrdn  unique[, unique]        o_req_ndn[, orr_nnewSup]
1048  *
1049  * - for ops that require the candidate to be unique, in case of multiple
1050  *   occurrences an internal search with sizeLimit=1 is performed
1051  *   if a unique candidate can actually be determined.  If none is found,
1052  *   the operation aborts; if multiple are found, the default target
1053  *   is used if defined and candidate; otherwise the operation aborts.
1054  *
1055  * *^note: actually, the bind operation is handled much like a search;
1056  *   i.e. the bind is broadcast to all candidate targets.
1057  *
1058  * +^note: actually, the compare operation is handled much like a search;
1059  *   i.e. the compare is broadcast to all candidate targets, while checking
1060  *   that exactly none (noSuchObject) or one (TRUE/FALSE/UNDEFINED) is
1061  *   returned.
1062  */
1063 metaconn_t *
1064 meta_back_getconn(
1065         Operation               *op,
1066         SlapReply               *rs,
1067         int                     *candidate,
1068         ldap_back_send_t        sendok )
1069 {
1070         metainfo_t      *mi = ( metainfo_t * )op->o_bd->be_private;
1071         metaconn_t      *mc = NULL,
1072                         mc_curr = {{ 0 }};
1073         int             cached = META_TARGET_NONE,
1074                         i = META_TARGET_NONE,
1075                         err = LDAP_SUCCESS,
1076                         new_conn = 0,
1077                         ncandidates = 0;
1078
1079
1080         meta_op_type    op_type = META_OP_REQUIRE_SINGLE;
1081         enum            {
1082                 META_DNTYPE_ENTRY,
1083                 META_DNTYPE_PARENT,
1084                 META_DNTYPE_NEWPARENT
1085         }               dn_type = META_DNTYPE_ENTRY;
1086         struct berval   ndn = op->o_req_ndn,
1087                         pndn;
1088
1089         SlapReply       *candidates = meta_back_candidates_get( op );
1090
1091         /* Internal searches are privileged and shared. So is root. */
1092         if ( ( !BER_BVISEMPTY( &op->o_ndn ) && META_BACK_PROXYAUTHZ_ALWAYS( mi ) )
1093                 || ( BER_BVISEMPTY( &op->o_ndn ) && META_BACK_PROXYAUTHZ_ANON( mi ) )
1094                 || op->o_do_not_cache || be_isroot( op ) )
1095         {
1096                 LDAP_BACK_CONN_ISPRIV_SET( &mc_curr );
1097                 mc_curr.mc_local_ndn = op->o_bd->be_rootndn;
1098                 LDAP_BACK_PCONN_ROOTDN_SET( &mc_curr, op );
1099
1100         } else if ( BER_BVISEMPTY( &op->o_ndn ) && META_BACK_PROXYAUTHZ_NOANON( mi ) )
1101         {
1102                 LDAP_BACK_CONN_ISANON_SET( &mc_curr );
1103                 BER_BVSTR( &mc_curr.mc_local_ndn, "" );
1104                 LDAP_BACK_PCONN_ANON_SET( &mc_curr, op );
1105
1106         } else {
1107                 mc_curr.mc_local_ndn = op->o_ndn;
1108
1109                 /* Explicit binds must not be shared */
1110                 if ( !BER_BVISEMPTY( &op->o_ndn )
1111                         || op->o_tag == LDAP_REQ_BIND
1112                         || SLAP_IS_AUTHZ_BACKEND( op ) )
1113                 {
1114                         mc_curr.mc_conn = op->o_conn;
1115         
1116                 } else {
1117                         LDAP_BACK_CONN_ISANON_SET( &mc_curr );
1118                         LDAP_BACK_PCONN_ANON_SET( &mc_curr, op );
1119                 }
1120         }
1121
1122         /* Explicit Bind requests always get their own conn */
1123         if ( sendok & LDAP_BACK_BINDING ) {
1124                 mc_curr.mc_conn = op->o_conn;
1125
1126         } else {
1127                 /* Searches for a metaconn in the avl tree */
1128 retry_lock:;
1129                 ldap_pvt_thread_mutex_lock( &mi->mi_conninfo.lai_mutex );
1130                 if ( LDAP_BACK_PCONN_ISPRIV( &mc_curr ) ) {
1131                         /* lookup a conn that's not binding */
1132                         LDAP_TAILQ_FOREACH( mc,
1133                                 &mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( &mc_curr ) ].mic_priv,
1134                                 mc_q )
1135                         {
1136                                 if ( !LDAP_BACK_CONN_BINDING( mc ) && mc->mc_refcnt == 0 ) {
1137                                         break;
1138                                 }
1139                         }
1140
1141                         if ( mc != NULL ) {
1142                                 /* move to tail of queue */
1143                                 if ( mc != LDAP_TAILQ_LAST( &mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_priv,
1144                                         metaconn_t, mc_q ) )
1145                                 {
1146                                         LDAP_TAILQ_REMOVE( &mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_priv,
1147                                                 mc, mc_q );
1148                                         LDAP_TAILQ_ENTRY_INIT( mc, mc_q );
1149                                         LDAP_TAILQ_INSERT_TAIL( &mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_priv,
1150                                                 mc, mc_q );
1151                                 }
1152
1153                         } else if ( !LDAP_BACK_USE_TEMPORARIES( mi )
1154                                 && mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( &mc_curr ) ].mic_num == mi->mi_conn_priv_max )
1155                         {
1156                                 mc = LDAP_TAILQ_FIRST( &mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( &mc_curr ) ].mic_priv );
1157                         }
1158                         
1159
1160                 } else {
1161                         mc = (metaconn_t *)avl_find( mi->mi_conninfo.lai_tree, 
1162                                 (caddr_t)&mc_curr, meta_back_conndn_cmp );
1163                 }
1164
1165                 if ( mc ) {
1166                         /* catch taint errors */
1167                         assert( !LDAP_BACK_CONN_TAINTED( mc ) );
1168
1169                         /* Don't reuse connections while they're still binding
1170                          * NOTE: only makes sense for binds */
1171                         if ( LDAP_BACK_CONN_BINDING( mc ) ) {
1172                                 if ( !LDAP_BACK_USE_TEMPORARIES( mi ) ) {
1173                                         ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
1174
1175                                         ldap_pvt_thread_yield();
1176                                         goto retry_lock;
1177                                 }
1178
1179                                 /* release conn, and create a temporary */
1180                                 mc = NULL;
1181
1182                         } else {
1183                                 if ( ( mi->mi_conn_ttl != 0 && op->o_time > mc->mc_create_time + mi->mi_conn_ttl )
1184                                         || ( mi->mi_idle_timeout != 0 && op->o_time > mc->mc_time + mi->mi_idle_timeout ) )
1185                                 {
1186 #if META_BACK_PRINT_CONNTREE > 0
1187                                         meta_back_print_conntree( mi,
1188                                                 ">>> meta_back_getconn(expired)" );
1189 #endif /* META_BACK_PRINT_CONNTREE */
1190
1191                                         /* don't let anyone else use this expired connection */
1192                                         if ( LDAP_BACK_PCONN_ISPRIV( mc ) ) {
1193                                                 if ( mc->mc_q.tqe_prev != NULL ) {
1194                                                         assert( LDAP_BACK_CONN_CACHED( mc ) );
1195                                                         assert( mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_num > 0 );
1196                                                         LDAP_TAILQ_REMOVE( &mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_priv,
1197                                                                 mc, mc_q );
1198                                                         mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_num--;
1199                                                         LDAP_TAILQ_ENTRY_INIT( mc, mc_q );
1200
1201                                                 } else {
1202                                                         assert( !LDAP_BACK_CONN_CACHED( mc ) );
1203                                                 }
1204
1205                                         } else {
1206                                                 (void)avl_delete( &mi->mi_conninfo.lai_tree,
1207                                                         (caddr_t)mc, meta_back_conndnmc_cmp );
1208                                         }
1209
1210 #if META_BACK_PRINT_CONNTREE > 0
1211                                         meta_back_print_conntree( mi,
1212                                                 "<<< meta_back_getconn(expired)" );
1213 #endif /* META_BACK_PRINT_CONNTREE */
1214                                         LDAP_BACK_CONN_TAINTED_SET( mc );
1215                                         LDAP_BACK_CONN_CACHED_CLEAR( mc );
1216
1217                                         if ( LogTest( LDAP_DEBUG_TRACE ) ) {
1218                                                 char buf[STRLENOF("4294967295U") + 1] = { 0 };
1219                                                 mi->mi_ldap_extra->connid2str( &mc->mc_base, buf, sizeof(buf) );
1220
1221                                                 Debug( LDAP_DEBUG_TRACE,
1222                                                         "%s meta_back_getconn: mc=%p conn=%s expired (tainted).\n",
1223                                                         op->o_log_prefix, (void *)mc, buf );
1224                                         }
1225                                 }
1226
1227                                 mc->mc_refcnt++;
1228                         }
1229                 }
1230                 ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
1231         }
1232
1233         switch ( op->o_tag ) {
1234         case LDAP_REQ_ADD:
1235                 /* if we go to selection, the entry must not exist,
1236                  * and we must be able to resolve the parent */
1237                 dn_type = META_DNTYPE_PARENT;
1238                 dnParent( &ndn, &pndn );
1239                 break;
1240
1241         case LDAP_REQ_MODRDN:
1242                 /* if nnewSuperior is not NULL, it must resolve
1243                  * to the same candidate as the req_ndn */
1244                 if ( op->orr_nnewSup ) {
1245                         dn_type = META_DNTYPE_NEWPARENT;
1246                 }
1247                 break;
1248
1249         case LDAP_REQ_BIND:
1250                 /* if bound as rootdn, the backend must bind to all targets
1251                  * with the administrative identity
1252                  * (unless pseoudoroot-bind-defer is TRUE) */
1253                 if ( op->orb_method == LDAP_AUTH_SIMPLE && be_isroot_pw( op ) ) {
1254                         op_type = META_OP_REQUIRE_ALL;
1255                 }
1256                 break;
1257
1258         case LDAP_REQ_COMPARE:
1259         case LDAP_REQ_DELETE:
1260         case LDAP_REQ_MODIFY:
1261                 /* just a unique candidate */
1262                 break;
1263
1264         case LDAP_REQ_SEARCH:
1265                 /* allow multiple candidates for the searchBase */
1266                 op_type = META_OP_ALLOW_MULTIPLE;
1267                 break;
1268
1269         default:
1270                 /* right now, just break (exop?) */
1271                 break;
1272         }
1273
1274         /*
1275          * require all connections ...
1276          */
1277         if ( op_type == META_OP_REQUIRE_ALL ) {
1278
1279                 /* Looks like we didn't get a bind. Open a new session... */
1280                 if ( mc == NULL ) {
1281                         assert( new_conn == 0 );
1282                         mc = metaconn_alloc( op );
1283                         mc->mc_conn = mc_curr.mc_conn;
1284                         ber_dupbv( &mc->mc_local_ndn, &mc_curr.mc_local_ndn );
1285                         new_conn = 1;
1286                         if ( sendok & LDAP_BACK_BINDING ) {
1287                                 LDAP_BACK_CONN_BINDING_SET( mc );
1288                         }
1289                         if ( LDAP_BACK_CONN_ISPRIV( &mc_curr ) ) {
1290                                 LDAP_BACK_CONN_ISPRIV_SET( mc );
1291
1292                         } else if ( LDAP_BACK_CONN_ISANON( &mc_curr ) ) {
1293                                 LDAP_BACK_CONN_ISANON_SET( mc );
1294                         }
1295
1296                 } else if ( 0 ) {
1297                         /* TODO: if any of the connections is binding,
1298                          * release mc and create a new one */
1299                 }
1300
1301                 for ( i = 0; i < mi->mi_ntargets; i++ ) {
1302                         /*
1303                          * The target is activated; if needed, it is
1304                          * also init'd
1305                          */
1306                         candidates[ i ].sr_err = meta_back_init_one_conn( op,
1307                                 rs, mc, i, LDAP_BACK_CONN_ISPRIV( &mc_curr ),
1308                                 LDAP_BACK_DONTSEND, !new_conn );
1309                         if ( candidates[ i ].sr_err == LDAP_SUCCESS ) {
1310                                 if ( new_conn && ( sendok & LDAP_BACK_BINDING ) ) {
1311                                         LDAP_BACK_CONN_BINDING_SET( &mc->mc_conns[ i ] );
1312                                 }
1313                                 META_CANDIDATE_SET( &candidates[ i ] );
1314                                 ncandidates++;
1315         
1316                         } else {
1317                                 
1318                                 /*
1319                                  * FIXME: in case one target cannot
1320                                  * be init'd, should the other ones
1321                                  * be tried?
1322                                  */
1323                                 META_CANDIDATE_RESET( &candidates[ i ] );
1324                                 err = candidates[ i ].sr_err;
1325                                 continue;
1326                         }
1327                 }
1328
1329                 if ( ncandidates == 0 ) {
1330                         if ( new_conn ) {
1331                                 mc->mc_refcnt = 0;
1332                                 meta_back_conn_free( mc );
1333
1334                         } else {
1335                                 meta_back_release_conn( mi, mc );
1336                         }
1337
1338                         rs->sr_err = LDAP_NO_SUCH_OBJECT;
1339                         rs->sr_text = "Unable to select valid candidates";
1340
1341                         if ( sendok & LDAP_BACK_SENDERR ) {
1342                                 if ( rs->sr_err == LDAP_NO_SUCH_OBJECT ) {
1343                                         rs->sr_matched = op->o_bd->be_suffix[ 0 ].bv_val;
1344                                 }
1345                                 send_ldap_result( op, rs );
1346                                 rs->sr_matched = NULL;
1347                         }
1348
1349                         return NULL;
1350                 }
1351
1352                 goto done;
1353         }
1354         
1355         /*
1356          * looks in cache, if any
1357          */
1358         if ( mi->mi_cache.ttl != META_DNCACHE_DISABLED ) {
1359                 cached = i = meta_dncache_get_target( &mi->mi_cache, &op->o_req_ndn );
1360         }
1361
1362         if ( op_type == META_OP_REQUIRE_SINGLE ) {
1363                 metatarget_t            *mt = NULL;
1364                 metasingleconn_t        *msc = NULL;
1365
1366                 int                     j;
1367
1368                 for ( j = 0; j < mi->mi_ntargets; j++ ) {
1369                         META_CANDIDATE_RESET( &candidates[ j ] );
1370                 }
1371
1372                 /*
1373                  * tries to get a unique candidate
1374                  * (takes care of default target)
1375                  */
1376                 if ( i == META_TARGET_NONE ) {
1377                         i = meta_back_get_candidate( op, rs, &ndn );
1378
1379                         if ( rs->sr_err == LDAP_NO_SUCH_OBJECT && dn_type == META_DNTYPE_PARENT ) {
1380                                 i = meta_back_get_candidate( op, rs, &pndn );
1381                         }
1382         
1383                         if ( i < 0 || rs->sr_err != LDAP_SUCCESS ) {
1384                                 if ( mc != NULL ) {
1385                                         meta_back_release_conn( mi, mc );
1386                                 }
1387
1388                                 if ( sendok & LDAP_BACK_SENDERR ) {
1389                                         if ( rs->sr_err == LDAP_NO_SUCH_OBJECT ) {
1390                                                 rs->sr_matched = op->o_bd->be_suffix[ 0 ].bv_val;
1391                                         }
1392                                         send_ldap_result( op, rs );
1393                                         rs->sr_matched = NULL;
1394                                 }
1395                         
1396                                 return NULL;
1397                         }
1398                 }
1399
1400                 if ( dn_type == META_DNTYPE_NEWPARENT && meta_back_get_candidate( op, rs, op->orr_nnewSup ) != i )
1401                 {
1402                         if ( mc != NULL ) {
1403                                 meta_back_release_conn( mi, mc );
1404                         }
1405
1406                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1407                         rs->sr_text = "Cross-target rename not supported";
1408                         if ( sendok & LDAP_BACK_SENDERR ) {
1409                                 send_ldap_result( op, rs );
1410                         }
1411
1412                         return NULL;
1413                 }
1414
1415                 Debug( LDAP_DEBUG_TRACE,
1416         "==>meta_back_getconn: got target=%d for ndn=\"%s\" from cache\n",
1417                                 i, op->o_req_ndn.bv_val, 0 );
1418
1419                 if ( mc == NULL ) {
1420                         /* Retries searching for a metaconn in the avl tree
1421                          * the reason is that the connection might have been
1422                          * created by meta_back_get_candidate() */
1423                         if ( !( sendok & LDAP_BACK_BINDING ) ) {
1424 retry_lock2:;
1425                                 ldap_pvt_thread_mutex_lock( &mi->mi_conninfo.lai_mutex );
1426                                 mc = (metaconn_t *)avl_find( mi->mi_conninfo.lai_tree, 
1427                                         (caddr_t)&mc_curr, meta_back_conndn_cmp );
1428                                 if ( mc != NULL ) {
1429                                         /* catch taint errors */
1430                                         assert( !LDAP_BACK_CONN_TAINTED( mc ) );
1431
1432                                         /* Don't reuse connections while they're still binding */
1433                                         if ( META_BACK_CONN_CREATING( &mc->mc_conns[ i ] )
1434                                                 || LDAP_BACK_CONN_BINDING( &mc->mc_conns[ i ] ) )
1435                                         {
1436                                                 if ( !LDAP_BACK_USE_TEMPORARIES( mi ) ) {
1437                                                         ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
1438                                                         ldap_pvt_thread_yield();
1439                                                         goto retry_lock2;
1440                                                 }
1441
1442                                                 mc = NULL;
1443
1444                                         } else {
1445                                                 mc->mc_refcnt++;
1446                                         }
1447                                 }
1448                                 ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
1449                         }
1450
1451                         /* Looks like we didn't get a bind. Open a new session... */
1452                         if ( mc == NULL ) {
1453                                 assert( new_conn == 0 );
1454                                 mc = metaconn_alloc( op );
1455                                 mc->mc_conn = mc_curr.mc_conn;
1456                                 ber_dupbv( &mc->mc_local_ndn, &mc_curr.mc_local_ndn );
1457                                 new_conn = 1;
1458                                 if ( sendok & LDAP_BACK_BINDING ) {
1459                                         LDAP_BACK_CONN_BINDING_SET( mc );
1460                                 }
1461                                 if ( LDAP_BACK_CONN_ISPRIV( &mc_curr ) ) {
1462                                         LDAP_BACK_CONN_ISPRIV_SET( mc );
1463
1464                                 } else if ( LDAP_BACK_CONN_ISANON( &mc_curr ) ) {
1465                                         LDAP_BACK_CONN_ISANON_SET( mc );
1466                                 }
1467                         }
1468                 }
1469
1470                 /*
1471                  * Clear all other candidates
1472                  */
1473                 ( void )meta_clear_unused_candidates( op, i );
1474
1475                 mt = mi->mi_targets[ i ];
1476                 msc = &mc->mc_conns[ i ];
1477
1478                 /*
1479                  * The target is activated; if needed, it is
1480                  * also init'd. In case of error, meta_back_init_one_conn
1481                  * sends the appropriate result.
1482                  */
1483                 err = meta_back_init_one_conn( op, rs, mc, i,
1484                         LDAP_BACK_CONN_ISPRIV( &mc_curr ), sendok, !new_conn );
1485                 if ( err != LDAP_SUCCESS ) {
1486                         /*
1487                          * FIXME: in case one target cannot
1488                          * be init'd, should the other ones
1489                          * be tried?
1490                          */
1491                         META_CANDIDATE_RESET( &candidates[ i ] );
1492                         if ( new_conn ) {
1493                                 mc->mc_refcnt = 0;
1494                                 meta_back_conn_free( mc );
1495
1496                         } else {
1497                                 meta_back_release_conn( mi, mc );
1498                         }
1499                         return NULL;
1500                 }
1501
1502                 if ( new_conn && ( sendok & LDAP_BACK_BINDING ) ) {
1503                         LDAP_BACK_CONN_BINDING_SET( &mc->mc_conns[ i ] );
1504                 }
1505
1506                 candidates[ i ].sr_err = LDAP_SUCCESS;
1507                 META_CANDIDATE_SET( &candidates[ i ] );
1508                 ncandidates++;
1509
1510                 if ( candidate ) {
1511                         *candidate = i;
1512                 }
1513
1514         /*
1515          * if no unique candidate ...
1516          */
1517         } else {
1518
1519                 /* Looks like we didn't get a bind. Open a new session... */
1520                 if ( mc == NULL ) {
1521                         assert( new_conn == 0 );
1522                         mc = metaconn_alloc( op );
1523                         mc->mc_conn = mc_curr.mc_conn;
1524                         ber_dupbv( &mc->mc_local_ndn, &mc_curr.mc_local_ndn );
1525                         new_conn = 1;
1526                         if ( LDAP_BACK_CONN_ISPRIV( &mc_curr ) ) {
1527                                 LDAP_BACK_CONN_ISPRIV_SET( mc );
1528
1529                         } else if ( LDAP_BACK_CONN_ISANON( &mc_curr ) ) {
1530                                 LDAP_BACK_CONN_ISANON_SET( mc );
1531                         }
1532                 }
1533
1534                 for ( i = 0; i < mi->mi_ntargets; i++ ) {
1535                         metatarget_t            *mt = mi->mi_targets[ i ];
1536
1537                         META_CANDIDATE_RESET( &candidates[ i ] );
1538
1539                         if ( i == cached 
1540                                 || meta_back_is_candidate( mt, &op->o_req_ndn,
1541                                         op->o_tag == LDAP_REQ_SEARCH ? op->ors_scope : LDAP_SCOPE_SUBTREE ) )
1542                         {
1543
1544                                 /*
1545                                  * The target is activated; if needed, it is
1546                                  * also init'd
1547                                  */
1548                                 int lerr = meta_back_init_one_conn( op, rs, mc, i,
1549                                         LDAP_BACK_CONN_ISPRIV( &mc_curr ),
1550                                         LDAP_BACK_DONTSEND, !new_conn );
1551                                 candidates[ i ].sr_err = lerr;
1552                                 if ( lerr == LDAP_SUCCESS ) {
1553                                         META_CANDIDATE_SET( &candidates[ i ] );
1554                                         ncandidates++;
1555
1556                                         Debug( LDAP_DEBUG_TRACE, "%s: meta_back_getconn[%d]\n",
1557                                                 op->o_log_prefix, i, 0 );
1558
1559                                 } else if ( lerr == LDAP_UNAVAILABLE && !META_BACK_ONERR_STOP( mi ) ) {
1560                                         META_CANDIDATE_SET( &candidates[ i ] );
1561
1562                                         Debug( LDAP_DEBUG_TRACE, "%s: meta_back_getconn[%d] %s\n",
1563                                                 op->o_log_prefix, i,
1564                                                 mt->mt_isquarantined != LDAP_BACK_FQ_NO ? "quarantined" : "unavailable" );
1565
1566                                 } else {
1567                                 
1568                                         /*
1569                                          * FIXME: in case one target cannot
1570                                          * be init'd, should the other ones
1571                                          * be tried?
1572                                          */
1573                                         if ( new_conn ) {
1574                                                 ( void )meta_clear_one_candidate( op, mc, i );
1575                                         }
1576                                         /* leave the target candidate, but record the error for later use */
1577                                         err = lerr;
1578
1579                                         if ( lerr == LDAP_UNAVAILABLE && mt->mt_isquarantined != LDAP_BACK_FQ_NO ) {
1580                                                 Debug( LDAP_DEBUG_TRACE, "%s: meta_back_getconn[%d] quarantined err=%d\n",
1581                                                         op->o_log_prefix, i, lerr );
1582
1583                                         } else {
1584                                                 Debug( LDAP_DEBUG_ANY, "%s: meta_back_getconn[%d] failed err=%d\n",
1585                                                         op->o_log_prefix, i, lerr );
1586                                         }
1587
1588                                         if ( META_BACK_ONERR_STOP( mi ) ) {
1589                                                 if ( sendok & LDAP_BACK_SENDERR ) {
1590                                                         send_ldap_result( op, rs );
1591                                                 }
1592                                                 if ( new_conn ) {
1593                                                         mc->mc_refcnt = 0;
1594                                                         meta_back_conn_free( mc );
1595
1596                                                 } else {
1597                                                         meta_back_release_conn( mi, mc );
1598                                                 }
1599
1600                                                 return NULL;
1601                                         }
1602
1603                                         continue;
1604                                 }
1605
1606                         } else {
1607                                 if ( new_conn ) {
1608                                         ( void )meta_clear_one_candidate( op, mc, i );
1609                                 }
1610                         }
1611                 }
1612
1613                 if ( ncandidates == 0 ) {
1614                         if ( new_conn ) {
1615                                 mc->mc_refcnt = 0;
1616                                 meta_back_conn_free( mc );
1617
1618                         } else {
1619                                 meta_back_release_conn( mi, mc );
1620                         }
1621
1622                         if ( rs->sr_err == LDAP_SUCCESS ) {
1623                                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
1624                                 rs->sr_text = "Unable to select valid candidates";
1625                         }
1626
1627                         if ( sendok & LDAP_BACK_SENDERR ) {
1628                                 if ( rs->sr_err == LDAP_NO_SUCH_OBJECT ) {
1629                                         rs->sr_matched = op->o_bd->be_suffix[ 0 ].bv_val;
1630                                 }
1631                                 send_ldap_result( op, rs );
1632                                 rs->sr_matched = NULL;
1633                         }
1634
1635                         return NULL;
1636                 }
1637         }
1638
1639 done:;
1640         /* clear out meta_back_init_one_conn non-fatal errors */
1641         rs->sr_err = LDAP_SUCCESS;
1642         rs->sr_text = NULL;
1643
1644         /* touch the timestamp */
1645         if ( mi->mi_idle_timeout != 0 ) {
1646                 mc->mc_time = op->o_time;
1647         }
1648
1649         if ( new_conn ) {
1650                 if ( mi->mi_conn_ttl ) {
1651                         mc->mc_create_time = op->o_time;
1652                 }
1653
1654                 /*
1655                  * Inserts the newly created metaconn in the avl tree
1656                  */
1657                 ldap_pvt_thread_mutex_lock( &mi->mi_conninfo.lai_mutex );
1658 #if META_BACK_PRINT_CONNTREE > 0
1659                 meta_back_print_conntree( mi, ">>> meta_back_getconn" );
1660 #endif /* META_BACK_PRINT_CONNTREE */
1661
1662                 err = 0;
1663                 if ( LDAP_BACK_PCONN_ISPRIV( mc ) ) {
1664                         if ( mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_num < mi->mi_conn_priv_max ) {
1665                                 LDAP_TAILQ_INSERT_TAIL( &mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_priv, mc, mc_q );
1666                                 mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_num++;
1667                                 LDAP_BACK_CONN_CACHED_SET( mc );
1668
1669                         } else {
1670                                 LDAP_BACK_CONN_TAINTED_SET( mc );
1671                         }
1672                         rs->sr_err = 0;
1673
1674                 } else if ( !( sendok & LDAP_BACK_BINDING ) ) {
1675                         err = avl_insert( &mi->mi_conninfo.lai_tree, ( caddr_t )mc,
1676                                 meta_back_conndn_cmp, meta_back_conndn_dup );
1677                         LDAP_BACK_CONN_CACHED_SET( mc );
1678                 }
1679
1680 #if META_BACK_PRINT_CONNTREE > 0
1681                 meta_back_print_conntree( mi, "<<< meta_back_getconn" );
1682 #endif /* META_BACK_PRINT_CONNTREE */
1683                 ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
1684
1685                 if ( !LDAP_BACK_PCONN_ISPRIV( mc ) ) {
1686                         /*
1687                          * Err could be -1 in case a duplicate metaconn is inserted
1688                          */
1689                         switch ( err ) {
1690                         case 0:
1691                                 break;
1692
1693                         case -1:
1694                                 LDAP_BACK_CONN_CACHED_CLEAR( mc );
1695                                 /* duplicate: free and try to get the newly created one */
1696                                 if ( !( sendok & LDAP_BACK_BINDING ) && !LDAP_BACK_USE_TEMPORARIES( mi ) ) {
1697                                         mc->mc_refcnt = 0;      
1698                                         meta_back_conn_free( mc );
1699         
1700                                         new_conn = 0;
1701                                         goto retry_lock;
1702                                 }
1703
1704                                 LDAP_BACK_CONN_TAINTED_SET( mc );
1705                                 break;
1706
1707                         default:
1708                                 LDAP_BACK_CONN_CACHED_CLEAR( mc );
1709                                 if ( LogTest( LDAP_DEBUG_ANY ) ) {
1710                                         char buf[STRLENOF("4294967295U") + 1] = { 0 };
1711                                         mi->mi_ldap_extra->connid2str( &mc->mc_base, buf, sizeof(buf) );
1712
1713                                         Debug( LDAP_DEBUG_ANY,
1714                                                 "%s meta_back_getconn: candidates=%d conn=%s insert failed\n",
1715                                                 op->o_log_prefix, ncandidates, buf );
1716                                 }
1717         
1718                                 mc->mc_refcnt = 0;      
1719                                 meta_back_conn_free( mc );
1720
1721                                 rs->sr_err = LDAP_OTHER;
1722                                 rs->sr_text = "Proxy bind collision";
1723                                 if ( sendok & LDAP_BACK_SENDERR ) {
1724                                         send_ldap_result( op, rs );
1725                                 }
1726                                 return NULL;
1727                         }
1728                 }
1729
1730                 if ( LogTest( LDAP_DEBUG_TRACE ) ) {
1731                         char buf[STRLENOF("4294967295U") + 1] = { 0 };
1732                         mi->mi_ldap_extra->connid2str( &mc->mc_base, buf, sizeof(buf) );
1733
1734                         Debug( LDAP_DEBUG_TRACE,
1735                                 "%s meta_back_getconn: candidates=%d conn=%s inserted\n",
1736                                 op->o_log_prefix, ncandidates, buf );
1737                 }
1738
1739         } else {
1740                 if ( LogTest( LDAP_DEBUG_TRACE ) ) {
1741                         char buf[STRLENOF("4294967295U") + 1] = { 0 };
1742                         mi->mi_ldap_extra->connid2str( &mc->mc_base, buf, sizeof(buf) );
1743
1744                         Debug( LDAP_DEBUG_TRACE,
1745                                 "%s meta_back_getconn: candidates=%d conn=%s fetched\n",
1746                                 op->o_log_prefix, ncandidates, buf );
1747                 }
1748         }
1749
1750         return mc;
1751 }
1752
1753 void
1754 meta_back_release_conn_lock(
1755         metainfo_t              *mi,
1756         metaconn_t              *mc,
1757         int                     dolock )
1758 {
1759         assert( mc != NULL );
1760
1761         if ( dolock ) {
1762                 ldap_pvt_thread_mutex_lock( &mi->mi_conninfo.lai_mutex );
1763         }
1764         assert( mc->mc_refcnt > 0 );
1765         mc->mc_refcnt--;
1766         /* NOTE: the connection is removed if either it is tainted
1767          * or if it is shared and no one else is using it.  This needs
1768          * to occur because for intrinsic reasons cached connections
1769          * that are not privileged would live forever and pollute
1770          * the connection space (and eat up resources).  Maybe this
1771          * should be configurable... */
1772         if ( LDAP_BACK_CONN_TAINTED( mc ) || !LDAP_BACK_CONN_CACHED( mc ) ) {
1773 #if META_BACK_PRINT_CONNTREE > 0
1774                 meta_back_print_conntree( mi, ">>> meta_back_release_conn" );
1775 #endif /* META_BACK_PRINT_CONNTREE */
1776
1777                 if ( LDAP_BACK_PCONN_ISPRIV( mc ) ) {
1778                         if ( mc->mc_q.tqe_prev != NULL ) {
1779                                 assert( LDAP_BACK_CONN_CACHED( mc ) );
1780                                 assert( mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_num > 0 );
1781                                 LDAP_TAILQ_REMOVE( &mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_priv, mc, mc_q );
1782                                 mi->mi_conn_priv[ LDAP_BACK_CONN2PRIV( mc ) ].mic_num--;
1783                                 LDAP_TAILQ_ENTRY_INIT( mc, mc_q );
1784
1785                         } else {
1786                                 assert( !LDAP_BACK_CONN_CACHED( mc ) );
1787                         }
1788
1789                 } else if ( LDAP_BACK_CONN_CACHED( mc ) ) {
1790                         metaconn_t      *tmpmc;
1791
1792                         tmpmc = avl_delete( &mi->mi_conninfo.lai_tree,
1793                                 ( caddr_t )mc, meta_back_conndnmc_cmp );
1794
1795                         /* Overparanoid, but useful... */
1796                         assert( tmpmc == NULL || tmpmc == mc );
1797                 }
1798
1799                 LDAP_BACK_CONN_CACHED_CLEAR( mc );
1800
1801 #if META_BACK_PRINT_CONNTREE > 0
1802                 meta_back_print_conntree( mi, "<<< meta_back_release_conn" );
1803 #endif /* META_BACK_PRINT_CONNTREE */
1804
1805                 if ( mc->mc_refcnt == 0 ) {
1806                         meta_back_conn_free( mc );
1807                         mc = NULL;
1808                 }
1809         }
1810
1811         if ( mc != NULL && LDAP_BACK_CONN_BINDING( mc ) ) {
1812                 LDAP_BACK_CONN_BINDING_CLEAR( mc );
1813         }
1814
1815         if ( dolock ) {
1816                 ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
1817         }
1818 }
1819
1820 void
1821 meta_back_quarantine(
1822         Operation       *op,
1823         SlapReply       *rs,
1824         int             candidate )
1825 {
1826         metainfo_t              *mi = (metainfo_t *)op->o_bd->be_private;
1827         metatarget_t            *mt = mi->mi_targets[ candidate ];
1828
1829         slap_retry_info_t       *ri = &mt->mt_quarantine;
1830
1831         ldap_pvt_thread_mutex_lock( &mt->mt_quarantine_mutex );
1832
1833         if ( rs->sr_err == LDAP_UNAVAILABLE ) {
1834                 time_t  new_last = slap_get_time();
1835
1836                 switch ( mt->mt_isquarantined ) {
1837                 case LDAP_BACK_FQ_NO:
1838                         if ( ri->ri_last == new_last ) {
1839                                 goto done;
1840                         }
1841
1842                         Debug( LDAP_DEBUG_ANY,
1843                                 "%s meta_back_quarantine[%d]: enter.\n",
1844                                 op->o_log_prefix, candidate, 0 );
1845
1846                         ri->ri_idx = 0;
1847                         ri->ri_count = 0;
1848                         break;
1849
1850                 case LDAP_BACK_FQ_RETRYING:
1851                         if ( LogTest( LDAP_DEBUG_ANY ) ) {
1852                                 char    buf[ SLAP_TEXT_BUFLEN ];
1853
1854                                 snprintf( buf, sizeof( buf ),
1855                                         "meta_back_quarantine[%d]: block #%d try #%d failed",
1856                                         candidate, ri->ri_idx, ri->ri_count );
1857                                 Debug( LDAP_DEBUG_ANY, "%s %s.\n",
1858                                         op->o_log_prefix, buf, 0 );
1859                         }
1860
1861                         ++ri->ri_count;
1862                         if ( ri->ri_num[ ri->ri_idx ] != SLAP_RETRYNUM_FOREVER
1863                                 && ri->ri_count == ri->ri_num[ ri->ri_idx ] )
1864                         {
1865                                 ri->ri_count = 0;
1866                                 ++ri->ri_idx;
1867                         }
1868                         break;
1869
1870                 default:
1871                         break;
1872                 }
1873
1874                 mt->mt_isquarantined = LDAP_BACK_FQ_YES;
1875                 ri->ri_last = new_last;
1876
1877         } else if ( mt->mt_isquarantined == LDAP_BACK_FQ_RETRYING ) {
1878                 Debug( LDAP_DEBUG_ANY,
1879                         "%s meta_back_quarantine[%d]: exit.\n",
1880                         op->o_log_prefix, candidate, 0 );
1881
1882                 if ( mi->mi_quarantine_f ) {
1883                         (void)mi->mi_quarantine_f( mi, candidate,
1884                                 mi->mi_quarantine_p );
1885                 }
1886
1887                 ri->ri_count = 0;
1888                 ri->ri_idx = 0;
1889                 mt->mt_isquarantined = LDAP_BACK_FQ_NO;
1890         }
1891
1892 done:;
1893         ldap_pvt_thread_mutex_unlock( &mt->mt_quarantine_mutex );
1894 }