]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/cache.c
d1e99534637253b2f4ebf7273a792f296a7c6b52
[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                                 /* Need to lock parent to delete child */
243                                 if ( ldap_pvt_thread_mutex_trylock(
244                                         &elru->bei_parent->bei_kids_mutex )) {
245                                         bdb_cache_entry_db_unlock( env, &lock );
246                                         continue;
247                                 }
248                                 bdb_cache_delete_internal( cache, elru );
249                                 bdb_cache_entryinfo_unlock( elru->bei_parent );
250                                 elru->bei_e->e_private = NULL;
251                                 bdb_entry_return( elru->bei_e );
252                                 bdb_cache_entry_db_unlock( env, &lock );
253                                 if (ei2) {
254                                         bdb_cache_entryinfo_destroy( elru );
255                                 } else {
256                                         /* re-use this one */
257                                         ch_free(elru->bei_nrdn.bv_val);
258                                         elru->bei_nrdn.bv_val = NULL;
259                                         elru->bei_e = NULL;
260                                         elru->bei_kids = NULL;
261                                         elru->bei_lrunext = NULL;
262                                         elru->bei_lruprev = NULL;
263                                         elru->bei_state = 0;
264 #ifdef BDB_HIER
265                                         ch_free(elru->bei_rdn.bv_val);
266                                         elru->bei_rdn.bv_val = NULL;
267                                         elru->bei_modrdns = 0;
268 #endif
269                                         ei2 = elru;
270                                 }
271                                 if (cache->c_cursize < cache->c_maxsize)
272                                         break;
273                         }
274                 }
275         }
276         if (!ei2) {
277                 ei2 = bdb_cache_entryinfo_new();
278         }
279         ei2->bei_id = ei->bei_id;
280         ei2->bei_parent = ei->bei_parent;
281 #ifdef BDB_HIER
282         ei2->bei_rdn = ei->bei_rdn;
283 #endif
284
285         /* Add to cache ID tree */
286         if (avl_insert( &cache->c_idtree, ei2, bdb_id_cmp, avl_dup_error )) {
287                 EntryInfo *eix;
288                 eix = avl_find( cache->c_idtree, ei2, bdb_id_cmp );
289                 bdb_cache_entryinfo_destroy( ei2 );
290                 ei2 = eix;
291                 addkid = 0;
292                 cache->c_cursize -= incr;
293 #ifdef BDB_HIER
294                 /* It got freed above because its value was
295                  * assigned to ei2.
296                  */
297                 ei->bei_rdn.bv_val = NULL;
298 #endif
299         } else {
300                 LRU_ADD( cache, ei2 );
301                 ber_dupbv( &ei2->bei_nrdn, &ei->bei_nrdn );
302         }
303
304         if ( addkid ) {
305                 avl_insert( &ei->bei_parent->bei_kids, ei2, bdb_rdn_cmp,
306                         avl_dup_error );
307         }
308
309         ldap_pvt_thread_mutex_unlock( &cache->lru_mutex );
310
311         *res = ei2;
312         return 0;
313 }
314
315 /* Find the EntryInfo for the requested DN. If the DN cannot be found, return
316  * the info for its closest ancestor. *res should be NULL to process a
317  * complete DN starting from the tree root. Otherwise *res must be the
318  * immediate parent of the requested DN, and only the RDN will be searched.
319  * The EntryInfo is locked upon return and must be unlocked by the caller.
320  */
321 int
322 bdb_cache_find_ndn(
323         Operation       *op,
324         DB_TXN          *txn,
325         struct berval   *ndn,
326         EntryInfo       **res,
327         u_int32_t       locker
328 )
329 {
330         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
331         EntryInfo       ei, *eip, *ei2;
332         int rc = 0;
333         char *ptr;
334
335         /* this function is always called with normalized DN */
336         if ( *res ) {
337                 /* we're doing a onelevel search for an RDN */
338                 ei.bei_nrdn.bv_val = ndn->bv_val;
339                 ei.bei_nrdn.bv_len = dn_rdnlen( op->o_bd, ndn );
340                 eip = *res;
341         } else {
342                 /* we're searching a full DN from the root */
343                 ptr = ndn->bv_val + ndn->bv_len - op->o_bd->be_nsuffix[0].bv_len;
344                 ei.bei_nrdn.bv_val = ptr;
345                 ei.bei_nrdn.bv_len = op->o_bd->be_nsuffix[0].bv_len;
346                 eip = &bdb->bi_cache.c_dntree;
347         }
348         
349         for ( bdb_cache_entryinfo_lock( eip ); eip; ) {
350                 ei.bei_parent = eip;
351                 ei2 = (EntryInfo *)avl_find( eip->bei_kids, &ei, bdb_rdn_cmp );
352                 if ( !ei2 ) {
353                         int len = ei.bei_nrdn.bv_len;
354                                 
355                         ei.bei_nrdn.bv_len = ndn->bv_len - (ei.bei_nrdn.bv_val - ndn->bv_val);
356                         bdb_cache_entryinfo_unlock( eip );
357
358                         rc = bdb_dn2id( op, txn, &ei.bei_nrdn, &ei );
359                         if (rc) {
360                                 bdb_cache_entryinfo_lock( eip );
361                                 *res = eip;
362                                 return rc;
363                         }
364
365                         /* DN exists but needs to be added to cache */
366                         ei.bei_nrdn.bv_len = len;
367                         rc = bdb_entryinfo_add_internal( bdb, &ei, &ei2,
368                                 locker );
369                         /* add_internal left eip and c_rwlock locked */
370                         ldap_pvt_thread_rdwr_wunlock( &bdb->bi_cache.c_rwlock );
371                         if ( rc ) {
372                                 *res = eip;
373                                 return rc;
374                         }
375                 } else if ( ei2->bei_state & CACHE_ENTRY_DELETED ) {
376                         /* In the midst of deleting? Give it a chance to
377                          * complete.
378                          */
379                         bdb_cache_entryinfo_unlock( eip );
380                         ldap_pvt_thread_yield();
381                         bdb_cache_entryinfo_lock( eip );
382                         *res = eip;
383                         return DB_NOTFOUND;
384                 }
385                 bdb_cache_entryinfo_unlock( eip );
386                 bdb_cache_entryinfo_lock( ei2 );
387
388                 eip = ei2;
389
390                 /* Advance to next lower RDN */
391                 for (ptr = ei.bei_nrdn.bv_val - 2; ptr > ndn->bv_val
392                         && !DN_SEPARATOR(*ptr); ptr--);
393                 if ( ptr >= ndn->bv_val ) {
394                         if (DN_SEPARATOR(*ptr)) ptr++;
395                         ei.bei_nrdn.bv_len = ei.bei_nrdn.bv_val - ptr - 1;
396                         ei.bei_nrdn.bv_val = ptr;
397                 }
398                 if ( ptr < ndn->bv_val ) {
399                         *res = eip;
400                         break;
401                 }
402         }
403
404         return rc;
405 }
406
407 #ifdef BDB_HIER
408 /* Walk up the tree from a child node, looking for an ID that's already
409  * been linked into the cache.
410  */
411 static int
412 hdb_cache_find_parent(
413         Operation *op,
414         DB_TXN *txn,
415         ID id,
416         EntryInfo **res
417 )
418 {
419         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
420         EntryInfo ei, eip, *ei2 = NULL, *ein = NULL, *eir = NULL;
421         ID parent;
422         int rc;
423
424         ei.bei_id = id;
425         ei.bei_kids = NULL;
426
427         for (;;) {
428                 rc = hdb_dn2id_parent( op, txn, &ei, &eip.bei_id );
429                 if ( rc ) break;
430
431                 /* Save the previous node, if any */
432                 ei2 = ein;
433
434                 /* Create a new node for the current ID */
435                 ein = bdb_cache_entryinfo_new();
436                 ein->bei_id = ei.bei_id;
437                 ein->bei_kids = ei.bei_kids;
438                 ein->bei_nrdn = ei.bei_nrdn;
439                 ein->bei_rdn = ei.bei_rdn;
440                 
441                 /* This node is not fully connected yet */
442                 ein->bei_state = CACHE_ENTRY_NOT_LINKED;
443
444                 /* Insert this node into the ID tree */
445                 ldap_pvt_thread_rdwr_rlock( &bdb->bi_cache.c_rwlock );
446                 if ( avl_insert( &bdb->bi_cache.c_idtree, (caddr_t)ein,
447                         bdb_id_cmp, avl_dup_error ) ) {
448
449                         /* Hm, can this really happen? */
450                         bdb_cache_entryinfo_destroy( ein );
451                         ein = (EntryInfo *)avl_find( bdb->bi_cache.c_idtree,
452                                 (caddr_t) &ei, bdb_id_cmp );
453                         if ( ei2 ) {
454                                 bdb_cache_entryinfo_lock( ein );
455                                 avl_insert( &ein->bei_kids, (caddr_t)ei2,
456                                         bdb_rdn_cmp, avl_dup_error );
457                                 bdb_cache_entryinfo_unlock( ein );
458                         }
459                 }
460
461                 /* If this is the first time, save this node
462                  * to be returned later.
463                  */
464                 if ( eir == NULL ) eir = ein;
465
466                 /* If there was a previous node, link it to this one */
467                 if ( ei2 ) ei2->bei_parent = ein;
468
469                 if ( eip.bei_id ) {
470                         ei2 = (EntryInfo *) avl_find( bdb->bi_cache.c_idtree,
471                                         (caddr_t) &eip, bdb_id_cmp );
472                 } else {
473                         ei2 = &bdb->bi_cache.c_dntree;
474                 }
475
476                 if ( ei2 ) {
477                         ein->bei_parent = ei2;
478                         bdb_cache_entryinfo_lock( ei2 );
479                         avl_insert( &ei2->bei_kids, (caddr_t)ein, bdb_rdn_cmp,
480                                 avl_dup_error);
481                         bdb_cache_entryinfo_unlock( ei2 );
482                         *res = eir;
483                         bdb_cache_entryinfo_lock( eir );
484                 }
485                 ldap_pvt_thread_rdwr_runlock( &bdb->bi_cache.c_rwlock );
486                 if ( ei2 ) {
487                         /* Found a link. Reset all the state info */
488                         for (ein = eir; ein != ei2; ein=ein->bei_parent)
489                                 ein->bei_state &= ~CACHE_ENTRY_NOT_LINKED;
490                         break;
491                 }
492                 ei.bei_kids = NULL;
493                 ei.bei_id = eip.bei_id;
494                 avl_insert( &ei.bei_kids, (caddr_t)ein, bdb_rdn_cmp,
495                         avl_dup_error );
496         }
497         return rc;
498 }
499 #endif
500
501 /*
502  * cache_find_id - find an entry in the cache, given id.
503  * The entry is locked for Read upon return. Call with islocked TRUE if
504  * the supplied *eip was already locked.
505  */
506
507 int
508 bdb_cache_find_id(
509         Operation *op,
510         DB_TXN  *tid,
511         ID                              id,
512         EntryInfo       **eip,
513         int             islocked,
514         u_int32_t       locker,
515         DB_LOCK         *lock
516 )
517 {
518         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
519         Entry   *ep = NULL;
520         int     rc = 0;
521         EntryInfo ei;
522
523         ei.bei_id = id;
524
525         /* If we weren't given any info, see if we have it already cached */
526         if ( !*eip ) {
527                 ldap_pvt_thread_rdwr_rlock( &bdb->bi_cache.c_rwlock );
528                 *eip = (EntryInfo *) avl_find( bdb->bi_cache.c_idtree,
529                                         (caddr_t) &ei, bdb_id_cmp );
530                 if ( *eip ) {
531                         bdb_cache_entryinfo_lock( *eip );
532                         islocked = 1;
533                 }
534                 ldap_pvt_thread_rdwr_runlock( &bdb->bi_cache.c_rwlock );
535         }
536
537         /* See if the ID exists in the database; add it to the cache if so */
538         if ( !*eip ) {
539 #ifndef BDB_HIER
540                 rc = bdb_id2entry( op->o_bd, tid, id, &ep );
541                 if ( rc == 0 ) {
542                         rc = bdb_cache_find_ndn( op, tid,
543                                 &ep->e_nname, eip, locker );
544                         if ( *eip )
545                                 islocked = 1;
546                         if ( rc ) {
547                                 bdb_entry_return( ep );
548                                 ep = NULL;
549                         }
550                 }
551 #else
552                 rc = hdb_cache_find_parent(op, tid, id, eip );
553                 if ( rc == 0 && *eip )
554                         islocked = 1;
555 #endif
556         }
557
558         /* Ok, we found the info, do we have the entry? */
559         if ( *eip && rc == 0 ) {
560                 if ( (*eip)->bei_state & CACHE_ENTRY_DELETED ) {
561                         rc = DB_NOTFOUND;
562                 } else if (!(*eip)->bei_e ) {
563                         if (!ep) {
564                                 rc = bdb_id2entry( op->o_bd, tid, id, &ep );
565                         }
566                         if ( rc == 0 ) {
567                                 bdb_cache_entry_db_lock( bdb->bi_dbenv, locker,
568                                         *eip, 1, 0, lock );
569                                 ep->e_private = *eip;
570 #ifdef BDB_HIER
571                                 bdb_fix_dn( ep, 0 );
572 #endif
573                                 (*eip)->bei_e = ep;
574                                 bdb_cache_entry_db_relock( bdb->bi_dbenv, locker,
575                                         *eip, 0, 0, lock );
576                         }
577                 } else {
578 #ifdef BDB_HIER
579                         rc = bdb_fix_dn( (*eip)->bei_e, 1 );
580                         if ( rc ) {
581                                 bdb_cache_entry_db_lock( bdb->bi_dbenv,
582                                         locker, *eip, 1, 0, lock );
583                                 rc = bdb_fix_dn( (*eip)->bei_e, 2 );
584                                 bdb_cache_entry_db_relock( bdb->bi_dbenv,
585                                         locker, *eip, 0, 0, lock );
586                         } else {
587                                 bdb_cache_entry_db_lock( bdb->bi_dbenv,
588                                         locker, *eip, 0, 0, lock );
589                         }
590 #else
591                         bdb_cache_entry_db_lock( bdb->bi_dbenv, locker,
592                                         *eip, 0, 0, lock );
593 #endif
594                 }
595         }
596         if ( rc == 0 && (*eip)->bei_kids == NULL ) {
597                 /* set lru mutex */
598                 ldap_pvt_thread_mutex_lock( &bdb->bi_cache.lru_mutex );
599                 LRU_DELETE( &bdb->bi_cache, *eip );
600                 LRU_ADD( &bdb->bi_cache, *eip );
601                 ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.lru_mutex );
602         }
603
604         if ( islocked ) {
605                 bdb_cache_entryinfo_unlock( *eip );
606         }
607         return rc;
608 }
609
610 int
611 bdb_cache_children(
612         Operation *op,
613         DB_TXN *txn,
614         Entry *e
615 )
616 {
617         int rc;
618
619         if ( BEI(e)->bei_kids ) {
620                 return 0;
621         }
622         if ( BEI(e)->bei_state & CACHE_ENTRY_NO_KIDS ) {
623                 return DB_NOTFOUND;
624         }
625         rc = bdb_dn2id_children( op, txn, e );
626         if ( rc == DB_NOTFOUND ) {
627                 BEI(e)->bei_state |= CACHE_ENTRY_NO_KIDS;
628         }
629         return rc;
630 }
631
632 /* Update the cache after a successful database Add. */
633 int
634 bdb_cache_add(
635         struct bdb_info *bdb,
636         EntryInfo *eip,
637         Entry *e,
638         struct berval *nrdn,
639         u_int32_t locker
640 )
641 {
642         EntryInfo *new, ei;
643         struct berval rdn = e->e_name;
644         int rc;
645
646         ei.bei_id = e->e_id;
647         ei.bei_parent = eip;
648         ei.bei_nrdn = *nrdn;
649 #ifdef BDB_HIER
650         if ( nrdn->bv_len != e->e_nname.bv_len ) {
651                 char *ptr = strchr( rdn.bv_val, ',' );
652                 rdn.bv_len = ptr - rdn.bv_val;
653         }
654         ber_dupbv( &ei.bei_rdn, &rdn );
655 #endif
656         rc = bdb_entryinfo_add_internal( bdb, &ei, &new, locker );
657         new->bei_e = e;
658         e->e_private = new;
659         new->bei_state = CACHE_ENTRY_NO_KIDS;
660         eip->bei_state &= ~CACHE_ENTRY_NO_KIDS;
661         bdb_cache_entryinfo_unlock( eip );
662         ldap_pvt_thread_rdwr_wunlock( &bdb->bi_cache.c_rwlock );
663         return rc;
664 }
665
666 int
667 bdb_cache_modify(
668         Entry *e,
669         Attribute *newAttrs,
670         DB_ENV *env,
671         u_int32_t locker,
672         DB_LOCK *lock
673 )
674 {
675         EntryInfo *ei = BEI(e);
676         
677         /* Get write lock on data */
678         bdb_cache_entry_db_relock( env, locker, ei, 1, 0, lock );
679
680         /* If we've done repeated mods on a cached entry, then e_attrs
681          * is no longer contiguous with the entry, and must be freed.
682          */
683         if ( (void *)e->e_attrs != (void *)(e+1) ) {
684                 attrs_free( e->e_attrs );
685         }
686         e->e_attrs = newAttrs;
687
688         return 0;
689 }
690
691 /*
692  * Change the rdn in the entryinfo. Also move to a new parent if needed.
693  */
694 int
695 bdb_cache_modrdn(
696         Entry *e,
697         struct berval *nrdn,
698         Entry *new,
699         EntryInfo *ein,
700         DB_ENV *env,
701         u_int32_t locker,
702         DB_LOCK *lock
703 )
704 {
705         EntryInfo *ei = BEI(e), *pei;
706         struct berval rdn;
707         int rc = 0;
708
709         /* Get write lock on data */
710         bdb_cache_entry_db_relock( env, locker, ei, 1, 0, lock );
711
712         /* If we've done repeated mods on a cached entry, then e_attrs
713          * is no longer contiguous with the entry, and must be freed.
714          */
715         if ( (void *)e->e_attrs != (void *)(e+1) ) {
716                 attrs_free( e->e_attrs );
717         }
718         e->e_attrs = new->e_attrs;
719         if( e->e_nname.bv_val < e->e_bv.bv_val || e->e_nname.bv_val >
720                 e->e_bv.bv_val + e->e_bv.bv_len ) {
721                 ch_free(e->e_name.bv_val);
722                 ch_free(e->e_nname.bv_val);
723         }
724         e->e_name = new->e_name;
725         e->e_nname = new->e_nname;
726
727         /* Lock the parent's kids AVL tree */
728         pei = ei->bei_parent;
729         bdb_cache_entryinfo_lock( pei );
730         avl_delete( &pei->bei_kids, (caddr_t) ei, bdb_rdn_cmp );
731         free( ei->bei_nrdn.bv_val );
732         ber_dupbv( &ei->bei_nrdn, nrdn );
733 #ifdef BDB_HIER
734         free( ei->bei_rdn.bv_val );
735
736         rdn = e->e_name;
737         if ( nrdn->bv_len != e->e_nname.bv_len ) {
738                 char *ptr = strchr(rdn.bv_val, ',');
739                 rdn.bv_len = ptr - rdn.bv_val;
740         }
741         ber_dupbv( &ei->bei_rdn, &rdn );
742 #endif
743
744         if (!ein) {
745                 ein = ei->bei_parent;
746         } else {
747                 ei->bei_parent = ein;
748                 bdb_cache_entryinfo_unlock( pei );
749                 bdb_cache_entryinfo_lock( ein );
750         }
751 #ifdef BDB_HIER
752         { int max = ei->bei_modrdns;
753         /* Record the generation number of this change */
754                 for ( pei = ein; pei->bei_parent; pei = pei->bei_parent ) {
755                         if ( pei->bei_modrdns > max )
756                                 max = pei->bei_modrdns;
757                 }
758                 ei->bei_modrdns = max + 1;
759         }
760 #endif
761         avl_insert( &ein->bei_kids, ei, bdb_rdn_cmp, avl_dup_error );
762         bdb_cache_entryinfo_unlock( ein );
763         return rc;
764 }
765 /*
766  * cache_delete - delete the entry e from the cache. 
767  *
768  * returns:     0       e was deleted ok
769  *              1       e was not in the cache
770  *              -1      something bad happened
771  */
772 int
773 bdb_cache_delete(
774     Cache       *cache,
775     Entry               *e,
776     DB_ENV      *env,
777     u_int32_t   locker,
778     DB_LOCK     *lock
779 )
780 {
781         EntryInfo *ei = BEI(e);
782         int     rc;
783
784         assert( e->e_private );
785
786         /* Set this early, warn off any queriers */
787         ei->bei_state |= CACHE_ENTRY_DELETED;
788
789         /* Get write lock on the data */
790         bdb_cache_entry_db_relock( env, locker, ei, 1, 0, lock );
791
792         /* set cache write lock */
793         ldap_pvt_thread_rdwr_wlock( &cache->c_rwlock );
794
795         /* Lock the parent's kids tree */
796         bdb_cache_entryinfo_lock( ei->bei_parent );
797
798 #ifdef NEW_LOGGING
799         LDAP_LOG( CACHE, ENTRY, 
800                 "bdb_cache_delete: delete %ld.\n", e->e_id, 0, 0 );
801 #else
802         Debug( LDAP_DEBUG_TRACE, "====> bdb_cache_delete( %ld )\n",
803                 e->e_id, 0, 0 );
804 #endif
805
806         /* set lru mutex */
807         ldap_pvt_thread_mutex_lock( &cache->lru_mutex );
808         rc = bdb_cache_delete_internal( cache, e->e_private );
809         /* free lru mutex */
810         ldap_pvt_thread_mutex_unlock( &cache->lru_mutex );
811
812         /* free cache write lock */
813         ldap_pvt_thread_rdwr_wunlock( &cache->c_rwlock );
814         bdb_cache_entryinfo_unlock( ei->bei_parent );
815         return( rc );
816 }
817
818 void
819 bdb_cache_delete_cleanup(
820         Entry *e
821 )
822 {
823         bdb_cache_entryinfo_destroy( e->e_private );
824         e->e_private = NULL;
825         bdb_entry_return( e );
826 }
827         
828 static int
829 bdb_cache_delete_internal(
830     Cache       *cache,
831     EntryInfo           *e
832 )
833 {
834         int rc = 0;     /* return code */
835
836         /* dn tree */
837         if ( avl_delete( &e->bei_parent->bei_kids, (caddr_t) e, bdb_rdn_cmp ) == NULL )
838         {
839                 rc = -1;
840         }
841
842         /* If parent has no more kids, put in on LRU list */
843         if ( e->bei_parent->bei_kids == NULL ) {
844                 LRU_ADD( cache, e->bei_parent );
845                 cache->c_cursize++;
846         }
847
848         /* id tree */
849         if ( avl_delete( &cache->c_idtree, (caddr_t) e, bdb_id_cmp ) == NULL )
850         {
851                 rc = -1;
852         }
853
854         if (rc != 0) {
855                 return rc;
856         }
857
858         /* lru */
859         LRU_DELETE( cache, e );
860         cache->c_cursize--;
861
862         /*
863          * flag entry to be freed later by a call to cache_return_entry()
864          */
865         e->bei_state |= CACHE_ENTRY_DELETED;
866
867         return( 0 );
868 }
869
870 static void
871 bdb_entryinfo_release( void *data )
872 {
873         EntryInfo *ei = (EntryInfo *)data;
874         if ( ei->bei_kids ) {
875                 avl_free( ei->bei_kids, NULL );
876         }
877         if ( ei->bei_e ) {
878                 ei->bei_e->e_private = NULL;
879                 bdb_entry_return( ei->bei_e );
880         }
881         bdb_cache_entryinfo_destroy( ei );
882 }
883
884 void
885 bdb_cache_release_all( Cache *cache )
886 {
887         /* set cache write lock */
888         ldap_pvt_thread_rdwr_wlock( &cache->c_rwlock );
889         /* set lru mutex */
890         ldap_pvt_thread_mutex_lock( &cache->lru_mutex );
891
892 #ifdef NEW_LOGGING
893         LDAP_LOG( CACHE, ENTRY, "bdb_cache_release_all: enter\n", 0, 0, 0 );
894 #else
895         Debug( LDAP_DEBUG_TRACE, "====> bdb_cache_release_all\n", 0, 0, 0 );
896 #endif
897
898         avl_free( cache->c_dntree.bei_kids, NULL );
899         avl_free( cache->c_idtree, bdb_entryinfo_release );
900         cache->c_lruhead = NULL;
901         cache->c_lrutail = NULL;
902
903         /* free lru mutex */
904         ldap_pvt_thread_mutex_unlock( &cache->lru_mutex );
905         /* free cache write lock */
906         ldap_pvt_thread_rdwr_wunlock( &cache->c_rwlock );
907 }
908
909 #ifdef LDAP_DEBUG
910 static void
911 bdb_lru_print( Cache *cache )
912 {
913         EntryInfo       *e;
914
915         fprintf( stderr, "LRU queue (head to tail):\n" );
916         for ( e = cache->c_lruhead; e != NULL; e = e->bei_lrunext ) {
917                 fprintf( stderr, "\trdn \"%20s\" id %ld\n",
918                         e->bei_nrdn.bv_val, e->bei_id );
919         }
920         fprintf( stderr, "LRU queue (tail to head):\n" );
921         for ( e = cache->c_lrutail; e != NULL; e = e->bei_lruprev ) {
922                 fprintf( stderr, "\trdn \"%20s\" id %ld\n",
923                         e->bei_nrdn.bv_val, e->bei_id );
924         }
925 }
926 #endif
927
928 #ifdef BDB_REUSE_LOCKERS
929 static void
930 bdb_locker_id_free( void *key, void *data )
931 {
932         DB_ENV *env = key;
933         int lockid = (int) data;
934         int rc;
935
936
937         rc = XLOCK_ID_FREE( env, lockid );
938         if ( rc == EINVAL ) {
939                 DB_LOCKREQ lr;
940 #ifdef NEW_LOGGING
941                 LDAP_LOG( BACK_BDB, ERR,
942                         "bdb_locker_id_free: %d err %s(%d)\n",
943                         lockid, db_strerror(rc), rc );
944 #else
945                 Debug( LDAP_DEBUG_ANY,
946                         "bdb_locker_id_free: %d err %s(%d)\n",
947                         lockid, db_strerror(rc), rc );
948 #endif
949                 memset( &lr, 0, sizeof(lr) );
950
951                 /* release all locks held by this locker. */
952                 lr.op = DB_LOCK_PUT_ALL;
953                 env->lock_vec( env, lockid, 0, &lr, 1, NULL );
954                 XLOCK_ID_FREE( env, lockid );
955         }
956 }
957
958 int
959 bdb_locker_id( Operation *op, DB_ENV *env, int *locker )
960 {
961         int i, rc, lockid;
962         void *data;
963         void *ctx;
964
965         if ( !env || !locker ) return -1;
966
967         /* If no op was provided, try to find the ctx anyway... */
968         if ( op ) {
969                 ctx = op->o_threadctx;
970         } else {
971                 ctx = ldap_pvt_thread_pool_context();
972         }
973
974         /* Shouldn't happen unless we're single-threaded */
975         if ( !ctx ) {
976                 *locker = 0;
977                 return 0;
978         }
979
980         if ( ldap_pvt_thread_pool_getkey( ctx, env, &data, NULL ) ) {
981                 for ( i=0, rc=1; rc != 0 && i<4; i++ ) {
982                         rc = XLOCK_ID( env, &lockid );
983                         if (rc) ldap_pvt_thread_yield();
984                 }
985                 if ( rc != 0) {
986                         return rc;
987                 }
988                 data = (void *)lockid;
989                 if ( ( rc = ldap_pvt_thread_pool_setkey( ctx, env,
990                         data, bdb_locker_id_free ) ) ) {
991                         XLOCK_ID_FREE( env, lockid );
992 #ifdef NEW_LOGGING
993                         LDAP_LOG( BACK_BDB, ERR, "bdb_locker_id: err %s(%d)\n",
994                                 db_strerror(rc), rc, 0 );
995 #else
996                         Debug( LDAP_DEBUG_ANY, "bdb_locker_id: err %s(%d)\n",
997                                 db_strerror(rc), rc, 0 );
998 #endif
999
1000                         return rc;
1001                 }
1002         } else {
1003                 lockid = (int)data;
1004         }
1005         *locker = lockid;
1006         return 0;
1007 }
1008 #endif