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