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