]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/tools.c
033b0bd8bd6a350aee1e6ada2fb601ad00656b4f
[openldap] / servers / slapd / back-bdb / tools.c
1 /* tools.c - tools for slap tools */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2000-2004 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 #define AVL_INTERNAL
23 #include "back-bdb.h"
24
25 static DBC *cursor = NULL;
26 static DBT key, data;
27
28 typedef struct dn_id {
29         ID id;
30         struct berval dn;
31 } dn_id;
32
33 #define HOLE_SIZE       4096
34 static dn_id hbuf[HOLE_SIZE], *holes = hbuf;
35 static unsigned nhmax = HOLE_SIZE;
36 static unsigned nholes;
37
38 Avlnode *index_attrs, index_dummy;
39
40 int bdb_tool_entry_open(
41         BackendDB *be, int mode )
42 {
43         /* initialize key and data thangs */
44         DBTzero( &key );
45         DBTzero( &data );
46         key.flags = DB_DBT_REALLOC;
47         data.flags = DB_DBT_REALLOC;
48
49         return 0;
50 }
51
52 int bdb_tool_entry_close(
53         BackendDB *be )
54 {
55         assert( be != NULL );
56
57         if( key.data ) {
58                 ch_free( key.data );
59                 key.data = NULL;
60         }
61         if( data.data ) {
62                 ch_free( data.data );
63                 data.data = NULL;
64         }
65
66         if( cursor ) {
67                 cursor->c_close( cursor );
68                 cursor = NULL;
69         }
70
71         if( nholes ) {
72                 unsigned i;
73                 fprintf( stderr, "Error, entries missing!\n");
74                 for (i=0; i<nholes; i++) {
75                         fprintf(stderr, "  entry %ld: %s\n",
76                                 holes[i].id, holes[i].dn.bv_val);
77                 }
78                 return -1;
79         }
80                         
81         return 0;
82 }
83
84 static int bdb_reindex_cmp(const void *a, const void *b) { return 0; }
85
86 ID bdb_tool_entry_next(
87         BackendDB *be )
88 {
89         int rc;
90         ID id;
91         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
92
93         assert( be != NULL );
94         assert( slapMode & SLAP_TOOL_MODE );
95         assert( bdb != NULL );
96         
97         /* Initialization */
98         if (cursor == NULL) {
99                 rc = bdb->bi_id2entry->bdi_db->cursor(
100                         bdb->bi_id2entry->bdi_db, NULL, &cursor,
101                         bdb->bi_db_opflags );
102                 if( rc != 0 ) {
103                         return NOID;
104                 }
105         }
106
107         rc = cursor->c_get( cursor, &key, &data, DB_NEXT );
108
109         if( rc != 0 ) {
110                 /* If we're doing linear indexing and there are more attrs to
111                  * index, and we're at the end of the database, start over.
112                  */
113                 if ( bdb->bi_attrs == &index_dummy ) {
114                         if ( index_attrs && rc == DB_NOTFOUND ) {
115                                 /* optional - do a checkpoint here? */
116                                 index_dummy.avl_data = avl_delete(&index_attrs, NULL, bdb_reindex_cmp);
117                                 rc = cursor->c_get( cursor, &key, &data, DB_FIRST );
118                         }
119                         if ( rc ) {
120                                 bdb->bi_attrs = NULL;
121                                 return NOID;
122                         }
123                 } else {
124                         return NOID;
125                 }
126         }
127
128         if( data.data == NULL ) {
129                 return NOID;
130         }
131
132         BDB_DISK2ID( key.data, &id );
133         return id;
134 }
135
136 ID bdb_tool_dn2id_get(
137         Backend *be,
138         struct berval *dn
139 )
140 {
141         Operation op = {0};
142         Opheader ohdr = {0};
143         EntryInfo ei = {0};
144
145         op.o_hdr = &ohdr;
146         op.o_bd = be;
147         op.o_tmpmemctx = NULL;
148         op.o_tmpmfuncs = &ch_mfuncs;
149
150         ei.bei_id = NOID;
151
152         bdb_dn2id( &op, NULL, dn, &ei );
153         
154         return ei.bei_id;
155 }
156
157 int bdb_tool_id2entry_get(
158         Backend *be,
159         ID id,
160         Entry **e
161 )
162 {
163         return bdb_id2entry( be, NULL, id, e );
164 }
165
166 Entry* bdb_tool_entry_get( BackendDB *be, ID id )
167 {
168         int rc;
169         Entry *e = NULL;
170         struct berval bv;
171
172         assert( be != NULL );
173         assert( slapMode & SLAP_TOOL_MODE );
174         assert( data.data != NULL );
175
176 #ifndef BDB_HIER
177         DBT2bv( &data, &bv );
178
179 #ifdef SLAP_ZONE_ALLOC
180         /* FIXME: will add ctx later */
181         rc = entry_decode( &bv, &e, NULL );
182 #else
183         rc = entry_decode( &bv, &e );
184 #endif
185
186         if( rc == LDAP_SUCCESS ) {
187                 e->e_id = id;
188         }
189 #else
190         {
191                 EntryInfo *ei = NULL;
192                 Operation op = {0};
193                 Opheader ohdr = {0};
194
195                 op.o_hdr = &ohdr;
196                 op.o_bd = be;
197                 op.o_tmpmemctx = NULL;
198                 op.o_tmpmfuncs = &ch_mfuncs;
199
200                 rc = bdb_cache_find_id( &op, NULL, id, &ei, 0, 0, NULL );
201                 if ( rc == LDAP_SUCCESS )
202                         e = ei->bei_e;
203         }
204 #endif
205         return e;
206 }
207
208 static int bdb_tool_next_id(
209         Operation *op,
210         DB_TXN *tid,
211         Entry *e,
212         struct berval *text,
213         int hole )
214 {
215         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
216         struct berval dn = e->e_name;
217         struct berval ndn = e->e_nname;
218         struct berval pdn, npdn;
219         EntryInfo *ei = NULL;
220         int rc;
221
222         if (ndn.bv_len == 0) return 0;
223
224         rc = bdb_cache_find_ndn( op, tid, &ndn, &ei );
225         if ( ei ) bdb_cache_entryinfo_unlock( ei );
226         if ( rc == DB_NOTFOUND ) {
227                 if ( !be_issuffix( op->o_bd, &ndn ) ) {
228                         dnParent( &dn, &pdn );
229                         dnParent( &ndn, &npdn );
230                         e->e_name = pdn;
231                         e->e_nname = npdn;
232                         rc = bdb_tool_next_id( op, tid, e, text, 1 );
233                         e->e_name = dn;
234                         e->e_nname = ndn;
235                         if ( rc ) {
236                                 return rc;
237                         }
238                 }
239                 rc = bdb_next_id( op->o_bd, tid, &e->e_id );
240                 if ( rc ) {
241                         snprintf( text->bv_val, text->bv_len,
242                                 "next_id failed: %s (%d)",
243                                 db_strerror(rc), rc );
244                 Debug( LDAP_DEBUG_ANY,
245                         "=> bdb_tool_next_id: %s\n", text->bv_val, 0, 0 );
246                         return rc;
247                 }
248                 rc = bdb_dn2id_add( op, tid, ei, e );
249                 if ( rc ) {
250                         snprintf( text->bv_val, text->bv_len, 
251                                 "dn2id_add failed: %s (%d)",
252                                 db_strerror(rc), rc );
253                 Debug( LDAP_DEBUG_ANY,
254                         "=> bdb_tool_next_id: %s\n", text->bv_val, 0, 0 );
255                 } else if ( hole ) {
256                         if ( nholes == nhmax - 1 ) {
257                                 if ( holes == hbuf ) {
258                                         holes = ch_malloc( nhmax * sizeof(dn_id) * 2 );
259                                         AC_MEMCPY( holes, hbuf, sizeof(hbuf) );
260                                 } else {
261                                         holes = ch_realloc( holes, nhmax * sizeof(dn_id) * 2 );
262                                 }
263                                 nhmax *= 2;
264                         }
265                         ber_dupbv( &holes[nholes].dn, &ndn );
266                         holes[nholes++].id = e->e_id;
267                 }
268         } else if ( !hole ) {
269                 unsigned i;
270
271                 e->e_id = ei->bei_id;
272
273                 for ( i=0; i<nholes; i++) {
274                         if ( holes[i].id == e->e_id ) {
275                                 int j;
276                                 free(holes[i].dn.bv_val);
277                                 for (j=i;j<nholes;j++) holes[j] = holes[j+1];
278                                 holes[j].id = 0;
279                                 nholes--;
280                                 break;
281                         } else if ( holes[i].id > e->e_id ) {
282                                 break;
283                         }
284                 }
285         }
286         return rc;
287 }
288
289 ID bdb_tool_entry_put(
290         BackendDB *be,
291         Entry *e,
292         struct berval *text )
293 {
294         int rc;
295         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
296         DB_TXN *tid = NULL;
297         Operation op = {0};
298         Opheader ohdr = {0};
299
300         assert( be != NULL );
301         assert( slapMode & SLAP_TOOL_MODE );
302
303         assert( text );
304         assert( text->bv_val );
305         assert( text->bv_val[0] == '\0' );      /* overconservative? */
306
307         Debug( LDAP_DEBUG_TRACE, "=> " LDAP_XSTRING(bdb_tool_entry_put)
308                 "( %ld, \"%s\" )\n", (long) e->e_id, e->e_dn, 0 );
309
310         rc = TXN_BEGIN( bdb->bi_dbenv, NULL, &tid, 
311                 bdb->bi_db_opflags );
312         if( rc != 0 ) {
313                 snprintf( text->bv_val, text->bv_len,
314                         "txn_begin failed: %s (%d)",
315                         db_strerror(rc), rc );
316                 Debug( LDAP_DEBUG_ANY,
317                         "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
318                          text->bv_val, 0, 0 );
319                 return NOID;
320         }
321
322         op.o_hdr = &ohdr;
323         op.o_bd = be;
324         op.o_tmpmemctx = NULL;
325         op.o_tmpmfuncs = &ch_mfuncs;
326
327         /* add dn2id indices */
328         rc = bdb_tool_next_id( &op, tid, e, text, 0 );
329         if( rc != 0 ) {
330                 goto done;
331         }
332
333         /* id2entry index */
334         rc = bdb_id2entry_add( be, tid, e );
335         if( rc != 0 ) {
336                 snprintf( text->bv_val, text->bv_len,
337                                 "id2entry_add failed: %s (%d)",
338                                 db_strerror(rc), rc );
339                 Debug( LDAP_DEBUG_ANY,
340                         "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
341                         text->bv_val, 0, 0 );
342                 goto done;
343         }
344
345         if ( !bdb->bi_linear_index )
346                 rc = bdb_index_entry_add( &op, tid, e );
347         if( rc != 0 ) {
348                 snprintf( text->bv_val, text->bv_len,
349                                 "index_entry_add failed: %s (%d)",
350                                 db_strerror(rc), rc );
351                 Debug( LDAP_DEBUG_ANY,
352                         "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
353                         text->bv_val, 0, 0 );
354                 goto done;
355         }
356
357 done:
358         if( rc == 0 ) {
359                 rc = TXN_COMMIT( tid, 0 );
360                 if( rc != 0 ) {
361                         snprintf( text->bv_val, text->bv_len,
362                                         "txn_commit failed: %s (%d)",
363                                         db_strerror(rc), rc );
364                         Debug( LDAP_DEBUG_ANY,
365                                 "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
366                                 text->bv_val, 0, 0 );
367                         e->e_id = NOID;
368                 }
369
370         } else {
371                 TXN_ABORT( tid );
372                 snprintf( text->bv_val, text->bv_len,
373                         "txn_aborted! %s (%d)",
374                         db_strerror(rc), rc );
375                 Debug( LDAP_DEBUG_ANY,
376                         "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
377                         text->bv_val, 0, 0 );
378                 e->e_id = NOID;
379         }
380
381         return e->e_id;
382 }
383
384 int bdb_tool_entry_reindex(
385         BackendDB *be,
386         ID id )
387 {
388         struct bdb_info *bi = (struct bdb_info *) be->be_private;
389         int rc;
390         Entry *e;
391         DB_TXN *tid = NULL;
392         Operation op = {0};
393         Opheader ohdr = {0};
394
395         Debug( LDAP_DEBUG_ARGS,
396                 "=> " LDAP_XSTRING(bdb_tool_entry_reindex) "( %ld )\n",
397                 (long) id, 0, 0 );
398
399         /* No indexes configured, nothing to do. Could return an
400          * error here to shortcut things.
401          */
402         if (!bi->bi_attrs) {
403                 return 0;
404         }
405
406         /* Get the first attribute to index */
407         if (bi->bi_linear_index && !index_attrs && bi->bi_attrs != &index_dummy) {
408                 index_attrs = bi->bi_attrs;
409                 bi->bi_attrs = &index_dummy;
410                 index_dummy.avl_data = avl_delete(&index_attrs, NULL, bdb_reindex_cmp);
411         }
412
413         e = bdb_tool_entry_get( be, id );
414
415         if( e == NULL ) {
416                 Debug( LDAP_DEBUG_ANY,
417                         LDAP_XSTRING(bdb_tool_entry_reindex)
418                         ": could not locate id=%ld\n",
419                         (long) id, 0, 0 );
420                 return -1;
421         }
422
423         rc = TXN_BEGIN( bi->bi_dbenv, NULL, &tid, bi->bi_db_opflags );
424         if( rc != 0 ) {
425                 Debug( LDAP_DEBUG_ANY,
426                         "=> " LDAP_XSTRING(bdb_tool_entry_reindex) ": "
427                         "txn_begin failed: %s (%d)\n",
428                         db_strerror(rc), rc, 0 );
429                 goto done;
430         }
431         
432         /*
433          * just (re)add them for now
434          * assume that some other routine (not yet implemented)
435          * will zap index databases
436          *
437          */
438
439         Debug( LDAP_DEBUG_TRACE,
440                 "=> " LDAP_XSTRING(bdb_tool_entry_reindex) "( %ld, \"%s\" )\n",
441                 (long) id, e->e_dn, 0 );
442
443         op.o_hdr = &ohdr;
444         op.o_bd = be;
445         op.o_tmpmemctx = NULL;
446         op.o_tmpmfuncs = &ch_mfuncs;
447
448 #if 0 /* ndef BDB_HIER */
449         /* add dn2id indices */
450         rc = bdb_dn2id_add( &op, tid, NULL, e );
451         if( rc != 0 && rc != DB_KEYEXIST ) {
452                 Debug( LDAP_DEBUG_ANY,
453                         "=> " LDAP_XSTRING(bdb_tool_entry_reindex)
454                         ": dn2id_add failed: %s (%d)\n",
455                         db_strerror(rc), rc, 0 );
456                 goto done;
457         }
458 #endif
459
460         rc = bdb_index_entry_add( &op, tid, e );
461
462 done:
463         if( rc == 0 ) {
464                 rc = TXN_COMMIT( tid, 0 );
465                 if( rc != 0 ) {
466                         Debug( LDAP_DEBUG_ANY,
467                                 "=> " LDAP_XSTRING(bdb_tool_entry_reindex)
468                                 ": txn_commit failed: %s (%d)\n",
469                                 db_strerror(rc), rc, 0 );
470                         e->e_id = NOID;
471                 }
472
473         } else {
474                 TXN_ABORT( tid );
475                 Debug( LDAP_DEBUG_ANY,
476                         "=> " LDAP_XSTRING(bdb_tool_entry_reindex)
477                         ": txn_aborted! %s (%d)\n",
478                         db_strerror(rc), rc, 0 );
479                 e->e_id = NOID;
480         }
481         bdb_entry_release( &op, e, 0 );
482
483         return rc;
484 }
485
486 ID bdb_tool_entry_modify(
487         BackendDB *be,
488         Entry *e,
489         struct berval *text )
490 {
491         int rc;
492         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
493         DB_TXN *tid = NULL;
494         Operation op = {0};
495         Opheader ohdr = {0};
496
497         assert( be != NULL );
498         assert( slapMode & SLAP_TOOL_MODE );
499
500         assert( text );
501         assert( text->bv_val );
502         assert( text->bv_val[0] == '\0' );      /* overconservative? */
503
504         assert ( e->e_id != NOID );
505         assert ( e->e_id != 0 );
506
507         Debug( LDAP_DEBUG_TRACE,
508                 "=> " LDAP_XSTRING(bdb_tool_entry_modify) "( %ld, \"%s\" )\n",
509                 (long) e->e_id, e->e_dn, 0 );
510
511         rc = TXN_BEGIN( bdb->bi_dbenv, NULL, &tid, 
512                 bdb->bi_db_opflags );
513         if( rc != 0 ) {
514                 snprintf( text->bv_val, text->bv_len,
515                         "txn_begin failed: %s (%d)",
516                         db_strerror(rc), rc );
517                 Debug( LDAP_DEBUG_ANY,
518                         "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": %s\n",
519                          text->bv_val, 0, 0 );
520                 return NOID;
521         }
522
523         op.o_hdr = &ohdr;
524         op.o_bd = be;
525         op.o_tmpmemctx = NULL;
526         op.o_tmpmfuncs = &ch_mfuncs;
527
528         /* id2entry index */
529         rc = bdb_id2entry_update( be, tid, e );
530         if( rc != 0 ) {
531                 snprintf( text->bv_val, text->bv_len,
532                                 "id2entry_add failed: %s (%d)",
533                                 db_strerror(rc), rc );
534                 Debug( LDAP_DEBUG_ANY,
535                         "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": %s\n",
536                         text->bv_val, 0, 0 );
537                 goto done;
538         }
539
540         rc = bdb_index_entry_del( &op, tid, e );
541         if( rc != 0 ) {
542                 snprintf( text->bv_val, text->bv_len,
543                                 "index_entry_del failed: %s (%d)",
544                                 db_strerror(rc), rc );
545                 Debug( LDAP_DEBUG_ANY,
546                         "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": %s\n",
547                         text->bv_val, 0, 0 );
548                 goto done;
549         }
550
551         rc = bdb_index_entry_add( &op, tid, e );
552         if( rc != 0 ) {
553                 snprintf( text->bv_val, text->bv_len,
554                                 "index_entry_add failed: %s (%d)",
555                                 db_strerror(rc), rc );
556                 Debug( LDAP_DEBUG_ANY,
557                         "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": %s\n",
558                         text->bv_val, 0, 0 );
559                 goto done;
560         }
561
562 done:
563         if( rc == 0 ) {
564                 rc = TXN_COMMIT( tid, 0 );
565                 if( rc != 0 ) {
566                         snprintf( text->bv_val, text->bv_len,
567                                         "txn_commit failed: %s (%d)",
568                                         db_strerror(rc), rc );
569                         Debug( LDAP_DEBUG_ANY,
570                                 "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": "
571                                 "%s\n", text->bv_val, 0, 0 );
572                         e->e_id = NOID;
573                 }
574
575         } else {
576                 TXN_ABORT( tid );
577                 snprintf( text->bv_val, text->bv_len,
578                         "txn_aborted! %s (%d)",
579                         db_strerror(rc), rc );
580                 Debug( LDAP_DEBUG_ANY,
581                         "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": %s\n",
582                         text->bv_val, 0, 0 );
583                 e->e_id = NOID;
584         }
585
586         return e->e_id;
587 }