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