]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/dn2id.c
Changed be_nsuffix from char ** to struct berval ** to eliminate strlen's
[openldap] / servers / slapd / back-bdb / dn2id.c
1 /* dn2id.c - routines to deal with the dn2id index */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 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 #include <ac/string.h>
12
13 #include "back-bdb.h"
14 #include "idl.h"
15
16 #ifndef BDB_HIER
17 int
18 bdb_dn2id_add(
19         BackendDB       *be,
20         DB_TXN *txn,
21         const char      *pdn,
22         Entry           *e )
23 {
24         int             rc;
25         DBT             key, data;
26         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
27         DB *db = bdb->bi_dn2id->bdi_db;
28
29         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_add( \"%s\", 0x%08lx )\n",
30                 e->e_ndn, (long) e->e_id, 0 );
31         assert( e->e_id != NOID );
32
33         DBTzero( &key );
34         key.size = strlen( e->e_ndn ) + 2;
35         key.data = ch_malloc( key.size );
36         ((char *)key.data)[0] = DN_BASE_PREFIX;
37         AC_MEMCPY( &((char *)key.data)[1], e->e_ndn, key.size - 1 );
38
39         DBTzero( &data );
40         data.data = (char *) &e->e_id;
41         data.size = sizeof( e->e_id );
42
43         /* store it -- don't override */
44         rc = db->put( db, txn, &key, &data, DB_NOOVERWRITE );
45         if( rc != 0 ) {
46                 Debug( LDAP_DEBUG_ANY, "=> bdb_dn2id_add: put failed: %s %d\n",
47                         db_strerror(rc), rc, 0 );
48                 goto done;
49         }
50
51         {
52                 ((char *)(key.data))[0] = DN_ONE_PREFIX;
53
54                 if( pdn != NULL ) {
55                         key.size = strlen( pdn ) + 2;
56                         AC_MEMCPY( &((char*)key.data)[1],
57                                 pdn, key.size - 1 );
58
59                         rc = bdb_idl_insert_key( be, db, txn, &key, e->e_id );
60
61                         if( rc != 0 ) {
62                                 Debug( LDAP_DEBUG_ANY,
63                                         "=> bdb_dn2id_add: parent (%s) insert failed: %d\n",
64                                         pdn, rc, 0 );
65                                 goto done;
66                         }
67                 }
68         }
69
70         {
71                 char **subtree = dn_subtree( be, e->e_ndn );
72
73                 if( subtree != NULL ) {
74                         int i;
75                         ((char *)key.data)[0] = DN_SUBTREE_PREFIX;
76                         for( i=0; subtree[i] != NULL; i++ ) {
77                                 if( be_issuffix( be, subtree[i] ))
78                                         continue;
79                                 key.size = strlen( subtree[i] ) + 2;
80                                 AC_MEMCPY( &((char *)key.data)[1],
81                                         subtree[i], key.size - 1 );
82
83                                 rc = bdb_idl_insert_key( be, db, txn, &key,
84                                         e->e_id );
85
86                                 if( rc != 0 ) {
87                                         Debug( LDAP_DEBUG_ANY,
88                                                 "=> bdb_dn2id_add: subtree (%s) insert failed: %d\n",
89                                                 subtree[i], rc, 0 );
90                                         break;
91                                 }
92                         }
93
94                         charray_free( subtree );
95                 }
96         }
97
98 done:
99         ch_free( key.data );
100         Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_add: %d\n", rc, 0, 0 );
101         return rc;
102 }
103
104 int
105 bdb_dn2id_delete(
106         BackendDB       *be,
107         DB_TXN *txn,
108         const char      *pdn,
109         const char      *dn,
110         ID              id )
111 {
112         int             rc;
113         DBT             key;
114         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
115         DB *db = bdb->bi_dn2id->bdi_db;
116
117         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_delete( \"%s\", 0x%08lx )\n",
118                 dn, id, 0 );
119
120         DBTzero( &key );
121         key.size = strlen( dn ) + 2;
122         key.data = ch_malloc( key.size );
123         key.flags = DB_DBT_USERMEM;
124         ((char *)key.data)[0] = DN_BASE_PREFIX;
125         AC_MEMCPY( &((char *)key.data)[1], dn, key.size - 1 );
126
127         /* delete it */
128         rc = db->del( db, txn, &key, 0 );
129         if( rc != 0 ) {
130                 Debug( LDAP_DEBUG_ANY, "=> bdb_dn2id_delete: delete failed: %s %d\n",
131                         db_strerror(rc), rc, 0 );
132                 goto done;
133         }
134
135         {
136                 ((char *)(key.data))[0] = DN_ONE_PREFIX;
137
138                 if( pdn != NULL ) {
139                         key.size = strlen( pdn ) + 2;
140                         AC_MEMCPY( &((char*)key.data)[1],
141                                 pdn, key.size - 1 );
142
143                         rc = bdb_idl_delete_key( be, db, txn, &key, id );
144
145                         if( rc != 0 ) {
146                                 Debug( LDAP_DEBUG_ANY,
147                                         "=> bdb_dn2id_delete: parent (%s) delete failed: %d\n",
148                                         pdn, rc, 0 );
149                                 goto done;
150                         }
151                 }
152         }
153
154         {
155                 char **subtree = dn_subtree( be, dn );
156
157                 if( subtree != NULL ) {
158                         int i;
159                         ((char *)key.data)[0] = DN_SUBTREE_PREFIX;
160                         for( i=0; subtree[i] != NULL; i++ ) {
161                                 key.size = strlen( subtree[i] ) + 2;
162                                 AC_MEMCPY( &((char *)key.data)[1],
163                                         subtree[i], key.size - 1 );
164
165                                 rc = bdb_idl_delete_key( be, db, txn, &key, id );
166
167                                 if( rc != 0 ) {
168                                         Debug( LDAP_DEBUG_ANY,
169                                                 "=> bdb_dn2id_delete: subtree (%s) delete failed: %d\n",
170                                                 subtree[i], rc, 0 );
171                                         charray_free( subtree );
172                                         goto done;
173                                 }
174                         }
175
176                         charray_free( subtree );
177                 }
178         }
179
180 done:
181         ch_free( key.data );
182         Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_delete %d\n", rc, 0, 0 );
183         return rc;
184 }
185
186 int
187 bdb_dn2id(
188         BackendDB       *be,
189         DB_TXN *txn,
190         const char      *dn,
191         ID *id )
192 {
193         int             rc;
194         DBT             key, data;
195         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
196         DB *db = bdb->bi_dn2id->bdi_db;
197
198         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id( \"%s\" )\n", dn, 0, 0 );
199
200         DBTzero( &key );
201         key.size = strlen( dn ) + 2;
202         key.data = ch_malloc( key.size );
203         ((char *)key.data)[0] = DN_BASE_PREFIX;
204         AC_MEMCPY( &((char *)key.data)[1], dn, key.size - 1 );
205
206         /* store the ID */
207         DBTzero( &data );
208         data.data = id;
209         data.ulen = sizeof(ID);
210         data.flags = DB_DBT_USERMEM;
211
212         /* fetch it */
213         rc = db->get( db, txn, &key, &data, bdb->bi_db_opflags );
214
215         if( rc != 0 ) {
216                 Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id: get failed: %s (%d)\n",
217                         db_strerror( rc ), rc, 0 );
218         } else {
219                 Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id: got id=0x%08lx\n",
220                         *id, 0, 0 );
221         }
222
223         ch_free( key.data );
224         return rc;
225 }
226
227 int
228 bdb_dn2id_matched(
229         BackendDB       *be,
230         DB_TXN *txn,
231         const char      *in,
232         ID *id,
233         char **matchedDN )
234 {
235         int             rc;
236         DBT             key, data;
237         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
238         DB *db = bdb->bi_dn2id->bdi_db;
239         const char *dn = in;
240         char *tmp = NULL;
241
242         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_matched( \"%s\" )\n", dn, 0, 0 );
243
244         DBTzero( &key );
245         key.size = strlen( dn ) + 2;
246         key.data = ch_malloc( key.size );
247         ((char *)key.data)[0] = DN_BASE_PREFIX;
248
249         /* store the ID */
250         DBTzero( &data );
251         data.data = id;
252         data.ulen = sizeof(ID);
253         data.flags = DB_DBT_USERMEM;
254
255         *matchedDN = NULL;
256
257         while(1) {
258                 AC_MEMCPY( &((char *)key.data)[1], dn, key.size - 1 );
259
260                 *id = NOID;
261
262                 /* fetch it */
263                 rc = db->get( db, txn, &key, &data, bdb->bi_db_opflags );
264
265                 if( rc == DB_NOTFOUND ) {
266                         char *pdn = dn_parent( be, dn );
267                         ch_free( tmp );
268                         tmp = NULL;
269
270                         if( pdn == NULL || *pdn == '\0' ) {
271                                 Debug( LDAP_DEBUG_TRACE,
272                                         "<= bdb_dn2id_matched: no match\n",
273                                         0, 0, 0 );
274                                 ch_free( pdn );
275                                 break;
276                         }
277
278                         dn = pdn;
279                         tmp = pdn;
280                         key.size = strlen( dn ) + 2;
281
282                 } else if ( rc == 0 ) {
283                         if( data.size != sizeof( ID ) ) {
284                                 Debug( LDAP_DEBUG_ANY,
285                                         "<= bdb_dn2id_matched: get size mismatch: "
286                                         "expected %ld, got %ld\n",
287                                         (long) sizeof(ID), (long) data.size, 0 );
288                                 ch_free( tmp );
289                         }
290
291                         if( in != dn ) {
292                                 *matchedDN = (char *) dn;
293                         }
294
295                         Debug( LDAP_DEBUG_TRACE,
296                                 "<= bdb_dn2id_matched: id=0x%08lx: %s %s\n",
297                                 (long) *id, *matchedDN == NULL ? "entry" : "matched", dn );
298                         break;
299
300                 } else {
301                         Debug( LDAP_DEBUG_ANY,
302                                 "<= bdb_dn2id_matched: get failed: %s (%d)\n",
303                                 db_strerror(rc), rc, 0 );
304                         ch_free( tmp );
305                         break;
306                 }
307         }
308
309         ch_free( key.data );
310         return rc;
311 }
312
313 int
314 bdb_dn2id_children(
315         BackendDB       *be,
316         DB_TXN *txn,
317         const char *dn )
318 {
319         int             rc;
320         DBT             key, data;
321         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
322         DB *db = bdb->bi_dn2id->bdi_db;
323         ID              id;
324
325         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_children( %s )\n",
326                 dn, 0, 0 );
327
328         DBTzero( &key );
329         key.size = strlen( dn ) + 2;
330         key.data = ch_malloc( key.size );
331         ((char *)key.data)[0] = DN_ONE_PREFIX;
332         AC_MEMCPY( &((char *)key.data)[1], dn, key.size - 1 );
333
334         /* we actually could do a empty get... */
335         DBTzero( &data );
336         data.data = &id;
337         data.ulen = sizeof(id);
338         data.flags = DB_DBT_USERMEM;
339         data.doff = 0;
340         data.dlen = sizeof(id);
341
342         rc = db->get( db, txn, &key, &data, bdb->bi_db_opflags );
343
344         Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_children( %s ): %schildren (%d)\n",
345                 dn,
346                 rc == 0 ? "" : ( rc == DB_NOTFOUND ? "no " :
347                         db_strerror(rc) ), rc );
348
349         return rc;
350 }
351
352 int
353 bdb_dn2idl(
354         BackendDB       *be,
355         const char      *dn,
356         int prefix,
357         ID *ids )
358 {
359         int             rc;
360         DBT             key, data;
361         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
362         DB *db = bdb->bi_dn2id->bdi_db;
363
364         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2idl( \"%s\" )\n", dn, 0, 0 );
365
366         if (prefix == DN_SUBTREE_PREFIX && be_issuffix(be, dn))
367         {
368                 BDB_IDL_ALL(bdb, ids);
369                 return 0;
370         }
371
372         DBTzero( &key );
373         key.size = strlen( dn ) + 2;
374         key.data = ch_malloc( key.size );
375         ((char *)key.data)[0] = prefix;
376         AC_MEMCPY( &((char *)key.data)[1], dn, key.size - 1 );
377
378         rc = bdb_idl_fetch_key( be, db, NULL, &key, ids );
379
380         if( rc != 0 ) {
381                 Debug( LDAP_DEBUG_TRACE,
382                         "<= bdb_dn2idl: get failed: %s (%d)\n",
383                         db_strerror( rc ), rc, 0 );
384
385         } else {
386                 Debug( LDAP_DEBUG_TRACE,
387                         "<= bdb_dn2idl: id=%ld first=%ld last=%ld\n",
388                         (long) ids[0],
389                         (long) BDB_IDL_FIRST( ids ), (long) BDB_IDL_LAST( ids ) );
390         }
391
392         ch_free( key.data );
393         return rc;
394 }
395 #else   /* BDB_HIER */
396
397 /* Experimental management routines for a hierarchically structured backend.
398  *
399  * Unsupported! Use at your own risk!
400  *
401  * Instead of a dn2id database, we use an id2parent database. Each entry in
402  * this database is a struct diskNode, containing the ID of the node's parent
403  * and the RDN of the node.
404  */
405 typedef struct diskNode {
406         ID parent;
407         struct berval rdn;
408         struct berval nrdn;
409 } diskNode;
410
411 /* In bdb_db_open() we call bdb_build_tree() which reads the entire id2parent
412  * database into memory (into an AVL tree). Next we iterate through each node
413  * of this tree, connecting each child to its parent. The nodes in this AVL
414  * tree are a struct idNode. The immediate (Onelevel) children of a node are
415  * referenced in the i_kids AVL tree. With this arrangement, there is no need
416  * to maintain the DN_ONE_PREFIX or DN_SUBTREE_PREFIX database keys. Note that
417  * the DN of an entry is constructed by walking up the list of i_parent
418  * pointers, so no full DN is stored on disk anywhere. This makes modrdn
419  * extremely efficient, even when operating on a populated subtree.
420  *
421  * The idNode tree is searched directly from the root when performing id to
422  * entry lookups. The tree is traversed using the i_kids subtrees when
423  * performing dn to id lookups.
424  */
425 typedef struct idNode {
426         ID i_id;
427         struct idNode *i_parent;
428         diskNode *i_rdn;
429         Avlnode *i_kids;
430         ldap_pvt_thread_rdwr_t i_kids_rdwr;
431 } idNode;
432
433 /* strcopy is like strcpy except it returns a pointer to the trailing NUL of
434  * the result string. This allows fast construction of catenated strings
435  * without the overhead of strlen/strcat.
436  */
437 char *
438 bdb_strcopy(
439         char *a,
440         char *b
441 )
442 {
443         if (!a || !b)
444                 return a;
445         
446         while (*a++ = *b++) ;
447         return a-1;
448 }
449
450 /* The main AVL tree is sorted in ID order. The i_kids AVL trees are
451  * sorted in lexical order. These are the various helper routines used
452  * for the searches and sorts.
453  */
454 static int
455 node_find_cmp(
456         ID id,
457         idNode *n
458 )
459 {
460         return id - n->i_id;
461 }
462
463 static int
464 node_frdn_cmp(
465         char *nrdn,
466         idNode *n
467 )
468 {
469         return strcmp(nrdn, n->i_rdn->nrdn.bv_val);
470 }
471
472 static int
473 node_add_cmp(
474         idNode *a,
475         idNode *b
476 )
477 {
478         return a->i_id - b->i_id;
479 }
480
481 static int
482 node_rdn_cmp(
483         idNode *a,
484         idNode *b
485 )
486 {
487         return strcmp(a->i_rdn->nrdn.bv_val, b->i_rdn->nrdn.bv_val);
488 }
489
490 idNode * bdb_find_id_node(
491         ID id,
492         Avlnode *tree
493 )
494 {
495         return avl_find(tree, (const void *)id, (AVL_CMP)node_find_cmp);
496 }
497
498 idNode * bdb_find_rdn_node(
499         char *nrdn,
500         Avlnode *tree
501 )
502 {
503         return avl_find(tree, (const void *)nrdn, (AVL_CMP)node_frdn_cmp);
504 }
505
506 /* This function links a node into its parent's i_kids tree. */
507 int bdb_insert_kid(
508         idNode *a,
509         Avlnode *tree
510 )
511 {
512         int rc;
513
514         if (a->i_rdn->parent == 0)
515                 return 0;
516         a->i_parent = bdb_find_id_node(a->i_rdn->parent, tree);
517         if (!a->i_parent)
518                 return -1;
519         ldap_pvt_thread_rdwr_wlock(&a->i_parent->i_kids_rdwr);
520         rc = avl_insert( &a->i_parent->i_kids, (caddr_t) a,
521                 (AVL_CMP)node_rdn_cmp, (AVL_DUP) avl_dup_error );
522         ldap_pvt_thread_rdwr_wunlock(&a->i_parent->i_kids_rdwr);
523         return rc;
524 }
525
526 /* This function adds a node into the main AVL tree */
527 idNode *bdb_add_node(
528         ID id,
529         char *d,
530         struct bdb_info *bdb
531 )
532 {
533         idNode *node;
534
535         node = (idNode *)ch_malloc(sizeof(idNode));
536         node->i_id = id;
537         node->i_parent = NULL;
538         node->i_kids = NULL;
539         node->i_rdn = (diskNode *)d;
540         node->i_rdn->rdn.bv_val += (long)d;
541         node->i_rdn->nrdn.bv_val += (long)d;
542         ldap_pvt_thread_rdwr_init(&node->i_kids_rdwr);
543         avl_insert( &bdb->bi_tree, (caddr_t) node,
544                         (AVL_CMP)node_add_cmp, (AVL_DUP) avl_dup_error );
545         if (id == 1)
546                 bdb->bi_troot = node;
547         return node;
548 }
549
550 /* This function initializes the trees at startup time. */
551 int bdb_build_tree(
552         Backend *be
553 )
554 {
555         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
556         int i, rc;
557         DBC *cursor;
558         DBT key, data;
559         ID id;
560         idNode *node;
561         char **rdns;
562
563         bdb->bi_tree = NULL;
564
565         rc = bdb->bi_id2parent->bdi_db->cursor(
566                 bdb->bi_id2parent->bdi_db, NULL, &cursor,
567                 bdb->bi_db_opflags );
568         if( rc != 0 ) {
569                 return NOID;
570         }
571
572         /* When be_suffix is turned into struct berval or LDAPDN
573          * life will get a lot easier... Since no DNs live on disk, we
574          * need to operate on the be_suffix to fully qualify our DNs.
575          * We need to know how many components are in the suffix DN,
576          * so we can tell where the suffix ends and our nodes begin.
577          *
578          * Note that this code always uses be_suffix[0], so defining
579          * multiple suffixes for a single backend won't work!
580          */
581         bdb->bi_sufflen = strlen(be->be_suffix[0]);
582
583         rdns = ldap_explode_dn(be->be_nsuffix[0]->bv_val, 0);
584         for (i=0; rdns[i]; i++);
585         bdb->bi_nrdns = i;
586         charray_free(rdns);
587
588         DBTzero( &key );
589         DBTzero( &data );
590         key.data = (char *)&id;
591         key.ulen = sizeof( id );
592         key.flags = DB_DBT_USERMEM;
593         data.flags = DB_DBT_MALLOC;
594
595         while (cursor->c_get( cursor, &key, &data, DB_NEXT ) == 0) {
596                 bdb_add_node( id, data.data, bdb );
597         }
598         cursor->c_close( cursor );
599
600         rc = avl_apply(bdb->bi_tree, (AVL_APPLY)bdb_insert_kid, bdb->bi_tree,
601                 -1, AVL_INORDER );
602
603         return rc;
604 }
605
606 /* This function constructs a full DN for a given id. We really should
607  * be passing idNodes directly, to save some effort...
608  */
609 int bdb_fix_dn(
610         BackendDB *be,
611         ID id,
612         Entry *e
613 )
614 {
615         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
616         idNode *n, *o;
617         int rlen, nrlen;
618         char *ptr, *nptr;
619         
620         ldap_pvt_thread_rdwr_rlock(&bdb->bi_tree_rdwr);
621         o = bdb_find_id_node(id, bdb->bi_tree);
622         rlen = bdb->bi_sufflen + 1;
623         nrlen = be->be_nsuffix[0]->bv_len + 1;
624         for (n = o; n; n=n->i_parent) {
625                 rlen += n->i_rdn->rdn.bv_len + 1;
626                 nrlen += n->i_rdn->nrdn.bv_len + 1;
627         }
628         e->e_dn = ch_malloc(rlen + nrlen);
629         e->e_ndn = e->e_dn + rlen;
630         ptr = e->e_dn;
631         nptr = e->e_ndn;
632         for (n = o; n; n=n->i_parent) {
633                 ptr = bdb_strcopy(ptr, n->i_rdn->rdn.bv_val);
634                 *ptr++ = ',';
635                 nptr = bdb_strcopy(nptr, n->i_rdn->nrdn.bv_val);
636                 *nptr++ = ',';
637         }
638         ldap_pvt_thread_rdwr_runlock(&bdb->bi_tree_rdwr);
639
640         ptr--;
641         nptr--;
642         strcpy(ptr, be->be_suffix[0]);
643         strcpy(nptr, be->be_nsuffix[0]->bv_val);
644
645         return 0;
646 }
647
648 int
649 bdb_dn2id_add(
650         BackendDB       *be,
651         DB_TXN *txn,
652         const char      *pdn,
653         Entry           *e )
654 {
655         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
656         int             rc, rlen, nrlen;
657         DBT             key, data;
658         DB *db = bdb->bi_id2parent->bdi_db;
659         char            *nrdn = dn_rdn( be, e->e_ndn );
660         char            *rdn;
661         diskNode *d;
662         idNode *n;
663
664         if (nrdn == NULL) {
665                 nrdn = "";
666                 rdn = "";
667         } else {
668                 rdn = dn_rdn( be, e->e_dn );
669         }
670
671         nrlen = strlen(nrdn);
672         rlen = strlen(rdn);
673         d = ch_malloc(sizeof(diskNode) + rlen + nrlen + 2);
674         d->rdn.bv_len = rlen;
675         d->nrdn.bv_len = nrlen;
676         d->rdn.bv_val = (char *)(d+1);
677         d->nrdn.bv_val = bdb_strcopy(d->rdn.bv_val, rdn) + 1;
678         strcpy(d->nrdn.bv_val, nrdn);
679         d->rdn.bv_val -= (long)d;
680         d->nrdn.bv_val -= (long)d;
681
682         if (nrdn[0]) free(nrdn);
683         if (rdn[0]) free(rdn);
684
685         if (pdn) {
686                 bdb_dn2id(be, txn, pdn, &d->parent);
687         } else {
688                 d->parent = 0;
689         }
690
691         DBTzero(&key);
692         DBTzero(&data);
693         key.data = &e->e_id;
694         key.size = sizeof(ID);
695         key.flags = DB_DBT_USERMEM;
696
697         data.data = d;
698         data.size = sizeof(diskNode) + rlen + nrlen + 2;
699         data.flags = DB_DBT_USERMEM;
700
701         rc = db->put( db, txn, &key, &data, DB_NOOVERWRITE );
702
703         if (rc == 0) {
704                 ldap_pvt_thread_rdwr_wlock(&bdb->bi_tree_rdwr);
705                 n = bdb_add_node( e->e_id, data.data, bdb);
706                 ldap_pvt_thread_rdwr_wunlock(&bdb->bi_tree_rdwr);
707
708                 if (d->parent) {
709                         ldap_pvt_thread_rdwr_rlock(&bdb->bi_tree_rdwr);
710                         bdb_insert_kid(n, bdb->bi_tree);
711                         ldap_pvt_thread_rdwr_runlock(&bdb->bi_tree_rdwr);
712                 }
713         } else {
714                 free(d);
715         }
716         return rc;
717 }
718
719 int
720 bdb_dn2id_delete(
721         BackendDB       *be,
722         DB_TXN *txn,
723         const char      *pdn,
724         const char      *dn,
725         ID              id )
726 {
727         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
728         int rc;
729         DBT             key;
730         DB *db = bdb->bi_id2parent->bdi_db;
731         idNode *n;
732
733         DBTzero(&key);
734         key.size = sizeof(id);
735         key.data = &id;
736
737         rc = db->del( db, txn, &key, 0);
738
739         ldap_pvt_thread_rdwr_wlock(&bdb->bi_tree_rdwr);
740         n = avl_delete(&bdb->bi_tree, (void *)id, (AVL_CMP)node_find_cmp);
741         if (n) {
742                 if (n->i_parent) {
743                         ldap_pvt_thread_rdwr_wlock(&n->i_parent->i_kids_rdwr);
744                         avl_delete(&n->i_parent->i_kids, n->i_rdn->nrdn.bv_val,
745                                 (AVL_CMP)node_frdn_cmp);
746                         ldap_pvt_thread_rdwr_wunlock(&n->i_parent->i_kids_rdwr);
747                 }
748                 free(n->i_rdn);
749                 ldap_pvt_thread_rdwr_destroy(&n->i_kids_rdwr);
750                 free(n);
751         }
752         if (id == 1)
753                 bdb->bi_troot = NULL;
754         ldap_pvt_thread_rdwr_wunlock(&bdb->bi_tree_rdwr);
755
756         return rc;
757 }
758
759 int
760 bdb_dn2id_matched(
761         BackendDB       *be,
762         DB_TXN *txn,
763         const char      *in,
764         ID *id,
765         char **matchedDN )
766 {
767         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
768         int             i;
769         char            **rdns;
770         idNode *n, *p;
771
772         if (!bdb->bi_troot)
773                 return DB_NOTFOUND;
774
775         p = bdb->bi_troot;
776         if (be_issuffix(be, in)) {
777                 *id = p->i_id;
778                 return 0;
779         }
780
781         rdns = ldap_explode_dn(in, 0);
782         for (i=0; rdns[i]; i++);
783         i -= bdb->bi_nrdns;
784         if (i < 0)
785                 return -1;
786         n = p;
787         ldap_pvt_thread_rdwr_rlock(&bdb->bi_tree_rdwr);
788         for (--i; i>=0; i--) {
789                 ldap_pvt_thread_rdwr_rlock(&p->i_kids_rdwr);
790                 n = bdb_find_rdn_node(rdns[i], p->i_kids);
791                 ldap_pvt_thread_rdwr_runlock(&p->i_kids_rdwr);
792                 if (!n) break;
793                 p = n;
794         }
795         ldap_pvt_thread_rdwr_runlock(&bdb->bi_tree_rdwr);
796
797         if (n) {
798                 *id = n->i_id;
799         } else if (matchedDN) {
800                 int len = 0, j;
801                 char *ptr;
802                 ++i;
803                 for (j=i; rdns[j]; j++)
804                         len += strlen(rdns[j]) + 1;
805                 ptr = ch_malloc(len);
806                 *matchedDN = ptr;
807                 for (;rdns[i]; i++) {
808                         ptr = bdb_strcopy(ptr, rdns[i]);
809                         *ptr++ = ',';
810                 }
811                 ptr[-1] = '\0';
812         }
813         return n ? 0 : DB_NOTFOUND;
814 }
815
816 int
817 bdb_dn2id(
818         BackendDB       *be,
819         DB_TXN *txn,
820         const char      *dn,
821         ID *id )
822 {
823         return bdb_dn2id_matched(be, txn, dn, id, NULL);
824 }
825
826 int
827 bdb_dn2id_children(
828         BackendDB       *be,
829         DB_TXN *txn,
830         const char *dn )
831 {
832         int             rc;
833         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
834         ID              id;
835         idNode *n;
836
837         rc = bdb_dn2id(be, txn, dn, &id);
838         if (rc != 0)
839                 return rc;
840
841         ldap_pvt_thread_rdwr_rlock(&bdb->bi_tree_rdwr);
842         n = bdb_find_id_node(id, bdb->bi_tree);
843         ldap_pvt_thread_rdwr_runlock(&bdb->bi_tree_rdwr);
844
845         if (!n->i_kids)
846                 return DB_NOTFOUND;
847         else
848                 return 0;
849 }
850
851 /* Since we don't store IDLs for onelevel or subtree, we have to construct
852  * them on the fly... Perhaps the i_kids tree ought to just be an IDL?
853  */
854 static int
855 insert_one(
856         idNode *n,
857         ID *ids
858 )
859 {
860         return bdb_idl_insert(ids, n->i_id);
861 }
862
863 static int
864 insert_sub(
865         idNode *n,
866         ID *ids
867 )
868 {
869         int rc;
870
871         rc = bdb_idl_insert(ids, n->i_id);
872         if (rc == 0) {
873                 ldap_pvt_thread_rdwr_rlock(&n->i_kids_rdwr);
874                 rc = avl_apply(n->i_kids, (AVL_APPLY)insert_sub, ids, -1,
875                         AVL_INORDER);
876                 ldap_pvt_thread_rdwr_runlock(&n->i_kids_rdwr);
877         }
878         return rc;
879 }
880
881 int
882 bdb_dn2idl(
883         BackendDB       *be,
884         const char      *dn,
885         int prefix,
886         ID *ids )
887 {
888         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
889         int             rc;
890         ID              id;
891         idNode          *n;
892
893         if (prefix == DN_SUBTREE_PREFIX && be_issuffix(be, dn)) {
894                 BDB_IDL_ALL(bdb, ids);
895                 return 0;
896         }
897
898         rc = bdb_dn2id(be, NULL, dn, &id);
899         if (rc) return rc;
900
901         ldap_pvt_thread_rdwr_rlock(&bdb->bi_tree_rdwr);
902         n = bdb_find_id_node(id, bdb->bi_tree);
903         ldap_pvt_thread_rdwr_runlock(&bdb->bi_tree_rdwr);
904
905         ids[0] = 0;
906         ldap_pvt_thread_rdwr_rlock(&n->i_kids_rdwr);
907         if (prefix == DN_ONE_PREFIX) {
908                 rc = avl_apply(n->i_kids, (AVL_APPLY)insert_one, ids, -1,
909                         AVL_INORDER);
910         } else {
911                 rc = avl_apply(n->i_kids, (AVL_APPLY)insert_sub, ids, -1,
912                         AVL_INORDER);
913         }
914         ldap_pvt_thread_rdwr_runlock(&n->i_kids_rdwr);
915         return rc;
916 }
917 #endif  /* BDB_HIER */