]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/cache.c
f05980beb31f861a54a0a70f150ba512a579ddd1
[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 {
572                         bdb_cache_entry_db_lock( bdb->bi_dbenv, locker,
573                                         *eip, 0, 0, lock );
574
575                         if ( !(*eip)->bei_e ) {
576                                 if (!ep) {
577                                         rc = bdb_id2entry( op->o_bd, tid, id, &ep );
578                                 }
579                                 if ( rc == 0 ) {
580                                         bdb_cache_entry_db_relock( bdb->bi_dbenv, locker,
581                                                 *eip, 1, 0, lock );
582                                         /* Make sure no other modifier beat us to it */
583                                         if ( (*eip)->bei_e ) {
584                                                 bdb_entry_return( ep );
585                                                 ep = NULL;
586                                         } else {
587                                                 ep->e_private = *eip;
588 #ifdef BDB_HIER
589                                                 bdb_fix_dn( ep, 0 );
590 #endif
591                                                 (*eip)->bei_e = ep;
592                                         }
593                                         bdb_cache_entry_db_relock( bdb->bi_dbenv, locker,
594                                                 *eip, 0, 0, lock );
595                                 }
596                         }
597 #ifdef BDB_HIER
598                         else {
599                                 rc = bdb_fix_dn( (*eip)->bei_e, 1 );
600                                 if ( rc ) {
601                                         bdb_cache_entry_db_relock( bdb->bi_dbenv,
602                                                 locker, *eip, 1, 0, lock );
603                                         /* check again in case other modifier did it already */
604                                         if ( bdb_fix_dn( (*eip)->bei_e, 1 ) )
605                                                 rc = bdb_fix_dn( (*eip)->bei_e, 2 );
606                                         bdb_cache_entry_db_relock( bdb->bi_dbenv,
607                                                 locker, *eip, 0, 0, lock );
608                                 }
609                         }
610 #endif
611                 }
612         }
613         if ( rc == 0 && (*eip)->bei_kids == NULL ) {
614                 /* set lru mutex */
615                 ldap_pvt_thread_mutex_lock( &bdb->bi_cache.lru_mutex );
616                 LRU_DELETE( &bdb->bi_cache, *eip );
617                 LRU_ADD( &bdb->bi_cache, *eip );
618                 ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.lru_mutex );
619         }
620
621         if ( islocked ) {
622                 bdb_cache_entryinfo_unlock( *eip );
623         }
624         return rc;
625 }
626
627 int
628 bdb_cache_children(
629         Operation *op,
630         DB_TXN *txn,
631         Entry *e
632 )
633 {
634         int rc;
635
636         if ( BEI(e)->bei_kids ) {
637                 return 0;
638         }
639         if ( BEI(e)->bei_state & CACHE_ENTRY_NO_KIDS ) {
640                 return DB_NOTFOUND;
641         }
642         rc = bdb_dn2id_children( op, txn, e );
643         if ( rc == DB_NOTFOUND ) {
644                 BEI(e)->bei_state |= CACHE_ENTRY_NO_KIDS;
645         }
646         return rc;
647 }
648
649 /* Update the cache after a successful database Add. */
650 int
651 bdb_cache_add(
652         struct bdb_info *bdb,
653         EntryInfo *eip,
654         Entry *e,
655         struct berval *nrdn,
656         u_int32_t locker
657 )
658 {
659         EntryInfo *new, ei;
660         struct berval rdn = e->e_name;
661         int rc;
662
663         ei.bei_id = e->e_id;
664         ei.bei_parent = eip;
665         ei.bei_nrdn = *nrdn;
666 #ifdef BDB_HIER
667         if ( nrdn->bv_len != e->e_nname.bv_len ) {
668                 char *ptr = strchr( rdn.bv_val, ',' );
669                 rdn.bv_len = ptr - rdn.bv_val;
670         }
671         ber_dupbv( &ei.bei_rdn, &rdn );
672 #endif
673         rc = bdb_entryinfo_add_internal( bdb, &ei, &new, locker );
674         new->bei_e = e;
675         e->e_private = new;
676         new->bei_state = CACHE_ENTRY_NO_KIDS;
677         eip->bei_state &= ~CACHE_ENTRY_NO_KIDS;
678         bdb_cache_entryinfo_unlock( eip );
679         ldap_pvt_thread_rdwr_wunlock( &bdb->bi_cache.c_rwlock );
680         return rc;
681 }
682
683 int
684 bdb_cache_modify(
685         Entry *e,
686         Attribute *newAttrs,
687         DB_ENV *env,
688         u_int32_t locker,
689         DB_LOCK *lock
690 )
691 {
692         EntryInfo *ei = BEI(e);
693         
694         /* Get write lock on data */
695         bdb_cache_entry_db_relock( env, locker, ei, 1, 0, lock );
696
697         /* If we've done repeated mods on a cached entry, then e_attrs
698          * is no longer contiguous with the entry, and must be freed.
699          */
700         if ( (void *)e->e_attrs != (void *)(e+1) ) {
701                 attrs_free( e->e_attrs );
702         }
703         e->e_attrs = newAttrs;
704
705         return 0;
706 }
707
708 /*
709  * Change the rdn in the entryinfo. Also move to a new parent if needed.
710  */
711 int
712 bdb_cache_modrdn(
713         Entry *e,
714         struct berval *nrdn,
715         Entry *new,
716         EntryInfo *ein,
717         DB_ENV *env,
718         u_int32_t locker,
719         DB_LOCK *lock
720 )
721 {
722         EntryInfo *ei = BEI(e), *pei;
723         struct berval rdn;
724         int rc = 0;
725
726         /* Get write lock on data */
727         bdb_cache_entry_db_relock( env, locker, ei, 1, 0, lock );
728
729         /* If we've done repeated mods on a cached entry, then e_attrs
730          * is no longer contiguous with the entry, and must be freed.
731          */
732         if ( (void *)e->e_attrs != (void *)(e+1) ) {
733                 attrs_free( e->e_attrs );
734         }
735         e->e_attrs = new->e_attrs;
736         if( e->e_nname.bv_val < e->e_bv.bv_val || e->e_nname.bv_val >
737                 e->e_bv.bv_val + e->e_bv.bv_len ) {
738                 ch_free(e->e_name.bv_val);
739                 ch_free(e->e_nname.bv_val);
740         }
741         e->e_name = new->e_name;
742         e->e_nname = new->e_nname;
743
744         /* Lock the parent's kids AVL tree */
745         pei = ei->bei_parent;
746         bdb_cache_entryinfo_lock( pei );
747         avl_delete( &pei->bei_kids, (caddr_t) ei, bdb_rdn_cmp );
748         free( ei->bei_nrdn.bv_val );
749         ber_dupbv( &ei->bei_nrdn, nrdn );
750 #ifdef BDB_HIER
751         free( ei->bei_rdn.bv_val );
752
753         rdn = e->e_name;
754         if ( nrdn->bv_len != e->e_nname.bv_len ) {
755                 char *ptr = strchr(rdn.bv_val, ',');
756                 rdn.bv_len = ptr - rdn.bv_val;
757         }
758         ber_dupbv( &ei->bei_rdn, &rdn );
759 #endif
760
761         if (!ein) {
762                 ein = ei->bei_parent;
763         } else {
764                 ei->bei_parent = ein;
765                 bdb_cache_entryinfo_unlock( pei );
766                 bdb_cache_entryinfo_lock( ein );
767         }
768 #ifdef BDB_HIER
769         { int max = ei->bei_modrdns;
770         /* Record the generation number of this change */
771                 for ( pei = ein; pei->bei_parent; pei = pei->bei_parent ) {
772                         if ( pei->bei_modrdns > max )
773                                 max = pei->bei_modrdns;
774                 }
775                 ei->bei_modrdns = max + 1;
776         }
777 #endif
778         avl_insert( &ein->bei_kids, ei, bdb_rdn_cmp, avl_dup_error );
779         bdb_cache_entryinfo_unlock( ein );
780         return rc;
781 }
782 /*
783  * cache_delete - delete the entry e from the cache. 
784  *
785  * returns:     0       e was deleted ok
786  *              1       e was not in the cache
787  *              -1      something bad happened
788  */
789 int
790 bdb_cache_delete(
791     Cache       *cache,
792     Entry               *e,
793     DB_ENV      *env,
794     u_int32_t   locker,
795     DB_LOCK     *lock
796 )
797 {
798         EntryInfo *ei = BEI(e);
799         int     rc;
800
801         assert( e->e_private );
802
803         /* Set this early, warn off any queriers */
804         ei->bei_state |= CACHE_ENTRY_DELETED;
805
806         /* Get write lock on the data */
807         bdb_cache_entry_db_relock( env, locker, ei, 1, 0, lock );
808
809         /* set cache write lock */
810         ldap_pvt_thread_rdwr_wlock( &cache->c_rwlock );
811
812         /* Lock the parent's kids tree */
813         bdb_cache_entryinfo_lock( ei->bei_parent );
814
815 #ifdef NEW_LOGGING
816         LDAP_LOG( CACHE, ENTRY, 
817                 "bdb_cache_delete: delete %ld.\n", e->e_id, 0, 0 );
818 #else
819         Debug( LDAP_DEBUG_TRACE, "====> bdb_cache_delete( %ld )\n",
820                 e->e_id, 0, 0 );
821 #endif
822
823         /* set lru mutex */
824         ldap_pvt_thread_mutex_lock( &cache->lru_mutex );
825         rc = bdb_cache_delete_internal( cache, e->e_private );
826         /* free lru mutex */
827         ldap_pvt_thread_mutex_unlock( &cache->lru_mutex );
828
829         /* free cache write lock */
830         ldap_pvt_thread_rdwr_wunlock( &cache->c_rwlock );
831         bdb_cache_entryinfo_unlock( ei->bei_parent );
832         return( rc );
833 }
834
835 void
836 bdb_cache_delete_cleanup(
837         Entry *e
838 )
839 {
840         bdb_cache_entryinfo_destroy( e->e_private );
841         e->e_private = NULL;
842         bdb_entry_return( e );
843 }
844         
845 static int
846 bdb_cache_delete_internal(
847     Cache       *cache,
848     EntryInfo           *e
849 )
850 {
851         int rc = 0;     /* return code */
852
853         /* dn tree */
854         if ( avl_delete( &e->bei_parent->bei_kids, (caddr_t) e, bdb_rdn_cmp ) == NULL )
855         {
856                 rc = -1;
857         }
858
859         /* If parent has no more kids, put in on LRU list */
860         if ( e->bei_parent->bei_kids == NULL ) {
861                 LRU_ADD( cache, e->bei_parent );
862                 cache->c_cursize++;
863         }
864
865         /* id tree */
866         if ( avl_delete( &cache->c_idtree, (caddr_t) e, bdb_id_cmp ) == NULL )
867         {
868                 rc = -1;
869         }
870
871         if (rc != 0) {
872                 return rc;
873         }
874
875         /* lru */
876         LRU_DELETE( cache, e );
877         cache->c_cursize--;
878
879         /*
880          * flag entry to be freed later by a call to cache_return_entry()
881          */
882         e->bei_state |= CACHE_ENTRY_DELETED;
883
884         return( 0 );
885 }
886
887 static void
888 bdb_entryinfo_release( void *data )
889 {
890         EntryInfo *ei = (EntryInfo *)data;
891         if ( ei->bei_kids ) {
892                 avl_free( ei->bei_kids, NULL );
893         }
894         if ( ei->bei_e ) {
895                 ei->bei_e->e_private = NULL;
896                 bdb_entry_return( ei->bei_e );
897         }
898         bdb_cache_entryinfo_destroy( ei );
899 }
900
901 void
902 bdb_cache_release_all( Cache *cache )
903 {
904         /* set cache write lock */
905         ldap_pvt_thread_rdwr_wlock( &cache->c_rwlock );
906         /* set lru mutex */
907         ldap_pvt_thread_mutex_lock( &cache->lru_mutex );
908
909 #ifdef NEW_LOGGING
910         LDAP_LOG( CACHE, ENTRY, "bdb_cache_release_all: enter\n", 0, 0, 0 );
911 #else
912         Debug( LDAP_DEBUG_TRACE, "====> bdb_cache_release_all\n", 0, 0, 0 );
913 #endif
914
915         avl_free( cache->c_dntree.bei_kids, NULL );
916         avl_free( cache->c_idtree, bdb_entryinfo_release );
917         cache->c_lruhead = NULL;
918         cache->c_lrutail = NULL;
919
920         /* free lru mutex */
921         ldap_pvt_thread_mutex_unlock( &cache->lru_mutex );
922         /* free cache write lock */
923         ldap_pvt_thread_rdwr_wunlock( &cache->c_rwlock );
924 }
925
926 #ifdef LDAP_DEBUG
927 static void
928 bdb_lru_print( Cache *cache )
929 {
930         EntryInfo       *e;
931
932         fprintf( stderr, "LRU queue (head to tail):\n" );
933         for ( e = cache->c_lruhead; e != NULL; e = e->bei_lrunext ) {
934                 fprintf( stderr, "\trdn \"%20s\" id %ld\n",
935                         e->bei_nrdn.bv_val, e->bei_id );
936         }
937         fprintf( stderr, "LRU queue (tail to head):\n" );
938         for ( e = cache->c_lrutail; e != NULL; e = e->bei_lruprev ) {
939                 fprintf( stderr, "\trdn \"%20s\" id %ld\n",
940                         e->bei_nrdn.bv_val, e->bei_id );
941         }
942 }
943 #endif
944
945 #ifdef BDB_REUSE_LOCKERS
946 static void
947 bdb_locker_id_free( void *key, void *data )
948 {
949         DB_ENV *env = key;
950         int lockid = (int) data;
951         int rc;
952
953
954         rc = XLOCK_ID_FREE( env, lockid );
955         if ( rc == EINVAL ) {
956                 DB_LOCKREQ lr;
957 #ifdef NEW_LOGGING
958                 LDAP_LOG( BACK_BDB, ERR,
959                         "bdb_locker_id_free: %d err %s(%d)\n",
960                         lockid, db_strerror(rc), rc );
961 #else
962                 Debug( LDAP_DEBUG_ANY,
963                         "bdb_locker_id_free: %d err %s(%d)\n",
964                         lockid, db_strerror(rc), rc );
965 #endif
966                 memset( &lr, 0, sizeof(lr) );
967
968                 /* release all locks held by this locker. */
969                 lr.op = DB_LOCK_PUT_ALL;
970                 env->lock_vec( env, lockid, 0, &lr, 1, NULL );
971                 XLOCK_ID_FREE( env, lockid );
972         }
973 }
974
975 int
976 bdb_locker_id( Operation *op, DB_ENV *env, int *locker )
977 {
978         int i, rc, lockid;
979         void *data;
980         void *ctx;
981
982         if ( !env || !locker ) return -1;
983
984         /* If no op was provided, try to find the ctx anyway... */
985         if ( op ) {
986                 ctx = op->o_threadctx;
987         } else {
988                 ctx = ldap_pvt_thread_pool_context();
989         }
990
991         /* Shouldn't happen unless we're single-threaded */
992         if ( !ctx ) {
993                 *locker = 0;
994                 return 0;
995         }
996
997         if ( ldap_pvt_thread_pool_getkey( ctx, env, &data, NULL ) ) {
998                 for ( i=0, rc=1; rc != 0 && i<4; i++ ) {
999                         rc = XLOCK_ID( env, &lockid );
1000                         if (rc) ldap_pvt_thread_yield();
1001                 }
1002                 if ( rc != 0) {
1003                         return rc;
1004                 }
1005                 data = (void *)lockid;
1006                 if ( ( rc = ldap_pvt_thread_pool_setkey( ctx, env,
1007                         data, bdb_locker_id_free ) ) ) {
1008                         XLOCK_ID_FREE( env, lockid );
1009 #ifdef NEW_LOGGING
1010                         LDAP_LOG( BACK_BDB, ERR, "bdb_locker_id: err %s(%d)\n",
1011                                 db_strerror(rc), rc, 0 );
1012 #else
1013                         Debug( LDAP_DEBUG_ANY, "bdb_locker_id: err %s(%d)\n",
1014                                 db_strerror(rc), rc, 0 );
1015 #endif
1016
1017                         return rc;
1018                 }
1019         } else {
1020                 lockid = (int)data;
1021         }
1022         *locker = lockid;
1023         return 0;
1024 }
1025 #endif