]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/cache.c
d1e8fe1648a1fa4f80f0915574ca309390d252e6
[openldap] / servers / slapd / back-bdb / cache.c
1 /* cache.c - routines to maintain an in-core cache of entries */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/errno.h>
13 #include <ac/string.h>
14 #include <ac/socket.h>
15
16 #include "slap.h"
17
18 #include "back-bdb.h"
19
20 static int      bdb_cache_delete_internal(Cache *cache, EntryInfo *e);
21 #ifdef LDAP_DEBUG
22 static void     bdb_lru_print(Cache *cache);
23 #endif
24
25 static EntryInfo *
26 bdb_cache_entryinfo_new( )
27 {
28         EntryInfo *ei;
29
30         ei = ch_calloc(1, sizeof(struct bdb_entry_info));
31         ldap_pvt_thread_mutex_init( &ei->bei_kids_mutex );
32
33         return ei;
34 }
35
36 /* Atomically release and reacquire a lock */
37 static int
38 bdb_cache_entry_db_relock(
39         DB_ENV *env,
40         u_int32_t locker,
41         EntryInfo *ei,
42         int rw,
43         int tryOnly,
44         DB_LOCK *lock )
45 {
46 #ifdef NO_THREADS
47         return 0;
48 #else
49         int     rc;
50         DBT     lockobj;
51         DB_LOCKREQ list[2];
52
53         if ( !lock ) return 0;
54
55         lockobj.data = ei;
56         lockobj.size = sizeof(ei->bei_parent) + sizeof(ei->bei_id);
57
58         list[0].op = DB_LOCK_PUT;
59         list[0].lock = *lock;
60         list[1].op = DB_LOCK_GET;
61         list[1].lock = *lock;
62         list[1].mode = rw ? DB_LOCK_WRITE : DB_LOCK_READ;
63         list[1].obj = &lockobj;
64         rc = env->lock_vec(env, locker, tryOnly ? DB_LOCK_NOWAIT : 0,
65                 list, 2, NULL );
66
67         if (rc) {
68 #ifdef NEW_LOGGING
69                 LDAP_LOG( CACHE, DETAIL1, 
70                         "bdb_cache_entry_db_relock: entry %ld, rw %d, rc %d\n",
71                         ei->bei_id, rw, rc );
72 #else
73                 Debug( LDAP_DEBUG_TRACE,
74                         "bdb_cache_entry_db_relock: entry %ld, rw %d, rc %d\n",
75                         ei->bei_id, rw, rc );
76 #endif
77         } else {
78                 *lock = list[1].lock;
79         }
80         return rc;
81 #endif
82 }
83 static int
84 bdb_cache_entry_db_lock
85 ( DB_ENV *env, u_int32_t locker, EntryInfo *ei, int rw, int tryOnly, DB_LOCK *lock )
86 {
87 #ifdef NO_THREADS
88         return 0;
89 #else
90         int       rc;
91         DBT       lockobj;
92         int       db_rw;
93
94         if ( !lock ) return 0;
95
96         if (rw)
97                 db_rw = DB_LOCK_WRITE;
98         else
99                 db_rw = DB_LOCK_READ;
100
101         lockobj.data = ei;
102         lockobj.size = sizeof(ei->bei_parent) + sizeof(ei->bei_id);
103
104         rc = LOCK_GET(env, locker, tryOnly ? DB_LOCK_NOWAIT : 0,
105                                         &lockobj, db_rw, lock);
106         if (rc) {
107 #ifdef NEW_LOGGING
108                 LDAP_LOG( CACHE, DETAIL1, 
109                         "bdb_cache_entry_db_lock: entry %ld, rw %d, rc %d\n",
110                         ei->bei_id, rw, rc );
111 #else
112                 Debug( LDAP_DEBUG_TRACE,
113                         "bdb_cache_entry_db_lock: entry %ld, rw %d, rc %d\n",
114                         ei->bei_id, rw, rc );
115 #endif
116         }
117         return rc;
118 #endif /* NO_THREADS */
119 }
120
121 int
122 bdb_cache_entry_db_unlock
123 ( DB_ENV *env, DB_LOCK *lock )
124 {
125 #ifdef NO_THREADS
126         return 0;
127 #else
128         int rc;
129
130         rc = LOCK_PUT ( env, lock );
131         return rc;
132 #endif
133 }
134
135 static int
136 bdb_cache_entryinfo_destroy( EntryInfo *e )
137 {
138         ldap_pvt_thread_mutex_destroy( &e->bei_kids_mutex );
139         free( e->bei_nrdn.bv_val );
140 #ifdef BDB_HIER
141         free( e->bei_rdn.bv_val );
142 #endif
143         free( e );
144         return 0;
145 }
146
147 #define LRU_DELETE( cache, ei ) do { \
148         if ( (ei)->bei_lruprev != NULL ) { \
149                 (ei)->bei_lruprev->bei_lrunext = (ei)->bei_lrunext; \
150         } else { \
151                 (cache)->c_lruhead = (ei)->bei_lrunext; \
152         } \
153         if ( (ei)->bei_lrunext != NULL ) { \
154                 (ei)->bei_lrunext->bei_lruprev = (ei)->bei_lruprev; \
155         } else { \
156                 (cache)->c_lrutail = (ei)->bei_lruprev; \
157         } \
158 } while(0)
159
160 #define LRU_ADD( cache, ei ) do { \
161         (ei)->bei_lrunext = (cache)->c_lruhead; \
162         if ( (ei)->bei_lrunext != NULL ) { \
163                 (ei)->bei_lrunext->bei_lruprev = (ei); \
164         } \
165         (cache)->c_lruhead = (ei); \
166         (ei)->bei_lruprev = NULL; \
167         if ( (cache)->c_lrutail == NULL ) { \
168                 (cache)->c_lrutail = (ei); \
169         } \
170 } while(0)
171
172 /* Do a length-ordered sort on normalized RDNs */
173 static int
174 bdb_rdn_cmp( const void *v_e1, const void *v_e2 )
175 {
176         const EntryInfo *e1 = v_e1, *e2 = v_e2;
177         int rc = e1->bei_nrdn.bv_len - e2->bei_nrdn.bv_len;
178         if (rc == 0) rc = strncmp( e1->bei_nrdn.bv_val, e2->bei_nrdn.bv_val,
179                 e1->bei_nrdn.bv_len );
180         return rc;
181 }
182
183 static int
184 bdb_id_cmp( const void *v_e1, const void *v_e2 )
185 {
186         const EntryInfo *e1 = v_e1, *e2 = v_e2;
187         return e1->bei_id - e2->bei_id;
188 }
189
190 /* Create an entryinfo in the cache. Caller must release the locks later.
191  */
192 static int
193 bdb_entryinfo_add_internal(
194         struct bdb_info *bdb,
195         EntryInfo *ei,
196         EntryInfo **res,
197         u_int32_t locker
198 )
199 {
200         Cache *cache = &bdb->bi_cache;
201         DB_ENV *env = bdb->bi_dbenv;
202         EntryInfo *ei2 = NULL;
203         int incr = 1;
204         int addkid = 1;
205         int rc;
206         DB_LOCK lock;
207
208         *res = NULL;
209
210         ldap_pvt_thread_rdwr_wlock( &bdb->bi_cache.c_rwlock );
211         bdb_cache_entryinfo_lock( ei->bei_parent );
212
213         /* if parent was previously considered a leaf node,
214          * it was on the LRU list. Now it's going to have
215          * kids, take it off the LRU list.
216          */
217         ldap_pvt_thread_mutex_lock( &cache->lru_mutex );
218         if ( ei->bei_parent->bei_id && !ei->bei_parent->bei_kids ) {
219                 LRU_DELETE( cache, ei->bei_parent );
220                 incr = 0;
221         }
222
223         cache->c_cursize += incr;
224
225         /* See if we're above the cache size limit */
226         if ( cache->c_cursize > cache->c_maxsize ) {
227                 EntryInfo *elru, *elprev;
228                 int i = 0;
229
230                 /* Look for an unused entry to remove */
231                 for (elru = cache->c_lrutail; elru; elru = elprev, i++ ) {
232                         elprev = elru->bei_lruprev;
233
234                         /* Too many probes, not enough idle, give up */
235                         if (i > 10) break;
236
237                         /* If we can successfully writelock it, then
238                          * the object is idle.
239                          */
240                         if ( bdb_cache_entry_db_lock( env, locker, elru, 1, 1,
241                                 &lock ) == 0 ) {
242                                 if ( !elru->bei_e ) {
243                                         bdb_cache_entry_db_unlock( env, &lock );
244                                         continue;
245                                 }
246                                 /* Need to lock parent to delete child */
247                                 if ( ldap_pvt_thread_mutex_trylock(
248                                         &elru->bei_parent->bei_kids_mutex )) {
249                                         bdb_cache_entry_db_unlock( env, &lock );
250                                         continue;
251                                 }
252                                 bdb_cache_delete_internal( cache, elru );
253                                 bdb_cache_entryinfo_unlock( elru->bei_parent );
254                                 elru->bei_e->e_private = NULL;
255                                 bdb_entry_return( elru->bei_e );
256                                 bdb_cache_entry_db_unlock( env, &lock );
257                                 if (ei2) {
258                                         bdb_cache_entryinfo_destroy( elru );
259                                 } else {
260                                         /* re-use this one */
261                                         ch_free(elru->bei_nrdn.bv_val);
262                                         elru->bei_nrdn.bv_val = NULL;
263                                         elru->bei_e = NULL;
264                                         elru->bei_kids = NULL;
265                                         elru->bei_lrunext = NULL;
266                                         elru->bei_lruprev = NULL;
267                                         elru->bei_state = 0;
268 #ifdef BDB_HIER
269                                         ch_free(elru->bei_rdn.bv_val);
270                                         elru->bei_rdn.bv_val = NULL;
271                                         elru->bei_modrdns = 0;
272 #endif
273                                         ei2 = elru;
274                                 }
275                                 if (cache->c_cursize < cache->c_maxsize)
276                                         break;
277                         }
278                 }
279         }
280         if (!ei2) {
281                 ei2 = bdb_cache_entryinfo_new();
282         }
283         ei2->bei_id = ei->bei_id;
284         ei2->bei_parent = ei->bei_parent;
285 #ifdef BDB_HIER
286         ei2->bei_rdn = ei->bei_rdn;
287 #endif
288
289         /* Add to cache ID tree */
290         if (avl_insert( &cache->c_idtree, ei2, bdb_id_cmp, avl_dup_error )) {
291                 EntryInfo *eix;
292                 eix = avl_find( cache->c_idtree, ei2, bdb_id_cmp );
293                 bdb_cache_entryinfo_destroy( ei2 );
294                 ei2 = eix;
295                 addkid = 0;
296                 cache->c_cursize -= incr;
297 #ifdef BDB_HIER
298                 /* It got freed above because its value was
299                  * assigned to ei2.
300                  */
301                 ei->bei_rdn.bv_val = NULL;
302 #endif
303         } else {
304                 LRU_ADD( cache, ei2 );
305                 ber_dupbv( &ei2->bei_nrdn, &ei->bei_nrdn );
306         }
307
308         if ( addkid ) {
309                 avl_insert( &ei->bei_parent->bei_kids, ei2, bdb_rdn_cmp,
310                         avl_dup_error );
311         }
312
313         ldap_pvt_thread_mutex_unlock( &cache->lru_mutex );
314
315         *res = ei2;
316         return 0;
317 }
318
319 /* Find the EntryInfo for the requested DN. If the DN cannot be found, return
320  * the info for its closest ancestor. *res should be NULL to process a
321  * complete DN starting from the tree root. Otherwise *res must be the
322  * immediate parent of the requested DN, and only the RDN will be searched.
323  * The EntryInfo is locked upon return and must be unlocked by the caller.
324  */
325 int
326 bdb_cache_find_ndn(
327         Operation       *op,
328         DB_TXN          *txn,
329         struct berval   *ndn,
330         EntryInfo       **res,
331         u_int32_t       locker
332 )
333 {
334         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
335         EntryInfo       ei, *eip, *ei2;
336         int rc = 0;
337         char *ptr;
338
339         /* this function is always called with normalized DN */
340         if ( *res ) {
341                 /* we're doing a onelevel search for an RDN */
342                 ei.bei_nrdn.bv_val = ndn->bv_val;
343                 ei.bei_nrdn.bv_len = dn_rdnlen( op->o_bd, ndn );
344                 eip = *res;
345         } else {
346                 /* we're searching a full DN from the root */
347                 ptr = ndn->bv_val + ndn->bv_len - op->o_bd->be_nsuffix[0].bv_len;
348                 ei.bei_nrdn.bv_val = ptr;
349                 ei.bei_nrdn.bv_len = op->o_bd->be_nsuffix[0].bv_len;
350                 eip = &bdb->bi_cache.c_dntree;
351         }
352         
353         for ( bdb_cache_entryinfo_lock( eip ); eip; ) {
354                 ei.bei_parent = eip;
355                 ei2 = (EntryInfo *)avl_find( eip->bei_kids, &ei, bdb_rdn_cmp );
356                 if ( !ei2 ) {
357                         int len = ei.bei_nrdn.bv_len;
358                                 
359                         ei.bei_nrdn.bv_len = ndn->bv_len - (ei.bei_nrdn.bv_val - ndn->bv_val);
360                         bdb_cache_entryinfo_unlock( eip );
361
362                         rc = bdb_dn2id( op, txn, &ei.bei_nrdn, &ei );
363                         if (rc) {
364                                 bdb_cache_entryinfo_lock( eip );
365                                 *res = eip;
366                                 return rc;
367                         }
368
369                         /* DN exists but needs to be added to cache */
370                         ei.bei_nrdn.bv_len = len;
371                         rc = bdb_entryinfo_add_internal( bdb, &ei, &ei2,
372                                 locker );
373                         /* add_internal left eip and c_rwlock locked */
374                         ldap_pvt_thread_rdwr_wunlock( &bdb->bi_cache.c_rwlock );
375                         if ( rc ) {
376                                 *res = eip;
377                                 return rc;
378                         }
379                 } else if ( ei2->bei_state & CACHE_ENTRY_DELETED ) {
380                         /* In the midst of deleting? Give it a chance to
381                          * complete.
382                          */
383                         bdb_cache_entryinfo_unlock( eip );
384                         ldap_pvt_thread_yield();
385                         bdb_cache_entryinfo_lock( eip );
386                         *res = eip;
387                         return DB_NOTFOUND;
388                 }
389                 bdb_cache_entryinfo_unlock( eip );
390                 bdb_cache_entryinfo_lock( ei2 );
391
392                 eip = ei2;
393
394                 /* Advance to next lower RDN */
395                 for (ptr = ei.bei_nrdn.bv_val - 2; ptr > ndn->bv_val
396                         && !DN_SEPARATOR(*ptr); ptr--);
397                 if ( ptr >= ndn->bv_val ) {
398                         if (DN_SEPARATOR(*ptr)) ptr++;
399                         ei.bei_nrdn.bv_len = ei.bei_nrdn.bv_val - ptr - 1;
400                         ei.bei_nrdn.bv_val = ptr;
401                 }
402                 if ( ptr < ndn->bv_val ) {
403                         *res = eip;
404                         break;
405                 }
406         }
407
408         return rc;
409 }
410
411 #ifdef BDB_HIER
412 /* Walk up the tree from a child node, looking for an ID that's already
413  * been linked into the cache.
414  */
415 static int
416 hdb_cache_find_parent(
417         Operation *op,
418         DB_TXN *txn,
419         ID id,
420         EntryInfo **res
421 )
422 {
423         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
424         EntryInfo ei, eip, *ei2 = NULL, *ein = NULL, *eir = NULL;
425         ID parent;
426         int rc;
427
428         ei.bei_id = id;
429         ei.bei_kids = NULL;
430
431         for (;;) {
432                 rc = hdb_dn2id_parent( op, txn, &ei, &eip.bei_id );
433                 if ( rc ) break;
434
435                 /* Save the previous node, if any */
436                 ei2 = ein;
437
438                 /* Create a new node for the current ID */
439                 ein = bdb_cache_entryinfo_new();
440                 ein->bei_id = ei.bei_id;
441                 ein->bei_kids = ei.bei_kids;
442                 ein->bei_nrdn = ei.bei_nrdn;
443                 ein->bei_rdn = ei.bei_rdn;
444                 
445                 /* This node is not fully connected yet */
446                 ein->bei_state = CACHE_ENTRY_NOT_LINKED;
447
448                 /* Insert this node into the ID tree */
449                 ldap_pvt_thread_rdwr_wlock( &bdb->bi_cache.c_rwlock );
450                 if ( avl_insert( &bdb->bi_cache.c_idtree, (caddr_t)ein,
451                         bdb_id_cmp, avl_dup_error ) ) {
452
453                         /* Hm, can this really happen? */
454                         bdb_cache_entryinfo_destroy( ein );
455                         ein = (EntryInfo *)avl_find( bdb->bi_cache.c_idtree,
456                                 (caddr_t) &ei, bdb_id_cmp );
457                         if ( ei2 ) {
458                                 bdb_cache_entryinfo_lock( ein );
459                                 avl_insert( &ein->bei_kids, (caddr_t)ei2,
460                                         bdb_rdn_cmp, avl_dup_error );
461                                 bdb_cache_entryinfo_unlock( ein );
462                         }
463                 }
464
465                 /* If this is the first time, save this node
466                  * to be returned later.
467                  */
468                 if ( eir == NULL ) eir = ein;
469
470                 /* If there was a previous node, link it to this one */
471                 if ( ei2 ) ei2->bei_parent = ein;
472
473                 if ( eip.bei_id ) {
474                         ei2 = (EntryInfo *) avl_find( bdb->bi_cache.c_idtree,
475                                         (caddr_t) &eip, bdb_id_cmp );
476                 } else {
477                         ei2 = &bdb->bi_cache.c_dntree;
478                 }
479
480                 if ( ei2 ) {
481                         ein->bei_parent = ei2;
482                         bdb_cache_entryinfo_lock( ei2 );
483                         avl_insert( &ei2->bei_kids, (caddr_t)ein, bdb_rdn_cmp,
484                                 avl_dup_error);
485                         bdb_cache_entryinfo_unlock( ei2 );
486                         *res = eir;
487                         bdb_cache_entryinfo_lock( eir );
488                 }
489                 ldap_pvt_thread_rdwr_wunlock( &bdb->bi_cache.c_rwlock );
490                 if ( ei2 ) {
491                         /* Found a link. Reset all the state info */
492                         for (ein = eir; ein != ei2; ein=ein->bei_parent)
493                                 ein->bei_state &= ~CACHE_ENTRY_NOT_LINKED;
494                         break;
495                 }
496                 ei.bei_kids = NULL;
497                 ei.bei_id = eip.bei_id;
498                 avl_insert( &ei.bei_kids, (caddr_t)ein, bdb_rdn_cmp,
499                         avl_dup_error );
500         }
501         return rc;
502 }
503 #endif
504
505 /*
506  * cache_find_id - find an entry in the cache, given id.
507  * The entry is locked for Read upon return. Call with islocked TRUE if
508  * the supplied *eip was already locked.
509  */
510
511 int
512 bdb_cache_find_id(
513         Operation *op,
514         DB_TXN  *tid,
515         ID                              id,
516         EntryInfo       **eip,
517         int             islocked,
518         u_int32_t       locker,
519         DB_LOCK         *lock
520 )
521 {
522         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
523         Entry   *ep = NULL;
524         int     rc = 0;
525         EntryInfo ei;
526
527         ei.bei_id = id;
528
529         /* If we weren't given any info, see if we have it already cached */
530         if ( !*eip ) {
531 again:          ldap_pvt_thread_rdwr_rlock( &bdb->bi_cache.c_rwlock );
532                 *eip = (EntryInfo *) avl_find( bdb->bi_cache.c_idtree,
533                                         (caddr_t) &ei, bdb_id_cmp );
534                 if ( *eip ) {
535                         if ( ldap_pvt_thread_mutex_trylock(
536                                         &(*eip)->bei_kids_mutex )) {
537                                 ldap_pvt_thread_rdwr_runlock( &bdb->bi_cache.c_rwlock );
538                                 ldap_pvt_thread_yield();
539                                 goto again;
540                         }
541                         islocked = 1;
542                 }
543                 ldap_pvt_thread_rdwr_runlock( &bdb->bi_cache.c_rwlock );
544         }
545
546         /* See if the ID exists in the database; add it to the cache if so */
547         if ( !*eip ) {
548 #ifndef BDB_HIER
549                 rc = bdb_id2entry( op->o_bd, tid, id, &ep );
550                 if ( rc == 0 ) {
551                         rc = bdb_cache_find_ndn( op, tid,
552                                 &ep->e_nname, eip, locker );
553                         if ( *eip )
554                                 islocked = 1;
555                         if ( rc ) {
556                                 bdb_entry_return( ep );
557                                 ep = NULL;
558                         }
559                 }
560 #else
561                 rc = hdb_cache_find_parent(op, tid, id, eip );
562                 if ( rc == 0 && *eip )
563                         islocked = 1;
564 #endif
565         }
566
567         /* Ok, we found the info, do we have the entry? */
568         if ( *eip && rc == 0 ) {
569                 if ( (*eip)->bei_state & CACHE_ENTRY_DELETED ) {
570                         rc = DB_NOTFOUND;
571                 } else if ( !(*eip)->bei_e ) {
572                         if (!ep) {
573                                 rc = bdb_id2entry( op->o_bd, tid, id, &ep );
574                         }
575                         if ( rc == 0 ) {
576                                 bdb_cache_entry_db_lock( bdb->bi_dbenv, locker,
577                                         *eip, 1, 0, lock );
578                                 ep->e_private = *eip;
579 #ifdef BDB_HIER
580                                 bdb_fix_dn( ep, 0 );
581 #endif
582                                 (*eip)->bei_e = ep;
583                                 bdb_cache_entry_db_relock( bdb->bi_dbenv, locker,
584                                         *eip, 0, 0, lock );
585                         }
586                 } else {
587 #ifdef BDB_HIER
588                         rc = bdb_fix_dn( (*eip)->bei_e, 1 );
589                         if ( rc ) {
590                                 bdb_cache_entry_db_lock( bdb->bi_dbenv,
591                                         locker, *eip, 1, 0, lock );
592                                 rc = bdb_fix_dn( (*eip)->bei_e, 2 );
593                                 bdb_cache_entry_db_relock( bdb->bi_dbenv,
594                                         locker, *eip, 0, 0, lock );
595                         } else {
596                                 bdb_cache_entry_db_lock( bdb->bi_dbenv,
597                                         locker, *eip, 0, 0, lock );
598                         }
599 #else
600                         bdb_cache_entry_db_lock( bdb->bi_dbenv, locker,
601                                         *eip, 0, 0, lock );
602 #endif
603                 }
604         }
605         if ( rc == 0 && (*eip)->bei_kids == NULL ) {
606                 /* set lru mutex */
607                 ldap_pvt_thread_mutex_lock( &bdb->bi_cache.lru_mutex );
608                 LRU_DELETE( &bdb->bi_cache, *eip );
609                 LRU_ADD( &bdb->bi_cache, *eip );
610                 ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.lru_mutex );
611         }
612
613         if ( islocked ) {
614                 bdb_cache_entryinfo_unlock( *eip );
615         }
616         return rc;
617 }
618
619 int
620 bdb_cache_children(
621         Operation *op,
622         DB_TXN *txn,
623         Entry *e
624 )
625 {
626         int rc;
627
628         if ( BEI(e)->bei_kids ) {
629                 return 0;
630         }
631         if ( BEI(e)->bei_state & CACHE_ENTRY_NO_KIDS ) {
632                 return DB_NOTFOUND;
633         }
634         rc = bdb_dn2id_children( op, txn, e );
635         if ( rc == DB_NOTFOUND ) {
636                 BEI(e)->bei_state |= CACHE_ENTRY_NO_KIDS;
637         }
638         return rc;
639 }
640
641 /* Update the cache after a successful database Add. */
642 int
643 bdb_cache_add(
644         struct bdb_info *bdb,
645         EntryInfo *eip,
646         Entry *e,
647         struct berval *nrdn,
648         u_int32_t locker
649 )
650 {
651         EntryInfo *new, ei;
652         struct berval rdn = e->e_name;
653         int rc;
654
655         ei.bei_id = e->e_id;
656         ei.bei_parent = eip;
657         ei.bei_nrdn = *nrdn;
658 #ifdef BDB_HIER
659         if ( nrdn->bv_len != e->e_nname.bv_len ) {
660                 char *ptr = strchr( rdn.bv_val, ',' );
661                 rdn.bv_len = ptr - rdn.bv_val;
662         }
663         ber_dupbv( &ei.bei_rdn, &rdn );
664 #endif
665         rc = bdb_entryinfo_add_internal( bdb, &ei, &new, locker );
666         new->bei_e = e;
667         e->e_private = new;
668         new->bei_state = CACHE_ENTRY_NO_KIDS;
669         eip->bei_state &= ~CACHE_ENTRY_NO_KIDS;
670         bdb_cache_entryinfo_unlock( eip );
671         ldap_pvt_thread_rdwr_wunlock( &bdb->bi_cache.c_rwlock );
672         return rc;
673 }
674
675 int
676 bdb_cache_modify(
677         Entry *e,
678         Attribute *newAttrs,
679         DB_ENV *env,
680         u_int32_t locker,
681         DB_LOCK *lock
682 )
683 {
684         EntryInfo *ei = BEI(e);
685         
686         /* Get write lock on data */
687         bdb_cache_entry_db_relock( env, locker, ei, 1, 0, lock );
688
689         /* If we've done repeated mods on a cached entry, then e_attrs
690          * is no longer contiguous with the entry, and must be freed.
691          */
692         if ( (void *)e->e_attrs != (void *)(e+1) ) {
693                 attrs_free( e->e_attrs );
694         }
695         e->e_attrs = newAttrs;
696
697         return 0;
698 }
699
700 /*
701  * Change the rdn in the entryinfo. Also move to a new parent if needed.
702  */
703 int
704 bdb_cache_modrdn(
705         Entry *e,
706         struct berval *nrdn,
707         Entry *new,
708         EntryInfo *ein,
709         DB_ENV *env,
710         u_int32_t locker,
711         DB_LOCK *lock
712 )
713 {
714         EntryInfo *ei = BEI(e), *pei;
715         struct berval rdn;
716         int rc = 0;
717
718         /* Get write lock on data */
719         bdb_cache_entry_db_relock( env, locker, ei, 1, 0, lock );
720
721         /* If we've done repeated mods on a cached entry, then e_attrs
722          * is no longer contiguous with the entry, and must be freed.
723          */
724         if ( (void *)e->e_attrs != (void *)(e+1) ) {
725                 attrs_free( e->e_attrs );
726         }
727         e->e_attrs = new->e_attrs;
728         if( e->e_nname.bv_val < e->e_bv.bv_val || e->e_nname.bv_val >
729                 e->e_bv.bv_val + e->e_bv.bv_len ) {
730                 ch_free(e->e_name.bv_val);
731                 ch_free(e->e_nname.bv_val);
732         }
733         e->e_name = new->e_name;
734         e->e_nname = new->e_nname;
735
736         /* Lock the parent's kids AVL tree */
737         pei = ei->bei_parent;
738         bdb_cache_entryinfo_lock( pei );
739         avl_delete( &pei->bei_kids, (caddr_t) ei, bdb_rdn_cmp );
740         free( ei->bei_nrdn.bv_val );
741         ber_dupbv( &ei->bei_nrdn, nrdn );
742 #ifdef BDB_HIER
743         free( ei->bei_rdn.bv_val );
744
745         rdn = e->e_name;
746         if ( nrdn->bv_len != e->e_nname.bv_len ) {
747                 char *ptr = strchr(rdn.bv_val, ',');
748                 rdn.bv_len = ptr - rdn.bv_val;
749         }
750         ber_dupbv( &ei->bei_rdn, &rdn );
751 #endif
752
753         if (!ein) {
754                 ein = ei->bei_parent;
755         } else {
756                 ei->bei_parent = ein;
757                 bdb_cache_entryinfo_unlock( pei );
758                 bdb_cache_entryinfo_lock( ein );
759         }
760 #ifdef BDB_HIER
761         { int max = ei->bei_modrdns;
762         /* Record the generation number of this change */
763                 for ( pei = ein; pei->bei_parent; pei = pei->bei_parent ) {
764                         if ( pei->bei_modrdns > max )
765                                 max = pei->bei_modrdns;
766                 }
767                 ei->bei_modrdns = max + 1;
768         }
769 #endif
770         avl_insert( &ein->bei_kids, ei, bdb_rdn_cmp, avl_dup_error );
771         bdb_cache_entryinfo_unlock( ein );
772         return rc;
773 }
774 /*
775  * cache_delete - delete the entry e from the cache. 
776  *
777  * returns:     0       e was deleted ok
778  *              1       e was not in the cache
779  *              -1      something bad happened
780  */
781 int
782 bdb_cache_delete(
783     Cache       *cache,
784     Entry               *e,
785     DB_ENV      *env,
786     u_int32_t   locker,
787     DB_LOCK     *lock
788 )
789 {
790         EntryInfo *ei = BEI(e);
791         int     rc;
792
793         assert( e->e_private );
794
795         /* Set this early, warn off any queriers */
796         ei->bei_state |= CACHE_ENTRY_DELETED;
797
798         /* Get write lock on the data */
799         bdb_cache_entry_db_relock( env, locker, ei, 1, 0, lock );
800
801         /* set cache write lock */
802         ldap_pvt_thread_rdwr_wlock( &cache->c_rwlock );
803
804         /* Lock the parent's kids tree */
805         bdb_cache_entryinfo_lock( ei->bei_parent );
806
807 #ifdef NEW_LOGGING
808         LDAP_LOG( CACHE, ENTRY, 
809                 "bdb_cache_delete: delete %ld.\n", e->e_id, 0, 0 );
810 #else
811         Debug( LDAP_DEBUG_TRACE, "====> bdb_cache_delete( %ld )\n",
812                 e->e_id, 0, 0 );
813 #endif
814
815         /* set lru mutex */
816         ldap_pvt_thread_mutex_lock( &cache->lru_mutex );
817         rc = bdb_cache_delete_internal( cache, e->e_private );
818         /* free lru mutex */
819         ldap_pvt_thread_mutex_unlock( &cache->lru_mutex );
820
821         /* free cache write lock */
822         ldap_pvt_thread_rdwr_wunlock( &cache->c_rwlock );
823         bdb_cache_entryinfo_unlock( ei->bei_parent );
824         return( rc );
825 }
826
827 void
828 bdb_cache_delete_cleanup(
829         Entry *e
830 )
831 {
832         bdb_cache_entryinfo_destroy( e->e_private );
833         e->e_private = NULL;
834         bdb_entry_return( e );
835 }
836         
837 static int
838 bdb_cache_delete_internal(
839     Cache       *cache,
840     EntryInfo           *e
841 )
842 {
843         int rc = 0;     /* return code */
844
845         /* dn tree */
846         if ( avl_delete( &e->bei_parent->bei_kids, (caddr_t) e, bdb_rdn_cmp ) == NULL )
847         {
848                 rc = -1;
849         }
850
851         /* If parent has no more kids, put in on LRU list */
852         if ( e->bei_parent->bei_kids == NULL ) {
853                 LRU_ADD( cache, e->bei_parent );
854                 cache->c_cursize++;
855         }
856
857         /* id tree */
858         if ( avl_delete( &cache->c_idtree, (caddr_t) e, bdb_id_cmp ) == NULL )
859         {
860                 rc = -1;
861         }
862
863         if (rc != 0) {
864                 return rc;
865         }
866
867         /* lru */
868         LRU_DELETE( cache, e );
869         cache->c_cursize--;
870
871         /*
872          * flag entry to be freed later by a call to cache_return_entry()
873          */
874         e->bei_state |= CACHE_ENTRY_DELETED;
875
876         return( 0 );
877 }
878
879 static void
880 bdb_entryinfo_release( void *data )
881 {
882         EntryInfo *ei = (EntryInfo *)data;
883         if ( ei->bei_kids ) {
884                 avl_free( ei->bei_kids, NULL );
885         }
886         if ( ei->bei_e ) {
887                 ei->bei_e->e_private = NULL;
888                 bdb_entry_return( ei->bei_e );
889         }
890         bdb_cache_entryinfo_destroy( ei );
891 }
892
893 void
894 bdb_cache_release_all( Cache *cache )
895 {
896         /* set cache write lock */
897         ldap_pvt_thread_rdwr_wlock( &cache->c_rwlock );
898         /* set lru mutex */
899         ldap_pvt_thread_mutex_lock( &cache->lru_mutex );
900
901 #ifdef NEW_LOGGING
902         LDAP_LOG( CACHE, ENTRY, "bdb_cache_release_all: enter\n", 0, 0, 0 );
903 #else
904         Debug( LDAP_DEBUG_TRACE, "====> bdb_cache_release_all\n", 0, 0, 0 );
905 #endif
906
907         avl_free( cache->c_dntree.bei_kids, NULL );
908         avl_free( cache->c_idtree, bdb_entryinfo_release );
909         cache->c_lruhead = NULL;
910         cache->c_lrutail = NULL;
911
912         /* free lru mutex */
913         ldap_pvt_thread_mutex_unlock( &cache->lru_mutex );
914         /* free cache write lock */
915         ldap_pvt_thread_rdwr_wunlock( &cache->c_rwlock );
916 }
917
918 #ifdef LDAP_DEBUG
919 static void
920 bdb_lru_print( Cache *cache )
921 {
922         EntryInfo       *e;
923
924         fprintf( stderr, "LRU queue (head to tail):\n" );
925         for ( e = cache->c_lruhead; e != NULL; e = e->bei_lrunext ) {
926                 fprintf( stderr, "\trdn \"%20s\" id %ld\n",
927                         e->bei_nrdn.bv_val, e->bei_id );
928         }
929         fprintf( stderr, "LRU queue (tail to head):\n" );
930         for ( e = cache->c_lrutail; e != NULL; e = e->bei_lruprev ) {
931                 fprintf( stderr, "\trdn \"%20s\" id %ld\n",
932                         e->bei_nrdn.bv_val, e->bei_id );
933         }
934 }
935 #endif
936
937 #ifdef BDB_REUSE_LOCKERS
938 static void
939 bdb_locker_id_free( void *key, void *data )
940 {
941         DB_ENV *env = key;
942         int lockid = (int) data;
943         int rc;
944
945
946         rc = XLOCK_ID_FREE( env, lockid );
947         if ( rc == EINVAL ) {
948                 DB_LOCKREQ lr;
949 #ifdef NEW_LOGGING
950                 LDAP_LOG( BACK_BDB, ERR,
951                         "bdb_locker_id_free: %d err %s(%d)\n",
952                         lockid, db_strerror(rc), rc );
953 #else
954                 Debug( LDAP_DEBUG_ANY,
955                         "bdb_locker_id_free: %d err %s(%d)\n",
956                         lockid, db_strerror(rc), rc );
957 #endif
958                 memset( &lr, 0, sizeof(lr) );
959
960                 /* release all locks held by this locker. */
961                 lr.op = DB_LOCK_PUT_ALL;
962                 env->lock_vec( env, lockid, 0, &lr, 1, NULL );
963                 XLOCK_ID_FREE( env, lockid );
964         }
965 }
966
967 int
968 bdb_locker_id( Operation *op, DB_ENV *env, int *locker )
969 {
970         int i, rc, lockid;
971         void *data;
972         void *ctx;
973
974         if ( !env || !locker ) return -1;
975
976         /* If no op was provided, try to find the ctx anyway... */
977         if ( op ) {
978                 ctx = op->o_threadctx;
979         } else {
980                 ctx = ldap_pvt_thread_pool_context();
981         }
982
983         /* Shouldn't happen unless we're single-threaded */
984         if ( !ctx ) {
985                 *locker = 0;
986                 return 0;
987         }
988
989         if ( ldap_pvt_thread_pool_getkey( ctx, env, &data, NULL ) ) {
990                 for ( i=0, rc=1; rc != 0 && i<4; i++ ) {
991                         rc = XLOCK_ID( env, &lockid );
992                         if (rc) ldap_pvt_thread_yield();
993                 }
994                 if ( rc != 0) {
995                         return rc;
996                 }
997                 data = (void *)lockid;
998                 if ( ( rc = ldap_pvt_thread_pool_setkey( ctx, env,
999                         data, bdb_locker_id_free ) ) ) {
1000                         XLOCK_ID_FREE( env, lockid );
1001 #ifdef NEW_LOGGING
1002                         LDAP_LOG( BACK_BDB, ERR, "bdb_locker_id: err %s(%d)\n",
1003                                 db_strerror(rc), rc, 0 );
1004 #else
1005                         Debug( LDAP_DEBUG_ANY, "bdb_locker_id: err %s(%d)\n",
1006                                 db_strerror(rc), rc, 0 );
1007 #endif
1008
1009                         return rc;
1010                 }
1011         } else {
1012                 lockid = (int)data;
1013         }
1014         *locker = lockid;
1015         return 0;
1016 }
1017 #endif