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