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