]> git.sur5r.net Git - openldap/blob - libraries/libmdb/mdb.c
Add mdb_get for sorted dups
[openldap] / libraries / libmdb / mdb.c
1 /* mdb.c - memory-mapped database library */
2 /*
3  * Copyright 2011 Howard Chu, Symas Corp.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted only as authorized by the OpenLDAP
8  * Public License.
9  *
10  * A copy of this license is available in the file LICENSE in the
11  * top-level directory of the distribution or, alternatively, at
12  * <http://www.OpenLDAP.org/license.html>.
13  *
14  * This code is derived from btree.c written by Martin Hedenfalk.
15  *
16  * Copyright (c) 2009, 2010 Martin Hedenfalk <martin@bzero.se>
17  *
18  * Permission to use, copy, modify, and distribute this software for any
19  * purpose with or without fee is hereby granted, provided that the above
20  * copyright notice and this permission notice appear in all copies.
21  *
22  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
23  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
24  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
25  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
26  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
27  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
28  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
29  */
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <sys/queue.h>
33 #include <sys/param.h>
34 #include <sys/uio.h>
35 #include <sys/mman.h>
36 #ifdef HAVE_SYS_FILE_H
37 #include <sys/file.h>
38 #endif
39 #include <fcntl.h>
40
41 #include <assert.h>
42 #include <err.h>
43 #include <errno.h>
44 #include <fcntl.h>
45 #include <stddef.h>
46 #include <stdint.h>
47 #include <stdio.h>
48 #include <stdlib.h>
49 #include <string.h>
50 #include <time.h>
51 #include <unistd.h>
52 #include <pthread.h>
53 #include <endian.h>
54
55 #include "mdb.h"
56
57 #define ULONG           unsigned long
58 typedef ULONG           pgno_t;
59
60 #include "idl.h"
61
62 #ifndef DEBUG
63 #define DEBUG 1
64 #endif
65
66 #if DEBUG && defined(__GNUC__)
67 # define DPRINTF(fmt, ...) \
68         fprintf(stderr, "%s:%d: " fmt "\n", __func__, __LINE__, ##__VA_ARGS__)
69 #else
70 # define DPRINTF(...)   ((void) 0)
71 #endif
72
73 #define PAGESIZE         4096
74 #define MDB_MINKEYS      4
75 #define MDB_MAGIC        0xBEEFC0DE
76 #define MDB_VERSION      1
77 #define MAXKEYSIZE       511
78
79 #define P_INVALID        (~0UL)
80
81 #define F_ISSET(w, f)    (((w) & (f)) == (f))
82
83 typedef uint16_t         indx_t;
84
85 #define DEFAULT_READERS 126
86 #define DEFAULT_MAPSIZE 1048576
87
88 /* Lock descriptor stuff */
89 #define RXBODY  \
90         ULONG           mr_txnid; \
91         pid_t           mr_pid; \
92         pthread_t       mr_tid
93 typedef struct MDB_rxbody {
94         RXBODY;
95 } MDB_rxbody;
96
97 #ifndef CACHELINE
98 #define CACHELINE       64      /* most CPUs. Itanium uses 128 */
99 #endif
100
101 typedef struct MDB_reader {
102         RXBODY;
103         /* cache line alignment */
104         char pad[CACHELINE-sizeof(MDB_rxbody)];
105 } MDB_reader;
106
107 #define TXBODY \
108         uint32_t        mt_magic;       \
109         uint32_t        mt_version;     \
110         pthread_mutex_t mt_mutex;       \
111         ULONG           mt_txnid;       \
112         uint32_t        mt_numreaders
113 typedef struct MDB_txbody {
114         TXBODY;
115 } MDB_txbody;
116
117 typedef struct MDB_txninfo {
118         TXBODY;
119         char pad[CACHELINE-sizeof(MDB_txbody)];
120         pthread_mutex_t mt_wmutex;
121         char pad2[CACHELINE-sizeof(pthread_mutex_t)];
122         MDB_reader      mt_readers[1];
123 } MDB_txninfo;
124
125 /* Common header for all page types. Overflow pages
126  * occupy a number of contiguous pages with no
127  * headers on any page after the first.
128  */
129 typedef struct MDB_page {               /* represents a page of storage */
130 #define mp_pgno         mp_p.p_pgno
131         union padded {
132                 pgno_t          p_pgno;         /* page number */
133                 void *          p_pad;
134         } mp_p;
135 #define P_BRANCH         0x01           /* branch page */
136 #define P_LEAF           0x02           /* leaf page */
137 #define P_OVERFLOW       0x04           /* overflow page */
138 #define P_META           0x08           /* meta page */
139 #define P_DIRTY          0x10           /* dirty page */
140         uint32_t        mp_flags;
141 #define mp_lower        mp_pb.pb.pb_lower
142 #define mp_upper        mp_pb.pb.pb_upper
143 #define mp_pages        mp_pb.pb_pages
144         union page_bounds {
145                 struct {
146                         indx_t          pb_lower;               /* lower bound of free space */
147                         indx_t          pb_upper;               /* upper bound of free space */
148                 } pb;
149                 uint32_t        pb_pages;       /* number of overflow pages */
150         } mp_pb;
151         indx_t          mp_ptrs[1];             /* dynamic size */
152 } MDB_page;
153
154 #define PAGEHDRSZ        ((unsigned) offsetof(MDB_page, mp_ptrs))
155
156 #define NUMKEYS(p)       (((p)->mp_lower - PAGEHDRSZ) >> 1)
157 #define SIZELEFT(p)      (indx_t)((p)->mp_upper - (p)->mp_lower)
158 #define PAGEFILL(env, p) (1000L * ((env)->me_psize - PAGEHDRSZ - SIZELEFT(p)) / \
159                                 ((env)->me_psize - PAGEHDRSZ))
160 #define IS_LEAF(p)       F_ISSET((p)->mp_flags, P_LEAF)
161 #define IS_BRANCH(p)     F_ISSET((p)->mp_flags, P_BRANCH)
162 #define IS_OVERFLOW(p)   F_ISSET((p)->mp_flags, P_OVERFLOW)
163
164 #define OVPAGES(size, psize)    (PAGEHDRSZ + size + psize - 1) / psize;
165
166 typedef struct MDB_db {
167         uint32_t        md_pad;
168         uint16_t        md_flags;
169         uint16_t        md_depth;
170         ULONG           md_branch_pages;
171         ULONG           md_leaf_pages;
172         ULONG           md_overflow_pages;
173         ULONG           md_entries;
174         pgno_t          md_root;
175 } MDB_db;
176
177 #define FREE_DBI        0
178 #define MAIN_DBI        1
179
180 typedef struct MDB_meta {                       /* meta (footer) page content */
181         uint32_t        mm_magic;
182         uint32_t        mm_version;
183         void            *mm_address;            /* address for fixed mapping */
184         size_t          mm_mapsize;                     /* size of mmap region */
185         MDB_db          mm_dbs[2];                      /* first is free space, 2nd is main db */
186 #define mm_psize        mm_dbs[0].md_pad
187 #define mm_flags        mm_dbs[0].md_flags
188         pgno_t          mm_last_pg;                     /* last used page in file */
189         ULONG           mm_txnid;                       /* txnid that committed this page */
190 } MDB_meta;
191
192 typedef struct MDB_dhead {                                      /* a dirty page */
193         STAILQ_ENTRY(MDB_dpage)  md_next;       /* queue of dirty pages */
194         MDB_page        *md_parent;
195         unsigned        md_pi;                          /* parent index */
196         int                     md_num;
197 } MDB_dhead;
198
199 typedef struct MDB_dpage {
200         MDB_dhead       h;
201         MDB_page        p;
202 } MDB_dpage;
203
204 STAILQ_HEAD(dirty_queue, MDB_dpage);    /* FIXME: use a sorted data structure */
205
206 typedef struct MDB_oldpages {
207         struct MDB_oldpages *mo_next;
208         ULONG           mo_txnid;
209         pgno_t          mo_pages[1];    /* dynamic */
210 } MDB_oldpages;
211
212 typedef struct MDB_pageparent {
213         MDB_page *mp_page;
214         MDB_page *mp_parent;
215         unsigned mp_pi;
216 } MDB_pageparent;
217
218 static MDB_dpage *mdb_alloc_page(MDB_txn *txn, MDB_page *parent, unsigned int parent_idx, int num);
219 static int              mdb_touch(MDB_txn *txn, MDB_pageparent *mp);
220
221 typedef struct MDB_ppage {                                      /* ordered list of pages */
222         SLIST_ENTRY(MDB_ppage)   mp_entry;
223         MDB_page                *mp_page;
224         unsigned int    mp_ki;          /* cursor index on page */
225 } MDB_ppage;
226 SLIST_HEAD(page_stack, MDB_ppage);
227
228 #define CURSOR_EMPTY(c)          SLIST_EMPTY(&(c)->mc_stack)
229 #define CURSOR_TOP(c)            SLIST_FIRST(&(c)->mc_stack)
230 #define CURSOR_POP(c)            SLIST_REMOVE_HEAD(&(c)->mc_stack, mp_entry)
231 #define CURSOR_PUSH(c,p)         SLIST_INSERT_HEAD(&(c)->mc_stack, p, mp_entry)
232
233 struct MDB_xcursor;
234
235 struct MDB_cursor {
236         MDB_txn         *mc_txn;
237         struct page_stack        mc_stack;              /* stack of parent pages */
238         MDB_dbi         mc_dbi;
239         short           mc_initialized; /* 1 if initialized */
240         short           mc_eof;         /* 1 if end is reached */
241         struct MDB_xcursor      *mc_xcursor;
242 };
243
244 #define METAHASHLEN      offsetof(MDB_meta, mm_hash)
245 #define METADATA(p)      ((void *)((char *)p + PAGEHDRSZ))
246
247 typedef struct MDB_node {
248 #define mn_pgno          mn_p.np_pgno
249 #define mn_dsize         mn_p.np_dsize
250         union {
251                 pgno_t           np_pgno;       /* child page number */
252                 uint32_t         np_dsize;      /* leaf data size */
253         } mn_p;
254         unsigned int    mn_flags:4;
255         unsigned int    mn_ksize:12;                    /* key size */
256 #define F_BIGDATA        0x01                   /* data put on overflow page */
257         char            mn_data[1];
258 } MDB_node;
259
260
261 typedef struct MDB_dbx {
262         MDB_val         md_name;
263         MDB_cmp_func    *md_cmp;                /* user compare function */
264         MDB_cmp_func    *md_dcmp;               /* user dupsort function */
265         MDB_rel_func    *md_rel;                /* user relocate function */
266         MDB_dbi md_parent;
267         unsigned int    md_dirty;
268 } MDB_dbx;
269
270 struct MDB_txn {
271         pgno_t          mt_next_pgno;   /* next unallocated page */
272         ULONG           mt_txnid;
273         ULONG           mt_oldest;
274         MDB_env         *mt_env;        
275         pgno_t          *mt_free_pgs;   /* this is an IDL */
276         union {
277                 struct dirty_queue      *dirty_queue;   /* modified pages */
278                 MDB_reader      *reader;
279         } mt_u;
280         MDB_dbx         *mt_dbxs;               /* array */
281         MDB_db          *mt_dbs;
282         unsigned int    mt_numdbs;
283
284 #define MDB_TXN_RDONLY           0x01           /* read-only transaction */
285 #define MDB_TXN_ERROR            0x02           /* an error has occurred */
286 #define MDB_TXN_METOGGLE        0x04            /* used meta page 1 */
287         unsigned int    mt_flags;
288 };
289
290 /* Context for sorted-dup records */
291 typedef struct MDB_xcursor {
292         MDB_cursor mx_cursor;
293         MDB_txn mx_txn;
294         MDB_dbx mx_dbxs[4];
295         MDB_db  mx_dbs[4];
296 } MDB_xcursor;
297
298 struct MDB_env {
299         int                     me_fd;
300         int                     me_lfd;
301         uint32_t        me_flags;
302         unsigned int    me_maxreaders;
303         unsigned int    me_numdbs;
304         unsigned int    me_maxdbs;
305         char            *me_path;
306         char            *me_map;
307         MDB_txninfo     *me_txns;
308         MDB_meta        *me_metas[2];
309         MDB_meta        *me_meta;
310         MDB_txn         *me_txn;                /* current write transaction */
311         size_t          me_mapsize;
312         off_t           me_size;                /* current file size */
313         unsigned int    me_psize;
314         int                     me_db_toggle;
315         MDB_dbx         *me_dbxs;               /* array */
316         MDB_db          *me_dbs[2];
317         MDB_oldpages *me_pghead;
318         pthread_key_t   me_txkey;       /* thread-key for readers */
319         pgno_t          me_free_pgs[MDB_IDL_UM_SIZE];
320 };
321
322 #define NODESIZE         offsetof(MDB_node, mn_data)
323
324 #define INDXSIZE(k)      (NODESIZE + ((k) == NULL ? 0 : (k)->mv_size))
325 #define LEAFSIZE(k, d)   (NODESIZE + (k)->mv_size + (d)->mv_size)
326 #define NODEPTR(p, i)    ((MDB_node *)((char *)(p) + (p)->mp_ptrs[i]))
327 #define NODEKEY(node)    (void *)((node)->mn_data)
328 #define NODEDATA(node)   (void *)((char *)(node)->mn_data + (node)->mn_ksize)
329 #define NODEPGNO(node)   ((node)->mn_pgno)
330 #define NODEDSZ(node)    ((node)->mn_dsize)
331
332 #define MDB_COMMIT_PAGES         64     /* max number of pages to write in one commit */
333 #define MDB_MAXCACHE_DEF         1024   /* max number of pages to keep in cache  */
334
335 static int  mdb_search_page_root(MDB_txn *txn,
336                             MDB_dbi dbi, MDB_val *key,
337                             MDB_cursor *cursor, int modify,
338                             MDB_pageparent *mpp);
339 static int  mdb_search_page(MDB_txn *txn,
340                             MDB_dbi dbi, MDB_val *key,
341                             MDB_cursor *cursor, int modify,
342                             MDB_pageparent *mpp);
343
344 static int  mdbenv_read_header(MDB_env *env, MDB_meta *meta);
345 static int  mdbenv_read_meta(MDB_env *env, int *which);
346 static int  mdbenv_write_meta(MDB_txn *txn);
347 static MDB_page *mdb_get_page(MDB_txn *txn, pgno_t pgno);
348
349 static MDB_node *mdb_search_node(MDB_txn *txn, MDB_dbi dbi, MDB_page *mp,
350                             MDB_val *key, int *exactp, unsigned int *kip);
351 static int  mdb_add_node(MDB_txn *txn, MDB_dbi dbi, MDB_page *mp,
352                             indx_t indx, MDB_val *key, MDB_val *data,
353                             pgno_t pgno, uint8_t flags);
354 static void mdb_del_node(MDB_page *mp, indx_t indx);
355 static int mdb_del0(MDB_txn *txn, MDB_dbi dbi, unsigned int ki,
356     MDB_pageparent *mpp, MDB_node *leaf);
357 static int  mdb_read_data(MDB_txn *txn, MDB_node *leaf, MDB_val *data);
358
359 static int               mdb_rebalance(MDB_txn *txn, MDB_dbi dbi, MDB_pageparent *mp);
360 static int               mdb_update_key(MDB_page *mp, indx_t indx, MDB_val *key);
361 static int               mdb_move_node(MDB_txn *txn, MDB_dbi dbi, 
362                                 MDB_pageparent *src, indx_t srcindx,
363                                 MDB_pageparent *dst, indx_t dstindx);
364 static int               mdb_merge(MDB_txn *txn, MDB_dbi dbi, MDB_pageparent *src,
365                             MDB_pageparent *dst);
366 static int               mdb_split(MDB_txn *txn, MDB_dbi dbi, MDB_page **mpp,
367                             unsigned int *newindxp, MDB_val *newkey,
368                             MDB_val *newdata, pgno_t newpgno);
369 static MDB_dpage *mdb_new_page(MDB_txn *txn, MDB_dbi dbi, uint32_t flags, int num);
370
371 static void              cursor_pop_page(MDB_cursor *cursor);
372 static MDB_ppage *cursor_push_page(MDB_cursor *cursor,
373                             MDB_page *mp);
374
375 static int               mdb_set_key(MDB_node *node, MDB_val *key);
376 static int               mdb_sibling(MDB_cursor *cursor, int move_right);
377 static int               mdb_cursor_next(MDB_cursor *cursor,
378                             MDB_val *key, MDB_val *data);
379 static int               mdb_cursor_prev(MDB_cursor *cursor,
380                             MDB_val *key, MDB_val *data);
381 static int               mdb_cursor_set(MDB_cursor *cursor,
382                             MDB_val *key, MDB_val *data, int *exactp);
383 static int               mdb_cursor_first(MDB_cursor *cursor,
384                             MDB_val *key, MDB_val *data);
385 static int               mdb_cursor_last(MDB_cursor *cursor,
386                             MDB_val *key, MDB_val *data);
387
388 static void             mdb_xcursor_init0(MDB_txn *txn, MDB_dbi dbi, MDB_xcursor *mx);
389 static void             mdb_xcursor_init1(MDB_txn *txn, MDB_dbi dbi, MDB_xcursor *mx, MDB_db *db);
390 static void             mdb_xcursor_fini(MDB_txn *txn, MDB_dbi dbi, MDB_xcursor *mx);
391
392 static size_t            mdb_leaf_size(MDB_env *env, MDB_val *key,
393                             MDB_val *data);
394 static size_t            mdb_branch_size(MDB_env *env, MDB_val *key);
395
396 static int               memncmp(const void *s1, size_t n1,
397                                  const void *s2, size_t n2);
398 static int               memnrcmp(const void *s1, size_t n1,
399                                   const void *s2, size_t n2);
400
401 static int
402 memncmp(const void *s1, size_t n1, const void *s2, size_t n2)
403 {
404         int diff, len_diff = -1;
405
406         if (n1 >= n2) {
407                 len_diff = (n1 > n2);
408                 n1 = n2;
409         }
410         diff = memcmp(s1, s2, n1);
411         return diff ? diff : len_diff;
412 }
413
414 static int
415 memnrcmp(const void *s1, size_t n1, const void *s2, size_t n2)
416 {
417         const unsigned char     *p1, *p2, *p1_lim;
418
419         if (n2 == 0)
420                 return n1 != 0;
421         if (n1 == 0)
422                 return -1;
423
424         p1 = (const unsigned char *)s1 + n1 - 1;
425         p2 = (const unsigned char *)s2 + n2 - 1;
426
427         for (p1_lim = (n1 <= n2 ? s1 : s2);  *p1 == *p2;  p1--, p2--) {
428                 if (p1 == p1_lim)
429                         return (p1 != s1) ? (p1 != p2) : (p2 != s2) ? -1 : 0;
430         }
431         return *p1 - *p2;
432 }
433
434 int
435 mdb_cmp(MDB_txn *txn, MDB_dbi dbi, const MDB_val *a, const MDB_val *b)
436 {
437         return txn->mt_dbxs[dbi].md_cmp(a, b);
438 }
439
440 static int
441 _mdb_cmp(MDB_txn *txn, MDB_dbi dbi, const MDB_val *key1, const MDB_val *key2)
442 {
443         if (F_ISSET(txn->mt_dbs[dbi].md_flags, MDB_REVERSEKEY))
444                 return memnrcmp(key1->mv_data, key1->mv_size, key2->mv_data, key2->mv_size);
445         else
446                 return memncmp((char *)key1->mv_data, key1->mv_size, key2->mv_data, key2->mv_size);
447 }
448
449 /* Allocate new page(s) for writing */
450 static MDB_dpage *
451 mdb_alloc_page(MDB_txn *txn, MDB_page *parent, unsigned int parent_idx, int num)
452 {
453         MDB_dpage *dp;
454         pgno_t pgno = P_INVALID;
455         ULONG oldest = txn->mt_txnid - 2;
456
457         if (!txn->mt_env->me_pghead && txn->mt_dbs[FREE_DBI].md_root != P_INVALID) {
458                 /* See if there's anything in the free DB */
459                 MDB_pageparent mpp;
460                 MDB_node *leaf;
461                 ULONG *kptr;
462
463                 mpp.mp_parent = NULL;
464                 mpp.mp_pi = 0;
465                 mdb_search_page(txn, FREE_DBI, NULL, NULL, 0, &mpp);
466                 leaf = NODEPTR(mpp.mp_page, 0);
467                 kptr = (ULONG *)NODEKEY(leaf);
468
469                 /* It's potentially usable, unless there are still
470                  * older readers outstanding. Grab it.
471                  */
472                 if (oldest > *kptr) {
473                         MDB_oldpages *mop;
474                         MDB_val data;
475                         pgno_t *idl;
476
477                         mdb_read_data(txn, leaf, &data);
478                         idl = (ULONG *)data.mv_data;
479                         mop = malloc(sizeof(MDB_oldpages) + MDB_IDL_SIZEOF(idl) - sizeof(pgno_t));
480                         mop->mo_next = txn->mt_env->me_pghead;
481                         mop->mo_txnid = *kptr;
482                         txn->mt_env->me_pghead = mop;
483                         memcpy(mop->mo_pages, idl, MDB_IDL_SIZEOF(idl));
484
485 #if DEBUG > 1
486                         {
487                                 unsigned int i;
488                                 DPRINTF("IDL read txn %lu root %lu num %lu",
489                                         mop->mo_txnid, txn->mt_dbs[FREE_DBI].md_root, idl[0]);
490                                 for (i=0; i<idl[0]; i++) {
491                                         DPRINTF("IDL %lu", idl[i+1]);
492                                 }
493                         }
494 #endif
495                         /* drop this IDL from the DB */
496                         mpp.mp_parent = NULL;
497                         mpp.mp_pi = 0;
498                         mdb_search_page(txn, FREE_DBI, NULL, NULL, 1, &mpp);
499                         leaf = NODEPTR(mpp.mp_page, 0);
500                         mdb_del0(txn, FREE_DBI, 0, &mpp, leaf);
501                 }
502         }
503         if (txn->mt_env->me_pghead) {
504                 unsigned int i;
505                 for (i=0; i<txn->mt_env->me_txns->mt_numreaders; i++) {
506                         ULONG mr = txn->mt_env->me_txns->mt_readers[i].mr_txnid;
507                         if (!mr) continue;
508                         if (mr < oldest)
509                                 oldest = txn->mt_env->me_txns->mt_readers[i].mr_txnid;
510                 }
511                 if (oldest > txn->mt_env->me_pghead->mo_txnid) {
512                         MDB_oldpages *mop = txn->mt_env->me_pghead;
513                         txn->mt_oldest = oldest;
514                         if (num > 1) {
515                                 /* FIXME: For now, always use fresh pages. We
516                                  * really ought to search the free list for a
517                                  * contiguous range.
518                                  */
519                                 ;
520                         } else {
521                                 /* peel pages off tail, so we only have to truncate the list */
522                                 pgno = MDB_IDL_LAST(mop->mo_pages);
523                                 if (MDB_IDL_IS_RANGE(mop->mo_pages)) {
524                                         mop->mo_pages[2]++;
525                                         if (mop->mo_pages[2] > mop->mo_pages[1])
526                                                 mop->mo_pages[0] = 0;
527                                 } else {
528                                         mop->mo_pages[0]--;
529                                 }
530                                 if (MDB_IDL_IS_ZERO(mop->mo_pages)) {
531                                         txn->mt_env->me_pghead = mop->mo_next;
532                                         free(mop);
533                                 }
534                         }
535                 }
536         }
537
538         if ((dp = malloc(txn->mt_env->me_psize * num + sizeof(MDB_dhead))) == NULL)
539                 return NULL;
540         dp->h.md_num = num;
541         dp->h.md_parent = parent;
542         dp->h.md_pi = parent_idx;
543         STAILQ_INSERT_TAIL(txn->mt_u.dirty_queue, dp, h.md_next);
544         if (pgno == P_INVALID) {
545                 dp->p.mp_pgno = txn->mt_next_pgno;
546                 txn->mt_next_pgno += num;
547         } else {
548                 dp->p.mp_pgno = pgno;
549         }
550
551         return dp;
552 }
553
554 /* Touch a page: make it dirty and re-insert into tree with updated pgno.
555  */
556 static int
557 mdb_touch(MDB_txn *txn, MDB_pageparent *pp)
558 {
559         MDB_page *mp = pp->mp_page;
560         pgno_t  pgno;
561         assert(txn != NULL);
562         assert(pp != NULL);
563
564         if (!F_ISSET(mp->mp_flags, P_DIRTY)) {
565                 MDB_dpage *dp;
566                 if ((dp = mdb_alloc_page(txn, pp->mp_parent, pp->mp_pi, 1)) == NULL)
567                         return ENOMEM;
568                 DPRINTF("touched page %lu -> %lu", mp->mp_pgno, dp->p.mp_pgno);
569                 mdb_idl_insert(txn->mt_free_pgs, mp->mp_pgno);
570                 pgno = dp->p.mp_pgno;
571                 memcpy(&dp->p, mp, txn->mt_env->me_psize);
572                 mp = &dp->p;
573                 mp->mp_pgno = pgno;
574                 mp->mp_flags |= P_DIRTY;
575
576                 /* Update the page number to new touched page. */
577                 if (pp->mp_parent != NULL)
578                         NODEPGNO(NODEPTR(pp->mp_parent, pp->mp_pi)) = mp->mp_pgno;
579                 pp->mp_page = mp;
580         }
581         return 0;
582 }
583
584 int
585 mdbenv_sync(MDB_env *env)
586 {
587         int rc = 0;
588         if (!F_ISSET(env->me_flags, MDB_NOSYNC)) {
589                 if (fsync(env->me_fd))
590                         rc = errno;
591         }
592         return rc;
593 }
594
595 int
596 mdb_txn_begin(MDB_env *env, int rdonly, MDB_txn **ret)
597 {
598         MDB_txn *txn;
599         int rc, toggle;
600
601         if ((txn = calloc(1, sizeof(*txn))) == NULL) {
602                 DPRINTF("calloc: %s", strerror(errno));
603                 return ENOMEM;
604         }
605
606         if (rdonly) {
607                 txn->mt_flags |= MDB_TXN_RDONLY;
608         } else {
609                 txn->mt_u.dirty_queue = calloc(1, sizeof(*txn->mt_u.dirty_queue));
610                 if (txn->mt_u.dirty_queue == NULL) {
611                         free(txn);
612                         return ENOMEM;
613                 }
614                 STAILQ_INIT(txn->mt_u.dirty_queue);
615
616                 pthread_mutex_lock(&env->me_txns->mt_wmutex);
617                 env->me_txns->mt_txnid++;
618                 txn->mt_free_pgs = env->me_free_pgs;
619                 txn->mt_free_pgs[0] = 0;
620         }
621
622         txn->mt_txnid = env->me_txns->mt_txnid;
623         if (rdonly) {
624                 MDB_reader *r = pthread_getspecific(env->me_txkey);
625                 if (!r) {
626                         unsigned int i;
627                         pthread_mutex_lock(&env->me_txns->mt_mutex);
628                         for (i=0; i<env->me_txns->mt_numreaders; i++)
629                                 if (env->me_txns->mt_readers[i].mr_pid == 0)
630                                         break;
631                         if (i == env->me_maxreaders) {
632                                 pthread_mutex_unlock(&env->me_txns->mti_mutex);
633                                 return ENOSPC;
634                         }
635                         env->me_txns->mt_readers[i].mr_pid = getpid();
636                         env->me_txns->mt_readers[i].mr_tid = pthread_self();
637                         r = &env->me_txns->mt_readers[i];
638                         pthread_setspecific(env->me_txkey, r);
639                         if (i >= env->me_txns->mt_numreaders)
640                                 env->me_txns->mt_numreaders = i+1;
641                         pthread_mutex_unlock(&env->me_txns->mt_mutex);
642                 }
643                 r->mr_txnid = txn->mt_txnid;
644                 txn->mt_u.reader = r;
645         } else {
646                 env->me_txn = txn;
647         }
648
649         txn->mt_env = env;
650
651         if ((rc = mdbenv_read_meta(env, &toggle)) != MDB_SUCCESS) {
652                 mdb_txn_abort(txn);
653                 return rc;
654         }
655
656         /* Copy the DB arrays */
657         txn->mt_numdbs = env->me_numdbs;
658         txn->mt_dbxs = env->me_dbxs;    /* mostly static anyway */
659         txn->mt_dbs = malloc(env->me_maxdbs * sizeof(MDB_db));
660         memcpy(txn->mt_dbs, env->me_meta->mm_dbs, 2 * sizeof(MDB_db));
661         if (txn->mt_numdbs > 2)
662                 memcpy(txn->mt_dbs+2, env->me_dbs[env->me_db_toggle]+2,
663                         (txn->mt_numdbs - 2) * sizeof(MDB_db));
664
665         if (!rdonly) {
666                 if (toggle)
667                         txn->mt_flags |= MDB_TXN_METOGGLE;
668                 txn->mt_next_pgno = env->me_meta->mm_last_pg+1;
669         }
670
671         DPRINTF("begin transaction %lu on mdbenv %p, root page %lu",
672                 txn->mt_txnid, (void *) env, txn->mt_dbs[MAIN_DBI].md_root);
673
674         *ret = txn;
675         return MDB_SUCCESS;
676 }
677
678 void
679 mdb_txn_abort(MDB_txn *txn)
680 {
681         MDB_dpage *dp;
682         MDB_env *env;
683
684         if (txn == NULL)
685                 return;
686
687         env = txn->mt_env;
688         DPRINTF("abort transaction %lu on mdbenv %p, root page %lu",
689                 txn->mt_txnid, (void *) env, txn->mt_dbs[MAIN_DBI].md_root);
690
691         free(txn->mt_dbs);
692
693         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY)) {
694                 txn->mt_u.reader->mr_txnid = 0;
695         } else {
696                 MDB_oldpages *mop;
697                 unsigned int i;
698
699                 /* Discard all dirty pages. */
700                 while (!STAILQ_EMPTY(txn->mt_u.dirty_queue)) {
701                         dp = STAILQ_FIRST(txn->mt_u.dirty_queue);
702                         STAILQ_REMOVE_HEAD(txn->mt_u.dirty_queue, h.md_next);
703                         free(dp);
704                 }
705                 free(txn->mt_u.dirty_queue);
706
707                 while ((mop = txn->mt_env->me_pghead)) {
708                         txn->mt_env->me_pghead = mop->mo_next;
709                         free(mop);
710                 }
711
712                 env->me_txn = NULL;
713                 env->me_txns->mt_txnid--;
714                 for (i=2; i<env->me_numdbs; i++)
715                         env->me_dbxs[i].md_dirty = 0;
716                 pthread_mutex_unlock(&env->me_txns->mt_wmutex);
717         }
718
719         free(txn);
720 }
721
722 int
723 mdb_txn_commit(MDB_txn *txn)
724 {
725         int              n, done;
726         unsigned int i;
727         ssize_t          rc;
728         off_t            size;
729         MDB_dpage       *dp;
730         MDB_env *env;
731         pgno_t  next;
732         struct iovec     iov[MDB_COMMIT_PAGES];
733
734         assert(txn != NULL);
735         assert(txn->mt_env != NULL);
736
737         env = txn->mt_env;
738
739         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY)) {
740                 DPRINTF("attempt to commit read-only transaction");
741                 mdb_txn_abort(txn);
742                 return EPERM;
743         }
744
745         if (txn != env->me_txn) {
746                 DPRINTF("attempt to commit unknown transaction");
747                 mdb_txn_abort(txn);
748                 return EINVAL;
749         }
750
751         if (F_ISSET(txn->mt_flags, MDB_TXN_ERROR)) {
752                 DPRINTF("error flag is set, can't commit");
753                 mdb_txn_abort(txn);
754                 return EINVAL;
755         }
756
757         if (STAILQ_EMPTY(txn->mt_u.dirty_queue))
758                 goto done;
759
760         DPRINTF("committing transaction %lu on mdbenv %p, root page %lu",
761             txn->mt_txnid, (void *) env, txn->mt_dbs[MAIN_DBI].md_root);
762
763         /* should only be one record now */
764         if (env->me_pghead) {
765                 MDB_val key, data;
766                 MDB_oldpages *mop;
767
768                 mop = env->me_pghead;
769                 key.mv_size = sizeof(pgno_t);
770                 key.mv_data = (char *)&mop->mo_txnid;
771                 data.mv_size = MDB_IDL_SIZEOF(mop->mo_pages);
772                 data.mv_data = mop->mo_pages;
773                 mdb_put(txn, FREE_DBI, &key, &data, 0);
774                 free(env->me_pghead);
775                 env->me_pghead = NULL;
776         }
777         /* save to free list */
778         if (!MDB_IDL_IS_ZERO(txn->mt_free_pgs)) {
779                 MDB_val key, data;
780                 MDB_pageparent mpp;
781
782                 /* make sure last page of freeDB is touched and on freelist */
783                 key.mv_size = MAXKEYSIZE+1;
784                 key.mv_data = NULL;
785                 mpp.mp_parent = NULL;
786                 mpp.mp_pi = 0;
787                 mdb_search_page(txn, FREE_DBI, &key, NULL, 1, &mpp);
788
789 #if DEBUG > 1
790                 {
791                         unsigned int i;
792                         ULONG *idl = txn->mt_free_pgs;
793                         DPRINTF("IDL write txn %lu root %lu num %lu",
794                                 txn->mt_txnid, txn->mt_dbs[FREE_DBI].md_root, idl[0]);
795                         for (i=0; i<idl[0]; i++) {
796                                 DPRINTF("IDL %lu", idl[i+1]);
797                         }
798                 }
799 #endif
800                 /* write to last page of freeDB */
801                 key.mv_size = sizeof(pgno_t);
802                 key.mv_data = (char *)&txn->mt_txnid;
803                 data.mv_size = MDB_IDL_SIZEOF(txn->mt_free_pgs);
804                 data.mv_data = txn->mt_free_pgs;
805                 mdb_put(txn, FREE_DBI, &key, &data, 0);
806         }
807
808         /* Update DB root pointers. Their pages have already been
809          * touched so this is all in-place and cannot fail.
810          */
811         {
812                 MDB_val data;
813                 data.mv_size = sizeof(MDB_db);
814
815                 for (i = 2; i < txn->mt_numdbs; i++) {
816                         if (txn->mt_dbxs[i].md_dirty) {
817                                 data.mv_data = &txn->mt_dbs[i];
818                                 mdb_put(txn, i, &txn->mt_dbxs[i].md_name, &data, 0);
819                         }
820                 }
821         }
822
823         /* Commit up to MDB_COMMIT_PAGES dirty pages to disk until done.
824          */
825         next = 0;
826         do {
827                 n = 0;
828                 done = 1;
829                 size = 0;
830                 STAILQ_FOREACH(dp, txn->mt_u.dirty_queue, h.md_next) {
831                         if (dp->p.mp_pgno != next) {
832                                 if (n) {
833                                         DPRINTF("committing %u dirty pages", n);
834                                         rc = writev(env->me_fd, iov, n);
835                                         if (rc != size) {
836                                                 n = errno;
837                                                 if (rc > 0)
838                                                         DPRINTF("short write, filesystem full?");
839                                                 else
840                                                         DPRINTF("writev: %s", strerror(errno));
841                                                 mdb_txn_abort(txn);
842                                                 return n;
843                                         }
844                                         n = 0;
845                                         size = 0;
846                                 }
847                                 lseek(env->me_fd, dp->p.mp_pgno * env->me_psize, SEEK_SET);
848                                 next = dp->p.mp_pgno;
849                         }
850                         DPRINTF("committing page %lu", dp->p.mp_pgno);
851                         iov[n].iov_len = env->me_psize * dp->h.md_num;
852                         iov[n].iov_base = &dp->p;
853                         size += iov[n].iov_len;
854                         next = dp->p.mp_pgno + dp->h.md_num;
855                         /* clear dirty flag */
856                         dp->p.mp_flags &= ~P_DIRTY;
857                         if (++n >= MDB_COMMIT_PAGES) {
858                                 done = 0;
859                                 break;
860                         }
861                 }
862
863                 if (n == 0)
864                         break;
865
866                 DPRINTF("committing %u dirty pages", n);
867                 rc = writev(env->me_fd, iov, n);
868                 if (rc != size) {
869                         n = errno;
870                         if (rc > 0)
871                                 DPRINTF("short write, filesystem full?");
872                         else
873                                 DPRINTF("writev: %s", strerror(errno));
874                         mdb_txn_abort(txn);
875                         return n;
876                 }
877
878         } while (!done);
879
880         /* Drop the dirty pages.
881          */
882         while (!STAILQ_EMPTY(txn->mt_u.dirty_queue)) {
883                 dp = STAILQ_FIRST(txn->mt_u.dirty_queue);
884                 STAILQ_REMOVE_HEAD(txn->mt_u.dirty_queue, h.md_next);
885                 free(dp);
886         }
887
888         if ((n = mdbenv_sync(env)) != 0 ||
889             (n = mdbenv_write_meta(txn)) != MDB_SUCCESS ||
890             (n = mdbenv_sync(env)) != 0) {
891                 mdb_txn_abort(txn);
892                 return n;
893         }
894         env->me_txn = NULL;
895
896         /* update the DB tables */
897         {
898                 int toggle = !env->me_db_toggle;
899
900                 for (i = 2; i < env->me_numdbs; i++) {
901                         if (txn->mt_dbxs[i].md_dirty) {
902                                 env->me_dbs[toggle][i] = txn->mt_dbs[i];
903                                 txn->mt_dbxs[i].md_dirty = 0;
904                         }
905                 }
906                 for (i = env->me_numdbs; i < txn->mt_numdbs; i++) {
907                         txn->mt_dbxs[i].md_dirty = 0;
908                         env->me_dbxs[i] = txn->mt_dbxs[i];
909                         env->me_dbs[toggle][i] = txn->mt_dbs[i];
910                 }
911                 env->me_db_toggle = toggle;
912                 env->me_numdbs = txn->mt_numdbs;
913
914                 free(txn->mt_dbs);
915         }
916
917         pthread_mutex_unlock(&env->me_txns->mt_wmutex);
918         free(txn->mt_u.dirty_queue);
919         free(txn);
920         txn = NULL;
921
922 done:
923         mdb_txn_abort(txn);
924
925         return MDB_SUCCESS;
926 }
927
928 static int
929 mdbenv_read_header(MDB_env *env, MDB_meta *meta)
930 {
931         char             page[PAGESIZE];
932         MDB_page        *p;
933         MDB_meta        *m;
934         int              rc;
935
936         assert(env != NULL);
937
938         /* We don't know the page size yet, so use a minimum value.
939          */
940
941         if ((rc = pread(env->me_fd, page, PAGESIZE, 0)) == 0) {
942                 return ENOENT;
943         } else if (rc != PAGESIZE) {
944                 if (rc > 0)
945                         errno = EINVAL;
946                 DPRINTF("read: %s", strerror(errno));
947                 return errno;
948         }
949
950         p = (MDB_page *)page;
951
952         if (!F_ISSET(p->mp_flags, P_META)) {
953                 DPRINTF("page %lu not a meta page", p->mp_pgno);
954                 return EINVAL;
955         }
956
957         m = METADATA(p);
958         if (m->mm_magic != MDB_MAGIC) {
959                 DPRINTF("meta has invalid magic");
960                 return EINVAL;
961         }
962
963         if (m->mm_version != MDB_VERSION) {
964                 DPRINTF("database is version %u, expected version %u",
965                     m->mm_version, MDB_VERSION);
966                 return EINVAL;
967         }
968
969         memcpy(meta, m, sizeof(*m));
970         return 0;
971 }
972
973 static int
974 mdbenv_init_meta(MDB_env *env, MDB_meta *meta)
975 {
976         MDB_page *p, *q;
977         MDB_meta *m;
978         int rc;
979         unsigned int     psize;
980
981         DPRINTF("writing new meta page");
982         psize = sysconf(_SC_PAGE_SIZE);
983
984         meta->mm_magic = MDB_MAGIC;
985         meta->mm_version = MDB_VERSION;
986         meta->mm_psize = psize;
987         meta->mm_last_pg = 1;
988         meta->mm_flags = env->me_flags & 0xffff;
989 #if __BYTE_ORDER == __LITTLE_ENDIAN
990         /* freeDB keys are pgno_t's, must compare in int order */
991         meta->mm_flags |= MDB_REVERSEKEY;
992 #endif
993         meta->mm_dbs[0].md_root = P_INVALID;
994         meta->mm_dbs[1].md_root = P_INVALID;
995
996         p = calloc(2, psize);
997         p->mp_pgno = 0;
998         p->mp_flags = P_META;
999
1000         m = METADATA(p);
1001         memcpy(m, meta, sizeof(*meta));
1002
1003         q = (MDB_page *)((char *)p + psize);
1004
1005         q->mp_pgno = 1;
1006         q->mp_flags = P_META;
1007
1008         m = METADATA(q);
1009         memcpy(m, meta, sizeof(*meta));
1010
1011         rc = write(env->me_fd, p, psize * 2);
1012         free(p);
1013         return (rc == (int)psize * 2) ? MDB_SUCCESS : errno;
1014 }
1015
1016 static int
1017 mdbenv_write_meta(MDB_txn *txn)
1018 {
1019         MDB_env *env;
1020         MDB_meta        meta;
1021         off_t off;
1022         int rc, len;
1023         char *ptr;
1024
1025         assert(txn != NULL);
1026         assert(txn->mt_env != NULL);
1027
1028         DPRINTF("writing meta page for root page %lu", txn->mt_dbs[MAIN_DBI].md_root);
1029
1030         env = txn->mt_env;
1031
1032         ptr = (char *)&meta;
1033         off = offsetof(MDB_meta, mm_dbs[0].md_depth);
1034         len = sizeof(MDB_meta) - off;
1035
1036         ptr += off;
1037         meta.mm_dbs[0] = txn->mt_dbs[0];
1038         meta.mm_dbs[1] = txn->mt_dbs[1];
1039         meta.mm_last_pg = txn->mt_next_pgno - 1;
1040         meta.mm_txnid = txn->mt_txnid;
1041
1042         if (!F_ISSET(txn->mt_flags, MDB_TXN_METOGGLE))
1043                 off += env->me_psize;
1044         off += PAGEHDRSZ;
1045
1046         lseek(env->me_fd, off, SEEK_SET);
1047         rc = write(env->me_fd, ptr, len);
1048         if (rc != len) {
1049                 DPRINTF("write failed, disk error?");
1050                 return errno;
1051         }
1052
1053         return MDB_SUCCESS;
1054 }
1055
1056 static int
1057 mdbenv_read_meta(MDB_env *env, int *which)
1058 {
1059         int toggle = 0;
1060
1061         assert(env != NULL);
1062
1063         if (env->me_metas[0]->mm_txnid < env->me_metas[1]->mm_txnid)
1064                 toggle = 1;
1065
1066         if (env->me_meta != env->me_metas[toggle])
1067                 env->me_meta = env->me_metas[toggle];
1068         if (which)
1069                 *which = toggle;
1070
1071         DPRINTF("Using meta page %d", toggle);
1072
1073         return MDB_SUCCESS;
1074 }
1075
1076 int
1077 mdbenv_create(MDB_env **env)
1078 {
1079         MDB_env *e;
1080
1081         e = calloc(1, sizeof(*e));
1082         if (!e) return ENOMEM;
1083
1084         e->me_maxreaders = DEFAULT_READERS;
1085         e->me_maxdbs = 2;
1086         e->me_fd = -1;
1087         e->me_lfd = -1;
1088         *env = e;
1089         return MDB_SUCCESS;
1090 }
1091
1092 int
1093 mdbenv_set_mapsize(MDB_env *env, size_t size)
1094 {
1095         if (env->me_map)
1096                 return EINVAL;
1097         env->me_mapsize = size;
1098         return MDB_SUCCESS;
1099 }
1100
1101 int
1102 mdbenv_set_maxdbs(MDB_env *env, int dbs)
1103 {
1104         if (env->me_map)
1105                 return EINVAL;
1106         env->me_maxdbs = dbs;
1107         return MDB_SUCCESS;
1108 }
1109
1110 int
1111 mdbenv_set_maxreaders(MDB_env *env, int readers)
1112 {
1113         env->me_maxreaders = readers;
1114         return MDB_SUCCESS;
1115 }
1116
1117 int
1118 mdbenv_get_maxreaders(MDB_env *env, int *readers)
1119 {
1120         if (!env || !readers)
1121                 return EINVAL;
1122         *readers = env->me_maxreaders;
1123         return MDB_SUCCESS;
1124 }
1125
1126 int
1127 mdbenv_open2(MDB_env *env, unsigned int flags)
1128 {
1129         int i, newenv = 0;
1130         MDB_meta meta;
1131         MDB_page *p;
1132
1133         env->me_flags = flags;
1134
1135         memset(&meta, 0, sizeof(meta));
1136
1137         if ((i = mdbenv_read_header(env, &meta)) != 0) {
1138                 if (i != ENOENT)
1139                         return i;
1140                 DPRINTF("new mdbenv");
1141                 newenv = 1;
1142         }
1143
1144         if (!env->me_mapsize) {
1145                 env->me_mapsize = newenv ? DEFAULT_MAPSIZE : meta.mm_mapsize;
1146         }
1147
1148         i = MAP_SHARED;
1149         if (meta.mm_address && (flags & MDB_FIXEDMAP))
1150                 i |= MAP_FIXED;
1151         env->me_map = mmap(meta.mm_address, env->me_mapsize, PROT_READ, i,
1152                 env->me_fd, 0);
1153         if (env->me_map == MAP_FAILED)
1154                 return errno;
1155
1156         if (newenv) {
1157                 meta.mm_mapsize = env->me_mapsize;
1158                 if (flags & MDB_FIXEDMAP)
1159                         meta.mm_address = env->me_map;
1160                 i = mdbenv_init_meta(env, &meta);
1161                 if (i != MDB_SUCCESS) {
1162                         munmap(env->me_map, env->me_mapsize);
1163                         return i;
1164                 }
1165         }
1166         env->me_psize = meta.mm_psize;
1167
1168         p = (MDB_page *)(MDB_page *)(MDB_page *)(MDB_page *)(MDB_page *)(MDB_page *)(MDB_page *)(MDB_page *)(MDB_page *)env->me_map;
1169         env->me_metas[0] = METADATA(p);
1170         env->me_metas[1] = (MDB_meta *)((char *)env->me_metas[0] + meta.mm_psize);
1171
1172         if ((i = mdbenv_read_meta(env, NULL)) != 0)
1173                 return i;
1174
1175         DPRINTF("opened database version %u, pagesize %u",
1176             env->me_meta->mm_version, env->me_psize);
1177         DPRINTF("depth: %u", env->me_meta->mm_dbs[MAIN_DBI].md_depth);
1178         DPRINTF("entries: %lu", env->me_meta->mm_dbs[MAIN_DBI].md_entries);
1179         DPRINTF("branch pages: %lu", env->me_meta->mm_dbs[MAIN_DBI].md_branch_pages);
1180         DPRINTF("leaf pages: %lu", env->me_meta->mm_dbs[MAIN_DBI].md_leaf_pages);
1181         DPRINTF("overflow pages: %lu", env->me_meta->mm_dbs[MAIN_DBI].md_overflow_pages);
1182         DPRINTF("root: %lu", env->me_meta->mm_dbs[MAIN_DBI].md_root);
1183
1184         return MDB_SUCCESS;
1185 }
1186
1187 static void
1188 mdbenv_reader_dest(void *ptr)
1189 {
1190         MDB_reader *reader = ptr;
1191
1192         reader->mr_txnid = 0;
1193         reader->mr_pid = 0;
1194         reader->mr_tid = 0;
1195 }
1196
1197 /* downgrade the exclusive lock on the region back to shared */
1198 static void
1199 mdbenv_share_locks(MDB_env *env)
1200 {
1201         struct flock lock_info;
1202
1203         env->me_txns->mt_txnid = env->me_meta->mm_txnid;
1204
1205         memset((void *)&lock_info, 0, sizeof(lock_info));
1206         lock_info.l_type = F_RDLCK;
1207         lock_info.l_whence = SEEK_SET;
1208         lock_info.l_start = 0;
1209         lock_info.l_len = 1;
1210         fcntl(env->me_lfd, F_SETLK, &lock_info);
1211 }
1212
1213 static int
1214 mdbenv_setup_locks(MDB_env *env, char *lpath, int mode, int *excl)
1215 {
1216         int rc;
1217         off_t size, rsize;
1218         struct flock lock_info;
1219
1220         *excl = 0;
1221
1222         if ((env->me_lfd = open(lpath, O_RDWR|O_CREAT, mode)) == -1) {
1223                 rc = errno;
1224                 return rc;
1225         }
1226         /* Try to get exclusive lock. If we succeed, then
1227          * nobody is using the lock region and we should initialize it.
1228          */
1229         memset((void *)&lock_info, 0, sizeof(lock_info));
1230         lock_info.l_type = F_WRLCK;
1231         lock_info.l_whence = SEEK_SET;
1232         lock_info.l_start = 0;
1233         lock_info.l_len = 1;
1234         rc = fcntl(env->me_lfd, F_SETLK, &lock_info);
1235         if (rc == 0) {
1236                 *excl = 1;
1237         } else {
1238                 lock_info.l_type = F_RDLCK;
1239                 rc = fcntl(env->me_lfd, F_SETLK, &lock_info);
1240                 if (rc) {
1241                         rc = errno;
1242                         goto fail;
1243                 }
1244         }
1245         size = lseek(env->me_lfd, 0, SEEK_END);
1246         rsize = (env->me_maxreaders-1) * sizeof(MDB_reader) + sizeof(MDB_txninfo);
1247         if (size < rsize && *excl) {
1248                 if (ftruncate(env->me_lfd, rsize) != 0) {
1249                         rc = errno;
1250                         goto fail;
1251                 }
1252         } else {
1253                 rsize = size;
1254                 size = rsize - sizeof(MDB_txninfo);
1255                 env->me_maxreaders = size/sizeof(MDB_reader) + 1;
1256         }
1257         env->me_txns = mmap(0, rsize, PROT_READ|PROT_WRITE, MAP_SHARED,
1258                 env->me_lfd, 0);
1259         if (env->me_txns == MAP_FAILED) {
1260                 rc = errno;
1261                 goto fail;
1262         }
1263         if (*excl) {
1264                 pthread_mutexattr_t mattr;
1265
1266                 pthread_mutexattr_init(&mattr);
1267                 pthread_mutexattr_setpshared(&mattr, PTHREAD_PROCESS_SHARED);
1268                 pthread_mutex_init(&env->me_txns->mt_mutex, &mattr);
1269                 pthread_mutex_init(&env->me_txns->mt_wmutex, &mattr);
1270                 env->me_txns->mt_version = MDB_VERSION;
1271                 env->me_txns->mt_magic = MDB_MAGIC;
1272                 env->me_txns->mt_txnid = 0;
1273                 env->me_txns->mt_numreaders = 0;
1274
1275         } else {
1276                 if (env->me_txns->mt_magic != MDB_MAGIC) {
1277                         DPRINTF("lock region has invalid magic");
1278                         errno = EINVAL;
1279                 }
1280                 if (env->me_txns->mt_version != MDB_VERSION) {
1281                         DPRINTF("lock region is version %u, expected version %u",
1282                                 env->me_txns->mt_version, MDB_VERSION);
1283                         errno = EINVAL;
1284                 }
1285                 if (errno != EACCES && errno != EAGAIN) {
1286                         rc = errno;
1287                         goto fail;
1288                 }
1289         }
1290         return MDB_SUCCESS;
1291
1292 fail:
1293         close(env->me_lfd);
1294         return rc;
1295
1296 }
1297
1298 int
1299 mdbenv_open(MDB_env *env, const char *path, unsigned int flags, mode_t mode)
1300 {
1301         int             oflags, rc, len, excl;
1302         char *lpath, *dpath;
1303
1304         len = strlen(path);
1305         lpath = malloc(len + sizeof("/lock.mdb") + len + sizeof("/data.db"));
1306         if (!lpath)
1307                 return ENOMEM;
1308         dpath = lpath + len + sizeof("/lock.mdb");
1309         sprintf(lpath, "%s/lock.mdb", path);
1310         sprintf(dpath, "%s/data.mdb", path);
1311
1312         rc = mdbenv_setup_locks(env, lpath, mode, &excl);
1313         if (rc)
1314                 goto leave;
1315
1316         if (F_ISSET(flags, MDB_RDONLY))
1317                 oflags = O_RDONLY;
1318         else
1319                 oflags = O_RDWR | O_CREAT;
1320
1321         if ((env->me_fd = open(dpath, oflags, mode)) == -1)
1322                 return errno;
1323
1324         if ((rc = mdbenv_open2(env, flags)) != MDB_SUCCESS) {
1325                 close(env->me_fd);
1326                 env->me_fd = -1;
1327         } else {
1328                 env->me_path = strdup(path);
1329                 DPRINTF("opened dbenv %p", (void *) env);
1330                 pthread_key_create(&env->me_txkey, mdbenv_reader_dest);
1331                 if (excl)
1332                         mdbenv_share_locks(env);
1333                 env->me_dbxs = calloc(env->me_maxdbs, sizeof(MDB_dbx));
1334                 env->me_dbs[0] = calloc(env->me_maxdbs, sizeof(MDB_db));
1335                 env->me_dbs[1] = calloc(env->me_maxdbs, sizeof(MDB_db));
1336                 env->me_numdbs = 2;
1337         }
1338
1339 leave:
1340         free(lpath);
1341         return rc;
1342 }
1343
1344 void
1345 mdbenv_close(MDB_env *env)
1346 {
1347         if (env == NULL)
1348                 return;
1349
1350         free(env->me_dbxs);
1351         free(env->me_path);
1352
1353         if (env->me_map) {
1354                 munmap(env->me_map, env->me_mapsize);
1355         }
1356         close(env->me_fd);
1357         if (env->me_txns) {
1358                 size_t size = (env->me_maxreaders-1) * sizeof(MDB_reader) + sizeof(MDB_txninfo);
1359                 munmap(env->me_txns, size);
1360         }
1361         close(env->me_lfd);
1362         free(env);
1363 }
1364
1365 /* Search for key within a leaf page, using binary search.
1366  * Returns the smallest entry larger or equal to the key.
1367  * If exactp is non-null, stores whether the found entry was an exact match
1368  * in *exactp (1 or 0).
1369  * If kip is non-null, stores the index of the found entry in *kip.
1370  * If no entry larger or equal to the key is found, returns NULL.
1371  */
1372 static MDB_node *
1373 mdb_search_node(MDB_txn *txn, MDB_dbi dbi, MDB_page *mp, MDB_val *key,
1374     int *exactp, unsigned int *kip)
1375 {
1376         unsigned int     i = 0;
1377         int              low, high;
1378         int              rc = 0;
1379         MDB_node        *node;
1380         MDB_val  nodekey;
1381
1382         DPRINTF("searching %u keys in %s page %lu",
1383             NUMKEYS(mp),
1384             IS_LEAF(mp) ? "leaf" : "branch",
1385             mp->mp_pgno);
1386
1387         assert(NUMKEYS(mp) > 0);
1388
1389         memset(&nodekey, 0, sizeof(nodekey));
1390
1391         low = IS_LEAF(mp) ? 0 : 1;
1392         high = NUMKEYS(mp) - 1;
1393         while (low <= high) {
1394                 i = (low + high) >> 1;
1395                 node = NODEPTR(mp, i);
1396
1397                 nodekey.mv_size = node->mn_ksize;
1398                 nodekey.mv_data = NODEKEY(node);
1399
1400                 if (txn->mt_dbxs[dbi].md_cmp)
1401                         rc = txn->mt_dbxs[dbi].md_cmp(key, &nodekey);
1402                 else
1403                         rc = _mdb_cmp(txn, dbi, key, &nodekey);
1404
1405                 if (IS_LEAF(mp))
1406                         DPRINTF("found leaf index %u [%.*s], rc = %i",
1407                             i, (int)nodekey.mv_size, (char *)nodekey.mv_data, rc);
1408                 else
1409                         DPRINTF("found branch index %u [%.*s -> %lu], rc = %i",
1410                             i, (int)node->mn_ksize, (char *)NODEKEY(node),
1411                             node->mn_pgno, rc);
1412
1413                 if (rc == 0)
1414                         break;
1415                 if (rc > 0)
1416                         low = i + 1;
1417                 else
1418                         high = i - 1;
1419         }
1420
1421         if (rc > 0) {   /* Found entry is less than the key. */
1422                 i++;    /* Skip to get the smallest entry larger than key. */
1423                 if (i >= NUMKEYS(mp))
1424                         /* There is no entry larger or equal to the key. */
1425                         return NULL;
1426         }
1427         if (exactp)
1428                 *exactp = (rc == 0);
1429         if (kip)        /* Store the key index if requested. */
1430                 *kip = i;
1431
1432         return NODEPTR(mp, i);
1433 }
1434
1435 static void
1436 cursor_pop_page(MDB_cursor *cursor)
1437 {
1438         MDB_ppage       *top;
1439
1440         top = CURSOR_TOP(cursor);
1441         CURSOR_POP(cursor);
1442
1443         DPRINTF("popped page %lu off cursor %p", top->mp_page->mp_pgno, (void *) cursor);
1444
1445         free(top);
1446 }
1447
1448 static MDB_ppage *
1449 cursor_push_page(MDB_cursor *cursor, MDB_page *mp)
1450 {
1451         MDB_ppage       *ppage;
1452
1453         DPRINTF("pushing page %lu on cursor %p", mp->mp_pgno, (void *) cursor);
1454
1455         if ((ppage = calloc(1, sizeof(*ppage))) == NULL)
1456                 return NULL;
1457         ppage->mp_page = mp;
1458         CURSOR_PUSH(cursor, ppage);
1459         return ppage;
1460 }
1461
1462 static MDB_page *
1463 mdb_get_page(MDB_txn *txn, pgno_t pgno)
1464 {
1465         MDB_page *p = NULL;
1466         int found = 0;
1467
1468         if (!F_ISSET(txn->mt_flags, MDB_TXN_RDONLY) && !STAILQ_EMPTY(txn->mt_u.dirty_queue)) {
1469                 MDB_dpage *dp;
1470                 STAILQ_FOREACH(dp, txn->mt_u.dirty_queue, h.md_next) {
1471                         if (dp->p.mp_pgno == pgno) {
1472                                 p = &dp->p;
1473                                 found = 1;
1474                                 break;
1475                         }
1476                 }
1477         }
1478         if (!found) {
1479                 if (pgno > txn->mt_env->me_meta->mm_last_pg)
1480                         return NULL;
1481                 p = (MDB_page *)(txn->mt_env->me_map + txn->mt_env->me_psize * pgno);
1482         }
1483         return p;
1484 }
1485
1486 static int
1487 mdb_search_page_root(MDB_txn *txn, MDB_dbi dbi, MDB_val *key,
1488     MDB_cursor *cursor, int modify, MDB_pageparent *mpp)
1489 {
1490         MDB_page        *mp = mpp->mp_page;
1491         int rc;
1492
1493         if (cursor && cursor_push_page(cursor, mp) == NULL)
1494                 return MDB_FAIL;
1495
1496         while (IS_BRANCH(mp)) {
1497                 unsigned int     i = 0;
1498                 MDB_node        *node;
1499
1500                 DPRINTF("branch page %lu has %u keys", mp->mp_pgno, NUMKEYS(mp));
1501                 assert(NUMKEYS(mp) > 1);
1502                 DPRINTF("found index 0 to page %lu", NODEPGNO(NODEPTR(mp, 0)));
1503
1504                 if (key == NULL)        /* Initialize cursor to first page. */
1505                         i = 0;
1506                 else if (key->mv_size > MAXKEYSIZE && key->mv_data == NULL) {
1507                                                         /* cursor to last page */
1508                         i = NUMKEYS(mp)-1;
1509                 } else {
1510                         int      exact;
1511                         node = mdb_search_node(txn, dbi, mp, key, &exact, &i);
1512                         if (node == NULL)
1513                                 i = NUMKEYS(mp) - 1;
1514                         else if (!exact) {
1515                                 assert(i > 0);
1516                                 i--;
1517                         }
1518                 }
1519
1520                 if (key)
1521                         DPRINTF("following index %u for key %.*s",
1522                             i, (int)key->mv_size, (char *)key->mv_data);
1523                 assert(i < NUMKEYS(mp));
1524                 node = NODEPTR(mp, i);
1525
1526                 if (cursor)
1527                         CURSOR_TOP(cursor)->mp_ki = i;
1528
1529                 mpp->mp_parent = mp;
1530                 if ((mp = mdb_get_page(txn, NODEPGNO(node))) == NULL)
1531                         return MDB_FAIL;
1532                 mpp->mp_pi = i;
1533                 mpp->mp_page = mp;
1534
1535                 if (cursor && cursor_push_page(cursor, mp) == NULL)
1536                         return MDB_FAIL;
1537
1538                 if (modify) {
1539                         MDB_dhead *dh = ((MDB_dhead *)mp)-1;
1540                         if ((rc = mdb_touch(txn, mpp)) != 0)
1541                                 return rc;
1542                         dh = ((MDB_dhead *)mpp->mp_page)-1;
1543                         dh->md_parent = mpp->mp_parent;
1544                         dh->md_pi = mpp->mp_pi;
1545                 }
1546
1547                 mp = mpp->mp_page;
1548         }
1549
1550         if (!IS_LEAF(mp)) {
1551                 DPRINTF("internal error, index points to a %02X page!?",
1552                     mp->mp_flags);
1553                 return MDB_FAIL;
1554         }
1555
1556         DPRINTF("found leaf page %lu for key %.*s", mp->mp_pgno,
1557             key ? (int)key->mv_size : 0, key ? (char *)key->mv_data : NULL);
1558
1559         return MDB_SUCCESS;
1560 }
1561
1562 /* Search for the page a given key should be in.
1563  * Stores a pointer to the found page in *mpp.
1564  * If key is NULL, search for the lowest page (used by mdb_cursor_first).
1565  * If cursor is non-null, pushes parent pages on the cursor stack.
1566  * If modify is true, visited pages are updated with new page numbers.
1567  */
1568 static int
1569 mdb_search_page(MDB_txn *txn, MDB_dbi dbi, MDB_val *key,
1570     MDB_cursor *cursor, int modify, MDB_pageparent *mpp)
1571 {
1572         int              rc;
1573         pgno_t           root;
1574
1575         /* Choose which root page to start with. If a transaction is given
1576          * use the root page from the transaction, otherwise read the last
1577          * committed root page.
1578          */
1579         if (F_ISSET(txn->mt_flags, MDB_TXN_ERROR)) {
1580                 DPRINTF("transaction has failed, must abort");
1581                 return EINVAL;
1582         } else
1583                 root = txn->mt_dbs[dbi].md_root;
1584
1585         if (root == P_INVALID) {                /* Tree is empty. */
1586                 DPRINTF("tree is empty");
1587                 return ENOENT;
1588         }
1589
1590         if ((mpp->mp_page = mdb_get_page(txn, root)) == NULL)
1591                 return MDB_FAIL;
1592
1593         DPRINTF("root page has flags 0x%X", mpp->mp_page->mp_flags);
1594
1595         if (modify) {
1596                 /* For sub-databases, update main root first */
1597                 if (dbi > MAIN_DBI && !txn->mt_dbxs[dbi].md_dirty) {
1598                         MDB_pageparent mp2;
1599                         rc = mdb_search_page(txn, 0, &txn->mt_dbxs[dbi].md_name,
1600                                 NULL, 1, &mp2);
1601                         if (rc)
1602                                 return rc;
1603                         txn->mt_dbxs[dbi].md_dirty = 1;
1604                 }
1605                 if (!F_ISSET(mpp->mp_page->mp_flags, P_DIRTY)) {
1606                         mpp->mp_parent = NULL;
1607                         mpp->mp_pi = 0;
1608                         if ((rc = mdb_touch(txn, mpp)))
1609                                 return rc;
1610                         txn->mt_dbs[dbi].md_root = mpp->mp_page->mp_pgno;
1611                 }
1612         }
1613
1614         return mdb_search_page_root(txn, dbi, key, cursor, modify, mpp);
1615 }
1616
1617 static int
1618 mdb_read_data(MDB_txn *txn, MDB_node *leaf, MDB_val *data)
1619 {
1620         MDB_page        *omp;           /* overflow mpage */
1621         pgno_t           pgno;
1622
1623         if (!F_ISSET(leaf->mn_flags, F_BIGDATA)) {
1624                 data->mv_size = leaf->mn_dsize;
1625                 data->mv_data = NODEDATA(leaf);
1626                 return MDB_SUCCESS;
1627         }
1628
1629         /* Read overflow data.
1630          */
1631         data->mv_size = leaf->mn_dsize;
1632         memcpy(&pgno, NODEDATA(leaf), sizeof(pgno));
1633         if ((omp = mdb_get_page(txn, pgno)) == NULL) {
1634                 DPRINTF("read overflow page %lu failed", pgno);
1635                 return MDB_FAIL;
1636         }
1637         data->mv_data = omp;
1638
1639         return MDB_SUCCESS;
1640 }
1641
1642 int
1643 mdb_get(MDB_txn *txn, MDB_dbi dbi,
1644     MDB_val *key, MDB_val *data)
1645 {
1646         int              rc, exact;
1647         MDB_node        *leaf;
1648         MDB_pageparent mpp;
1649
1650         assert(key);
1651         assert(data);
1652         DPRINTF("===> get key [%.*s]", (int)key->mv_size, (char *)key->mv_data);
1653
1654         if (key->mv_size == 0 || key->mv_size > MAXKEYSIZE) {
1655                 return EINVAL;
1656         }
1657
1658         if ((rc = mdb_search_page(txn, dbi, key, NULL, 0, &mpp)) != MDB_SUCCESS)
1659                 return rc;
1660
1661         leaf = mdb_search_node(txn, dbi, mpp.mp_page, key, &exact, NULL);
1662         if (leaf && exact) {
1663                 /* Return first duplicate data item */
1664                 if (F_ISSET(txn->mt_dbs[dbi].md_flags, MDB_DUPSORT)) {
1665                         MDB_xcursor mx;
1666
1667                         mdb_xcursor_init0(txn, dbi, &mx);
1668                         mdb_xcursor_init1(txn, dbi, &mx, NODEDATA(leaf));
1669                         rc = mdb_search_page(&mx.mx_txn, mx.mx_txn.mt_numdbs-1, NULL, NULL, 0, &mpp);
1670                         if (rc != MDB_SUCCESS)
1671                                 return rc;
1672                         leaf = NODEPTR(mpp.mp_page, 0);
1673                 }
1674                 rc = mdb_read_data(txn, leaf, data);
1675         } else {
1676                 rc = ENOENT;
1677         }
1678
1679         return rc;
1680 }
1681
1682 static int
1683 mdb_sibling(MDB_cursor *cursor, int move_right)
1684 {
1685         int              rc;
1686         MDB_node        *indx;
1687         MDB_ppage       *parent, *top;
1688         MDB_page        *mp;
1689
1690         top = CURSOR_TOP(cursor);
1691         if ((parent = SLIST_NEXT(top, mp_entry)) == NULL) {
1692                 return ENOENT;          /* root has no siblings */
1693         }
1694
1695         DPRINTF("parent page is page %lu, index %u",
1696             parent->mp_page->mp_pgno, parent->mp_ki);
1697
1698         cursor_pop_page(cursor);
1699         if (move_right ? (parent->mp_ki + 1 >= NUMKEYS(parent->mp_page))
1700                        : (parent->mp_ki == 0)) {
1701                 DPRINTF("no more keys left, moving to %s sibling",
1702                     move_right ? "right" : "left");
1703                 if ((rc = mdb_sibling(cursor, move_right)) != MDB_SUCCESS)
1704                         return rc;
1705                 parent = CURSOR_TOP(cursor);
1706         } else {
1707                 if (move_right)
1708                         parent->mp_ki++;
1709                 else
1710                         parent->mp_ki--;
1711                 DPRINTF("just moving to %s index key %u",
1712                     move_right ? "right" : "left", parent->mp_ki);
1713         }
1714         assert(IS_BRANCH(parent->mp_page));
1715
1716         indx = NODEPTR(parent->mp_page, parent->mp_ki);
1717         if ((mp = mdb_get_page(cursor->mc_txn, indx->mn_pgno)) == NULL)
1718                 return MDB_FAIL;
1719 #if 0
1720         mp->parent = parent->mp_page;
1721         mp->parent_index = parent->mp_ki;
1722 #endif
1723
1724         cursor_push_page(cursor, mp);
1725
1726         return MDB_SUCCESS;
1727 }
1728
1729 static int
1730 mdb_set_key(MDB_node *node, MDB_val *key)
1731 {
1732         if (key == NULL)
1733                 return 0;
1734
1735         key->mv_size = node->mn_ksize;
1736         key->mv_data = NODEKEY(node);
1737
1738         return 0;
1739 }
1740
1741 static int
1742 mdb_cursor_next(MDB_cursor *cursor, MDB_val *key, MDB_val *data)
1743 {
1744         MDB_ppage       *top;
1745         MDB_page        *mp;
1746         MDB_node        *leaf;
1747
1748         if (cursor->mc_eof) {
1749                 return ENOENT;
1750         }
1751
1752         assert(cursor->mc_initialized);
1753
1754         top = CURSOR_TOP(cursor);
1755         mp = top->mp_page;
1756
1757         DPRINTF("cursor_next: top page is %lu in cursor %p", mp->mp_pgno, (void *) cursor);
1758
1759         if (top->mp_ki + 1 >= NUMKEYS(mp)) {
1760                 DPRINTF("=====> move to next sibling page");
1761                 if (mdb_sibling(cursor, 1) != MDB_SUCCESS) {
1762                         cursor->mc_eof = 1;
1763                         return ENOENT;
1764                 }
1765                 top = CURSOR_TOP(cursor);
1766                 mp = top->mp_page;
1767                 DPRINTF("next page is %lu, key index %u", mp->mp_pgno, top->mp_ki);
1768         } else
1769                 top->mp_ki++;
1770
1771         DPRINTF("==> cursor points to page %lu with %u keys, key index %u",
1772             mp->mp_pgno, NUMKEYS(mp), top->mp_ki);
1773
1774         assert(IS_LEAF(mp));
1775         leaf = NODEPTR(mp, top->mp_ki);
1776
1777         if (data && mdb_read_data(cursor->mc_txn, leaf, data) != MDB_SUCCESS)
1778                 return MDB_FAIL;
1779
1780         return mdb_set_key(leaf, key);
1781 }
1782
1783 static int
1784 mdb_cursor_prev(MDB_cursor *cursor, MDB_val *key, MDB_val *data)
1785 {
1786         MDB_ppage       *top;
1787         MDB_page        *mp;
1788         MDB_node        *leaf;
1789
1790         assert(cursor->mc_initialized);
1791
1792         top = CURSOR_TOP(cursor);
1793         mp = top->mp_page;
1794
1795         DPRINTF("cursor_prev: top page is %lu in cursor %p", mp->mp_pgno, (void *) cursor);
1796
1797         if (top->mp_ki == 0)  {
1798                 DPRINTF("=====> move to prev sibling page");
1799                 if (mdb_sibling(cursor, 0) != MDB_SUCCESS) {
1800                         return ENOENT;
1801                 }
1802                 top = CURSOR_TOP(cursor);
1803                 mp = top->mp_page;
1804                 top->mp_ki = NUMKEYS(mp) - 1;
1805                 DPRINTF("prev page is %lu, key index %u", mp->mp_pgno, top->mp_ki);
1806         } else
1807                 top->mp_ki--;
1808
1809         cursor->mc_eof = 0;
1810
1811         DPRINTF("==> cursor points to page %lu with %u keys, key index %u",
1812             mp->mp_pgno, NUMKEYS(mp), top->mp_ki);
1813
1814         assert(IS_LEAF(mp));
1815         leaf = NODEPTR(mp, top->mp_ki);
1816
1817         if (data && mdb_read_data(cursor->mc_txn, leaf, data) != MDB_SUCCESS)
1818                 return MDB_FAIL;
1819
1820         return mdb_set_key(leaf, key);
1821 }
1822
1823 static int
1824 mdb_cursor_set(MDB_cursor *cursor, MDB_val *key, MDB_val *data,
1825     int *exactp)
1826 {
1827         int              rc;
1828         MDB_node        *leaf;
1829         MDB_ppage       *top;
1830         MDB_pageparent mpp;
1831
1832         assert(cursor);
1833         assert(key);
1834         assert(key->mv_size > 0);
1835
1836         rc = mdb_search_page(cursor->mc_txn, cursor->mc_dbi, key, cursor, 0, &mpp);
1837         if (rc != MDB_SUCCESS)
1838                 return rc;
1839         assert(IS_LEAF(mpp.mp_page));
1840
1841         top = CURSOR_TOP(cursor);
1842         leaf = mdb_search_node(cursor->mc_txn, cursor->mc_dbi, mpp.mp_page, key, exactp, &top->mp_ki);
1843         if (exactp != NULL && !*exactp) {
1844                 /* MDB_SET specified and not an exact match. */
1845                 return ENOENT;
1846         }
1847
1848         if (leaf == NULL) {
1849                 DPRINTF("===> inexact leaf not found, goto sibling");
1850                 if ((rc = mdb_sibling(cursor, 1)) != MDB_SUCCESS)
1851                         return rc;              /* no entries matched */
1852                 top = CURSOR_TOP(cursor);
1853                 top->mp_ki = 0;
1854                 mpp.mp_page = top->mp_page;
1855                 assert(IS_LEAF(mpp.mp_page));
1856                 leaf = NODEPTR(mpp.mp_page, 0);
1857         }
1858
1859         cursor->mc_initialized = 1;
1860         cursor->mc_eof = 0;
1861
1862         if (data && (rc = mdb_read_data(cursor->mc_txn, leaf, data)) != MDB_SUCCESS)
1863                 return rc;
1864
1865         rc = mdb_set_key(leaf, key);
1866         if (rc == MDB_SUCCESS) {
1867                 DPRINTF("==> cursor placed on key %.*s",
1868                         (int)key->mv_size, (char *)key->mv_data);
1869                 ;
1870         }
1871
1872         return rc;
1873 }
1874
1875 static int
1876 mdb_cursor_first(MDB_cursor *cursor, MDB_val *key, MDB_val *data)
1877 {
1878         int              rc;
1879         MDB_pageparent  mpp;
1880         MDB_node        *leaf;
1881
1882         rc = mdb_search_page(cursor->mc_txn, cursor->mc_dbi, NULL, cursor, 0, &mpp);
1883         if (rc != MDB_SUCCESS)
1884                 return rc;
1885         assert(IS_LEAF(mpp.mp_page));
1886
1887         leaf = NODEPTR(mpp.mp_page, 0);
1888         cursor->mc_initialized = 1;
1889         cursor->mc_eof = 0;
1890
1891         if (data && (rc = mdb_read_data(cursor->mc_txn, leaf, data)) != MDB_SUCCESS)
1892                 return rc;
1893
1894         return mdb_set_key(leaf, key);
1895 }
1896
1897 static int
1898 mdb_cursor_last(MDB_cursor *cursor, MDB_val *key, MDB_val *data)
1899 {
1900         int              rc;
1901         MDB_ppage       *top;
1902         MDB_pageparent  mpp;
1903         MDB_node        *leaf;
1904         MDB_val lkey;
1905
1906         lkey.mv_size = MAXKEYSIZE+1;
1907         lkey.mv_data = NULL;
1908
1909         rc = mdb_search_page(cursor->mc_txn, cursor->mc_dbi, &lkey, cursor, 0, &mpp);
1910         if (rc != MDB_SUCCESS)
1911                 return rc;
1912         assert(IS_LEAF(mpp.mp_page));
1913
1914         leaf = NODEPTR(mpp.mp_page, NUMKEYS(mpp.mp_page)-1);
1915         cursor->mc_initialized = 1;
1916         cursor->mc_eof = 0;
1917
1918         top = CURSOR_TOP(cursor);
1919         top->mp_ki = NUMKEYS(top->mp_page) - 1;
1920
1921         if (data && (rc = mdb_read_data(cursor->mc_txn, leaf, data)) != MDB_SUCCESS)
1922                 return rc;
1923
1924         return mdb_set_key(leaf, key);
1925 }
1926
1927 int
1928 mdb_cursor_get(MDB_cursor *cursor, MDB_val *key, MDB_val *data,
1929     MDB_cursor_op op)
1930 {
1931         int              rc;
1932         int              exact = 0;
1933
1934         assert(cursor);
1935
1936         switch (op) {
1937         case MDB_SET:
1938         case MDB_SET_RANGE:
1939                 while (CURSOR_TOP(cursor) != NULL)
1940                         cursor_pop_page(cursor);
1941                 if (key == NULL || key->mv_size == 0 || key->mv_size > MAXKEYSIZE) {
1942                         rc = EINVAL;
1943                 } else if (op == MDB_SET)
1944                         rc = mdb_cursor_set(cursor, key, data, &exact);
1945                 else
1946                         rc = mdb_cursor_set(cursor, key, data, NULL);
1947                 break;
1948         case MDB_NEXT:
1949                 if (!cursor->mc_initialized)
1950                         rc = mdb_cursor_first(cursor, key, data);
1951                 else
1952                         rc = mdb_cursor_next(cursor, key, data);
1953                 break;
1954         case MDB_PREV:
1955                 if (!cursor->mc_initialized || cursor->mc_eof) {
1956                         while (CURSOR_TOP(cursor) != NULL)
1957                                 cursor_pop_page(cursor);
1958                         rc = mdb_cursor_last(cursor, key, data);
1959                 } else
1960                         rc = mdb_cursor_prev(cursor, key, data);
1961                 break;
1962         case MDB_FIRST:
1963                 while (CURSOR_TOP(cursor) != NULL)
1964                         cursor_pop_page(cursor);
1965                 rc = mdb_cursor_first(cursor, key, data);
1966                 break;
1967         case MDB_LAST:
1968                 while (CURSOR_TOP(cursor) != NULL)
1969                         cursor_pop_page(cursor);
1970                 rc = mdb_cursor_last(cursor, key, data);
1971                 break;
1972         default:
1973                 DPRINTF("unhandled/unimplemented cursor operation %u", op);
1974                 rc = EINVAL;
1975                 break;
1976         }
1977
1978         return rc;
1979 }
1980
1981 /* Allocate a page and initialize it
1982  */
1983 static MDB_dpage *
1984 mdb_new_page(MDB_txn *txn, MDB_dbi dbi, uint32_t flags, int num)
1985 {
1986         MDB_dpage       *dp;
1987
1988         if ((dp = mdb_alloc_page(txn, NULL, 0, num)) == NULL)
1989                 return NULL;
1990         DPRINTF("allocated new mpage %lu, page size %u",
1991             dp->p.mp_pgno, txn->mt_env->me_psize);
1992         dp->p.mp_flags = flags | P_DIRTY;
1993         dp->p.mp_lower = PAGEHDRSZ;
1994         dp->p.mp_upper = txn->mt_env->me_psize;
1995
1996         if (IS_BRANCH(&dp->p))
1997                 txn->mt_dbs[dbi].md_branch_pages++;
1998         else if (IS_LEAF(&dp->p))
1999                 txn->mt_dbs[dbi].md_leaf_pages++;
2000         else if (IS_OVERFLOW(&dp->p)) {
2001                 txn->mt_dbs[dbi].md_overflow_pages += num;
2002                 dp->p.mp_pages = num;
2003         }
2004
2005         return dp;
2006 }
2007
2008 static size_t
2009 mdb_leaf_size(MDB_env *env, MDB_val *key, MDB_val *data)
2010 {
2011         size_t           sz;
2012
2013         sz = LEAFSIZE(key, data);
2014         if (data->mv_size >= env->me_psize / MDB_MINKEYS) {
2015                 /* put on overflow page */
2016                 sz -= data->mv_size - sizeof(pgno_t);
2017         }
2018
2019         return sz + sizeof(indx_t);
2020 }
2021
2022 static size_t
2023 mdb_branch_size(MDB_env *env, MDB_val *key)
2024 {
2025         size_t           sz;
2026
2027         sz = INDXSIZE(key);
2028         if (sz >= env->me_psize / MDB_MINKEYS) {
2029                 /* put on overflow page */
2030                 /* not implemented */
2031                 /* sz -= key->size - sizeof(pgno_t); */
2032         }
2033
2034         return sz + sizeof(indx_t);
2035 }
2036
2037 static int
2038 mdb_add_node(MDB_txn *txn, MDB_dbi dbi, MDB_page *mp, indx_t indx,
2039     MDB_val *key, MDB_val *data, pgno_t pgno, uint8_t flags)
2040 {
2041         unsigned int     i;
2042         size_t           node_size = NODESIZE;
2043         indx_t           ofs;
2044         MDB_node        *node;
2045         MDB_dpage       *ofp = NULL;            /* overflow page */
2046
2047         assert(mp->mp_upper >= mp->mp_lower);
2048
2049         DPRINTF("add node [%.*s] to %s page %lu at index %i, key size %zu",
2050             key ? (int)key->mv_size : 0, key ? (char *)key->mv_data : NULL,
2051             IS_LEAF(mp) ? "leaf" : "branch",
2052             mp->mp_pgno, indx, key ? key->mv_size : 0);
2053
2054         if (key != NULL)
2055                 node_size += key->mv_size;
2056
2057         if (IS_LEAF(mp)) {
2058                 assert(data);
2059                 if (F_ISSET(flags, F_BIGDATA)) {
2060                         /* Data already on overflow page. */
2061                         node_size += sizeof(pgno_t);
2062                 } else if (data->mv_size >= txn->mt_env->me_psize / MDB_MINKEYS) {
2063                         int ovpages = OVPAGES(data->mv_size, txn->mt_env->me_psize);
2064                         /* Put data on overflow page. */
2065                         DPRINTF("data size is %zu, put on overflow page",
2066                             data->mv_size);
2067                         node_size += sizeof(pgno_t);
2068                         if ((ofp = mdb_new_page(txn, dbi, P_OVERFLOW, ovpages)) == NULL)
2069                                 return MDB_FAIL;
2070                         DPRINTF("allocated overflow page %lu", ofp->p.mp_pgno);
2071                         flags |= F_BIGDATA;
2072                 } else {
2073                         node_size += data->mv_size;
2074                 }
2075         }
2076
2077         if (node_size + sizeof(indx_t) > SIZELEFT(mp)) {
2078                 DPRINTF("not enough room in page %lu, got %u ptrs",
2079                     mp->mp_pgno, NUMKEYS(mp));
2080                 DPRINTF("upper - lower = %u - %u = %u", mp->mp_upper, mp->mp_lower,
2081                     mp->mp_upper - mp->mp_lower);
2082                 DPRINTF("node size = %zu", node_size);
2083                 return ENOSPC;
2084         }
2085
2086         /* Move higher pointers up one slot. */
2087         for (i = NUMKEYS(mp); i > indx; i--)
2088                 mp->mp_ptrs[i] = mp->mp_ptrs[i - 1];
2089
2090         /* Adjust free space offsets. */
2091         ofs = mp->mp_upper - node_size;
2092         assert(ofs >= mp->mp_lower + sizeof(indx_t));
2093         mp->mp_ptrs[indx] = ofs;
2094         mp->mp_upper = ofs;
2095         mp->mp_lower += sizeof(indx_t);
2096
2097         /* Write the node data. */
2098         node = NODEPTR(mp, indx);
2099         node->mn_ksize = (key == NULL) ? 0 : key->mv_size;
2100         node->mn_flags = flags;
2101         if (IS_LEAF(mp))
2102                 node->mn_dsize = data->mv_size;
2103         else
2104                 node->mn_pgno = pgno;
2105
2106         if (key)
2107                 memcpy(NODEKEY(node), key->mv_data, key->mv_size);
2108
2109         if (IS_LEAF(mp)) {
2110                 assert(key);
2111                 if (ofp == NULL) {
2112                         if (F_ISSET(flags, F_BIGDATA))
2113                                 memcpy(node->mn_data + key->mv_size, data->mv_data,
2114                                     sizeof(pgno_t));
2115                         else
2116                                 memcpy(node->mn_data + key->mv_size, data->mv_data,
2117                                     data->mv_size);
2118                 } else {
2119                         memcpy(node->mn_data + key->mv_size, &ofp->p.mp_pgno,
2120                             sizeof(pgno_t));
2121                         memcpy(METADATA(&ofp->p), data->mv_data, data->mv_size);
2122                 }
2123         }
2124
2125         return MDB_SUCCESS;
2126 }
2127
2128 static void
2129 mdb_del_node(MDB_page *mp, indx_t indx)
2130 {
2131         unsigned int     sz;
2132         indx_t           i, j, numkeys, ptr;
2133         MDB_node        *node;
2134         char            *base;
2135
2136         DPRINTF("delete node %u on %s page %lu", indx,
2137             IS_LEAF(mp) ? "leaf" : "branch", mp->mp_pgno);
2138         assert(indx < NUMKEYS(mp));
2139
2140         node = NODEPTR(mp, indx);
2141         sz = NODESIZE + node->mn_ksize;
2142         if (IS_LEAF(mp)) {
2143                 if (F_ISSET(node->mn_flags, F_BIGDATA))
2144                         sz += sizeof(pgno_t);
2145                 else
2146                         sz += NODEDSZ(node);
2147         }
2148
2149         ptr = mp->mp_ptrs[indx];
2150         numkeys = NUMKEYS(mp);
2151         for (i = j = 0; i < numkeys; i++) {
2152                 if (i != indx) {
2153                         mp->mp_ptrs[j] = mp->mp_ptrs[i];
2154                         if (mp->mp_ptrs[i] < ptr)
2155                                 mp->mp_ptrs[j] += sz;
2156                         j++;
2157                 }
2158         }
2159
2160         base = (char *)mp + mp->mp_upper;
2161         memmove(base + sz, base, ptr - mp->mp_upper);
2162
2163         mp->mp_lower -= sizeof(indx_t);
2164         mp->mp_upper += sz;
2165 }
2166
2167 static void
2168 mdb_xcursor_init0(MDB_txn *txn, MDB_dbi dbi, MDB_xcursor *mx)
2169 {
2170         MDB_dbi dbn;
2171
2172         mx->mx_cursor.mc_txn = &mx->mx_txn;
2173         mx->mx_txn = *txn;
2174         mx->mx_txn.mt_dbxs = mx->mx_dbxs;
2175         mx->mx_txn.mt_dbs = mx->mx_dbs;
2176         mx->mx_dbxs[0] = txn->mt_dbxs[0];
2177         mx->mx_dbxs[1] = txn->mt_dbxs[1];
2178         if (dbi > 1) {
2179                 mx->mx_dbxs[2] = txn->mt_dbxs[dbi];
2180                 dbn = 2;
2181         } else {
2182                 dbn = 1;
2183         }
2184         mx->mx_dbxs[dbn+1].md_parent = dbn;
2185         mx->mx_dbxs[dbn+1].md_cmp = mx->mx_dbxs[dbn].md_dcmp;
2186         mx->mx_dbxs[dbn+1].md_rel = mx->mx_dbxs[dbn].md_rel;
2187         mx->mx_dbxs[dbn+1].md_dirty = 0;
2188         mx->mx_txn.mt_numdbs = dbn+2;
2189 }
2190
2191 static void
2192 mdb_xcursor_init1(MDB_txn *txn, MDB_dbi dbi, MDB_xcursor *mx, MDB_db *db)
2193 {
2194         mx->mx_dbs[0] = txn->mt_dbs[0];
2195         mx->mx_dbs[1] = txn->mt_dbs[1];
2196         if (dbi > 1) {
2197                 mx->mx_dbs[2] = txn->mt_dbs[dbi];
2198                 mx->mx_dbs[3] = *db;
2199         } else {
2200                 mx->mx_dbs[2] = *db;
2201         }
2202 }
2203
2204 static void
2205 mdb_xcursor_fini(MDB_txn *txn, MDB_dbi dbi, MDB_xcursor *mx)
2206 {
2207         txn->mt_dbs[0] = mx->mx_dbs[0];
2208         txn->mt_dbs[1] = mx->mx_dbs[1];
2209         txn->mt_dbxs[0].md_dirty = mx->mx_dbxs[0].md_dirty;
2210         txn->mt_dbxs[1].md_dirty = mx->mx_dbxs[1].md_dirty;
2211         if (dbi > 1) {
2212                 txn->mt_dbs[dbi] = mx->mx_dbs[2];
2213                 txn->mt_dbxs[2].md_dirty = mx->mx_dbxs[2].md_dirty;
2214         }
2215 }
2216
2217 int
2218 mdb_cursor_open(MDB_txn *txn, MDB_dbi dbi, MDB_cursor **ret)
2219 {
2220         MDB_cursor      *cursor;
2221         size_t size = sizeof(MDB_cursor);
2222
2223         if (txn == NULL || ret == NULL || !dbi || dbi >= txn->mt_numdbs)
2224                 return EINVAL;
2225
2226         if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT)
2227                 size += sizeof(MDB_xcursor);
2228
2229         if ((cursor = calloc(1, size)) != NULL) {
2230                 SLIST_INIT(&cursor->mc_stack);
2231                 cursor->mc_dbi = dbi;
2232                 cursor->mc_txn = txn;
2233                 if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT) {
2234                         MDB_xcursor *mx = (MDB_xcursor *)(cursor + 1);
2235                         cursor->mc_xcursor = mx;
2236                         mdb_xcursor_init0(txn, dbi, mx);
2237                 }
2238         } else {
2239                 return ENOMEM;
2240         }
2241
2242         *ret = cursor;
2243
2244         return MDB_SUCCESS;
2245 }
2246
2247 void
2248 mdb_cursor_close(MDB_cursor *cursor)
2249 {
2250         if (cursor != NULL) {
2251                 while (!CURSOR_EMPTY(cursor))
2252                         cursor_pop_page(cursor);
2253
2254 /*              btree_close(cursor->bt); */
2255                 free(cursor);
2256         }
2257 }
2258
2259 static int
2260 mdb_update_key(MDB_page *mp, indx_t indx, MDB_val *key)
2261 {
2262         indx_t                   ptr, i, numkeys;
2263         int                      delta;
2264         size_t                   len;
2265         MDB_node                *node;
2266         char                    *base;
2267
2268         node = NODEPTR(mp, indx);
2269         ptr = mp->mp_ptrs[indx];
2270         DPRINTF("update key %u (ofs %u) [%.*s] to [%.*s] on page %lu",
2271             indx, ptr,
2272             (int)node->mn_ksize, (char *)NODEKEY(node),
2273             (int)key->mv_size, (char *)key->mv_data,
2274             mp->mp_pgno);
2275
2276         delta = key->mv_size - node->mn_ksize;
2277         if (delta) {
2278                 if (delta > 0 && SIZELEFT(mp) < delta) {
2279                         DPRINTF("OUCH! Not enough room, delta = %d", delta);
2280                         return ENOSPC;
2281                 }
2282
2283                 numkeys = NUMKEYS(mp);
2284                 for (i = 0; i < numkeys; i++) {
2285                         if (mp->mp_ptrs[i] <= ptr)
2286                                 mp->mp_ptrs[i] -= delta;
2287                 }
2288
2289                 base = (char *)mp + mp->mp_upper;
2290                 len = ptr - mp->mp_upper + NODESIZE;
2291                 memmove(base - delta, base, len);
2292                 mp->mp_upper -= delta;
2293
2294                 node = NODEPTR(mp, indx);
2295                 node->mn_ksize = key->mv_size;
2296         }
2297
2298         memcpy(NODEKEY(node), key->mv_data, key->mv_size);
2299
2300         return MDB_SUCCESS;
2301 }
2302
2303 /* Move a node from src to dst.
2304  */
2305 static int
2306 mdb_move_node(MDB_txn *txn, MDB_dbi dbi, MDB_pageparent *src, indx_t srcindx,
2307     MDB_pageparent *dst, indx_t dstindx)
2308 {
2309         int                      rc;
2310         MDB_node                *srcnode;
2311         MDB_val          key, data;
2312
2313         srcnode = NODEPTR(src->mp_page, srcindx);
2314         DPRINTF("moving %s node %u [%.*s] on page %lu to node %u on page %lu",
2315             IS_LEAF(src->mp_page) ? "leaf" : "branch",
2316             srcindx,
2317             (int)srcnode->mn_ksize, (char *)NODEKEY(srcnode),
2318             src->mp_page->mp_pgno,
2319             dstindx, dst->mp_page->mp_pgno);
2320
2321         /* Mark src and dst as dirty. */
2322         if ((rc = mdb_touch(txn, src)) ||
2323             (rc = mdb_touch(txn, dst)))
2324                 return rc;;
2325
2326         /* Add the node to the destination page.
2327          */
2328         key.mv_size = srcnode->mn_ksize;
2329         key.mv_data = NODEKEY(srcnode);
2330         data.mv_size = NODEDSZ(srcnode);
2331         data.mv_data = NODEDATA(srcnode);
2332         rc = mdb_add_node(txn, dbi, dst->mp_page, dstindx, &key, &data, NODEPGNO(srcnode),
2333             srcnode->mn_flags);
2334         if (rc != MDB_SUCCESS)
2335                 return rc;
2336
2337         /* Delete the node from the source page.
2338          */
2339         mdb_del_node(src->mp_page, srcindx);
2340
2341         /* Update the parent separators.
2342          */
2343         if (srcindx == 0 && src->mp_pi != 0) {
2344                 DPRINTF("update separator for source page %lu to [%.*s]",
2345                     src->mp_page->mp_pgno, (int)key.mv_size, (char *)key.mv_data);
2346                 if ((rc = mdb_update_key(src->mp_parent, src->mp_pi,
2347                     &key)) != MDB_SUCCESS)
2348                         return rc;
2349         }
2350
2351         if (srcindx == 0 && IS_BRANCH(src->mp_page)) {
2352                 MDB_val  nullkey;
2353                 nullkey.mv_size = 0;
2354                 assert(mdb_update_key(src->mp_page, 0, &nullkey) == MDB_SUCCESS);
2355         }
2356
2357         if (dstindx == 0 && dst->mp_pi != 0) {
2358                 DPRINTF("update separator for destination page %lu to [%.*s]",
2359                     dst->mp_page->mp_pgno, (int)key.mv_size, (char *)key.mv_data);
2360                 if ((rc = mdb_update_key(dst->mp_parent, dst->mp_pi,
2361                     &key)) != MDB_SUCCESS)
2362                         return rc;
2363         }
2364
2365         if (dstindx == 0 && IS_BRANCH(dst->mp_page)) {
2366                 MDB_val  nullkey;
2367                 nullkey.mv_size = 0;
2368                 assert(mdb_update_key(dst->mp_page, 0, &nullkey) == MDB_SUCCESS);
2369         }
2370
2371         return MDB_SUCCESS;
2372 }
2373
2374 static int
2375 mdb_merge(MDB_txn *txn, MDB_dbi dbi, MDB_pageparent *src, MDB_pageparent *dst)
2376 {
2377         int                      rc;
2378         indx_t                   i;
2379         MDB_node                *srcnode;
2380         MDB_val          key, data;
2381         MDB_pageparent  mpp;
2382         MDB_dhead *dh;
2383
2384         DPRINTF("merging page %lu and %lu", src->mp_page->mp_pgno, dst->mp_page->mp_pgno);
2385
2386         assert(txn != NULL);
2387         assert(src->mp_parent); /* can't merge root page */
2388         assert(dst->mp_parent);
2389
2390         /* Mark src and dst as dirty. */
2391         if ((rc = mdb_touch(txn, src)) ||
2392             (rc = mdb_touch(txn, dst)))
2393                 return rc;
2394
2395         /* Move all nodes from src to dst.
2396          */
2397         for (i = 0; i < NUMKEYS(src->mp_page); i++) {
2398                 srcnode = NODEPTR(src->mp_page, i);
2399
2400                 key.mv_size = srcnode->mn_ksize;
2401                 key.mv_data = NODEKEY(srcnode);
2402                 data.mv_size = NODEDSZ(srcnode);
2403                 data.mv_data = NODEDATA(srcnode);
2404                 rc = mdb_add_node(txn, dbi, dst->mp_page, NUMKEYS(dst->mp_page), &key,
2405                     &data, NODEPGNO(srcnode), srcnode->mn_flags);
2406                 if (rc != MDB_SUCCESS)
2407                         return rc;
2408         }
2409
2410         DPRINTF("dst page %lu now has %u keys (%.1f%% filled)",
2411             dst->mp_page->mp_pgno, NUMKEYS(dst->mp_page), (float)PAGEFILL(txn->mt_env, dst->mp_page) / 10);
2412
2413         /* Unlink the src page from parent.
2414          */
2415         mdb_del_node(src->mp_parent, src->mp_pi);
2416         if (src->mp_pi == 0) {
2417                 key.mv_size = 0;
2418                 if ((rc = mdb_update_key(src->mp_parent, 0, &key)) != MDB_SUCCESS)
2419                         return rc;
2420         }
2421
2422         if (IS_LEAF(src->mp_page))
2423                 txn->mt_dbs[dbi].md_leaf_pages--;
2424         else
2425                 txn->mt_dbs[dbi].md_branch_pages--;
2426
2427         mpp.mp_page = src->mp_parent;
2428         dh = (MDB_dhead *)src->mp_parent;
2429         dh--;
2430         mpp.mp_parent = dh->md_parent;
2431         mpp.mp_pi = dh->md_pi;
2432
2433         return mdb_rebalance(txn, dbi, &mpp);
2434 }
2435
2436 #define FILL_THRESHOLD   250
2437
2438 static int
2439 mdb_rebalance(MDB_txn *txn, MDB_dbi dbi, MDB_pageparent *mpp)
2440 {
2441         MDB_node        *node;
2442         MDB_page        *root;
2443         MDB_pageparent npp;
2444         indx_t           si = 0, di = 0;
2445
2446         assert(txn != NULL);
2447         assert(mpp != NULL);
2448
2449         DPRINTF("rebalancing %s page %lu (has %u keys, %.1f%% full)",
2450             IS_LEAF(mpp->mp_page) ? "leaf" : "branch",
2451             mpp->mp_page->mp_pgno, NUMKEYS(mpp->mp_page), (float)PAGEFILL(txn->mt_env, mpp->mp_page) / 10);
2452
2453         if (PAGEFILL(txn->mt_env, mpp->mp_page) >= FILL_THRESHOLD) {
2454                 DPRINTF("no need to rebalance page %lu, above fill threshold",
2455                     mpp->mp_page->mp_pgno);
2456                 return MDB_SUCCESS;
2457         }
2458
2459         if (mpp->mp_parent == NULL) {
2460                 if (NUMKEYS(mpp->mp_page) == 0) {
2461                         DPRINTF("tree is completely empty");
2462                         txn->mt_dbs[dbi].md_root = P_INVALID;
2463                         txn->mt_dbs[dbi].md_depth--;
2464                         txn->mt_dbs[dbi].md_leaf_pages--;
2465                 } else if (IS_BRANCH(mpp->mp_page) && NUMKEYS(mpp->mp_page) == 1) {
2466                         DPRINTF("collapsing root page!");
2467                         txn->mt_dbs[dbi].md_root = NODEPGNO(NODEPTR(mpp->mp_page, 0));
2468                         if ((root = mdb_get_page(txn, txn->mt_dbs[dbi].md_root)) == NULL)
2469                                 return MDB_FAIL;
2470                         txn->mt_dbs[dbi].md_depth--;
2471                         txn->mt_dbs[dbi].md_branch_pages--;
2472                 } else
2473                         DPRINTF("root page doesn't need rebalancing");
2474                 return MDB_SUCCESS;
2475         }
2476
2477         /* The parent (branch page) must have at least 2 pointers,
2478          * otherwise the tree is invalid.
2479          */
2480         assert(NUMKEYS(mpp->mp_parent) > 1);
2481
2482         /* Leaf page fill factor is below the threshold.
2483          * Try to move keys from left or right neighbor, or
2484          * merge with a neighbor page.
2485          */
2486
2487         /* Find neighbors.
2488          */
2489         if (mpp->mp_pi == 0) {
2490                 /* We're the leftmost leaf in our parent.
2491                  */
2492                 DPRINTF("reading right neighbor");
2493                 node = NODEPTR(mpp->mp_parent, mpp->mp_pi + 1);
2494                 if ((npp.mp_page = mdb_get_page(txn, NODEPGNO(node))) == NULL)
2495                         return MDB_FAIL;
2496                 npp.mp_pi = mpp->mp_pi + 1;
2497                 si = 0;
2498                 di = NUMKEYS(mpp->mp_page);
2499         } else {
2500                 /* There is at least one neighbor to the left.
2501                  */
2502                 DPRINTF("reading left neighbor");
2503                 node = NODEPTR(mpp->mp_parent, mpp->mp_pi - 1);
2504                 if ((npp.mp_page = mdb_get_page(txn, NODEPGNO(node))) == NULL)
2505                         return MDB_FAIL;
2506                 npp.mp_pi = mpp->mp_pi - 1;
2507                 si = NUMKEYS(npp.mp_page) - 1;
2508                 di = 0;
2509         }
2510         npp.mp_parent = mpp->mp_parent;
2511
2512         DPRINTF("found neighbor page %lu (%u keys, %.1f%% full)",
2513             npp.mp_page->mp_pgno, NUMKEYS(npp.mp_page), (float)PAGEFILL(txn->mt_env, npp.mp_page) / 10);
2514
2515         /* If the neighbor page is above threshold and has at least two
2516          * keys, move one key from it.
2517          *
2518          * Otherwise we should try to merge them.
2519          */
2520         if (PAGEFILL(txn->mt_env, npp.mp_page) >= FILL_THRESHOLD && NUMKEYS(npp.mp_page) >= 2)
2521                 return mdb_move_node(txn, dbi, &npp, si, mpp, di);
2522         else { /* FIXME: if (has_enough_room()) */
2523                 if (mpp->mp_pi == 0)
2524                         return mdb_merge(txn, dbi, &npp, mpp);
2525                 else
2526                         return mdb_merge(txn, dbi, mpp, &npp);
2527         }
2528 }
2529
2530 static int
2531 mdb_del0(MDB_txn *txn, MDB_dbi dbi, unsigned int ki, MDB_pageparent *mpp, MDB_node *leaf)
2532 {
2533         int rc;
2534
2535         /* add overflow pages to free list */
2536         if (F_ISSET(leaf->mn_flags, F_BIGDATA)) {
2537                 int i, ovpages;
2538                 pgno_t pg;
2539
2540                 memcpy(&pg, NODEDATA(leaf), sizeof(pg));
2541                 ovpages = OVPAGES(NODEDSZ(leaf), txn->mt_env->me_psize);
2542                 for (i=0; i<ovpages; i++) {
2543                         DPRINTF("freed ov page %lu", pg);
2544                         mdb_idl_insert(txn->mt_free_pgs, pg);
2545                         pg++;
2546                 }
2547         }
2548         mdb_del_node(mpp->mp_page, ki);
2549         txn->mt_dbs[dbi].md_entries--;
2550         rc = mdb_rebalance(txn, dbi, mpp);
2551         if (rc != MDB_SUCCESS)
2552                 txn->mt_flags |= MDB_TXN_ERROR;
2553
2554         return rc;
2555 }
2556
2557 int
2558 mdb_del(MDB_txn *txn, MDB_dbi dbi,
2559     MDB_val *key, MDB_val *data)
2560 {
2561         int              rc, exact;
2562         unsigned int     ki;
2563         MDB_node        *leaf;
2564         MDB_pageparent  mpp;
2565
2566         DPRINTF("========> delete key %.*s", (int)key->mv_size, (char *)key->mv_data);
2567
2568         assert(key != NULL);
2569
2570         if (txn == NULL || dbi >= txn->mt_numdbs)
2571                 return EINVAL;
2572
2573         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY)) {
2574                 return EINVAL;
2575         }
2576
2577         if (key->mv_size == 0 || key->mv_size > MAXKEYSIZE) {
2578                 return EINVAL;
2579         }
2580
2581         mpp.mp_parent = NULL;
2582         mpp.mp_pi = 0;
2583         if ((rc = mdb_search_page(txn, dbi, key, NULL, 1, &mpp)) != MDB_SUCCESS)
2584                 return rc;
2585
2586         leaf = mdb_search_node(txn, dbi, mpp.mp_page, key, &exact, &ki);
2587         if (leaf == NULL || !exact) {
2588                 return ENOENT;
2589         }
2590
2591         if (data && (rc = mdb_read_data(txn, leaf, data)) != MDB_SUCCESS)
2592                 return rc;
2593
2594         if (F_ISSET(txn->mt_dbs[dbi].md_flags, MDB_DUPSORT)) {
2595         /* add all the child DB's pages to the free list */
2596                 MDB_cursor mc;
2597                 MDB_xcursor mx;
2598                 MDB_pageparent mp2;
2599
2600                 mdb_xcursor_init0(txn, dbi, &mx);
2601                 mdb_xcursor_init1(txn, dbi, &mx, NODEDATA(leaf));
2602                 SLIST_INIT(&mc.mc_stack);
2603                 mc.mc_dbi = mx.mx_txn.mt_numdbs-1;
2604                 mc.mc_txn = &mx.mx_txn;
2605                 rc = mdb_search_page(&mx.mx_txn, mx.mx_txn.mt_numdbs - 1, NULL, &mc, 0, &mp2);
2606                 if (rc == MDB_SUCCESS) {
2607                         MDB_ppage *top, *parent;
2608                         MDB_node *ni;
2609                         unsigned int i;
2610
2611                         cursor_pop_page(&mc);
2612                         top = CURSOR_TOP(&mc);
2613                         parent = SLIST_NEXT(top, mp_entry);
2614                         do {
2615                                 for (i=0; i<NUMKEYS(top->mp_page); i++) {
2616                                         ni = NODEPTR(top->mp_page, i);
2617                                         mdb_idl_insert(txn->mt_free_pgs, ni->mn_pgno);
2618                                 }
2619                                 if (parent) {
2620                                         parent->mp_ki++;
2621                                         if (parent->mp_ki >= NUMKEYS(parent->mp_page)) {
2622                                                 cursor_pop_page(&mc);
2623                                                 top = CURSOR_TOP(&mc);
2624                                                 parent = SLIST_NEXT(top, mp_entry);
2625                                         } else {
2626                                                 ni = NODEPTR(parent->mp_page, parent->mp_ki);
2627                                                 top->mp_page = mdb_get_page(mc.mc_txn, ni->mn_pgno);
2628                                         }
2629                                 }
2630                         }
2631                         mdb_idl_insert(txn->mt_free_pgs, mx.mx_txn.mt_dbs[mc.mc_dbi].md_root);
2632                 }
2633         }
2634
2635         return mdb_del0(txn, dbi, ki, &mpp, leaf);
2636 }
2637
2638 /* Split page <*mpp>, and insert <key,(data|newpgno)> in either left or
2639  * right sibling, at index <*newindxp> (as if unsplit). Updates *mpp and
2640  * *newindxp with the actual values after split, ie if *mpp and *newindxp
2641  * refer to a node in the new right sibling page.
2642  */
2643 static int
2644 mdb_split(MDB_txn *txn, MDB_dbi dbi, MDB_page **mpp, unsigned int *newindxp,
2645     MDB_val *newkey, MDB_val *newdata, pgno_t newpgno)
2646 {
2647         uint8_t          flags;
2648         int              rc = MDB_SUCCESS, ins_new = 0;
2649         indx_t           newindx;
2650         pgno_t           pgno = 0;
2651         unsigned int     i, j, split_indx;
2652         MDB_node        *node;
2653         MDB_val  sepkey, rkey, rdata;
2654         MDB_page        *copy;
2655         MDB_dpage       *mdp, *rdp, *pdp;
2656         MDB_dhead *dh;
2657
2658         assert(txn != NULL);
2659
2660         dh = ((MDB_dhead *)*mpp) - 1;
2661         mdp = (MDB_dpage *)dh;
2662         newindx = *newindxp;
2663
2664         DPRINTF("-----> splitting %s page %lu and adding [%.*s] at index %i",
2665             IS_LEAF(&mdp->p) ? "leaf" : "branch", mdp->p.mp_pgno,
2666             (int)newkey->mv_size, (char *)newkey->mv_data, *newindxp);
2667
2668         if (mdp->h.md_parent == NULL) {
2669                 if ((pdp = mdb_new_page(txn, dbi, P_BRANCH, 1)) == NULL)
2670                         return MDB_FAIL;
2671                 mdp->h.md_pi = 0;
2672                 mdp->h.md_parent = &pdp->p;
2673                 txn->mt_dbs[dbi].md_root = pdp->p.mp_pgno;
2674                 DPRINTF("root split! new root = %lu", pdp->p.mp_pgno);
2675                 txn->mt_dbs[dbi].md_depth++;
2676
2677                 /* Add left (implicit) pointer. */
2678                 if (mdb_add_node(txn, dbi, &pdp->p, 0, NULL, NULL,
2679                     mdp->p.mp_pgno, 0) != MDB_SUCCESS)
2680                         return MDB_FAIL;
2681         } else {
2682                 DPRINTF("parent branch page is %lu", mdp->h.md_parent->mp_pgno);
2683         }
2684
2685         /* Create a right sibling. */
2686         if ((rdp = mdb_new_page(txn, dbi, mdp->p.mp_flags, 1)) == NULL)
2687                 return MDB_FAIL;
2688         rdp->h.md_parent = mdp->h.md_parent;
2689         rdp->h.md_pi = mdp->h.md_pi + 1;
2690         DPRINTF("new right sibling: page %lu", rdp->p.mp_pgno);
2691
2692         /* Move half of the keys to the right sibling. */
2693         if ((copy = malloc(txn->mt_env->me_psize)) == NULL)
2694                 return MDB_FAIL;
2695         memcpy(copy, &mdp->p, txn->mt_env->me_psize);
2696         memset(&mdp->p.mp_ptrs, 0, txn->mt_env->me_psize - PAGEHDRSZ);
2697         mdp->p.mp_lower = PAGEHDRSZ;
2698         mdp->p.mp_upper = txn->mt_env->me_psize;
2699
2700         split_indx = NUMKEYS(copy) / 2 + 1;
2701
2702         /* First find the separating key between the split pages.
2703          */
2704         memset(&sepkey, 0, sizeof(sepkey));
2705         if (newindx == split_indx) {
2706                 sepkey.mv_size = newkey->mv_size;
2707                 sepkey.mv_data = newkey->mv_data;
2708         } else {
2709                 node = NODEPTR(copy, split_indx);
2710                 sepkey.mv_size = node->mn_ksize;
2711                 sepkey.mv_data = NODEKEY(node);
2712         }
2713
2714         DPRINTF("separator is [%.*s]", (int)sepkey.mv_size, (char *)sepkey.mv_data);
2715
2716         /* Copy separator key to the parent.
2717          */
2718         if (SIZELEFT(rdp->h.md_parent) < mdb_branch_size(txn->mt_env, &sepkey)) {
2719                 rc = mdb_split(txn, dbi, &rdp->h.md_parent, &rdp->h.md_pi,
2720                     &sepkey, NULL, rdp->p.mp_pgno);
2721
2722                 /* Right page might now have changed parent.
2723                  * Check if left page also changed parent.
2724                  */
2725                 if (rdp->h.md_parent != mdp->h.md_parent &&
2726                     mdp->h.md_pi >= NUMKEYS(mdp->h.md_parent)) {
2727                         mdp->h.md_parent = rdp->h.md_parent;
2728                         mdp->h.md_pi = rdp->h.md_pi - 1;
2729                 }
2730         } else {
2731                 rc = mdb_add_node(txn, dbi, rdp->h.md_parent, rdp->h.md_pi,
2732                     &sepkey, NULL, rdp->p.mp_pgno, 0);
2733         }
2734         if (rc != MDB_SUCCESS) {
2735                 free(copy);
2736                 return MDB_FAIL;
2737         }
2738
2739         for (i = j = 0; i <= NUMKEYS(copy); j++) {
2740                 if (i < split_indx) {
2741                         /* Re-insert in left sibling. */
2742                         pdp = mdp;
2743                 } else {
2744                         /* Insert in right sibling. */
2745                         if (i == split_indx)
2746                                 /* Reset insert index for right sibling. */
2747                                 j = (i == newindx && ins_new);
2748                         pdp = rdp;
2749                 }
2750
2751                 if (i == newindx && !ins_new) {
2752                         /* Insert the original entry that caused the split. */
2753                         rkey.mv_data = newkey->mv_data;
2754                         rkey.mv_size = newkey->mv_size;
2755                         if (IS_LEAF(&mdp->p)) {
2756                                 rdata.mv_data = newdata->mv_data;
2757                                 rdata.mv_size = newdata->mv_size;
2758                         } else
2759                                 pgno = newpgno;
2760                         flags = 0;
2761
2762                         ins_new = 1;
2763
2764                         /* Update page and index for the new key. */
2765                         *newindxp = j;
2766                         *mpp = &pdp->p;
2767                 } else if (i == NUMKEYS(copy)) {
2768                         break;
2769                 } else {
2770                         node = NODEPTR(copy, i);
2771                         rkey.mv_data = NODEKEY(node);
2772                         rkey.mv_size = node->mn_ksize;
2773                         if (IS_LEAF(&mdp->p)) {
2774                                 rdata.mv_data = NODEDATA(node);
2775                                 rdata.mv_size = node->mn_dsize;
2776                         } else
2777                                 pgno = node->mn_pgno;
2778                         flags = node->mn_flags;
2779
2780                         i++;
2781                 }
2782
2783                 if (!IS_LEAF(&mdp->p) && j == 0) {
2784                         /* First branch index doesn't need key data. */
2785                         rkey.mv_size = 0;
2786                 }
2787
2788                 rc = mdb_add_node(txn, dbi, &pdp->p, j, &rkey, &rdata, pgno,flags);
2789         }
2790
2791         free(copy);
2792         return rc;
2793 }
2794
2795 int
2796 mdb_put(MDB_txn *txn, MDB_dbi dbi,
2797     MDB_val *key, MDB_val *data, unsigned int flags)
2798 {
2799         int              rc = MDB_SUCCESS, exact;
2800         unsigned int     ki;
2801         MDB_node        *leaf;
2802         MDB_pageparent  mpp;
2803         MDB_val xdata, *rdata;
2804         MDB_db dummy;
2805
2806         assert(key != NULL);
2807         assert(data != NULL);
2808
2809         if (txn == NULL)
2810                 return EINVAL;
2811
2812         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY)) {
2813                 return EINVAL;
2814         }
2815
2816         if (txn->mt_env->me_txn != txn) {
2817                 return EINVAL;
2818         }
2819
2820         if (key->mv_size == 0 || key->mv_size > MAXKEYSIZE) {
2821                 return EINVAL;
2822         }
2823
2824         DPRINTF("==> put key %.*s, size %zu, data size %zu",
2825                 (int)key->mv_size, (char *)key->mv_data, key->mv_size, data->mv_size);
2826
2827         mpp.mp_parent = NULL;
2828         mpp.mp_pi = 0;
2829         rc = mdb_search_page(txn, dbi, key, NULL, 1, &mpp);
2830         if (rc == MDB_SUCCESS) {
2831                 leaf = mdb_search_node(txn, dbi, mpp.mp_page, key, &exact, &ki);
2832                 if (leaf && exact) {
2833                         if (F_ISSET(txn->mt_dbs[dbi].md_flags, MDB_DUPSORT)) {
2834                                 goto put_sub;
2835                         }
2836                         if (F_ISSET(flags, MDB_NOOVERWRITE)) {
2837                                 DPRINTF("duplicate key %.*s",
2838                                     (int)key->mv_size, (char *)key->mv_data);
2839                                 return EEXIST;
2840                         }
2841                         /* same size, just replace it */
2842                         if (NODEDSZ(leaf) == data->mv_size) {
2843                                 memcpy(NODEDATA(leaf), data->mv_data, data->mv_size);
2844                                 goto done;
2845                         }
2846                         mdb_del_node(mpp.mp_page, ki);
2847                 }
2848                 if (leaf == NULL) {             /* append if not found */
2849                         ki = NUMKEYS(mpp.mp_page);
2850                         DPRINTF("appending key at index %i", ki);
2851                 }
2852         } else if (rc == ENOENT) {
2853                 MDB_dpage *dp;
2854                 /* new file, just write a root leaf page */
2855                 DPRINTF("allocating new root leaf page");
2856                 if ((dp = mdb_new_page(txn, dbi, P_LEAF, 1)) == NULL) {
2857                         return ENOMEM;
2858                 }
2859                 mpp.mp_page = &dp->p;
2860                 txn->mt_dbs[dbi].md_root = mpp.mp_page->mp_pgno;
2861                 txn->mt_dbs[dbi].md_depth++;
2862                 ki = 0;
2863         }
2864         else
2865                 goto done;
2866
2867         assert(IS_LEAF(mpp.mp_page));
2868         DPRINTF("there are %u keys, should insert new key at index %i",
2869                 NUMKEYS(mpp.mp_page), ki);
2870
2871         /* For sorted dups, the data item at this level is a DB record
2872          * for a child DB; the actual data elements are stored as keys
2873          * in the child DB.
2874          */
2875         if (F_ISSET(txn->mt_dbs[dbi].md_flags, MDB_DUPSORT)) {
2876                 rdata = &xdata;
2877                 xdata.mv_size = sizeof(MDB_db);
2878                 xdata.mv_data = &dummy;
2879                 memset(&dummy, 0, sizeof(dummy));
2880                 dummy.md_root = P_INVALID;
2881         } else {
2882                 rdata = data;
2883         }
2884
2885         if (SIZELEFT(mpp.mp_page) < mdb_leaf_size(txn->mt_env, key, data)) {
2886                 rc = mdb_split(txn, dbi, &mpp.mp_page, &ki, key, data, P_INVALID);
2887         } else {
2888                 /* There is room already in this leaf page. */
2889                 rc = mdb_add_node(txn, dbi, mpp.mp_page, ki, key, data, 0, 0);
2890         }
2891
2892         if (rc != MDB_SUCCESS)
2893                 txn->mt_flags |= MDB_TXN_ERROR;
2894         else {
2895                 txn->mt_dbs[dbi].md_entries++;
2896                 /* Now store the actual data in the child DB. Note that we're
2897                  * storing the user data in the keys field, so there are strict
2898                  * size limits on dupdata. The actual data fields of the child
2899                  * DB are all zero size.
2900                  */
2901                 if (F_ISSET(txn->mt_dbs[dbi].md_flags, MDB_DUPSORT)) {
2902                         MDB_xcursor mx;
2903
2904                         leaf = NODEPTR(mpp.mp_page, ki);
2905 put_sub:
2906                         mdb_xcursor_init0(txn, dbi, &mx);
2907                         mdb_xcursor_init1(txn, dbi, &mx, NODEDATA(leaf));
2908                         xdata.mv_size = 0;
2909                         xdata.mv_data = "";
2910                         rc = mdb_put(&mx.mx_txn, mx.mx_txn.mt_numdbs-1, data, &xdata, flags);
2911                         mdb_xcursor_fini(txn, dbi, &mx);
2912                 }
2913         }
2914
2915 done:
2916         return rc;
2917 }
2918
2919 int
2920 mdbenv_get_flags(MDB_env *env, unsigned int *arg)
2921 {
2922         if (!env || !arg)
2923                 return EINVAL;
2924
2925         *arg = env->me_flags;
2926         return MDB_SUCCESS;
2927 }
2928
2929 int
2930 mdbenv_get_path(MDB_env *env, const char **arg)
2931 {
2932         if (!env || !arg)
2933                 return EINVAL;
2934
2935         *arg = env->me_path;
2936         return MDB_SUCCESS;
2937 }
2938
2939 int
2940 mdbenv_stat(MDB_env *env, MDB_stat *arg)
2941 {
2942         if (env == NULL || arg == NULL)
2943                 return EINVAL;
2944
2945         arg->ms_psize = env->me_psize;
2946         arg->ms_depth = env->me_meta->mm_dbs[MAIN_DBI].md_depth;
2947         arg->ms_branch_pages = env->me_meta->mm_dbs[MAIN_DBI].md_branch_pages;
2948         arg->ms_leaf_pages = env->me_meta->mm_dbs[MAIN_DBI].md_leaf_pages;
2949         arg->ms_overflow_pages = env->me_meta->mm_dbs[MAIN_DBI].md_overflow_pages;
2950         arg->ms_entries = env->me_meta->mm_dbs[MAIN_DBI].md_entries;
2951
2952         return MDB_SUCCESS;
2953 }
2954
2955 int mdb_open(MDB_txn *txn, const char *name, unsigned int flags, MDB_dbi *dbi)
2956 {
2957         MDB_val key, data;
2958         MDB_dbi i;
2959         int rc;
2960         size_t len;
2961
2962         /* main DB? */
2963         if (!name) {
2964                 *dbi = MAIN_DBI;
2965                 return MDB_SUCCESS;
2966         }
2967
2968         /* Is the DB already open? */
2969         len = strlen(name);
2970         for (i=2; i<txn->mt_numdbs; i++) {
2971                 if (len == txn->mt_dbxs[i].md_name.mv_size &&
2972                         !strncmp(name, txn->mt_dbxs[i].md_name.mv_data, len)) {
2973                         *dbi = i;
2974                         return MDB_SUCCESS;
2975                 }
2976         }
2977
2978         if (txn->mt_numdbs >= txn->mt_env->me_maxdbs - 1)
2979                 return ENFILE;
2980
2981         /* Find the DB info */
2982         key.mv_size = len;
2983         key.mv_data = (void *)name;
2984         rc = mdb_get(txn, MAIN_DBI, &key, &data);
2985
2986         /* Create if requested */
2987         if (rc == ENOENT && (flags & MDB_CREATE)) {
2988                 MDB_db dummy;
2989                 data.mv_size = sizeof(MDB_db);
2990                 data.mv_data = &dummy;
2991                 memset(&dummy, 0, sizeof(dummy));
2992                 dummy.md_root = P_INVALID;
2993                 dummy.md_flags = flags & 0xffff;
2994                 rc = mdb_put(txn, 0, &key, &data, 0);
2995         }
2996
2997         /* OK, got info, add to table */
2998         if (rc == MDB_SUCCESS) {
2999                 txn->mt_dbxs[txn->mt_numdbs].md_name.mv_data = strdup(name);
3000                 txn->mt_dbxs[txn->mt_numdbs].md_name.mv_size = len;
3001                 txn->mt_dbxs[txn->mt_numdbs].md_cmp = NULL;
3002                 txn->mt_dbxs[txn->mt_numdbs].md_dcmp = NULL;
3003                 txn->mt_dbxs[txn->mt_numdbs].md_rel = NULL;
3004                 txn->mt_dbxs[txn->mt_numdbs].md_parent = MAIN_DBI;
3005                 txn->mt_dbxs[txn->mt_numdbs].md_dirty = 0;
3006                 memcpy(&txn->mt_dbs[txn->mt_numdbs], data.mv_data, sizeof(MDB_db));
3007                 *dbi = txn->mt_numdbs;
3008                 txn->mt_numdbs++;
3009         }
3010
3011         return rc;
3012 }
3013
3014 int mdb_stat(MDB_txn *txn, MDB_dbi dbi, MDB_stat *arg)
3015 {
3016         if (txn == NULL || arg == NULL)
3017                 return EINVAL;
3018
3019         arg->ms_psize = txn->mt_env->me_psize;
3020         arg->ms_depth = txn->mt_dbs[dbi].md_depth;
3021         arg->ms_branch_pages = txn->mt_dbs[dbi].md_branch_pages;
3022         arg->ms_leaf_pages = txn->mt_dbs[dbi].md_leaf_pages;
3023         arg->ms_overflow_pages = txn->mt_dbs[dbi].md_overflow_pages;
3024         arg->ms_entries = txn->mt_dbs[dbi].md_entries;
3025
3026         return MDB_SUCCESS;
3027 }
3028
3029 void mdb_close(MDB_txn *txn, MDB_dbi dbi)
3030 {
3031         char *ptr;
3032         if (dbi <= MAIN_DBI || dbi >= txn->mt_numdbs)
3033                 return;
3034         ptr = txn->mt_dbxs[dbi].md_name.mv_data;
3035         txn->mt_dbxs[dbi].md_name.mv_data = NULL;
3036         txn->mt_dbxs[dbi].md_name.mv_size = 0;
3037         free(ptr);
3038 }