]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/dn2id.c
Function renaming, make internal funcs static, etc.
[openldap] / servers / slapd / back-bdb / dn2id.c
1 /* dn2id.c - routines to deal with the dn2id index */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11 #include <ac/string.h>
12
13 #include "back-bdb.h"
14 #include "idl.h"
15 #include "lutil.h"
16
17 #ifndef BDB_HIER
18 int
19 bdb_dn2id_add(
20         BackendDB       *be,
21         DB_TXN *txn,
22         EntryInfo *eip,
23         Entry           *e,
24         void *ctx )
25 {
26         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
27         DB *db = bdb->bi_dn2id->bdi_db;
28         int             rc;
29         DBT             key, data;
30         char            *buf;
31         struct berval   ptr, pdn;
32
33 #ifdef NEW_LOGGING
34         LDAP_LOG ( INDEX, ARGS, "bdb_dn2id_add( \"%s\", 0x%08lx )\n",
35                 e->e_ndn, (long) e->e_id, 0 );
36 #else
37         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_add( \"%s\", 0x%08lx )\n",
38                 e->e_ndn, (long) e->e_id, 0 );
39 #endif
40         assert( e->e_id != NOID );
41
42         DBTzero( &key );
43         key.size = e->e_nname.bv_len + 2;
44         key.ulen = key.size;
45         key.flags = DB_DBT_USERMEM;
46         buf = sl_malloc( key.size, ctx );
47         key.data = buf;
48         buf[0] = DN_BASE_PREFIX;
49         ptr.bv_val = buf + 1;
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';
53
54         DBTzero( &data );
55         data.data = (char *) &e->e_id;
56         data.size = sizeof( e->e_id );
57
58         /* store it -- don't override */
59         rc = db->put( db, txn, &key, &data, DB_NOOVERWRITE );
60         if( rc != 0 ) {
61 #ifdef NEW_LOGGING
62                 LDAP_LOG ( INDEX, ERR, "bdb_dn2id_add: put failed: %s %d\n",
63                         db_strerror(rc), rc, 0 );
64 #else
65                 Debug( LDAP_DEBUG_ANY, "=> bdb_dn2id_add: put failed: %s %d\n",
66                         db_strerror(rc), rc, 0 );
67 #endif
68                 goto done;
69         }
70
71 #ifndef BDB_MULTIPLE_SUFFIXES
72         if( !be_issuffix( be, &ptr )) {
73 #endif
74                 buf[0] = DN_SUBTREE_PREFIX;
75                 rc = db->put( db, txn, &key, &data, DB_NOOVERWRITE );
76                 if( rc != 0 ) {
77 #ifdef NEW_LOGGING
78                         LDAP_LOG ( INDEX, ERR, 
79                                 "=> bdb_dn2id_add: subtree (%s) put failed: %d\n",
80                                 ptr.bv_val, rc, 0 );
81 #else
82                         Debug( LDAP_DEBUG_ANY,
83                         "=> bdb_dn2id_add: subtree (%s) put failed: %d\n",
84                         ptr.bv_val, rc, 0 );
85 #endif
86                         goto done;
87                 }
88                 
89 #ifdef BDB_MULTIPLE_SUFFIXES
90         if( !be_issuffix( be, &ptr )) {
91 #endif
92                 dnParent( &ptr, &pdn );
93         
94                 key.size = pdn.bv_len + 2;
95                 key.ulen = key.size;
96                 pdn.bv_val[-1] = DN_ONE_PREFIX;
97                 key.data = pdn.bv_val-1;
98                 ptr = pdn;
99
100                 rc = bdb_idl_insert_key( be, db, txn, &key, e->e_id );
101
102                 if( rc != 0 ) {
103 #ifdef NEW_LOGGING
104                         LDAP_LOG ( INDEX, ERR, 
105                                 "=> bdb_dn2id_add: parent (%s) insert failed: %d\n",
106                                 ptr.bv_val, rc, 0 );
107 #else
108                         Debug( LDAP_DEBUG_ANY,
109                                 "=> bdb_dn2id_add: parent (%s) insert failed: %d\n",
110                                         ptr.bv_val, rc, 0 );
111 #endif
112                         goto done;
113                 }
114 #ifndef BDB_MULTIPLE_SUFFIXES
115         }
116
117         while( !be_issuffix( be, &ptr )) {
118 #else
119         for (;;) {
120 #endif
121                 ptr.bv_val[-1] = DN_SUBTREE_PREFIX;
122
123                 rc = bdb_idl_insert_key( be, db, txn, &key, e->e_id );
124
125                 if( rc != 0 ) {
126 #ifdef NEW_LOGGING
127                         LDAP_LOG ( INDEX, ERR, 
128                                 "=> bdb_dn2id_add: subtree (%s) insert failed: %d\n",
129                                 ptr.bv_val, rc, 0 );
130 #else
131                         Debug( LDAP_DEBUG_ANY,
132                                 "=> bdb_dn2id_add: subtree (%s) insert failed: %d\n",
133                                         ptr.bv_val, rc, 0 );
134 #endif
135                         break;
136                 }
137 #ifdef BDB_MULTIPLE_SUFFIXES
138                 if( be_issuffix( be, &ptr )) break;
139 #endif
140                 dnParent( &ptr, &pdn );
141
142                 key.size = pdn.bv_len + 2;
143                 key.ulen = key.size;
144                 key.data = pdn.bv_val - 1;
145                 ptr = pdn;
146         }
147 #ifdef BDB_MULTIPLE_SUFFIXES
148         }
149 #endif
150
151 done:
152         sl_free( buf, ctx );
153 #ifdef NEW_LOGGING
154         LDAP_LOG ( INDEX, RESULTS, "<= bdb_dn2id_add: %d\n", rc, 0, 0 );
155 #else
156         Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_add: %d\n", rc, 0, 0 );
157 #endif
158         return rc;
159 }
160
161 int
162 bdb_dn2id_delete(
163         BackendDB       *be,
164         DB_TXN *txn,
165         EntryInfo       *eip,
166         Entry           *e,
167         void *ctx )
168 {
169         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
170         DB *db = bdb->bi_dn2id->bdi_db;
171         int             rc;
172         DBT             key;
173         char            *buf;
174         struct berval   pdn, ptr;
175
176 #ifdef NEW_LOGGING
177         LDAP_LOG ( INDEX, ARGS, 
178                 "=> bdb_dn2id_delete ( \"%s\", 0x%08lx )\n", e->e_ndn, e->e_id, 0);
179 #else
180         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_delete( \"%s\", 0x%08lx )\n",
181                 e->e_ndn, e->e_id, 0 );
182 #endif
183
184         DBTzero( &key );
185         key.size = e->e_nname.bv_len + 2;
186         buf = sl_malloc( key.size, ctx );
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         /* delete it */
196         rc = db->del( db, txn, &key, 0 );
197         if( rc != 0 ) {
198 #ifdef NEW_LOGGING
199                 LDAP_LOG ( INDEX, ERR, 
200                         "=> bdb_dn2id_delete: delete failed: %s %d\n", 
201                         db_strerror(rc), rc, 0 );
202 #else
203                 Debug( LDAP_DEBUG_ANY, "=> bdb_dn2id_delete: delete failed: %s %d\n",
204                         db_strerror(rc), rc, 0 );
205 #endif
206                 goto done;
207         }
208
209 #ifndef BDB_MULTIPLE_SUFFIXES
210         if( !be_issuffix( be, &ptr )) {
211 #endif
212                 buf[0] = DN_SUBTREE_PREFIX;
213                 rc = db->del( db, txn, &key, 0 );
214                 if( rc != 0 ) {
215 #ifdef NEW_LOGGING
216                         LDAP_LOG ( INDEX, ERR, 
217                                 "=> bdb_dn2id_delete: subtree (%s) delete failed: %d\n", 
218                                 ptr.bv_val, rc, 0 );
219 #else
220                         Debug( LDAP_DEBUG_ANY,
221                         "=> bdb_dn2id_delete: subtree (%s) delete failed: %d\n",
222                         ptr.bv_val, rc, 0 );
223 #endif
224                         goto done;
225                 }
226
227 #ifdef BDB_MULTIPLE_SUFFIXES
228         if( !be_issuffix( be, &ptr )) {
229 #endif
230                 dnParent( &ptr, &pdn );
231
232                 key.size = pdn.bv_len + 2;
233                 key.ulen = key.size;
234                 pdn.bv_val[-1] = DN_ONE_PREFIX;
235                 key.data = pdn.bv_val - 1;
236                 ptr = pdn;
237
238                 rc = bdb_idl_delete_key( be, db, txn, &key, e->e_id );
239
240                 if( rc != 0 ) {
241 #ifdef NEW_LOGGING
242                         LDAP_LOG ( INDEX, ERR, 
243                                 "=> bdb_dn2id_delete: parent (%s) delete failed: %d\n", 
244                                 ptr.bv_val, rc, 0 );
245 #else
246                         Debug( LDAP_DEBUG_ANY,
247                                 "=> bdb_dn2id_delete: parent (%s) delete failed: %d\n",
248                                 ptr.bv_val, rc, 0 );
249 #endif
250                         goto done;
251                 }
252 #ifndef BDB_MULTIPLE_SUFFIXES
253         }
254
255         while( !be_issuffix( be, &ptr )) {
256 #else
257         for (;;) {
258 #endif
259                 ptr.bv_val[-1] = DN_SUBTREE_PREFIX;
260
261                 rc = bdb_idl_delete_key( be, db, txn, &key, e->e_id );
262                 if( rc != 0 ) {
263 #ifdef NEW_LOGGING
264                         LDAP_LOG ( INDEX, ERR, 
265                                 "=> bdb_dn2id_delete: subtree (%s) delete failed: %d\n", 
266                                 ptr.bv_val, rc, 0 );
267 #else
268                         Debug( LDAP_DEBUG_ANY,
269                                 "=> bdb_dn2id_delete: subtree (%s) delete failed: %d\n",
270                                 ptr.bv_val, rc, 0 );
271 #endif
272                         goto done;
273                 }
274 #ifdef BDB_MULTIPLE_SUFFIXES
275                 if( be_issuffix( be, &ptr )) break;
276 #endif
277                 dnParent( &ptr, &pdn );
278
279                 key.size = pdn.bv_len + 2;
280                 key.ulen = key.size;
281                 key.data = pdn.bv_val - 1;
282                 ptr = pdn;
283         }
284 #ifdef BDB_MULTIPLE_SUFFIXES
285         }
286 #endif
287
288 done:
289         sl_free( buf, ctx );
290 #ifdef NEW_LOGGING
291         LDAP_LOG ( INDEX, RESULTS, "<= bdb_dn2id_delete %d\n", rc, 0, 0 );
292 #else
293         Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_delete %d\n", rc, 0, 0 );
294 #endif
295         return rc;
296 }
297
298 int
299 bdb_dn2id(
300         BackendDB       *be,
301         DB_TXN *txn,
302         struct berval   *dn,
303         EntryInfo *ei,
304         void *ctx )
305 {
306         int             rc;
307         DBT             key, data;
308         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
309         DB *db = bdb->bi_dn2id->bdi_db;
310
311 #ifdef NEW_LOGGING
312         LDAP_LOG ( INDEX, ARGS, "=> bdb_dn2id( \"%s\" )\n", dn->bv_val, 0, 0 );
313 #else
314         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id( \"%s\" )\n", dn->bv_val, 0, 0 );
315 #endif
316         DBTzero( &key );
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 );
321
322         /* store the ID */
323         DBTzero( &data );
324         data.data = &ei->bei_id;
325         data.ulen = sizeof(ID);
326         data.flags = DB_DBT_USERMEM;
327
328         /* fetch it */
329         rc = db->get( db, txn, &key, &data, bdb->bi_db_opflags );
330
331         if( rc != 0 ) {
332 #ifdef NEW_LOGGING
333                 LDAP_LOG ( INDEX, ERR, "<= bdb_dn2id: get failed %s (%d)\n", 
334                         db_strerror(rc), rc, 0 );
335 #else
336                 Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id: get failed: %s (%d)\n",
337                         db_strerror( rc ), rc, 0 );
338 #endif
339         } else {
340 #ifdef NEW_LOGGING
341                 LDAP_LOG ( INDEX, RESULTS, 
342                         "<= bdb_dn2id: got id=0x%08lx\n", ei->bei_id, 0, 0 );
343 #else
344                 Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id: got id=0x%08lx\n",
345                         ei->bei_id, 0, 0 );
346 #endif
347         }
348
349         sl_free( key.data, ctx );
350         return rc;
351 }
352
353 int
354 bdb_dn2id_children(
355         Operation *op,
356         DB_TXN *txn,
357         Entry *e )
358 {
359         DBT             key, data;
360         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
361         DB *db = bdb->bi_dn2id->bdi_db;
362         ID              id;
363         int             rc;
364
365 #ifdef NEW_LOGGING
366         LDAP_LOG ( INDEX, ARGS, 
367                 "=> bdb_dn2id_children( %s )\n", e->e_nname.bv_val, 0, 0 );
368 #else
369         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2id_children( %s )\n",
370                 e->e_nname.bv_val, 0, 0 );
371 #endif
372         DBTzero( &key );
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 );
377
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 );
383                         return rc;
384                 }
385         }
386 #endif
387         /* we actually could do a empty get... */
388         DBTzero( &data );
389         data.data = &id;
390         data.ulen = sizeof(id);
391         data.flags = DB_DBT_USERMEM;
392         data.doff = 0;
393         data.dlen = sizeof(id);
394
395         rc = db->get( db, txn, &key, &data, bdb->bi_db_opflags );
396         sl_free( key.data, op->o_tmpmemctx );
397
398 #ifdef NEW_LOGGING
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 );
403 #else
404         Debug( LDAP_DEBUG_TRACE, "<= bdb_dn2id_children( %s ): %s (%d)\n",
405                 e->e_nname.bv_val,
406                 rc == 0 ? "" : ( rc == DB_NOTFOUND ? "no " :
407                         db_strerror(rc) ), rc );
408 #endif
409
410         return rc;
411 }
412
413 int
414 bdb_dn2idl(
415         BackendDB       *be,
416         struct berval   *dn,
417         int prefix,
418         ID *ids,
419         ID *stack,
420         void *ctx )
421 {
422         int             rc;
423         DBT             key;
424         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
425         DB *db = bdb->bi_dn2id->bdi_db;
426
427 #ifdef NEW_LOGGING
428         LDAP_LOG ( INDEX, ARGS, 
429                 "=> bdb_dn2ididl( \"%s\" )\n", dn->bv_val, 0, 0 );
430 #else
431         Debug( LDAP_DEBUG_TRACE, "=> bdb_dn2idl( \"%s\" )\n", dn->bv_val, 0, 0 );
432 #endif
433
434 #ifndef BDB_MULTIPLE_SUFFIXES
435         if (prefix == DN_SUBTREE_PREFIX && be_issuffix(be, dn))
436         {
437                 BDB_IDL_ALL(bdb, ids);
438                 return 0;
439         }
440 #endif
441
442         DBTzero( &key );
443         key.size = dn->bv_len + 2;
444         key.ulen = key.size;
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 );
449
450         rc = bdb_idl_fetch_key( be, db, NULL, &key, ids );
451
452         if( rc != 0 ) {
453 #ifdef NEW_LOGGING
454                 LDAP_LOG ( INDEX, ERR, 
455                         "<= bdb_dn2ididl: get failed: %s (%d)\n", db_strerror(rc), rc, 0 );
456 #else
457                 Debug( LDAP_DEBUG_TRACE,
458                         "<= bdb_dn2idl: get failed: %s (%d)\n",
459                         db_strerror( rc ), rc, 0 );
460 #endif
461
462         } else {
463 #ifdef NEW_LOGGING
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 ) );
468 #else
469                 Debug( LDAP_DEBUG_TRACE,
470                         "<= bdb_dn2idl: id=%ld first=%ld last=%ld\n",
471                         (long) ids[0],
472                         (long) BDB_IDL_FIRST( ids ), (long) BDB_IDL_LAST( ids ) );
473 #endif
474         }
475
476         sl_free( key.data, ctx );
477         return rc;
478 }
479 #else   /* BDB_HIER */
480
481 /* Experimental management routines for a hierarchically structured database.
482  *
483  * Unsupported! Use at your own risk!
484  * -- Howard Chu, Symas Corp. 2003.
485  *
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.
494  *
495  * The diskNode is a variable length structure. This definition is not
496  * directly usable for in-memory manipulation.
497  */
498 typedef struct diskNode {
499         ID entryID;
500         short nrdnlen;
501         char nrdn[1];
502         char rdn[1];
503 } diskNode;
504
505 /* Sort function for the sorted duplicate data items of a dn2id key.
506  * Sorts based on normalized RDN, in lexical order.
507  */
508 int
509 bdb_dup_compare(
510         DB *db, 
511         const DBT *usrkey,
512         const DBT *curkey
513 )
514 {
515         diskNode *usr = usrkey->data;
516         diskNode *cur = curkey->data;
517         short curlen, usrlen;
518         char *ptr;
519         unsigned char *pt2;
520         int rc;
521
522         /* Make sure to detect negative values in the nrdnlen */
523         ptr = (char *)&usr->nrdnlen;
524         pt2 = (unsigned char *)(ptr+1);
525
526         usrlen = ptr[0] << 8 | *pt2;
527
528         ptr = (char *)&cur->nrdnlen;
529         pt2 = (unsigned char *)(ptr+1);
530
531         curlen = ptr[0] << 8 | *pt2;
532
533         if ( usrlen < 0 ) {
534                 if ( curlen < 0 ) return 0;
535                 return -1;
536         }
537
538         if ( curlen < 0 ) return 1;
539
540         rc = strncmp( usr->nrdn, cur->nrdn, usrlen );
541         if ( rc == 0 ) rc = usrlen - curlen;
542         return rc;
543 }
544
545 /* This function constructs a full DN for a given entry.
546  */
547 int bdb_fix_dn(
548         Entry *e
549 )
550 {
551         EntryInfo *ei;
552         int rlen = 0, nrlen = 0;
553         char *ptr, *nptr;
554         
555         for ( ei = BEI(e); ei && ei->bei_id; ei=ei->bei_parent ) {
556                 rlen += ei->bei_rdn.bv_len + 1;
557                 nrlen += ei->bei_nrdn.bv_len + 1;
558         }
559         e->e_name.bv_len = rlen - 1;
560         e->e_nname.bv_len = nrlen - 1;
561         e->e_name.bv_val = ch_malloc(rlen + nrlen);
562         e->e_nname.bv_val = e->e_name.bv_val + rlen;
563         ptr = e->e_name.bv_val;
564         nptr = e->e_nname.bv_val;
565         for ( ei = BEI(e); ei && ei->bei_id; ei=ei->bei_parent ) {
566                 ptr = lutil_strcopy(ptr, ei->bei_rdn.bv_val);
567                 nptr = lutil_strcopy(nptr, ei->bei_nrdn.bv_val);
568                 if ( ei->bei_parent ) {
569                         *ptr++ = ',';
570                         *nptr++ = ',';
571                 }
572         }
573         ptr[-1] = '\0';
574         nptr[-1] = '\0';
575
576         return 0;
577 }
578
579 /* We add two elements to the DN2ID database - a data item under the parent's
580  * entryID containing the child's RDN and entryID, and an item under the
581  * child's entryID containing the parent's entryID.
582  */
583 int
584 bdb_dn2id_add(
585         BackendDB       *be,
586         DB_TXN *txn,
587         EntryInfo       *eip,
588         Entry           *e,
589         void *ctx )
590 {
591         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
592         DB *db = bdb->bi_dn2id->bdi_db;
593         DBT             key, data;
594         int             rc, rlen, nrlen;
595         diskNode *d;
596         char *ptr;
597
598         nrlen = dn_rdnlen( be, &e->e_nname );
599         if (nrlen) {
600                 rlen = dn_rdnlen( be, &e->e_name );
601         } else {
602                 nrlen = e->e_nname.bv_len;
603                 rlen = e->e_name.bv_len;
604         }
605
606         d = sl_malloc(sizeof(diskNode) + rlen + nrlen, ctx);
607         d->entryID = e->e_id;
608         d->nrdnlen = nrlen;
609         ptr = lutil_strncopy( d->nrdn, e->e_nname.bv_val, nrlen );
610         *ptr++ = '\0';
611         ptr = lutil_strncopy( ptr, e->e_name.bv_val, rlen );
612         *ptr = '\0';
613
614         DBTzero(&key);
615         DBTzero(&data);
616         key.data = &eip->bei_id;
617         key.size = sizeof(ID);
618         key.flags = DB_DBT_USERMEM;
619
620 #ifdef SLAP_IDL_CACHE
621         if ( bdb->bi_idl_cache_size ) {
622                 bdb_idl_cache_del( bdb, db, &key );
623         }
624 #endif
625         data.data = d;
626         data.size = sizeof(diskNode) + rlen + nrlen;
627         data.flags = DB_DBT_USERMEM;
628
629         rc = db->put( db, txn, &key, &data, DB_NODUPDATA );
630
631         if (rc == 0) {
632                 key.data = &e->e_id;
633                 d->entryID = eip->bei_id;
634                 d->nrdnlen = 0 - nrlen;
635
636                 rc = db->put( db, txn, &key, &data, DB_NODUPDATA );
637         }
638
639         sl_free( d, ctx );
640
641         return rc;
642 }
643
644 int
645 bdb_dn2id_delete(
646         BackendDB       *be,
647         DB_TXN *txn,
648         EntryInfo       *eip,
649         Entry   *e,
650         void    *ctx )
651 {
652         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
653         DB *db = bdb->bi_dn2id->bdi_db;
654         DBT             key, data;
655         DBC     *cursor;
656         diskNode *d;
657         int rc, nrlen;
658
659         DBTzero(&key);
660         key.size = sizeof(ID);
661         key.ulen = key.size;
662         key.data = &eip->bei_id;
663         key.flags = DB_DBT_USERMEM;
664
665         DBTzero(&data);
666         data.size = sizeof(diskNode) + BEI(e)->bei_nrdn.bv_len;
667         data.ulen = data.size;
668         data.dlen = data.size;
669         data.flags = DB_DBT_USERMEM | DB_DBT_PARTIAL;
670
671 #ifdef SLAP_IDL_CACHE
672         if ( bdb->bi_idl_cache_size ) {
673                 bdb_idl_cache_del( bdb, db, &key );
674         }
675 #endif
676         rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
677         if ( rc ) return rc;
678
679         d = sl_malloc( data.size, ctx );
680         d->entryID = e->e_id;
681         d->nrdnlen = BEI(e)->bei_nrdn.bv_len;
682         strcpy( d->nrdn, BEI(e)->bei_nrdn.bv_val );
683         data.data = d;
684
685         /* Delete our ID from the parent's list */
686         rc = cursor->c_get( cursor, &key, &data, DB_GET_BOTH | DB_RMW );
687         if ( rc == 0 )
688                 rc = cursor->c_del( cursor, 0 );
689
690         /* Delete our ID from the tree. With sorted duplicates, this
691          * will leave any child nodes still hanging around. This is OK
692          * for modrdn, which will add our info back in later.
693          */
694         if ( rc == 0 ) {
695                 key.data = &e->e_id;
696                 rc = cursor->c_get( cursor, &key, &data, DB_SET );
697                 if ( rc == 0 )
698                         rc = cursor->c_del( cursor, 0 );
699         }
700         cursor->c_close( cursor );
701         sl_free( d, ctx );
702
703         return rc;
704 }
705
706 int
707 bdb_dn2id(
708         BackendDB       *be,
709         DB_TXN *txn,
710         struct berval   *in,
711         EntryInfo       *ei,
712         void *ctx )
713 {
714         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
715         DB *db = bdb->bi_dn2id->bdi_db;
716         DBT             key, data;
717         DBC     *cursor;
718         int             rc = 0, nrlen;
719         diskNode *d;
720         char    *ptr;
721         ID idp = ei->bei_parent->bei_id;
722
723         nrlen = dn_rdnlen( be, in );
724         if (!nrlen) nrlen = in->bv_len;
725
726         DBTzero(&key);
727         key.size = sizeof(ID);
728         key.data = &idp;
729         key.ulen = sizeof(ID);
730         key.flags = DB_DBT_USERMEM;
731
732         DBTzero(&data);
733         data.size = sizeof(diskNode) + nrlen;
734         data.ulen = data.size * 3;
735         data.flags = DB_DBT_USERMEM;
736
737         rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
738         if ( rc ) return rc;
739
740         d = sl_malloc( data.size * 3, ctx );
741         d->nrdnlen = nrlen;
742         ptr = lutil_strncopy( d->nrdn, in->bv_val, nrlen );
743         *ptr = '\0';
744         data.data = d;
745
746         rc = cursor->c_get( cursor, &key, &data, DB_GET_BOTH );
747         cursor->c_close( cursor );
748
749         if ( rc == 0 ) {
750                 AC_MEMCPY( &ei->bei_id, &d->entryID, sizeof(ID) );
751                 ei->bei_rdn.bv_len = data.size - sizeof(diskNode) - nrlen;
752                 ptr = d->nrdn + nrlen + 1;
753                 ei->bei_rdn.bv_val = ch_malloc( ei->bei_rdn.bv_len + 1 );
754                 strcpy( ei->bei_rdn.bv_val, ptr );
755         }
756         sl_free( d, ctx );
757
758         return rc;
759 }
760
761 int
762 bdb_dn2id_parent(
763         Backend *be,
764         DB_TXN *txn,
765         EntryInfo *ei,
766         ID *idp,
767         void *ctx )
768 {
769         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
770         DB *db = bdb->bi_dn2id->bdi_db;
771         DBT             key, data;
772         DBC     *cursor;
773         int             rc = 0;
774         diskNode *d;
775         char    *ptr;
776         unsigned char *pt2;
777
778         DBTzero(&key);
779         key.size = sizeof(ID);
780         key.data = &ei->bei_id;
781         key.ulen = sizeof(ID);
782         key.flags = DB_DBT_USERMEM;
783
784         DBTzero(&data);
785         data.flags = DB_DBT_USERMEM;
786
787         rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
788         if ( rc ) return rc;
789
790         data.ulen = sizeof(diskNode) + (SLAP_LDAPDN_MAXLEN * 2);
791         d = sl_malloc( data.ulen, ctx );
792         data.data = d;
793
794         rc = cursor->c_get( cursor, &key, &data, DB_SET );
795         cursor->c_close( cursor );
796         if ( rc == 0 ) {
797                 if (d->nrdnlen >= 0) {
798                         return LDAP_OTHER;
799                 }
800                 AC_MEMCPY( idp, &d->entryID, sizeof(ID) );
801                 ei->bei_nrdn.bv_len = 0 - d->nrdnlen;
802                 ber_str2bv( d->nrdn, ei->bei_nrdn.bv_len, 1, &ei->bei_nrdn );
803                 ei->bei_rdn.bv_len = data.size - sizeof(diskNode) -
804                         ei->bei_nrdn.bv_len;
805                 ptr = d->nrdn + ei->bei_nrdn.bv_len + 1;
806                 ber_str2bv( ptr, ei->bei_rdn.bv_len, 1, &ei->bei_rdn );
807         }
808         sl_free( d, ctx );
809         return rc;
810 }
811
812 int
813 bdb_dn2id_children(
814         Operation *op,
815         DB_TXN *txn,
816         Entry *e )
817 {
818         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
819         DB *db = bdb->bi_dn2id->bdi_db;
820         DBT             key, data;
821         DBC             *cursor;
822         int             rc;
823         ID              id;
824         diskNode d;
825
826         DBTzero(&key);
827         key.size = sizeof(ID);
828         key.data = &e->e_id;
829         key.flags = DB_DBT_USERMEM;
830
831 #ifdef SLAP_IDL_CACHE
832         if ( bdb->bi_idl_cache_size ) {
833                 rc = bdb_idl_cache_get( bdb, db, &key, NULL );
834                 if ( rc != LDAP_NO_SUCH_OBJECT ) {
835                         return rc;
836                 }
837         }
838 #endif
839         DBTzero(&data);
840         data.data = &d;
841         data.ulen = sizeof(d);
842         data.flags = DB_DBT_USERMEM | DB_DBT_PARTIAL;
843         data.dlen = sizeof(d);
844
845         rc = db->cursor( db, txn, &cursor, bdb->bi_db_opflags );
846         if ( rc ) return rc;
847
848         rc = cursor->c_get( cursor, &key, &data, DB_SET );
849         if ( rc == 0 ) {
850                 rc = cursor->c_get( cursor, &key, &data, DB_NEXT_DUP );
851         }
852         cursor->c_close( cursor );
853         return rc;
854 }
855
856 /* bdb_dn2idl:
857  * We can't just use bdb_idl_fetch_key because
858  * 1 - our data items are longer than just an entry ID
859  * 2 - our data items are sorted alphabetically by nrdn, not by ID.
860  *
861  * We descend the tree recursively, so we define this cookie
862  * to hold our necessary state information. The bdb_dn2idl_internal
863  * function uses this cookie when calling itself.
864  */
865
866 struct dn2id_cookie {
867         struct bdb_info *bdb;
868         DB *db;
869         int prefix;
870         int rc;
871         ID id;
872         ID dbuf;
873         ID *ids;
874         void *ptr;
875         ID tmp[BDB_IDL_DB_SIZE];
876         ID *buf;
877         DBT key;
878         DBT data;
879         DBC *dbc;
880         void *ctx;
881 };
882
883 static int
884 bdb_dn2idl_internal(
885         struct dn2id_cookie *cx
886 )
887 {
888 #ifdef SLAP_IDL_CACHE
889         if ( cx->bdb->bi_idl_cache_size ) {
890                 cx->rc = bdb_idl_cache_get(cx->bdb, cx->db, &cx->key, cx->tmp);
891                 if ( cx->rc == DB_NOTFOUND ) {
892                         return cx->rc;
893                 }
894                 if ( cx->rc == LDAP_SUCCESS ) {
895                         goto saveit;
896                 }
897         }
898 #endif
899
900         cx->rc = cx->db->cursor( cx->db, NULL, &cx->dbc,
901                 cx->bdb->bi_db_opflags );
902         if ( cx->rc ) return cx->rc;
903         BDB_IDL_ZERO( cx->tmp );
904
905         cx->data.data = &cx->dbuf;
906         cx->data.ulen = sizeof(ID);
907         cx->data.dlen = sizeof(ID);
908         cx->data.flags = DB_DBT_USERMEM | DB_DBT_PARTIAL;
909
910         /* The first item holds the parent ID. Ignore it. */
911         cx->rc = cx->dbc->c_get( cx->dbc, &cx->key, &cx->data, DB_SET );
912         if ( cx->rc == DB_NOTFOUND ) goto saveit;
913         if ( cx->rc ) return cx->rc;
914
915         cx->data.data = cx->buf;
916         cx->data.ulen = BDB_IDL_UM_SIZE * sizeof(ID);
917         cx->data.flags = DB_DBT_USERMEM;
918
919         /* Fetch the rest of the IDs in a loop... */
920         while ( (cx->rc = cx->dbc->c_get( cx->dbc, &cx->key, &cx->data,
921                 DB_MULTIPLE | DB_NEXT_DUP )) == 0 ) {
922                 u_int8_t *j;
923                 size_t len;
924                 DB_MULTIPLE_INIT( cx->ptr, &cx->data );
925                 while (cx->ptr) {
926                         DB_MULTIPLE_NEXT( cx->ptr, &cx->data, j, len );
927                         if (j) {
928                                 AC_MEMCPY( &cx->dbuf, j, sizeof(ID) );
929                                 bdb_idl_insert( cx->tmp, cx->dbuf );
930                         }
931                 }
932         }
933         cx->dbc->c_close( cx->dbc );
934
935         /* If we got some records, treat as success */
936         if (!BDB_IDL_IS_ZERO(cx->tmp)) {
937                 cx->rc = 0;
938         }
939
940 saveit:
941 #ifdef SLAP_IDL_CACHE
942         if ( cx->bdb->bi_idl_cache_max_size ) {
943                 bdb_idl_cache_put( cx->bdb, cx->db, &cx->key, cx->tmp, cx->rc );
944         }
945 #endif
946         if ( cx->rc == 0 ) {
947                 if ( cx->prefix == DN_SUBTREE_PREFIX ) {
948                         ID *save, idcurs;
949
950                         save = sl_malloc( BDB_IDL_SIZEOF( cx->tmp ), cx->ctx );
951                         BDB_IDL_CPY( save, cx->tmp );
952                         bdb_idl_union( cx->ids, cx->tmp );
953         
954                         idcurs = 0;
955                         for ( cx->id = bdb_idl_first( save, &idcurs );
956                                 cx->id != NOID;
957                                 cx->id = bdb_idl_next( save, &idcurs )) {
958                                 bdb_dn2idl_internal( cx );
959                         }
960                         sl_free( save, cx->ctx );
961                         cx->rc = 0;
962                 } else {
963                         BDB_IDL_CPY( cx->ids, cx->tmp );
964                 }
965         }
966         return cx->rc;
967 }
968
969 int
970 bdb_dn2idl(
971         BackendDB       *be,
972         struct berval   *dn,
973         int prefix,
974         ID *ids,
975         ID *stack,
976         void *ctx )
977 {
978         struct dn2id_cookie cx;
979         EntryInfo *ei = (EntryInfo *)dn;
980
981 #ifndef BDB_MULTIPLE_SUFFIXES
982         if ( ei->bei_parent->bei_id == 0 ) {
983                 struct bdb_info *bdb = (struct bdb_info *)be->be_private;
984                 BDB_IDL_ALL( bdb, ids );
985                 return 0;
986         }
987 #endif
988
989         cx.id = ei->bei_id;
990         cx.bdb = (struct bdb_info *)be->be_private;
991         cx.db = cx.bdb->bi_dn2id->bdi_db;
992         cx.prefix = prefix;
993         cx.ids = ids;
994         cx.buf = stack;
995         cx.ctx = ctx;
996
997         BDB_IDL_ZERO( ids );
998         if ( prefix == DN_SUBTREE_PREFIX ) {
999                 bdb_idl_insert( ids, cx.id );
1000         }
1001
1002         DBTzero(&cx.key);
1003         cx.key.data = &cx.id;
1004         cx.key.ulen = sizeof(ID);
1005         cx.key.size = sizeof(ID);
1006         cx.key.flags = DB_DBT_USERMEM;
1007
1008         DBTzero(&cx.data);
1009
1010         return bdb_dn2idl_internal(&cx);
1011 }
1012 #endif  /* BDB_HIER */