]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/tools.c
ITS#4554 slapindex takes a list of attributes to index
[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-2007 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 #include <ac/errno.h>
22
23 #define AVL_INTERNAL
24 #include "back-bdb.h"
25 #include "idl.h"
26
27 static DBC *cursor = NULL;
28 static DBT key, data;
29 static EntryHeader eh;
30 static int eoff;
31
32 typedef struct dn_id {
33         ID id;
34         struct berval dn;
35 } dn_id;
36
37 #define HOLE_SIZE       4096
38 static dn_id hbuf[HOLE_SIZE], *holes = hbuf;
39 static unsigned nhmax = HOLE_SIZE;
40 static unsigned nholes;
41
42 static int index_nattrs;
43
44 #ifdef BDB_TOOL_IDL_CACHING
45 #define bdb_tool_idl_cmp                BDB_SYMBOL(tool_idl_cmp)
46 #define bdb_tool_idl_flush_one          BDB_SYMBOL(tool_idl_flush_one)
47 #define bdb_tool_idl_flush              BDB_SYMBOL(tool_idl_flush)
48
49 static int bdb_tool_idl_flush( BackendDB *be );
50
51 #define IDBLOCK 1024
52
53 typedef struct bdb_tool_idl_cache_entry {
54         struct bdb_tool_idl_cache_entry *next;
55         ID ids[IDBLOCK];
56 } bdb_tool_idl_cache_entry;
57  
58 typedef struct bdb_tool_idl_cache {
59         struct berval kstr;
60         bdb_tool_idl_cache_entry *head, *tail;
61         ID first, last;
62         int count;
63 } bdb_tool_idl_cache;
64
65 static bdb_tool_idl_cache_entry *bdb_tool_idl_free_list;
66 #endif  /* BDB_TOOL_IDL_CACHING */
67
68 static ID bdb_tool_ix_id;
69 static Operation *bdb_tool_ix_op;
70 static int *bdb_tool_index_threads, bdb_tool_index_tcount;
71 static void *bdb_tool_index_rec;
72 static struct bdb_info *bdb_tool_info;
73 static ldap_pvt_thread_mutex_t bdb_tool_index_mutex;
74 static ldap_pvt_thread_cond_t bdb_tool_index_cond_main;
75 static ldap_pvt_thread_cond_t bdb_tool_index_cond_work;
76
77 static void * bdb_tool_index_task( void *ctx, void *ptr );
78
79 int bdb_tool_entry_open(
80         BackendDB *be, int mode )
81 {
82         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
83
84         /* initialize key and data thangs */
85         DBTzero( &key );
86         DBTzero( &data );
87         key.flags = DB_DBT_REALLOC;
88         data.flags = DB_DBT_USERMEM;
89
90         if (cursor == NULL) {
91                 int rc = bdb->bi_id2entry->bdi_db->cursor(
92                         bdb->bi_id2entry->bdi_db, NULL, &cursor,
93                         bdb->bi_db_opflags );
94                 if( rc != 0 ) {
95                         return -1;
96                 }
97         }
98
99         /* Set up for threaded slapindex */
100         if (( slapMode & (SLAP_TOOL_QUICK|SLAP_TOOL_READONLY)) == SLAP_TOOL_QUICK
101                 && bdb->bi_nattrs ) {
102                 if ( !bdb_tool_info ) {
103                         int i;
104                         ldap_pvt_thread_mutex_init( &bdb_tool_index_mutex );
105                         ldap_pvt_thread_cond_init( &bdb_tool_index_cond_main );
106                         ldap_pvt_thread_cond_init( &bdb_tool_index_cond_work );
107                         bdb_tool_index_threads = ch_malloc( slap_tool_thread_max * sizeof( int ));
108                         bdb_tool_index_rec = ch_malloc( bdb->bi_nattrs * sizeof( IndexRec ));
109                         bdb_tool_index_tcount = slap_tool_thread_max - 1;
110                         for (i=1; i<slap_tool_thread_max; i++) {
111                                 int *ptr = ch_malloc( sizeof( int ));
112                                 *ptr = i;
113                                 ldap_pvt_thread_pool_submit( &connection_pool,
114                                         bdb_tool_index_task, ptr );
115                         }
116                 }
117                 bdb_tool_info = bdb;
118         }
119
120         return 0;
121 }
122
123 int bdb_tool_entry_close(
124         BackendDB *be )
125 {
126         if ( bdb_tool_info ) {
127                 slapd_shutdown = 1;
128                 ldap_pvt_thread_mutex_lock( &bdb_tool_index_mutex );
129                 bdb_tool_index_tcount = slap_tool_thread_max - 1;
130                 ldap_pvt_thread_cond_broadcast( &bdb_tool_index_cond_work );
131                 ldap_pvt_thread_mutex_unlock( &bdb_tool_index_mutex );
132         }
133
134         if( key.data ) {
135                 ch_free( key.data );
136                 key.data = NULL;
137         }
138         if( eh.bv.bv_val ) {
139                 ch_free( eh.bv.bv_val );
140                 eh.bv.bv_val = NULL;
141         }
142
143         if( cursor ) {
144                 cursor->c_close( cursor );
145                 cursor = NULL;
146         }
147
148 #ifdef BDB_TOOL_IDL_CACHING
149         bdb_tool_idl_flush( be );
150 #endif
151
152         if( nholes ) {
153                 unsigned i;
154                 fprintf( stderr, "Error, entries missing!\n");
155                 for (i=0; i<nholes; i++) {
156                         fprintf(stderr, "  entry %ld: %s\n",
157                                 holes[i].id, holes[i].dn.bv_val);
158                 }
159                 return -1;
160         }
161                         
162         return 0;
163 }
164
165 ID bdb_tool_entry_next(
166         BackendDB *be )
167 {
168         int rc;
169         ID id;
170         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
171         char buf[16], *dptr;
172
173         assert( be != NULL );
174         assert( slapMode & SLAP_TOOL_MODE );
175         assert( bdb != NULL );
176         
177         /* Get the header */
178         data.ulen = data.dlen = sizeof( buf );
179         data.data = buf;
180         data.flags |= DB_DBT_PARTIAL;
181         rc = cursor->c_get( cursor, &key, &data, DB_NEXT );
182
183         if( rc ) {
184                 /* If we're doing linear indexing and there are more attrs to
185                  * index, and we're at the end of the database, start over.
186                  */
187                 if ( index_nattrs && rc == DB_NOTFOUND ) {
188                         /* optional - do a checkpoint here? */
189                         bdb_attr_info_free( bdb->bi_attrs[0] );
190                         bdb->bi_attrs[0] = bdb->bi_attrs[index_nattrs];
191                         index_nattrs--;
192                         rc = cursor->c_get( cursor, &key, &data, DB_FIRST );
193                         if ( rc ) {
194                                 return NOID;
195                         }
196                 } else {
197                         return NOID;
198                 }
199         }
200
201         dptr = eh.bv.bv_val;
202         eh.bv.bv_val = buf;
203         eh.bv.bv_len = data.size;
204         rc = entry_header( &eh );
205         eoff = eh.data - eh.bv.bv_val;
206         eh.bv.bv_val = dptr;
207         if( rc ) {
208                 return NOID;
209         }
210
211         BDB_DISK2ID( key.data, &id );
212         return id;
213 }
214
215 ID bdb_tool_dn2id_get(
216         Backend *be,
217         struct berval *dn
218 )
219 {
220         Operation op = {0};
221         Opheader ohdr = {0};
222         EntryInfo *ei = NULL;
223         int rc;
224
225         if ( BER_BVISEMPTY(dn) )
226                 return 0;
227
228         op.o_hdr = &ohdr;
229         op.o_bd = be;
230         op.o_tmpmemctx = NULL;
231         op.o_tmpmfuncs = &ch_mfuncs;
232
233         rc = bdb_cache_find_ndn( &op, NULL, dn, &ei );
234         if ( ei ) bdb_cache_entryinfo_unlock( ei );
235         if ( rc == DB_NOTFOUND )
236                 return NOID;
237         
238         return ei->bei_id;
239 }
240
241 int bdb_tool_id2entry_get(
242         Backend *be,
243         ID id,
244         Entry **e
245 )
246 {
247         int rc = bdb_id2entry( be, NULL, 0, id, e );
248
249         if ( rc == DB_NOTFOUND && id == 0 ) {
250                 Entry *dummy = ch_calloc( 1, sizeof(Entry) );
251                 struct berval gluebv = BER_BVC("glue");
252                 dummy->e_name.bv_val = ch_strdup( "" );
253                 dummy->e_nname.bv_val = ch_strdup( "" );
254                 attr_merge_one( dummy, slap_schema.si_ad_objectClass, &gluebv, NULL );
255                 attr_merge_one( dummy, slap_schema.si_ad_structuralObjectClass,
256                         &gluebv, NULL );
257                 *e = dummy;
258                 rc = LDAP_SUCCESS;
259         }
260         return rc;
261 }
262
263 Entry* bdb_tool_entry_get( BackendDB *be, ID id )
264 {
265         int rc;
266         Entry *e = NULL;
267
268         assert( be != NULL );
269         assert( slapMode & SLAP_TOOL_MODE );
270
271         /* Get the size */
272         data.flags ^= DB_DBT_PARTIAL;
273         data.ulen = 0;
274     rc = cursor->c_get( cursor, &key, &data, DB_CURRENT );
275         if ( rc != DB_BUFFER_SMALL ) goto leave;
276
277         /* Allocate a block and retrieve the data */
278         eh.bv.bv_len = eh.nvals * sizeof( struct berval ) + data.size;
279         eh.bv.bv_val = ch_realloc( eh.bv.bv_val, eh.bv.bv_len );
280         eh.data = eh.bv.bv_val + eh.nvals * sizeof( struct berval );
281         data.data = eh.data;
282         data.ulen = data.size;
283
284         /* Skip past already parsed nattr/nvals */
285         eh.data += eoff;
286
287     rc = cursor->c_get( cursor, &key, &data, DB_CURRENT );
288         if ( rc ) goto leave;
289
290 #ifdef SLAP_ZONE_ALLOC
291         /* FIXME: will add ctx later */
292         rc = entry_decode( &eh, &e, NULL );
293 #else
294         rc = entry_decode( &eh, &e );
295 #endif
296
297         if( rc == LDAP_SUCCESS ) {
298                 e->e_id = id;
299 #ifdef BDB_HIER
300                 if ( slapMode & SLAP_TOOL_READONLY ) {
301                         EntryInfo *ei = NULL;
302                         Operation op = {0};
303                         Opheader ohdr = {0};
304
305                         op.o_hdr = &ohdr;
306                         op.o_bd = be;
307                         op.o_tmpmemctx = NULL;
308                         op.o_tmpmfuncs = &ch_mfuncs;
309
310                         rc = bdb_cache_find_parent( &op, NULL, cursor->locker, id, &ei );
311                         if ( rc == LDAP_SUCCESS ) {
312                                 bdb_cache_entryinfo_unlock( ei );
313                                 e->e_private = ei;
314                                 ei->bei_e = e;
315                                 bdb_fix_dn( e, 0 );
316                                 ei->bei_e = NULL;
317                                 e->e_private = NULL;
318                         }
319                 }
320 #endif
321         }
322 leave:
323         return e;
324 }
325
326 static int bdb_tool_next_id(
327         Operation *op,
328         DB_TXN *tid,
329         Entry *e,
330         struct berval *text,
331         int hole )
332 {
333         struct berval dn = e->e_name;
334         struct berval ndn = e->e_nname;
335         struct berval pdn, npdn;
336         EntryInfo *ei = NULL, eidummy;
337         int rc;
338
339         if (ndn.bv_len == 0) {
340                 e->e_id = 0;
341                 return 0;
342         }
343
344         rc = bdb_cache_find_ndn( op, tid, &ndn, &ei );
345         if ( ei ) bdb_cache_entryinfo_unlock( ei );
346         if ( rc == DB_NOTFOUND ) {
347                 if ( !be_issuffix( op->o_bd, &ndn ) ) {
348                         ID eid = e->e_id;
349                         dnParent( &dn, &pdn );
350                         dnParent( &ndn, &npdn );
351                         e->e_name = pdn;
352                         e->e_nname = npdn;
353                         rc = bdb_tool_next_id( op, tid, e, text, 1 );
354                         e->e_name = dn;
355                         e->e_nname = ndn;
356                         if ( rc ) {
357                                 return rc;
358                         }
359                         /* If parent didn't exist, it was created just now
360                          * and its ID is now in e->e_id. Make sure the current
361                          * entry gets added under the new parent ID.
362                          */
363                         if ( eid != e->e_id ) {
364                                 eidummy.bei_id = e->e_id;
365                                 ei = &eidummy;
366                         }
367                 }
368                 rc = bdb_next_id( op->o_bd, tid, &e->e_id );
369                 if ( rc ) {
370                         snprintf( text->bv_val, text->bv_len,
371                                 "next_id failed: %s (%d)",
372                                 db_strerror(rc), rc );
373                 Debug( LDAP_DEBUG_ANY,
374                         "=> bdb_tool_next_id: %s\n", text->bv_val, 0, 0 );
375                         return rc;
376                 }
377                 rc = bdb_dn2id_add( op, tid, ei, e );
378                 if ( rc ) {
379                         snprintf( text->bv_val, text->bv_len, 
380                                 "dn2id_add failed: %s (%d)",
381                                 db_strerror(rc), rc );
382                 Debug( LDAP_DEBUG_ANY,
383                         "=> bdb_tool_next_id: %s\n", text->bv_val, 0, 0 );
384                 } else if ( hole ) {
385                         if ( nholes == nhmax - 1 ) {
386                                 if ( holes == hbuf ) {
387                                         holes = ch_malloc( nhmax * sizeof(dn_id) * 2 );
388                                         AC_MEMCPY( holes, hbuf, sizeof(hbuf) );
389                                 } else {
390                                         holes = ch_realloc( holes, nhmax * sizeof(dn_id) * 2 );
391                                 }
392                                 nhmax *= 2;
393                         }
394                         ber_dupbv( &holes[nholes].dn, &ndn );
395                         holes[nholes++].id = e->e_id;
396                 }
397         } else if ( !hole ) {
398                 unsigned i;
399
400                 e->e_id = ei->bei_id;
401
402                 for ( i=0; i<nholes; i++) {
403                         if ( holes[i].id == e->e_id ) {
404                                 int j;
405                                 free(holes[i].dn.bv_val);
406                                 for (j=i;j<nholes;j++) holes[j] = holes[j+1];
407                                 holes[j].id = 0;
408                                 nholes--;
409                                 break;
410                         } else if ( holes[i].id > e->e_id ) {
411                                 break;
412                         }
413                 }
414         }
415         return rc;
416 }
417
418 static int
419 bdb_tool_index_add(
420         Operation *op,
421         DB_TXN *txn,
422         Entry *e )
423 {
424         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
425
426         if ( !bdb->bi_nattrs )
427                 return 0;
428
429         if ( slapMode & SLAP_TOOL_QUICK ) {
430                 IndexRec *ir;
431                 int i, rc;
432                 Attribute *a;
433                 
434                 ir = bdb_tool_index_rec;
435                 memset(ir, 0, bdb->bi_nattrs * sizeof( IndexRec ));
436
437                 for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
438                         rc = bdb_index_recset( bdb, a, a->a_desc->ad_type, 
439                                 &a->a_desc->ad_tags, ir );
440                         if ( rc )
441                                 return rc;
442                 }
443                 bdb_tool_ix_id = e->e_id;
444                 bdb_tool_ix_op = op;
445                 ldap_pvt_thread_mutex_lock( &bdb_tool_index_mutex );
446                 /* Wait for all threads to be ready */
447                 while ( bdb_tool_index_tcount ) {
448                         ldap_pvt_thread_cond_wait( &bdb_tool_index_cond_main, 
449                                 &bdb_tool_index_mutex );
450                 }
451                 for ( i=1; i<slap_tool_thread_max; i++ )
452                         bdb_tool_index_threads[i] = LDAP_BUSY;
453                 bdb_tool_index_tcount = slap_tool_thread_max - 1;
454                 ldap_pvt_thread_cond_broadcast( &bdb_tool_index_cond_work );
455                 ldap_pvt_thread_mutex_unlock( &bdb_tool_index_mutex );
456                 rc = bdb_index_recrun( op, bdb, ir, e->e_id, 0 );
457                 if ( rc )
458                         return rc;
459                 ldap_pvt_thread_mutex_lock( &bdb_tool_index_mutex );
460                 for ( i=1; i<slap_tool_thread_max; i++ ) {
461                         if ( bdb_tool_index_threads[i] == LDAP_BUSY ) {
462                                 ldap_pvt_thread_cond_wait( &bdb_tool_index_cond_main, 
463                                         &bdb_tool_index_mutex );
464                                 i--;
465                                 continue;
466                         }
467                         if ( bdb_tool_index_threads[i] ) {
468                                 rc = bdb_tool_index_threads[i];
469                                 break;
470                         }
471                 }
472                 ldap_pvt_thread_mutex_unlock( &bdb_tool_index_mutex );
473                 return rc;
474         } else {
475                 return bdb_index_entry_add( op, txn, e );
476         }
477 }
478
479 ID bdb_tool_entry_put(
480         BackendDB *be,
481         Entry *e,
482         struct berval *text )
483 {
484         int rc;
485         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
486         DB_TXN *tid = NULL;
487         Operation op = {0};
488         Opheader ohdr = {0};
489
490         assert( be != NULL );
491         assert( slapMode & SLAP_TOOL_MODE );
492
493         assert( text != NULL );
494         assert( text->bv_val != NULL );
495         assert( text->bv_val[0] == '\0' );      /* overconservative? */
496
497         Debug( LDAP_DEBUG_TRACE, "=> " LDAP_XSTRING(bdb_tool_entry_put)
498                 "( %ld, \"%s\" )\n", (long) e->e_id, e->e_dn, 0 );
499
500         if (! (slapMode & SLAP_TOOL_QUICK)) {
501         rc = TXN_BEGIN( bdb->bi_dbenv, NULL, &tid, 
502                 bdb->bi_db_opflags );
503         if( rc != 0 ) {
504                 snprintf( text->bv_val, text->bv_len,
505                         "txn_begin failed: %s (%d)",
506                         db_strerror(rc), rc );
507                 Debug( LDAP_DEBUG_ANY,
508                         "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
509                          text->bv_val, 0, 0 );
510                 return NOID;
511         }
512         }
513
514         op.o_hdr = &ohdr;
515         op.o_bd = be;
516         op.o_tmpmemctx = NULL;
517         op.o_tmpmfuncs = &ch_mfuncs;
518
519         /* add dn2id indices */
520         rc = bdb_tool_next_id( &op, tid, e, text, 0 );
521         if( rc != 0 ) {
522                 goto done;
523         }
524
525         if ( !bdb->bi_linear_index )
526                 rc = bdb_tool_index_add( &op, tid, e );
527         if( rc != 0 ) {
528                 snprintf( text->bv_val, text->bv_len,
529                                 "index_entry_add failed: %s (%d)",
530                                 db_strerror(rc), rc );
531                 Debug( LDAP_DEBUG_ANY,
532                         "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
533                         text->bv_val, 0, 0 );
534                 goto done;
535         }
536
537         /* id2entry index */
538         rc = bdb_id2entry_add( be, tid, e );
539         if( rc != 0 ) {
540                 snprintf( text->bv_val, text->bv_len,
541                                 "id2entry_add failed: %s (%d)",
542                                 db_strerror(rc), rc );
543                 Debug( LDAP_DEBUG_ANY,
544                         "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
545                         text->bv_val, 0, 0 );
546                 goto done;
547         }
548
549 done:
550         if( rc == 0 ) {
551                 if ( !( slapMode & SLAP_TOOL_QUICK )) {
552                 rc = TXN_COMMIT( tid, 0 );
553                 if( rc != 0 ) {
554                         snprintf( text->bv_val, text->bv_len,
555                                         "txn_commit failed: %s (%d)",
556                                         db_strerror(rc), rc );
557                         Debug( LDAP_DEBUG_ANY,
558                                 "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
559                                 text->bv_val, 0, 0 );
560                         e->e_id = NOID;
561                 }
562                 }
563
564         } else {
565                 if ( !( slapMode & SLAP_TOOL_QUICK )) {
566                 TXN_ABORT( tid );
567                 snprintf( text->bv_val, text->bv_len,
568                         "txn_aborted! %s (%d)",
569                         db_strerror(rc), rc );
570                 Debug( LDAP_DEBUG_ANY,
571                         "=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
572                         text->bv_val, 0, 0 );
573                 }
574                 e->e_id = NOID;
575         }
576
577         return e->e_id;
578 }
579
580 int bdb_tool_entry_reindex(
581         BackendDB *be,
582         ID id,
583         AttributeDescription **adv )
584 {
585         struct bdb_info *bi = (struct bdb_info *) be->be_private;
586         int rc;
587         Entry *e;
588         DB_TXN *tid = NULL;
589         Operation op = {0};
590         Opheader ohdr = {0};
591
592         Debug( LDAP_DEBUG_ARGS,
593                 "=> " LDAP_XSTRING(bdb_tool_entry_reindex) "( %ld )\n",
594                 (long) id, 0, 0 );
595
596         /* No indexes configured, nothing to do. Could return an
597          * error here to shortcut things.
598          */
599         if (!bi->bi_attrs) {
600                 return 0;
601         }
602
603         /* Check for explicit list of attrs to index */
604         if ( adv ) {
605                 int i, j, n;
606
607                 /* count */
608                 for ( n = 0; adv[n]; n++ ) ;
609
610                 /* insertion sort */
611                 for ( i = 0; i < n; i++ ) {
612                         AttributeDescription *ad = adv[i];
613                         for ( j = i-1; j>=0; j--) {
614                                 if ( SLAP_PTRCMP( adv[j], ad ) <= 0 ) break;
615                                 adv[j+1] = adv[j];
616                         }
617                         adv[j+1] = ad;
618                 }
619
620                 for ( i = 0; adv[i]; i++ ) {
621                         if ( bi->bi_attrs[i]->ai_desc != adv[i] ) {
622                                 for ( j = i+1; j < bi->bi_nattrs; j++ ) {
623                                         if ( bi->bi_attrs[j]->ai_desc == adv[i] ) {
624                                                 AttrInfo *ai = bi->bi_attrs[i];
625                                                 bi->bi_attrs[i] = bi->bi_attrs[j];
626                                                 bi->bi_attrs[j] = ai;
627                                                 break;
628                                         }
629                                 }
630                                 if ( j == bi->bi_nattrs ) {
631                                         Debug( LDAP_DEBUG_ANY,
632                                                 LDAP_XSTRING(bdb_tool_entry_reindex)
633                                                 ": no index configured for %s\n",
634                                                 adv[i]->ad_cname.bv_val, 0, 0 );
635                                         return -1;
636                                 }
637                         }
638                 }
639                 bi->bi_nattrs = i;
640         }
641
642         /* Get the first attribute to index */
643         if (bi->bi_linear_index && !index_nattrs) {
644                 index_nattrs = bi->bi_nattrs - 1;
645                 bi->bi_nattrs = 1;
646         }
647
648         e = bdb_tool_entry_get( be, id );
649
650         if( e == NULL ) {
651                 Debug( LDAP_DEBUG_ANY,
652                         LDAP_XSTRING(bdb_tool_entry_reindex)
653                         ": could not locate id=%ld\n",
654                         (long) id, 0, 0 );
655                 return -1;
656         }
657
658         if (! (slapMode & SLAP_TOOL_QUICK)) {
659         rc = TXN_BEGIN( bi->bi_dbenv, NULL, &tid, bi->bi_db_opflags );
660         if( rc != 0 ) {
661                 Debug( LDAP_DEBUG_ANY,
662                         "=> " LDAP_XSTRING(bdb_tool_entry_reindex) ": "
663                         "txn_begin failed: %s (%d)\n",
664                         db_strerror(rc), rc, 0 );
665                 goto done;
666         }
667         }
668         
669         /*
670          * just (re)add them for now
671          * assume that some other routine (not yet implemented)
672          * will zap index databases
673          *
674          */
675
676         Debug( LDAP_DEBUG_TRACE,
677                 "=> " LDAP_XSTRING(bdb_tool_entry_reindex) "( %ld, \"%s\" )\n",
678                 (long) id, e->e_dn, 0 );
679
680         op.o_hdr = &ohdr;
681         op.o_bd = be;
682         op.o_tmpmemctx = NULL;
683         op.o_tmpmfuncs = &ch_mfuncs;
684
685         rc = bdb_tool_index_add( &op, tid, e );
686
687 done:
688         if( rc == 0 ) {
689                 if (! (slapMode & SLAP_TOOL_QUICK)) {
690                 rc = TXN_COMMIT( tid, 0 );
691                 if( rc != 0 ) {
692                         Debug( LDAP_DEBUG_ANY,
693                                 "=> " LDAP_XSTRING(bdb_tool_entry_reindex)
694                                 ": txn_commit failed: %s (%d)\n",
695                                 db_strerror(rc), rc, 0 );
696                         e->e_id = NOID;
697                 }
698                 }
699
700         } else {
701                 if (! (slapMode & SLAP_TOOL_QUICK)) {
702                 TXN_ABORT( tid );
703                 Debug( LDAP_DEBUG_ANY,
704                         "=> " LDAP_XSTRING(bdb_tool_entry_reindex)
705                         ": txn_aborted! %s (%d)\n",
706                         db_strerror(rc), rc, 0 );
707                 }
708                 e->e_id = NOID;
709         }
710         bdb_entry_release( &op, e, 0 );
711
712         return rc;
713 }
714
715 ID bdb_tool_entry_modify(
716         BackendDB *be,
717         Entry *e,
718         struct berval *text )
719 {
720         int rc;
721         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
722         DB_TXN *tid = NULL;
723         Operation op = {0};
724         Opheader ohdr = {0};
725
726         assert( be != NULL );
727         assert( slapMode & SLAP_TOOL_MODE );
728
729         assert( text != NULL );
730         assert( text->bv_val != NULL );
731         assert( text->bv_val[0] == '\0' );      /* overconservative? */
732
733         assert ( e->e_id != NOID );
734
735         Debug( LDAP_DEBUG_TRACE,
736                 "=> " LDAP_XSTRING(bdb_tool_entry_modify) "( %ld, \"%s\" )\n",
737                 (long) e->e_id, e->e_dn, 0 );
738
739         if (! (slapMode & SLAP_TOOL_QUICK)) {
740         rc = TXN_BEGIN( bdb->bi_dbenv, NULL, &tid, 
741                 bdb->bi_db_opflags );
742         if( rc != 0 ) {
743                 snprintf( text->bv_val, text->bv_len,
744                         "txn_begin failed: %s (%d)",
745                         db_strerror(rc), rc );
746                 Debug( LDAP_DEBUG_ANY,
747                         "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": %s\n",
748                          text->bv_val, 0, 0 );
749                 return NOID;
750         }
751         }
752
753         op.o_hdr = &ohdr;
754         op.o_bd = be;
755         op.o_tmpmemctx = NULL;
756         op.o_tmpmfuncs = &ch_mfuncs;
757
758         /* id2entry index */
759         rc = bdb_id2entry_update( be, tid, e );
760         if( rc != 0 ) {
761                 snprintf( text->bv_val, text->bv_len,
762                                 "id2entry_add failed: %s (%d)",
763                                 db_strerror(rc), rc );
764                 Debug( LDAP_DEBUG_ANY,
765                         "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": %s\n",
766                         text->bv_val, 0, 0 );
767                 goto done;
768         }
769
770 done:
771         if( rc == 0 ) {
772                 if (! (slapMode & SLAP_TOOL_QUICK)) {
773                 rc = TXN_COMMIT( tid, 0 );
774                 if( rc != 0 ) {
775                         snprintf( text->bv_val, text->bv_len,
776                                         "txn_commit failed: %s (%d)",
777                                         db_strerror(rc), rc );
778                         Debug( LDAP_DEBUG_ANY,
779                                 "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": "
780                                 "%s\n", text->bv_val, 0, 0 );
781                         e->e_id = NOID;
782                 }
783                 }
784
785         } else {
786                 if (! (slapMode & SLAP_TOOL_QUICK)) {
787                 TXN_ABORT( tid );
788                 snprintf( text->bv_val, text->bv_len,
789                         "txn_aborted! %s (%d)",
790                         db_strerror(rc), rc );
791                 Debug( LDAP_DEBUG_ANY,
792                         "=> " LDAP_XSTRING(bdb_tool_entry_modify) ": %s\n",
793                         text->bv_val, 0, 0 );
794                 }
795                 e->e_id = NOID;
796         }
797
798         return e->e_id;
799 }
800
801 #ifdef BDB_TOOL_IDL_CACHING
802 static int
803 bdb_tool_idl_cmp( const void *v1, const void *v2 )
804 {
805         const bdb_tool_idl_cache *c1 = v1, *c2 = v2;
806         int rc;
807
808         if (( rc = c1->kstr.bv_len - c2->kstr.bv_len )) return rc;
809         return memcmp( c1->kstr.bv_val, c2->kstr.bv_val, c1->kstr.bv_len );
810 }
811
812 static int
813 bdb_tool_idl_flush_one( void *v1, void *arg )
814 {
815         bdb_tool_idl_cache *ic = v1;
816         DB *db = arg;
817         struct bdb_info *bdb = bdb_tool_info;
818         bdb_tool_idl_cache_entry *ice;
819         DBC *curs;
820         DBT key, data;
821         int i, rc;
822         ID id, nid;
823
824         /* Freshly allocated, ignore it */
825         if ( !ic->head && ic->count <= BDB_IDL_DB_SIZE ) {
826                 return 0;
827         }
828
829         rc = db->cursor( db, NULL, &curs, 0 );
830         if ( rc )
831                 return -1;
832
833         DBTzero( &key );
834         DBTzero( &data );
835
836         bv2DBT( &ic->kstr, &key );
837
838         data.size = data.ulen = sizeof( ID );
839         data.flags = DB_DBT_USERMEM;
840         data.data = &nid;
841
842         rc = curs->c_get( curs, &key, &data, DB_SET );
843         /* If key already exists and we're writing a range... */
844         if ( rc == 0 && ic->count > BDB_IDL_DB_SIZE ) {
845                 /* If it's not currently a range, must delete old info */
846                 if ( nid ) {
847                         /* Skip lo */
848                         while ( curs->c_get( curs, &key, &data, DB_NEXT_DUP ) == 0 )
849                                 curs->c_del( curs, 0 );
850
851                         nid = 0;
852                         /* Store range marker */
853                         curs->c_put( curs, &key, &data, DB_KEYFIRST );
854                 } else {
855                         
856                         /* Skip lo */
857                         rc = curs->c_get( curs, &key, &data, DB_NEXT_DUP );
858
859                         /* Get hi */
860                         rc = curs->c_get( curs, &key, &data, DB_NEXT_DUP );
861
862                         /* Delete hi */
863                         curs->c_del( curs, 0 );
864                 }
865                 BDB_ID2DISK( ic->last, &nid );
866                 curs->c_put( curs, &key, &data, DB_KEYLAST );
867                 rc = 0;
868         } else if ( rc && rc != DB_NOTFOUND ) {
869                 rc = -1;
870         } else if ( ic->count > BDB_IDL_DB_SIZE ) {
871                 /* range, didn't exist before */
872                 nid = 0;
873                 rc = curs->c_put( curs, &key, &data, DB_KEYLAST );
874                 if ( rc == 0 ) {
875                         BDB_ID2DISK( ic->first, &nid );
876                         rc = curs->c_put( curs, &key, &data, DB_KEYLAST );
877                         if ( rc == 0 ) {
878                                 BDB_ID2DISK( ic->last, &nid );
879                                 rc = curs->c_put( curs, &key, &data, DB_KEYLAST );
880                         }
881                 }
882                 if ( rc ) {
883                         rc = -1;
884                 }
885         } else {
886                 int n;
887
888                 /* Just a normal write */
889                 rc = 0;
890                 for ( ice = ic->head, n=0; ice; ice = ice->next, n++ ) {
891                         int end;
892                         if ( ice->next ) {
893                                 end = IDBLOCK;
894                         } else {
895                                 end = ic->count & (IDBLOCK-1);
896                                 if ( !end )
897                                         end = IDBLOCK;
898                         }
899                         for ( i=0; i<end; i++ ) {
900                                 if ( !ice->ids[i] ) continue;
901                                 BDB_ID2DISK( ice->ids[i], &nid );
902                                 rc = curs->c_put( curs, &key, &data, DB_NODUPDATA );
903                                 if ( rc ) {
904                                         if ( rc == DB_KEYEXIST ) {
905                                                 rc = 0;
906                                                 continue;
907                                         }
908                                         rc = -1;
909                                         break;
910                                 }
911                         }
912                         if ( rc ) {
913                                 rc = -1;
914                                 break;
915                         }
916                 }
917                 if ( ic->head ) {
918                         ldap_pvt_thread_mutex_lock( &bdb->bi_idl_tree_lrulock );
919                         ic->tail->next = bdb_tool_idl_free_list;
920                         bdb_tool_idl_free_list = ic->head;
921                         bdb->bi_idl_cache_size -= n;
922                         ldap_pvt_thread_mutex_unlock( &bdb->bi_idl_tree_lrulock );
923                 }
924         }
925         if ( ic != db->app_private ) {
926                 ch_free( ic );
927         } else {
928                 ic->head = ic->tail = NULL;
929         }
930         curs->c_close( curs );
931         return rc;
932 }
933
934 static int
935 bdb_tool_idl_flush_db( DB *db, bdb_tool_idl_cache *ic )
936 {
937         Avlnode *root = db->app_private;
938         int rc;
939
940         db->app_private = ic;
941         rc = avl_apply( root, bdb_tool_idl_flush_one, db, -1, AVL_INORDER );
942         avl_free( root, NULL );
943         db->app_private = NULL;
944         if ( rc != -1 )
945                 rc = 0;
946         return rc;
947 }
948
949 static int
950 bdb_tool_idl_flush( BackendDB *be )
951 {
952         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
953         DB *db;
954         Avlnode *root;
955         int i, rc = 0;
956
957         for ( i=BDB_NDB; i < bdb->bi_ndatabases; i++ ) {
958                 db = bdb->bi_databases[i]->bdi_db;
959                 if ( !db->app_private ) continue;
960                 rc = bdb_tool_idl_flush_db( db, NULL );
961                 if ( rc )
962                         break;
963         }
964         if ( !rc ) {
965                 bdb->bi_idl_cache_size = 0;
966         }
967         return rc;
968 }
969
970 int bdb_tool_idl_add(
971         BackendDB *be,
972         DB *db,
973         DB_TXN *txn,
974         DBT *key,
975         ID id )
976 {
977         struct bdb_info *bdb = (struct bdb_info *) be->be_private;
978         bdb_tool_idl_cache *ic, itmp;
979         bdb_tool_idl_cache_entry *ice;
980         int rc;
981
982         if ( !bdb->bi_idl_cache_max_size )
983                 return bdb_idl_insert_key( be, db, txn, key, id );
984
985         DBT2bv( key, &itmp.kstr );
986
987         ic = avl_find( (Avlnode *)db->app_private, &itmp, bdb_tool_idl_cmp );
988
989         /* No entry yet, create one */
990         if ( !ic ) {
991                 DBC *curs;
992                 DBT data;
993                 ID nid;
994                 int rc;
995
996                 ic = ch_malloc( sizeof( bdb_tool_idl_cache ) + itmp.kstr.bv_len );
997                 ic->kstr.bv_len = itmp.kstr.bv_len;
998                 ic->kstr.bv_val = (char *)(ic+1);
999                 AC_MEMCPY( ic->kstr.bv_val, itmp.kstr.bv_val, ic->kstr.bv_len );
1000                 ic->head = ic->tail = NULL;
1001                 ic->last = 0;
1002                 ic->count = 0;
1003                 avl_insert( (Avlnode **)&db->app_private, ic, bdb_tool_idl_cmp,
1004                         avl_dup_error );
1005
1006                 /* load existing key count here */
1007                 rc = db->cursor( db, NULL, &curs, 0 );
1008                 if ( rc ) return rc;
1009
1010                 data.ulen = sizeof( ID );
1011                 data.flags = DB_DBT_USERMEM;
1012                 data.data = &nid;
1013                 rc = curs->c_get( curs, key, &data, DB_SET );
1014                 if ( rc == 0 ) {
1015                         if ( nid == 0 ) {
1016                                 ic->count = BDB_IDL_DB_SIZE+1;
1017                         } else {
1018                                 db_recno_t count;
1019
1020                                 curs->c_count( curs, &count, 0 );
1021                                 ic->count = count;
1022                                 BDB_DISK2ID( &nid, &ic->first );
1023                         }
1024                 }
1025                 curs->c_close( curs );
1026         }
1027         /* are we a range already? */
1028         if ( ic->count > BDB_IDL_DB_SIZE ) {
1029                 ic->last = id;
1030                 return 0;
1031         /* Are we at the limit, and converting to a range? */
1032         } else if ( ic->count == BDB_IDL_DB_SIZE ) {
1033                 int n;
1034                 for ( ice = ic->head, n=0; ice; ice = ice->next, n++ )
1035                         /* counting */ ;
1036                 if ( n ) {
1037                         ldap_pvt_thread_mutex_lock( &bdb->bi_idl_tree_lrulock );
1038                         ic->tail->next = bdb_tool_idl_free_list;
1039                         bdb_tool_idl_free_list = ic->head;
1040                         bdb->bi_idl_cache_size -= n;
1041                         ldap_pvt_thread_mutex_unlock( &bdb->bi_idl_tree_lrulock );
1042                 }
1043                 ic->head = ic->tail = NULL;
1044                 ic->last = id;
1045                 ic->count++;
1046                 return 0;
1047         }
1048         /* No free block, create that too */
1049         if ( !ic->tail || ( ic->count & (IDBLOCK-1)) == 0) {
1050                 ice = NULL;
1051                 ldap_pvt_thread_mutex_lock( &bdb->bi_idl_tree_lrulock );
1052                 if ( bdb->bi_idl_cache_size >= bdb->bi_idl_cache_max_size ) {
1053                         ldap_pvt_thread_mutex_unlock( &bdb->bi_idl_tree_lrulock );
1054                         rc = bdb_tool_idl_flush_db( db, ic );
1055                         if ( rc )
1056                                 return rc;
1057                         avl_insert( (Avlnode **)&db->app_private, ic, bdb_tool_idl_cmp,
1058                                 avl_dup_error );
1059                         ldap_pvt_thread_mutex_lock( &bdb->bi_idl_tree_lrulock );
1060                 }
1061                 bdb->bi_idl_cache_size++;
1062                 if ( bdb_tool_idl_free_list ) {
1063                         ice = bdb_tool_idl_free_list;
1064                         bdb_tool_idl_free_list = ice->next;
1065                 }
1066                 ldap_pvt_thread_mutex_unlock( &bdb->bi_idl_tree_lrulock );
1067                 if ( !ice ) {
1068                         ice = ch_malloc( sizeof( bdb_tool_idl_cache_entry ));
1069                 }
1070                 memset( ice, 0, sizeof( *ice ));
1071                 if ( !ic->head ) {
1072                         ic->head = ice;
1073                 } else {
1074                         ic->tail->next = ice;
1075                 }
1076                 ic->tail = ice;
1077                 if ( !ic->count )
1078                         ic->first = id;
1079         }
1080         ice = ic->tail;
1081         ice->ids[ ic->count & (IDBLOCK-1) ] = id;
1082         ic->count++;
1083
1084         return 0;
1085 }
1086 #endif
1087
1088 static void *
1089 bdb_tool_index_task( void *ctx, void *ptr )
1090 {
1091         int base = *(int *)ptr;
1092
1093         free( ptr );
1094         while ( 1 ) {
1095                 ldap_pvt_thread_mutex_lock( &bdb_tool_index_mutex );
1096                 bdb_tool_index_tcount--;
1097                 if ( !bdb_tool_index_tcount )
1098                         ldap_pvt_thread_cond_signal( &bdb_tool_index_cond_main );
1099                 ldap_pvt_thread_cond_wait( &bdb_tool_index_cond_work,
1100                         &bdb_tool_index_mutex );
1101                 ldap_pvt_thread_mutex_unlock( &bdb_tool_index_mutex );
1102                 if ( slapd_shutdown )
1103                         break;
1104
1105                 bdb_tool_index_threads[base] = bdb_index_recrun( bdb_tool_ix_op,
1106                         bdb_tool_info, bdb_tool_index_rec, bdb_tool_ix_id, base );
1107         }
1108
1109         return NULL;
1110 }