]> git.sur5r.net Git - openldap/blob - servers/slapd/back-mdb/id2entry.c
ITS#7798 fix mdb_entry_decode()
[openldap] / servers / slapd / back-mdb / id2entry.c
1 /* id2entry.c - routines to deal with the id2entry database */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2000-2014 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 #include "back-mdb.h"
24
25 typedef struct Ecount {
26         ber_len_t len;
27         int nattrs;
28         int nvals;
29         int offset;
30 } Ecount;
31
32 static int mdb_entry_partsize(struct mdb_info *mdb, MDB_txn *txn, Entry *e,
33         Ecount *eh);
34 static int mdb_entry_encode(Operation *op, Entry *e, MDB_val *data,
35         Ecount *ec);
36 static Entry *mdb_entry_alloc( Operation *op, int nattrs, int nvals );
37
38 #define ADD_FLAGS       (MDB_NOOVERWRITE|MDB_APPEND)
39
40 static int mdb_id2entry_put(
41         Operation *op,
42         MDB_txn *txn,
43         MDB_cursor *mc,
44         Entry *e,
45         int flag )
46 {
47         struct mdb_info *mdb = (struct mdb_info *) op->o_bd->be_private;
48         Ecount ec;
49         MDB_val key, data;
50         int rc;
51
52         /* We only store rdns, and they go in the dn2id database. */
53
54         key.mv_data = &e->e_id;
55         key.mv_size = sizeof(ID);
56
57         rc = mdb_entry_partsize( mdb, txn, e, &ec );
58         if (rc)
59                 return LDAP_OTHER;
60
61         flag |= MDB_RESERVE;
62
63         if (e->e_id < mdb->mi_nextid)
64                 flag &= ~MDB_APPEND;
65
66 again:
67         data.mv_size = ec.len;
68         if ( mc )
69                 rc = mdb_cursor_put( mc, &key, &data, flag );
70         else
71                 rc = mdb_put( txn, mdb->mi_id2entry, &key, &data, flag );
72         if (rc == MDB_SUCCESS) {
73                 rc = mdb_entry_encode( op, e, &data, &ec );
74                 if( rc != LDAP_SUCCESS )
75                         return rc;
76         }
77         if (rc) {
78                 /* Was there a hole from slapadd? */
79                 if ( (flag & MDB_NOOVERWRITE) && data.mv_size == 0 ) {
80                         flag &= ~ADD_FLAGS;
81                         goto again;
82                 }
83                 Debug( LDAP_DEBUG_ANY,
84                         "mdb_id2entry_put: mdb_put failed: %s(%d) \"%s\"\n",
85                         mdb_strerror(rc), rc,
86                         e->e_nname.bv_val );
87                 if ( rc != MDB_KEYEXIST )
88                         rc = LDAP_OTHER;
89         }
90         return rc;
91 }
92
93 /*
94  * This routine adds (or updates) an entry on disk.
95  * The cache should be already be updated.
96  */
97
98
99 int mdb_id2entry_add(
100         Operation *op,
101         MDB_txn *txn,
102         MDB_cursor *mc,
103         Entry *e )
104 {
105         return mdb_id2entry_put(op, txn, mc, e, ADD_FLAGS);
106 }
107
108 int mdb_id2entry_update(
109         Operation *op,
110         MDB_txn *txn,
111         MDB_cursor *mc,
112         Entry *e )
113 {
114         return mdb_id2entry_put(op, txn, mc, e, 0);
115 }
116
117 int mdb_id2edata(
118         Operation *op,
119         MDB_cursor *mc,
120         ID id,
121         MDB_val *data )
122 {
123         MDB_val key;
124         int rc;
125
126         key.mv_data = &id;
127         key.mv_size = sizeof(ID);
128
129         /* fetch it */
130         rc = mdb_cursor_get( mc, &key, data, MDB_SET );
131         /* stubs from missing parents - DB is actually invalid */
132         if ( rc == MDB_SUCCESS && !data->mv_size )
133                 rc = MDB_NOTFOUND;
134         return rc;
135 }
136
137 int mdb_id2entry(
138         Operation *op,
139         MDB_cursor *mc,
140         ID id,
141         Entry **e )
142 {
143         struct mdb_info *mdb = (struct mdb_info *) op->o_bd->be_private;
144         MDB_val key, data;
145         int rc = 0;
146
147         *e = NULL;
148
149         key.mv_data = &id;
150         key.mv_size = sizeof(ID);
151
152         /* fetch it */
153         rc = mdb_cursor_get( mc, &key, &data, MDB_SET );
154         if ( rc == MDB_NOTFOUND ) {
155                 /* Looking for root entry on an empty-dn suffix? */
156                 if ( !id && BER_BVISEMPTY( &op->o_bd->be_nsuffix[0] )) {
157                         struct berval gluebv = BER_BVC("glue");
158                         Entry *r = mdb_entry_alloc(op, 2, 4);
159                         Attribute *a = r->e_attrs;
160                         struct berval *bptr;
161
162                         r->e_id = 0;
163                         r->e_ocflags = SLAP_OC_GLUE|SLAP_OC__END;
164                         bptr = a->a_vals;
165                         a->a_flags = SLAP_ATTR_DONT_FREE_DATA | SLAP_ATTR_DONT_FREE_VALS;
166                         a->a_desc = slap_schema.si_ad_objectClass;
167                         a->a_nvals = a->a_vals;
168                         a->a_numvals = 1;
169                         *bptr++ = gluebv;
170                         BER_BVZERO(bptr);
171                         bptr++;
172                         a->a_next = a+1;
173                         a = a->a_next;
174                         a->a_flags = SLAP_ATTR_DONT_FREE_DATA | SLAP_ATTR_DONT_FREE_VALS;
175                         a->a_desc = slap_schema.si_ad_structuralObjectClass;
176                         a->a_vals = bptr;
177                         a->a_nvals = a->a_vals;
178                         a->a_numvals = 1;
179                         *bptr++ = gluebv;
180                         BER_BVZERO(bptr);
181                         a->a_next = NULL;
182                         *e = r;
183                         return MDB_SUCCESS;
184                 }
185         }
186         /* stubs from missing parents - DB is actually invalid */
187         if ( rc == MDB_SUCCESS && !data.mv_size )
188                 rc = MDB_NOTFOUND;
189         if ( rc ) return rc;
190
191         rc = mdb_entry_decode( op, mdb_cursor_txn( mc ), &data, e );
192         if ( rc ) return rc;
193
194         (*e)->e_id = id;
195         (*e)->e_name.bv_val = NULL;
196         (*e)->e_nname.bv_val = NULL;
197
198         return rc;
199 }
200
201 int mdb_id2entry_delete(
202         BackendDB *be,
203         MDB_txn *tid,
204         Entry *e )
205 {
206         struct mdb_info *mdb = (struct mdb_info *) be->be_private;
207         MDB_dbi dbi = mdb->mi_id2entry;
208         MDB_val key;
209         int rc;
210
211         key.mv_data = &e->e_id;
212         key.mv_size = sizeof(ID);
213
214         /* delete from database */
215         rc = mdb_del( tid, dbi, &key, NULL );
216
217         return rc;
218 }
219
220 static Entry * mdb_entry_alloc(
221         Operation *op,
222         int nattrs,
223         int nvals )
224 {
225         Entry *e = op->o_tmpalloc( sizeof(Entry) +
226                 nattrs * sizeof(Attribute) +
227                 nvals * sizeof(struct berval), op->o_tmpmemctx );
228         BER_BVZERO(&e->e_bv);
229         e->e_private = e;
230         if (nattrs) {
231                 e->e_attrs = (Attribute *)(e+1);
232                 e->e_attrs->a_vals = (struct berval *)(e->e_attrs+nattrs);
233         } else {
234                 e->e_attrs = NULL;
235         }
236
237         return e;
238 }
239
240 int mdb_entry_return(
241         Operation *op,
242         Entry *e
243 )
244 {
245         if ( !e )
246                 return 0;
247         if ( e->e_private ) {
248                 if ( op->o_hdr ) {
249                         op->o_tmpfree( e->e_nname.bv_val, op->o_tmpmemctx );
250                         op->o_tmpfree( e->e_name.bv_val, op->o_tmpmemctx );
251                         op->o_tmpfree( e, op->o_tmpmemctx );
252                 } else {
253                         ch_free( e->e_nname.bv_val );
254                         ch_free( e->e_name.bv_val );
255                         ch_free( e );
256                 }
257         } else {
258                 entry_free( e );
259         }
260         return 0;
261 }
262
263 int mdb_entry_release(
264         Operation *op,
265         Entry *e,
266         int rw )
267 {
268         struct mdb_info *mdb = (struct mdb_info *) op->o_bd->be_private;
269         struct mdb_op_info *moi = NULL;
270         int rc;
271  
272         /* slapMode : SLAP_SERVER_MODE, SLAP_TOOL_MODE,
273                         SLAP_TRUNCATE_MODE, SLAP_UNDEFINED_MODE */
274  
275         mdb_entry_return( op, e );
276         if ( slapMode & SLAP_SERVER_MODE ) {
277                 OpExtra *oex;
278                 LDAP_SLIST_FOREACH( oex, &op->o_extra, oe_next ) {
279                         if ( oex->oe_key == mdb ) {
280                                 moi = (mdb_op_info *)oex;
281                                 /* If it was setup by entry_get we should probably free it */
282                                 if ( moi->moi_flag & MOI_FREEIT ) {
283                                         moi->moi_ref--;
284                                         if ( moi->moi_ref < 1 ) {
285                                                 mdb_txn_reset( moi->moi_txn );
286                                                 moi->moi_ref = 0;
287                                                 LDAP_SLIST_REMOVE( &op->o_extra, &moi->moi_oe, OpExtra, oe_next );
288                                                 op->o_tmpfree( moi, op->o_tmpmemctx );
289                                         }
290                                 }
291                                 break;
292                         }
293                 }
294         }
295  
296         return 0;
297 }
298
299 /* return LDAP_SUCCESS IFF we can retrieve the specified entry.
300  */
301 int mdb_entry_get(
302         Operation *op,
303         struct berval *ndn,
304         ObjectClass *oc,
305         AttributeDescription *at,
306         int rw,
307         Entry **ent )
308 {
309         struct mdb_info *mdb = (struct mdb_info *) op->o_bd->be_private;
310         struct mdb_op_info *moi = NULL;
311         MDB_txn *txn = NULL;
312         Entry *e = NULL;
313         int     rc;
314         const char *at_name = at ? at->ad_cname.bv_val : "(null)";
315
316         Debug( LDAP_DEBUG_ARGS,
317                 "=> mdb_entry_get: ndn: \"%s\"\n", ndn->bv_val, 0, 0 ); 
318         Debug( LDAP_DEBUG_ARGS,
319                 "=> mdb_entry_get: oc: \"%s\", at: \"%s\"\n",
320                 oc ? oc->soc_cname.bv_val : "(null)", at_name, 0);
321
322         rc = mdb_opinfo_get( op, mdb, rw == 0, &moi );
323         if ( rc )
324                 return LDAP_OTHER;
325         txn = moi->moi_txn;
326
327         /* can we find entry */
328         rc = mdb_dn2entry( op, txn, NULL, ndn, &e, NULL, 0 );
329         switch( rc ) {
330         case MDB_NOTFOUND:
331         case 0:
332                 break;
333         default:
334                 return (rc != LDAP_BUSY) ? LDAP_OTHER : LDAP_BUSY;
335         }
336         if (e == NULL) {
337                 Debug( LDAP_DEBUG_ACL,
338                         "=> mdb_entry_get: cannot find entry: \"%s\"\n",
339                                 ndn->bv_val, 0, 0 ); 
340                 rc = LDAP_NO_SUCH_OBJECT;
341                 goto return_results;
342         }
343         
344         Debug( LDAP_DEBUG_ACL,
345                 "=> mdb_entry_get: found entry: \"%s\"\n",
346                 ndn->bv_val, 0, 0 ); 
347
348         if ( oc && !is_entry_objectclass( e, oc, 0 )) {
349                 Debug( LDAP_DEBUG_ACL,
350                         "<= mdb_entry_get: failed to find objectClass %s\n",
351                         oc->soc_cname.bv_val, 0, 0 ); 
352                 rc = LDAP_NO_SUCH_ATTRIBUTE;
353                 goto return_results;
354         }
355
356         /* NOTE: attr_find() or attrs_find()? */
357         if ( at && attr_find( e->e_attrs, at ) == NULL ) {
358                 Debug( LDAP_DEBUG_ACL,
359                         "<= mdb_entry_get: failed to find attribute %s\n",
360                         at->ad_cname.bv_val, 0, 0 ); 
361                 rc = LDAP_NO_SUCH_ATTRIBUTE;
362                 goto return_results;
363         }
364
365 return_results:
366         if( rc != LDAP_SUCCESS ) {
367                 /* free entry */
368                 mdb_entry_release( op, e, rw );
369         } else {
370                 *ent = e;
371         }
372
373         Debug( LDAP_DEBUG_TRACE,
374                 "mdb_entry_get: rc=%d\n",
375                 rc, 0, 0 ); 
376         return(rc);
377 }
378
379 static void
380 mdb_reader_free( void *key, void *data )
381 {
382         MDB_txn *txn = data;
383
384         if ( txn ) mdb_txn_abort( txn );
385 }
386
387 /* free up any keys used by the main thread */
388 void
389 mdb_reader_flush( MDB_env *env )
390 {
391         void *data;
392         void *ctx = ldap_pvt_thread_pool_context();
393
394         if ( !ldap_pvt_thread_pool_getkey( ctx, env, &data, NULL ) ) {
395                 ldap_pvt_thread_pool_setkey( ctx, env, NULL, 0, NULL, NULL );
396                 mdb_reader_free( env, data );
397         }
398 }
399
400 int
401 mdb_opinfo_get( Operation *op, struct mdb_info *mdb, int rdonly, mdb_op_info **moip )
402 {
403         int rc, renew = 0;
404         void *data;
405         void *ctx;
406         mdb_op_info *moi = NULL;
407         OpExtra *oex;
408
409         assert( op != NULL );
410
411         if ( !mdb || !moip ) return -1;
412
413         /* If no op was provided, try to find the ctx anyway... */
414         if ( op ) {
415                 ctx = op->o_threadctx;
416         } else {
417                 ctx = ldap_pvt_thread_pool_context();
418         }
419
420         if ( op ) {
421                 LDAP_SLIST_FOREACH( oex, &op->o_extra, oe_next ) {
422                         if ( oex->oe_key == mdb ) break;
423                 }
424                 moi = (mdb_op_info *)oex;
425         }
426
427         if ( !moi ) {
428                 moi = *moip;
429
430                 if ( !moi ) {
431                         if ( op ) {
432                                 moi = op->o_tmpalloc(sizeof(struct mdb_op_info),op->o_tmpmemctx);
433                         } else {
434                                 moi = ch_malloc(sizeof(mdb_op_info));
435                         }
436                         moi->moi_flag = MOI_FREEIT;
437                         *moip = moi;
438                 }
439                 LDAP_SLIST_INSERT_HEAD( &op->o_extra, &moi->moi_oe, oe_next );
440                 moi->moi_oe.oe_key = mdb;
441                 moi->moi_ref = 0;
442                 moi->moi_txn = NULL;
443         }
444
445         if ( !rdonly ) {
446                 /* This op started as a reader, but now wants to write. */
447                 if ( moi->moi_flag & MOI_READER ) {
448                         moi = *moip;
449                         LDAP_SLIST_INSERT_HEAD( &op->o_extra, &moi->moi_oe, oe_next );
450                 } else {
451                 /* This op is continuing an existing write txn */
452                         *moip = moi;
453                 }
454                 moi->moi_ref++;
455                 if ( !moi->moi_txn ) {
456                         rc = mdb_txn_begin( mdb->mi_dbenv, NULL, 0, &moi->moi_txn );
457                         if (rc) {
458                                 Debug( LDAP_DEBUG_ANY, "mdb_opinfo_get: err %s(%d)\n",
459                                         mdb_strerror(rc), rc, 0 );
460                         }
461                         return rc;
462                 }
463                 return 0;
464         }
465
466         /* OK, this is a reader */
467         if ( !moi->moi_txn ) {
468                 if ( !ctx ) {
469                         /* Shouldn't happen unless we're single-threaded */
470                         rc = mdb_txn_begin( mdb->mi_dbenv, NULL, MDB_RDONLY, &moi->moi_txn );
471                         if (rc) {
472                                 Debug( LDAP_DEBUG_ANY, "mdb_opinfo_get: err %s(%d)\n",
473                                         mdb_strerror(rc), rc, 0 );
474                         }
475                         return rc;
476                 }
477                 if ( ldap_pvt_thread_pool_getkey( ctx, mdb->mi_dbenv, &data, NULL ) ) {
478                         rc = mdb_txn_begin( mdb->mi_dbenv, NULL, MDB_RDONLY, &moi->moi_txn );
479                         if (rc) {
480                                 Debug( LDAP_DEBUG_ANY, "mdb_opinfo_get: err %s(%d)\n",
481                                         mdb_strerror(rc), rc, 0 );
482                                 return rc;
483                         }
484                         data = moi->moi_txn;
485                         if ( ( rc = ldap_pvt_thread_pool_setkey( ctx, mdb->mi_dbenv,
486                                 data, mdb_reader_free, NULL, NULL ) ) ) {
487                                 mdb_txn_abort( moi->moi_txn );
488                                 moi->moi_txn = NULL;
489                                 Debug( LDAP_DEBUG_ANY, "mdb_opinfo_get: thread_pool_setkey failed err (%d)\n",
490                                         rc, 0, 0 );
491                                 return rc;
492                         }
493                 } else {
494                         moi->moi_txn = data;
495                         renew = 1;
496                 }
497                 moi->moi_flag |= MOI_READER;
498         }
499         if ( moi->moi_ref < 1 ) {
500                 moi->moi_ref = 0;
501         }
502         if ( renew ) {
503                 rc = mdb_txn_renew( moi->moi_txn );
504                 assert(!rc);
505         }
506         moi->moi_ref++;
507         if ( *moip != moi )
508                 *moip = moi;
509
510         return 0;
511 }
512
513 /* Count up the sizes of the components of an entry */
514 static int mdb_entry_partsize(struct mdb_info *mdb, MDB_txn *txn, Entry *e,
515         Ecount *eh)
516 {
517         ber_len_t len;
518         int i, nat = 0, nval = 0, nnval = 0;
519         Attribute *a;
520
521         len = 4*sizeof(int);    /* nattrs, nvals, ocflags, offset */
522         for (a=e->e_attrs; a; a=a->a_next) {
523                 /* For AttributeDesc, we only store the attr index */
524                 nat++;
525                 if (a->a_desc->ad_index >= MDB_MAXADS) {
526                         Debug( LDAP_DEBUG_ANY, "mdb_entry_partsize: too many AttributeDescriptions used\n",
527                                 0, 0, 0 );
528                         return LDAP_OTHER;
529                 }
530                 if (!mdb->mi_adxs[a->a_desc->ad_index]) {
531                         int rc = mdb_ad_get(mdb, txn, a->a_desc);
532                         if (rc)
533                                 return rc;
534                 }
535                 len += 2*sizeof(int);   /* AD index, numvals */
536                 nval += a->a_numvals + 1;       /* empty berval at end */
537                 for (i=0; i<a->a_numvals; i++) {
538                         len += a->a_vals[i].bv_len + 1 + sizeof(int);   /* len */
539                 }
540                 if (a->a_nvals != a->a_vals) {
541                         nval += a->a_numvals + 1;
542                         nnval++;
543                         for (i=0; i<a->a_numvals; i++) {
544                                 len += a->a_nvals[i].bv_len + 1 + sizeof(int);;
545                         }
546                 }
547         }
548         /* padding */
549         len = (len + sizeof(ID)-1) & ~(sizeof(ID)-1);
550         eh->len = len;
551         eh->nattrs = nat;
552         eh->nvals = nval;
553         eh->offset = nat + nval - nnval;
554         return 0;
555 }
556
557 #define HIGH_BIT (1<<(sizeof(unsigned int)*CHAR_BIT-1))
558
559 /* Flatten an Entry into a buffer. The buffer starts with the count of the
560  * number of attributes in the entry, the total number of values in the
561  * entry, and the e_ocflags. It then contains a list of integers for each
562  * attribute. For each attribute the first integer gives the index of the
563  * matching AttributeDescription, followed by the number of values in the
564  * attribute. If the high bit is set, the attribute also has normalized
565  * values present. (Note - a_numvals is an unsigned int, so this means
566  * it's possible to receive an attribute that we can't encode due to size
567  * overflow. In practice, this should not be an issue.) Then the length
568  * of each value is listed. If there are normalized values, their lengths
569  * come next. This continues for each attribute. After all of the lengths
570  * for the last attribute, the actual values are copied, with a NUL
571  * terminator after each value. The buffer is padded to the sizeof(ID).
572  * The entire buffer size is precomputed so that a single malloc can be
573  * performed.
574  */
575 static int mdb_entry_encode(Operation *op, Entry *e, MDB_val *data, Ecount *eh)
576 {
577         struct mdb_info *mdb = (struct mdb_info *) op->o_bd->be_private;
578         ber_len_t len, i;
579         int rc;
580         Attribute *a;
581         unsigned char *ptr;
582         unsigned int *lp, l;
583
584         Debug( LDAP_DEBUG_TRACE, "=> mdb_entry_encode(0x%08lx): %s\n",
585                 (long) e->e_id, e->e_dn, 0 );
586
587         /* make sure e->e_ocflags is set */
588         if (is_entry_referral(e))
589                 ;       /* empty */
590
591         lp = (unsigned int *)data->mv_data;
592         *lp++ = eh->nattrs;
593         *lp++ = eh->nvals;
594         *lp++ = (unsigned int)e->e_ocflags;
595         *lp++ = eh->offset;
596         ptr = (unsigned char *)(lp + eh->offset);
597
598         for (a=e->e_attrs; a; a=a->a_next) {
599                 if (!a->a_desc->ad_index)
600                         return LDAP_UNDEFINED_TYPE;
601                 *lp++ = mdb->mi_adxs[a->a_desc->ad_index];
602                 l = a->a_numvals;
603                 if (a->a_nvals != a->a_vals)
604                         l |= HIGH_BIT;
605                 *lp++ = l;
606                 if (a->a_vals) {
607                         for (i=0; a->a_vals[i].bv_val; i++);
608                         assert( i == a->a_numvals );
609                         for (i=0; i<a->a_numvals; i++) {
610                                 *lp++ = a->a_vals[i].bv_len;
611                                 memcpy(ptr, a->a_vals[i].bv_val,
612                                         a->a_vals[i].bv_len);
613                                 ptr += a->a_vals[i].bv_len;
614                                 *ptr++ = '\0';
615                         }
616                         if (a->a_nvals != a->a_vals) {
617                                 for (i=0; i<a->a_numvals; i++) {
618                                         *lp++ = a->a_nvals[i].bv_len;
619                                         memcpy(ptr, a->a_nvals[i].bv_val,
620                                                 a->a_nvals[i].bv_len);
621                                         ptr += a->a_nvals[i].bv_len;
622                                         *ptr++ = '\0';
623                                 }
624                         }
625                 }
626         }
627
628         Debug( LDAP_DEBUG_TRACE, "<= mdb_entry_encode(0x%08lx): %s\n",
629                 (long) e->e_id, e->e_dn, 0 );
630
631         return 0;
632 }
633
634 /* Retrieve an Entry that was stored using entry_encode above.
635  *
636  * Note: everything is stored in a single contiguous block, so
637  * you can not free individual attributes or names from this
638  * structure. Attempting to do so will likely corrupt memory.
639  */
640
641 int mdb_entry_decode(Operation *op, MDB_txn *txn, MDB_val *data, Entry **e)
642 {
643         struct mdb_info *mdb = (struct mdb_info *) op->o_bd->be_private;
644         int i, j, nattrs, nvals;
645         int rc;
646         Attribute *a;
647         Entry *x;
648         const char *text;
649         AttributeDescription *ad;
650         unsigned int *lp = (unsigned int *)data->mv_data;
651         unsigned char *ptr;
652         BerVarray bptr;
653
654         Debug( LDAP_DEBUG_TRACE,
655                 "=> mdb_entry_decode:\n",
656                 0, 0, 0 );
657
658         nattrs = *lp++;
659         nvals = *lp++;
660         x = mdb_entry_alloc(op, nattrs, nvals);
661         x->e_ocflags = *lp++;
662         if (!nvals) {
663                 goto done;
664         }
665         a = x->e_attrs;
666         bptr = a->a_vals;
667         i = *lp++;
668         ptr = (unsigned char *)(lp + i);
669
670         for (;nattrs>0; nattrs--) {
671                 int have_nval = 0;
672                 i = *lp++;
673                 if (i > mdb->mi_numads) {
674                         rc = mdb_ad_read(mdb, txn);
675                         if (rc)
676                                 return rc;
677                         if (i > mdb->mi_numads) {
678                                 Debug( LDAP_DEBUG_ANY,
679                                         "mdb_entry_decode: attribute index %d not recognized\n",
680                                         i, 0, 0 );
681                                 return LDAP_OTHER;
682                         }
683                 }
684                 a->a_desc = mdb->mi_ads[i];
685                 a->a_flags = SLAP_ATTR_DONT_FREE_DATA | SLAP_ATTR_DONT_FREE_VALS;
686                 a->a_numvals = *lp++;
687                 if (a->a_numvals & HIGH_BIT) {
688                         a->a_numvals ^= HIGH_BIT;
689                         have_nval = 1;
690                 }
691                 a->a_vals = bptr;
692                 for (i=0; i<a->a_numvals; i++) {
693                         bptr->bv_len = *lp++;;
694                         bptr->bv_val = (char *)ptr;
695                         ptr += bptr->bv_len+1;
696                         bptr++;
697                 }
698                 bptr->bv_val = NULL;
699                 bptr->bv_len = 0;
700                 bptr++;
701
702                 if (have_nval) {
703                         a->a_nvals = bptr;
704                         for (i=0; i<a->a_numvals; i++) {
705                                 bptr->bv_len = *lp++;
706                                 bptr->bv_val = (char *)ptr;
707                                 ptr += bptr->bv_len+1;
708                                 bptr++;
709                         }
710                         bptr->bv_val = NULL;
711                         bptr->bv_len = 0;
712                         bptr++;
713                 } else {
714                         a->a_nvals = a->a_vals;
715                 }
716                 /* FIXME: This is redundant once a sorted entry is saved into the DB */
717                 if ( a->a_desc->ad_type->sat_flags & SLAP_AT_SORTED_VAL ) {
718                         rc = slap_sort_vals( (Modifications *)a, &text, &j, NULL );
719                         if ( rc == LDAP_SUCCESS ) {
720                                 a->a_flags |= SLAP_ATTR_SORTED_VALS;
721                         } else if ( rc == LDAP_TYPE_OR_VALUE_EXISTS ) {
722                                 /* should never happen */
723                                 Debug( LDAP_DEBUG_ANY,
724                                         "mdb_entry_decode: attributeType %s value #%d provided more than once\n",
725                                         a->a_desc->ad_cname.bv_val, j, 0 );
726                                 return rc;
727                         }
728                 }
729                 a->a_next = a+1;
730                 a = a->a_next;
731         }
732         a[-1].a_next = NULL;
733 done:
734
735         Debug(LDAP_DEBUG_TRACE, "<= mdb_entry_decode\n",
736                 0, 0, 0 );
737         *e = x;
738         return 0;
739 }