1 /* dn2id.c - routines to deal with the dn2id index */
4 * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
5 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
11 #include <ac/string.h>
26 struct bdb_info *bdb = (struct bdb_info *) be->be_private;
27 DB *db = bdb->bi_dn2id->bdi_db;
31 struct berval ptr, pdn;
34 LDAP_LOG ( INDEX, ARGS, "bdb_dn2id_add( \"%s\", 0x%08lx )\n",
35 e->e_ndn, (long) e->e_id, 0 );
37 Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_add( \"%s\", 0x%08lx )\n",
38 e->e_ndn, (long) e->e_id, 0 );
40 assert( e->e_id != NOID );
43 key.size = e->e_nname.bv_len + 2;
45 key.flags = DB_DBT_USERMEM;
46 buf = sl_malloc( key.size, ctx );
48 buf[0] = DN_BASE_PREFIX;
50 ptr.bv_len = e->e_nname.bv_len;
51 AC_MEMCPY( ptr.bv_val, e->e_nname.bv_val, e->e_nname.bv_len );
52 ptr.bv_val[ptr.bv_len] = '\0';
55 data.data = (char *) &e->e_id;
56 data.size = sizeof( e->e_id );
58 /* store it -- don't override */
59 rc = db->put( db, txn, &key, &data, DB_NOOVERWRITE );
62 LDAP_LOG ( INDEX, ERR, "bdb_dn2id_add: put failed: %s %d\n",
63 db_strerror(rc), rc, 0 );
65 Debug( LDAP_DEBUG_ANY, "=> bdb_dn2id_add: put failed: %s %d\n",
66 db_strerror(rc), rc, 0 );
71 #ifndef BDB_MULTIPLE_SUFFIXES
72 if( !be_issuffix( be, &ptr )) {
74 buf[0] = DN_SUBTREE_PREFIX;
75 rc = db->put( db, txn, &key, &data, DB_NOOVERWRITE );
78 LDAP_LOG ( INDEX, ERR,
79 "=> bdb_dn2id_add: subtree (%s) put failed: %d\n",
82 Debug( LDAP_DEBUG_ANY,
83 "=> bdb_dn2id_add: subtree (%s) put failed: %d\n",
89 #ifdef BDB_MULTIPLE_SUFFIXES
90 if( !be_issuffix( be, &ptr )) {
92 dnParent( &ptr, &pdn );
94 key.size = pdn.bv_len + 2;
96 pdn.bv_val[-1] = DN_ONE_PREFIX;
97 key.data = pdn.bv_val-1;
100 rc = bdb_idl_insert_key( be, db, txn, &key, e->e_id );
104 LDAP_LOG ( INDEX, ERR,
105 "=> bdb_dn2id_add: parent (%s) insert failed: %d\n",
108 Debug( LDAP_DEBUG_ANY,
109 "=> bdb_dn2id_add: parent (%s) insert failed: %d\n",
114 #ifndef BDB_MULTIPLE_SUFFIXES
117 while( !be_issuffix( be, &ptr )) {
121 ptr.bv_val[-1] = DN_SUBTREE_PREFIX;
123 rc = bdb_idl_insert_key( be, db, txn, &key, e->e_id );
127 LDAP_LOG ( INDEX, ERR,
128 "=> bdb_dn2id_add: subtree (%s) insert failed: %d\n",
131 Debug( LDAP_DEBUG_ANY,
132 "=> bdb_dn2id_add: subtree (%s) insert failed: %d\n",
137 #ifdef BDB_MULTIPLE_SUFFIXES
138 if( be_issuffix( be, &ptr )) break;
140 dnParent( &ptr, &pdn );
142 key.size = pdn.bv_len + 2;
144 key.data = pdn.bv_val - 1;
147 #ifdef BDB_MULTIPLE_SUFFIXES
154 LDAP_LOG ( INDEX, RESULTS, "<= bdb_dn2id_add: %d\n", rc, 0, 0 );
156 Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_add: %d\n", rc, 0, 0 );
169 struct bdb_info *bdb = (struct bdb_info *) be->be_private;
170 DB *db = bdb->bi_dn2id->bdi_db;
174 struct berval pdn, ptr;
177 LDAP_LOG ( INDEX, ARGS,
178 "=> bdb_dn2id_delete ( \"%s\", 0x%08lx )\n", e->e_ndn, e->e_id, 0);
180 Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_delete( \"%s\", 0x%08lx )\n",
181 e->e_ndn, e->e_id, 0 );
185 key.size = e->e_nname.bv_len + 2;
186 buf = sl_malloc( key.size, ctx );
188 key.flags = DB_DBT_USERMEM;
189 buf[0] = DN_BASE_PREFIX;
191 ptr.bv_len = e->e_nname.bv_len;
192 AC_MEMCPY( ptr.bv_val, e->e_nname.bv_val, e->e_nname.bv_len );
193 ptr.bv_val[ptr.bv_len] = '\0';
196 rc = db->del( db, txn, &key, 0 );
199 LDAP_LOG ( INDEX, ERR,
200 "=> bdb_dn2id_delete: delete failed: %s %d\n",
201 db_strerror(rc), rc, 0 );
203 Debug( LDAP_DEBUG_ANY, "=> bdb_dn2id_delete: delete failed: %s %d\n",
204 db_strerror(rc), rc, 0 );
209 #ifndef BDB_MULTIPLE_SUFFIXES
210 if( !be_issuffix( be, &ptr )) {
212 buf[0] = DN_SUBTREE_PREFIX;
213 rc = db->del( db, txn, &key, 0 );
216 LDAP_LOG ( INDEX, ERR,
217 "=> bdb_dn2id_delete: subtree (%s) delete failed: %d\n",
220 Debug( LDAP_DEBUG_ANY,
221 "=> bdb_dn2id_delete: subtree (%s) delete failed: %d\n",
227 #ifdef BDB_MULTIPLE_SUFFIXES
228 if( !be_issuffix( be, &ptr )) {
230 dnParent( &ptr, &pdn );
232 key.size = pdn.bv_len + 2;
234 pdn.bv_val[-1] = DN_ONE_PREFIX;
235 key.data = pdn.bv_val - 1;
238 rc = bdb_idl_delete_key( be, db, txn, &key, e->e_id );
242 LDAP_LOG ( INDEX, ERR,
243 "=> bdb_dn2id_delete: parent (%s) delete failed: %d\n",
246 Debug( LDAP_DEBUG_ANY,
247 "=> bdb_dn2id_delete: parent (%s) delete failed: %d\n",
252 #ifndef BDB_MULTIPLE_SUFFIXES
255 while( !be_issuffix( be, &ptr )) {
259 ptr.bv_val[-1] = DN_SUBTREE_PREFIX;
261 rc = bdb_idl_delete_key( be, db, txn, &key, e->e_id );
264 LDAP_LOG ( INDEX, ERR,
265 "=> bdb_dn2id_delete: subtree (%s) delete failed: %d\n",
268 Debug( LDAP_DEBUG_ANY,
269 "=> bdb_dn2id_delete: subtree (%s) delete failed: %d\n",
274 #ifdef BDB_MULTIPLE_SUFFIXES
275 if( be_issuffix( be, &ptr )) break;
277 dnParent( &ptr, &pdn );
279 key.size = pdn.bv_len + 2;
281 key.data = pdn.bv_val - 1;
284 #ifdef BDB_MULTIPLE_SUFFIXES
291 LDAP_LOG ( INDEX, RESULTS, "<= bdb_dn2id_delete %d\n", rc, 0, 0 );
293 Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_delete %d\n", rc, 0, 0 );
308 struct bdb_info *bdb = (struct bdb_info *) be->be_private;
309 DB *db = bdb->bi_dn2id->bdi_db;
312 LDAP_LOG ( INDEX, ARGS, "=> bdb_dn2id( \"%s\" )\n", dn->bv_val, 0, 0 );
314 Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id( \"%s\" )\n", dn->bv_val, 0, 0 );
317 key.size = dn->bv_len + 2;
318 key.data = sl_malloc( key.size, ctx );
319 ((char *)key.data)[0] = DN_BASE_PREFIX;
320 AC_MEMCPY( &((char *)key.data)[1], dn->bv_val, key.size - 1 );
324 data.data = &ei->bei_id;
325 data.ulen = sizeof(ID);
326 data.flags = DB_DBT_USERMEM;
329 rc = db->get( db, txn, &key, &data, bdb->bi_db_opflags );
333 LDAP_LOG ( INDEX, ERR, "<= bdb_dn2id: get failed %s (%d)\n",
334 db_strerror(rc), rc, 0 );
336 Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id: get failed: %s (%d)\n",
337 db_strerror( rc ), rc, 0 );
341 LDAP_LOG ( INDEX, RESULTS,
342 "<= bdb_dn2id: got id=0x%08lx\n", ei->bei_id, 0, 0 );
344 Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id: got id=0x%08lx\n",
349 sl_free( key.data, ctx );
360 struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
361 DB *db = bdb->bi_dn2id->bdi_db;
366 LDAP_LOG ( INDEX, ARGS,
367 "=> bdb_dn2id_children( %s )\n", e->e_nname.bv_val, 0, 0 );
369 Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_children( %s )\n",
370 e->e_nname.bv_val, 0, 0 );
373 key.size = e->e_nname.bv_len + 2;
374 key.data = sl_malloc( key.size, op->o_tmpmemctx );
375 ((char *)key.data)[0] = DN_ONE_PREFIX;
376 AC_MEMCPY( &((char *)key.data)[1], e->e_nname.bv_val, key.size - 1 );
378 #ifdef SLAP_IDL_CACHE
379 if ( bdb->bi_idl_cache_size ) {
380 rc = bdb_idl_cache_get( bdb, db, &key, NULL );
381 if ( rc != LDAP_NO_SUCH_OBJECT ) {
382 sl_free( key.data, op->o_tmpmemctx );
387 /* we actually could do a empty get... */
390 data.ulen = sizeof(id);
391 data.flags = DB_DBT_USERMEM;
393 data.dlen = sizeof(id);
395 rc = db->get( db, txn, &key, &data, bdb->bi_db_opflags );
396 sl_free( key.data, op->o_tmpmemctx );
399 LDAP_LOG ( INDEX, DETAIL1,
400 "<= bdb_dn2id_children( %s ): %s (%d)\n",
401 e->e_nname.bv_val, rc == 0 ? "" : ( rc == DB_NOTFOUND ? "no " :
402 db_strerror(rc)), rc );
404 Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_children( %s ): %s (%d)\n",
406 rc == 0 ? "" : ( rc == DB_NOTFOUND ? "no " :
407 db_strerror(rc) ), rc );
424 struct bdb_info *bdb = (struct bdb_info *) be->be_private;
425 DB *db = bdb->bi_dn2id->bdi_db;
428 LDAP_LOG ( INDEX, ARGS,
429 "=> bdb_dn2ididl( \"%s\" )\n", dn->bv_val, 0, 0 );
431 Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2idl( \"%s\" )\n", dn->bv_val, 0, 0 );
434 #ifndef BDB_MULTIPLE_SUFFIXES
435 if (prefix == DN_SUBTREE_PREFIX && be_issuffix(be, dn))
437 BDB_IDL_ALL(bdb, ids);
443 key.size = dn->bv_len + 2;
445 key.flags = DB_DBT_USERMEM;
446 key.data = sl_malloc( key.size, ctx );
447 ((char *)key.data)[0] = prefix;
448 AC_MEMCPY( &((char *)key.data)[1], dn->bv_val, key.size - 1 );
450 rc = bdb_idl_fetch_key( be, db, NULL, &key, ids );
454 LDAP_LOG ( INDEX, ERR,
455 "<= bdb_dn2ididl: get failed: %s (%d)\n", db_strerror(rc), rc, 0 );
457 Debug( LDAP_DEBUG_TRACE,
458 "<= bdb_dn2idl: get failed: %s (%d)\n",
459 db_strerror( rc ), rc, 0 );
464 LDAP_LOG ( INDEX, RESULTS,
465 "<= bdb_dn2ididl: id=%ld first=%ld last=%ld\n",
466 (long) ids[0], (long) BDB_IDL_FIRST( ids ),
467 (long) BDB_IDL_LAST( ids ) );
469 Debug( LDAP_DEBUG_TRACE,
470 "<= bdb_dn2idl: id=%ld first=%ld last=%ld\n",
472 (long) BDB_IDL_FIRST( ids ), (long) BDB_IDL_LAST( ids ) );
476 sl_free( key.data, ctx );
481 /* Experimental management routines for a hierarchically structured database.
483 * Unsupported! Use at your own risk!
484 * -- Howard Chu, Symas Corp. 2003.
486 * Instead of a ldbm-style dn2id database, we use a hierarchical one. Each
487 * entry in this database is a struct diskNode, keyed by entryID and with
488 * the data containing the RDN and entryID of the node's children. We use
489 * a B-Tree with sorted duplicates to store all the children of a node under
490 * the same key. Also, the first item under the key contains the entry's own
491 * rdn and the ID of the node's parent, to allow bottom-up tree traversal as
492 * well as top-down. To keep this info first in the list, the nrdnlen is set
493 * to the negative of its value.
495 * The diskNode is a variable length structure. This definition is not
496 * directly usable for in-memory manipulation.
498 typedef struct diskNode {
505 /* Sort function for the sorted duplicate data items of a dn2id key.
506 * Sorts based on normalized RDN, in length order.
515 char *u = (char *)&(((diskNode *)(usrkey->data))->nrdnlen);
516 char *c = (char *)&(((diskNode *)(curkey->data))->nrdnlen);
519 /* data is not aligned, cannot compare directly */
520 #ifdef WORDS_BIGENDIAN
521 for( i = 0; i < (int)sizeof(short); i++)
523 for( i = sizeof(short)-1; i >= 0; i--)
529 return strcmp( u+sizeof(short), c+sizeof(short) );
532 /* This function constructs a full DN for a given entry.
540 int rlen = 0, nrlen = 0;
544 for ( ei = BEI(e); ei && ei->bei_id; ei=ei->bei_parent ) {
545 rlen += ei->bei_rdn.bv_len + 1;
546 nrlen += ei->bei_nrdn.bv_len + 1;
547 if (ei->bei_modrdns > max) max = ei->bei_modrdns;
550 /* See if the entry DN was invalidated by a subtree rename */
552 if ( BEI(e)->bei_modrdns >= max ) {
555 /* We found a mismatch, tell the caller to lock it */
556 if ( checkit == 1 ) {
559 /* checkit == 2. do the fix. */
560 free( e->e_name.bv_val );
563 e->e_name.bv_len = rlen - 1;
564 e->e_nname.bv_len = nrlen - 1;
565 e->e_name.bv_val = ch_malloc(rlen + nrlen);
566 e->e_nname.bv_val = e->e_name.bv_val + rlen;
567 ptr = e->e_name.bv_val;
568 nptr = e->e_nname.bv_val;
569 for ( ei = BEI(e); ei && ei->bei_id; ei=ei->bei_parent ) {
570 ptr = lutil_strcopy(ptr, ei->bei_rdn.bv_val);
571 nptr = lutil_strcopy(nptr, ei->bei_nrdn.bv_val);
572 if ( ei->bei_parent ) {
577 BEI(e)->bei_modrdns = max;
584 /* We add two elements to the DN2ID database - a data item under the parent's
585 * entryID containing the child's RDN and entryID, and an item under the
586 * child's entryID containing the parent's entryID.
596 struct bdb_info *bdb = (struct bdb_info *) be->be_private;
597 DB *db = bdb->bi_dn2id->bdi_db;
603 nrlen = dn_rdnlen( be, &e->e_nname );
605 rlen = dn_rdnlen( be, &e->e_name );
607 nrlen = e->e_nname.bv_len;
608 rlen = e->e_name.bv_len;
611 d = sl_malloc(sizeof(diskNode) + rlen + nrlen, ctx);
612 d->entryID = e->e_id;
614 ptr = lutil_strncopy( d->nrdn, e->e_nname.bv_val, nrlen );
616 ptr = lutil_strncopy( ptr, e->e_name.bv_val, rlen );
621 key.data = &eip->bei_id;
622 key.size = sizeof(ID);
623 key.flags = DB_DBT_USERMEM;
625 #ifdef SLAP_IDL_CACHE
626 if ( bdb->bi_idl_cache_size ) {
627 bdb_idl_cache_del( bdb, db, &key );
631 data.size = sizeof(diskNode) + rlen + nrlen;
632 data.flags = DB_DBT_USERMEM;
634 rc = db->put( db, txn, &key, &data, DB_NODUPDATA );
638 d->entryID = eip->bei_id;
639 d->nrdnlen = 0 - nrlen;
641 rc = db->put( db, txn, &key, &data, DB_NODUPDATA );
657 struct bdb_info *bdb = (struct bdb_info *) be->be_private;
658 DB *db = bdb->bi_dn2id->bdi_db;
665 key.size = sizeof(ID);
667 key.data = &eip->bei_id;
668 key.flags = DB_DBT_USERMEM;
671 data.size = sizeof(diskNode) + BEI(e)->bei_nrdn.bv_len;
672 data.ulen = data.size;
673 data.dlen = data.size;
674 data.flags = DB_DBT_USERMEM | DB_DBT_PARTIAL;
676 #ifdef SLAP_IDL_CACHE
677 if ( bdb->bi_idl_cache_size ) {
678 bdb_idl_cache_del( bdb, db, &key );
681 rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
684 d = sl_malloc( data.size, ctx );
685 d->entryID = e->e_id;
686 d->nrdnlen = BEI(e)->bei_nrdn.bv_len;
687 strcpy( d->nrdn, BEI(e)->bei_nrdn.bv_val );
690 /* Delete our ID from the parent's list */
691 rc = cursor->c_get( cursor, &key, &data, DB_GET_BOTH | DB_RMW );
693 rc = cursor->c_del( cursor, 0 );
695 /* Delete our ID from the tree. With sorted duplicates, this
696 * will leave any child nodes still hanging around. This is OK
697 * for modrdn, which will add our info back in later.
701 rc = cursor->c_get( cursor, &key, &data, DB_SET | DB_RMW );
703 rc = cursor->c_del( cursor, 0 );
705 cursor->c_close( cursor );
719 struct bdb_info *bdb = (struct bdb_info *) be->be_private;
720 DB *db = bdb->bi_dn2id->bdi_db;
726 ID idp = ei->bei_parent->bei_id;
728 nrlen = dn_rdnlen( be, in );
729 if (!nrlen) nrlen = in->bv_len;
732 key.size = sizeof(ID);
734 key.ulen = sizeof(ID);
735 key.flags = DB_DBT_USERMEM;
738 data.size = sizeof(diskNode) + nrlen;
739 data.ulen = data.size * 3;
740 data.flags = DB_DBT_USERMEM;
742 rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
745 d = sl_malloc( data.size * 3, ctx );
747 ptr = lutil_strncopy( d->nrdn, in->bv_val, nrlen );
751 rc = cursor->c_get( cursor, &key, &data, DB_GET_BOTH );
752 cursor->c_close( cursor );
755 AC_MEMCPY( &ei->bei_id, &d->entryID, sizeof(ID) );
756 ei->bei_rdn.bv_len = data.size - sizeof(diskNode) - nrlen;
757 ptr = d->nrdn + nrlen + 1;
758 ei->bei_rdn.bv_val = ch_malloc( ei->bei_rdn.bv_len + 1 );
759 strcpy( ei->bei_rdn.bv_val, ptr );
774 struct bdb_info *bdb = (struct bdb_info *) be->be_private;
775 DB *db = bdb->bi_dn2id->bdi_db;
784 key.size = sizeof(ID);
785 key.data = &ei->bei_id;
786 key.ulen = sizeof(ID);
787 key.flags = DB_DBT_USERMEM;
790 data.flags = DB_DBT_USERMEM;
792 rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
795 data.ulen = sizeof(diskNode) + (SLAP_LDAPDN_MAXLEN * 2);
796 d = sl_malloc( data.ulen, ctx );
799 rc = cursor->c_get( cursor, &key, &data, DB_SET );
800 cursor->c_close( cursor );
802 if (d->nrdnlen >= 0) {
805 AC_MEMCPY( idp, &d->entryID, sizeof(ID) );
806 ei->bei_nrdn.bv_len = 0 - d->nrdnlen;
807 ber_str2bv( d->nrdn, ei->bei_nrdn.bv_len, 1, &ei->bei_nrdn );
808 ei->bei_rdn.bv_len = data.size - sizeof(diskNode) -
810 ptr = d->nrdn + ei->bei_nrdn.bv_len + 1;
811 ber_str2bv( ptr, ei->bei_rdn.bv_len, 1, &ei->bei_rdn );
823 struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
824 DB *db = bdb->bi_dn2id->bdi_db;
832 key.size = sizeof(ID);
834 key.flags = DB_DBT_USERMEM;
836 #ifdef SLAP_IDL_CACHE
837 if ( bdb->bi_idl_cache_size ) {
838 rc = bdb_idl_cache_get( bdb, db, &key, NULL );
839 if ( rc != LDAP_NO_SUCH_OBJECT ) {
846 data.ulen = sizeof(d);
847 data.flags = DB_DBT_USERMEM | DB_DBT_PARTIAL;
848 data.dlen = sizeof(d);
850 rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
853 rc = cursor->c_get( cursor, &key, &data, DB_SET );
855 rc = cursor->c_get( cursor, &key, &data, DB_NEXT_DUP );
857 cursor->c_close( cursor );
862 * We can't just use bdb_idl_fetch_key because
863 * 1 - our data items are longer than just an entry ID
864 * 2 - our data items are sorted alphabetically by nrdn, not by ID.
866 * We descend the tree recursively, so we define this cookie
867 * to hold our necessary state information. The bdb_dn2idl_internal
868 * function uses this cookie when calling itself.
871 struct dn2id_cookie {
872 struct bdb_info *bdb;
880 ID tmp[BDB_IDL_DB_SIZE];
890 struct dn2id_cookie *cx
893 #ifdef SLAP_IDL_CACHE
894 if ( cx->bdb->bi_idl_cache_size ) {
895 cx->rc = bdb_idl_cache_get(cx->bdb, cx->db, &cx->key, cx->tmp);
896 if ( cx->rc == DB_NOTFOUND ) {
899 if ( cx->rc == LDAP_SUCCESS ) {
905 cx->rc = cx->db->cursor( cx->db, NULL, &cx->dbc,
906 cx->bdb->bi_db_opflags );
907 if ( cx->rc ) return cx->rc;
908 BDB_IDL_ZERO( cx->tmp );
910 cx->data.data = &cx->dbuf;
911 cx->data.ulen = sizeof(ID);
912 cx->data.dlen = sizeof(ID);
913 cx->data.flags = DB_DBT_USERMEM | DB_DBT_PARTIAL;
915 /* The first item holds the parent ID. Ignore it. */
916 cx->rc = cx->dbc->c_get( cx->dbc, &cx->key, &cx->data, DB_SET );
917 if ( cx->rc == DB_NOTFOUND ) goto saveit;
918 if ( cx->rc ) return cx->rc;
920 cx->data.data = cx->buf;
921 cx->data.ulen = BDB_IDL_UM_SIZE * sizeof(ID);
922 cx->data.flags = DB_DBT_USERMEM;
924 /* Fetch the rest of the IDs in a loop... */
925 while ( (cx->rc = cx->dbc->c_get( cx->dbc, &cx->key, &cx->data,
926 DB_MULTIPLE | DB_NEXT_DUP )) == 0 ) {
929 DB_MULTIPLE_INIT( cx->ptr, &cx->data );
931 DB_MULTIPLE_NEXT( cx->ptr, &cx->data, j, len );
933 AC_MEMCPY( &cx->dbuf, j, sizeof(ID) );
934 bdb_idl_insert( cx->tmp, cx->dbuf );
938 cx->dbc->c_close( cx->dbc );
940 /* If we got some records, treat as success */
941 if (!BDB_IDL_IS_ZERO(cx->tmp)) {
946 #ifdef SLAP_IDL_CACHE
947 if ( cx->bdb->bi_idl_cache_max_size ) {
948 bdb_idl_cache_put( cx->bdb, cx->db, &cx->key, cx->tmp, cx->rc );
952 if ( cx->prefix == DN_SUBTREE_PREFIX ) {
955 save = sl_malloc( BDB_IDL_SIZEOF( cx->tmp ), cx->ctx );
956 BDB_IDL_CPY( save, cx->tmp );
957 bdb_idl_union( cx->ids, cx->tmp );
960 for ( cx->id = bdb_idl_first( save, &idcurs );
962 cx->id = bdb_idl_next( save, &idcurs )) {
963 bdb_dn2idl_internal( cx );
965 sl_free( save, cx->ctx );
968 BDB_IDL_CPY( cx->ids, cx->tmp );
983 struct dn2id_cookie cx;
984 EntryInfo *ei = (EntryInfo *)dn;
986 #ifndef BDB_MULTIPLE_SUFFIXES
987 if ( ei->bei_parent->bei_id == 0 ) {
988 struct bdb_info *bdb = (struct bdb_info *)be->be_private;
989 BDB_IDL_ALL( bdb, ids );
995 cx.bdb = (struct bdb_info *)be->be_private;
996 cx.db = cx.bdb->bi_dn2id->bdi_db;
1002 BDB_IDL_ZERO( ids );
1003 if ( prefix == DN_SUBTREE_PREFIX ) {
1004 bdb_idl_insert( ids, cx.id );
1008 cx.key.data = &cx.id;
1009 cx.key.ulen = sizeof(ID);
1010 cx.key.size = sizeof(ID);
1011 cx.key.flags = DB_DBT_USERMEM;
1015 return bdb_dn2idl_internal(&cx);
1017 #endif /* BDB_HIER */