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