]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/cache.c
Unify use of BDB lockers
[openldap] / servers / slapd / back-bdb / cache.c
1 /* cache.c - routines to maintain an in-core cache of entries */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2000-2007 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16
17 #include "portable.h"
18
19 #include <stdio.h>
20
21 #include <ac/errno.h>
22 #include <ac/string.h>
23 #include <ac/socket.h>
24
25 #include "slap.h"
26
27 #include "back-bdb.h"
28
29 #include "ldap_rq.h"
30
31 #ifdef BDB_HIER
32 #define bdb_cache_lru_purge     hdb_cache_lru_purge
33 #endif
34 static void bdb_cache_lru_purge( struct bdb_info *bdb, uint32_t locker );
35
36 static int      bdb_cache_delete_internal(Cache *cache, EntryInfo *e, int decr);
37 #ifdef LDAP_DEBUG
38 #ifdef SLAPD_UNUSED
39 static void     bdb_lru_print(Cache *cache);
40 #endif
41 #endif
42
43 /* For concurrency experiments only! */
44 #if 0
45 #define ldap_pvt_thread_rdwr_wlock(a)   0
46 #define ldap_pvt_thread_rdwr_wunlock(a) 0
47 #define ldap_pvt_thread_rdwr_rlock(a)   0
48 #define ldap_pvt_thread_rdwr_runlock(a) 0
49 #endif
50
51 #if 0
52 #define ldap_pvt_thread_mutex_trylock(a) 0
53 #endif
54
55 static EntryInfo *
56 bdb_cache_entryinfo_new( Cache *cache )
57 {
58         EntryInfo *ei = NULL;
59
60         if ( cache->c_eifree ) {
61                 ldap_pvt_thread_mutex_lock( &cache->c_eifree_mutex );
62                 if ( cache->c_eifree ) {
63                         ei = cache->c_eifree;
64                         cache->c_eifree = ei->bei_lrunext;
65                 }
66                 ldap_pvt_thread_mutex_unlock( &cache->c_eifree_mutex );
67         }
68         if ( !ei ) {
69                 ei = ch_calloc(1, sizeof(EntryInfo));
70                 ldap_pvt_thread_mutex_init( &ei->bei_kids_mutex );
71         }
72
73         ei->bei_state = CACHE_ENTRY_REFERENCED;
74
75         return ei;
76 }
77
78 /* Note - we now use a Second-Chance / Clock algorithm instead of
79  * Least-Recently-Used. This tremendously improves concurrency
80  * because we no longer need to manipulate the lists every time an
81  * entry is touched. We only need to lock the lists when adding
82  * or deleting an entry. It's now a circular doubly-linked list.
83  * We always append to the tail, but the head traverses the circle
84  * during a purge operation.
85  */
86 static void
87 bdb_cache_lru_link( Cache *cache, EntryInfo *ei )
88 {
89         /* Insert into circular LRU list */
90         ldap_pvt_thread_mutex_lock( &cache->lru_tail_mutex );
91         ei->bei_lruprev = cache->c_lrutail;
92         if ( cache->c_lrutail ) {
93                 ei->bei_lrunext = cache->c_lrutail->bei_lrunext;
94                 cache->c_lrutail->bei_lrunext = ei;
95                 if ( ei->bei_lrunext )
96                         ei->bei_lrunext->bei_lruprev = ei;
97         } else {
98                 ei->bei_lrunext = ei->bei_lruprev = ei;
99                 cache->c_lruhead = ei;
100         }
101         cache->c_lrutail = ei;
102         ldap_pvt_thread_mutex_unlock( &cache->lru_tail_mutex );
103 }
104
105 #ifdef NO_THREADS
106 #define NO_DB_LOCK
107 #endif
108
109 /* #define NO_DB_LOCK 1 */
110 /* Note: The BerkeleyDB locks are much slower than regular
111  * mutexes or rdwr locks. But the BDB implementation has the
112  * advantage of using a fixed size lock table, instead of
113  * allocating a lock object per entry in the DB. That's a
114  * key benefit for scaling. It also frees us from worrying
115  * about undetectable deadlocks between BDB activity and our
116  * own cache activity. It's still worth exploring faster
117  * alternatives though.
118  */
119
120 /* Atomically release and reacquire a lock */
121 int
122 bdb_cache_entry_db_relock(
123         struct bdb_info *bdb,
124         u_int32_t locker,
125         EntryInfo *ei,
126         int rw,
127         int tryOnly,
128         DB_LOCK *lock )
129 {
130 #ifdef NO_DB_LOCK
131         return 0;
132 #else
133         int     rc;
134         DBT     lockobj;
135         DB_LOCKREQ list[2];
136
137         if ( !lock ) return 0;
138
139         lockobj.data = &ei->bei_id;
140         lockobj.size = sizeof(ei->bei_id) + 1;
141
142         list[0].op = DB_LOCK_PUT;
143         list[0].lock = *lock;
144         list[1].op = DB_LOCK_GET;
145         list[1].lock = *lock;
146         list[1].mode = rw ? DB_LOCK_WRITE : DB_LOCK_READ;
147         list[1].obj = &lockobj;
148         rc = bdb->bi_dbenv->lock_vec(bdb->bi_dbenv, locker, tryOnly ? DB_LOCK_NOWAIT : 0,
149                 list, 2, NULL );
150
151         if (rc && !tryOnly) {
152                 Debug( LDAP_DEBUG_TRACE,
153                         "bdb_cache_entry_db_relock: entry %ld, rw %d, rc %d\n",
154                         ei->bei_id, rw, rc );
155         } else {
156                 *lock = list[1].lock;
157         }
158         return rc;
159 #endif
160 }
161
162 static int
163 bdb_cache_entry_db_lock( struct bdb_info *bdb, u_int32_t locker, EntryInfo *ei,
164         int rw, int tryOnly, DB_LOCK *lock )
165 {
166 #ifdef NO_DB_LOCK
167         return 0;
168 #else
169         int       rc;
170         DBT       lockobj;
171         int       db_rw;
172
173         if ( !lock ) return 0;
174
175         if (rw)
176                 db_rw = DB_LOCK_WRITE;
177         else
178                 db_rw = DB_LOCK_READ;
179
180         lockobj.data = &ei->bei_id;
181         lockobj.size = sizeof(ei->bei_id) + 1;
182
183         rc = LOCK_GET(bdb->bi_dbenv, locker, tryOnly ? DB_LOCK_NOWAIT : 0,
184                                         &lockobj, db_rw, lock);
185         if (rc && !tryOnly) {
186                 Debug( LDAP_DEBUG_TRACE,
187                         "bdb_cache_entry_db_lock: entry %ld, rw %d, rc %d\n",
188                         ei->bei_id, rw, rc );
189         }
190         return rc;
191 #endif /* NO_DB_LOCK */
192 }
193
194 int
195 bdb_cache_entry_db_unlock ( struct bdb_info *bdb, DB_LOCK *lock )
196 {
197 #ifdef NO_DB_LOCK
198         return 0;
199 #else
200         int rc;
201
202         if ( !lock || lock->mode == DB_LOCK_NG ) return 0;
203
204         rc = LOCK_PUT ( bdb->bi_dbenv, lock );
205         return rc;
206 #endif
207 }
208
209 static int
210 bdb_cache_entryinfo_destroy( EntryInfo *e )
211 {
212         ldap_pvt_thread_mutex_destroy( &e->bei_kids_mutex );
213         free( e->bei_nrdn.bv_val );
214 #ifdef BDB_HIER
215         free( e->bei_rdn.bv_val );
216 #endif
217         free( e );
218         return 0;
219 }
220
221 /* Do a length-ordered sort on normalized RDNs */
222 static int
223 bdb_rdn_cmp( const void *v_e1, const void *v_e2 )
224 {
225         const EntryInfo *e1 = v_e1, *e2 = v_e2;
226         int rc = e1->bei_nrdn.bv_len - e2->bei_nrdn.bv_len;
227         if (rc == 0) {
228                 rc = strncmp( e1->bei_nrdn.bv_val, e2->bei_nrdn.bv_val,
229                         e1->bei_nrdn.bv_len );
230         }
231         return rc;
232 }
233
234 static int
235 bdb_id_cmp( const void *v_e1, const void *v_e2 )
236 {
237         const EntryInfo *e1 = v_e1, *e2 = v_e2;
238         return e1->bei_id - e2->bei_id;
239 }
240
241 /* Create an entryinfo in the cache. Caller must release the locks later.
242  */
243 static int
244 bdb_entryinfo_add_internal(
245         struct bdb_info *bdb,
246         EntryInfo *ei,
247         EntryInfo **res )
248 {
249         EntryInfo *ei2 = NULL;
250
251         *res = NULL;
252
253         ei2 = bdb_cache_entryinfo_new( &bdb->bi_cache );
254
255         ldap_pvt_thread_rdwr_wlock( &bdb->bi_cache.c_rwlock );
256         bdb_cache_entryinfo_lock( ei->bei_parent );
257
258         ei2->bei_id = ei->bei_id;
259         ei2->bei_parent = ei->bei_parent;
260 #ifdef BDB_HIER
261         ei2->bei_rdn = ei->bei_rdn;
262 #endif
263 #ifdef SLAP_ZONE_ALLOC
264         ei2->bei_bdb = bdb;
265 #endif
266
267         /* Add to cache ID tree */
268         if (avl_insert( &bdb->bi_cache.c_idtree, ei2, bdb_id_cmp, avl_dup_error )) {
269                 EntryInfo *eix;
270                 eix = avl_find( bdb->bi_cache.c_idtree, ei2, bdb_id_cmp );
271                 bdb_cache_entryinfo_destroy( ei2 );
272                 ei2 = eix;
273 #ifdef BDB_HIER
274                 /* It got freed above because its value was
275                  * assigned to ei2.
276                  */
277                 ei->bei_rdn.bv_val = NULL;
278 #endif
279         } else {
280                 bdb->bi_cache.c_eiused++;
281                 ber_dupbv( &ei2->bei_nrdn, &ei->bei_nrdn );
282
283                 /* This is a new leaf node. But if parent had no kids, then it was
284                  * a leaf and we would be decrementing that. So, only increment if
285                  * the parent already has kids.
286                  */
287                 if ( ei->bei_parent->bei_kids || !ei->bei_parent->bei_id )
288                         bdb->bi_cache.c_leaves++;
289                 avl_insert( &ei->bei_parent->bei_kids, ei2, bdb_rdn_cmp,
290                         avl_dup_error );
291 #ifdef BDB_HIER
292                 ei->bei_parent->bei_ckids++;
293 #endif
294         }
295         bdb_cache_lru_link( &bdb->bi_cache, ei2 );
296
297         *res = ei2;
298         return 0;
299 }
300
301 /* Find the EntryInfo for the requested DN. If the DN cannot be found, return
302  * the info for its closest ancestor. *res should be NULL to process a
303  * complete DN starting from the tree root. Otherwise *res must be the
304  * immediate parent of the requested DN, and only the RDN will be searched.
305  * The EntryInfo is locked upon return and must be unlocked by the caller.
306  */
307 int
308 bdb_cache_find_ndn(
309         Operation       *op,
310         DB_TXN          *txn,
311         struct berval   *ndn,
312         EntryInfo       **res )
313 {
314         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
315         EntryInfo       ei, *eip, *ei2;
316         int rc = 0;
317         char *ptr;
318
319         /* this function is always called with normalized DN */
320         if ( *res ) {
321                 /* we're doing a onelevel search for an RDN */
322                 ei.bei_nrdn.bv_val = ndn->bv_val;
323                 ei.bei_nrdn.bv_len = dn_rdnlen( op->o_bd, ndn );
324                 eip = *res;
325         } else {
326                 /* we're searching a full DN from the root */
327                 ptr = ndn->bv_val + ndn->bv_len - op->o_bd->be_nsuffix[0].bv_len;
328                 ei.bei_nrdn.bv_val = ptr;
329                 ei.bei_nrdn.bv_len = op->o_bd->be_nsuffix[0].bv_len;
330                 /* Skip to next rdn if suffix is empty */
331                 if ( ei.bei_nrdn.bv_len == 0 ) {
332                         for (ptr = ei.bei_nrdn.bv_val - 2; ptr > ndn->bv_val
333                                 && !DN_SEPARATOR(*ptr); ptr--) /* empty */;
334                         if ( ptr >= ndn->bv_val ) {
335                                 if (DN_SEPARATOR(*ptr)) ptr++;
336                                 ei.bei_nrdn.bv_len = ei.bei_nrdn.bv_val - ptr;
337                                 ei.bei_nrdn.bv_val = ptr;
338                         }
339                 }
340                 eip = &bdb->bi_cache.c_dntree;
341         }
342         
343         for ( bdb_cache_entryinfo_lock( eip ); eip; ) {
344                 eip->bei_state |= CACHE_ENTRY_REFERENCED;
345                 ei.bei_parent = eip;
346                 ei2 = (EntryInfo *)avl_find( eip->bei_kids, &ei, bdb_rdn_cmp );
347                 if ( !ei2 ) {
348                         int len = ei.bei_nrdn.bv_len;
349                                 
350                         if ( BER_BVISEMPTY( ndn )) {
351                                 *res = eip;
352                                 return LDAP_SUCCESS;
353                         }
354
355                         ei.bei_nrdn.bv_len = ndn->bv_len -
356                                 (ei.bei_nrdn.bv_val - ndn->bv_val);
357                         bdb_cache_entryinfo_unlock( eip );
358
359                         rc = bdb_dn2id( op, txn, &ei.bei_nrdn, &ei );
360                         if (rc) {
361                                 bdb_cache_entryinfo_lock( eip );
362                                 *res = eip;
363                                 return rc;
364                         }
365
366                         /* DN exists but needs to be added to cache */
367                         ei.bei_nrdn.bv_len = len;
368                         rc = bdb_entryinfo_add_internal( bdb, &ei, &ei2 );
369                         /* add_internal left eip and c_rwlock locked */
370                         ldap_pvt_thread_rdwr_wunlock( &bdb->bi_cache.c_rwlock );
371                         if ( rc ) {
372                                 *res = eip;
373                                 return rc;
374                         }
375                 } else if ( ei2->bei_state & CACHE_ENTRY_DELETED ) {
376                         /* In the midst of deleting? Give it a chance to
377                          * complete.
378                          */
379                         bdb_cache_entryinfo_unlock( eip );
380                         ldap_pvt_thread_yield();
381                         bdb_cache_entryinfo_lock( eip );
382                         *res = eip;
383                         return DB_NOTFOUND;
384                 }
385                 bdb_cache_entryinfo_unlock( eip );
386                 bdb_cache_entryinfo_lock( ei2 );
387
388                 eip = ei2;
389
390                 /* Advance to next lower RDN */
391                 for (ptr = ei.bei_nrdn.bv_val - 2; ptr > ndn->bv_val
392                         && !DN_SEPARATOR(*ptr); ptr--) /* empty */;
393                 if ( ptr >= ndn->bv_val ) {
394                         if (DN_SEPARATOR(*ptr)) ptr++;
395                         ei.bei_nrdn.bv_len = ei.bei_nrdn.bv_val - ptr - 1;
396                         ei.bei_nrdn.bv_val = ptr;
397                 }
398                 if ( ptr < ndn->bv_val ) {
399                         *res = eip;
400                         break;
401                 }
402         }
403
404         return rc;
405 }
406
407 #ifdef BDB_HIER
408 /* Walk up the tree from a child node, looking for an ID that's already
409  * been linked into the cache.
410  */
411 int
412 hdb_cache_find_parent(
413         Operation *op,
414         DB_TXN *txn,
415         u_int32_t       locker,
416         ID id,
417         EntryInfo **res )
418 {
419         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
420         EntryInfo ei, eip, *ei2 = NULL, *ein = NULL, *eir = NULL;
421         int rc;
422
423         ei.bei_id = id;
424         ei.bei_kids = NULL;
425         ei.bei_ckids = 0;
426
427         for (;;) {
428                 rc = hdb_dn2id_parent( op, txn, locker, &ei, &eip.bei_id );
429                 if ( rc ) break;
430
431                 /* Save the previous node, if any */
432                 ei2 = ein;
433
434                 /* Create a new node for the current ID */
435                 ein = bdb_cache_entryinfo_new( &bdb->bi_cache );
436                 ein->bei_id = ei.bei_id;
437                 ein->bei_kids = ei.bei_kids;
438                 ein->bei_nrdn = ei.bei_nrdn;
439                 ein->bei_rdn = ei.bei_rdn;
440                 ein->bei_ckids = ei.bei_ckids;
441 #ifdef SLAP_ZONE_ALLOC
442                 ein->bei_bdb = bdb;
443 #endif
444                 ei.bei_ckids = 0;
445                 
446                 /* This node is not fully connected yet */
447                 ein->bei_state |= CACHE_ENTRY_NOT_LINKED;
448
449                 /* Insert this node into the ID tree */
450                 ldap_pvt_thread_rdwr_wlock( &bdb->bi_cache.c_rwlock );
451                 if ( avl_insert( &bdb->bi_cache.c_idtree, (caddr_t)ein,
452                         bdb_id_cmp, avl_dup_error ) ) {
453
454                         /* Someone else created this node just before us.
455                          * Free our new copy and use the existing one.
456                          */
457                         bdb_cache_entryinfo_destroy( ein );
458                         ein = (EntryInfo *)avl_find( bdb->bi_cache.c_idtree,
459                                 (caddr_t) &ei, bdb_id_cmp );
460                         
461                         /* Link in any kids we've already processed */
462                         if ( ei2 ) {
463                                 bdb_cache_entryinfo_lock( ein );
464                                 avl_insert( &ein->bei_kids, (caddr_t)ei2,
465                                         bdb_rdn_cmp, avl_dup_error );
466                                 ein->bei_ckids++;
467                                 bdb_cache_entryinfo_unlock( ein );
468                         }
469                 } else {
470                         bdb_cache_lru_link( &bdb->bi_cache, ein );
471                 }
472
473                 /* If this is the first time, save this node
474                  * to be returned later.
475                  */
476                 if ( eir == NULL ) eir = ein;
477
478                 /* If there was a previous node, link it to this one */
479                 if ( ei2 ) ei2->bei_parent = ein;
480
481                 /* Look for this node's parent */
482                 if ( eip.bei_id ) {
483                         ei2 = (EntryInfo *) avl_find( bdb->bi_cache.c_idtree,
484                                         (caddr_t) &eip, bdb_id_cmp );
485                 } else {
486                         ei2 = &bdb->bi_cache.c_dntree;
487                 }
488                 bdb->bi_cache.c_eiused++;
489                 if ( ei2 && ( ei2->bei_kids || !ei2->bei_id ))
490                                 bdb->bi_cache.c_leaves++;
491                 ldap_pvt_thread_rdwr_wunlock( &bdb->bi_cache.c_rwlock );
492
493                 /* Got the parent, link in and we're done. */
494                 if ( ei2 ) {
495                         bdb_cache_entryinfo_lock( ei2 );
496                         ein->bei_parent = ei2;
497
498                         avl_insert( &ei2->bei_kids, (caddr_t)ein, bdb_rdn_cmp,
499                                 avl_dup_error);
500                         ei2->bei_ckids++;
501
502                         /* Reset all the state info */
503                         for (ein = eir; ein != ei2; ein=ein->bei_parent)
504                                 ein->bei_state &= ~CACHE_ENTRY_NOT_LINKED;
505
506                         bdb_cache_entryinfo_unlock( ei2 );
507                         bdb_cache_entryinfo_lock( eir );
508
509                         *res = eir;
510                         break;
511                 }
512                 ei.bei_kids = NULL;
513                 ei.bei_id = eip.bei_id;
514                 ei.bei_ckids = 1;
515                 avl_insert( &ei.bei_kids, (caddr_t)ein, bdb_rdn_cmp,
516                         avl_dup_error );
517         }
518         return rc;
519 }
520
521 /* Used by hdb_dn2idl when loading the EntryInfo for all the children
522  * of a given node
523  */
524 int hdb_cache_load(
525         struct bdb_info *bdb,
526         EntryInfo *ei,
527         EntryInfo **res )
528 {
529         EntryInfo *ei2;
530         int rc;
531
532         /* See if we already have this one */
533         bdb_cache_entryinfo_lock( ei->bei_parent );
534         ei2 = (EntryInfo *)avl_find( ei->bei_parent->bei_kids, ei, bdb_rdn_cmp );
535         bdb_cache_entryinfo_unlock( ei->bei_parent );
536
537         if ( !ei2 ) {
538                 /* Not found, add it */
539                 struct berval bv;
540
541                 /* bei_rdn was not malloc'd before, do it now */
542                 ber_dupbv( &bv, &ei->bei_rdn );
543                 ei->bei_rdn = bv;
544
545                 rc = bdb_entryinfo_add_internal( bdb, ei, res );
546                 bdb_cache_entryinfo_unlock( ei->bei_parent );
547                 ldap_pvt_thread_rdwr_wunlock( &bdb->bi_cache.c_rwlock );
548         } else {
549                 /* Found, return it */
550                 *res = ei2;
551                 return 0;
552         }
553         return rc;
554 }
555 #endif
556
557 static void
558 bdb_cache_lru_purge( struct bdb_info *bdb, uint32_t locker )
559 {
560         DB_LOCK         lock;
561         EntryInfo *elru, *elnext;
562         int count, islocked;
563
564         /* Don't bother if we can't get the lock */
565         if ( ldap_pvt_thread_mutex_trylock( &bdb->bi_cache.lru_head_mutex ) )
566                 return;
567
568         if ( bdb->bi_cache.c_cursize <= bdb->bi_cache.c_maxsize ) {
569                 ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.lru_head_mutex );
570                 return;
571         }
572
573         count = 0;
574         /* Look for an unused entry to remove */
575         for (elru = bdb->bi_cache.c_lruhead; elru; elru = elnext ) {
576                 elnext = elru->bei_lrunext;
577
578                 if ( ldap_pvt_thread_mutex_trylock( &elru->bei_kids_mutex ))
579                         continue;
580
581                 /* This flag implements the clock replacement behavior */
582                 if ( elru->bei_state & ( CACHE_ENTRY_REFERENCED )) {
583                         elru->bei_state &= ~CACHE_ENTRY_REFERENCED;
584                         bdb_cache_entryinfo_unlock( elru );
585                         continue;
586                 }
587
588                 /* If this node is in the process of linking into the cache,
589                  * or this node is being deleted, skip it.
590                  *
591                  * Also, if this node has no entry attached, skip it, there's
592                  * nothing to purge anyway.
593                  */
594                 if (( elru->bei_state & ( CACHE_ENTRY_NOT_LINKED |
595                         CACHE_ENTRY_DELETED | CACHE_ENTRY_LOADING )) ||
596                         !elru->bei_e ) {
597                         bdb_cache_entryinfo_unlock( elru );
598                         continue;
599                 }
600
601                 /* entryinfo is locked */
602                 islocked = 1;
603
604                 /* If we can successfully writelock it, then
605                  * the object is idle.
606                  */
607                 if ( bdb_cache_entry_db_lock( bdb, locker, elru, 1, 1, &lock ) == 0 ) {
608
609                         /* Free entry for this node if it's present */
610                         if ( elru->bei_e ) {
611                                 elru->bei_e->e_private = NULL;
612 #ifdef SLAP_ZONE_ALLOC
613                                 bdb_entry_return( bdb, elru->bei_e, elru->bei_zseq );
614 #else
615                                 bdb_entry_return( elru->bei_e );
616 #endif
617                                 elru->bei_e = NULL;
618                                 count++;
619                         }
620                         bdb_cache_entry_db_unlock( bdb, &lock );
621
622                         /* ITS#4010 if we're in slapcat, and this node is a leaf
623                          * node, free it.
624                          *
625                          * FIXME: we need to do this for slapd as well, (which is
626                          * why we compute bi_cache.c_leaves now) but at the moment
627                          * we can't because it causes unresolvable deadlocks. 
628                          */
629                         if ( slapMode & SLAP_TOOL_READONLY ) {
630                                 if ( !elru->bei_kids ) {
631                                         bdb_cache_delete_internal( &bdb->bi_cache, elru, 0 );
632                                         bdb_cache_delete_cleanup( &bdb->bi_cache, elru );
633                                         islocked = 0;
634                                 }
635                                 /* Leave node on LRU list for a future pass */
636                         }
637                 }
638
639                 if ( islocked )
640                         bdb_cache_entryinfo_unlock( elru );
641
642                 if ( count >= bdb->bi_cache.c_minfree ) {
643                         ldap_pvt_thread_mutex_lock( &bdb->bi_cache.c_count_mutex );
644                         bdb->bi_cache.c_cursize -= count;
645                         ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.c_count_mutex );
646                         break;
647                 }
648         }
649
650         bdb->bi_cache.c_lruhead = elnext;
651         ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.lru_head_mutex );
652 }
653
654 EntryInfo *
655 bdb_cache_find_info(
656         struct bdb_info *bdb,
657         ID id )
658 {
659         EntryInfo       ei = { 0 },
660                         *ei2;
661
662         ei.bei_id = id;
663
664         ldap_pvt_thread_rdwr_rlock( &bdb->bi_cache.c_rwlock );
665         ei2 = (EntryInfo *) avl_find( bdb->bi_cache.c_idtree,
666                                         (caddr_t) &ei, bdb_id_cmp );
667         ldap_pvt_thread_rdwr_runlock( &bdb->bi_cache.c_rwlock );
668         return ei2;
669 }
670
671 /*
672  * cache_find_id - find an entry in the cache, given id.
673  * The entry is locked for Read upon return. Call with islocked TRUE if
674  * the supplied *eip was already locked.
675  */
676
677 int
678 bdb_cache_find_id(
679         Operation *op,
680         DB_TXN  *tid,
681         ID                              id,
682         EntryInfo       **eip,
683         int             islocked,
684         u_int32_t       locker,
685         DB_LOCK         *lock )
686 {
687         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
688         Entry   *ep = NULL;
689         int     rc = 0, load = 0;
690         EntryInfo ei = { 0 };
691
692         ei.bei_id = id;
693
694 #ifdef SLAP_ZONE_ALLOC
695         slap_zh_rlock(bdb->bi_cache.c_zctx);
696 #endif
697         /* If we weren't given any info, see if we have it already cached */
698         if ( !*eip ) {
699 again:  ldap_pvt_thread_rdwr_rlock( &bdb->bi_cache.c_rwlock );
700                 *eip = (EntryInfo *) avl_find( bdb->bi_cache.c_idtree,
701                         (caddr_t) &ei, bdb_id_cmp );
702                 if ( *eip ) {
703                         /* If the lock attempt fails, the info is in use */
704                         if ( ldap_pvt_thread_mutex_trylock(
705                                         &(*eip)->bei_kids_mutex )) {
706                                 ldap_pvt_thread_rdwr_runlock( &bdb->bi_cache.c_rwlock );
707                                 /* If this node is being deleted, treat
708                                  * as if the delete has already finished
709                                  */
710                                 if ( (*eip)->bei_state & CACHE_ENTRY_DELETED ) {
711                                         return DB_NOTFOUND;
712                                 }
713                                 /* otherwise, wait for the info to free up */
714                                 ldap_pvt_thread_yield();
715                                 goto again;
716                         }
717                         /* If this info isn't hooked up to its parent yet,
718                          * unlock and wait for it to be fully initialized
719                          */
720                         if ( (*eip)->bei_state & CACHE_ENTRY_NOT_LINKED ) {
721                                 bdb_cache_entryinfo_unlock( *eip );
722                                 ldap_pvt_thread_rdwr_runlock( &bdb->bi_cache.c_rwlock );
723                                 ldap_pvt_thread_yield();
724                                 goto again;
725                         }
726                         islocked = 1;
727                 }
728                 ldap_pvt_thread_rdwr_runlock( &bdb->bi_cache.c_rwlock );
729         }
730
731         /* See if the ID exists in the database; add it to the cache if so */
732         if ( !*eip ) {
733 #ifndef BDB_HIER
734                 rc = bdb_id2entry( op->o_bd, tid, locker, id, &ep );
735                 if ( rc == 0 ) {
736                         rc = bdb_cache_find_ndn( op, tid,
737                                 &ep->e_nname, eip );
738                         if ( *eip ) islocked = 1;
739                         if ( rc ) {
740                                 ep->e_private = NULL;
741 #ifdef SLAP_ZONE_ALLOC
742                                 bdb_entry_return( bdb, ep, (*eip)->bei_zseq );
743 #else
744                                 bdb_entry_return( ep );
745 #endif
746                                 ep = NULL;
747                         }
748                 }
749 #else
750                 rc = hdb_cache_find_parent(op, tid, locker, id, eip );
751                 if ( rc == 0 ) islocked = 1;
752 #endif
753         }
754
755         /* Ok, we found the info, do we have the entry? */
756         if ( rc == 0 ) {
757                 if ( (*eip)->bei_state & CACHE_ENTRY_DELETED ) {
758                         rc = DB_NOTFOUND;
759                 } else {
760                         /* Make sure only one thread tries to load the entry */
761 load1:
762 #ifdef SLAP_ZONE_ALLOC
763                         if ((*eip)->bei_e && !slap_zn_validate(
764                                         bdb->bi_cache.c_zctx, (*eip)->bei_e, (*eip)->bei_zseq)) {
765                                 (*eip)->bei_e = NULL;
766                                 (*eip)->bei_zseq = 0;
767                         }
768 #endif
769                         if ( !(*eip)->bei_e && !((*eip)->bei_state & CACHE_ENTRY_LOADING)) {
770                                 load = 1;
771                                 (*eip)->bei_state |= CACHE_ENTRY_LOADING;
772                         }
773                         if ( islocked ) {
774                                 bdb_cache_entryinfo_unlock( *eip );
775                                 islocked = 0;
776                         }
777                         rc = bdb_cache_entry_db_lock( bdb, locker, *eip, load, 0, lock );
778                         if ( (*eip)->bei_state & CACHE_ENTRY_DELETED ) {
779                                 rc = DB_NOTFOUND;
780                                 bdb_cache_entry_db_unlock( bdb, lock );
781                         } else if ( rc == 0 ) {
782                                 if ( load ) {
783                                         if ( !ep) {
784                                                 rc = bdb_id2entry( op->o_bd, tid, locker, id, &ep );
785                                         }
786                                         if ( rc == 0 ) {
787                                                 ep->e_private = *eip;
788 #ifdef BDB_HIER
789                                                 bdb_fix_dn( ep, 0 );
790 #endif
791                                                 (*eip)->bei_e = ep;
792 #ifdef SLAP_ZONE_ALLOC
793                                                 (*eip)->bei_zseq = *((ber_len_t *)ep - 2);
794 #endif
795                                                 ep = NULL;
796                                         }
797                                         if ( rc == 0 ) {
798                                                 /* If we succeeded, downgrade back to a readlock. */
799                                                 rc = bdb_cache_entry_db_relock( bdb, locker,
800                                                         *eip, 0, 0, lock );
801                                         } else {
802                                                 /* Otherwise, release the lock. */
803                                                 bdb_cache_entry_db_unlock( bdb, lock );
804                                         }
805                                         bdb_cache_entryinfo_lock( *eip );
806                                         (*eip)->bei_state ^= CACHE_ENTRY_LOADING;
807                                         bdb_cache_entryinfo_unlock( *eip );
808                                 } else if ( !(*eip)->bei_e ) {
809                                         /* Some other thread is trying to load the entry,
810                                          * wait for it to finish.
811                                          */
812                                         bdb_cache_entry_db_unlock( bdb, lock );
813                                         bdb_cache_entryinfo_lock( *eip );
814                                         islocked = 1;
815                                         goto load1;
816 #ifdef BDB_HIER
817                                 } else {
818                                         /* Check for subtree renames
819                                          */
820                                         rc = bdb_fix_dn( (*eip)->bei_e, 1 );
821                                         if ( rc ) {
822                                                 bdb_cache_entry_db_relock( bdb,
823                                                         locker, *eip, 1, 0, lock );
824                                                 /* check again in case other modifier did it already */
825                                                 if ( bdb_fix_dn( (*eip)->bei_e, 1 ) )
826                                                         rc = bdb_fix_dn( (*eip)->bei_e, 2 );
827                                                 bdb_cache_entry_db_relock( bdb,
828                                                         locker, *eip, 0, 0, lock );
829                                         }
830 #endif
831                                 }
832
833                         }
834                 }
835         }
836         if ( islocked ) {
837                 bdb_cache_entryinfo_unlock( *eip );
838         }
839         if ( ep ) {
840                 ep->e_private = NULL;
841 #ifdef SLAP_ZONE_ALLOC
842                 bdb_entry_return( bdb, ep, (*eip)->bei_zseq );
843 #else
844                 bdb_entry_return( ep );
845 #endif
846         }
847         if ( rc == 0 ) {
848                 int purge = 0;
849
850                 if ( load ) {
851                         ldap_pvt_thread_mutex_lock( &bdb->bi_cache.c_count_mutex );
852                         bdb->bi_cache.c_cursize++;
853                         if ( bdb->bi_cache.c_cursize > bdb->bi_cache.c_maxsize )
854                                 purge = 1;
855                         ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.c_count_mutex );
856                 }
857                 if ( purge )
858                         bdb_cache_lru_purge( bdb, locker );
859         }
860
861 #ifdef SLAP_ZONE_ALLOC
862         if (rc == 0 && (*eip)->bei_e) {
863                 slap_zn_rlock(bdb->bi_cache.c_zctx, (*eip)->bei_e);
864         }
865         slap_zh_runlock(bdb->bi_cache.c_zctx);
866 #endif
867         return rc;
868 }
869
870 int
871 bdb_cache_children(
872         Operation *op,
873         DB_TXN *txn,
874         Entry *e )
875 {
876         int rc;
877
878         if ( BEI(e)->bei_kids ) {
879                 return 0;
880         }
881         if ( BEI(e)->bei_state & CACHE_ENTRY_NO_KIDS ) {
882                 return DB_NOTFOUND;
883         }
884         rc = bdb_dn2id_children( op, txn, e );
885         if ( rc == DB_NOTFOUND ) {
886                 BEI(e)->bei_state |= CACHE_ENTRY_NO_KIDS | CACHE_ENTRY_NO_GRANDKIDS;
887         }
888         return rc;
889 }
890
891 /* Update the cache after a successful database Add. */
892 int
893 bdb_cache_add(
894         struct bdb_info *bdb,
895         EntryInfo *eip,
896         Entry *e,
897         struct berval *nrdn,
898         u_int32_t locker,
899         DB_LOCK *lock )
900 {
901         EntryInfo *new, ei;
902         int rc, purge = 0;
903 #ifdef BDB_HIER
904         struct berval rdn = e->e_name;
905 #endif
906
907         ei.bei_id = e->e_id;
908         ei.bei_parent = eip;
909         ei.bei_nrdn = *nrdn;
910         ei.bei_lockpad = 0;
911
912         /* Lock this entry so that bdb_add can run to completion.
913          * It can only fail if BDB has run out of lock resources.
914          */
915         rc = bdb_cache_entry_db_lock( bdb, locker, &ei, 0, 0, lock );
916         if ( rc ) {
917                 bdb_cache_entryinfo_unlock( eip );
918                 return rc;
919         }
920
921 #ifdef BDB_HIER
922         if ( nrdn->bv_len != e->e_nname.bv_len ) {
923                 char *ptr = ber_bvchr( &rdn, ',' );
924                 assert( ptr != NULL );
925                 rdn.bv_len = ptr - rdn.bv_val;
926         }
927         ber_dupbv( &ei.bei_rdn, &rdn );
928         if ( eip->bei_dkids ) eip->bei_dkids++;
929 #endif
930
931         rc = bdb_entryinfo_add_internal( bdb, &ei, &new );
932         /* bdb_csn_commit can cause this when adding the database root entry */
933         if ( new->bei_e ) {
934                 new->bei_e->e_private = NULL;
935 #ifdef SLAP_ZONE_ALLOC
936                 bdb_entry_return( bdb, new->bei_e, new->bei_zseq );
937 #else
938                 bdb_entry_return( new->bei_e );
939 #endif
940         }
941         new->bei_e = e;
942         e->e_private = new;
943         new->bei_state |= CACHE_ENTRY_NO_KIDS | CACHE_ENTRY_NO_GRANDKIDS;
944         eip->bei_state &= ~CACHE_ENTRY_NO_KIDS;
945         if (eip->bei_parent) {
946                 eip->bei_parent->bei_state &= ~CACHE_ENTRY_NO_GRANDKIDS;
947         }
948         bdb_cache_entryinfo_unlock( eip );
949
950         ldap_pvt_thread_rdwr_wunlock( &bdb->bi_cache.c_rwlock );
951         ldap_pvt_thread_mutex_lock( &bdb->bi_cache.c_count_mutex );
952         ++bdb->bi_cache.c_cursize;
953         if ( bdb->bi_cache.c_cursize > bdb->bi_cache.c_maxsize )
954                 purge = 1;
955         ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.c_count_mutex );
956
957         if ( purge )
958                 bdb_cache_lru_purge( bdb, locker );
959
960         return rc;
961 }
962
963 int
964 bdb_cache_modify(
965         struct bdb_info *bdb,
966         Entry *e,
967         Attribute *newAttrs,
968         u_int32_t locker,
969         DB_LOCK *lock )
970 {
971         EntryInfo *ei = BEI(e);
972         int rc;
973         /* Get write lock on data */
974         rc = bdb_cache_entry_db_relock( bdb, locker, ei, 1, 0, lock );
975
976         /* If we've done repeated mods on a cached entry, then e_attrs
977          * is no longer contiguous with the entry, and must be freed.
978          */
979         if ( ! rc ) {
980                 if ( (void *)e->e_attrs != (void *)(e+1) ) {
981                         attrs_free( e->e_attrs ); 
982                 }
983                 e->e_attrs = newAttrs;
984         }
985         return rc;
986 }
987
988 /*
989  * Change the rdn in the entryinfo. Also move to a new parent if needed.
990  */
991 int
992 bdb_cache_modrdn(
993         struct bdb_info *bdb,
994         Entry *e,
995         struct berval *nrdn,
996         Entry *new,
997         EntryInfo *ein,
998         u_int32_t locker,
999         DB_LOCK *lock )
1000 {
1001         EntryInfo *ei = BEI(e), *pei;
1002         int rc;
1003 #ifdef BDB_HIER
1004         struct berval rdn;
1005 #endif
1006
1007         /* Get write lock on data */
1008         rc =  bdb_cache_entry_db_relock( bdb, locker, ei, 1, 0, lock );
1009         if ( rc ) return rc;
1010
1011         /* If we've done repeated mods on a cached entry, then e_attrs
1012          * is no longer contiguous with the entry, and must be freed.
1013          */
1014         if ( (void *)e->e_attrs != (void *)(e+1) ) {
1015                 attrs_free( e->e_attrs );
1016         }
1017         e->e_attrs = new->e_attrs;
1018         if( e->e_nname.bv_val < e->e_bv.bv_val ||
1019                 e->e_nname.bv_val > e->e_bv.bv_val + e->e_bv.bv_len )
1020         {
1021                 ch_free(e->e_name.bv_val);
1022                 ch_free(e->e_nname.bv_val);
1023         }
1024         e->e_name = new->e_name;
1025         e->e_nname = new->e_nname;
1026
1027         /* Lock the parent's kids AVL tree */
1028         pei = ei->bei_parent;
1029         bdb_cache_entryinfo_lock( pei );
1030         avl_delete( &pei->bei_kids, (caddr_t) ei, bdb_rdn_cmp );
1031         free( ei->bei_nrdn.bv_val );
1032         ber_dupbv( &ei->bei_nrdn, nrdn );
1033
1034         if ( !pei->bei_kids )
1035                 pei->bei_state |= CACHE_ENTRY_NO_KIDS | CACHE_ENTRY_NO_GRANDKIDS;
1036
1037 #ifdef BDB_HIER
1038         free( ei->bei_rdn.bv_val );
1039
1040         rdn = e->e_name;
1041         if ( nrdn->bv_len != e->e_nname.bv_len ) {
1042                 char *ptr = ber_bvchr(&rdn, ',');
1043                 assert( ptr != NULL );
1044                 rdn.bv_len = ptr - rdn.bv_val;
1045         }
1046         ber_dupbv( &ei->bei_rdn, &rdn );
1047         pei->bei_ckids--;
1048         if ( pei->bei_dkids ) pei->bei_dkids--;
1049 #endif
1050
1051         if (!ein) {
1052                 ein = ei->bei_parent;
1053         } else {
1054                 ei->bei_parent = ein;
1055                 bdb_cache_entryinfo_unlock( pei );
1056                 bdb_cache_entryinfo_lock( ein );
1057         }
1058         /* parent now has kids */
1059         if ( ein->bei_state & CACHE_ENTRY_NO_KIDS )
1060                 ein->bei_state ^= CACHE_ENTRY_NO_KIDS;
1061
1062 #ifdef BDB_HIER
1063         /* parent might now have grandkids */
1064         if ( ein->bei_state & CACHE_ENTRY_NO_GRANDKIDS &&
1065                 !(ei->bei_state & (CACHE_ENTRY_NO_KIDS)))
1066                 ein->bei_state ^= CACHE_ENTRY_NO_GRANDKIDS;
1067
1068         {
1069                 /* Record the generation number of this change */
1070                 ldap_pvt_thread_mutex_lock( &bdb->bi_modrdns_mutex );
1071                 bdb->bi_modrdns++;
1072                 ei->bei_modrdns = bdb->bi_modrdns;
1073                 ldap_pvt_thread_mutex_unlock( &bdb->bi_modrdns_mutex );
1074         }
1075         ein->bei_ckids++;
1076         if ( ein->bei_dkids ) ein->bei_dkids++;
1077 #endif
1078         avl_insert( &ein->bei_kids, ei, bdb_rdn_cmp, avl_dup_error );
1079         bdb_cache_entryinfo_unlock( ein );
1080         return rc;
1081 }
1082 /*
1083  * cache_delete - delete the entry e from the cache. 
1084  *
1085  * returns:     0       e was deleted ok
1086  *              1       e was not in the cache
1087  *              -1      something bad happened
1088  */
1089 int
1090 bdb_cache_delete(
1091         struct bdb_info *bdb,
1092     Entry               *e,
1093     u_int32_t   locker,
1094     DB_LOCK     *lock )
1095 {
1096         EntryInfo *ei = BEI(e);
1097         int     rc;
1098
1099         assert( e->e_private != NULL );
1100
1101         /* Set this early, warn off any queriers */
1102         ei->bei_state |= CACHE_ENTRY_DELETED;
1103
1104         /* Lock the entry's info */
1105         bdb_cache_entryinfo_lock( ei );
1106
1107         /* Get write lock on the data */
1108         rc = bdb_cache_entry_db_relock( bdb, locker, ei, 1, 0, lock );
1109         if ( rc ) {
1110                 /* couldn't lock, undo and give up */
1111                 ei->bei_state ^= CACHE_ENTRY_DELETED;
1112                 bdb_cache_entryinfo_unlock( ei );
1113                 return rc;
1114         }
1115
1116         Debug( LDAP_DEBUG_TRACE, "====> bdb_cache_delete( %ld )\n",
1117                 e->e_id, 0, 0 );
1118
1119         /* set lru mutex */
1120         ldap_pvt_thread_mutex_lock( &bdb->bi_cache.lru_head_mutex );
1121
1122         rc = bdb_cache_delete_internal( &bdb->bi_cache, e->e_private, 1 );
1123
1124         /* free lru mutex */
1125         ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.lru_head_mutex );
1126
1127         /* Leave entry info locked */
1128
1129         return( rc );
1130 }
1131
1132 void
1133 bdb_cache_delete_cleanup(
1134         Cache *cache,
1135         EntryInfo *ei )
1136 {
1137         if ( ei->bei_e ) {
1138                 ei->bei_e->e_private = NULL;
1139 #ifdef SLAP_ZONE_ALLOC
1140                 bdb_entry_return( ei->bei_bdb, ei->bei_e, ei->bei_zseq );
1141 #else
1142                 bdb_entry_return( ei->bei_e );
1143 #endif
1144                 ei->bei_e = NULL;
1145         }
1146
1147         free( ei->bei_nrdn.bv_val );
1148         ei->bei_nrdn.bv_val = NULL;
1149 #ifdef BDB_HIER
1150         free( ei->bei_rdn.bv_val );
1151         ei->bei_rdn.bv_val = NULL;
1152         ei->bei_modrdns = 0;
1153         ei->bei_ckids = 0;
1154         ei->bei_dkids = 0;
1155 #endif
1156         ei->bei_parent = NULL;
1157         ei->bei_kids = NULL;
1158         ei->bei_lruprev = NULL;
1159
1160         ldap_pvt_thread_mutex_lock( &cache->c_eifree_mutex );
1161         ei->bei_lrunext = cache->c_eifree;
1162         cache->c_eifree = ei;
1163         ldap_pvt_thread_mutex_unlock( &cache->c_eifree_mutex );
1164         bdb_cache_entryinfo_unlock( ei );
1165 }
1166
1167 static int
1168 bdb_cache_delete_internal(
1169     Cache       *cache,
1170     EntryInfo           *e,
1171     int         decr )
1172 {
1173         int rc = 0;     /* return code */
1174         int decr_leaf = 0;
1175
1176         /* Lock the parent's kids tree */
1177         bdb_cache_entryinfo_lock( e->bei_parent );
1178
1179 #ifdef BDB_HIER
1180         e->bei_parent->bei_ckids--;
1181         if ( decr && e->bei_parent->bei_dkids ) e->bei_parent->bei_dkids--;
1182 #endif
1183         /* dn tree */
1184         if ( avl_delete( &e->bei_parent->bei_kids, (caddr_t) e, bdb_rdn_cmp )
1185                 == NULL )
1186         {
1187                 rc = -1;
1188         }
1189         if ( e->bei_parent->bei_kids )
1190                 decr_leaf = 1;
1191
1192         bdb_cache_entryinfo_unlock( e->bei_parent );
1193
1194         ldap_pvt_thread_rdwr_wlock( &cache->c_rwlock );
1195         /* id tree */
1196         if ( avl_delete( &cache->c_idtree, (caddr_t) e, bdb_id_cmp )) {
1197                 cache->c_eiused--;
1198                 if ( decr_leaf )
1199                         cache->c_leaves--;
1200         } else {
1201                 rc = -1;
1202         }
1203         ldap_pvt_thread_rdwr_wunlock( &cache->c_rwlock );
1204
1205         if ( rc == 0 ){
1206                 /* lru */
1207                 if ( e == cache->c_lruhead ) cache->c_lruhead = e->bei_lrunext;
1208                 if ( e == cache->c_lrutail ) {
1209                         ldap_pvt_thread_mutex_lock( &cache->lru_tail_mutex );
1210                         if ( e == cache->c_lrutail ) cache->c_lrutail = e->bei_lruprev;
1211                         ldap_pvt_thread_mutex_unlock( &cache->lru_tail_mutex );
1212                 }
1213
1214                 if ( e->bei_lrunext ) e->bei_lrunext->bei_lruprev = e->bei_lruprev;
1215                 if ( e->bei_lruprev ) e->bei_lruprev->bei_lrunext = e->bei_lrunext;
1216
1217                 if ( e->bei_e ) {
1218                         ldap_pvt_thread_mutex_lock( &cache->c_count_mutex );
1219                         cache->c_cursize--;
1220                         ldap_pvt_thread_mutex_unlock( &cache->c_count_mutex );
1221                 }
1222         }
1223
1224         return( rc );
1225 }
1226
1227 static void
1228 bdb_entryinfo_release( void *data )
1229 {
1230         EntryInfo *ei = (EntryInfo *)data;
1231         if ( ei->bei_kids ) {
1232                 avl_free( ei->bei_kids, NULL );
1233         }
1234         if ( ei->bei_e ) {
1235                 ei->bei_e->e_private = NULL;
1236 #ifdef SLAP_ZONE_ALLOC
1237                 bdb_entry_return( ei->bei_bdb, ei->bei_e, ei->bei_zseq );
1238 #else
1239                 bdb_entry_return( ei->bei_e );
1240 #endif
1241         }
1242         bdb_cache_entryinfo_destroy( ei );
1243 }
1244
1245 void
1246 bdb_cache_release_all( Cache *cache )
1247 {
1248         /* set cache write lock */
1249         ldap_pvt_thread_rdwr_wlock( &cache->c_rwlock );
1250         /* set lru mutex */
1251         ldap_pvt_thread_mutex_lock( &cache->lru_tail_mutex );
1252
1253         Debug( LDAP_DEBUG_TRACE, "====> bdb_cache_release_all\n", 0, 0, 0 );
1254
1255         avl_free( cache->c_dntree.bei_kids, NULL );
1256         avl_free( cache->c_idtree, bdb_entryinfo_release );
1257         for (;cache->c_eifree;cache->c_eifree = cache->c_lruhead) {
1258                 cache->c_lruhead = cache->c_eifree->bei_lrunext;
1259                 bdb_cache_entryinfo_destroy(cache->c_eifree);
1260         }
1261         cache->c_cursize = 0;
1262         cache->c_eiused = 0;
1263         cache->c_leaves = 0;
1264         cache->c_idtree = NULL;
1265         cache->c_lruhead = NULL;
1266         cache->c_lrutail = NULL;
1267         cache->c_dntree.bei_kids = NULL;
1268
1269         /* free lru mutex */
1270         ldap_pvt_thread_mutex_unlock( &cache->lru_tail_mutex );
1271         /* free cache write lock */
1272         ldap_pvt_thread_rdwr_wunlock( &cache->c_rwlock );
1273 }
1274
1275 #ifdef LDAP_DEBUG
1276 #ifdef SLAPD_UNUSED
1277 static void
1278 bdb_lru_print( Cache *cache )
1279 {
1280         EntryInfo       *e;
1281
1282         fprintf( stderr, "LRU circle head: %p\n", cache->c_lruhead );
1283         fprintf( stderr, "LRU circle (tail forward):\n" );
1284         for ( e = cache->c_lrutail; ; ) {
1285                 fprintf( stderr, "\t%p, %p id %ld rdn \"%s\"\n",
1286                         e, e->bei_e, e->bei_id, e->bei_nrdn.bv_val );
1287                 e = e->bei_lrunext;
1288                 if ( e == cache->c_lrutail )
1289                         break;
1290         }
1291         fprintf( stderr, "LRU circle (tail backward):\n" );
1292         for ( e = cache->c_lrutail; ; ) {
1293                 fprintf( stderr, "\t%p, %p id %ld rdn \"%s\"\n",
1294                         e, e->bei_e, e->bei_id, e->bei_nrdn.bv_val );
1295                 e = e->bei_lruprev;
1296                 if ( e == cache->c_lrutail )
1297                         break;
1298         }
1299 }
1300 #endif
1301 #endif
1302
1303 #ifdef BDB_REUSE_LOCKERS
1304 static void
1305 bdb_locker_id_free( void *key, void *data )
1306 {
1307         DB_ENV *env = key;
1308         u_int32_t lockid = (long)data;
1309         int rc;
1310
1311         rc = XLOCK_ID_FREE( env, lockid );
1312         if ( rc == EINVAL ) {
1313                 DB_LOCKREQ lr;
1314                 Debug( LDAP_DEBUG_ANY,
1315                         "bdb_locker_id_free: %lu err %s(%d)\n",
1316                         (unsigned long) lockid, db_strerror(rc), rc );
1317                 /* release all locks held by this locker. */
1318                 lr.op = DB_LOCK_PUT_ALL;
1319                 lr.obj = NULL;
1320                 env->lock_vec( env, lockid, 0, &lr, 1, NULL );
1321                 XLOCK_ID_FREE( env, lockid );
1322         }
1323 }
1324
1325 int
1326 bdb_locker_id( Operation *op, DB_ENV *env, u_int32_t *locker )
1327 {
1328         int i, rc;
1329         u_int32_t lockid;
1330         void *data;
1331         void *ctx;
1332
1333         if ( !env || !locker ) return -1;
1334
1335         /* If no op was provided, try to find the ctx anyway... */
1336         if ( op ) {
1337                 ctx = op->o_threadctx;
1338         } else {
1339                 ctx = ldap_pvt_thread_pool_context();
1340         }
1341
1342         /* Shouldn't happen unless we're single-threaded */
1343         if ( !ctx ) {
1344                 *locker = 0;
1345                 return 0;
1346         }
1347
1348         if ( ldap_pvt_thread_pool_getkey( ctx, env, &data, NULL ) ) {
1349                 for ( i=0, rc=1; rc != 0 && i<4; i++ ) {
1350                         rc = XLOCK_ID( env, &lockid );
1351                         if (rc) ldap_pvt_thread_yield();
1352                 }
1353                 if ( rc != 0) {
1354                         return rc;
1355                 }
1356                 data = (void *)((long)lockid);
1357                 if ( ( rc = ldap_pvt_thread_pool_setkey( ctx, env,
1358                         data, bdb_locker_id_free ) ) ) {
1359                         XLOCK_ID_FREE( env, lockid );
1360                         Debug( LDAP_DEBUG_ANY, "bdb_locker_id: err %s(%d)\n",
1361                                 db_strerror(rc), rc, 0 );
1362
1363                         return rc;
1364                 }
1365         } else {
1366                 lockid = (long)data;
1367         }
1368         *locker = lockid;
1369         return 0;
1370 }
1371 #endif /* BDB_REUSE_LOCKERS */