]> git.sur5r.net Git - openldap/blob - servers/slapd/back-mdb/tools.c
Merge remote branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_4
[openldap] / servers / slapd / back-mdb / 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 2011-2012 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-mdb.h"
25 #include "idl.h"
26
27 #ifdef MDB_TOOL_IDL_CACHING
28 static int mdb_tool_idl_flush( BackendDB *be, MDB_txn *txn );
29
30 #define IDBLOCK 1024
31
32 typedef struct mdb_tool_idl_cache_entry {
33         struct mdb_tool_idl_cache_entry *next;
34         ID ids[IDBLOCK];
35 } mdb_tool_idl_cache_entry;
36
37 typedef struct mdb_tool_idl_cache {
38         struct berval kstr;
39         mdb_tool_idl_cache_entry *head, *tail;
40         ID first, last;
41         int count;
42         short offset;
43         short flags;
44 } mdb_tool_idl_cache;
45 #define WAS_FOUND       0x01
46 #define WAS_RANGE       0x02
47
48 #define MDB_TOOL_IDL_FLUSH(be, txn)     mdb_tool_idl_flush(be, txn)
49 #else
50 #define MDB_TOOL_IDL_FLUSH(be, txn)
51 #endif /* MDB_TOOL_IDL_CACHING */
52
53 static MDB_txn *txn = NULL, *txi = NULL;
54 static MDB_cursor *cursor = NULL, *idcursor = NULL;
55 static MDB_cursor *mcp = NULL, *mcd = NULL;
56 static MDB_val key, data;
57 static ID previd = NOID;
58
59 typedef struct dn_id {
60         ID id;
61         struct berval dn;
62 } dn_id;
63
64 #define HOLE_SIZE       4096
65 static dn_id hbuf[HOLE_SIZE], *holes = hbuf;
66 static unsigned nhmax = HOLE_SIZE;
67 static unsigned nholes;
68
69 static struct berval    *tool_base;
70 static int              tool_scope;
71 static Filter           *tool_filter;
72 static Entry            *tool_next_entry;
73
74 static ID mdb_tool_ix_id;
75 static Operation *mdb_tool_ix_op;
76 static MDB_txn *mdb_tool_ix_txn;
77 static int mdb_tool_index_tcount, mdb_tool_threads;
78 static IndexRec *mdb_tool_index_rec;
79 static struct mdb_info *mdb_tool_info;
80 static ldap_pvt_thread_mutex_t mdb_tool_index_mutex;
81 static ldap_pvt_thread_cond_t mdb_tool_index_cond_main;
82 static ldap_pvt_thread_cond_t mdb_tool_index_cond_work;
83 static void * mdb_tool_index_task( void *ctx, void *ptr );
84
85 static int      mdb_writes, mdb_writes_per_commit;
86
87 static int
88 mdb_tool_entry_get_int( BackendDB *be, ID id, Entry **ep );
89
90 int mdb_tool_entry_open(
91         BackendDB *be, int mode )
92 {
93         /* In Quick mode, commit once per 1000 entries */
94         mdb_writes = 0;
95         if ( slapMode & SLAP_TOOL_QUICK )
96                 mdb_writes_per_commit = 1000;
97         else
98                 mdb_writes_per_commit = 1;
99
100         /* Set up for threaded slapindex */
101         if (( slapMode & (SLAP_TOOL_QUICK|SLAP_TOOL_READONLY)) == SLAP_TOOL_QUICK ) {
102                 if ( !mdb_tool_info ) {
103                         struct mdb_info *mdb = (struct mdb_info *) be->be_private;
104                         ldap_pvt_thread_mutex_init( &mdb_tool_index_mutex );
105                         ldap_pvt_thread_cond_init( &mdb_tool_index_cond_main );
106                         ldap_pvt_thread_cond_init( &mdb_tool_index_cond_work );
107                         if ( mdb->mi_nattrs ) {
108                                 int i;
109                                 mdb_tool_threads = slap_tool_thread_max - 1;
110                                 if ( mdb_tool_threads > 1 ) {
111                                         mdb_tool_index_rec = ch_calloc( mdb->mi_nattrs, sizeof( IndexRec ));
112                                         mdb_tool_index_tcount = mdb_tool_threads - 1;
113                                         for (i=1; i<mdb_tool_threads; i++) {
114                                                 int *ptr = ch_malloc( sizeof( int ));
115                                                 *ptr = i;
116                                                 ldap_pvt_thread_pool_submit( &connection_pool,
117                                                         mdb_tool_index_task, ptr );
118                                         }
119                                         mdb_tool_info = mdb;
120                                 }
121                         }
122                 }
123         }
124
125         return 0;
126 }
127
128 int mdb_tool_entry_close(
129         BackendDB *be )
130 {
131         if ( mdb_tool_info ) {
132                 slapd_shutdown = 1;
133                 ldap_pvt_thread_mutex_lock( &mdb_tool_index_mutex );
134
135                 /* There might still be some threads starting */
136                 while ( mdb_tool_index_tcount > 0 ) {
137                         ldap_pvt_thread_cond_wait( &mdb_tool_index_cond_main,
138                                         &mdb_tool_index_mutex );
139                 }
140
141                 mdb_tool_index_tcount = mdb_tool_threads - 1;
142                 ldap_pvt_thread_cond_broadcast( &mdb_tool_index_cond_work );
143
144                 /* Make sure all threads are stopped */
145                 while ( mdb_tool_index_tcount > 0 ) {
146                         ldap_pvt_thread_cond_wait( &mdb_tool_index_cond_main,
147                                 &mdb_tool_index_mutex );
148                 }
149                 ldap_pvt_thread_mutex_unlock( &mdb_tool_index_mutex );
150
151                 mdb_tool_info = NULL;
152                 slapd_shutdown = 0;
153                 ch_free( mdb_tool_index_rec );
154                 mdb_tool_index_tcount = mdb_tool_threads - 1;
155         }
156
157         if( idcursor ) {
158                 mdb_cursor_close( idcursor );
159                 idcursor = NULL;
160         }
161         if( cursor ) {
162                 mdb_cursor_close( cursor );
163                 cursor = NULL;
164         }
165         if( txn ) {
166                 MDB_TOOL_IDL_FLUSH( be, txn );
167                 if ( mdb_txn_commit( txn ))
168                         return -1;
169                 txn = NULL;
170         }
171
172         if( nholes ) {
173                 unsigned i;
174                 fprintf( stderr, "Error, entries missing!\n");
175                 for (i=0; i<nholes; i++) {
176                         fprintf(stderr, "  entry %ld: %s\n",
177                                 holes[i].id, holes[i].dn.bv_val);
178                 }
179                 nholes = 0;
180                 return -1;
181         }
182
183         return 0;
184 }
185
186 ID
187 mdb_tool_entry_first_x(
188         BackendDB *be,
189         struct berval *base,
190         int scope,
191         Filter *f )
192 {
193         tool_base = base;
194         tool_scope = scope;
195         tool_filter = f;
196
197         return mdb_tool_entry_next( be );
198 }
199
200 ID mdb_tool_entry_next(
201         BackendDB *be )
202 {
203         int rc;
204         ID id;
205         struct mdb_info *mdb;
206
207         assert( be != NULL );
208         assert( slapMode & SLAP_TOOL_MODE );
209
210         mdb = (struct mdb_info *) be->be_private;
211         assert( mdb != NULL );
212
213         if ( !txn ) {
214                 rc = mdb_txn_begin( mdb->mi_dbenv, NULL, MDB_RDONLY, &txn );
215                 if ( rc )
216                         return NOID;
217                 rc = mdb_cursor_open( txn, mdb->mi_id2entry, &cursor );
218                 if ( rc ) {
219                         mdb_txn_abort( txn );
220                         return NOID;
221                 }
222         }
223
224 next:;
225         rc = mdb_cursor_get( cursor, &key, &data, MDB_NEXT );
226
227         if( rc ) {
228                 return NOID;
229         }
230
231         previd = *(ID *)key.mv_data;
232         id = previd;
233
234         if ( tool_filter || tool_base ) {
235                 static Operation op = {0};
236                 static Opheader ohdr = {0};
237
238                 op.o_hdr = &ohdr;
239                 op.o_bd = be;
240                 op.o_tmpmemctx = NULL;
241                 op.o_tmpmfuncs = &ch_mfuncs;
242
243                 if ( tool_next_entry ) {
244                         mdb_entry_release( &op, tool_next_entry, 0 );
245                         tool_next_entry = NULL;
246                 }
247
248                 rc = mdb_tool_entry_get_int( be, id, &tool_next_entry );
249                 if ( rc == LDAP_NO_SUCH_OBJECT ) {
250                         goto next;
251                 }
252
253                 assert( tool_next_entry != NULL );
254
255                 if ( tool_filter && test_filter( NULL, tool_next_entry, tool_filter ) != LDAP_COMPARE_TRUE )
256                 {
257                         mdb_entry_release( &op, tool_next_entry, 0 );
258                         tool_next_entry = NULL;
259                         goto next;
260                 }
261         }
262
263         return id;
264 }
265
266 ID mdb_tool_dn2id_get(
267         Backend *be,
268         struct berval *dn
269 )
270 {
271         struct mdb_info *mdb;
272         Operation op = {0};
273         Opheader ohdr = {0};
274         ID id;
275         int rc;
276
277         if ( BER_BVISEMPTY(dn) )
278                 return 0;
279
280         mdb = (struct mdb_info *) be->be_private;
281
282         if ( !txn ) {
283                 rc = mdb_txn_begin( mdb->mi_dbenv, NULL, (slapMode & SLAP_TOOL_READONLY) != 0 ?
284                         MDB_RDONLY : 0, &txn );
285                 if ( rc )
286                         return NOID;
287         }
288
289         op.o_hdr = &ohdr;
290         op.o_bd = be;
291         op.o_tmpmemctx = NULL;
292         op.o_tmpmfuncs = &ch_mfuncs;
293
294         rc = mdb_dn2id( &op, txn, NULL, dn, &id, NULL, NULL );
295         if ( rc == MDB_NOTFOUND )
296                 return NOID;
297
298         return id;
299 }
300
301 static int
302 mdb_tool_entry_get_int( BackendDB *be, ID id, Entry **ep )
303 {
304         Operation op = {0};
305         Opheader ohdr = {0};
306
307         Entry *e = NULL;
308         struct berval dn = BER_BVNULL, ndn = BER_BVNULL;
309         int rc;
310
311         assert( be != NULL );
312         assert( slapMode & SLAP_TOOL_MODE );
313
314         if ( ( tool_filter || tool_base ) && id == previd && tool_next_entry != NULL ) {
315                 *ep = tool_next_entry;
316                 tool_next_entry = NULL;
317                 return LDAP_SUCCESS;
318         }
319
320         if ( id != previd ) {
321                 key.mv_size = sizeof(ID);
322                 key.mv_data = &id;
323                 rc = mdb_cursor_get( cursor, &key, &data, MDB_SET );
324                 if ( rc ) {
325                         rc = LDAP_OTHER;
326                         goto done;
327                 }
328         }
329
330         op.o_hdr = &ohdr;
331         op.o_bd = be;
332         op.o_tmpmemctx = NULL;
333         op.o_tmpmfuncs = &ch_mfuncs;
334         if ( slapMode & SLAP_TOOL_READONLY ) {
335                 rc = mdb_id2name( &op, txn, &idcursor, id, &dn, &ndn );
336                 if ( rc  ) {
337                         rc = LDAP_OTHER;
338                         if ( e ) {
339                                 mdb_entry_return( &op, e );
340                                 e = NULL;
341                         }
342                         goto done;
343                 }
344                 if ( tool_base != NULL ) {
345                         if ( !dnIsSuffixScope( &ndn, tool_base, tool_scope ) ) {
346                                 ch_free( dn.bv_val );
347                                 ch_free( ndn.bv_val );
348                                 rc = LDAP_NO_SUCH_OBJECT;
349                         }
350                 }
351         }
352         rc = mdb_entry_decode( &op, &data, &e );
353         e->e_id = id;
354         if ( !BER_BVISNULL( &dn )) {
355                 e->e_name = dn;
356                 e->e_nname = ndn;
357         } else {
358                 e->e_name.bv_val = NULL;
359                 e->e_nname.bv_val = NULL;
360         }
361
362 done:
363         if ( e != NULL ) {
364                 *ep = e;
365         }
366
367         return rc;
368 }
369
370 Entry*
371 mdb_tool_entry_get( BackendDB *be, ID id )
372 {
373         Entry *e = NULL;
374         int rc;
375
376         if ( !txn ) {
377                 struct mdb_info *mdb = (struct mdb_info *) be->be_private;
378                 rc = mdb_txn_begin( mdb->mi_dbenv, NULL,
379                         (slapMode & SLAP_TOOL_READONLY) ? MDB_RDONLY : 0, &txn );
380                 if ( rc )
381                         return NULL;
382         }
383         if ( !cursor ) {
384                 struct mdb_info *mdb = (struct mdb_info *) be->be_private;
385                 rc = mdb_cursor_open( txn, mdb->mi_id2entry, &cursor );
386                 if ( rc ) {
387                         mdb_txn_abort( txn );
388                         txn = NULL;
389                         return NULL;
390                 }
391         }
392         (void)mdb_tool_entry_get_int( be, id, &e );
393         return e;
394 }
395
396 static int mdb_tool_next_id(
397         Operation *op,
398         MDB_txn *tid,
399         Entry *e,
400         struct berval *text,
401         int hole )
402 {
403         struct mdb_info *mdb = (struct mdb_info *) op->o_bd->be_private;
404         struct berval dn = e->e_name;
405         struct berval ndn = e->e_nname;
406         struct berval pdn, npdn, nmatched;
407         ID id, pid = 0;
408         int rc;
409
410         if (ndn.bv_len == 0) {
411                 e->e_id = 0;
412                 return 0;
413         }
414
415         rc = mdb_dn2id( op, tid, mcp, &ndn, &id, NULL, &nmatched );
416         if ( rc == MDB_NOTFOUND ) {
417                 if ( !be_issuffix( op->o_bd, &ndn ) ) {
418                         ID eid = e->e_id;
419                         dnParent( &ndn, &npdn );
420                         if ( nmatched.bv_len != npdn.bv_len ) {
421                                 dnParent( &dn, &pdn );
422                                 e->e_name = pdn;
423                                 e->e_nname = npdn;
424                                 rc = mdb_tool_next_id( op, tid, e, text, 1 );
425                                 e->e_name = dn;
426                                 e->e_nname = ndn;
427                                 if ( rc ) {
428                                         return rc;
429                                 }
430                                 /* If parent didn't exist, it was created just now
431                                  * and its ID is now in e->e_id. Make sure the current
432                                  * entry gets added under the new parent ID.
433                                  */
434                                 if ( eid != e->e_id ) {
435                                         pid = e->e_id;
436                                 }
437                         } else {
438                                 pid = id;
439                         }
440                 }
441                 rc = mdb_next_id( op->o_bd, idcursor, &e->e_id );
442                 if ( rc ) {
443                         snprintf( text->bv_val, text->bv_len,
444                                 "next_id failed: %s (%d)",
445                                 mdb_strerror(rc), rc );
446                 Debug( LDAP_DEBUG_ANY,
447                         "=> mdb_tool_next_id: %s\n", text->bv_val, 0, 0 );
448                         return rc;
449                 }
450                 rc = mdb_dn2id_add( op, mcp, mcd, pid, e );
451                 if ( rc ) {
452                         snprintf( text->bv_val, text->bv_len,
453                                 "dn2id_add failed: %s (%d)",
454                                 mdb_strerror(rc), rc );
455                         Debug( LDAP_DEBUG_ANY,
456                                 "=> mdb_tool_next_id: %s\n", text->bv_val, 0, 0 );
457                 } else if ( hole ) {
458                         MDB_val key, data;
459                         if ( nholes == nhmax - 1 ) {
460                                 if ( holes == hbuf ) {
461                                         holes = ch_malloc( nhmax * sizeof(dn_id) * 2 );
462                                         AC_MEMCPY( holes, hbuf, sizeof(hbuf) );
463                                 } else {
464                                         holes = ch_realloc( holes, nhmax * sizeof(dn_id) * 2 );
465                                 }
466                                 nhmax *= 2;
467                         }
468                         ber_dupbv( &holes[nholes].dn, &ndn );
469                         holes[nholes++].id = e->e_id;
470                         key.mv_size = sizeof(ID);
471                         key.mv_data = &e->e_id;
472                         data.mv_size = 0;
473                         data.mv_data = NULL;
474                         rc = mdb_cursor_put( idcursor, &key, &data, MDB_NOOVERWRITE );
475                         if ( rc == MDB_KEYEXIST )
476                                 rc = 0;
477                         if ( rc ) {
478                                 snprintf( text->bv_val, text->bv_len,
479                                         "dummy id2entry add failed: %s (%d)",
480                                         mdb_strerror(rc), rc );
481                                 Debug( LDAP_DEBUG_ANY,
482                                         "=> mdb_tool_next_id: %s\n", text->bv_val, 0, 0 );
483                         }
484                 }
485         } else if ( !hole ) {
486                 unsigned i, j;
487
488                 e->e_id = id;
489
490                 for ( i=0; i<nholes; i++) {
491                         if ( holes[i].id == e->e_id ) {
492                                 free(holes[i].dn.bv_val);
493                                 for (j=i;j<nholes;j++) holes[j] = holes[j+1];
494                                 holes[j].id = 0;
495                                 nholes--;
496                                 break;
497                         } else if ( holes[i].id > e->e_id ) {
498                                 break;
499                         }
500                 }
501         }
502         return rc;
503 }
504
505 static int
506 mdb_tool_index_add(
507         Operation *op,
508         MDB_txn *txn,
509         Entry *e )
510 {
511         struct mdb_info *mdb = (struct mdb_info *) op->o_bd->be_private;
512
513         if ( !mdb->mi_nattrs )
514                 return 0;
515
516         if ( mdb_tool_threads > 1 ) {
517                 IndexRec *ir;
518                 int i, rc;
519                 Attribute *a;
520
521                 ir = mdb_tool_index_rec;
522                 for (i=0; i<mdb->mi_nattrs; i++)
523                         ir[i].ir_attrs = NULL;
524
525                 for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
526                         rc = mdb_index_recset( mdb, a, a->a_desc->ad_type,
527                                 &a->a_desc->ad_tags, ir );
528                         if ( rc )
529                                 return rc;
530                 }
531                 for (i=0; i<mdb->mi_nattrs; i++) {
532                         if ( !ir[i].ir_ai )
533                                 break;
534                         rc = mdb_cursor_open( txn, ir[i].ir_ai->ai_dbi,
535                                  &ir[i].ir_ai->ai_cursor );
536                         if ( rc )
537                                 return rc;
538                 }
539                 mdb_tool_ix_id = e->e_id;
540                 mdb_tool_ix_op = op;
541                 mdb_tool_ix_txn = txn;
542                 ldap_pvt_thread_mutex_lock( &mdb_tool_index_mutex );
543                 /* Wait for all threads to be ready */
544                 while ( mdb_tool_index_tcount ) {
545                         ldap_pvt_thread_cond_wait( &mdb_tool_index_cond_main,
546                                 &mdb_tool_index_mutex );
547                 }
548
549                 for ( i=1; i<mdb_tool_threads; i++ )
550                         mdb_tool_index_rec[i].ir_i = LDAP_BUSY;
551                 mdb_tool_index_tcount = mdb_tool_threads - 1;
552                 ldap_pvt_thread_mutex_unlock( &mdb_tool_index_mutex );
553                 ldap_pvt_thread_cond_broadcast( &mdb_tool_index_cond_work );
554
555                 rc = mdb_index_recrun( op, txn, mdb, ir, e->e_id, 0 );
556                 if ( rc )
557                         return rc;
558                 ldap_pvt_thread_mutex_lock( &mdb_tool_index_mutex );
559                 for ( i=1; i<mdb_tool_threads; i++ ) {
560                         if ( mdb_tool_index_rec[i].ir_i == LDAP_BUSY ) {
561                                 ldap_pvt_thread_cond_wait( &mdb_tool_index_cond_main,
562                                         &mdb_tool_index_mutex );
563                                 i--;
564                                 continue;
565                         }
566                         if ( mdb_tool_index_rec[i].ir_i ) {
567                                 rc = mdb_tool_index_rec[i].ir_i;
568                                 break;
569                         }
570                 }
571                 ldap_pvt_thread_mutex_unlock( &mdb_tool_index_mutex );
572                 return rc;
573         } else
574         {
575                 return mdb_index_entry_add( op, txn, e );
576         }
577 }
578
579 ID mdb_tool_entry_put(
580         BackendDB *be,
581         Entry *e,
582         struct berval *text )
583 {
584         int rc;
585         struct mdb_info *mdb;
586         Operation op = {0};
587         Opheader ohdr = {0};
588
589         assert( be != NULL );
590         assert( slapMode & SLAP_TOOL_MODE );
591
592         assert( text != NULL );
593         assert( text->bv_val != NULL );
594         assert( text->bv_val[0] == '\0' );      /* overconservative? */
595
596         Debug( LDAP_DEBUG_TRACE, "=> " LDAP_XSTRING(mdb_tool_entry_put)
597                 "( %ld, \"%s\" )\n", (long) e->e_id, e->e_dn, 0 );
598
599         mdb = (struct mdb_info *) be->be_private;
600
601         if ( !txn ) {
602                 rc = mdb_txn_begin( mdb->mi_dbenv, NULL, 0, &txn );
603                 if( rc != 0 ) {
604                         snprintf( text->bv_val, text->bv_len,
605                                 "txn_begin failed: %s (%d)",
606                                 mdb_strerror(rc), rc );
607                         Debug( LDAP_DEBUG_ANY,
608                                 "=> " LDAP_XSTRING(mdb_tool_entry_put) ": %s\n",
609                                  text->bv_val, 0, 0 );
610                         return NOID;
611                 }
612                 rc = mdb_cursor_open( txn, mdb->mi_id2entry, &idcursor );
613                 if( rc != 0 ) {
614                         snprintf( text->bv_val, text->bv_len,
615                                 "cursor_open failed: %s (%d)",
616                                 mdb_strerror(rc), rc );
617                         Debug( LDAP_DEBUG_ANY,
618                                 "=> " LDAP_XSTRING(mdb_tool_entry_put) ": %s\n",
619                                  text->bv_val, 0, 0 );
620                         return NOID;
621                 }
622                 rc = mdb_cursor_open( txn, mdb->mi_dn2id, &mcp );
623                 if( rc != 0 ) {
624                         snprintf( text->bv_val, text->bv_len,
625                                 "cursor_open failed: %s (%d)",
626                                 mdb_strerror(rc), rc );
627                         Debug( LDAP_DEBUG_ANY,
628                                 "=> " LDAP_XSTRING(mdb_tool_entry_put) ": %s\n",
629                                  text->bv_val, 0, 0 );
630                         return NOID;
631                 }
632                 rc = mdb_cursor_open( txn, mdb->mi_dn2id, &mcd );
633                 if( rc != 0 ) {
634                         snprintf( text->bv_val, text->bv_len,
635                                 "cursor_open failed: %s (%d)",
636                                 mdb_strerror(rc), rc );
637                         Debug( LDAP_DEBUG_ANY,
638                                 "=> " LDAP_XSTRING(mdb_tool_entry_put) ": %s\n",
639                                  text->bv_val, 0, 0 );
640                         return NOID;
641                 }
642         }
643
644         op.o_hdr = &ohdr;
645         op.o_bd = be;
646         op.o_tmpmemctx = NULL;
647         op.o_tmpmfuncs = &ch_mfuncs;
648
649         /* add dn2id indices */
650         rc = mdb_tool_next_id( &op, txn, e, text, 0 );
651         if( rc != 0 ) {
652                 goto done;
653         }
654
655         rc = mdb_tool_index_add( &op, txn, e );
656         if( rc != 0 ) {
657                 snprintf( text->bv_val, text->bv_len,
658                                 "index_entry_add failed: err=%d", rc );
659                 Debug( LDAP_DEBUG_ANY,
660                         "=> " LDAP_XSTRING(mdb_tool_entry_put) ": %s\n",
661                         text->bv_val, 0, 0 );
662                 goto done;
663         }
664
665
666         /* id2entry index */
667         rc = mdb_id2entry_add( &op, txn, idcursor, e );
668         if( rc != 0 ) {
669                 snprintf( text->bv_val, text->bv_len,
670                                 "id2entry_add failed: err=%d", rc );
671                 Debug( LDAP_DEBUG_ANY,
672                         "=> " LDAP_XSTRING(mdb_tool_entry_put) ": %s\n",
673                         text->bv_val, 0, 0 );
674                 goto done;
675         }
676
677 done:
678         if( rc == 0 ) {
679                 mdb_writes++;
680                 if ( mdb_writes >= mdb_writes_per_commit ) {
681                         unsigned i;
682                         MDB_TOOL_IDL_FLUSH( be, txn );
683                         rc = mdb_txn_commit( txn );
684                         for ( i=0; i<mdb->mi_nattrs; i++ )
685                                 mdb->mi_attrs[i]->ai_cursor = NULL;
686                         mdb_writes = 0;
687                         txn = NULL;
688                         idcursor = NULL;
689                         if( rc != 0 ) {
690                                 snprintf( text->bv_val, text->bv_len,
691                                                 "txn_commit failed: %s (%d)",
692                                                 mdb_strerror(rc), rc );
693                                 Debug( LDAP_DEBUG_ANY,
694                                         "=> " LDAP_XSTRING(mdb_tool_entry_put) ": %s\n",
695                                         text->bv_val, 0, 0 );
696                                 e->e_id = NOID;
697                         }
698                 }
699
700         } else {
701                 unsigned i;
702                 mdb_txn_abort( txn );
703                 txn = NULL;
704                 idcursor = NULL;
705                 for ( i=0; i<mdb->mi_nattrs; i++ )
706                         mdb->mi_attrs[i]->ai_cursor = NULL;
707                 mdb_writes = 0;
708                 snprintf( text->bv_val, text->bv_len,
709                         "txn_aborted! %s (%d)",
710                         rc == LDAP_OTHER ? "Internal error" :
711                         mdb_strerror(rc), rc );
712                 Debug( LDAP_DEBUG_ANY,
713                         "=> " LDAP_XSTRING(mdb_tool_entry_put) ": %s\n",
714                         text->bv_val, 0, 0 );
715                 e->e_id = NOID;
716         }
717
718         return e->e_id;
719 }
720
721 int mdb_tool_entry_reindex(
722         BackendDB *be,
723         ID id,
724         AttributeDescription **adv )
725 {
726         struct mdb_info *mi = (struct mdb_info *) be->be_private;
727         int rc;
728         Entry *e;
729         Operation op = {0};
730         Opheader ohdr = {0};
731
732         Debug( LDAP_DEBUG_ARGS,
733                 "=> " LDAP_XSTRING(mdb_tool_entry_reindex) "( %ld )\n",
734                 (long) id, 0, 0 );
735         assert( tool_base == NULL );
736         assert( tool_filter == NULL );
737
738         /* No indexes configured, nothing to do. Could return an
739          * error here to shortcut things.
740          */
741         if (!mi->mi_attrs) {
742                 return 0;
743         }
744
745         /* Check for explicit list of attrs to index */
746         if ( adv ) {
747                 int i, j, n;
748
749                 if ( mi->mi_attrs[0]->ai_desc != adv[0] ) {
750                         /* count */
751                         for ( n = 0; adv[n]; n++ ) ;
752
753                         /* insertion sort */
754                         for ( i = 0; i < n; i++ ) {
755                                 AttributeDescription *ad = adv[i];
756                                 for ( j = i-1; j>=0; j--) {
757                                         if ( SLAP_PTRCMP( adv[j], ad ) <= 0 ) break;
758                                         adv[j+1] = adv[j];
759                                 }
760                                 adv[j+1] = ad;
761                         }
762                 }
763
764                 for ( i = 0; adv[i]; i++ ) {
765                         if ( mi->mi_attrs[i]->ai_desc != adv[i] ) {
766                                 for ( j = i+1; j < mi->mi_nattrs; j++ ) {
767                                         if ( mi->mi_attrs[j]->ai_desc == adv[i] ) {
768                                                 AttrInfo *ai = mi->mi_attrs[i];
769                                                 mi->mi_attrs[i] = mi->mi_attrs[j];
770                                                 mi->mi_attrs[j] = ai;
771                                                 break;
772                                         }
773                                 }
774                                 if ( j == mi->mi_nattrs ) {
775                                         Debug( LDAP_DEBUG_ANY,
776                                                 LDAP_XSTRING(mdb_tool_entry_reindex)
777                                                 ": no index configured for %s\n",
778                                                 adv[i]->ad_cname.bv_val, 0, 0 );
779                                         return -1;
780                                 }
781                         }
782                 }
783                 mi->mi_nattrs = i;
784         }
785
786         e = mdb_tool_entry_get( be, id );
787
788         if( e == NULL ) {
789                 Debug( LDAP_DEBUG_ANY,
790                         LDAP_XSTRING(mdb_tool_entry_reindex)
791                         ": could not locate id=%ld\n",
792                         (long) id, 0, 0 );
793                 return -1;
794         }
795
796         if ( !txi ) {
797                 rc = mdb_txn_begin( mi->mi_dbenv, NULL, 0, &txi );
798                 if( rc != 0 ) {
799                         Debug( LDAP_DEBUG_ANY,
800                                 "=> " LDAP_XSTRING(mdb_tool_entry_reindex) ": "
801                                 "txn_begin failed: %s (%d)\n",
802                                 mdb_strerror(rc), rc, 0 );
803                         goto done;
804                 }
805         }
806
807         if ( slapMode & SLAP_TRUNCATE_MODE ) {
808                 int i;
809                 for ( i=0; i < mi->mi_nattrs; i++ ) {
810                         rc = mdb_drop( txi, mi->mi_attrs[i]->ai_dbi, 0 );
811                         if ( rc ) {
812                                 Debug( LDAP_DEBUG_ANY,
813                                         LDAP_XSTRING(mdb_tool_entry_reindex)
814                                         ": (Truncate) mdb_drop(%s) failed: %s (%d)\n",
815                                         mi->mi_attrs[i]->ai_desc->ad_type->sat_cname.bv_val,
816                                         mdb_strerror(rc), rc );
817                                 return -1;
818                         }
819                 }
820                 slapMode ^= SLAP_TRUNCATE_MODE;
821         }
822
823         /*
824          * just (re)add them for now
825          * Use truncate mode to empty/reset index databases
826          */
827
828         Debug( LDAP_DEBUG_TRACE,
829                 "=> " LDAP_XSTRING(mdb_tool_entry_reindex) "( %ld )\n",
830                 (long) id, 0, 0 );
831
832         op.o_hdr = &ohdr;
833         op.o_bd = be;
834         op.o_tmpmemctx = NULL;
835         op.o_tmpmfuncs = &ch_mfuncs;
836
837         rc = mdb_tool_index_add( &op, txi, e );
838
839 done:
840         if( rc == 0 ) {
841                 mdb_writes++;
842                 if ( mdb_writes >= mdb_writes_per_commit ) {
843                         unsigned i;
844                         MDB_TOOL_IDL_FLUSH( be, txi );
845                         rc = mdb_txn_commit( txi );
846                         mdb_writes = 0;
847                         for ( i=0; i<mi->mi_nattrs; i++ )
848                                 mi->mi_attrs[i]->ai_cursor = NULL;
849                         if( rc != 0 ) {
850                                 Debug( LDAP_DEBUG_ANY,
851                                         "=> " LDAP_XSTRING(mdb_tool_entry_reindex)
852                                         ": txn_commit failed: %s (%d)\n",
853                                         mdb_strerror(rc), rc, 0 );
854                                 e->e_id = NOID;
855                         }
856                         txi = NULL;
857                 }
858
859         } else {
860                 unsigned i;
861                 mdb_writes = 0;
862                 mdb_txn_abort( txi );
863                 for ( i=0; i<mi->mi_nattrs; i++ )
864                         mi->mi_attrs[i]->ai_cursor = NULL;
865                 Debug( LDAP_DEBUG_ANY,
866                         "=> " LDAP_XSTRING(mdb_tool_entry_reindex)
867                         ": txn_aborted! err=%d\n",
868                         rc, 0, 0 );
869                 e->e_id = NOID;
870                 txi = NULL;
871         }
872         mdb_entry_release( &op, e, 0 );
873
874         return rc;
875 }
876
877 ID mdb_tool_entry_modify(
878         BackendDB *be,
879         Entry *e,
880         struct berval *text )
881 {
882         int rc;
883         struct mdb_info *mdb;
884         Operation op = {0};
885         Opheader ohdr = {0};
886
887         assert( be != NULL );
888         assert( slapMode & SLAP_TOOL_MODE );
889
890         assert( text != NULL );
891         assert( text->bv_val != NULL );
892         assert( text->bv_val[0] == '\0' );      /* overconservative? */
893
894         assert ( e->e_id != NOID );
895
896         Debug( LDAP_DEBUG_TRACE,
897                 "=> " LDAP_XSTRING(mdb_tool_entry_modify) "( %ld, \"%s\" )\n",
898                 (long) e->e_id, e->e_dn, 0 );
899
900         mdb = (struct mdb_info *) be->be_private;
901
902         if( cursor ) {
903                 mdb_cursor_close( cursor );
904                 cursor = NULL;
905         }
906         if ( !txn ) {
907                 rc = mdb_txn_begin( mdb->mi_dbenv, NULL, 0, &txn );
908                 if( rc != 0 ) {
909                         snprintf( text->bv_val, text->bv_len,
910                                 "txn_begin failed: %s (%d)",
911                                 mdb_strerror(rc), rc );
912                         Debug( LDAP_DEBUG_ANY,
913                                 "=> " LDAP_XSTRING(mdb_tool_entry_modify) ": %s\n",
914                                  text->bv_val, 0, 0 );
915                         return NOID;
916                 }
917         }
918
919         op.o_hdr = &ohdr;
920         op.o_bd = be;
921         op.o_tmpmemctx = NULL;
922         op.o_tmpmfuncs = &ch_mfuncs;
923
924         /* id2entry index */
925         rc = mdb_id2entry_update( &op, txn, NULL, e );
926         if( rc != 0 ) {
927                 snprintf( text->bv_val, text->bv_len,
928                                 "id2entry_update failed: err=%d", rc );
929                 Debug( LDAP_DEBUG_ANY,
930                         "=> " LDAP_XSTRING(mdb_tool_entry_modify) ": %s\n",
931                         text->bv_val, 0, 0 );
932                 goto done;
933         }
934
935 done:
936         if( rc == 0 ) {
937                 rc = mdb_txn_commit( txn );
938                 if( rc != 0 ) {
939                         snprintf( text->bv_val, text->bv_len,
940                                         "txn_commit failed: %s (%d)",
941                                         mdb_strerror(rc), rc );
942                         Debug( LDAP_DEBUG_ANY,
943                                 "=> " LDAP_XSTRING(mdb_tool_entry_modify) ": "
944                                 "%s\n", text->bv_val, 0, 0 );
945                         e->e_id = NOID;
946                 }
947
948         } else {
949                 mdb_txn_abort( txn );
950                 snprintf( text->bv_val, text->bv_len,
951                         "txn_aborted! %s (%d)",
952                         mdb_strerror(rc), rc );
953                 Debug( LDAP_DEBUG_ANY,
954                         "=> " LDAP_XSTRING(mdb_tool_entry_modify) ": %s\n",
955                         text->bv_val, 0, 0 );
956                 e->e_id = NOID;
957         }
958         txn = NULL;
959
960         return e->e_id;
961 }
962
963 static void *
964 mdb_tool_index_task( void *ctx, void *ptr )
965 {
966         int base = *(int *)ptr;
967
968         free( ptr );
969         while ( 1 ) {
970                 ldap_pvt_thread_mutex_lock( &mdb_tool_index_mutex );
971                 mdb_tool_index_tcount--;
972                 if ( !mdb_tool_index_tcount )
973                         ldap_pvt_thread_cond_signal( &mdb_tool_index_cond_main );
974                 ldap_pvt_thread_cond_wait( &mdb_tool_index_cond_work,
975                         &mdb_tool_index_mutex );
976                 if ( slapd_shutdown ) {
977                         mdb_tool_index_tcount--;
978                         if ( !mdb_tool_index_tcount )
979                                 ldap_pvt_thread_cond_signal( &mdb_tool_index_cond_main );
980                         ldap_pvt_thread_mutex_unlock( &mdb_tool_index_mutex );
981                         break;
982                 }
983                 ldap_pvt_thread_mutex_unlock( &mdb_tool_index_mutex );
984                 mdb_tool_index_rec[base].ir_i = mdb_index_recrun( mdb_tool_ix_op,
985                         mdb_tool_ix_txn,
986                         mdb_tool_info, mdb_tool_index_rec, mdb_tool_ix_id, base );
987         }
988
989         return NULL;
990 }
991
992 #ifdef MDB_TOOL_IDL_CACHING
993 static int
994 mdb_tool_idl_cmp( const void *v1, const void *v2 )
995 {
996         const mdb_tool_idl_cache *c1 = v1, *c2 = v2;
997         int rc;
998
999         if (( rc = c1->kstr.bv_len - c2->kstr.bv_len )) return rc;
1000         return memcmp( c1->kstr.bv_val, c2->kstr.bv_val, c1->kstr.bv_len );
1001 }
1002
1003 static int
1004 mdb_tool_idl_flush_one( MDB_cursor *mc, AttrInfo *ai, mdb_tool_idl_cache *ic )
1005 {
1006         mdb_tool_idl_cache_entry *ice;
1007         MDB_val key, data[2];
1008         int i, rc;
1009         ID id, nid;
1010
1011         /* Freshly allocated, ignore it */
1012         if ( !ic->head && ic->count <= MDB_IDL_DB_SIZE ) {
1013                 return 0;
1014         }
1015
1016         key.mv_data = ic->kstr.bv_val;
1017         key.mv_size = ic->kstr.bv_len;
1018
1019         if ( ic->count > MDB_IDL_DB_SIZE ) {
1020                 while ( ic->flags & WAS_FOUND ) {
1021                         rc = mdb_cursor_get( mc, &key, data, MDB_SET );
1022                         if ( rc ) {
1023                                 /* FIXME: find out why this happens */
1024                                 ic->flags = 0;
1025                                 break;
1026                         }
1027                         if ( ic->flags & WAS_RANGE ) {
1028                                 /* Skip lo */
1029                                 rc = mdb_cursor_get( mc, &key, data, MDB_NEXT_DUP );
1030
1031                                 /* Get hi */
1032                                 rc = mdb_cursor_get( mc, &key, data, MDB_NEXT_DUP );
1033
1034                                 /* Store range hi */
1035                                 data[0].mv_data = &ic->last;
1036                                 rc = mdb_cursor_put( mc, &key, data, MDB_CURRENT );
1037                         } else {
1038                                 /* Delete old data, replace with range */
1039                                 ic->first = *(ID *)data[0].mv_data;
1040                                 mdb_cursor_del( mc, MDB_NODUPDATA );
1041                         }
1042                         break;
1043                 }
1044                 if ( !(ic->flags & WAS_RANGE)) {
1045                         /* range, didn't exist before */
1046                         nid = 0;
1047                         data[0].mv_size = sizeof(ID);
1048                         data[0].mv_data = &nid;
1049                         rc = mdb_cursor_put( mc, &key, data, 0 );
1050                         if ( rc == 0 ) {
1051                                 data[0].mv_data = &ic->first;
1052                                 rc = mdb_cursor_put( mc, &key, data, 0 );
1053                                 if ( rc == 0 ) {
1054                                         data[0].mv_data = &ic->last;
1055                                         rc = mdb_cursor_put( mc, &key, data, 0 );
1056                                 }
1057                         }
1058                         if ( rc ) {
1059                                 rc = -1;
1060                         }
1061                 }
1062         } else {
1063                 /* Normal write */
1064                 int n;
1065
1066                 data[0].mv_size = sizeof(ID);
1067                 rc = 0;
1068                 i = ic->offset;
1069                 for ( ice = ic->head, n=0; ice; ice = ice->next, n++ ) {
1070                         int end;
1071                         if ( ice->next ) {
1072                                 end = IDBLOCK;
1073                         } else {
1074                                 end = ic->count & (IDBLOCK-1);
1075                                 if ( !end )
1076                                         end = IDBLOCK;
1077                         }
1078                         data[1].mv_size = end - i;
1079                         data[0].mv_data = &ice->ids[i];
1080                         i = 0;
1081                         rc = mdb_cursor_put( mc, &key, data, MDB_NODUPDATA|MDB_APPEND|MDB_MULTIPLE );
1082                         if ( rc ) {
1083                                 if ( rc == MDB_KEYEXIST ) {
1084                                         rc = 0;
1085                                         continue;
1086                                 }
1087                                 rc = -1;
1088                                 break;
1089                         }
1090                 }
1091                 if ( ic->head ) {
1092                         ic->tail->next = ai->ai_flist;
1093                         ai->ai_flist = ic->head;
1094                 }
1095         }
1096         ic->head = ai->ai_clist;
1097         ai->ai_clist = ic;
1098         return rc;
1099 }
1100
1101 static int
1102 mdb_tool_idl_flush_db( MDB_txn *txn, AttrInfo *ai )
1103 {
1104         MDB_cursor *mc;
1105         Avlnode *root;
1106         int rc;
1107
1108         mdb_cursor_open( txn, ai->ai_dbi, &mc );
1109         root = tavl_end( ai->ai_root, TAVL_DIR_LEFT );
1110         do {
1111                 rc = mdb_tool_idl_flush_one( mc, ai, root->avl_data );
1112                 if ( rc != -1 )
1113                         rc = 0;
1114         } while ((root = tavl_next(root, TAVL_DIR_RIGHT)));
1115         mdb_cursor_close( mc );
1116
1117         return rc;
1118 }
1119
1120 static int
1121 mdb_tool_idl_flush( BackendDB *be, MDB_txn *txn )
1122 {
1123         struct mdb_info *mdb = (struct mdb_info *) be->be_private;
1124         int rc = 0;
1125         unsigned int i, dbi;
1126
1127         for ( i=0; i < mdb->mi_nattrs; i++ ) {
1128                 if ( !mdb->mi_attrs[i]->ai_root ) continue;
1129                 rc = mdb_tool_idl_flush_db( txn, mdb->mi_attrs[i] );
1130                 tavl_free(mdb->mi_attrs[i]->ai_root, NULL);
1131                 mdb->mi_attrs[i]->ai_root = NULL;
1132                 if ( rc )
1133                         break;
1134         }
1135         return rc;
1136 }
1137
1138 int mdb_tool_idl_add(
1139         MDB_cursor *mc,
1140         struct berval *keys,
1141         ID id )
1142 {
1143         MDB_dbi dbi;
1144         mdb_tool_idl_cache *ic, itmp;
1145         mdb_tool_idl_cache_entry *ice;
1146         int i, rc, lcount;
1147         AttrInfo *ai = (AttrInfo *)mc;
1148         mc = ai->ai_cursor;
1149
1150         dbi = ai->ai_dbi;
1151         for (i=0; keys[i].bv_val; i++) {
1152         itmp.kstr = keys[i];
1153         ic = tavl_find( (Avlnode *)ai->ai_root, &itmp, mdb_tool_idl_cmp );
1154
1155         /* No entry yet, create one */
1156         if ( !ic ) {
1157                 MDB_val key, data;
1158                 ID nid;
1159                 int rc;
1160
1161                 if ( ai->ai_clist ) {
1162                         ic = ai->ai_clist;
1163                         ai->ai_clist = ic->head;
1164                 } else {
1165                         ic = ch_malloc( sizeof( mdb_tool_idl_cache ) + itmp.kstr.bv_len + 4 );
1166                 }
1167                 ic->kstr.bv_len = itmp.kstr.bv_len;
1168                 ic->kstr.bv_val = (char *)(ic+1);
1169                 memcpy( ic->kstr.bv_val, itmp.kstr.bv_val, ic->kstr.bv_len );
1170                 ic->head = ic->tail = NULL;
1171                 ic->last = 0;
1172                 ic->count = 0;
1173                 ic->offset = 0;
1174                 ic->flags = 0;
1175                 tavl_insert( (Avlnode **)&ai->ai_root, ic, mdb_tool_idl_cmp,
1176                         avl_dup_error );
1177
1178                 /* load existing key count here */
1179                 key.mv_size = keys[i].bv_len;
1180                 key.mv_data = keys[i].bv_val;
1181                 rc = mdb_cursor_get( mc, &key, &data, MDB_SET );
1182                 if ( rc == 0 ) {
1183                         ic->flags |= WAS_FOUND;
1184                         nid = *(ID *)data.mv_data;
1185                         if ( nid == 0 ) {
1186                                 ic->count = MDB_IDL_DB_SIZE+1;
1187                                 ic->flags |= WAS_RANGE;
1188                         } else {
1189                                 size_t count;
1190
1191                                 mdb_cursor_count( mc, &count );
1192                                 ic->count = count;
1193                                 ic->first = nid;
1194                                 ic->offset = count & (IDBLOCK-1);
1195                         }
1196                 }
1197         }
1198         /* are we a range already? */
1199         if ( ic->count > MDB_IDL_DB_SIZE ) {
1200                 ic->last = id;
1201                 continue;
1202         /* Are we at the limit, and converting to a range? */
1203         } else if ( ic->count == MDB_IDL_DB_SIZE ) {
1204                 if ( ic->head ) {
1205                         ic->tail->next = ai->ai_flist;
1206                         ai->ai_flist = ic->head;
1207                 }
1208                 ic->head = ic->tail = NULL;
1209                 ic->last = id;
1210                 ic->count++;
1211                 continue;
1212         }
1213         /* No free block, create that too */
1214         lcount = ic->count & (IDBLOCK-1);
1215         if ( !ic->tail || lcount == 0) {
1216                 if ( ai->ai_flist ) {
1217                         ice = ai->ai_flist;
1218                         ai->ai_flist = ice->next;
1219                 } else {
1220                         ice = ch_malloc( sizeof( mdb_tool_idl_cache_entry ));
1221                 }
1222                 ice->next = NULL;
1223                 if ( !ic->head ) {
1224                         ic->head = ice;
1225                 } else {
1226                         ic->tail->next = ice;
1227                 }
1228                 ic->tail = ice;
1229                 if ( lcount )
1230                         ice->ids[lcount-1] = 0;
1231                 if ( !ic->count )
1232                         ic->first = id;
1233         }
1234         ice = ic->tail;
1235         if (!lcount || ice->ids[lcount-1] != id)
1236                 ice->ids[lcount] = id;
1237         ic->count++;
1238         }
1239
1240         return 0;
1241 }
1242 #endif /* MDB_TOOL_IDL_CACHING */