]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/tools.c
ITS#3549 cleanup abandon/cancel processing
[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-2005 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         if (! (slapMode & SLAP_TOOL_QUICK)) {
311         rc = TXN_BEGIN( bdb->bi_dbenv, NULL, &tid, 
312                 bdb->bi_db_opflags );
313         if( rc != 0 ) {
314                 snprintf( text->bv_val, text->bv_len,
315                         "txn_begin failed: %s (%d)",
316                         db_strerror(rc), rc );
317                 Debug( LDAP_DEBUG_ANY,
318                         "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
319                          text->bv_val, 0, 0 );
320                 return NOID;
321         }
322         }
323
324         op.o_hdr = &ohdr;
325         op.o_bd = be;
326         op.o_tmpmemctx = NULL;
327         op.o_tmpmfuncs = &ch_mfuncs;
328
329         /* add dn2id indices */
330         rc = bdb_tool_next_id( &op, tid, e, text, 0 );
331         if( rc != 0 ) {
332                 goto done;
333         }
334
335         /* id2entry index */
336         rc = bdb_id2entry_add( be, tid, e );
337         if( rc != 0 ) {
338                 snprintf( text->bv_val, text->bv_len,
339                                 "id2entry_add failed: %s (%d)",
340                                 db_strerror(rc), rc );
341                 Debug( LDAP_DEBUG_ANY,
342                         "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
343                         text->bv_val, 0, 0 );
344                 goto done;
345         }
346
347         if ( !bdb->bi_linear_index )
348                 rc = bdb_index_entry_add( &op, tid, e );
349         if( rc != 0 ) {
350                 snprintf( text->bv_val, text->bv_len,
351                                 "index_entry_add failed: %s (%d)",
352                                 db_strerror(rc), rc );
353                 Debug( LDAP_DEBUG_ANY,
354                         "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
355                         text->bv_val, 0, 0 );
356                 goto done;
357         }
358
359 done:
360         if( rc == 0 ) {
361                 if ( !( slapMode & SLAP_TOOL_QUICK )) {
362                 rc = TXN_COMMIT( tid, 0 );
363                 if( rc != 0 ) {
364                         snprintf( text->bv_val, text->bv_len,
365                                         "txn_commit failed: %s (%d)",
366                                         db_strerror(rc), rc );
367                         Debug( LDAP_DEBUG_ANY,
368                                 "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
369                                 text->bv_val, 0, 0 );
370                         e->e_id = NOID;
371                 }
372                 }
373
374         } else {
375                 if ( !( slapMode & SLAP_TOOL_QUICK )) {
376                 TXN_ABORT( tid );
377                 snprintf( text->bv_val, text->bv_len,
378                         "txn_aborted! %s (%d)",
379                         db_strerror(rc), rc );
380                 Debug( LDAP_DEBUG_ANY,
381                         "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
382                         text->bv_val, 0, 0 );
383                 }
384                 e->e_id = NOID;
385         }
386
387         return e->e_id;
388 }
389
390 int bdb_tool_entry_reindex(
391         BackendDB *be,
392         ID id )
393 {
394         struct bdb_info *bi = (struct bdb_info *) be->be_private;
395         int rc;
396         Entry *e;
397         DB_TXN *tid = NULL;
398         Operation op = {0};
399         Opheader ohdr = {0};
400
401         Debug( LDAP_DEBUG_ARGS,
402                 "=> " LDAP_XSTRING(bdb_tool_entry_reindex) "( %ld )\n",
403                 (long) id, 0, 0 );
404
405         /* No indexes configured, nothing to do. Could return an
406          * error here to shortcut things.
407          */
408         if (!bi->bi_attrs) {
409                 return 0;
410         }
411
412         /* Get the first attribute to index */
413         if (bi->bi_linear_index && !index_attrs && bi->bi_attrs != &index_dummy) {
414                 index_attrs = bi->bi_attrs;
415                 bi->bi_attrs = &index_dummy;
416                 index_dummy.avl_data = avl_delete(&index_attrs, NULL, bdb_reindex_cmp);
417         }
418
419         e = bdb_tool_entry_get( be, id );
420
421         if( e == NULL ) {
422                 Debug( LDAP_DEBUG_ANY,
423                         LDAP_XSTRING(bdb_tool_entry_reindex)
424                         ": could not locate id=%ld\n",
425                         (long) id, 0, 0 );
426                 return -1;
427         }
428
429         if (! (slapMode & SLAP_TOOL_QUICK)) {
430         rc = TXN_BEGIN( bi->bi_dbenv, NULL, &tid, bi->bi_db_opflags );
431         if( rc != 0 ) {
432                 Debug( LDAP_DEBUG_ANY,
433                         "=> " LDAP_XSTRING(bdb_tool_entry_reindex) ": "
434                         "txn_begin failed: %s (%d)\n",
435                         db_strerror(rc), rc, 0 );
436                 goto done;
437         }
438         }
439         
440         /*
441          * just (re)add them for now
442          * assume that some other routine (not yet implemented)
443          * will zap index databases
444          *
445          */
446
447         Debug( LDAP_DEBUG_TRACE,
448                 "=> " LDAP_XSTRING(bdb_tool_entry_reindex) "( %ld, \"%s\" )\n",
449                 (long) id, e->e_dn, 0 );
450
451         op.o_hdr = &ohdr;
452         op.o_bd = be;
453         op.o_tmpmemctx = NULL;
454         op.o_tmpmfuncs = &ch_mfuncs;
455
456         rc = bdb_index_entry_add( &op, tid, e );
457
458 done:
459         if( rc == 0 ) {
460                 if (! (slapMode & SLAP_TOOL_QUICK)) {
461                 rc = TXN_COMMIT( tid, 0 );
462                 if( rc != 0 ) {
463                         Debug( LDAP_DEBUG_ANY,
464                                 "=> " LDAP_XSTRING(bdb_tool_entry_reindex)
465                                 ": txn_commit failed: %s (%d)\n",
466                                 db_strerror(rc), rc, 0 );
467                         e->e_id = NOID;
468                 }
469                 }
470
471         } else {
472                 if (! (slapMode & SLAP_TOOL_QUICK)) {
473                 TXN_ABORT( tid );
474                 Debug( LDAP_DEBUG_ANY,
475                         "=> " LDAP_XSTRING(bdb_tool_entry_reindex)
476                         ": txn_aborted! %s (%d)\n",
477                         db_strerror(rc), rc, 0 );
478                 }
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         if (! (slapMode & SLAP_TOOL_QUICK)) {
512         rc = TXN_BEGIN( bdb->bi_dbenv, NULL, &tid, 
513                 bdb->bi_db_opflags );
514         if( rc != 0 ) {
515                 snprintf( text->bv_val, text->bv_len,
516                         "txn_begin failed: %s (%d)",
517                         db_strerror(rc), rc );
518                 Debug( LDAP_DEBUG_ANY,
519                         "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": %s\n",
520                          text->bv_val, 0, 0 );
521                 return NOID;
522         }
523         }
524
525         op.o_hdr = &ohdr;
526         op.o_bd = be;
527         op.o_tmpmemctx = NULL;
528         op.o_tmpmfuncs = &ch_mfuncs;
529
530         /* id2entry index */
531         rc = bdb_id2entry_update( be, tid, e );
532         if( rc != 0 ) {
533                 snprintf( text->bv_val, text->bv_len,
534                                 "id2entry_add failed: %s (%d)",
535                                 db_strerror(rc), rc );
536                 Debug( LDAP_DEBUG_ANY,
537                         "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": %s\n",
538                         text->bv_val, 0, 0 );
539                 goto done;
540         }
541
542         rc = bdb_index_entry_del( &op, tid, e );
543         if( rc != 0 ) {
544                 snprintf( text->bv_val, text->bv_len,
545                                 "index_entry_del failed: %s (%d)",
546                                 db_strerror(rc), rc );
547                 Debug( LDAP_DEBUG_ANY,
548                         "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": %s\n",
549                         text->bv_val, 0, 0 );
550                 goto done;
551         }
552
553         rc = bdb_index_entry_add( &op, tid, e );
554         if( rc != 0 ) {
555                 snprintf( text->bv_val, text->bv_len,
556                                 "index_entry_add failed: %s (%d)",
557                                 db_strerror(rc), rc );
558                 Debug( LDAP_DEBUG_ANY,
559                         "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": %s\n",
560                         text->bv_val, 0, 0 );
561                 goto done;
562         }
563
564 done:
565         if( rc == 0 ) {
566                 if (! (slapMode & SLAP_TOOL_QUICK)) {
567                 rc = TXN_COMMIT( tid, 0 );
568                 if( rc != 0 ) {
569                         snprintf( text->bv_val, text->bv_len,
570                                         "txn_commit failed: %s (%d)",
571                                         db_strerror(rc), rc );
572                         Debug( LDAP_DEBUG_ANY,
573                                 "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": "
574                                 "%s\n", text->bv_val, 0, 0 );
575                         e->e_id = NOID;
576                 }
577                 }
578
579         } else {
580                 if (! (slapMode & SLAP_TOOL_QUICK)) {
581                 TXN_ABORT( tid );
582                 snprintf( text->bv_val, text->bv_len,
583                         "txn_aborted! %s (%d)",
584                         db_strerror(rc), rc );
585                 Debug( LDAP_DEBUG_ANY,
586                         "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": %s\n",
587                         text->bv_val, 0, 0 );
588                 }
589                 e->e_id = NOID;
590         }
591
592         return e->e_id;
593 }