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