]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/dn2id.c
Use read-only txn's instead of read lockers. Support BDB 4.4-4.7
[openldap] / servers / slapd / back-bdb / dn2id.c
1 /* dn2id.c - routines to deal with the dn2id index */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2000-2008 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16
17 #include "portable.h"
18
19 #include <stdio.h>
20 #include <ac/string.h>
21
22 #include "back-bdb.h"
23 #include "idl.h"
24 #include "lutil.h"
25
26 #define bdb_dn2id_lock                                  BDB_SYMBOL(dn2id_lock)
27
28 static int
29 bdb_dn2id_lock( struct bdb_info *bdb, struct berval *dn,
30         int rw, DB_TXN *txn, DB_LOCK *lock )
31 {
32         int       rc;
33         DBT       lockobj;
34         int       db_rw;
35
36         if (!txn)
37                 return 0;
38
39         if (rw)
40                 db_rw = DB_LOCK_WRITE;
41         else
42                 db_rw = DB_LOCK_READ;
43
44         lockobj.data = dn->bv_val;
45         lockobj.size = dn->bv_len;
46
47         rc = LOCK_GET(bdb->bi_dbenv, TXN_ID(txn), DB_LOCK_NOWAIT,
48                                         &lockobj, db_rw, lock);
49         return rc;
50 }
51
52 #ifndef BDB_HIER
53 int
54 bdb_dn2id_add(
55         Operation *op,
56         DB_TXN *txn,
57         EntryInfo *eip,
58         Entry           *e )
59 {
60         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
61         DB *db = bdb->bi_dn2id->bdi_db;
62         int             rc;
63         DBT             key, data;
64         ID              nid;
65         char            *buf;
66         struct berval   ptr, pdn;
67
68         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_add 0x%lx: \"%s\"\n",
69                 e->e_id, e->e_ndn, 0 );
70         assert( e->e_id != NOID );
71
72         DBTzero( &key );
73         key.size = e->e_nname.bv_len + 2;
74         key.ulen = key.size;
75         key.flags = DB_DBT_USERMEM;
76         buf = op->o_tmpalloc( key.size, op->o_tmpmemctx );
77         key.data = buf;
78         buf[0] = DN_BASE_PREFIX;
79         ptr.bv_val = buf + 1;
80         ptr.bv_len = e->e_nname.bv_len;
81         AC_MEMCPY( ptr.bv_val, e->e_nname.bv_val, e->e_nname.bv_len );
82         ptr.bv_val[ptr.bv_len] = '\0';
83
84         DBTzero( &data );
85         data.data = &nid;
86         data.size = sizeof( nid );
87         BDB_ID2DISK( e->e_id, &nid );
88
89         /* store it -- don't override */
90         rc = db->put( db, txn, &key, &data, DB_NOOVERWRITE );
91         if( rc != 0 ) {
92                 Debug( LDAP_DEBUG_ANY, "=> bdb_dn2id_add 0x%lx: put failed: %s %d\n",
93                         e->e_id, db_strerror(rc), rc );
94                 goto done;
95         }
96
97 #ifndef BDB_MULTIPLE_SUFFIXES
98         if( !be_issuffix( op->o_bd, &ptr ))
99 #endif
100         {
101                 buf[0] = DN_SUBTREE_PREFIX;
102                 rc = db->put( db, txn, &key, &data, DB_NOOVERWRITE );
103                 if( rc != 0 ) {
104                         Debug( LDAP_DEBUG_ANY,
105                         "=> bdb_dn2id_add 0x%lx: subtree (%s) put failed: %d\n",
106                         e->e_id, ptr.bv_val, rc );
107                         goto done;
108                 }
109                 
110 #ifdef BDB_MULTIPLE_SUFFIXES
111         if( !be_issuffix( op->o_bd, &ptr ))
112 #endif
113         {
114                 dnParent( &ptr, &pdn );
115         
116                 key.size = pdn.bv_len + 2;
117                 key.ulen = key.size;
118                 pdn.bv_val[-1] = DN_ONE_PREFIX;
119                 key.data = pdn.bv_val-1;
120                 ptr = pdn;
121
122                 rc = bdb_idl_insert_key( op->o_bd, db, txn, &key, e->e_id );
123
124                 if( rc != 0 ) {
125                         Debug( LDAP_DEBUG_ANY,
126                                 "=> bdb_dn2id_add 0x%lx: parent (%s) insert failed: %d\n",
127                                         e->e_id, ptr.bv_val, rc );
128                         goto done;
129                 }
130         }
131
132 #ifndef BDB_MULTIPLE_SUFFIXES
133         while( !be_issuffix( op->o_bd, &ptr ))
134 #else
135         for (;;)
136 #endif
137         {
138                 ptr.bv_val[-1] = DN_SUBTREE_PREFIX;
139
140                 rc = bdb_idl_insert_key( op->o_bd, db, txn, &key, e->e_id );
141
142                 if( rc != 0 ) {
143                         Debug( LDAP_DEBUG_ANY,
144                                 "=> bdb_dn2id_add 0x%lx: subtree (%s) insert failed: %d\n",
145                                         e->e_id, ptr.bv_val, rc );
146                         break;
147                 }
148 #ifdef BDB_MULTIPLE_SUFFIXES
149                 if( be_issuffix( op->o_bd, &ptr )) break;
150 #endif
151                 dnParent( &ptr, &pdn );
152
153                 key.size = pdn.bv_len + 2;
154                 key.ulen = key.size;
155                 key.data = pdn.bv_val - 1;
156                 ptr = pdn;
157         }
158         }
159
160 done:
161         op->o_tmpfree( buf, op->o_tmpmemctx );
162         Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_add 0x%lx: %d\n", e->e_id, rc, 0 );
163         return rc;
164 }
165
166 int
167 bdb_dn2id_delete(
168         Operation *op,
169         DB_TXN *txn,
170         EntryInfo       *eip,
171         Entry           *e )
172 {
173         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
174         DB *db = bdb->bi_dn2id->bdi_db;
175         char            *buf;
176         DBT             key;
177         DB_LOCK lock;
178         struct berval   pdn, ptr;
179         int             rc;
180
181         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_delete 0x%lx: \"%s\"\n",
182                 e->e_id, e->e_ndn, 0 );
183
184         DBTzero( &key );
185         key.size = e->e_nname.bv_len + 2;
186         buf = op->o_tmpalloc( key.size, op->o_tmpmemctx );
187         key.data = buf;
188         key.flags = DB_DBT_USERMEM;
189         buf[0] = DN_BASE_PREFIX;
190         ptr.bv_val = buf+1;
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';
194
195         /* We hold this lock until the TXN completes */
196         rc = bdb_dn2id_lock( bdb, &e->e_nname, 1, txn, &lock );
197         if ( rc ) goto done;
198
199         /* delete it */
200         rc = db->del( db, txn, &key, 0 );
201         if( rc != 0 ) {
202                 Debug( LDAP_DEBUG_ANY, "=> bdb_dn2id_delete 0x%lx: delete failed: %s %d\n",
203                         e->e_id, db_strerror(rc), rc );
204                 goto done;
205         }
206
207 #ifndef BDB_MULTIPLE_SUFFIXES
208         if( !be_issuffix( op->o_bd, &ptr ))
209 #endif
210         {
211                 buf[0] = DN_SUBTREE_PREFIX;
212                 rc = bdb_idl_delete_key( op->o_bd, db, txn, &key, e->e_id );
213                 if( rc != 0 ) {
214                         Debug( LDAP_DEBUG_ANY,
215                         "=> bdb_dn2id_delete 0x%lx: subtree (%s) delete failed: %d\n",
216                         e->e_id, ptr.bv_val, rc );
217                         goto done;
218                 }
219
220 #ifdef BDB_MULTIPLE_SUFFIXES
221         if( !be_issuffix( op->o_bd, &ptr ))
222 #endif
223         {
224                 dnParent( &ptr, &pdn );
225
226                 key.size = pdn.bv_len + 2;
227                 key.ulen = key.size;
228                 pdn.bv_val[-1] = DN_ONE_PREFIX;
229                 key.data = pdn.bv_val - 1;
230                 ptr = pdn;
231
232                 rc = bdb_idl_delete_key( op->o_bd, db, txn, &key, e->e_id );
233
234                 if( rc != 0 ) {
235                         Debug( LDAP_DEBUG_ANY,
236                                 "=> bdb_dn2id_delete 0x%lx: parent (%s) delete failed: %d\n",
237                                 e->e_id, ptr.bv_val, rc );
238                         goto done;
239                 }
240         }
241
242 #ifndef BDB_MULTIPLE_SUFFIXES
243         while( !be_issuffix( op->o_bd, &ptr ))
244 #else
245         for (;;)
246 #endif
247         {
248                 ptr.bv_val[-1] = DN_SUBTREE_PREFIX;
249
250                 rc = bdb_idl_delete_key( op->o_bd, db, txn, &key, e->e_id );
251                 if( rc != 0 ) {
252                         Debug( LDAP_DEBUG_ANY,
253                                 "=> bdb_dn2id_delete 0x%lx: subtree (%s) delete failed: %d\n",
254                                 e->e_id, ptr.bv_val, rc );
255                         goto done;
256                 }
257 #ifdef BDB_MULTIPLE_SUFFIXES
258                 if( be_issuffix( op->o_bd, &ptr )) break;
259 #endif
260                 dnParent( &ptr, &pdn );
261
262                 key.size = pdn.bv_len + 2;
263                 key.ulen = key.size;
264                 key.data = pdn.bv_val - 1;
265                 ptr = pdn;
266         }
267         }
268
269 done:
270         op->o_tmpfree( buf, op->o_tmpmemctx );
271         Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_delete 0x%lx: %d\n", e->e_id, rc, 0 );
272         return rc;
273 }
274
275 int
276 bdb_dn2id(
277         Operation *op,
278         struct berval   *dn,
279         EntryInfo *ei,
280         DB_TXN *txn,
281         DB_LOCK *lock )
282 {
283         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
284         DB *db = bdb->bi_dn2id->bdi_db;
285         DBC     *cursor;
286         int             rc;
287         DBT             key, data;
288         ID              nid;
289
290         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id(\"%s\")\n", dn->bv_val, 0, 0 );
291
292         DBTzero( &key );
293         key.size = dn->bv_len + 2;
294         key.data = op->o_tmpalloc( key.size, op->o_tmpmemctx );
295         ((char *)key.data)[0] = DN_BASE_PREFIX;
296         AC_MEMCPY( &((char *)key.data)[1], dn->bv_val, key.size - 1 );
297
298         /* store the ID */
299         DBTzero( &data );
300         data.data = &nid;
301         data.ulen = sizeof(ID);
302         data.flags = DB_DBT_USERMEM;
303
304         rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
305         if ( rc ) goto func_leave;
306
307         rc = bdb_dn2id_lock( bdb, dn, 0, txn, lock );
308         if ( rc ) goto nolock;
309
310         /* fetch it */
311         rc = cursor->c_get( cursor, &key, &data, DB_SET );
312
313 nolock:
314         cursor->c_close( cursor );
315 func_leave:
316
317         if( rc != 0 ) {
318                 Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id: get failed: %s (%d)\n",
319                         db_strerror( rc ), rc, 0 );
320         } else {
321                 BDB_DISK2ID( &nid, &ei->bei_id );
322                 Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id: got id=0x%lx\n",
323                         ei->bei_id, 0, 0 );
324         }
325         op->o_tmpfree( key.data, op->o_tmpmemctx );
326         return rc;
327 }
328
329 int
330 bdb_dn2id_children(
331         Operation *op,
332         DB_TXN *txn,
333         Entry *e )
334 {
335         DBT             key, data;
336         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
337         DB *db = bdb->bi_dn2id->bdi_db;
338         ID              id;
339         int             rc;
340
341         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_children(\"%s\")\n",
342                 e->e_nname.bv_val, 0, 0 );
343         DBTzero( &key );
344         key.size = e->e_nname.bv_len + 2;
345         key.data = op->o_tmpalloc( key.size, op->o_tmpmemctx );
346         ((char *)key.data)[0] = DN_ONE_PREFIX;
347         AC_MEMCPY( &((char *)key.data)[1], e->e_nname.bv_val, key.size - 1 );
348
349         if ( bdb->bi_idl_cache_size ) {
350                 rc = bdb_idl_cache_get( bdb, db, &key, NULL );
351                 if ( rc != LDAP_NO_SUCH_OBJECT ) {
352                         op->o_tmpfree( key.data, op->o_tmpmemctx );
353                         return rc;
354                 }
355         }
356         /* we actually could do a empty get... */
357         DBTzero( &data );
358         data.data = &id;
359         data.ulen = sizeof(id);
360         data.flags = DB_DBT_USERMEM;
361         data.doff = 0;
362         data.dlen = sizeof(id);
363
364         rc = db->get( db, txn, &key, &data, bdb->bi_db_opflags );
365         op->o_tmpfree( key.data, op->o_tmpmemctx );
366
367         Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_children(\"%s\"): %s (%d)\n",
368                 e->e_nname.bv_val,
369                 rc == 0 ? "" : ( rc == DB_NOTFOUND ? "no " :
370                         db_strerror(rc) ), rc );
371
372         return rc;
373 }
374
375 int
376 bdb_dn2idl(
377         Operation *op,
378         DB_TXN *txn,
379         struct berval *ndn,
380         EntryInfo *ei,
381         ID *ids,
382         ID *stack )
383 {
384         int             rc;
385         DBT             key;
386         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
387         DB *db = bdb->bi_dn2id->bdi_db;
388         int prefix = ( op->ors_scope == LDAP_SCOPE_ONELEVEL )
389                 ? DN_ONE_PREFIX : DN_SUBTREE_PREFIX;
390
391         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2idl(\"%s\")\n",
392                 ndn->bv_val, 0, 0 );
393
394 #ifndef BDB_MULTIPLE_SUFFIXES
395         if ( prefix == DN_SUBTREE_PREFIX
396                 && ( ei->bei_id == 0 || ei->bei_parent->bei_id == 0 )) {
397                 BDB_IDL_ALL(bdb, ids);
398                 return 0;
399         }
400 #endif
401
402         DBTzero( &key );
403         key.size = ndn->bv_len + 2;
404         key.ulen = key.size;
405         key.flags = DB_DBT_USERMEM;
406         key.data = op->o_tmpalloc( key.size, op->o_tmpmemctx );
407         ((char *)key.data)[0] = prefix;
408         AC_MEMCPY( &((char *)key.data)[1], ndn->bv_val, key.size - 1 );
409
410         BDB_IDL_ZERO( ids );
411         rc = bdb_idl_fetch_key( op->o_bd, db, txn, &key, ids, NULL, 0 );
412
413         if( rc != 0 ) {
414                 Debug( LDAP_DEBUG_TRACE,
415                         "<= bdb_dn2idl: get failed: %s (%d)\n",
416                         db_strerror( rc ), rc, 0 );
417
418         } else {
419                 Debug( LDAP_DEBUG_TRACE,
420                         "<= bdb_dn2idl: id=%ld first=%ld last=%ld\n",
421                         (long) ids[0],
422                         (long) BDB_IDL_FIRST( ids ), (long) BDB_IDL_LAST( ids ) );
423         }
424
425         op->o_tmpfree( key.data, op->o_tmpmemctx );
426         return rc;
427 }
428
429 #else   /* BDB_HIER */
430 /* Management routines for a hierarchically structured database.
431  *
432  * Instead of a ldbm-style dn2id database, we use a hierarchical one. Each
433  * entry in this database is a struct diskNode, keyed by entryID and with
434  * the data containing the RDN and entryID of the node's children. We use
435  * a B-Tree with sorted duplicates to store all the children of a node under
436  * the same key. Also, the first item under the key contains the entry's own
437  * rdn and the ID of the node's parent, to allow bottom-up tree traversal as
438  * well as top-down. To keep this info first in the list, the high bit of all
439  * subsequent nrdnlen's is always set. This means we can only accomodate
440  * RDNs up to length 32767, but that's fine since full DNs are already
441  * restricted to 8192.
442  *
443  * The diskNode is a variable length structure. This definition is not
444  * directly usable for in-memory manipulation.
445  */
446 typedef struct diskNode {
447         unsigned char nrdnlen[2];
448         char nrdn[1];
449         char rdn[1];                        /* variable placement */
450         unsigned char entryID[sizeof(ID)];  /* variable placement */
451 } diskNode;
452
453 /* Sort function for the sorted duplicate data items of a dn2id key.
454  * Sorts based on normalized RDN, in length order.
455  */
456 int
457 hdb_dup_compare(
458         DB *db, 
459         const DBT *usrkey,
460         const DBT *curkey
461 )
462 {
463         diskNode *un, *cn;
464         int rc;
465
466         un = (diskNode *)usrkey->data;
467         cn = (diskNode *)curkey->data;
468
469         /* data is not aligned, cannot compare directly */
470         rc = un->nrdnlen[0] - cn->nrdnlen[0];
471         if ( rc ) return rc;
472         rc = un->nrdnlen[1] - cn->nrdnlen[1];
473         if ( rc ) return rc;
474
475         return strcmp( un->nrdn, cn->nrdn );
476 }
477
478 /* This function constructs a full DN for a given entry.
479  */
480 int hdb_fix_dn(
481         Entry *e,
482         int checkit )
483 {
484         EntryInfo *ei;
485         int rlen = 0, nrlen = 0;
486         char *ptr, *nptr;
487         int max = 0;
488
489         if ( !e->e_id )
490                 return 0;
491
492         /* count length of all DN components */
493         for ( ei = BEI(e); ei && ei->bei_id; ei=ei->bei_parent ) {
494                 rlen += ei->bei_rdn.bv_len + 1;
495                 nrlen += ei->bei_nrdn.bv_len + 1;
496                 if (ei->bei_modrdns > max) max = ei->bei_modrdns;
497         }
498
499         /* See if the entry DN was invalidated by a subtree rename */
500         if ( checkit ) {
501                 if ( BEI(e)->bei_modrdns >= max ) {
502                         return 0;
503                 }
504                 /* We found a mismatch, tell the caller to lock it */
505                 if ( checkit == 1 ) {
506                         return 1;
507                 }
508                 /* checkit == 2. do the fix. */
509                 free( e->e_name.bv_val );
510                 free( e->e_nname.bv_val );
511         }
512
513         e->e_name.bv_len = rlen - 1;
514         e->e_nname.bv_len = nrlen - 1;
515         e->e_name.bv_val = ch_malloc(rlen);
516         e->e_nname.bv_val = ch_malloc(nrlen);
517         ptr = e->e_name.bv_val;
518         nptr = e->e_nname.bv_val;
519         for ( ei = BEI(e); ei && ei->bei_id; ei=ei->bei_parent ) {
520                 ptr = lutil_strcopy(ptr, ei->bei_rdn.bv_val);
521                 nptr = lutil_strcopy(nptr, ei->bei_nrdn.bv_val);
522                 if ( ei->bei_parent ) {
523                         *ptr++ = ',';
524                         *nptr++ = ',';
525                 }
526         }
527         BEI(e)->bei_modrdns = max;
528         ptr[-1] = '\0';
529         nptr[-1] = '\0';
530
531         return 0;
532 }
533
534 /* We add two elements to the DN2ID database - a data item under the parent's
535  * entryID containing the child's RDN and entryID, and an item under the
536  * child's entryID containing the parent's entryID.
537  */
538 int
539 hdb_dn2id_add(
540         Operation       *op,
541         DB_TXN *txn,
542         EntryInfo       *eip,
543         Entry           *e )
544 {
545         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
546         DB *db = bdb->bi_dn2id->bdi_db;
547         DBT             key, data;
548         ID              nid;
549         int             rc, rlen, nrlen;
550         diskNode *d;
551         char *ptr;
552
553         Debug( LDAP_DEBUG_TRACE, "=> hdb_dn2id_add 0x%lx: \"%s\"\n",
554                 e->e_id, e->e_ndn, 0 );
555
556         nrlen = dn_rdnlen( op->o_bd, &e->e_nname );
557         if (nrlen) {
558                 rlen = dn_rdnlen( op->o_bd, &e->e_name );
559         } else {
560                 nrlen = e->e_nname.bv_len;
561                 rlen = e->e_name.bv_len;
562         }
563
564         d = op->o_tmpalloc(sizeof(diskNode) + rlen + nrlen, op->o_tmpmemctx);
565         d->nrdnlen[1] = nrlen & 0xff;
566         d->nrdnlen[0] = (nrlen >> 8) | 0x80;
567         ptr = lutil_strncopy( d->nrdn, e->e_nname.bv_val, nrlen );
568         *ptr++ = '\0';
569         ptr = lutil_strncopy( ptr, e->e_name.bv_val, rlen );
570         *ptr++ = '\0';
571         BDB_ID2DISK( e->e_id, ptr );
572
573         DBTzero(&key);
574         DBTzero(&data);
575         key.size = sizeof(ID);
576         key.flags = DB_DBT_USERMEM;
577         BDB_ID2DISK( eip->bei_id, &nid );
578
579         key.data = &nid;
580
581         /* Need to make dummy root node once. Subsequent attempts
582          * will fail harmlessly.
583          */
584         if ( eip->bei_id == 0 ) {
585                 diskNode dummy = {{0, 0}, "", "", ""};
586                 data.data = &dummy;
587                 data.size = sizeof(diskNode);
588                 data.flags = DB_DBT_USERMEM;
589
590                 db->put( db, txn, &key, &data, DB_NODUPDATA );
591         }
592
593         data.data = d;
594         data.size = sizeof(diskNode) + rlen + nrlen;
595         data.flags = DB_DBT_USERMEM;
596
597         rc = db->put( db, txn, &key, &data, DB_NODUPDATA );
598
599         if (rc == 0) {
600                 BDB_ID2DISK( e->e_id, &nid );
601                 BDB_ID2DISK( eip->bei_id, ptr );
602                 d->nrdnlen[0] ^= 0x80;
603
604                 rc = db->put( db, txn, &key, &data, DB_NODUPDATA );
605         }
606
607         /* Update all parents' IDL cache entries */
608         if ( rc == 0 && bdb->bi_idl_cache_size ) {
609                 ID tmp[2];
610                 char *ptr = ((char *)&tmp[1])-1;
611                 key.data = ptr;
612                 key.size = sizeof(ID)+1;
613                 tmp[1] = eip->bei_id;
614                 *ptr = DN_ONE_PREFIX;
615                 bdb_idl_cache_add_id( bdb, db, &key, e->e_id );
616                 *ptr = DN_SUBTREE_PREFIX;
617                 for (; eip && eip->bei_parent->bei_id; eip = eip->bei_parent) {
618                         tmp[1] = eip->bei_id;
619                         bdb_idl_cache_add_id( bdb, db, &key, e->e_id );
620                 }
621         }
622
623 func_leave:
624         op->o_tmpfree( d, op->o_tmpmemctx );
625         Debug( LDAP_DEBUG_TRACE, "<= hdb_dn2id_add 0x%lx: %d\n", e->e_id, rc, 0 );
626
627         return rc;
628 }
629
630 int
631 hdb_dn2id_delete(
632         Operation       *op,
633         DB_TXN *txn,
634         EntryInfo       *eip,
635         Entry   *e )
636 {
637         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
638         DB *db = bdb->bi_dn2id->bdi_db;
639         DBT             key, data;
640         DBC     *cursor;
641         diskNode *d;
642         int rc;
643         ID      nid;
644         unsigned char dlen[2];
645         DB_LOCK lock;
646
647         Debug( LDAP_DEBUG_TRACE, "=> hdb_dn2id_delete 0x%lx: \"%s\"\n",
648                 e->e_id, e->e_ndn, 0 );
649
650         DBTzero(&key);
651         key.size = sizeof(ID);
652         key.ulen = key.size;
653         key.flags = DB_DBT_USERMEM;
654         BDB_ID2DISK( eip->bei_id, &nid );
655
656         DBTzero(&data);
657         data.size = sizeof(diskNode) + BEI(e)->bei_nrdn.bv_len - sizeof(ID) - 1;
658         data.ulen = data.size;
659         data.dlen = data.size;
660         data.flags = DB_DBT_USERMEM | DB_DBT_PARTIAL;
661
662         key.data = &nid;
663
664         d = op->o_tmpalloc( data.size, op->o_tmpmemctx );
665         d->nrdnlen[1] = BEI(e)->bei_nrdn.bv_len & 0xff;
666         d->nrdnlen[0] = (BEI(e)->bei_nrdn.bv_len >> 8) | 0x80;
667         dlen[0] = d->nrdnlen[0];
668         dlen[1] = d->nrdnlen[1];
669         strcpy( d->nrdn, BEI(e)->bei_nrdn.bv_val );
670         data.data = d;
671
672         rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
673         if ( rc ) goto func_leave;
674
675         /* We hold this lock until the TXN completes */
676         rc = bdb_dn2id_lock( bdb, &e->e_nname, 1, txn, &lock );
677         if ( rc ) goto nolock;
678
679         /* Delete our ID from the parent's list */
680         rc = cursor->c_get( cursor, &key, &data, DB_GET_BOTH_RANGE );
681         if ( rc == 0 ) {
682                 if ( dlen[1] == d->nrdnlen[1] && dlen[0] == d->nrdnlen[0] &&
683                         !strcmp( d->nrdn, BEI(e)->bei_nrdn.bv_val ))
684                         rc = cursor->c_del( cursor, 0 );
685                 else
686                         rc = DB_NOTFOUND;
687         }
688
689         /* Delete our ID from the tree. With sorted duplicates, this
690          * will leave any child nodes still hanging around. This is OK
691          * for modrdn, which will add our info back in later.
692          */
693         if ( rc == 0 ) {
694                 BDB_ID2DISK( e->e_id, &nid );
695                 rc = cursor->c_get( cursor, &key, &data, DB_SET );
696                 if ( rc == 0 )
697                         rc = cursor->c_del( cursor, 0 );
698         }
699
700 nolock:
701         cursor->c_close( cursor );
702 func_leave:
703         op->o_tmpfree( d, op->o_tmpmemctx );
704
705         /* Delete IDL cache entries */
706         if ( rc == 0 && bdb->bi_idl_cache_size ) {
707                 ID tmp[2];
708                 char *ptr = ((char *)&tmp[1])-1;
709                 key.data = ptr;
710                 key.size = sizeof(ID)+1;
711                 tmp[1] = eip->bei_id;
712                 *ptr = DN_ONE_PREFIX;
713                 bdb_idl_cache_del_id( bdb, db, &key, e->e_id );
714                 *ptr = DN_SUBTREE_PREFIX;
715                 for (; eip && eip->bei_parent->bei_id; eip = eip->bei_parent) {
716                         tmp[1] = eip->bei_id;
717                         bdb_idl_cache_del_id( bdb, db, &key, e->e_id );
718                 }
719         }
720         Debug( LDAP_DEBUG_TRACE, "<= hdb_dn2id_delete 0x%lx: %d\n", e->e_id, rc, 0 );
721         return rc;
722 }
723
724
725 int
726 hdb_dn2id(
727         Operation       *op,
728         struct berval   *in,
729         EntryInfo       *ei,
730         DB_TXN *txn,
731         DB_LOCK *lock )
732 {
733         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
734         DB *db = bdb->bi_dn2id->bdi_db;
735         DBT             key, data;
736         DBC     *cursor;
737         int             rc = 0, nrlen;
738         diskNode *d;
739         char    *ptr;
740         unsigned char dlen[2];
741         ID idp, parentID;
742
743         Debug( LDAP_DEBUG_TRACE, "=> hdb_dn2id(\"%s\")\n", in->bv_val, 0, 0 );
744
745         nrlen = dn_rdnlen( op->o_bd, in );
746         if (!nrlen) nrlen = in->bv_len;
747
748         DBTzero(&key);
749         key.size = sizeof(ID);
750         key.data = &idp;
751         key.ulen = sizeof(ID);
752         key.flags = DB_DBT_USERMEM;
753         parentID = ( ei->bei_parent != NULL ) ? ei->bei_parent->bei_id : 0;
754         BDB_ID2DISK( parentID, &idp );
755
756         DBTzero(&data);
757         data.size = sizeof(diskNode) + nrlen - sizeof(ID) - 1;
758         data.ulen = data.size * 3;
759         data.dlen = data.ulen;
760         data.flags = DB_DBT_USERMEM | DB_DBT_PARTIAL;
761
762         rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
763         if ( rc ) return rc;
764
765         d = op->o_tmpalloc( data.size * 3, op->o_tmpmemctx );
766         d->nrdnlen[1] = nrlen & 0xff;
767         d->nrdnlen[0] = (nrlen >> 8) | 0x80;
768         dlen[0] = d->nrdnlen[0];
769         dlen[1] = d->nrdnlen[1];
770         ptr = lutil_strncopy( d->nrdn, in->bv_val, nrlen );
771         *ptr = '\0';
772         data.data = d;
773
774         rc = bdb_dn2id_lock( bdb, in, 0, txn, lock );
775         if ( rc ) goto func_leave;
776
777         rc = cursor->c_get( cursor, &key, &data, DB_GET_BOTH_RANGE );
778         if ( rc == 0 && (dlen[1] != d->nrdnlen[1] || dlen[0] != d->nrdnlen[0] ||
779                 strncmp( d->nrdn, in->bv_val, nrlen ))) {
780                 rc = DB_NOTFOUND;
781         }
782         if ( rc == 0 ) {
783                 ptr = (char *) data.data + data.size - sizeof(ID);
784                 BDB_DISK2ID( ptr, &ei->bei_id );
785                 ei->bei_rdn.bv_len = data.size - sizeof(diskNode) - nrlen;
786                 ptr = d->nrdn + nrlen + 1;
787                 ber_str2bv( ptr, ei->bei_rdn.bv_len, 1, &ei->bei_rdn );
788                 if ( ei->bei_parent != NULL && !ei->bei_parent->bei_dkids ) {
789                         db_recno_t dkids;
790                         /* How many children does the parent have? */
791                         /* FIXME: do we need to lock the parent
792                          * entryinfo? Seems safe...
793                          */
794                         cursor->c_count( cursor, &dkids, 0 );
795                         ei->bei_parent->bei_dkids = dkids;
796                 }
797         }
798
799 func_leave:
800         cursor->c_close( cursor );
801         op->o_tmpfree( d, op->o_tmpmemctx );
802         if( rc != 0 ) {
803                 Debug( LDAP_DEBUG_TRACE, "<= hdb_dn2id: get failed: %s (%d)\n",
804                         db_strerror( rc ), rc, 0 );
805         } else {
806                 Debug( LDAP_DEBUG_TRACE, "<= hdb_dn2id: got id=0x%lx\n",
807                         ei->bei_id, 0, 0 );
808         }
809
810         return rc;
811 }
812
813 int
814 hdb_dn2id_parent(
815         Operation *op,
816         DB_TXN *txn,
817         EntryInfo *ei,
818         ID *idp )
819 {
820         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
821         DB *db = bdb->bi_dn2id->bdi_db;
822         DBT             key, data;
823         DBC     *cursor;
824         int             rc = 0;
825         diskNode *d;
826         char    *ptr;
827         ID      nid;
828
829         DBTzero(&key);
830         key.size = sizeof(ID);
831         key.data = &nid;
832         key.ulen = sizeof(ID);
833         key.flags = DB_DBT_USERMEM;
834         BDB_ID2DISK( ei->bei_id, &nid );
835
836         DBTzero(&data);
837         data.flags = DB_DBT_USERMEM;
838
839         rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
840         if ( rc ) return rc;
841
842         data.ulen = sizeof(diskNode) + (SLAP_LDAPDN_MAXLEN * 2);
843         d = op->o_tmpalloc( data.ulen, op->o_tmpmemctx );
844         data.data = d;
845
846         rc = cursor->c_get( cursor, &key, &data, DB_SET );
847         if ( rc == 0 ) {
848                 if (d->nrdnlen[0] & 0x80) {
849                         rc = LDAP_OTHER;
850                 } else {
851                         db_recno_t dkids;
852                         ptr = (char *) data.data + data.size - sizeof(ID);
853                         BDB_DISK2ID( ptr, idp );
854                         ei->bei_nrdn.bv_len = (d->nrdnlen[0] << 8) | d->nrdnlen[1];
855                         ber_str2bv( d->nrdn, ei->bei_nrdn.bv_len, 1, &ei->bei_nrdn );
856                         ei->bei_rdn.bv_len = data.size - sizeof(diskNode) -
857                                 ei->bei_nrdn.bv_len;
858                         ptr = d->nrdn + ei->bei_nrdn.bv_len + 1;
859                         ber_str2bv( ptr, ei->bei_rdn.bv_len, 1, &ei->bei_rdn );
860                         /* How many children does this node have? */
861                         cursor->c_count( cursor, &dkids, 0 );
862                         ei->bei_dkids = dkids;
863                 }
864         }
865         cursor->c_close( cursor );
866         op->o_tmpfree( d, op->o_tmpmemctx );
867         return rc;
868 }
869
870 int
871 hdb_dn2id_children(
872         Operation *op,
873         DB_TXN *txn,
874         Entry *e )
875 {
876         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
877         DB *db = bdb->bi_dn2id->bdi_db;
878         DBT             key, data;
879         DBC             *cursor;
880         int             rc;
881         ID              id;
882         diskNode d;
883
884         DBTzero(&key);
885         key.size = sizeof(ID);
886         key.data = &e->e_id;
887         key.flags = DB_DBT_USERMEM;
888         BDB_ID2DISK( e->e_id, &id );
889
890         /* IDL cache is in host byte order */
891         if ( bdb->bi_idl_cache_size ) {
892                 rc = bdb_idl_cache_get( bdb, db, &key, NULL );
893                 if ( rc != LDAP_NO_SUCH_OBJECT ) {
894                         return rc;
895                 }
896         }
897
898         key.data = &id;
899         DBTzero(&data);
900         data.data = &d;
901         data.ulen = sizeof(d);
902         data.flags = DB_DBT_USERMEM | DB_DBT_PARTIAL;
903         data.dlen = sizeof(d);
904
905         rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
906         if ( rc ) return rc;
907
908         rc = cursor->c_get( cursor, &key, &data, DB_SET );
909         if ( rc == 0 ) {
910                 db_recno_t dkids;
911                 rc = cursor->c_count( cursor, &dkids, 0 );
912                 if ( rc == 0 ) {
913                         BEI(e)->bei_dkids = dkids;
914                         if ( dkids < 2 ) rc = DB_NOTFOUND;
915                 }
916         }
917         cursor->c_close( cursor );
918         return rc;
919 }
920
921 /* bdb_dn2idl:
922  * We can't just use bdb_idl_fetch_key because
923  * 1 - our data items are longer than just an entry ID
924  * 2 - our data items are sorted alphabetically by nrdn, not by ID.
925  *
926  * We descend the tree recursively, so we define this cookie
927  * to hold our necessary state information. The bdb_dn2idl_internal
928  * function uses this cookie when calling itself.
929  */
930
931 struct dn2id_cookie {
932         struct bdb_info *bdb;
933         Operation *op;
934         DB_TXN *txn;
935         EntryInfo *ei;
936         ID *ids;
937         ID *tmp;
938         ID *buf;
939         DB *db;
940         DBC *dbc;
941         DBT key;
942         DBT data;
943         ID dbuf;
944         ID id;
945         ID nid;
946         int rc;
947         int depth;
948         char need_sort;
949         char prefix;
950 };
951
952 static int
953 apply_func(
954         void *data,
955         void *arg )
956 {
957         EntryInfo *ei = data;
958         ID *idl = arg;
959
960         bdb_idl_append_one( idl, ei->bei_id );
961         return 0;
962 }
963
964 static int
965 hdb_dn2idl_internal(
966         struct dn2id_cookie *cx
967 )
968 {
969         BDB_IDL_ZERO( cx->tmp );
970
971         if ( cx->bdb->bi_idl_cache_size ) {
972                 char *ptr = ((char *)&cx->id)-1;
973
974                 cx->key.data = ptr;
975                 cx->key.size = sizeof(ID)+1;
976                 if ( cx->prefix == DN_SUBTREE_PREFIX ) {
977                         ID *ids = cx->depth ? cx->tmp : cx->ids;
978                         *ptr = cx->prefix;
979                         cx->rc = bdb_idl_cache_get(cx->bdb, cx->db, &cx->key, ids);
980                         if ( cx->rc == LDAP_SUCCESS ) {
981                                 if ( cx->depth ) {
982                                         bdb_idl_append( cx->ids, cx->tmp );
983                                         cx->need_sort = 1;
984                                 }
985                                 return cx->rc;
986                         }
987                 }
988                 *ptr = DN_ONE_PREFIX;
989                 cx->rc = bdb_idl_cache_get(cx->bdb, cx->db, &cx->key, cx->tmp);
990                 if ( cx->rc == LDAP_SUCCESS ) {
991                         goto gotit;
992                 }
993                 if ( cx->rc == DB_NOTFOUND ) {
994                         return cx->rc;
995                 }
996         }
997
998         bdb_cache_entryinfo_lock( cx->ei );
999
1000         /* If number of kids in the cache differs from on-disk, load
1001          * up all the kids from the database
1002          */
1003         if ( cx->ei->bei_ckids+1 != cx->ei->bei_dkids ) {
1004                 EntryInfo ei;
1005                 db_recno_t dkids = cx->ei->bei_dkids;
1006                 ei.bei_parent = cx->ei;
1007
1008                 /* Only one thread should load the cache */
1009                 while ( cx->ei->bei_state & CACHE_ENTRY_ONELEVEL ) {
1010                         bdb_cache_entryinfo_unlock( cx->ei );
1011                         ldap_pvt_thread_yield();
1012                         bdb_cache_entryinfo_lock( cx->ei );
1013                         if ( cx->ei->bei_ckids+1 == cx->ei->bei_dkids ) {
1014                                 goto synced;
1015                         }
1016                 }
1017
1018                 cx->ei->bei_state |= CACHE_ENTRY_ONELEVEL;
1019
1020                 bdb_cache_entryinfo_unlock( cx->ei );
1021
1022                 cx->rc = cx->db->cursor( cx->db, NULL, &cx->dbc,
1023                         cx->bdb->bi_db_opflags );
1024                 if ( cx->rc )
1025                         goto done_one;
1026
1027                 cx->data.data = &cx->dbuf;
1028                 cx->data.ulen = sizeof(ID);
1029                 cx->data.dlen = sizeof(ID);
1030                 cx->data.flags = DB_DBT_USERMEM | DB_DBT_PARTIAL;
1031
1032                 /* The first item holds the parent ID. Ignore it. */
1033                 cx->key.data = &cx->nid;
1034                 cx->key.size = sizeof(ID);
1035                 cx->rc = cx->dbc->c_get( cx->dbc, &cx->key, &cx->data, DB_SET );
1036                 if ( cx->rc ) {
1037                         cx->dbc->c_close( cx->dbc );
1038                         goto done_one;
1039                 }
1040
1041                 /* If the on-disk count is zero we've never checked it.
1042                  * Count it now.
1043                  */
1044                 if ( !dkids ) {
1045                         cx->dbc->c_count( cx->dbc, &dkids, 0 );
1046                         cx->ei->bei_dkids = dkids;
1047                 }
1048
1049                 cx->data.data = cx->buf;
1050                 cx->data.ulen = BDB_IDL_UM_SIZE * sizeof(ID);
1051                 cx->data.flags = DB_DBT_USERMEM;
1052
1053                 if ( dkids > 1 ) {
1054                         /* Fetch the rest of the IDs in a loop... */
1055                         while ( (cx->rc = cx->dbc->c_get( cx->dbc, &cx->key, &cx->data,
1056                                 DB_MULTIPLE | DB_NEXT_DUP )) == 0 ) {
1057                                 u_int8_t *j;
1058                                 size_t len;
1059                                 void *ptr;
1060                                 DB_MULTIPLE_INIT( ptr, &cx->data );
1061                                 while (ptr) {
1062                                         DB_MULTIPLE_NEXT( ptr, &cx->data, j, len );
1063                                         if (j) {
1064                                                 EntryInfo *ei2;
1065                                                 diskNode *d = (diskNode *)j;
1066                                                 short nrlen;
1067
1068                                                 BDB_DISK2ID( j + len - sizeof(ID), &ei.bei_id );
1069                                                 nrlen = ((d->nrdnlen[0] ^ 0x80) << 8) | d->nrdnlen[1];
1070                                                 ei.bei_nrdn.bv_len = nrlen;
1071                                                 /* nrdn/rdn are set in-place.
1072                                                  * hdb_cache_load will copy them as needed
1073                                                  */
1074                                                 ei.bei_nrdn.bv_val = d->nrdn;
1075                                                 ei.bei_rdn.bv_len = len - sizeof(diskNode)
1076                                                         - ei.bei_nrdn.bv_len;
1077                                                 ei.bei_rdn.bv_val = d->nrdn + ei.bei_nrdn.bv_len + 1;
1078                                                 bdb_idl_append_one( cx->tmp, ei.bei_id );
1079                                                 hdb_cache_load( cx->bdb, &ei, &ei2 );
1080                                         }
1081                                 }
1082                         }
1083                 }
1084
1085                 cx->rc = cx->dbc->c_close( cx->dbc );
1086 done_one:
1087                 bdb_cache_entryinfo_lock( cx->ei );
1088                 cx->ei->bei_state ^= CACHE_ENTRY_ONELEVEL;
1089                 bdb_cache_entryinfo_unlock( cx->ei );
1090                 if ( cx->rc )
1091                         return cx->rc;
1092
1093         } else {
1094                 /* The in-memory cache is in sync with the on-disk data.
1095                  * do we have any kids?
1096                  */
1097 synced:
1098                 cx->rc = 0;
1099                 if ( cx->ei->bei_ckids > 0 ) {
1100                         /* Walk the kids tree; order is irrelevant since bdb_idl_sort
1101                          * will sort it later.
1102                          */
1103                         avl_apply( cx->ei->bei_kids, apply_func,
1104                                 cx->tmp, -1, AVL_POSTORDER );
1105                 }
1106                 bdb_cache_entryinfo_unlock( cx->ei );
1107         }
1108
1109         if ( !BDB_IDL_IS_RANGE( cx->tmp ) && cx->tmp[0] > 3 )
1110                 bdb_idl_sort( cx->tmp, cx->buf );
1111         if ( cx->bdb->bi_idl_cache_max_size && !BDB_IDL_IS_ZERO( cx->tmp )) {
1112                 char *ptr = ((char *)&cx->id)-1;
1113                 cx->key.data = ptr;
1114                 cx->key.size = sizeof(ID)+1;
1115                 *ptr = DN_ONE_PREFIX;
1116                 bdb_idl_cache_put( cx->bdb, cx->db, &cx->key, cx->tmp, cx->rc );
1117         }
1118
1119 gotit:
1120         if ( !BDB_IDL_IS_ZERO( cx->tmp )) {
1121                 if ( cx->prefix == DN_SUBTREE_PREFIX ) {
1122                         bdb_idl_append( cx->ids, cx->tmp );
1123                         cx->need_sort = 1;
1124                         if ( !(cx->ei->bei_state & CACHE_ENTRY_NO_GRANDKIDS)) {
1125                                 ID *save, idcurs;
1126                                 EntryInfo *ei = cx->ei;
1127                                 int nokids = 1;
1128                                 save = cx->op->o_tmpalloc( BDB_IDL_SIZEOF( cx->tmp ),
1129                                         cx->op->o_tmpmemctx );
1130                                 BDB_IDL_CPY( save, cx->tmp );
1131
1132                                 idcurs = 0;
1133                                 cx->depth++;
1134                                 for ( cx->id = bdb_idl_first( save, &idcurs );
1135                                         cx->id != NOID;
1136                                         cx->id = bdb_idl_next( save, &idcurs )) {
1137                                         cx->ei = bdb_cache_find_info( cx->bdb, cx->id );
1138                                         if ( !cx->ei ||
1139                                                 ( cx->ei->bei_state & CACHE_ENTRY_NO_KIDS ))
1140                                                 continue;
1141
1142                                         BDB_ID2DISK( cx->id, &cx->nid );
1143                                         hdb_dn2idl_internal( cx );
1144                                         if ( !BDB_IDL_IS_ZERO( cx->tmp ))
1145                                                 nokids = 0;
1146                                 }
1147                                 cx->depth--;
1148                                 cx->op->o_tmpfree( save, cx->op->o_tmpmemctx );
1149                                 if ( nokids ) {
1150                                         bdb_cache_entryinfo_lock( ei );
1151                                         ei->bei_state |= CACHE_ENTRY_NO_GRANDKIDS;
1152                                         bdb_cache_entryinfo_unlock( ei );
1153                                 }
1154                         }
1155                         /* Make sure caller knows it had kids! */
1156                         cx->tmp[0]=1;
1157
1158                         cx->rc = 0;
1159                 } else {
1160                         BDB_IDL_CPY( cx->ids, cx->tmp );
1161                 }
1162         }
1163         return cx->rc;
1164 }
1165
1166 int
1167 hdb_dn2idl(
1168         Operation       *op,
1169         DB_TXN *txn,
1170         struct berval *ndn,
1171         EntryInfo       *ei,
1172         ID *ids,
1173         ID *stack )
1174 {
1175         struct bdb_info *bdb = (struct bdb_info *)op->o_bd->be_private;
1176         struct dn2id_cookie cx;
1177
1178         Debug( LDAP_DEBUG_TRACE, "=> hdb_dn2idl(\"%s\")\n",
1179                 ndn->bv_val, 0, 0 );
1180
1181 #ifndef BDB_MULTIPLE_SUFFIXES
1182         if ( op->ors_scope != LDAP_SCOPE_ONELEVEL && 
1183                 ( ei->bei_id == 0 ||
1184                 ei->bei_parent->bei_id == 0 ))
1185         {
1186                 BDB_IDL_ALL( bdb, ids );
1187                 return 0;
1188         }
1189 #endif
1190
1191         cx.id = ei->bei_id;
1192         BDB_ID2DISK( cx.id, &cx.nid );
1193         cx.ei = ei;
1194         cx.bdb = bdb;
1195         cx.db = cx.bdb->bi_dn2id->bdi_db;
1196         cx.prefix = (op->ors_scope == LDAP_SCOPE_ONELEVEL) ?
1197                 DN_ONE_PREFIX : DN_SUBTREE_PREFIX;
1198         cx.ids = ids;
1199         cx.tmp = stack;
1200         cx.buf = stack + BDB_IDL_UM_SIZE;
1201         cx.op = op;
1202         cx.txn = txn;
1203         cx.need_sort = 0;
1204         cx.depth = 0;
1205
1206         if ( cx.prefix == DN_SUBTREE_PREFIX ) {
1207                 ids[0] = 1;
1208                 ids[1] = cx.id;
1209         } else {
1210                 BDB_IDL_ZERO( ids );
1211         }
1212         if ( cx.ei->bei_state & CACHE_ENTRY_NO_KIDS )
1213                 return LDAP_SUCCESS;
1214
1215         DBTzero(&cx.key);
1216         cx.key.ulen = sizeof(ID);
1217         cx.key.size = sizeof(ID);
1218         cx.key.flags = DB_DBT_USERMEM;
1219
1220         DBTzero(&cx.data);
1221
1222         hdb_dn2idl_internal(&cx);
1223         if ( cx.need_sort ) {
1224                 char *ptr = ((char *)&cx.id)-1;
1225                 if ( !BDB_IDL_IS_RANGE( cx.ids ) && cx.ids[0] > 3 ) 
1226                         bdb_idl_sort( cx.ids, cx.tmp );
1227                 cx.key.data = ptr;
1228                 cx.key.size = sizeof(ID)+1;
1229                 *ptr = cx.prefix;
1230                 cx.id = ei->bei_id;
1231                 if ( cx.bdb->bi_idl_cache_max_size )
1232                         bdb_idl_cache_put( cx.bdb, cx.db, &cx.key, cx.ids, cx.rc );
1233         }
1234
1235         if ( cx.rc == DB_NOTFOUND )
1236                 cx.rc = LDAP_SUCCESS;
1237
1238         return cx.rc;
1239 }
1240 #endif  /* BDB_HIER */