]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/cache.c
Ditch LRU cache replacement in favor of 2nd-chance/clock.
[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-2006 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 );
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         DB_ENV *env,
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 = env->lock_vec(env, 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( DB_ENV *env, 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(env, 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 ( DB_ENV *env, 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 ( env, 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                         /* Reset all the state info */
499                         for (ein = eir; ein != ei2; ein=ein->bei_parent)
500                                 ein->bei_state &= ~CACHE_ENTRY_NOT_LINKED;
501
502                         avl_insert( &ei2->bei_kids, (caddr_t)ein, bdb_rdn_cmp,
503                                 avl_dup_error);
504                         ei2->bei_ckids++;
505                         bdb_cache_entryinfo_unlock( ei2 );
506                         bdb_cache_entryinfo_lock( eir );
507
508                         *res = eir;
509                         break;
510                 }
511                 ei.bei_kids = NULL;
512                 ei.bei_id = eip.bei_id;
513                 ei.bei_ckids = 1;
514                 avl_insert( &ei.bei_kids, (caddr_t)ein, bdb_rdn_cmp,
515                         avl_dup_error );
516         }
517         return rc;
518 }
519
520 /* Used by hdb_dn2idl when loading the EntryInfo for all the children
521  * of a given node
522  */
523 int hdb_cache_load(
524         struct bdb_info *bdb,
525         EntryInfo *ei,
526         EntryInfo **res )
527 {
528         EntryInfo *ei2;
529         int rc;
530
531         /* See if we already have this one */
532         bdb_cache_entryinfo_lock( ei->bei_parent );
533         ei2 = (EntryInfo *)avl_find( ei->bei_parent->bei_kids, ei, bdb_rdn_cmp );
534         bdb_cache_entryinfo_unlock( ei->bei_parent );
535
536         if ( !ei2 ) {
537                 /* Not found, add it */
538                 struct berval bv;
539
540                 /* bei_rdn was not malloc'd before, do it now */
541                 ber_dupbv( &bv, &ei->bei_rdn );
542                 ei->bei_rdn = bv;
543
544                 rc = bdb_entryinfo_add_internal( bdb, ei, res );
545                 bdb_cache_entryinfo_unlock( ei->bei_parent );
546                 ldap_pvt_thread_rdwr_wunlock( &bdb->bi_cache.c_rwlock );
547         } else {
548                 /* Found, return it */
549                 *res = ei2;
550                 return 0;
551         }
552         return rc;
553 }
554 #endif
555
556 static void
557 bdb_cache_lru_purge( struct bdb_info *bdb )
558 {
559         EntryInfo *elru, *elnext;
560         int count, islocked;
561
562         /* Don't bother if we can't get the lock */
563         if ( ldap_pvt_thread_mutex_trylock( &bdb->bi_cache.lru_head_mutex ) )
564                 return;
565
566         if ( bdb->bi_cache.c_cursize <= bdb->bi_cache.c_maxsize ) {
567                 ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.lru_head_mutex );
568                 return;
569         }
570
571         count = 0;
572         /* Look for an unused entry to remove */
573         for (elru = bdb->bi_cache.c_lruhead; elru; elru = elnext ) {
574                 elnext = elru->bei_lrunext;
575
576                 if ( ldap_pvt_thread_mutex_trylock( &elru->bei_kids_mutex ))
577                         continue;
578
579                 /* This flag implements the clock replacement behavior */
580                 if ( elru->bei_state & ( CACHE_ENTRY_REFERENCED )) {
581                         elru->bei_state &= ~CACHE_ENTRY_REFERENCED;
582                         bdb_cache_entryinfo_unlock( elru );
583                         continue;
584                 }
585
586                 /* If this node is in the process of linking into the cache,
587                  * or this node is being deleted, skip it.
588                  */
589                 if ( elru->bei_state & ( CACHE_ENTRY_NOT_LINKED |
590                         CACHE_ENTRY_DELETED | CACHE_ENTRY_LOADING )) {
591                         bdb_cache_entryinfo_unlock( elru );
592                         continue;
593                 }
594
595                 islocked = 1;
596
597                 /* Free entry for this node if it's present */
598                 if ( elru->bei_e ) {
599                         elru->bei_e->e_private = NULL;
600 #ifdef SLAP_ZONE_ALLOC
601                         bdb_entry_return( bdb, elru->bei_e, elru->bei_zseq );
602 #else
603                         bdb_entry_return( elru->bei_e );
604 #endif
605                         elru->bei_e = NULL;
606                         count++;
607                 }
608                 /* ITS#4010 if we're in slapcat, and this node is a leaf
609                  * node, free it.
610                  *
611                  * FIXME: we need to do this for slapd as well, (which is
612                  * why we compute bi_cache.c_leaves now) but at the moment
613                  * we can't because it causes unresolvable deadlocks. 
614                  */
615                 if ( slapMode & SLAP_TOOL_READONLY ) {
616                         if ( !elru->bei_kids ) {
617                                 bdb_cache_delete_internal( &bdb->bi_cache, elru, 0 );
618                                 bdb_cache_delete_cleanup( &bdb->bi_cache, elru );
619                                 islocked = 0;
620                         }
621                         /* Leave node on LRU list for a future pass */
622                 }
623
624                 if ( islocked )
625                         bdb_cache_entryinfo_unlock( elru );
626
627                 if ( count >= bdb->bi_cache.c_minfree ) {
628                         ldap_pvt_thread_mutex_lock( &bdb->bi_cache.c_count_mutex );
629                         bdb->bi_cache.c_cursize -= count;
630                         ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.c_count_mutex );
631                         break;
632                 }
633         }
634
635         bdb->bi_cache.c_lruhead = elru;
636         ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.lru_head_mutex );
637 }
638
639 EntryInfo *
640 bdb_cache_find_info(
641         struct bdb_info *bdb,
642         ID id )
643 {
644         EntryInfo       ei = { 0 },
645                         *ei2;
646
647         ei.bei_id = id;
648
649         ldap_pvt_thread_rdwr_rlock( &bdb->bi_cache.c_rwlock );
650         ei2 = (EntryInfo *) avl_find( bdb->bi_cache.c_idtree,
651                                         (caddr_t) &ei, bdb_id_cmp );
652         ldap_pvt_thread_rdwr_runlock( &bdb->bi_cache.c_rwlock );
653         return ei2;
654 }
655
656 /*
657  * cache_find_id - find an entry in the cache, given id.
658  * The entry is locked for Read upon return. Call with islocked TRUE if
659  * the supplied *eip was already locked.
660  */
661
662 int
663 bdb_cache_find_id(
664         Operation *op,
665         DB_TXN  *tid,
666         ID                              id,
667         EntryInfo       **eip,
668         int             islocked,
669         u_int32_t       locker,
670         DB_LOCK         *lock )
671 {
672         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
673         Entry   *ep = NULL;
674         int     rc = 0, load = 0;
675         EntryInfo ei = { 0 };
676
677         ei.bei_id = id;
678
679 #ifdef SLAP_ZONE_ALLOC
680         slap_zh_rlock(bdb->bi_cache.c_zctx);
681 #endif
682         /* If we weren't given any info, see if we have it already cached */
683         if ( !*eip ) {
684 again:  ldap_pvt_thread_rdwr_rlock( &bdb->bi_cache.c_rwlock );
685                 *eip = (EntryInfo *) avl_find( bdb->bi_cache.c_idtree,
686                         (caddr_t) &ei, bdb_id_cmp );
687                 if ( *eip ) {
688                         /* If the lock attempt fails, the info is in use */
689                         if ( ldap_pvt_thread_mutex_trylock(
690                                         &(*eip)->bei_kids_mutex )) {
691                                 ldap_pvt_thread_rdwr_runlock( &bdb->bi_cache.c_rwlock );
692                                 /* If this node is being deleted, treat
693                                  * as if the delete has already finished
694                                  */
695                                 if ( (*eip)->bei_state & CACHE_ENTRY_DELETED ) {
696                                         return DB_NOTFOUND;
697                                 }
698                                 /* otherwise, wait for the info to free up */
699                                 ldap_pvt_thread_yield();
700                                 goto again;
701                         }
702                         /* If this info isn't hooked up to its parent yet,
703                          * unlock and wait for it to be fully initialized
704                          */
705                         if ( (*eip)->bei_state & CACHE_ENTRY_NOT_LINKED ) {
706                                 bdb_cache_entryinfo_unlock( *eip );
707                                 ldap_pvt_thread_rdwr_runlock( &bdb->bi_cache.c_rwlock );
708                                 ldap_pvt_thread_yield();
709                                 goto again;
710                         }
711                         islocked = 1;
712                 }
713                 ldap_pvt_thread_rdwr_runlock( &bdb->bi_cache.c_rwlock );
714         }
715
716         /* See if the ID exists in the database; add it to the cache if so */
717         if ( !*eip ) {
718 #ifndef BDB_HIER
719                 rc = bdb_id2entry( op->o_bd, tid, locker, id, &ep );
720                 if ( rc == 0 ) {
721                         rc = bdb_cache_find_ndn( op, tid,
722                                 &ep->e_nname, eip );
723                         if ( *eip ) islocked = 1;
724                         if ( rc ) {
725                                 ep->e_private = NULL;
726 #ifdef SLAP_ZONE_ALLOC
727                                 bdb_entry_return( bdb, ep, (*eip)->bei_zseq );
728 #else
729                                 bdb_entry_return( ep );
730 #endif
731                                 ep = NULL;
732                         }
733                 }
734 #else
735                 rc = hdb_cache_find_parent(op, tid, locker, id, eip );
736                 if ( rc == 0 ) islocked = 1;
737 #endif
738         }
739
740         /* Ok, we found the info, do we have the entry? */
741         if ( rc == 0 ) {
742                 if ( (*eip)->bei_state & CACHE_ENTRY_DELETED ) {
743                         rc = DB_NOTFOUND;
744                 } else {
745                         /* Make sure only one thread tries to load the entry */
746 load1:
747 #ifdef SLAP_ZONE_ALLOC
748                         if ((*eip)->bei_e && !slap_zn_validate(
749                                         bdb->bi_cache.c_zctx, (*eip)->bei_e, (*eip)->bei_zseq)) {
750                                 (*eip)->bei_e = NULL;
751                                 (*eip)->bei_zseq = 0;
752                         }
753 #endif
754                         if ( !(*eip)->bei_e && !((*eip)->bei_state & CACHE_ENTRY_LOADING)) {
755                                 load = 1;
756                                 (*eip)->bei_state |= CACHE_ENTRY_LOADING;
757                         }
758                         if ( islocked ) {
759                                 bdb_cache_entryinfo_unlock( *eip );
760                                 islocked = 0;
761                         }
762                         rc = bdb_cache_entry_db_lock( bdb->bi_dbenv, locker, *eip, 0, 0, lock );
763                         if ( (*eip)->bei_state & CACHE_ENTRY_DELETED ) {
764                                 rc = DB_NOTFOUND;
765                                 bdb_cache_entry_db_unlock( bdb->bi_dbenv, lock );
766                         } else if ( rc == 0 ) {
767                                 if ( load ) {
768                                         /* Give up original read lock, obtain write lock
769                                          */
770                                     if ( rc == 0 ) {
771                                                 rc = bdb_cache_entry_db_relock( bdb->bi_dbenv, locker,
772                                                         *eip, 1, 0, lock );
773                                         }
774                                         if ( rc == 0 && !ep) {
775                                                 rc = bdb_id2entry( op->o_bd, tid, locker, id, &ep );
776                                         }
777                                         if ( rc == 0 ) {
778                                                 ep->e_private = *eip;
779 #ifdef BDB_HIER
780                                                 bdb_fix_dn( ep, 0 );
781 #endif
782                                                 (*eip)->bei_e = ep;
783 #ifdef SLAP_ZONE_ALLOC
784                                                 (*eip)->bei_zseq = *((ber_len_t *)ep - 2);
785 #endif
786                                                 ep = NULL;
787                                         }
788                                         bdb_cache_entryinfo_lock( *eip );
789                                         (*eip)->bei_state ^= CACHE_ENTRY_LOADING;
790                                         bdb_cache_entryinfo_unlock( *eip );
791                                         if ( rc == 0 ) {
792                                                 /* If we succeeded, downgrade back to a readlock. */
793                                                 rc = bdb_cache_entry_db_relock( bdb->bi_dbenv, locker,
794                                                         *eip, 0, 0, lock );
795                                         } else {
796                                                 /* Otherwise, release the lock. */
797                                                 bdb_cache_entry_db_unlock( bdb->bi_dbenv, lock );
798                                         }
799                                 } else if ( !(*eip)->bei_e ) {
800                                         /* Some other thread is trying to load the entry,
801                                          * give it a chance to finish.
802                                          */
803                                         bdb_cache_entry_db_unlock( bdb->bi_dbenv, lock );
804                                         ldap_pvt_thread_yield();
805                                         bdb_cache_entryinfo_lock( *eip );
806                                         islocked = 1;
807                                         goto load1;
808 #ifdef BDB_HIER
809                                 } else {
810                                         /* Check for subtree renames
811                                          */
812                                         rc = bdb_fix_dn( (*eip)->bei_e, 1 );
813                                         if ( rc ) {
814                                                 bdb_cache_entry_db_relock( bdb->bi_dbenv,
815                                                         locker, *eip, 1, 0, lock );
816                                                 /* check again in case other modifier did it already */
817                                                 if ( bdb_fix_dn( (*eip)->bei_e, 1 ) )
818                                                         rc = bdb_fix_dn( (*eip)->bei_e, 2 );
819                                                 bdb_cache_entry_db_relock( bdb->bi_dbenv,
820                                                         locker, *eip, 0, 0, lock );
821                                         }
822 #endif
823                                 }
824
825                         }
826                 }
827         }
828         if ( islocked ) {
829                 bdb_cache_entryinfo_unlock( *eip );
830         }
831         if ( ep ) {
832                 ep->e_private = NULL;
833 #ifdef SLAP_ZONE_ALLOC
834                 bdb_entry_return( bdb, ep, (*eip)->bei_zseq );
835 #else
836                 bdb_entry_return( ep );
837 #endif
838         }
839         if ( rc == 0 ) {
840                 int purge = 0;
841
842                 if ( load ) {
843                         ldap_pvt_thread_mutex_lock( &bdb->bi_cache.c_count_mutex );
844                         bdb->bi_cache.c_cursize++;
845                         if ( bdb->bi_cache.c_cursize > bdb->bi_cache.c_maxsize )
846                                 purge = 1;
847                         ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.c_count_mutex );
848                 }
849                 if ( purge )
850                         bdb_cache_lru_purge( bdb );
851         }
852
853 #ifdef SLAP_ZONE_ALLOC
854         if (rc == 0 && (*eip)->bei_e) {
855                 slap_zn_rlock(bdb->bi_cache.c_zctx, (*eip)->bei_e);
856         }
857         slap_zh_runlock(bdb->bi_cache.c_zctx);
858 #endif
859         return rc;
860 }
861
862 int
863 bdb_cache_children(
864         Operation *op,
865         DB_TXN *txn,
866         Entry *e )
867 {
868         int rc;
869
870         if ( BEI(e)->bei_kids ) {
871                 return 0;
872         }
873         if ( BEI(e)->bei_state & CACHE_ENTRY_NO_KIDS ) {
874                 return DB_NOTFOUND;
875         }
876         rc = bdb_dn2id_children( op, txn, e );
877         if ( rc == DB_NOTFOUND ) {
878                 BEI(e)->bei_state |= CACHE_ENTRY_NO_KIDS | CACHE_ENTRY_NO_GRANDKIDS;
879         }
880         return rc;
881 }
882
883 /* Update the cache after a successful database Add. */
884 int
885 bdb_cache_add(
886         struct bdb_info *bdb,
887         EntryInfo *eip,
888         Entry *e,
889         struct berval *nrdn,
890         u_int32_t locker,
891         DB_LOCK *lock )
892 {
893         EntryInfo *new, ei;
894         int rc, purge = 0;
895 #ifdef BDB_HIER
896         struct berval rdn = e->e_name;
897 #endif
898
899         ei.bei_id = e->e_id;
900         ei.bei_parent = eip;
901         ei.bei_nrdn = *nrdn;
902         ei.bei_lockpad = 0;
903
904         /* Lock this entry so that bdb_add can run to completion.
905          * It can only fail if BDB has run out of lock resources.
906          */
907         rc = bdb_cache_entry_db_lock( bdb->bi_dbenv, locker, &ei, 0, 0, lock );
908         if ( rc ) {
909                 bdb_cache_entryinfo_unlock( eip );
910                 return rc;
911         }
912
913 #ifdef BDB_HIER
914         if ( nrdn->bv_len != e->e_nname.bv_len ) {
915                 char *ptr = ber_bvchr( &rdn, ',' );
916                 assert( ptr != NULL );
917                 rdn.bv_len = ptr - rdn.bv_val;
918         }
919         ber_dupbv( &ei.bei_rdn, &rdn );
920         if ( eip->bei_dkids ) eip->bei_dkids++;
921 #endif
922
923         rc = bdb_entryinfo_add_internal( bdb, &ei, &new );
924         /* bdb_csn_commit can cause this when adding the database root entry */
925         if ( new->bei_e ) {
926                 new->bei_e->e_private = NULL;
927 #ifdef SLAP_ZONE_ALLOC
928                 bdb_entry_return( bdb, new->bei_e, new->bei_zseq );
929 #else
930                 bdb_entry_return( new->bei_e );
931 #endif
932         }
933         new->bei_e = e;
934         e->e_private = new;
935         new->bei_state |= CACHE_ENTRY_NO_KIDS | CACHE_ENTRY_NO_GRANDKIDS;
936         eip->bei_state &= ~CACHE_ENTRY_NO_KIDS;
937         if (eip->bei_parent) {
938                 eip->bei_parent->bei_state &= ~CACHE_ENTRY_NO_GRANDKIDS;
939         }
940         bdb_cache_entryinfo_unlock( eip );
941
942         ldap_pvt_thread_rdwr_wunlock( &bdb->bi_cache.c_rwlock );
943         ldap_pvt_thread_mutex_lock( &bdb->bi_cache.c_count_mutex );
944         ++bdb->bi_cache.c_cursize;
945         if ( bdb->bi_cache.c_cursize > bdb->bi_cache.c_maxsize )
946                 purge = 1;
947         ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.c_count_mutex );
948
949         if ( purge )
950                 bdb_cache_lru_purge( bdb );
951
952         return rc;
953 }
954
955 int
956 bdb_cache_modify(
957         Entry *e,
958         Attribute *newAttrs,
959         DB_ENV *env,
960         u_int32_t locker,
961         DB_LOCK *lock )
962 {
963         EntryInfo *ei = BEI(e);
964         int rc;
965         /* Get write lock on data */
966         rc = bdb_cache_entry_db_relock( env, locker, ei, 1, 0, lock );
967
968         /* If we've done repeated mods on a cached entry, then e_attrs
969          * is no longer contiguous with the entry, and must be freed.
970          */
971         if ( ! rc ) {
972                 if ( (void *)e->e_attrs != (void *)(e+1) ) {
973                         attrs_free( e->e_attrs ); 
974                 }
975                 e->e_attrs = newAttrs;
976         }
977         return rc;
978 }
979
980 /*
981  * Change the rdn in the entryinfo. Also move to a new parent if needed.
982  */
983 int
984 bdb_cache_modrdn(
985         struct bdb_info *bdb,
986         Entry *e,
987         struct berval *nrdn,
988         Entry *new,
989         EntryInfo *ein,
990         u_int32_t locker,
991         DB_LOCK *lock )
992 {
993         EntryInfo *ei = BEI(e), *pei;
994         int rc;
995 #ifdef BDB_HIER
996         struct berval rdn;
997 #endif
998
999         /* Get write lock on data */
1000         rc =  bdb_cache_entry_db_relock( bdb->bi_dbenv, locker, ei, 1, 0, lock );
1001         if ( rc ) return rc;
1002
1003         /* If we've done repeated mods on a cached entry, then e_attrs
1004          * is no longer contiguous with the entry, and must be freed.
1005          */
1006         if ( (void *)e->e_attrs != (void *)(e+1) ) {
1007                 attrs_free( e->e_attrs );
1008         }
1009         e->e_attrs = new->e_attrs;
1010         if( e->e_nname.bv_val < e->e_bv.bv_val ||
1011                 e->e_nname.bv_val > e->e_bv.bv_val + e->e_bv.bv_len )
1012         {
1013                 ch_free(e->e_name.bv_val);
1014                 ch_free(e->e_nname.bv_val);
1015         }
1016         e->e_name = new->e_name;
1017         e->e_nname = new->e_nname;
1018
1019         /* Lock the parent's kids AVL tree */
1020         pei = ei->bei_parent;
1021         bdb_cache_entryinfo_lock( pei );
1022         avl_delete( &pei->bei_kids, (caddr_t) ei, bdb_rdn_cmp );
1023         free( ei->bei_nrdn.bv_val );
1024         ber_dupbv( &ei->bei_nrdn, nrdn );
1025
1026         if ( !pei->bei_kids )
1027                 pei->bei_state |= CACHE_ENTRY_NO_KIDS | CACHE_ENTRY_NO_GRANDKIDS;
1028
1029 #ifdef BDB_HIER
1030         free( ei->bei_rdn.bv_val );
1031
1032         rdn = e->e_name;
1033         if ( nrdn->bv_len != e->e_nname.bv_len ) {
1034                 char *ptr = ber_bvchr(&rdn, ',');
1035                 assert( ptr != NULL );
1036                 rdn.bv_len = ptr - rdn.bv_val;
1037         }
1038         ber_dupbv( &ei->bei_rdn, &rdn );
1039         pei->bei_ckids--;
1040         if ( pei->bei_dkids ) pei->bei_dkids--;
1041 #endif
1042
1043         if (!ein) {
1044                 ein = ei->bei_parent;
1045         } else {
1046                 ei->bei_parent = ein;
1047                 bdb_cache_entryinfo_unlock( pei );
1048                 bdb_cache_entryinfo_lock( ein );
1049         }
1050         /* parent now has kids */
1051         if ( ein->bei_state & CACHE_ENTRY_NO_KIDS )
1052                 ein->bei_state ^= CACHE_ENTRY_NO_KIDS;
1053
1054 #ifdef BDB_HIER
1055         /* parent might now have grandkids */
1056         if ( ein->bei_state & CACHE_ENTRY_NO_GRANDKIDS &&
1057                 !(ei->bei_state & (CACHE_ENTRY_NO_KIDS)))
1058                 ein->bei_state ^= CACHE_ENTRY_NO_GRANDKIDS;
1059
1060         {
1061                 /* Record the generation number of this change */
1062                 ldap_pvt_thread_mutex_lock( &bdb->bi_modrdns_mutex );
1063                 bdb->bi_modrdns++;
1064                 ei->bei_modrdns = bdb->bi_modrdns;
1065                 ldap_pvt_thread_mutex_unlock( &bdb->bi_modrdns_mutex );
1066         }
1067         ein->bei_ckids++;
1068         if ( ein->bei_dkids ) ein->bei_dkids++;
1069 #endif
1070         avl_insert( &ein->bei_kids, ei, bdb_rdn_cmp, avl_dup_error );
1071         bdb_cache_entryinfo_unlock( ein );
1072         return rc;
1073 }
1074 /*
1075  * cache_delete - delete the entry e from the cache. 
1076  *
1077  * returns:     0       e was deleted ok
1078  *              1       e was not in the cache
1079  *              -1      something bad happened
1080  */
1081 int
1082 bdb_cache_delete(
1083     Cache       *cache,
1084     Entry               *e,
1085     DB_ENV      *env,
1086     u_int32_t   locker,
1087     DB_LOCK     *lock )
1088 {
1089         EntryInfo *ei = BEI(e);
1090         int     rc;
1091
1092         assert( e->e_private != NULL );
1093
1094         /* Set this early, warn off any queriers */
1095         ei->bei_state |= CACHE_ENTRY_DELETED;
1096
1097         /* Lock the entry's info */
1098         bdb_cache_entryinfo_lock( ei );
1099
1100         /* Get write lock on the data */
1101         rc = bdb_cache_entry_db_relock( env, locker, ei, 1, 0, lock );
1102         if ( rc ) {
1103                 /* couldn't lock, undo and give up */
1104                 ei->bei_state ^= CACHE_ENTRY_DELETED;
1105                 bdb_cache_entryinfo_unlock( ei );
1106                 return rc;
1107         }
1108
1109         Debug( LDAP_DEBUG_TRACE, "====> bdb_cache_delete( %ld )\n",
1110                 e->e_id, 0, 0 );
1111
1112         /* set lru mutex */
1113         ldap_pvt_thread_mutex_lock( &cache->lru_head_mutex );
1114
1115         rc = bdb_cache_delete_internal( cache, e->e_private, 1 );
1116
1117         /* free lru mutex */
1118         ldap_pvt_thread_mutex_unlock( &cache->lru_head_mutex );
1119
1120         /* Leave entry info locked */
1121
1122         return( rc );
1123 }
1124
1125 void
1126 bdb_cache_delete_cleanup(
1127         Cache *cache,
1128         EntryInfo *ei )
1129 {
1130         if ( ei->bei_e ) {
1131                 ei->bei_e->e_private = NULL;
1132 #ifdef SLAP_ZONE_ALLOC
1133                 bdb_entry_return( ei->bei_bdb, ei->bei_e, ei->bei_zseq );
1134 #else
1135                 bdb_entry_return( ei->bei_e );
1136 #endif
1137                 ei->bei_e = NULL;
1138         }
1139
1140         free( ei->bei_nrdn.bv_val );
1141         ei->bei_nrdn.bv_val = NULL;
1142 #ifdef BDB_HIER
1143         free( ei->bei_rdn.bv_val );
1144         ei->bei_rdn.bv_val = NULL;
1145         ei->bei_modrdns = 0;
1146         ei->bei_ckids = 0;
1147         ei->bei_dkids = 0;
1148 #endif
1149         ei->bei_parent = NULL;
1150         ei->bei_kids = NULL;
1151         ei->bei_lruprev = NULL;
1152
1153         ldap_pvt_thread_mutex_lock( &cache->c_eifree_mutex );
1154         ei->bei_lrunext = cache->c_eifree;
1155         cache->c_eifree = ei;
1156         ldap_pvt_thread_mutex_unlock( &cache->c_eifree_mutex );
1157         bdb_cache_entryinfo_unlock( ei );
1158 }
1159
1160 static int
1161 bdb_cache_delete_internal(
1162     Cache       *cache,
1163     EntryInfo           *e,
1164     int         decr )
1165 {
1166         int rc = 0;     /* return code */
1167         int decr_leaf = 0;
1168
1169         /* Lock the parent's kids tree */
1170         bdb_cache_entryinfo_lock( e->bei_parent );
1171
1172 #ifdef BDB_HIER
1173         e->bei_parent->bei_ckids--;
1174         if ( decr && e->bei_parent->bei_dkids ) e->bei_parent->bei_dkids--;
1175 #endif
1176         /* dn tree */
1177         if ( avl_delete( &e->bei_parent->bei_kids, (caddr_t) e, bdb_rdn_cmp )
1178                 == NULL )
1179         {
1180                 rc = -1;
1181         }
1182         if ( e->bei_parent->bei_kids )
1183                 decr_leaf = 1;
1184
1185         bdb_cache_entryinfo_unlock( e->bei_parent );
1186
1187         ldap_pvt_thread_rdwr_wlock( &cache->c_rwlock );
1188         /* id tree */
1189         if ( avl_delete( &cache->c_idtree, (caddr_t) e, bdb_id_cmp )) {
1190                 cache->c_eiused--;
1191                 if ( decr_leaf )
1192                         cache->c_leaves--;
1193         } else {
1194                 rc = -1;
1195         }
1196         ldap_pvt_thread_rdwr_wunlock( &cache->c_rwlock );
1197
1198         if ( rc == 0 ){
1199                 /* lru */
1200                 if ( e == cache->c_lruhead ) cache->c_lruhead = e->bei_lrunext;
1201                 if ( e == cache->c_lrutail ) {
1202                         ldap_pvt_thread_mutex_lock( &cache->lru_tail_mutex );
1203                         if ( e == cache->c_lrutail ) cache->c_lrutail = e->bei_lruprev;
1204                         ldap_pvt_thread_mutex_unlock( &cache->lru_tail_mutex );
1205                 }
1206
1207                 if ( e->bei_lrunext ) e->bei_lrunext->bei_lruprev = e->bei_lruprev;
1208                 if ( e->bei_lruprev ) e->bei_lruprev->bei_lrunext = e->bei_lrunext;
1209
1210                 if ( e->bei_e ) {
1211                         ldap_pvt_thread_mutex_lock( &cache->c_count_mutex );
1212                         cache->c_cursize--;
1213                         ldap_pvt_thread_mutex_unlock( &cache->c_count_mutex );
1214                 }
1215         }
1216
1217         return( rc );
1218 }
1219
1220 static void
1221 bdb_entryinfo_release( void *data )
1222 {
1223         EntryInfo *ei = (EntryInfo *)data;
1224         if ( ei->bei_kids ) {
1225                 avl_free( ei->bei_kids, NULL );
1226         }
1227         if ( ei->bei_e ) {
1228                 ei->bei_e->e_private = NULL;
1229 #ifdef SLAP_ZONE_ALLOC
1230                 bdb_entry_return( ei->bei_bdb, ei->bei_e, ei->bei_zseq );
1231 #else
1232                 bdb_entry_return( ei->bei_e );
1233 #endif
1234         }
1235         bdb_cache_entryinfo_destroy( ei );
1236 }
1237
1238 void
1239 bdb_cache_release_all( Cache *cache )
1240 {
1241         /* set cache write lock */
1242         ldap_pvt_thread_rdwr_wlock( &cache->c_rwlock );
1243         /* set lru mutex */
1244         ldap_pvt_thread_mutex_lock( &cache->lru_tail_mutex );
1245
1246         Debug( LDAP_DEBUG_TRACE, "====> bdb_cache_release_all\n", 0, 0, 0 );
1247
1248         avl_free( cache->c_dntree.bei_kids, NULL );
1249         avl_free( cache->c_idtree, bdb_entryinfo_release );
1250         for (;cache->c_eifree;cache->c_eifree = cache->c_lruhead) {
1251                 cache->c_lruhead = cache->c_eifree->bei_lrunext;
1252                 bdb_cache_entryinfo_destroy(cache->c_eifree);
1253         }
1254         cache->c_cursize = 0;
1255         cache->c_eiused = 0;
1256         cache->c_leaves = 0;
1257         cache->c_idtree = NULL;
1258         cache->c_lruhead = NULL;
1259         cache->c_lrutail = NULL;
1260         cache->c_dntree.bei_kids = NULL;
1261
1262         /* free lru mutex */
1263         ldap_pvt_thread_mutex_unlock( &cache->lru_tail_mutex );
1264         /* free cache write lock */
1265         ldap_pvt_thread_rdwr_wunlock( &cache->c_rwlock );
1266 }
1267
1268 #ifdef LDAP_DEBUG
1269 #ifdef SLAPD_UNUSED
1270 static void
1271 bdb_lru_print( Cache *cache )
1272 {
1273         EntryInfo       *e;
1274
1275         fprintf( stderr, "LRU queue (head to tail):\n" );
1276         for ( e = cache->c_lruhead; e != NULL; e = e->bei_lrunext ) {
1277                 fprintf( stderr, "\trdn \"%20s\" id %ld\n",
1278                         e->bei_nrdn.bv_val, e->bei_id );
1279         }
1280         fprintf( stderr, "LRU queue (tail to head):\n" );
1281         for ( e = cache->c_lrutail; e != NULL; e = e->bei_lruprev ) {
1282                 fprintf( stderr, "\trdn \"%20s\" id %ld\n",
1283                         e->bei_nrdn.bv_val, e->bei_id );
1284         }
1285 }
1286 #endif
1287 #endif
1288
1289 #ifdef BDB_REUSE_LOCKERS
1290 static void
1291 bdb_locker_id_free( void *key, void *data )
1292 {
1293         DB_ENV *env = key;
1294         u_int32_t lockid = (long)data;
1295         int rc;
1296
1297         rc = XLOCK_ID_FREE( env, lockid );
1298         if ( rc == EINVAL ) {
1299                 DB_LOCKREQ lr;
1300                 Debug( LDAP_DEBUG_ANY,
1301                         "bdb_locker_id_free: %lu err %s(%d)\n",
1302                         (unsigned long) lockid, db_strerror(rc), rc );
1303                 /* release all locks held by this locker. */
1304                 lr.op = DB_LOCK_PUT_ALL;
1305                 lr.obj = NULL;
1306                 env->lock_vec( env, lockid, 0, &lr, 1, NULL );
1307                 XLOCK_ID_FREE( env, lockid );
1308         }
1309 }
1310
1311 int
1312 bdb_locker_id( Operation *op, DB_ENV *env, u_int32_t *locker )
1313 {
1314         int i, rc;
1315         u_int32_t lockid;
1316         void *data;
1317         void *ctx;
1318
1319         if ( !env || !locker ) return -1;
1320
1321         /* If no op was provided, try to find the ctx anyway... */
1322         if ( op ) {
1323                 ctx = op->o_threadctx;
1324         } else {
1325                 ctx = ldap_pvt_thread_pool_context();
1326         }
1327
1328         /* Shouldn't happen unless we're single-threaded */
1329         if ( !ctx ) {
1330                 *locker = 0;
1331                 return 0;
1332         }
1333
1334         if ( ldap_pvt_thread_pool_getkey( ctx, env, &data, NULL ) ) {
1335                 for ( i=0, rc=1; rc != 0 && i<4; i++ ) {
1336                         rc = XLOCK_ID( env, &lockid );
1337                         if (rc) ldap_pvt_thread_yield();
1338                 }
1339                 if ( rc != 0) {
1340                         return rc;
1341                 }
1342                 data = (void *)((long)lockid);
1343                 if ( ( rc = ldap_pvt_thread_pool_setkey( ctx, env,
1344                         data, bdb_locker_id_free ) ) ) {
1345                         XLOCK_ID_FREE( env, lockid );
1346                         Debug( LDAP_DEBUG_ANY, "bdb_locker_id: err %s(%d)\n",
1347                                 db_strerror(rc), rc, 0 );
1348
1349                         return rc;
1350                 }
1351         } else {
1352                 lockid = (long)data;
1353         }
1354         *locker = lockid;
1355         return 0;
1356 }
1357 #endif /* BDB_REUSE_LOCKERS */