1 /* cache.c - routines to maintain an in-core cache of entries */
4 * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
5 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
13 #include <ac/string.h>
14 #include <ac/socket.h>
20 static int bdb_cache_delete_internal(Cache *cache, EntryInfo *e);
22 static void bdb_lru_print(Cache *cache);
26 bdb_cache_entryinfo_new( )
30 ei = ch_calloc(1, sizeof(struct bdb_entry_info));
31 ldap_pvt_thread_mutex_init( &ei->bei_kids_mutex );
36 /* Atomically release and reacquire a lock */
38 bdb_cache_entry_db_relock(
53 if ( !lock ) return 0;
56 lockobj.size = sizeof(ei->bei_parent) + sizeof(ei->bei_id);
58 list[0].op = DB_LOCK_PUT;
60 list[1].op = DB_LOCK_GET;
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,
69 LDAP_LOG( CACHE, DETAIL1,
70 "bdb_cache_entry_db_relock: entry %ld, rw %d, rc %d\n",
73 Debug( LDAP_DEBUG_TRACE,
74 "bdb_cache_entry_db_relock: entry %ld, rw %d, rc %d\n",
84 bdb_cache_entry_db_lock
85 ( DB_ENV *env, u_int32_t locker, EntryInfo *ei, int rw, int tryOnly, DB_LOCK *lock )
94 if ( !lock ) return 0;
97 db_rw = DB_LOCK_WRITE;
102 lockobj.size = sizeof(ei->bei_parent) + sizeof(ei->bei_id);
104 rc = LOCK_GET(env, locker, tryOnly ? DB_LOCK_NOWAIT : 0,
105 &lockobj, db_rw, lock);
108 LDAP_LOG( CACHE, DETAIL1,
109 "bdb_cache_entry_db_lock: entry %ld, rw %d, rc %d\n",
110 ei->bei_id, rw, rc );
112 Debug( LDAP_DEBUG_TRACE,
113 "bdb_cache_entry_db_lock: entry %ld, rw %d, rc %d\n",
114 ei->bei_id, rw, rc );
118 #endif /* NO_THREADS */
122 bdb_cache_entry_db_unlock
123 ( DB_ENV *env, DB_LOCK *lock )
130 rc = LOCK_PUT ( env, lock );
136 bdb_cache_entryinfo_destroy( EntryInfo *e )
138 ldap_pvt_thread_mutex_destroy( &e->bei_kids_mutex );
139 free( e->bei_nrdn.bv_val );
141 free( e->bei_rdn.bv_val );
147 #define LRU_DELETE( cache, ei ) do { \
148 if ( (ei)->bei_lruprev != NULL ) { \
149 (ei)->bei_lruprev->bei_lrunext = (ei)->bei_lrunext; \
151 (cache)->c_lruhead = (ei)->bei_lrunext; \
153 if ( (ei)->bei_lrunext != NULL ) { \
154 (ei)->bei_lrunext->bei_lruprev = (ei)->bei_lruprev; \
156 (cache)->c_lrutail = (ei)->bei_lruprev; \
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); \
165 (cache)->c_lruhead = (ei); \
166 (ei)->bei_lruprev = NULL; \
167 if ( (cache)->c_lrutail == NULL ) { \
168 (cache)->c_lrutail = (ei); \
172 /* Do a length-ordered sort on normalized RDNs */
174 bdb_rdn_cmp( const void *v_e1, const void *v_e2 )
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 );
184 bdb_id_cmp( const void *v_e1, const void *v_e2 )
186 const EntryInfo *e1 = v_e1, *e2 = v_e2;
187 return e1->bei_id - e2->bei_id;
190 /* Create an entryinfo in the cache. Caller must release the locks later.
193 bdb_entryinfo_add_internal(
194 struct bdb_info *bdb,
200 Cache *cache = &bdb->bi_cache;
201 DB_ENV *env = bdb->bi_dbenv;
202 EntryInfo *ei2 = NULL;
210 ldap_pvt_thread_rdwr_wlock( &bdb->bi_cache.c_rwlock );
211 bdb_cache_entryinfo_lock( ei->bei_parent );
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.
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 );
223 cache->c_cursize += incr;
225 /* See if we're above the cache size limit */
226 if ( cache->c_cursize > cache->c_maxsize ) {
227 EntryInfo *elru, *elprev;
230 /* Look for an unused entry to remove */
231 for (elru = cache->c_lrutail; elru; elru = elprev, i++ ) {
232 elprev = elru->bei_lruprev;
234 /* Too many probes, not enough idle, give up */
237 /* If we can successfully writelock it, then
238 * the object is idle.
240 if ( bdb_cache_entry_db_lock( env, locker, elru, 1, 1,
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 );
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 );
254 bdb_cache_entryinfo_destroy( elru );
256 /* re-use this one */
257 ch_free(elru->bei_nrdn.bv_val);
258 elru->bei_nrdn.bv_val = NULL;
260 elru->bei_kids = NULL;
261 elru->bei_lrunext = NULL;
262 elru->bei_lruprev = NULL;
265 elru->bei_modrdns = 0;
269 if (cache->c_cursize < cache->c_maxsize)
275 ei2 = bdb_cache_entryinfo_new();
277 ei2->bei_id = ei->bei_id;
278 ei2->bei_parent = ei->bei_parent;
280 ei2->bei_rdn = ei->bei_rdn;
283 /* Add to cache ID tree */
284 if (avl_insert( &cache->c_idtree, ei2, bdb_id_cmp, avl_dup_error )) {
286 eix = avl_find( cache->c_idtree, ei2, bdb_id_cmp );
287 bdb_cache_entryinfo_destroy( ei2 );
290 cache->c_cursize -= incr;
292 if ( ei->bei_rdn.bv_val ) {
293 ber_memfree_x( ei->bei_rdn.bv_val, NULL );
294 ei->bei_rdn.bv_val = NULL;
298 LRU_ADD( cache, ei2 );
299 ber_dupbv( &ei2->bei_nrdn, &ei->bei_nrdn );
303 avl_insert( &ei->bei_parent->bei_kids, ei2, bdb_rdn_cmp,
307 ldap_pvt_thread_mutex_unlock( &cache->lru_mutex );
313 /* Find the EntryInfo for the requested DN. If the DN cannot be found, return
314 * the info for its closest ancestor. *res should be NULL to process a
315 * complete DN starting from the tree root. Otherwise *res must be the
316 * immediate parent of the requested DN, and only the RDN will be searched.
317 * The EntryInfo is locked upon return and must be unlocked by the caller.
329 struct bdb_info *bdb = (struct bdb_info *) be->be_private;
330 EntryInfo ei, *eip, *ei2;
334 /* this function is always called with normalized DN */
336 /* we're doing a onelevel search for an RDN */
337 ei.bei_nrdn.bv_val = ndn->bv_val;
338 ei.bei_nrdn.bv_len = dn_rdnlen( be, ndn );
341 /* we're searching a full DN from the root */
342 ptr = ndn->bv_val + ndn->bv_len - be->be_nsuffix[0].bv_len;
343 ei.bei_nrdn.bv_val = ptr;
344 ei.bei_nrdn.bv_len = be->be_nsuffix[0].bv_len;
345 eip = &bdb->bi_cache.c_dntree;
348 for ( bdb_cache_entryinfo_lock( eip ); eip; ) {
350 ei2 = (EntryInfo *)avl_find( eip->bei_kids, &ei, bdb_rdn_cmp );
352 int len = ei.bei_nrdn.bv_len;
354 ei.bei_nrdn.bv_len = ndn->bv_len - (ei.bei_nrdn.bv_val - ndn->bv_val);
355 bdb_cache_entryinfo_unlock( eip );
357 rc = bdb_dn2id( be, txn, &ei.bei_nrdn, &ei, ctx );
359 bdb_cache_entryinfo_lock( eip );
364 /* DN exists but needs to be added to cache */
365 ei.bei_nrdn.bv_len = len;
366 rc = bdb_entryinfo_add_internal( bdb, &ei, &ei2,
368 /* add_internal left eip and c_rwlock locked */
369 ldap_pvt_thread_rdwr_wunlock( &bdb->bi_cache.c_rwlock );
374 } else if ( ei2->bei_state & CACHE_ENTRY_DELETED ) {
375 /* In the midst of deleting? Give it a chance to
378 bdb_cache_entryinfo_unlock( eip );
379 ldap_pvt_thread_yield();
380 bdb_cache_entryinfo_lock( eip );
384 bdb_cache_entryinfo_unlock( eip );
385 bdb_cache_entryinfo_lock( ei2 );
389 /* Advance to next lower RDN */
390 for (ptr = ei.bei_nrdn.bv_val - 2; ptr > ndn->bv_val
391 && !DN_SEPARATOR(*ptr); ptr--);
392 if ( ptr >= ndn->bv_val ) {
393 if (DN_SEPARATOR(*ptr)) ptr++;
394 ei.bei_nrdn.bv_len = ei.bei_nrdn.bv_val - ptr - 1;
395 ei.bei_nrdn.bv_val = ptr;
397 if ( ptr < ndn->bv_val ) {
407 /* Walk up the tree from a child node, looking for an ID that's already
408 * been linked into the cache.
411 bdb_cache_find_parent(
419 struct bdb_info *bdb = (struct bdb_info *) be->be_private;
420 EntryInfo ei, eip, *ei2 = NULL, *ein = NULL, *eir = NULL;
428 rc = bdb_dn2id_parent( be, txn, &ei, &eip.bei_id, ctx );
431 /* Save the previous node, if any */
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;
441 /* This node is not fully connected yet */
442 ein->bei_state = CACHE_ENTRY_NOT_LINKED;
444 /* If this is the first time, save this node
445 * to be returned later.
447 if ( eir == NULL ) eir = ein;
449 /* Insert this node into the ID tree */
450 ldap_pvt_thread_rdwr_rlock( &bdb->bi_cache.c_rwlock );
451 if ( avl_insert( &bdb->bi_cache.c_idtree, (caddr_t)ein,
452 bdb_id_cmp, avl_dup_error ) ) {
454 /* Hm, can this really happen? */
455 bdb_cache_entryinfo_destroy( ein );
456 ein = (EntryInfo *)avl_find( bdb->bi_cache.c_idtree,
457 (caddr_t) &ei, bdb_id_cmp );
458 bdb_cache_entryinfo_lock( ein );
459 avl_insert( &ein->bei_kids, (caddr_t)ei2, bdb_rdn_cmp,
461 bdb_cache_entryinfo_unlock( ein );
464 /* If there was a previous node, link it to this one */
465 if ( ei2 ) ei2->bei_parent = ein;
468 ei2 = (EntryInfo *) avl_find( bdb->bi_cache.c_idtree,
469 (caddr_t) &eip, bdb_id_cmp );
471 ei2 = &bdb->bi_cache.c_dntree;
475 ein->bei_parent = ei2;
476 bdb_cache_entryinfo_lock( ei2 );
477 avl_insert( &ei2->bei_kids, (caddr_t)ein, bdb_rdn_cmp,
479 bdb_cache_entryinfo_unlock( ei2 );
481 bdb_cache_entryinfo_lock( eir );
483 ldap_pvt_thread_rdwr_runlock( &bdb->bi_cache.c_rwlock );
485 /* Found a link. Reset all the state info */
486 for (ein = eir; ein != ei2; ein=ein->bei_parent)
487 ein->bei_state &= ~CACHE_ENTRY_NOT_LINKED;
491 ei.bei_id = eip.bei_id;
492 avl_insert( &ei.bei_kids, (caddr_t)ein, bdb_rdn_cmp,
500 * cache_find_id - find an entry in the cache, given id.
501 * The entry is locked for Read upon return. Call with islocked TRUE if
502 * the supplied *eip was already locked.
517 struct bdb_info *bdb = (struct bdb_info *) be->be_private;
524 /* If we weren't given any info, see if we have it already cached */
526 ldap_pvt_thread_rdwr_rlock( &bdb->bi_cache.c_rwlock );
527 *eip = (EntryInfo *) avl_find( bdb->bi_cache.c_idtree,
528 (caddr_t) &ei, bdb_id_cmp );
530 bdb_cache_entryinfo_lock( *eip );
533 ldap_pvt_thread_rdwr_runlock( &bdb->bi_cache.c_rwlock );
536 /* See if the ID exists in the database; add it to the cache if so */
539 rc = bdb_id2entry( be, tid, id, &ep );
541 rc = bdb_cache_find_ndn( be, tid,
542 &ep->e_nname, eip, locker, ctx );
546 bdb_entry_return( ep );
551 rc = bdb_cache_find_parent(be, tid, id, eip, ctx );
552 if ( rc == 0 && *eip )
557 /* Ok, we found the info, do we have the entry? */
558 if ( *eip && rc == 0 ) {
559 if ( (*eip)->bei_state & CACHE_ENTRY_DELETED ) {
561 } else if (!(*eip)->bei_e ) {
563 rc = bdb_id2entry( be, tid, id, &ep );
566 bdb_cache_entry_db_lock( bdb->bi_dbenv, locker,
568 ep->e_private = *eip;
573 bdb_cache_entry_db_relock( bdb->bi_dbenv, locker,
578 rc = bdb_fix_dn( (*eip)->bei_e, 1 );
580 bdb_cache_entry_db_lock( bdb->bi_dbenv,
581 locker, *eip, 1, 0, lock );
582 rc = bdb_fix_dn( (*eip)->bei_e, 2 );
583 bdb_cache_entry_db_relock( bdb->bi_dbenv,
584 locker, *eip, 0, 0, lock );
586 bdb_cache_entry_db_lock( bdb->bi_dbenv,
587 locker, *eip, 0, 0, lock );
590 bdb_cache_entry_db_lock( bdb->bi_dbenv, locker,
595 if ( rc == 0 && (*eip)->bei_kids == NULL ) {
597 ldap_pvt_thread_mutex_lock( &bdb->bi_cache.lru_mutex );
598 LRU_DELETE( &bdb->bi_cache, *eip );
599 LRU_ADD( &bdb->bi_cache, *eip );
600 ldap_pvt_thread_mutex_unlock( &bdb->bi_cache.lru_mutex );
604 bdb_cache_entryinfo_unlock( *eip );
618 if ( BEI(e)->bei_kids ) {
621 if ( BEI(e)->bei_state & CACHE_ENTRY_NO_KIDS ) {
624 rc = bdb_dn2id_children( op, txn, e );
625 if ( rc == DB_NOTFOUND ) {
626 BEI(e)->bei_state |= CACHE_ENTRY_NO_KIDS;
631 /* Update the cache after a successful database Add. */
634 struct bdb_info *bdb,
642 struct berval rdn = e->e_name;
649 if ( nrdn->bv_len != e->e_nname.bv_len ) {
650 char *ptr = strchr( rdn.bv_val, ',' );
651 rdn.bv_len = ptr - rdn.bv_val;
653 ber_dupbv( &ei.bei_rdn, &rdn );
655 rc = bdb_entryinfo_add_internal( bdb, &ei, &new, locker );
658 new->bei_state = CACHE_ENTRY_NO_KIDS;
659 eip->bei_state &= ~CACHE_ENTRY_NO_KIDS;
660 bdb_cache_entryinfo_unlock( eip );
661 ldap_pvt_thread_rdwr_wunlock( &bdb->bi_cache.c_rwlock );
674 EntryInfo *ei = BEI(e);
676 /* Get write lock on data */
677 bdb_cache_entry_db_relock( env, locker, ei, 1, 0, lock );
679 /* If we've done repeated mods on a cached entry, then e_attrs
680 * is no longer contiguous with the entry, and must be freed.
682 if ( (void *)e->e_attrs != (void *)(e+1) ) {
683 attrs_free( e->e_attrs );
685 e->e_attrs = newAttrs;
691 * Change the rdn in the entryinfo. Also move to a new parent if needed.
704 EntryInfo *ei = BEI(e), *pei;
708 /* Get write lock on data */
709 bdb_cache_entry_db_relock( env, locker, ei, 1, 0, lock );
711 /* If we've done repeated mods on a cached entry, then e_attrs
712 * is no longer contiguous with the entry, and must be freed.
714 if ( (void *)e->e_attrs != (void *)(e+1) ) {
715 attrs_free( e->e_attrs );
717 e->e_attrs = new->e_attrs;
719 ch_free(e->e_name.bv_val);
721 if( e->e_nname.bv_val < e->e_bv.bv_val || e->e_nname.bv_val >
722 e->e_bv.bv_val + e->e_bv.bv_len ) {
723 ch_free(e->e_name.bv_val);
724 ch_free(e->e_nname.bv_val);
727 e->e_name = new->e_name;
728 e->e_nname = new->e_nname;
730 /* Lock the parent's kids AVL tree */
731 pei = ei->bei_parent;
732 bdb_cache_entryinfo_lock( pei );
733 avl_delete( &pei->bei_kids, (caddr_t) ei, bdb_rdn_cmp );
734 free( ei->bei_nrdn.bv_val );
735 ber_dupbv( &ei->bei_nrdn, nrdn );
737 free( ei->bei_rdn.bv_val );
740 if ( nrdn->bv_len != e->e_nname.bv_len ) {
741 char *ptr = strchr(rdn.bv_val, ',');
742 rdn.bv_len = ptr - rdn.bv_val;
744 ber_dupbv( &ei->bei_rdn, &rdn );
748 ein = ei->bei_parent;
750 ei->bei_parent = ein;
751 bdb_cache_entryinfo_unlock( pei );
752 bdb_cache_entryinfo_lock( ein );
755 { int max = ei->bei_modrdns;
756 /* Record the generation number of this change */
757 for ( pei = ein; pei->bei_parent; pei = pei->bei_parent ) {
758 if ( pei->bei_modrdns > max )
759 max = pei->bei_modrdns;
761 ei->bei_modrdns = max + 1;
764 avl_insert( &ein->bei_kids, ei, bdb_rdn_cmp, avl_dup_error );
765 bdb_cache_entryinfo_unlock( ein );
769 * cache_delete - delete the entry e from the cache.
771 * returns: 0 e was deleted ok
772 * 1 e was not in the cache
773 * -1 something bad happened
784 EntryInfo *ei = BEI(e);
787 assert( e->e_private );
789 /* Set this early, warn off any queriers */
790 ei->bei_state |= CACHE_ENTRY_DELETED;
792 /* Get write lock on the data */
793 bdb_cache_entry_db_relock( env, locker, ei, 1, 0, lock );
795 /* set cache write lock */
796 ldap_pvt_thread_rdwr_wlock( &cache->c_rwlock );
798 /* Lock the parent's kids tree */
799 bdb_cache_entryinfo_lock( ei->bei_parent );
802 LDAP_LOG( CACHE, ENTRY,
803 "bdb_cache_delete: delete %ld.\n", e->e_id, 0, 0 );
805 Debug( LDAP_DEBUG_TRACE, "====> bdb_cache_delete( %ld )\n",
810 ldap_pvt_thread_mutex_lock( &cache->lru_mutex );
811 rc = bdb_cache_delete_internal( cache, e->e_private );
813 ldap_pvt_thread_mutex_unlock( &cache->lru_mutex );
815 /* free cache write lock */
816 ldap_pvt_thread_rdwr_wunlock( &cache->c_rwlock );
817 bdb_cache_entryinfo_unlock( ei->bei_parent );
818 bdb_cache_entryinfo_destroy( ei );
824 bdb_cache_delete_internal(
829 int rc = 0; /* return code */
832 if ( avl_delete( &e->bei_parent->bei_kids, (caddr_t) e, bdb_rdn_cmp ) == NULL )
837 /* If parent has no more kids, put in on LRU list */
838 if ( e->bei_parent->bei_kids == NULL ) {
839 LRU_ADD( cache, e->bei_parent );
844 if ( avl_delete( &cache->c_idtree, (caddr_t) e, bdb_id_cmp ) == NULL )
854 LRU_DELETE( cache, e );
858 * flag entry to be freed later by a call to cache_return_entry()
860 e->bei_state |= CACHE_ENTRY_DELETED;
866 bdb_entryinfo_release( void *data )
868 EntryInfo *ei = (EntryInfo *)data;
869 if ( ei->bei_kids ) {
870 avl_free( ei->bei_kids, NULL );
873 ei->bei_e->e_private = NULL;
874 bdb_entry_return( ei->bei_e );
876 bdb_cache_entryinfo_destroy( ei );
880 bdb_cache_release_all( Cache *cache )
882 /* set cache write lock */
883 ldap_pvt_thread_rdwr_wlock( &cache->c_rwlock );
885 ldap_pvt_thread_mutex_lock( &cache->lru_mutex );
888 LDAP_LOG( CACHE, ENTRY, "bdb_cache_release_all: enter\n", 0, 0, 0 );
890 Debug( LDAP_DEBUG_TRACE, "====> bdb_cache_release_all\n", 0, 0, 0 );
893 avl_free( cache->c_dntree.bei_kids, NULL );
894 avl_free( cache->c_idtree, bdb_entryinfo_release );
895 cache->c_lruhead = NULL;
896 cache->c_lrutail = NULL;
899 ldap_pvt_thread_mutex_unlock( &cache->lru_mutex );
900 /* free cache write lock */
901 ldap_pvt_thread_rdwr_wunlock( &cache->c_rwlock );
906 bdb_lru_print( Cache *cache )
910 fprintf( stderr, "LRU queue (head to tail):\n" );
911 for ( e = cache->c_lruhead; e != NULL; e = e->bei_lrunext ) {
912 fprintf( stderr, "\trdn \"%20s\" id %ld\n",
913 e->bei_nrdn.bv_val, e->bei_id );
915 fprintf( stderr, "LRU queue (tail to head):\n" );
916 for ( e = cache->c_lrutail; e != NULL; e = e->bei_lruprev ) {
917 fprintf( stderr, "\trdn \"%20s\" id %ld\n",
918 e->bei_nrdn.bv_val, e->bei_id );
923 #ifdef BDB_REUSE_LOCKERS
925 bdb_locker_id_free( void *key, void *data )
928 int lockid = (int) data;
930 XLOCK_ID_FREE( env, lockid );
934 bdb_locker_id( Operation *op, DB_ENV *env, int *locker )
940 if ( !env || !locker ) return -1;
942 /* If no op was provided, try to find the ctx anyway... */
944 ctx = op->o_threadctx;
946 ctx = ldap_pvt_thread_pool_context();
949 /* Shouldn't happen unless we're single-threaded */
955 if ( ldap_pvt_thread_pool_getkey( ctx, env, &data, NULL ) ) {
956 for ( i=0, rc=1; rc != 0 && i<4; i++ ) {
957 rc = XLOCK_ID( env, &lockid );
958 if (rc) ldap_pvt_thread_yield();
963 data = (void *)lockid;
964 if ( ( rc = ldap_pvt_thread_pool_setkey( ctx, env,
965 data, bdb_locker_id_free ) ) ) {
966 XLOCK_ID_FREE( env, lockid );
968 LDAP_LOG( BACK_BDB, ERR, "bdb_locker_id: err %s(%d)\n",
969 db_strerror(rc), rc, 0 );
971 Debug( LDAP_DEBUG_ANY, "bdb_locker_id: err %s(%d)\n",
972 db_strerror(rc), rc, 0 );