]> git.sur5r.net Git - openldap/blob - libraries/liblmdb/mdb.c
Make sure init_meta is at beginning of file
[openldap] / libraries / liblmdb / mdb.c
1 /** @file mdb.c
2  *      @brief memory-mapped database library
3  *
4  *      A Btree-based database management library modeled loosely on the
5  *      BerkeleyDB API, but much simplified.
6  */
7 /*
8  * Copyright 2011-2012 Howard Chu, Symas Corp.
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted only as authorized by the OpenLDAP
13  * Public License.
14  *
15  * A copy of this license is available in the file LICENSE in the
16  * top-level directory of the distribution or, alternatively, at
17  * <http://www.OpenLDAP.org/license.html>.
18  *
19  * This code is derived from btree.c written by Martin Hedenfalk.
20  *
21  * Copyright (c) 2009, 2010 Martin Hedenfalk <martin@bzero.se>
22  *
23  * Permission to use, copy, modify, and distribute this software for any
24  * purpose with or without fee is hereby granted, provided that the above
25  * copyright notice and this permission notice appear in all copies.
26  *
27  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
28  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
29  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
30  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
31  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
32  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
33  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
34  */
35 #define _GNU_SOURCE 1
36 #include <sys/types.h>
37 #include <sys/stat.h>
38 #include <sys/param.h>
39 #ifdef _WIN32
40 #include <windows.h>
41 #else
42 #include <sys/uio.h>
43 #include <sys/mman.h>
44 #ifdef HAVE_SYS_FILE_H
45 #include <sys/file.h>
46 #endif
47 #include <fcntl.h>
48 #endif
49
50 #include <assert.h>
51 #include <errno.h>
52 #include <limits.h>
53 #include <stddef.h>
54 #include <inttypes.h>
55 #include <stdio.h>
56 #include <stdlib.h>
57 #include <string.h>
58 #include <time.h>
59 #include <unistd.h>
60
61 #if !(defined(BYTE_ORDER) || defined(__BYTE_ORDER))
62 #include <resolv.h>     /* defines BYTE_ORDER on HPUX and Solaris */
63 #endif
64
65 #if defined(__APPLE__) || defined (BSD)
66 # define MDB_USE_POSIX_SEM      1
67 # define MDB_FDATASYNC          fsync
68 #elif defined(ANDROID)
69 # define MDB_FDATASYNC          fsync
70 #endif
71
72 #ifndef _WIN32
73 #include <pthread.h>
74 #ifdef MDB_USE_POSIX_SEM
75 #include <semaphore.h>
76 #endif
77 #endif
78
79 #ifdef USE_VALGRIND
80 #include <valgrind/memcheck.h>
81 #define VGMEMP_CREATE(h,r,z)    VALGRIND_CREATE_MEMPOOL(h,r,z)
82 #define VGMEMP_ALLOC(h,a,s) VALGRIND_MEMPOOL_ALLOC(h,a,s)
83 #define VGMEMP_FREE(h,a) VALGRIND_MEMPOOL_FREE(h,a)
84 #define VGMEMP_DESTROY(h)       VALGRIND_DESTROY_MEMPOOL(h)
85 #define VGMEMP_DEFINED(a,s)     VALGRIND_MAKE_MEM_DEFINED(a,s)
86 #else
87 #define VGMEMP_CREATE(h,r,z)
88 #define VGMEMP_ALLOC(h,a,s)
89 #define VGMEMP_FREE(h,a)
90 #define VGMEMP_DESTROY(h)
91 #define VGMEMP_DEFINED(a,s)
92 #endif
93
94 #ifndef BYTE_ORDER
95 # if (defined(_LITTLE_ENDIAN) || defined(_BIG_ENDIAN)) && !(defined(_LITTLE_ENDIAN) && defined(_BIG_ENDIAN))
96 /* Solaris just defines one or the other */
97 #  define LITTLE_ENDIAN 1234
98 #  define BIG_ENDIAN    4321
99 #  ifdef _LITTLE_ENDIAN
100 #   define BYTE_ORDER  LITTLE_ENDIAN
101 #  else
102 #   define BYTE_ORDER  BIG_ENDIAN
103 #  endif
104 # else
105 #  define BYTE_ORDER   __BYTE_ORDER
106 # endif
107 #endif
108
109 #ifndef LITTLE_ENDIAN
110 #define LITTLE_ENDIAN   __LITTLE_ENDIAN
111 #endif
112 #ifndef BIG_ENDIAN
113 #define BIG_ENDIAN      __BIG_ENDIAN
114 #endif
115
116 #if defined(__i386) || defined(__x86_64)
117 #define MISALIGNED_OK   1
118 #endif
119
120 #include "lmdb.h"
121 #include "midl.h"
122
123 #if (BYTE_ORDER == LITTLE_ENDIAN) == (BYTE_ORDER == BIG_ENDIAN)
124 # error "Unknown or unsupported endianness (BYTE_ORDER)"
125 #elif (-6 & 5) || CHAR_BIT != 8 || UINT_MAX < 0xffffffff || ULONG_MAX % 0xFFFF
126 # error "Two's complement, reasonably sized integer types, please"
127 #endif
128
129 /** @defgroup internal  MDB Internals
130  *      @{
131  */
132 /** @defgroup compat    Windows Compatibility Macros
133  *      A bunch of macros to minimize the amount of platform-specific ifdefs
134  *      needed throughout the rest of the code. When the features this library
135  *      needs are similar enough to POSIX to be hidden in a one-or-two line
136  *      replacement, this macro approach is used.
137  *      @{
138  */
139 #ifdef _WIN32
140 #define pthread_t       DWORD
141 #define pthread_mutex_t HANDLE
142 #define pthread_key_t   DWORD
143 #define pthread_self()  GetCurrentThreadId()
144 #define pthread_key_create(x,y) \
145         ((*(x) = TlsAlloc()) == TLS_OUT_OF_INDEXES ? ErrCode() : 0)
146 #define pthread_key_delete(x)   TlsFree(x)
147 #define pthread_getspecific(x)  TlsGetValue(x)
148 #define pthread_setspecific(x,y)        (TlsSetValue(x,y) ? 0 : ErrCode())
149 #define pthread_mutex_unlock(x) ReleaseMutex(x)
150 #define pthread_mutex_lock(x)   WaitForSingleObject(x, INFINITE)
151 #define LOCK_MUTEX_R(env)       pthread_mutex_lock((env)->me_rmutex)
152 #define UNLOCK_MUTEX_R(env)     pthread_mutex_unlock((env)->me_rmutex)
153 #define LOCK_MUTEX_W(env)       pthread_mutex_lock((env)->me_wmutex)
154 #define UNLOCK_MUTEX_W(env)     pthread_mutex_unlock((env)->me_wmutex)
155 #define getpid()        GetCurrentProcessId()
156 #define MDB_FDATASYNC(fd)       (!FlushFileBuffers(fd))
157 #define MDB_MSYNC(addr,len,flags)       (!FlushViewOfFile(addr,len))
158 #define ErrCode()       GetLastError()
159 #define GET_PAGESIZE(x) {SYSTEM_INFO si; GetSystemInfo(&si); (x) = si.dwPageSize;}
160 #define close(fd)       CloseHandle(fd)
161 #define munmap(ptr,len) UnmapViewOfFile(ptr)
162 #else
163
164 #ifdef MDB_USE_POSIX_SEM
165
166 #define LOCK_MUTEX_R(env)       mdb_sem_wait((env)->me_rmutex)
167 #define UNLOCK_MUTEX_R(env)     sem_post((env)->me_rmutex)
168 #define LOCK_MUTEX_W(env)       mdb_sem_wait((env)->me_wmutex)
169 #define UNLOCK_MUTEX_W(env)     sem_post((env)->me_wmutex)
170
171 static int
172 mdb_sem_wait(sem_t *sem)
173 {
174    int rc;
175    while ((rc = sem_wait(sem)) && (rc = errno) == EINTR) ;
176    return rc;
177 }
178
179 #else
180         /** Lock the reader mutex.
181          */
182 #define LOCK_MUTEX_R(env)       pthread_mutex_lock(&(env)->me_txns->mti_mutex)
183         /** Unlock the reader mutex.
184          */
185 #define UNLOCK_MUTEX_R(env)     pthread_mutex_unlock(&(env)->me_txns->mti_mutex)
186
187         /** Lock the writer mutex.
188          *      Only a single write transaction is allowed at a time. Other writers
189          *      will block waiting for this mutex.
190          */
191 #define LOCK_MUTEX_W(env)       pthread_mutex_lock(&(env)->me_txns->mti_wmutex)
192         /** Unlock the writer mutex.
193          */
194 #define UNLOCK_MUTEX_W(env)     pthread_mutex_unlock(&(env)->me_txns->mti_wmutex)
195 #endif  /* MDB_USE_POSIX_SEM */
196
197         /** Get the error code for the last failed system function.
198          */
199 #define ErrCode()       errno
200
201         /** An abstraction for a file handle.
202          *      On POSIX systems file handles are small integers. On Windows
203          *      they're opaque pointers.
204          */
205 #define HANDLE  int
206
207         /**     A value for an invalid file handle.
208          *      Mainly used to initialize file variables and signify that they are
209          *      unused.
210          */
211 #define INVALID_HANDLE_VALUE    (-1)
212
213         /** Get the size of a memory page for the system.
214          *      This is the basic size that the platform's memory manager uses, and is
215          *      fundamental to the use of memory-mapped files.
216          */
217 #define GET_PAGESIZE(x) ((x) = sysconf(_SC_PAGE_SIZE))
218 #endif
219
220 #if defined(_WIN32) || defined(MDB_USE_POSIX_SEM)
221 #define MNAME_LEN       32
222 #else
223 #define MNAME_LEN       (sizeof(pthread_mutex_t))
224 #endif
225
226 /** @} */
227
228 #ifndef _WIN32
229 /**     A flag for opening a file and requesting synchronous data writes.
230  *      This is only used when writing a meta page. It's not strictly needed;
231  *      we could just do a normal write and then immediately perform a flush.
232  *      But if this flag is available it saves us an extra system call.
233  *
234  *      @note If O_DSYNC is undefined but exists in /usr/include,
235  * preferably set some compiler flag to get the definition.
236  * Otherwise compile with the less efficient -DMDB_DSYNC=O_SYNC.
237  */
238 #ifndef MDB_DSYNC
239 # define MDB_DSYNC      O_DSYNC
240 #endif
241 #endif
242
243 /** Function for flushing the data of a file. Define this to fsync
244  *      if fdatasync() is not supported.
245  */
246 #ifndef MDB_FDATASYNC
247 # define MDB_FDATASYNC  fdatasync
248 #endif
249
250 #ifndef MDB_MSYNC
251 # define MDB_MSYNC(addr,len,flags)      msync(addr,len,flags)
252 #endif
253
254 #ifndef MS_SYNC
255 #define MS_SYNC 1
256 #endif
257
258 #ifndef MS_ASYNC
259 #define MS_ASYNC        0
260 #endif
261
262         /** A page number in the database.
263          *      Note that 64 bit page numbers are overkill, since pages themselves
264          *      already represent 12-13 bits of addressable memory, and the OS will
265          *      always limit applications to a maximum of 63 bits of address space.
266          *
267          *      @note In the #MDB_node structure, we only store 48 bits of this value,
268          *      which thus limits us to only 60 bits of addressable data.
269          */
270 typedef MDB_ID  pgno_t;
271
272         /** A transaction ID.
273          *      See struct MDB_txn.mt_txnid for details.
274          */
275 typedef MDB_ID  txnid_t;
276
277 /** @defgroup debug     Debug Macros
278  *      @{
279  */
280 #ifndef MDB_DEBUG
281         /**     Enable debug output.
282          *      Set this to 1 for copious tracing. Set to 2 to add dumps of all IDLs
283          *      read from and written to the database (used for free space management).
284          */
285 #define MDB_DEBUG 0
286 #endif
287
288 #if !(__STDC_VERSION__ >= 199901L || defined(__GNUC__))
289 # define DPRINTF        (void)  /* Vararg macros may be unsupported */
290 #elif MDB_DEBUG
291 static int mdb_debug;
292 static txnid_t mdb_debug_start;
293
294         /**     Print a debug message with printf formatting. */
295 # define DPRINTF(fmt, ...)      /**< Requires 2 or more args */ \
296         ((void) ((mdb_debug) && \
297          fprintf(stderr, "%s:%d " fmt "\n", __func__, __LINE__, __VA_ARGS__)))
298 #else
299 # define DPRINTF(fmt, ...)      ((void) 0)
300 # define MDB_DEBUG_SKIP
301 #endif
302         /**     Print a debug string.
303          *      The string is printed literally, with no format processing.
304          */
305 #define DPUTS(arg)      DPRINTF("%s", arg)
306 /** @} */
307
308         /** A default memory page size.
309          *      The actual size is platform-dependent, but we use this for
310          *      boot-strapping. We probably should not be using this any more.
311          *      The #GET_PAGESIZE() macro is used to get the actual size.
312          *
313          *      Note that we don't currently support Huge pages. On Linux,
314          *      regular data files cannot use Huge pages, and in general
315          *      Huge pages aren't actually pageable. We rely on the OS
316          *      demand-pager to read our data and page it out when memory
317          *      pressure from other processes is high. So until OSs have
318          *      actual paging support for Huge pages, they're not viable.
319          */
320 #define MDB_PAGESIZE     4096
321
322         /** The minimum number of keys required in a database page.
323          *      Setting this to a larger value will place a smaller bound on the
324          *      maximum size of a data item. Data items larger than this size will
325          *      be pushed into overflow pages instead of being stored directly in
326          *      the B-tree node. This value used to default to 4. With a page size
327          *      of 4096 bytes that meant that any item larger than 1024 bytes would
328          *      go into an overflow page. That also meant that on average 2-3KB of
329          *      each overflow page was wasted space. The value cannot be lower than
330          *      2 because then there would no longer be a tree structure. With this
331          *      value, items larger than 2KB will go into overflow pages, and on
332          *      average only 1KB will be wasted.
333          */
334 #define MDB_MINKEYS      2
335
336         /**     A stamp that identifies a file as an MDB file.
337          *      There's nothing special about this value other than that it is easily
338          *      recognizable, and it will reflect any byte order mismatches.
339          */
340 #define MDB_MAGIC        0xBEEFC0DE
341
342         /**     The version number for a database's file format. */
343 #define MDB_VERSION      1
344
345         /**     The maximum size of a key in the database.
346          *      While data items have essentially unbounded size, we require that
347          *      keys all fit onto a regular page. This limit could be raised a bit
348          *      further if needed; to something just under #MDB_PAGESIZE / #MDB_MINKEYS.
349          */
350 #define MAXKEYSIZE       511
351
352 #if MDB_DEBUG
353         /**     A key buffer.
354          *      @ingroup debug
355          *      This is used for printing a hex dump of a key's contents.
356          */
357 #define DKBUF   char kbuf[(MAXKEYSIZE*2+1)]
358         /**     Display a key in hex.
359          *      @ingroup debug
360          *      Invoke a function to display a key in hex.
361          */
362 #define DKEY(x) mdb_dkey(x, kbuf)
363 #else
364 #define DKBUF   typedef int dummy_kbuf  /* so we can put ';' after */
365 #define DKEY(x) 0
366 #endif
367
368         /** An invalid page number.
369          *      Mainly used to denote an empty tree.
370          */
371 #define P_INVALID        (~(pgno_t)0)
372
373         /** Test if a flag \b f is set in a flag word \b w. */
374 #define F_ISSET(w, f)    (((w) & (f)) == (f))
375
376         /**     Used for offsets within a single page.
377          *      Since memory pages are typically 4 or 8KB in size, 12-13 bits,
378          *      this is plenty.
379          */
380 typedef uint16_t         indx_t;
381
382         /**     Default size of memory map.
383          *      This is certainly too small for any actual applications. Apps should always set
384          *      the size explicitly using #mdb_env_set_mapsize().
385          */
386 #define DEFAULT_MAPSIZE 1048576
387
388 /**     @defgroup readers       Reader Lock Table
389  *      Readers don't acquire any locks for their data access. Instead, they
390  *      simply record their transaction ID in the reader table. The reader
391  *      mutex is needed just to find an empty slot in the reader table. The
392  *      slot's address is saved in thread-specific data so that subsequent read
393  *      transactions started by the same thread need no further locking to proceed.
394  *
395  *      Since the database uses multi-version concurrency control, readers don't
396  *      actually need any locking. This table is used to keep track of which
397  *      readers are using data from which old transactions, so that we'll know
398  *      when a particular old transaction is no longer in use. Old transactions
399  *      that have discarded any data pages can then have those pages reclaimed
400  *      for use by a later write transaction.
401  *
402  *      The lock table is constructed such that reader slots are aligned with the
403  *      processor's cache line size. Any slot is only ever used by one thread.
404  *      This alignment guarantees that there will be no contention or cache
405  *      thrashing as threads update their own slot info, and also eliminates
406  *      any need for locking when accessing a slot.
407  *
408  *      A writer thread will scan every slot in the table to determine the oldest
409  *      outstanding reader transaction. Any freed pages older than this will be
410  *      reclaimed by the writer. The writer doesn't use any locks when scanning
411  *      this table. This means that there's no guarantee that the writer will
412  *      see the most up-to-date reader info, but that's not required for correct
413  *      operation - all we need is to know the upper bound on the oldest reader,
414  *      we don't care at all about the newest reader. So the only consequence of
415  *      reading stale information here is that old pages might hang around a
416  *      while longer before being reclaimed. That's actually good anyway, because
417  *      the longer we delay reclaiming old pages, the more likely it is that a
418  *      string of contiguous pages can be found after coalescing old pages from
419  *      many old transactions together.
420  *
421  *      @todo We don't actually do such coalescing yet, we grab pages from one
422  *      old transaction at a time.
423  *      @{
424  */
425         /**     Number of slots in the reader table.
426          *      This value was chosen somewhat arbitrarily. 126 readers plus a
427          *      couple mutexes fit exactly into 8KB on my development machine.
428          *      Applications should set the table size using #mdb_env_set_maxreaders().
429          */
430 #define DEFAULT_READERS 126
431
432         /**     The size of a CPU cache line in bytes. We want our lock structures
433          *      aligned to this size to avoid false cache line sharing in the
434          *      lock table.
435          *      This value works for most CPUs. For Itanium this should be 128.
436          */
437 #ifndef CACHELINE
438 #define CACHELINE       64
439 #endif
440
441         /**     The information we store in a single slot of the reader table.
442          *      In addition to a transaction ID, we also record the process and
443          *      thread ID that owns a slot, so that we can detect stale information,
444          *      e.g. threads or processes that went away without cleaning up.
445          *      @note We currently don't check for stale records. We simply re-init
446          *      the table when we know that we're the only process opening the
447          *      lock file.
448          */
449 typedef struct MDB_rxbody {
450         /**     Current Transaction ID when this transaction began, or (txnid_t)-1.
451          *      Multiple readers that start at the same time will probably have the
452          *      same ID here. Again, it's not important to exclude them from
453          *      anything; all we need to know is which version of the DB they
454          *      started from so we can avoid overwriting any data used in that
455          *      particular version.
456          */
457         txnid_t         mrb_txnid;
458         /** The process ID of the process owning this reader txn. */
459         pid_t           mrb_pid;
460         /** The thread ID of the thread owning this txn. */
461         pthread_t       mrb_tid;
462 } MDB_rxbody;
463
464         /** The actual reader record, with cacheline padding. */
465 typedef struct MDB_reader {
466         union {
467                 MDB_rxbody mrx;
468                 /** shorthand for mrb_txnid */
469 #define mr_txnid        mru.mrx.mrb_txnid
470 #define mr_pid  mru.mrx.mrb_pid
471 #define mr_tid  mru.mrx.mrb_tid
472                 /** cache line alignment */
473                 char pad[(sizeof(MDB_rxbody)+CACHELINE-1) & ~(CACHELINE-1)];
474         } mru;
475 } MDB_reader;
476
477         /** The header for the reader table.
478          *      The table resides in a memory-mapped file. (This is a different file
479          *      than is used for the main database.)
480          *
481          *      For POSIX the actual mutexes reside in the shared memory of this
482          *      mapped file. On Windows, mutexes are named objects allocated by the
483          *      kernel; we store the mutex names in this mapped file so that other
484          *      processes can grab them. This same approach is also used on
485          *      MacOSX/Darwin (using named semaphores) since MacOSX doesn't support
486          *      process-shared POSIX mutexes. For these cases where a named object
487          *      is used, the object name is derived from a 64 bit FNV hash of the
488          *      environment pathname. As such, naming collisions are extremely
489          *      unlikely. If a collision occurs, the results are unpredictable.
490          */
491 typedef struct MDB_txbody {
492                 /** Stamp identifying this as an MDB file. It must be set
493                  *      to #MDB_MAGIC. */
494         uint32_t        mtb_magic;
495                 /** Version number of this lock file. Must be set to #MDB_VERSION. */
496         uint32_t        mtb_version;
497 #if defined(_WIN32) || defined(MDB_USE_POSIX_SEM)
498         char    mtb_rmname[MNAME_LEN];
499 #else
500                 /** Mutex protecting access to this table.
501                  *      This is the reader lock that #LOCK_MUTEX_R acquires.
502                  */
503         pthread_mutex_t mtb_mutex;
504 #endif
505                 /**     The ID of the last transaction committed to the database.
506                  *      This is recorded here only for convenience; the value can always
507                  *      be determined by reading the main database meta pages.
508                  */
509         txnid_t         mtb_txnid;
510                 /** The number of slots that have been used in the reader table.
511                  *      This always records the maximum count, it is not decremented
512                  *      when readers release their slots.
513                  */
514         unsigned        mtb_numreaders;
515 } MDB_txbody;
516
517         /** The actual reader table definition. */
518 typedef struct MDB_txninfo {
519         union {
520                 MDB_txbody mtb;
521 #define mti_magic       mt1.mtb.mtb_magic
522 #define mti_version     mt1.mtb.mtb_version
523 #define mti_mutex       mt1.mtb.mtb_mutex
524 #define mti_rmname      mt1.mtb.mtb_rmname
525 #define mti_txnid       mt1.mtb.mtb_txnid
526 #define mti_numreaders  mt1.mtb.mtb_numreaders
527                 char pad[(sizeof(MDB_txbody)+CACHELINE-1) & ~(CACHELINE-1)];
528         } mt1;
529         union {
530 #if defined(_WIN32) || defined(MDB_USE_POSIX_SEM)
531                 char mt2_wmname[MNAME_LEN];
532 #define mti_wmname      mt2.mt2_wmname
533 #else
534                 pthread_mutex_t mt2_wmutex;
535 #define mti_wmutex      mt2.mt2_wmutex
536 #endif
537                 char pad[(MNAME_LEN+CACHELINE-1) & ~(CACHELINE-1)];
538         } mt2;
539         MDB_reader      mti_readers[1];
540 } MDB_txninfo;
541 /** @} */
542
543 /** Common header for all page types.
544  * Overflow records occupy a number of contiguous pages with no
545  * headers on any page after the first.
546  */
547 typedef struct MDB_page {
548 #define mp_pgno mp_p.p_pgno
549 #define mp_next mp_p.p_next
550         union {
551                 pgno_t          p_pgno; /**< page number */
552                 void *          p_next; /**< for in-memory list of freed structs */
553         } mp_p;
554         uint16_t        mp_pad;
555 /**     @defgroup mdb_page      Page Flags
556  *      @ingroup internal
557  *      Flags for the page headers.
558  *      @{
559  */
560 #define P_BRANCH         0x01           /**< branch page */
561 #define P_LEAF           0x02           /**< leaf page */
562 #define P_OVERFLOW       0x04           /**< overflow page */
563 #define P_META           0x08           /**< meta page */
564 #define P_DIRTY          0x10           /**< dirty page */
565 #define P_LEAF2          0x20           /**< for #MDB_DUPFIXED records */
566 #define P_SUBP           0x40           /**< for #MDB_DUPSORT sub-pages */
567 /** @} */
568         uint16_t        mp_flags;               /**< @ref mdb_page */
569 #define mp_lower        mp_pb.pb.pb_lower
570 #define mp_upper        mp_pb.pb.pb_upper
571 #define mp_pages        mp_pb.pb_pages
572         union {
573                 struct {
574                         indx_t          pb_lower;               /**< lower bound of free space */
575                         indx_t          pb_upper;               /**< upper bound of free space */
576                 } pb;
577                 uint32_t        pb_pages;       /**< number of overflow pages */
578         } mp_pb;
579         indx_t          mp_ptrs[1];             /**< dynamic size */
580 } MDB_page;
581
582         /** Size of the page header, excluding dynamic data at the end */
583 #define PAGEHDRSZ        ((unsigned) offsetof(MDB_page, mp_ptrs))
584
585         /** Address of first usable data byte in a page, after the header */
586 #define METADATA(p)      ((void *)((char *)(p) + PAGEHDRSZ))
587
588         /** Number of nodes on a page */
589 #define NUMKEYS(p)       (((p)->mp_lower - PAGEHDRSZ) >> 1)
590
591         /** The amount of space remaining in the page */
592 #define SIZELEFT(p)      (indx_t)((p)->mp_upper - (p)->mp_lower)
593
594         /** The percentage of space used in the page, in tenths of a percent. */
595 #define PAGEFILL(env, p) (1000L * ((env)->me_psize - PAGEHDRSZ - SIZELEFT(p)) / \
596                                 ((env)->me_psize - PAGEHDRSZ))
597         /** The minimum page fill factor, in tenths of a percent.
598          *      Pages emptier than this are candidates for merging.
599          */
600 #define FILL_THRESHOLD   250
601
602         /** Test if a page is a leaf page */
603 #define IS_LEAF(p)       F_ISSET((p)->mp_flags, P_LEAF)
604         /** Test if a page is a LEAF2 page */
605 #define IS_LEAF2(p)      F_ISSET((p)->mp_flags, P_LEAF2)
606         /** Test if a page is a branch page */
607 #define IS_BRANCH(p)     F_ISSET((p)->mp_flags, P_BRANCH)
608         /** Test if a page is an overflow page */
609 #define IS_OVERFLOW(p)   F_ISSET((p)->mp_flags, P_OVERFLOW)
610         /** Test if a page is a sub page */
611 #define IS_SUBP(p)       F_ISSET((p)->mp_flags, P_SUBP)
612
613         /** The number of overflow pages needed to store the given size. */
614 #define OVPAGES(size, psize)    ((PAGEHDRSZ-1 + (size)) / (psize) + 1)
615
616         /** Header for a single key/data pair within a page.
617          * We guarantee 2-byte alignment for nodes.
618          */
619 typedef struct MDB_node {
620         /** lo and hi are used for data size on leaf nodes and for
621          * child pgno on branch nodes. On 64 bit platforms, flags
622          * is also used for pgno. (Branch nodes have no flags).
623          * They are in host byte order in case that lets some
624          * accesses be optimized into a 32-bit word access.
625          */
626 #define mn_lo mn_offset[BYTE_ORDER!=LITTLE_ENDIAN]
627 #define mn_hi mn_offset[BYTE_ORDER==LITTLE_ENDIAN] /**< part of dsize or pgno */
628         unsigned short  mn_offset[2];   /**< storage for #mn_lo and #mn_hi */
629 /** @defgroup mdb_node Node Flags
630  *      @ingroup internal
631  *      Flags for node headers.
632  *      @{
633  */
634 #define F_BIGDATA        0x01                   /**< data put on overflow page */
635 #define F_SUBDATA        0x02                   /**< data is a sub-database */
636 #define F_DUPDATA        0x04                   /**< data has duplicates */
637
638 /** valid flags for #mdb_node_add() */
639 #define NODE_ADD_FLAGS  (F_DUPDATA|F_SUBDATA|MDB_RESERVE|MDB_APPEND)
640
641 /** @} */
642         unsigned short  mn_flags;               /**< @ref mdb_node */
643         unsigned short  mn_ksize;               /**< key size */
644         char            mn_data[1];                     /**< key and data are appended here */
645 } MDB_node;
646
647         /** Size of the node header, excluding dynamic data at the end */
648 #define NODESIZE         offsetof(MDB_node, mn_data)
649
650         /** Bit position of top word in page number, for shifting mn_flags */
651 #define PGNO_TOPWORD ((pgno_t)-1 > 0xffffffffu ? 32 : 0)
652
653         /** Size of a node in a branch page with a given key.
654          *      This is just the node header plus the key, there is no data.
655          */
656 #define INDXSIZE(k)      (NODESIZE + ((k) == NULL ? 0 : (k)->mv_size))
657
658         /** Size of a node in a leaf page with a given key and data.
659          *      This is node header plus key plus data size.
660          */
661 #define LEAFSIZE(k, d)   (NODESIZE + (k)->mv_size + (d)->mv_size)
662
663         /** Address of node \b i in page \b p */
664 #define NODEPTR(p, i)    ((MDB_node *)((char *)(p) + (p)->mp_ptrs[i]))
665
666         /** Address of the key for the node */
667 #define NODEKEY(node)    (void *)((node)->mn_data)
668
669         /** Address of the data for a node */
670 #define NODEDATA(node)   (void *)((char *)(node)->mn_data + (node)->mn_ksize)
671
672         /** Get the page number pointed to by a branch node */
673 #define NODEPGNO(node) \
674         ((node)->mn_lo | ((pgno_t) (node)->mn_hi << 16) | \
675          (PGNO_TOPWORD ? ((pgno_t) (node)->mn_flags << PGNO_TOPWORD) : 0))
676         /** Set the page number in a branch node */
677 #define SETPGNO(node,pgno)      do { \
678         (node)->mn_lo = (pgno) & 0xffff; (node)->mn_hi = (pgno) >> 16; \
679         if (PGNO_TOPWORD) (node)->mn_flags = (pgno) >> PGNO_TOPWORD; } while(0)
680
681         /** Get the size of the data in a leaf node */
682 #define NODEDSZ(node)    ((node)->mn_lo | ((unsigned)(node)->mn_hi << 16))
683         /** Set the size of the data for a leaf node */
684 #define SETDSZ(node,size)       do { \
685         (node)->mn_lo = (size) & 0xffff; (node)->mn_hi = (size) >> 16;} while(0)
686         /** The size of a key in a node */
687 #define NODEKSZ(node)    ((node)->mn_ksize)
688
689         /** Copy a page number from src to dst */
690 #ifdef MISALIGNED_OK
691 #define COPY_PGNO(dst,src)      dst = src
692 #else
693 #if SIZE_MAX > 4294967295UL
694 #define COPY_PGNO(dst,src)      do { \
695         unsigned short *s, *d;  \
696         s = (unsigned short *)&(src);   \
697         d = (unsigned short *)&(dst);   \
698         *d++ = *s++;    \
699         *d++ = *s++;    \
700         *d++ = *s++;    \
701         *d = *s;        \
702 } while (0)
703 #else
704 #define COPY_PGNO(dst,src)      do { \
705         unsigned short *s, *d;  \
706         s = (unsigned short *)&(src);   \
707         d = (unsigned short *)&(dst);   \
708         *d++ = *s++;    \
709         *d = *s;        \
710 } while (0)
711 #endif
712 #endif
713         /** The address of a key in a LEAF2 page.
714          *      LEAF2 pages are used for #MDB_DUPFIXED sorted-duplicate sub-DBs.
715          *      There are no node headers, keys are stored contiguously.
716          */
717 #define LEAF2KEY(p, i, ks)      ((char *)(p) + PAGEHDRSZ + ((i)*(ks)))
718
719         /** Set the \b node's key into \b key, if requested. */
720 #define MDB_GET_KEY(node, key)  { if ((key) != NULL) { \
721         (key)->mv_size = NODEKSZ(node); (key)->mv_data = NODEKEY(node); } }
722
723         /** Information about a single database in the environment. */
724 typedef struct MDB_db {
725         uint32_t        md_pad;         /**< also ksize for LEAF2 pages */
726         uint16_t        md_flags;       /**< @ref mdb_dbi_open */
727         uint16_t        md_depth;       /**< depth of this tree */
728         pgno_t          md_branch_pages;        /**< number of internal pages */
729         pgno_t          md_leaf_pages;          /**< number of leaf pages */
730         pgno_t          md_overflow_pages;      /**< number of overflow pages */
731         size_t          md_entries;             /**< number of data items */
732         pgno_t          md_root;                /**< the root page of this tree */
733 } MDB_db;
734
735         /** Handle for the DB used to track free pages. */
736 #define FREE_DBI        0
737         /** Handle for the default DB. */
738 #define MAIN_DBI        1
739
740         /** Meta page content. */
741 typedef struct MDB_meta {
742                 /** Stamp identifying this as an MDB file. It must be set
743                  *      to #MDB_MAGIC. */
744         uint32_t        mm_magic;
745                 /** Version number of this lock file. Must be set to #MDB_VERSION. */
746         uint32_t        mm_version;
747         void            *mm_address;            /**< address for fixed mapping */
748         size_t          mm_mapsize;                     /**< size of mmap region */
749         MDB_db          mm_dbs[2];                      /**< first is free space, 2nd is main db */
750         /** The size of pages used in this DB */
751 #define mm_psize        mm_dbs[0].md_pad
752         /** Any persistent environment flags. @ref mdb_env */
753 #define mm_flags        mm_dbs[0].md_flags
754         pgno_t          mm_last_pg;                     /**< last used page in file */
755         txnid_t         mm_txnid;                       /**< txnid that committed this page */
756 } MDB_meta;
757
758         /** Buffer for a stack-allocated dirty page.
759          *      The members define size and alignment, and silence type
760          *      aliasing warnings.  They are not used directly; that could
761          *      mean incorrectly using several union members in parallel.
762          */
763 typedef union MDB_pagebuf {
764         char            mb_raw[MDB_PAGESIZE];
765         MDB_page        mb_page;
766         struct {
767                 char            mm_pad[PAGEHDRSZ];
768                 MDB_meta        mm_meta;
769         } mb_metabuf;
770 } MDB_pagebuf;
771
772         /** Auxiliary DB info.
773          *      The information here is mostly static/read-only. There is
774          *      only a single copy of this record in the environment.
775          */
776 typedef struct MDB_dbx {
777         MDB_val         md_name;                /**< name of the database */
778         MDB_cmp_func    *md_cmp;        /**< function for comparing keys */
779         MDB_cmp_func    *md_dcmp;       /**< function for comparing data items */
780         MDB_rel_func    *md_rel;        /**< user relocate function */
781         void            *md_relctx;             /**< user-provided context for md_rel */
782 } MDB_dbx;
783
784         /** A database transaction.
785          *      Every operation requires a transaction handle.
786          */
787 struct MDB_txn {
788         MDB_txn         *mt_parent;             /**< parent of a nested txn */
789         MDB_txn         *mt_child;              /**< nested txn under this txn */
790         pgno_t          mt_next_pgno;   /**< next unallocated page */
791         /** The ID of this transaction. IDs are integers incrementing from 1.
792          *      Only committed write transactions increment the ID. If a transaction
793          *      aborts, the ID may be re-used by the next writer.
794          */
795         txnid_t         mt_txnid;
796         MDB_env         *mt_env;                /**< the DB environment */
797         /** The list of pages that became unused during this transaction.
798          */
799         MDB_IDL         mt_free_pgs;
800         union {
801                 MDB_ID2L        dirty_list;     /**< modified pages */
802                 MDB_reader      *reader;        /**< this thread's slot in the reader table */
803         } mt_u;
804         /** Array of records for each DB known in the environment. */
805         MDB_dbx         *mt_dbxs;
806         /** Array of MDB_db records for each known DB */
807         MDB_db          *mt_dbs;
808 /** @defgroup mt_dbflag Transaction DB Flags
809  *      @ingroup internal
810  * @{
811  */
812 #define DB_DIRTY        0x01            /**< DB was written in this txn */
813 #define DB_STALE        0x02            /**< DB record is older than txnID */
814 /** @} */
815         /** Array of cursors for each DB */
816         MDB_cursor      **mt_cursors;
817         /** Array of flags for each DB */
818         unsigned char   *mt_dbflags;
819         /**     Number of DB records in use. This number only ever increments;
820          *      we don't decrement it when individual DB handles are closed.
821          */
822         MDB_dbi         mt_numdbs;
823
824 /** @defgroup mdb_txn   Transaction Flags
825  *      @ingroup internal
826  *      @{
827  */
828 #define MDB_TXN_RDONLY          0x01            /**< read-only transaction */
829 #define MDB_TXN_ERROR           0x02            /**< an error has occurred */
830 #define MDB_TXN_DIRTY           0x04            /**< must write, even if dirty list is empty */
831 /** @} */
832         unsigned int    mt_flags;               /**< @ref mdb_txn */
833         /** Tracks which of the two meta pages was used at the start
834          *      of this transaction.
835          */
836         unsigned int    mt_toggle;
837 };
838
839 /** Enough space for 2^32 nodes with minimum of 2 keys per node. I.e., plenty.
840  * At 4 keys per node, enough for 2^64 nodes, so there's probably no need to
841  * raise this on a 64 bit machine.
842  */
843 #define CURSOR_STACK             32
844
845 struct MDB_xcursor;
846
847         /** Cursors are used for all DB operations */
848 struct MDB_cursor {
849         /** Next cursor on this DB in this txn */
850         MDB_cursor      *mc_next;
851         /** Original cursor if this is a shadow */
852         MDB_cursor      *mc_orig;
853         /** Context used for databases with #MDB_DUPSORT, otherwise NULL */
854         struct MDB_xcursor      *mc_xcursor;
855         /** The transaction that owns this cursor */
856         MDB_txn         *mc_txn;
857         /** The database handle this cursor operates on */
858         MDB_dbi         mc_dbi;
859         /** The database record for this cursor */
860         MDB_db          *mc_db;
861         /** The database auxiliary record for this cursor */
862         MDB_dbx         *mc_dbx;
863         /** The @ref mt_dbflag for this database */
864         unsigned char   *mc_dbflag;
865         unsigned short  mc_snum;        /**< number of pushed pages */
866         unsigned short  mc_top;         /**< index of top page, normally mc_snum-1 */
867 /** @defgroup mdb_cursor        Cursor Flags
868  *      @ingroup internal
869  *      Cursor state flags.
870  *      @{
871  */
872 #define C_INITIALIZED   0x01    /**< cursor has been initialized and is valid */
873 #define C_EOF   0x02                    /**< No more data */
874 #define C_SUB   0x04                    /**< Cursor is a sub-cursor */
875 #define C_SHADOW        0x08            /**< Cursor is a dup from a parent txn */
876 #define C_ALLOCD        0x10            /**< Cursor was malloc'd */
877 #define C_SPLITTING     0x20            /**< Cursor is in page_split */
878 /** @} */
879         unsigned int    mc_flags;       /**< @ref mdb_cursor */
880         MDB_page        *mc_pg[CURSOR_STACK];   /**< stack of pushed pages */
881         indx_t          mc_ki[CURSOR_STACK];    /**< stack of page indices */
882 };
883
884         /** Context for sorted-dup records.
885          *      We could have gone to a fully recursive design, with arbitrarily
886          *      deep nesting of sub-databases. But for now we only handle these
887          *      levels - main DB, optional sub-DB, sorted-duplicate DB.
888          */
889 typedef struct MDB_xcursor {
890         /** A sub-cursor for traversing the Dup DB */
891         MDB_cursor mx_cursor;
892         /** The database record for this Dup DB */
893         MDB_db  mx_db;
894         /**     The auxiliary DB record for this Dup DB */
895         MDB_dbx mx_dbx;
896         /** The @ref mt_dbflag for this Dup DB */
897         unsigned char mx_dbflag;
898 } MDB_xcursor;
899
900         /** A set of pages freed by an earlier transaction. */
901 typedef struct MDB_oldpages {
902         /** Usually we only read one record from the FREEDB at a time, but
903          *      in case we read more, this will chain them together.
904          */
905         struct MDB_oldpages *mo_next;
906         /**     The ID of the transaction in which these pages were freed. */
907         txnid_t         mo_txnid;
908         /** An #MDB_IDL of the pages */
909         pgno_t          mo_pages[1];    /* dynamic */
910 } MDB_oldpages;
911
912         /** The database environment. */
913 struct MDB_env {
914         HANDLE          me_fd;          /**< The main data file */
915         HANDLE          me_lfd;         /**< The lock file */
916         HANDLE          me_mfd;                 /**< just for writing the meta pages */
917         /** Failed to update the meta page. Probably an I/O error. */
918 #define MDB_FATAL_ERROR 0x80000000U
919         /** Read-only Filesystem. Allow read access, no locking. */
920 #define MDB_ROFS        0x40000000U
921         /** Some fields are initialized. */
922 #define MDB_ENV_ACTIVE  0x20000000U
923         uint32_t        me_flags;               /**< @ref mdb_env */
924         unsigned int    me_psize;       /**< size of a page, from #GET_PAGESIZE */
925         unsigned int    me_maxreaders;  /**< size of the reader table */
926         unsigned int    me_numreaders;  /**< max numreaders set by this env */
927         MDB_dbi         me_numdbs;              /**< number of DBs opened */
928         MDB_dbi         me_maxdbs;              /**< size of the DB table */
929         pid_t           me_pid;         /**< process ID of this env */
930         char            *me_path;               /**< path to the DB files */
931         char            *me_map;                /**< the memory map of the data file */
932         MDB_txninfo     *me_txns;               /**< the memory map of the lock file */
933         MDB_meta        *me_metas[2];   /**< pointers to the two meta pages */
934         MDB_txn         *me_txn;                /**< current write transaction */
935         size_t          me_mapsize;             /**< size of the data memory map */
936         off_t           me_size;                /**< current file size */
937         pgno_t          me_maxpg;               /**< me_mapsize / me_psize */
938         txnid_t         me_pgfirst;             /**< ID of first old page record we used */
939         txnid_t         me_pglast;              /**< ID of last old page record we used */
940         MDB_dbx         *me_dbxs;               /**< array of static DB info */
941         uint16_t        *me_dbflags;    /**< array of DB flags */
942         MDB_oldpages *me_pghead;        /**< list of old page records */
943         MDB_oldpages *me_pgfree;        /**< list of page records to free */
944         pthread_key_t   me_txkey;       /**< thread-key for readers */
945         MDB_page        *me_dpages;             /**< list of malloc'd blocks for re-use */
946         /** IDL of pages that became unused in a write txn */
947         MDB_IDL         me_free_pgs;
948         /** ID2L of pages that were written during a write txn */
949         MDB_ID2         me_dirty_list[MDB_IDL_UM_SIZE];
950 #ifdef _WIN32
951         HANDLE          me_rmutex;              /* Windows mutexes don't reside in shared mem */
952         HANDLE          me_wmutex;
953 #elif defined(MDB_USE_POSIX_SEM)
954         sem_t           *me_rmutex;             /* Shared mutexes are not supported */
955         sem_t           *me_wmutex;
956 #endif
957 };
958         /** max number of pages to commit in one writev() call */
959 #define MDB_COMMIT_PAGES         64
960 #if defined(IOV_MAX) && IOV_MAX < MDB_COMMIT_PAGES
961 #undef MDB_COMMIT_PAGES
962 #define MDB_COMMIT_PAGES        IOV_MAX
963 #endif
964
965 static int  mdb_page_alloc(MDB_cursor *mc, int num, MDB_page **mp);
966 static int  mdb_page_new(MDB_cursor *mc, uint32_t flags, int num, MDB_page **mp);
967 static int  mdb_page_touch(MDB_cursor *mc);
968
969 static int  mdb_page_get(MDB_txn *txn, pgno_t pgno, MDB_page **mp);
970 static int  mdb_page_search_root(MDB_cursor *mc,
971                             MDB_val *key, int modify);
972 #define MDB_PS_MODIFY   1
973 #define MDB_PS_ROOTONLY 2
974 static int  mdb_page_search(MDB_cursor *mc,
975                             MDB_val *key, int flags);
976 static int      mdb_page_merge(MDB_cursor *csrc, MDB_cursor *cdst);
977
978 #define MDB_SPLIT_REPLACE       MDB_APPENDDUP   /**< newkey is not new */
979 static int      mdb_page_split(MDB_cursor *mc, MDB_val *newkey, MDB_val *newdata,
980                                 pgno_t newpgno, unsigned int nflags);
981
982 static int  mdb_env_read_header(MDB_env *env, MDB_meta *meta);
983 static int  mdb_env_pick_meta(const MDB_env *env);
984 static int  mdb_env_write_meta(MDB_txn *txn);
985 static void mdb_env_close0(MDB_env *env, int excl);
986
987 static MDB_node *mdb_node_search(MDB_cursor *mc, MDB_val *key, int *exactp);
988 static int  mdb_node_add(MDB_cursor *mc, indx_t indx,
989                             MDB_val *key, MDB_val *data, pgno_t pgno, unsigned int flags);
990 static void mdb_node_del(MDB_page *mp, indx_t indx, int ksize);
991 static void mdb_node_shrink(MDB_page *mp, indx_t indx);
992 static int      mdb_node_move(MDB_cursor *csrc, MDB_cursor *cdst);
993 static int  mdb_node_read(MDB_txn *txn, MDB_node *leaf, MDB_val *data);
994 static size_t   mdb_leaf_size(MDB_env *env, MDB_val *key, MDB_val *data);
995 static size_t   mdb_branch_size(MDB_env *env, MDB_val *key);
996
997 static int      mdb_rebalance(MDB_cursor *mc);
998 static int      mdb_update_key(MDB_page *mp, indx_t indx, MDB_val *key);
999
1000 static void     mdb_cursor_pop(MDB_cursor *mc);
1001 static int      mdb_cursor_push(MDB_cursor *mc, MDB_page *mp);
1002
1003 static int      mdb_cursor_del0(MDB_cursor *mc, MDB_node *leaf);
1004 static int      mdb_cursor_sibling(MDB_cursor *mc, int move_right);
1005 static int      mdb_cursor_next(MDB_cursor *mc, MDB_val *key, MDB_val *data, MDB_cursor_op op);
1006 static int      mdb_cursor_prev(MDB_cursor *mc, MDB_val *key, MDB_val *data, MDB_cursor_op op);
1007 static int      mdb_cursor_set(MDB_cursor *mc, MDB_val *key, MDB_val *data, MDB_cursor_op op,
1008                                 int *exactp);
1009 static int      mdb_cursor_first(MDB_cursor *mc, MDB_val *key, MDB_val *data);
1010 static int      mdb_cursor_last(MDB_cursor *mc, MDB_val *key, MDB_val *data);
1011
1012 static void     mdb_cursor_init(MDB_cursor *mc, MDB_txn *txn, MDB_dbi dbi, MDB_xcursor *mx);
1013 static void     mdb_xcursor_init0(MDB_cursor *mc);
1014 static void     mdb_xcursor_init1(MDB_cursor *mc, MDB_node *node);
1015
1016 static int      mdb_drop0(MDB_cursor *mc, int subs);
1017 static void mdb_default_cmp(MDB_txn *txn, MDB_dbi dbi);
1018
1019 /** @cond */
1020 static MDB_cmp_func     mdb_cmp_memn, mdb_cmp_memnr, mdb_cmp_int, mdb_cmp_cint, mdb_cmp_long;
1021 /** @endcond */
1022
1023 #ifdef _WIN32
1024 static SECURITY_DESCRIPTOR mdb_null_sd;
1025 static SECURITY_ATTRIBUTES mdb_all_sa;
1026 static int mdb_sec_inited;
1027 #endif
1028
1029 /** Return the library version info. */
1030 char *
1031 mdb_version(int *major, int *minor, int *patch)
1032 {
1033         if (major) *major = MDB_VERSION_MAJOR;
1034         if (minor) *minor = MDB_VERSION_MINOR;
1035         if (patch) *patch = MDB_VERSION_PATCH;
1036         return MDB_VERSION_STRING;
1037 }
1038
1039 /** Table of descriptions for MDB @ref errors */
1040 static char *const mdb_errstr[] = {
1041         "MDB_KEYEXIST: Key/data pair already exists",
1042         "MDB_NOTFOUND: No matching key/data pair found",
1043         "MDB_PAGE_NOTFOUND: Requested page not found",
1044         "MDB_CORRUPTED: Located page was wrong type",
1045         "MDB_PANIC: Update of meta page failed",
1046         "MDB_VERSION_MISMATCH: Database environment version mismatch",
1047         "MDB_INVALID: File is not an MDB file",
1048         "MDB_MAP_FULL: Environment mapsize limit reached",
1049         "MDB_DBS_FULL: Environment maxdbs limit reached",
1050         "MDB_READERS_FULL: Environment maxreaders limit reached",
1051         "MDB_TLS_FULL: Thread-local storage keys full - too many environments open",
1052         "MDB_TXN_FULL: Nested transaction has too many dirty pages - transaction too big",
1053         "MDB_CURSOR_FULL: Internal error - cursor stack limit reached",
1054         "MDB_PAGE_FULL: Internal error - page has no more space"
1055 };
1056
1057 char *
1058 mdb_strerror(int err)
1059 {
1060         int i;
1061         if (!err)
1062                 return ("Successful return: 0");
1063
1064         if (err >= MDB_KEYEXIST && err <= MDB_LAST_ERRCODE) {
1065                 i = err - MDB_KEYEXIST;
1066                 return mdb_errstr[i];
1067         }
1068
1069         return strerror(err);
1070 }
1071
1072 #if MDB_DEBUG
1073 /** Display a key in hexadecimal and return the address of the result.
1074  * @param[in] key the key to display
1075  * @param[in] buf the buffer to write into. Should always be #DKBUF.
1076  * @return The key in hexadecimal form.
1077  */
1078 char *
1079 mdb_dkey(MDB_val *key, char *buf)
1080 {
1081         char *ptr = buf;
1082         unsigned char *c = key->mv_data;
1083         unsigned int i;
1084         if (key->mv_size > MAXKEYSIZE)
1085                 return "MAXKEYSIZE";
1086         /* may want to make this a dynamic check: if the key is mostly
1087          * printable characters, print it as-is instead of converting to hex.
1088          */
1089 #if 1
1090         buf[0] = '\0';
1091         for (i=0; i<key->mv_size; i++)
1092                 ptr += sprintf(ptr, "%02x", *c++);
1093 #else
1094         sprintf(buf, "%.*s", key->mv_size, key->mv_data);
1095 #endif
1096         return buf;
1097 }
1098
1099 /** Display all the keys in the page. */
1100 static void
1101 mdb_page_list(MDB_page *mp)
1102 {
1103         MDB_node *node;
1104         unsigned int i, nkeys, nsize;
1105         MDB_val key;
1106         DKBUF;
1107
1108         nkeys = NUMKEYS(mp);
1109         fprintf(stderr, "numkeys %d\n", nkeys);
1110         for (i=0; i<nkeys; i++) {
1111                 node = NODEPTR(mp, i);
1112                 key.mv_size = node->mn_ksize;
1113                 key.mv_data = node->mn_data;
1114                 nsize = NODESIZE + NODEKSZ(node) + sizeof(indx_t);
1115                 if (F_ISSET(node->mn_flags, F_BIGDATA))
1116                         nsize += sizeof(pgno_t);
1117                 else
1118                         nsize += NODEDSZ(node);
1119                 fprintf(stderr, "key %d: nsize %d, %s\n", i, nsize, DKEY(&key));
1120         }
1121 }
1122
1123 void
1124 mdb_cursor_chk(MDB_cursor *mc)
1125 {
1126         unsigned int i;
1127         MDB_node *node;
1128         MDB_page *mp;
1129
1130         if (!mc->mc_snum && !(mc->mc_flags & C_INITIALIZED)) return;
1131         for (i=0; i<mc->mc_top; i++) {
1132                 mp = mc->mc_pg[i];
1133                 node = NODEPTR(mp, mc->mc_ki[i]);
1134                 if (NODEPGNO(node) != mc->mc_pg[i+1]->mp_pgno)
1135                         printf("oops!\n");
1136         }
1137         if (mc->mc_ki[i] >= NUMKEYS(mc->mc_pg[i]))
1138                 printf("ack!\n");
1139 }
1140 #endif
1141
1142 #if MDB_DEBUG > 2
1143 /** Count all the pages in each DB and in the freelist
1144  *  and make sure it matches the actual number of pages
1145  *  being used.
1146  */
1147 static void mdb_audit(MDB_txn *txn)
1148 {
1149         MDB_cursor mc;
1150         MDB_val key, data;
1151         MDB_ID freecount, count;
1152         MDB_dbi i;
1153         int rc;
1154
1155         freecount = 0;
1156         mdb_cursor_init(&mc, txn, FREE_DBI, NULL);
1157         while ((rc = mdb_cursor_get(&mc, &key, &data, MDB_NEXT)) == 0)
1158                 freecount += *(MDB_ID *)data.mv_data;
1159
1160         count = 0;
1161         for (i = 0; i<txn->mt_numdbs; i++) {
1162                 MDB_xcursor mx, *mxp;
1163                 mxp = (txn->mt_dbs[i].md_flags & MDB_DUPSORT) ? &mx : NULL;
1164                 mdb_cursor_init(&mc, txn, i, mxp);
1165                 if (txn->mt_dbs[i].md_root == P_INVALID)
1166                         continue;
1167                 count += txn->mt_dbs[i].md_branch_pages +
1168                         txn->mt_dbs[i].md_leaf_pages +
1169                         txn->mt_dbs[i].md_overflow_pages;
1170                 if (txn->mt_dbs[i].md_flags & MDB_DUPSORT) {
1171                         mdb_page_search(&mc, NULL, 0);
1172                         do {
1173                                 unsigned j;
1174                                 MDB_page *mp;
1175                                 mp = mc.mc_pg[mc.mc_top];
1176                                 for (j=0; j<NUMKEYS(mp); j++) {
1177                                         MDB_node *leaf = NODEPTR(mp, j);
1178                                         if (leaf->mn_flags & F_SUBDATA) {
1179                                                 MDB_db db;
1180                                                 memcpy(&db, NODEDATA(leaf), sizeof(db));
1181                                                 count += db.md_branch_pages + db.md_leaf_pages +
1182                                                         db.md_overflow_pages;
1183                                         }
1184                                 }
1185                         }
1186                         while (mdb_cursor_sibling(&mc, 1) == 0);
1187                 }
1188         }
1189         if (freecount + count + 2 /* metapages */ != txn->mt_next_pgno) {
1190                 fprintf(stderr, "audit: %lu freecount: %lu count: %lu total: %lu next_pgno: %lu\n",
1191                         txn->mt_txnid, freecount, count+2, freecount+count+2, txn->mt_next_pgno);
1192         }
1193 }
1194 #endif
1195
1196 int
1197 mdb_cmp(MDB_txn *txn, MDB_dbi dbi, const MDB_val *a, const MDB_val *b)
1198 {
1199         return txn->mt_dbxs[dbi].md_cmp(a, b);
1200 }
1201
1202 int
1203 mdb_dcmp(MDB_txn *txn, MDB_dbi dbi, const MDB_val *a, const MDB_val *b)
1204 {
1205         if (txn->mt_dbxs[dbi].md_dcmp)
1206                 return txn->mt_dbxs[dbi].md_dcmp(a, b);
1207         else
1208                 return EINVAL;  /* too bad you can't distinguish this from a valid result */
1209 }
1210
1211 /** Allocate a single page.
1212  * Re-use old malloc'd pages first, otherwise just malloc.
1213  */
1214 static MDB_page *
1215 mdb_page_malloc(MDB_cursor *mc) {
1216         MDB_page *ret;
1217         size_t sz = mc->mc_txn->mt_env->me_psize;
1218         if ((ret = mc->mc_txn->mt_env->me_dpages) != NULL) {
1219                 VGMEMP_ALLOC(mc->mc_txn->mt_env, ret, sz);
1220                 VGMEMP_DEFINED(ret, sizeof(ret->mp_next));
1221                 mc->mc_txn->mt_env->me_dpages = ret->mp_next;
1222         } else if ((ret = malloc(sz)) != NULL) {
1223                 VGMEMP_ALLOC(mc->mc_txn->mt_env, ret, sz);
1224         }
1225         return ret;
1226 }
1227
1228 /** Allocate pages for writing.
1229  * If there are free pages available from older transactions, they
1230  * will be re-used first. Otherwise a new page will be allocated.
1231  * @param[in] mc cursor A cursor handle identifying the transaction and
1232  *      database for which we are allocating.
1233  * @param[in] num the number of pages to allocate.
1234  * @param[out] mp Address of the allocated page(s). Requests for multiple pages
1235  *  will always be satisfied by a single contiguous chunk of memory.
1236  * @return 0 on success, non-zero on failure.
1237  */
1238 static int
1239 mdb_page_alloc(MDB_cursor *mc, int num, MDB_page **mp)
1240 {
1241         MDB_txn *txn = mc->mc_txn;
1242         MDB_page *np;
1243         pgno_t pgno = P_INVALID;
1244         MDB_ID2 mid;
1245         txnid_t oldest = 0, last;
1246         int rc;
1247
1248         *mp = NULL;
1249         /* The free list won't have any content at all until txn 2 has
1250          * committed. The pages freed by txn 2 will be unreferenced
1251          * after txn 3 commits, and so will be safe to re-use in txn 4.
1252          */
1253         if (txn->mt_txnid > 3) {
1254
1255                 if (!txn->mt_env->me_pghead &&
1256                         txn->mt_dbs[FREE_DBI].md_root != P_INVALID) {
1257                         /* See if there's anything in the free DB */
1258                         MDB_reader *r;
1259                         MDB_cursor m2;
1260                         MDB_node *leaf;
1261                         MDB_val data;
1262                         txnid_t *kptr;
1263
1264                         mdb_cursor_init(&m2, txn, FREE_DBI, NULL);
1265                         if (!txn->mt_env->me_pgfirst) {
1266                                 mdb_page_search(&m2, NULL, 0);
1267                                 leaf = NODEPTR(m2.mc_pg[m2.mc_top], 0);
1268                                 kptr = (txnid_t *)NODEKEY(leaf);
1269                                 last = *kptr;
1270                         } else {
1271                                 MDB_val key;
1272                                 int exact;
1273 again:
1274                                 exact = 0;
1275                                 last = txn->mt_env->me_pglast + 1;
1276                                 leaf = NULL;
1277                                 key.mv_data = &last;
1278                                 key.mv_size = sizeof(last);
1279                                 rc = mdb_cursor_set(&m2, &key, &data, MDB_SET, &exact);
1280                                 if (rc)
1281                                         goto none;
1282                                 last = *(txnid_t *)key.mv_data;
1283                         }
1284
1285                         {
1286                                 unsigned int i, nr;
1287                                 txnid_t mr;
1288                                 oldest = txn->mt_txnid - 1;
1289                                 nr = txn->mt_env->me_txns->mti_numreaders;
1290                                 r = txn->mt_env->me_txns->mti_readers;
1291                                 for (i=0; i<nr; i++) {
1292                                         if (!r[i].mr_pid) continue;
1293                                         mr = r[i].mr_txnid;
1294                                         if (mr < oldest)
1295                                                 oldest = mr;
1296                                 }
1297                         }
1298
1299                         if (oldest > last) {
1300                                 /* It's usable, grab it.
1301                                  */
1302                                 MDB_oldpages *mop;
1303                                 pgno_t *idl;
1304
1305                                 if (!txn->mt_env->me_pgfirst) {
1306                                         mdb_node_read(txn, leaf, &data);
1307                                 }
1308                                 txn->mt_env->me_pglast = last;
1309                                 if (!txn->mt_env->me_pgfirst)
1310                                         txn->mt_env->me_pgfirst = last;
1311                                 idl = (MDB_ID *) data.mv_data;
1312                                 /* We might have a zero-length IDL due to freelist growth
1313                                  * during a prior commit
1314                                  */
1315                                 if (!idl[0]) goto again;
1316                                 mop = malloc(sizeof(MDB_oldpages) + MDB_IDL_SIZEOF(idl) - sizeof(pgno_t));
1317                                 if (!mop)
1318                                         return ENOMEM;
1319                                 mop->mo_next = txn->mt_env->me_pghead;
1320                                 mop->mo_txnid = last;
1321                                 txn->mt_env->me_pghead = mop;
1322                                 memcpy(mop->mo_pages, idl, MDB_IDL_SIZEOF(idl));
1323
1324 #if MDB_DEBUG > 1
1325                                 {
1326                                         unsigned int i;
1327                                         DPRINTF("IDL read txn %zu root %zu num %zu",
1328                                                 mop->mo_txnid, txn->mt_dbs[FREE_DBI].md_root, idl[0]);
1329                                         for (i=0; i<idl[0]; i++) {
1330                                                 DPRINTF("IDL %zu", idl[i+1]);
1331                                         }
1332                                 }
1333 #endif
1334                         }
1335                 }
1336 none:
1337                 if (txn->mt_env->me_pghead) {
1338                         MDB_oldpages *mop = txn->mt_env->me_pghead;
1339                         if (num > 1) {
1340                                 MDB_cursor m2;
1341                                 int retry = 60, readit = 0, n2 = num-1;
1342                                 unsigned int i, j, k;
1343
1344                                 /* If current list is too short, must fetch more and coalesce */
1345                                 if (mop->mo_pages[0] < (unsigned)num)
1346                                         readit = 1;
1347
1348                                 mdb_cursor_init(&m2, txn, FREE_DBI, NULL);
1349                                 do {
1350                                         /* bail out if we're operating on the freelist.
1351                                          * TODO: get all of this working. Many circular dependencies...
1352                                          */
1353                                         if (mc->mc_dbi == FREE_DBI)
1354                                                 break;
1355                                         if (readit) {
1356                                                 MDB_val key, data;
1357                                                 MDB_oldpages *mop2;
1358                                                 pgno_t *idl;
1359                                                 int exact;
1360
1361                                                 last = mop->mo_txnid + 1;
1362
1363                                                 /* We haven't hit the readers list yet? */
1364                                                 if (!oldest) {
1365                                                         MDB_reader *r;
1366                                                         unsigned int nr;
1367                                                         txnid_t mr;
1368
1369                                                         oldest = txn->mt_txnid - 1;
1370                                                         nr = txn->mt_env->me_txns->mti_numreaders;
1371                                                         r = txn->mt_env->me_txns->mti_readers;
1372                                                         for (i=0; i<nr; i++) {
1373                                                                 if (!r[i].mr_pid) continue;
1374                                                                 mr = r[i].mr_txnid;
1375                                                                 if (mr < oldest)
1376                                                                         oldest = mr;
1377                                                         }
1378                                                 }
1379
1380                                                 /* There's nothing we can use on the freelist */
1381                                                 if (oldest - last < 1)
1382                                                         break;
1383
1384                                                 exact = 0;
1385                                                 key.mv_data = &last;
1386                                                 key.mv_size = sizeof(last);
1387                                                 rc = mdb_cursor_set(&m2, &key, &data, MDB_SET, &exact);
1388                                                 if (rc)
1389                                                         return rc;
1390                                                 idl = (MDB_ID *) data.mv_data;
1391                                                 mop2 = malloc(sizeof(MDB_oldpages) + MDB_IDL_SIZEOF(idl) - 2*sizeof(pgno_t) + MDB_IDL_SIZEOF(mop->mo_pages));
1392                                                 if (!mop2)
1393                                                         return ENOMEM;
1394                                                 /* merge in sorted order */
1395                                                 i = idl[0]; j = mop->mo_pages[0]; mop2->mo_pages[0] = k = i+j;
1396                                                 mop->mo_pages[0] = P_INVALID;
1397                                                 while (i>0  || j>0) {
1398                                                         if (i && idl[i] < mop->mo_pages[j])
1399                                                                 mop2->mo_pages[k--] = idl[i--];
1400                                                         else
1401                                                                 mop2->mo_pages[k--] = mop->mo_pages[j--];
1402                                                 }
1403                                                 txn->mt_env->me_pglast = last;
1404                                                 mop2->mo_txnid = last;
1405                                                 mop2->mo_next = mop->mo_next;
1406                                                 txn->mt_env->me_pghead = mop2;
1407                                                 free(mop);
1408                                                 mop = mop2;
1409                                                 /* Keep trying to read until we have enough */
1410                                                 if (mop->mo_pages[0] < (unsigned)num) {
1411                                                         continue;
1412                                                 }
1413                                         }
1414
1415                                         /* current list has enough pages, but are they contiguous? */
1416                                         for (i=mop->mo_pages[0]; i>=(unsigned)num; i--) {
1417                                                 if (mop->mo_pages[i-n2] == mop->mo_pages[i] + n2) {
1418                                                         pgno = mop->mo_pages[i];
1419                                                         i -= n2;
1420                                                         /* move any stragglers down */
1421                                                         for (j=i+num; j<=mop->mo_pages[0]; j++)
1422                                                                 mop->mo_pages[i++] = mop->mo_pages[j];
1423                                                         mop->mo_pages[0] -= num;
1424                                                         break;
1425                                                 }
1426                                         }
1427
1428                                         /* Stop if we succeeded, or no more retries */
1429                                         if (!retry || pgno != P_INVALID)
1430                                                 break;
1431                                         readit = 1;
1432                                         retry--;
1433
1434                                 } while (1);
1435                         } else {
1436                                 /* peel pages off tail, so we only have to truncate the list */
1437                                 pgno = MDB_IDL_LAST(mop->mo_pages);
1438                                 mop->mo_pages[0]--;
1439                         }
1440                         if (MDB_IDL_IS_ZERO(mop->mo_pages)) {
1441                                 txn->mt_env->me_pghead = mop->mo_next;
1442                                 if (mc->mc_dbi == FREE_DBI) {
1443                                         mop->mo_next = txn->mt_env->me_pgfree;
1444                                         txn->mt_env->me_pgfree = mop;
1445                                 } else {
1446                                         free(mop);
1447                                 }
1448                         }
1449                 }
1450         }
1451
1452         if (pgno == P_INVALID) {
1453                 /* DB size is maxed out */
1454                 if (txn->mt_next_pgno + num >= txn->mt_env->me_maxpg) {
1455                         DPUTS("DB size maxed out");
1456                         return MDB_MAP_FULL;
1457                 }
1458         }
1459         if (txn->mt_env->me_flags & MDB_WRITEMAP) {
1460                 if (pgno == P_INVALID) {
1461                         pgno = txn->mt_next_pgno;
1462                         txn->mt_next_pgno += num;
1463                 }
1464                 np = (MDB_page *)(txn->mt_env->me_map + txn->mt_env->me_psize * pgno);
1465                 np->mp_pgno = pgno;
1466         } else {
1467                 if (txn->mt_env->me_dpages && num == 1) {
1468                         np = txn->mt_env->me_dpages;
1469                         VGMEMP_ALLOC(txn->mt_env, np, txn->mt_env->me_psize);
1470                         VGMEMP_DEFINED(np, sizeof(np->mp_next));
1471                         txn->mt_env->me_dpages = np->mp_next;
1472                 } else {
1473                         size_t sz = txn->mt_env->me_psize * num;
1474                         if ((np = malloc(sz)) == NULL)
1475                                 return ENOMEM;
1476                         VGMEMP_ALLOC(txn->mt_env, np, sz);
1477                 }
1478                 if (pgno == P_INVALID) {
1479                         np->mp_pgno = txn->mt_next_pgno;
1480                         txn->mt_next_pgno += num;
1481                 } else {
1482                         np->mp_pgno = pgno;
1483                 }
1484         }
1485         mid.mid = np->mp_pgno;
1486         mid.mptr = np;
1487         if (txn->mt_env->me_flags & MDB_WRITEMAP) {
1488                 mdb_mid2l_append(txn->mt_u.dirty_list, &mid);
1489         } else {
1490                 mdb_mid2l_insert(txn->mt_u.dirty_list, &mid);
1491         }
1492         *mp = np;
1493
1494         return MDB_SUCCESS;
1495 }
1496
1497 /** Copy a page: avoid copying unused portions of the page.
1498  * @param[in] dst page to copy into
1499  * @param[in] src page to copy from
1500  */
1501 static void
1502 mdb_page_copy(MDB_page *dst, MDB_page *src, unsigned int psize)
1503 {
1504         dst->mp_flags = src->mp_flags | P_DIRTY;
1505         dst->mp_pages = src->mp_pages;
1506
1507         if (IS_LEAF2(src)) {
1508                 memcpy(dst->mp_ptrs, src->mp_ptrs, psize - PAGEHDRSZ - SIZELEFT(src));
1509         } else {
1510                 unsigned int i, nkeys = NUMKEYS(src);
1511                 for (i=0; i<nkeys; i++)
1512                         dst->mp_ptrs[i] = src->mp_ptrs[i];
1513                 memcpy((char *)dst+src->mp_upper, (char *)src+src->mp_upper,
1514                         psize - src->mp_upper);
1515         }
1516 }
1517
1518 /** Touch a page: make it dirty and re-insert into tree with updated pgno.
1519  * @param[in] mc cursor pointing to the page to be touched
1520  * @return 0 on success, non-zero on failure.
1521  */
1522 static int
1523 mdb_page_touch(MDB_cursor *mc)
1524 {
1525         MDB_page *mp = mc->mc_pg[mc->mc_top];
1526         pgno_t  pgno;
1527         int rc;
1528
1529         if (!F_ISSET(mp->mp_flags, P_DIRTY)) {
1530                 MDB_page *np;
1531                 if ((rc = mdb_page_alloc(mc, 1, &np)))
1532                         return rc;
1533                 DPRINTF("touched db %u page %zu -> %zu", mc->mc_dbi, mp->mp_pgno, np->mp_pgno);
1534                 assert(mp->mp_pgno != np->mp_pgno);
1535                 mdb_midl_append(&mc->mc_txn->mt_free_pgs, mp->mp_pgno);
1536                 if (SIZELEFT(mp)) {
1537                         /* If page isn't full, just copy the used portion */
1538                         mdb_page_copy(np, mp, mc->mc_txn->mt_env->me_psize);
1539                 } else {
1540                         pgno = np->mp_pgno;
1541                         memcpy(np, mp, mc->mc_txn->mt_env->me_psize);
1542                         np->mp_pgno = pgno;
1543                         np->mp_flags |= P_DIRTY;
1544                 }
1545                 mp = np;
1546
1547 finish:
1548                 /* Adjust other cursors pointing to mp */
1549                 if (mc->mc_flags & C_SUB) {
1550                         MDB_cursor *m2, *m3;
1551                         MDB_dbi dbi = mc->mc_dbi-1;
1552
1553                         for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
1554                                 if (m2 == mc) continue;
1555                                 m3 = &m2->mc_xcursor->mx_cursor;
1556                                 if (m3->mc_snum < mc->mc_snum) continue;
1557                                 if (m3->mc_pg[mc->mc_top] == mc->mc_pg[mc->mc_top]) {
1558                                         m3->mc_pg[mc->mc_top] = mp;
1559                                 }
1560                         }
1561                 } else {
1562                         MDB_cursor *m2;
1563
1564                         for (m2 = mc->mc_txn->mt_cursors[mc->mc_dbi]; m2; m2=m2->mc_next) {
1565                                 if (m2 == mc || m2->mc_snum < mc->mc_snum) continue;
1566                                 if (m2->mc_pg[mc->mc_top] == mc->mc_pg[mc->mc_top]) {
1567                                         m2->mc_pg[mc->mc_top] = mp;
1568                                 }
1569                         }
1570                 }
1571                 mc->mc_pg[mc->mc_top] = mp;
1572                 /** If this page has a parent, update the parent to point to
1573                  * this new page.
1574                  */
1575                 if (mc->mc_top)
1576                         SETPGNO(NODEPTR(mc->mc_pg[mc->mc_top-1], mc->mc_ki[mc->mc_top-1]), mp->mp_pgno);
1577                 else
1578                         mc->mc_db->md_root = mp->mp_pgno;
1579         } else if (mc->mc_txn->mt_parent) {
1580                 MDB_page *np;
1581                 MDB_ID2 mid;
1582                 /* If txn has a parent, make sure the page is in our
1583                  * dirty list.
1584                  */
1585                 if (mc->mc_txn->mt_u.dirty_list[0].mid) {
1586                         unsigned x = mdb_mid2l_search(mc->mc_txn->mt_u.dirty_list, mp->mp_pgno);
1587                         if (x <= mc->mc_txn->mt_u.dirty_list[0].mid &&
1588                                 mc->mc_txn->mt_u.dirty_list[x].mid == mp->mp_pgno) {
1589                                 if (mc->mc_txn->mt_u.dirty_list[x].mptr != mp) {
1590                                         mp = mc->mc_txn->mt_u.dirty_list[x].mptr;
1591                                         mc->mc_pg[mc->mc_top] = mp;
1592                                 }
1593                                 return 0;
1594                         }
1595                 }
1596                 /* No - copy it */
1597                 np = mdb_page_malloc(mc);
1598                 if (!np)
1599                         return ENOMEM;
1600                 memcpy(np, mp, mc->mc_txn->mt_env->me_psize);
1601                 mid.mid = np->mp_pgno;
1602                 mid.mptr = np;
1603                 mdb_mid2l_insert(mc->mc_txn->mt_u.dirty_list, &mid);
1604                 mp = np;
1605                 goto finish;
1606         }
1607         return 0;
1608 }
1609
1610 int
1611 mdb_env_sync(MDB_env *env, int force)
1612 {
1613         int rc = 0;
1614         if (force || !F_ISSET(env->me_flags, MDB_NOSYNC)) {
1615                 if (env->me_flags & MDB_WRITEMAP) {
1616                         int flags = ((env->me_flags & MDB_MAPASYNC) && !force)
1617                                 ? MS_ASYNC : MS_SYNC;
1618                         if (MDB_MSYNC(env->me_map, env->me_mapsize, flags))
1619                                 rc = ErrCode();
1620 #ifdef _WIN32
1621                         else if (flags == MS_SYNC && MDB_FDATASYNC(env->me_fd))
1622                                 rc = ErrCode();
1623 #endif
1624                 } else {
1625                         if (MDB_FDATASYNC(env->me_fd))
1626                                 rc = ErrCode();
1627                 }
1628         }
1629         return rc;
1630 }
1631
1632 /** Make shadow copies of all of parent txn's cursors */
1633 static int
1634 mdb_cursor_shadow(MDB_txn *src, MDB_txn *dst)
1635 {
1636         MDB_cursor *mc, *m2;
1637         unsigned int i, j, size;
1638
1639         for (i=0;i<src->mt_numdbs; i++) {
1640                 if (src->mt_cursors[i]) {
1641                         size = sizeof(MDB_cursor);
1642                         if (src->mt_cursors[i]->mc_xcursor)
1643                                 size += sizeof(MDB_xcursor);
1644                         for (m2 = src->mt_cursors[i]; m2; m2=m2->mc_next) {
1645                                 mc = malloc(size);
1646                                 if (!mc)
1647                                         return ENOMEM;
1648                                 mc->mc_orig = m2;
1649                                 mc->mc_txn = dst;
1650                                 mc->mc_dbi = i;
1651                                 mc->mc_db = &dst->mt_dbs[i];
1652                                 mc->mc_dbx = m2->mc_dbx;
1653                                 mc->mc_dbflag = &dst->mt_dbflags[i];
1654                                 mc->mc_snum = m2->mc_snum;
1655                                 mc->mc_top = m2->mc_top;
1656                                 mc->mc_flags = m2->mc_flags | C_SHADOW;
1657                                 for (j=0; j<mc->mc_snum; j++) {
1658                                         mc->mc_pg[j] = m2->mc_pg[j];
1659                                         mc->mc_ki[j] = m2->mc_ki[j];
1660                                 }
1661                                 if (m2->mc_xcursor) {
1662                                         MDB_xcursor *mx, *mx2;
1663                                         mx = (MDB_xcursor *)(mc+1);
1664                                         mc->mc_xcursor = mx;
1665                                         mx2 = m2->mc_xcursor;
1666                                         mx->mx_db = mx2->mx_db;
1667                                         mx->mx_dbx = mx2->mx_dbx;
1668                                         mx->mx_dbflag = mx2->mx_dbflag;
1669                                         mx->mx_cursor.mc_txn = dst;
1670                                         mx->mx_cursor.mc_dbi = mx2->mx_cursor.mc_dbi;
1671                                         mx->mx_cursor.mc_db = &mx->mx_db;
1672                                         mx->mx_cursor.mc_dbx = &mx->mx_dbx;
1673                                         mx->mx_cursor.mc_dbflag = &mx->mx_dbflag;
1674                                         mx->mx_cursor.mc_snum = mx2->mx_cursor.mc_snum;
1675                                         mx->mx_cursor.mc_top = mx2->mx_cursor.mc_top;
1676                                         mx->mx_cursor.mc_flags = mx2->mx_cursor.mc_flags | C_SHADOW;
1677                                         for (j=0; j<mx2->mx_cursor.mc_snum; j++) {
1678                                                 mx->mx_cursor.mc_pg[j] = mx2->mx_cursor.mc_pg[j];
1679                                                 mx->mx_cursor.mc_ki[j] = mx2->mx_cursor.mc_ki[j];
1680                                         }
1681                                 } else {
1682                                         mc->mc_xcursor = NULL;
1683                                 }
1684                                 mc->mc_next = dst->mt_cursors[i];
1685                                 dst->mt_cursors[i] = mc;
1686                         }
1687                 }
1688         }
1689         return MDB_SUCCESS;
1690 }
1691
1692 /** Merge shadow cursors back into parent's */
1693 static void
1694 mdb_cursor_merge(MDB_txn *txn)
1695 {
1696         MDB_dbi i;
1697         for (i=0; i<txn->mt_numdbs; i++) {
1698                 if (txn->mt_cursors[i]) {
1699                         MDB_cursor *mc;
1700                         while ((mc = txn->mt_cursors[i])) {
1701                                 txn->mt_cursors[i] = mc->mc_next;
1702                                 if (mc->mc_flags & C_SHADOW) {
1703                                         MDB_cursor *m2 = mc->mc_orig;
1704                                         unsigned int j;
1705                                         m2->mc_snum = mc->mc_snum;
1706                                         m2->mc_top = mc->mc_top;
1707                                         for (j=0; j<mc->mc_snum; j++) {
1708                                                 m2->mc_pg[j] = mc->mc_pg[j];
1709                                                 m2->mc_ki[j] = mc->mc_ki[j];
1710                                         }
1711                                 }
1712                                 if (mc->mc_flags & C_ALLOCD)
1713                                         free(mc);
1714                         }
1715                 }
1716         }
1717 }
1718
1719 static void
1720 mdb_txn_reset0(MDB_txn *txn);
1721
1722 /** Common code for #mdb_txn_begin() and #mdb_txn_renew().
1723  * @param[in] txn the transaction handle to initialize
1724  * @return 0 on success, non-zero on failure. This can only
1725  * fail for read-only transactions, and then only if the
1726  * reader table is full.
1727  */
1728 static int
1729 mdb_txn_renew0(MDB_txn *txn)
1730 {
1731         MDB_env *env = txn->mt_env;
1732         unsigned int i;
1733         int rc;
1734
1735         /* Setup db info */
1736         txn->mt_numdbs = env->me_numdbs;
1737         txn->mt_dbxs = env->me_dbxs;    /* mostly static anyway */
1738
1739         if (txn->mt_flags & MDB_TXN_RDONLY) {
1740                 if (env->me_flags & MDB_ROFS) {
1741                         i = mdb_env_pick_meta(env);
1742                         txn->mt_txnid = env->me_metas[i]->mm_txnid;
1743                         txn->mt_u.reader = NULL;
1744                 } else {
1745                         MDB_reader *r = pthread_getspecific(env->me_txkey);
1746                         if (!r) {
1747                                 pid_t pid = env->me_pid;
1748                                 pthread_t tid = pthread_self();
1749
1750                                 LOCK_MUTEX_R(env);
1751                                 for (i=0; i<env->me_txns->mti_numreaders; i++)
1752                                         if (env->me_txns->mti_readers[i].mr_pid == 0)
1753                                                 break;
1754                                 if (i == env->me_maxreaders) {
1755                                         UNLOCK_MUTEX_R(env);
1756                                         return MDB_READERS_FULL;
1757                                 }
1758                                 env->me_txns->mti_readers[i].mr_pid = pid;
1759                                 env->me_txns->mti_readers[i].mr_tid = tid;
1760                                 if (i >= env->me_txns->mti_numreaders)
1761                                         env->me_txns->mti_numreaders = i+1;
1762                                 /* Save numreaders for un-mutexed mdb_env_close() */
1763                                 env->me_numreaders = env->me_txns->mti_numreaders;
1764                                 UNLOCK_MUTEX_R(env);
1765                                 r = &env->me_txns->mti_readers[i];
1766                                 if ((rc = pthread_setspecific(env->me_txkey, r)) != 0) {
1767                                         env->me_txns->mti_readers[i].mr_pid = 0;
1768                                         return rc;
1769                                 }
1770                         }
1771                         txn->mt_txnid = r->mr_txnid = env->me_txns->mti_txnid;
1772                         txn->mt_u.reader = r;
1773                 }
1774                 txn->mt_toggle = txn->mt_txnid & 1;
1775                 txn->mt_next_pgno = env->me_metas[txn->mt_toggle]->mm_last_pg+1;
1776         } else {
1777                 LOCK_MUTEX_W(env);
1778
1779                 txn->mt_txnid = env->me_txns->mti_txnid;
1780                 txn->mt_toggle = txn->mt_txnid & 1;
1781                 txn->mt_next_pgno = env->me_metas[txn->mt_toggle]->mm_last_pg+1;
1782                 txn->mt_txnid++;
1783 #if MDB_DEBUG
1784                 if (txn->mt_txnid == mdb_debug_start)
1785                         mdb_debug = 1;
1786 #endif
1787                 txn->mt_u.dirty_list = env->me_dirty_list;
1788                 txn->mt_u.dirty_list[0].mid = 0;
1789                 txn->mt_free_pgs = env->me_free_pgs;
1790                 txn->mt_free_pgs[0] = 0;
1791                 env->me_txn = txn;
1792         }
1793
1794         /* Copy the DB info and flags */
1795         memcpy(txn->mt_dbs, env->me_metas[txn->mt_toggle]->mm_dbs, 2 * sizeof(MDB_db));
1796         for (i=2; i<txn->mt_numdbs; i++)
1797                 txn->mt_dbs[i].md_flags = env->me_dbflags[i];
1798         txn->mt_dbflags[0] = txn->mt_dbflags[1] = 0;
1799         if (txn->mt_numdbs > 2)
1800                 memset(txn->mt_dbflags+2, DB_STALE, txn->mt_numdbs-2);
1801
1802         return MDB_SUCCESS;
1803 }
1804
1805 int
1806 mdb_txn_renew(MDB_txn *txn)
1807 {
1808         int rc;
1809
1810         if (! (txn && txn->mt_flags & MDB_TXN_RDONLY))
1811                 return EINVAL;
1812
1813         if (txn->mt_env->me_flags & MDB_FATAL_ERROR) {
1814                 DPUTS("environment had fatal error, must shutdown!");
1815                 return MDB_PANIC;
1816         }
1817
1818         rc = mdb_txn_renew0(txn);
1819         if (rc == MDB_SUCCESS) {
1820                 DPRINTF("renew txn %zu%c %p on mdbenv %p, root page %zu",
1821                         txn->mt_txnid, (txn->mt_flags & MDB_TXN_RDONLY) ? 'r' : 'w',
1822                         (void *)txn, (void *)txn->mt_env, txn->mt_dbs[MAIN_DBI].md_root);
1823         }
1824         return rc;
1825 }
1826
1827 int
1828 mdb_txn_begin(MDB_env *env, MDB_txn *parent, unsigned int flags, MDB_txn **ret)
1829 {
1830         MDB_txn *txn;
1831         int rc, size;
1832
1833         if (env->me_flags & MDB_FATAL_ERROR) {
1834                 DPUTS("environment had fatal error, must shutdown!");
1835                 return MDB_PANIC;
1836         }
1837         if ((env->me_flags & MDB_RDONLY) && !(flags & MDB_RDONLY))
1838                 return EACCES;
1839         if (parent) {
1840                 /* Nested transactions: Max 1 child, write txns only, no writemap */
1841                 if (parent->mt_child ||
1842                         (flags & MDB_RDONLY) || (parent->mt_flags & MDB_TXN_RDONLY) ||
1843                         (env->me_flags & MDB_WRITEMAP))
1844                 {
1845                         return EINVAL;
1846                 }
1847         }
1848         size = sizeof(MDB_txn) + env->me_maxdbs * (sizeof(MDB_db)+1);
1849         if (!(flags & MDB_RDONLY))
1850                 size += env->me_maxdbs * sizeof(MDB_cursor *);
1851
1852         if ((txn = calloc(1, size)) == NULL) {
1853                 DPRINTF("calloc: %s", strerror(ErrCode()));
1854                 return ENOMEM;
1855         }
1856         txn->mt_dbs = (MDB_db *)(txn+1);
1857         if (flags & MDB_RDONLY) {
1858                 txn->mt_flags |= MDB_TXN_RDONLY;
1859                 txn->mt_dbflags = (unsigned char *)(txn->mt_dbs + env->me_maxdbs);
1860         } else {
1861                 txn->mt_cursors = (MDB_cursor **)(txn->mt_dbs + env->me_maxdbs);
1862                 txn->mt_dbflags = (unsigned char *)(txn->mt_cursors + env->me_maxdbs);
1863         }
1864         txn->mt_env = env;
1865
1866         if (parent) {
1867                 txn->mt_free_pgs = mdb_midl_alloc();
1868                 if (!txn->mt_free_pgs) {
1869                         free(txn);
1870                         return ENOMEM;
1871                 }
1872                 txn->mt_u.dirty_list = malloc(sizeof(MDB_ID2)*MDB_IDL_UM_SIZE);
1873                 if (!txn->mt_u.dirty_list) {
1874                         free(txn->mt_free_pgs);
1875                         free(txn);
1876                         return ENOMEM;
1877                 }
1878                 txn->mt_txnid = parent->mt_txnid;
1879                 txn->mt_toggle = parent->mt_toggle;
1880                 txn->mt_u.dirty_list[0].mid = 0;
1881                 txn->mt_free_pgs[0] = 0;
1882                 txn->mt_next_pgno = parent->mt_next_pgno;
1883                 parent->mt_child = txn;
1884                 txn->mt_parent = parent;
1885                 txn->mt_numdbs = parent->mt_numdbs;
1886                 txn->mt_dbxs = parent->mt_dbxs;
1887                 memcpy(txn->mt_dbs, parent->mt_dbs, txn->mt_numdbs * sizeof(MDB_db));
1888                 memcpy(txn->mt_dbflags, parent->mt_dbflags, txn->mt_numdbs);
1889                 mdb_cursor_shadow(parent, txn);
1890                 rc = 0;
1891         } else {
1892                 rc = mdb_txn_renew0(txn);
1893         }
1894         if (rc)
1895                 free(txn);
1896         else {
1897                 *ret = txn;
1898                 DPRINTF("begin txn %zu%c %p on mdbenv %p, root page %zu",
1899                         txn->mt_txnid, (txn->mt_flags & MDB_TXN_RDONLY) ? 'r' : 'w',
1900                         (void *) txn, (void *) env, txn->mt_dbs[MAIN_DBI].md_root);
1901         }
1902
1903         return rc;
1904 }
1905
1906 /** Common code for #mdb_txn_reset() and #mdb_txn_abort().
1907  * @param[in] txn the transaction handle to reset
1908  */
1909 static void
1910 mdb_txn_reset0(MDB_txn *txn)
1911 {
1912         MDB_env *env = txn->mt_env;
1913
1914         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY)) {
1915                 if (!(env->me_flags & MDB_ROFS))
1916                         txn->mt_u.reader->mr_txnid = (txnid_t)-1;
1917         } else {
1918                 MDB_oldpages *mop;
1919                 MDB_page *dp;
1920                 unsigned int i;
1921
1922                 /* close(free) all cursors */
1923                 for (i=0; i<txn->mt_numdbs; i++) {
1924                         if (txn->mt_cursors[i]) {
1925                                 MDB_cursor *mc;
1926                                 while ((mc = txn->mt_cursors[i])) {
1927                                         txn->mt_cursors[i] = mc->mc_next;
1928                                         if (mc->mc_flags & C_ALLOCD)
1929                                                 free(mc);
1930                                 }
1931                         }
1932                 }
1933
1934                 if (!(env->me_flags & MDB_WRITEMAP)) {
1935                         /* return all dirty pages to dpage list */
1936                         for (i=1; i<=txn->mt_u.dirty_list[0].mid; i++) {
1937                                 dp = txn->mt_u.dirty_list[i].mptr;
1938                                 if (!IS_OVERFLOW(dp) || dp->mp_pages == 1) {
1939                                         dp->mp_next = txn->mt_env->me_dpages;
1940                                         VGMEMP_FREE(txn->mt_env, dp);
1941                                         txn->mt_env->me_dpages = dp;
1942                                 } else {
1943                                         /* large pages just get freed directly */
1944                                         VGMEMP_FREE(txn->mt_env, dp);
1945                                         free(dp);
1946                                 }
1947                         }
1948                 }
1949
1950                 if (txn->mt_parent) {
1951                         txn->mt_parent->mt_child = NULL;
1952                         mdb_midl_free(txn->mt_free_pgs);
1953                         free(txn->mt_u.dirty_list);
1954                         return;
1955                 } else {
1956                         if (mdb_midl_shrink(&txn->mt_free_pgs))
1957                                 env->me_free_pgs = txn->mt_free_pgs;
1958                 }
1959
1960                 while ((mop = txn->mt_env->me_pghead)) {
1961                         txn->mt_env->me_pghead = mop->mo_next;
1962                         free(mop);
1963                 }
1964                 txn->mt_env->me_pgfirst = 0;
1965                 txn->mt_env->me_pglast = 0;
1966
1967                 env->me_txn = NULL;
1968                 /* The writer mutex was locked in mdb_txn_begin. */
1969                 UNLOCK_MUTEX_W(env);
1970         }
1971 }
1972
1973 void
1974 mdb_txn_reset(MDB_txn *txn)
1975 {
1976         if (txn == NULL)
1977                 return;
1978
1979         DPRINTF("reset txn %zu%c %p on mdbenv %p, root page %zu",
1980                 txn->mt_txnid, (txn->mt_flags & MDB_TXN_RDONLY) ? 'r' : 'w',
1981                 (void *) txn, (void *)txn->mt_env, txn->mt_dbs[MAIN_DBI].md_root);
1982
1983         mdb_txn_reset0(txn);
1984 }
1985
1986 void
1987 mdb_txn_abort(MDB_txn *txn)
1988 {
1989         if (txn == NULL)
1990                 return;
1991
1992         DPRINTF("abort txn %zu%c %p on mdbenv %p, root page %zu",
1993                 txn->mt_txnid, (txn->mt_flags & MDB_TXN_RDONLY) ? 'r' : 'w',
1994                 (void *)txn, (void *)txn->mt_env, txn->mt_dbs[MAIN_DBI].md_root);
1995
1996         if (txn->mt_child)
1997                 mdb_txn_abort(txn->mt_child);
1998
1999         mdb_txn_reset0(txn);
2000         free(txn);
2001 }
2002
2003 int
2004 mdb_txn_commit(MDB_txn *txn)
2005 {
2006         int              n, done;
2007         unsigned int i;
2008         ssize_t          rc;
2009         off_t            size;
2010         MDB_page        *dp;
2011         MDB_env *env;
2012         pgno_t  next, freecnt;
2013         MDB_cursor mc;
2014
2015         assert(txn != NULL);
2016         assert(txn->mt_env != NULL);
2017
2018         if (txn->mt_child) {
2019                 mdb_txn_commit(txn->mt_child);
2020                 txn->mt_child = NULL;
2021         }
2022
2023         env = txn->mt_env;
2024
2025         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY)) {
2026                 if (txn->mt_numdbs > env->me_numdbs) {
2027                         /* update the DB flags */
2028                         MDB_dbi i;
2029                         for (i = env->me_numdbs; i<txn->mt_numdbs; i++)
2030                                 env->me_dbflags[i] = txn->mt_dbs[i].md_flags;
2031                         env->me_numdbs = i;
2032                 }
2033                 mdb_txn_abort(txn);
2034                 return MDB_SUCCESS;
2035         }
2036
2037         if (F_ISSET(txn->mt_flags, MDB_TXN_ERROR)) {
2038                 DPUTS("error flag is set, can't commit");
2039                 if (txn->mt_parent)
2040                         txn->mt_parent->mt_flags |= MDB_TXN_ERROR;
2041                 mdb_txn_abort(txn);
2042                 return EINVAL;
2043         }
2044
2045         if (txn->mt_parent) {
2046                 MDB_db *ip, *jp;
2047                 MDB_dbi i;
2048                 unsigned x, y;
2049                 MDB_ID2L dst, src;
2050
2051                 /* Merge (and close) our cursors with parent's */
2052                 mdb_cursor_merge(txn);
2053
2054                 /* Update parent's DB table */
2055                 ip = &txn->mt_parent->mt_dbs[2];
2056                 jp = &txn->mt_dbs[2];
2057                 for (i = 2; i < txn->mt_numdbs; i++) {
2058                         if (ip->md_root != jp->md_root)
2059                                 *ip = *jp;
2060                         ip++; jp++;
2061                 }
2062                 txn->mt_parent->mt_numdbs = txn->mt_numdbs;
2063
2064                 /* Append our free list to parent's */
2065                 mdb_midl_append_list(&txn->mt_parent->mt_free_pgs,
2066                         txn->mt_free_pgs);
2067                 mdb_midl_free(txn->mt_free_pgs);
2068
2069                 /* Merge our dirty list with parent's */
2070                 dst = txn->mt_parent->mt_u.dirty_list;
2071                 src = txn->mt_u.dirty_list;
2072                 x = mdb_mid2l_search(dst, src[1].mid);
2073                 for (y=1; y<=src[0].mid; y++) {
2074                         while (x <= dst[0].mid && dst[x].mid != src[y].mid) x++;
2075                         if (x > dst[0].mid)
2076                                 break;
2077                         free(dst[x].mptr);
2078                         dst[x].mptr = src[y].mptr;
2079                 }
2080                 x = dst[0].mid;
2081                 for (; y<=src[0].mid; y++) {
2082                         if (++x >= MDB_IDL_UM_MAX) {
2083                                 mdb_txn_abort(txn);
2084                                 return MDB_TXN_FULL;
2085                         }
2086                         dst[x] = src[y];
2087                 }
2088                 dst[0].mid = x;
2089                 free(txn->mt_u.dirty_list);
2090                 txn->mt_parent->mt_child = NULL;
2091                 free(txn);
2092                 return MDB_SUCCESS;
2093         }
2094
2095         if (txn != env->me_txn) {
2096                 DPUTS("attempt to commit unknown transaction");
2097                 mdb_txn_abort(txn);
2098                 return EINVAL;
2099         }
2100
2101         if (!txn->mt_u.dirty_list[0].mid && !(txn->mt_flags & MDB_TXN_DIRTY))
2102                 goto done;
2103
2104         DPRINTF("committing txn %zu %p on mdbenv %p, root page %zu",
2105             txn->mt_txnid, (void *)txn, (void *)env, txn->mt_dbs[MAIN_DBI].md_root);
2106
2107         /* Update DB root pointers. Their pages have already been
2108          * touched so this is all in-place and cannot fail.
2109          */
2110         if (txn->mt_numdbs > 2) {
2111                 MDB_dbi i;
2112                 MDB_val data;
2113                 data.mv_size = sizeof(MDB_db);
2114
2115                 mdb_cursor_init(&mc, txn, MAIN_DBI, NULL);
2116                 for (i = 2; i < txn->mt_numdbs; i++) {
2117                         if (txn->mt_dbflags[i] & DB_DIRTY) {
2118                                 data.mv_data = &txn->mt_dbs[i];
2119                                 mdb_cursor_put(&mc, &txn->mt_dbxs[i].md_name, &data, 0);
2120                         }
2121                 }
2122         }
2123
2124         mdb_cursor_init(&mc, txn, FREE_DBI, NULL);
2125
2126         /* should only be one record now */
2127         if (env->me_pghead) {
2128                 /* make sure first page of freeDB is touched and on freelist */
2129                 rc = mdb_page_search(&mc, NULL, MDB_PS_MODIFY);
2130                 if (rc && rc != MDB_NOTFOUND) {
2131 fail:
2132                         mdb_txn_abort(txn);
2133                         return rc;
2134                 }
2135         }
2136
2137         /* Delete IDLs we used from the free list */
2138         if (env->me_pgfirst) {
2139                 txnid_t cur;
2140                 MDB_val key;
2141                 int exact = 0;
2142
2143                 key.mv_size = sizeof(cur);
2144                 for (cur = env->me_pgfirst; cur <= env->me_pglast; cur++) {
2145                         key.mv_data = &cur;
2146
2147                         mdb_cursor_set(&mc, &key, NULL, MDB_SET, &exact);
2148                         rc = mdb_cursor_del(&mc, 0);
2149                         if (rc)
2150                                 goto fail;
2151                 }
2152                 env->me_pgfirst = 0;
2153                 env->me_pglast = 0;
2154         }
2155
2156         /* save to free list */
2157 free2:
2158         freecnt = txn->mt_free_pgs[0];
2159         if (!MDB_IDL_IS_ZERO(txn->mt_free_pgs)) {
2160                 MDB_val key, data;
2161
2162                 /* make sure last page of freeDB is touched and on freelist */
2163                 key.mv_size = MAXKEYSIZE+1;
2164                 key.mv_data = NULL;
2165                 rc = mdb_page_search(&mc, &key, MDB_PS_MODIFY);
2166                 if (rc && rc != MDB_NOTFOUND)
2167                         goto fail;
2168
2169 #if MDB_DEBUG > 1
2170                 {
2171                         unsigned int i;
2172                         MDB_IDL idl = txn->mt_free_pgs;
2173                         mdb_midl_sort(txn->mt_free_pgs);
2174                         DPRINTF("IDL write txn %zu root %zu num %zu",
2175                                 txn->mt_txnid, txn->mt_dbs[FREE_DBI].md_root, idl[0]);
2176                         for (i=1; i<=idl[0]; i++) {
2177                                 DPRINTF("IDL %zu", idl[i]);
2178                         }
2179                 }
2180 #endif
2181                 /* write to last page of freeDB */
2182                 key.mv_size = sizeof(pgno_t);
2183                 key.mv_data = &txn->mt_txnid;
2184                 data.mv_data = txn->mt_free_pgs;
2185                 /* The free list can still grow during this call,
2186                  * despite the pre-emptive touches above. So check
2187                  * and make sure the entire thing got written.
2188                  */
2189                 do {
2190                         freecnt = txn->mt_free_pgs[0];
2191                         data.mv_size = MDB_IDL_SIZEOF(txn->mt_free_pgs);
2192                         mdb_midl_sort(txn->mt_free_pgs);
2193                         rc = mdb_cursor_put(&mc, &key, &data, 0);
2194                         if (rc)
2195                                 goto fail;
2196                 } while (freecnt != txn->mt_free_pgs[0]);
2197         }
2198         /* should only be one record now */
2199 again:
2200         if (env->me_pghead) {
2201                 MDB_val key, data;
2202                 MDB_oldpages *mop;
2203                 pgno_t orig;
2204                 txnid_t id;
2205
2206                 mop = env->me_pghead;
2207                 id = mop->mo_txnid;
2208                 key.mv_size = sizeof(id);
2209                 key.mv_data = &id;
2210                 data.mv_size = MDB_IDL_SIZEOF(mop->mo_pages);
2211                 data.mv_data = mop->mo_pages;
2212                 orig = mop->mo_pages[0];
2213                 /* These steps may grow the freelist again
2214                  * due to freed overflow pages...
2215                  */
2216                 rc = mdb_cursor_put(&mc, &key, &data, 0);
2217                 if (rc)
2218                         goto fail;
2219                 if (mop == env->me_pghead && env->me_pghead->mo_txnid == id) {
2220                         /* could have been used again here */
2221                         if (mop->mo_pages[0] != orig) {
2222                                 data.mv_size = MDB_IDL_SIZEOF(mop->mo_pages);
2223                                 data.mv_data = mop->mo_pages;
2224                                 id = mop->mo_txnid;
2225                                 rc = mdb_cursor_put(&mc, &key, &data, 0);
2226                                 if (rc)
2227                                         goto fail;
2228                         }
2229                 } else {
2230                         /* was completely used up */
2231                         rc = mdb_cursor_del(&mc, 0);
2232                         if (rc)
2233                                 goto fail;
2234                         if (env->me_pghead)
2235                                 goto again;
2236                 }
2237                 env->me_pgfirst = 0;
2238                 env->me_pglast = 0;
2239         }
2240
2241         /* Check for growth of freelist again */
2242         if (freecnt != txn->mt_free_pgs[0])
2243                 goto free2;
2244
2245         if (env->me_pghead) {
2246                 free(env->me_pghead);
2247                 env->me_pghead = NULL;
2248         }
2249
2250         while (env->me_pgfree) {
2251                 MDB_oldpages *mop = env->me_pgfree;
2252                 env->me_pgfree = mop->mo_next;
2253                 free(mop);
2254         }
2255
2256         if (!MDB_IDL_IS_ZERO(txn->mt_free_pgs)) {
2257                 if (mdb_midl_shrink(&txn->mt_free_pgs))
2258                         env->me_free_pgs = txn->mt_free_pgs;
2259         }
2260
2261 #if MDB_DEBUG > 2
2262         mdb_audit(txn);
2263 #endif
2264
2265         if (env->me_flags & MDB_WRITEMAP) {
2266                 for (i=1; i<=txn->mt_u.dirty_list[0].mid; i++) {
2267                         dp = txn->mt_u.dirty_list[i].mptr;
2268                         /* clear dirty flag */
2269                         dp->mp_flags &= ~P_DIRTY;
2270                         txn->mt_u.dirty_list[i].mid = 0;
2271                 }
2272                 txn->mt_u.dirty_list[0].mid = 0;
2273                 goto sync;
2274         }
2275
2276         /* Commit up to MDB_COMMIT_PAGES dirty pages to disk until done.
2277          */
2278         next = 0;
2279         i = 1;
2280         do {
2281 #ifdef _WIN32
2282                 /* Windows actually supports scatter/gather I/O, but only on
2283                  * unbuffered file handles. Since we're relying on the OS page
2284                  * cache for all our data, that's self-defeating. So we just
2285                  * write pages one at a time. We use the ov structure to set
2286                  * the write offset, to at least save the overhead of a Seek
2287                  * system call.
2288                  */
2289                 OVERLAPPED ov;
2290                 memset(&ov, 0, sizeof(ov));
2291                 for (; i<=txn->mt_u.dirty_list[0].mid; i++) {
2292                         size_t wsize;
2293                         dp = txn->mt_u.dirty_list[i].mptr;
2294                         DPRINTF("committing page %zu", dp->mp_pgno);
2295                         size = dp->mp_pgno * env->me_psize;
2296                         ov.Offset = size & 0xffffffff;
2297                         ov.OffsetHigh = size >> 16;
2298                         ov.OffsetHigh >>= 16;
2299                         /* clear dirty flag */
2300                         dp->mp_flags &= ~P_DIRTY;
2301                         wsize = env->me_psize;
2302                         if (IS_OVERFLOW(dp)) wsize *= dp->mp_pages;
2303                         rc = WriteFile(env->me_fd, dp, wsize, NULL, &ov);
2304                         if (!rc) {
2305                                 n = ErrCode();
2306                                 DPRINTF("WriteFile: %d", n);
2307                                 mdb_txn_abort(txn);
2308                                 return n;
2309                         }
2310                 }
2311                 done = 1;
2312 #else
2313                 struct iovec     iov[MDB_COMMIT_PAGES];
2314                 n = 0;
2315                 done = 1;
2316                 size = 0;
2317                 for (; i<=txn->mt_u.dirty_list[0].mid; i++) {
2318                         dp = txn->mt_u.dirty_list[i].mptr;
2319                         if (dp->mp_pgno != next) {
2320                                 if (n) {
2321                                         rc = writev(env->me_fd, iov, n);
2322                                         if (rc != size) {
2323                                                 n = ErrCode();
2324                                                 if (rc > 0)
2325                                                         DPUTS("short write, filesystem full?");
2326                                                 else
2327                                                         DPRINTF("writev: %s", strerror(n));
2328                                                 mdb_txn_abort(txn);
2329                                                 return n;
2330                                         }
2331                                         n = 0;
2332                                         size = 0;
2333                                 }
2334                                 lseek(env->me_fd, dp->mp_pgno * env->me_psize, SEEK_SET);
2335                                 next = dp->mp_pgno;
2336                         }
2337                         DPRINTF("committing page %zu", dp->mp_pgno);
2338                         iov[n].iov_len = env->me_psize;
2339                         if (IS_OVERFLOW(dp)) iov[n].iov_len *= dp->mp_pages;
2340                         iov[n].iov_base = (char *)dp;
2341                         size += iov[n].iov_len;
2342                         next = dp->mp_pgno + (IS_OVERFLOW(dp) ? dp->mp_pages : 1);
2343                         /* clear dirty flag */
2344                         dp->mp_flags &= ~P_DIRTY;
2345                         if (++n >= MDB_COMMIT_PAGES) {
2346                                 done = 0;
2347                                 i++;
2348                                 break;
2349                         }
2350                 }
2351
2352                 if (n == 0)
2353                         break;
2354
2355                 rc = writev(env->me_fd, iov, n);
2356                 if (rc != size) {
2357                         n = ErrCode();
2358                         if (rc > 0)
2359                                 DPUTS("short write, filesystem full?");
2360                         else
2361                                 DPRINTF("writev: %s", strerror(n));
2362                         mdb_txn_abort(txn);
2363                         return n;
2364                 }
2365 #endif
2366         } while (!done);
2367
2368         /* Drop the dirty pages.
2369          */
2370         for (i=1; i<=txn->mt_u.dirty_list[0].mid; i++) {
2371                 dp = txn->mt_u.dirty_list[i].mptr;
2372                 if (!IS_OVERFLOW(dp) || dp->mp_pages == 1) {
2373                         dp->mp_next = txn->mt_env->me_dpages;
2374                         VGMEMP_FREE(txn->mt_env, dp);
2375                         txn->mt_env->me_dpages = dp;
2376                 } else {
2377                         VGMEMP_FREE(txn->mt_env, dp);
2378                         free(dp);
2379                 }
2380                 txn->mt_u.dirty_list[i].mid = 0;
2381         }
2382         txn->mt_u.dirty_list[0].mid = 0;
2383
2384 sync:
2385         if ((n = mdb_env_sync(env, 0)) != 0 ||
2386             (n = mdb_env_write_meta(txn)) != MDB_SUCCESS) {
2387                 mdb_txn_abort(txn);
2388                 return n;
2389         }
2390
2391 done:
2392         env->me_txn = NULL;
2393         if (txn->mt_numdbs > env->me_numdbs) {
2394                 /* update the DB flags */
2395                 MDB_dbi i;
2396                 for (i = env->me_numdbs; i<txn->mt_numdbs; i++)
2397                         env->me_dbflags[i] = txn->mt_dbs[i].md_flags;
2398                 env->me_numdbs = i;
2399         }
2400
2401         UNLOCK_MUTEX_W(env);
2402         free(txn);
2403
2404         return MDB_SUCCESS;
2405 }
2406
2407 /** Read the environment parameters of a DB environment before
2408  * mapping it into memory.
2409  * @param[in] env the environment handle
2410  * @param[out] meta address of where to store the meta information
2411  * @return 0 on success, non-zero on failure.
2412  */
2413 static int
2414 mdb_env_read_header(MDB_env *env, MDB_meta *meta)
2415 {
2416         MDB_pagebuf     pbuf;
2417         MDB_page        *p;
2418         MDB_meta        *m;
2419         int              i, rc, err;
2420
2421         /* We don't know the page size yet, so use a minimum value.
2422          * Read both meta pages so we can use the latest one.
2423          */
2424
2425         for (i=0; i<2; i++) {
2426 #ifdef _WIN32
2427                 if (!ReadFile(env->me_fd, &pbuf, MDB_PAGESIZE, (DWORD *)&rc, NULL) || rc == 0)
2428 #else
2429                 if ((rc = read(env->me_fd, &pbuf, MDB_PAGESIZE)) == 0)
2430 #endif
2431                 {
2432                         return ENOENT;
2433                 }
2434                 else if (rc != MDB_PAGESIZE) {
2435                         err = ErrCode();
2436                         if (rc > 0)
2437                                 err = MDB_INVALID;
2438                         DPRINTF("read: %s", strerror(err));
2439                         return err;
2440                 }
2441
2442                 p = (MDB_page *)&pbuf;
2443
2444                 if (!F_ISSET(p->mp_flags, P_META)) {
2445                         DPRINTF("page %zu not a meta page", p->mp_pgno);
2446                         return MDB_INVALID;
2447                 }
2448
2449                 m = METADATA(p);
2450                 if (m->mm_magic != MDB_MAGIC) {
2451                         DPUTS("meta has invalid magic");
2452                         return MDB_INVALID;
2453                 }
2454
2455                 if (m->mm_version != MDB_VERSION) {
2456                         DPRINTF("database is version %u, expected version %u",
2457                                 m->mm_version, MDB_VERSION);
2458                         return MDB_VERSION_MISMATCH;
2459                 }
2460
2461                 if (i) {
2462                         if (m->mm_txnid > meta->mm_txnid)
2463                                 memcpy(meta, m, sizeof(*m));
2464                 } else {
2465                         memcpy(meta, m, sizeof(*m));
2466 #ifdef _WIN32
2467                         if (SetFilePointer(env->me_fd, meta->mm_psize, NULL, FILE_BEGIN) != meta->mm_psize)
2468 #else
2469                         if (lseek(env->me_fd, meta->mm_psize, SEEK_SET) != meta->mm_psize)
2470 #endif
2471                                 return ErrCode();
2472                 }
2473         }
2474         return 0;
2475 }
2476
2477 /** Write the environment parameters of a freshly created DB environment.
2478  * @param[in] env the environment handle
2479  * @param[out] meta address of where to store the meta information
2480  * @return 0 on success, non-zero on failure.
2481  */
2482 static int
2483 mdb_env_init_meta(MDB_env *env, MDB_meta *meta)
2484 {
2485         MDB_page *p, *q;
2486         MDB_meta *m;
2487         int rc;
2488         unsigned int     psize;
2489
2490         DPUTS("writing new meta page");
2491
2492         GET_PAGESIZE(psize);
2493
2494         meta->mm_magic = MDB_MAGIC;
2495         meta->mm_version = MDB_VERSION;
2496         meta->mm_psize = psize;
2497         meta->mm_last_pg = 1;
2498         meta->mm_flags = env->me_flags & 0xffff;
2499         meta->mm_flags |= MDB_INTEGERKEY;
2500         meta->mm_dbs[0].md_root = P_INVALID;
2501         meta->mm_dbs[1].md_root = P_INVALID;
2502
2503         p = calloc(2, psize);
2504         p->mp_pgno = 0;
2505         p->mp_flags = P_META;
2506
2507         m = METADATA(p);
2508         memcpy(m, meta, sizeof(*meta));
2509
2510         q = (MDB_page *)((char *)p + psize);
2511
2512         q->mp_pgno = 1;
2513         q->mp_flags = P_META;
2514
2515         m = METADATA(q);
2516         memcpy(m, meta, sizeof(*meta));
2517
2518 #ifdef _WIN32
2519         {
2520                 DWORD len;
2521                 SetFilePointer(env->me_fd, 0, NULL, FILE_BEGIN);
2522                 rc = WriteFile(env->me_fd, p, psize * 2, &len, NULL);
2523                 rc = (len == psize * 2) ? MDB_SUCCESS : ErrCode();
2524         }
2525 #else
2526         lseek(env->me_fd, 0, SEEK_SET);
2527         rc = write(env->me_fd, p, psize * 2);
2528         rc = (rc == (int)psize * 2) ? MDB_SUCCESS : ErrCode();
2529 #endif
2530         free(p);
2531         return rc;
2532 }
2533
2534 /** Update the environment info to commit a transaction.
2535  * @param[in] txn the transaction that's being committed
2536  * @return 0 on success, non-zero on failure.
2537  */
2538 static int
2539 mdb_env_write_meta(MDB_txn *txn)
2540 {
2541         MDB_env *env;
2542         MDB_meta        meta, metab, *mp;
2543         off_t off;
2544         int rc, len, toggle;
2545         char *ptr;
2546         HANDLE mfd;
2547 #ifdef _WIN32
2548         OVERLAPPED ov;
2549 #endif
2550
2551         assert(txn != NULL);
2552         assert(txn->mt_env != NULL);
2553
2554         toggle = !txn->mt_toggle;
2555         DPRINTF("writing meta page %d for root page %zu",
2556                 toggle, txn->mt_dbs[MAIN_DBI].md_root);
2557
2558         env = txn->mt_env;
2559         mp = env->me_metas[toggle];
2560
2561         if (env->me_flags & MDB_WRITEMAP) {
2562                 /* Persist any increases of mapsize config */
2563                 if (env->me_mapsize > mp->mm_mapsize)
2564                         mp->mm_mapsize = env->me_mapsize;
2565                 mp->mm_dbs[0] = txn->mt_dbs[0];
2566                 mp->mm_dbs[1] = txn->mt_dbs[1];
2567                 mp->mm_last_pg = txn->mt_next_pgno - 1;
2568                 mp->mm_txnid = txn->mt_txnid;
2569                 if (!(env->me_flags & (MDB_NOMETASYNC|MDB_NOSYNC))) {
2570                         rc = (env->me_flags & MDB_MAPASYNC) ? MS_ASYNC : MS_SYNC;
2571                         ptr = env->me_map;
2572                         if (toggle)
2573                                 ptr += env->me_psize;
2574                         if (MDB_MSYNC(ptr, env->me_psize, rc)) {
2575                                 rc = ErrCode();
2576                                 goto fail;
2577                         }
2578                 }
2579                 goto done;
2580         }
2581         metab.mm_txnid = env->me_metas[toggle]->mm_txnid;
2582         metab.mm_last_pg = env->me_metas[toggle]->mm_last_pg;
2583
2584         ptr = (char *)&meta;
2585         if (env->me_mapsize > mp->mm_mapsize) {
2586                 /* Persist any increases of mapsize config */
2587                 meta.mm_mapsize = env->me_mapsize;
2588                 off = offsetof(MDB_meta, mm_mapsize);
2589         } else {
2590                 off = offsetof(MDB_meta, mm_dbs[0].md_depth);
2591         }
2592         len = sizeof(MDB_meta) - off;
2593
2594         ptr += off;
2595         meta.mm_dbs[0] = txn->mt_dbs[0];
2596         meta.mm_dbs[1] = txn->mt_dbs[1];
2597         meta.mm_last_pg = txn->mt_next_pgno - 1;
2598         meta.mm_txnid = txn->mt_txnid;
2599
2600         if (toggle)
2601                 off += env->me_psize;
2602         off += PAGEHDRSZ;
2603
2604         /* Write to the SYNC fd */
2605         mfd = env->me_flags & (MDB_NOSYNC|MDB_NOMETASYNC) ?
2606                 env->me_fd : env->me_mfd;
2607 #ifdef _WIN32
2608         {
2609                 memset(&ov, 0, sizeof(ov));
2610                 ov.Offset = off;
2611                 WriteFile(mfd, ptr, len, (DWORD *)&rc, &ov);
2612         }
2613 #else
2614         rc = pwrite(mfd, ptr, len, off);
2615 #endif
2616         if (rc != len) {
2617                 int r2;
2618                 rc = ErrCode();
2619                 DPUTS("write failed, disk error?");
2620                 /* On a failure, the pagecache still contains the new data.
2621                  * Write some old data back, to prevent it from being used.
2622                  * Use the non-SYNC fd; we know it will fail anyway.
2623                  */
2624                 meta.mm_last_pg = metab.mm_last_pg;
2625                 meta.mm_txnid = metab.mm_txnid;
2626 #ifdef _WIN32
2627                 WriteFile(env->me_fd, ptr, len, NULL, &ov);
2628 #else
2629                 r2 = pwrite(env->me_fd, ptr, len, off);
2630 #endif
2631 fail:
2632                 env->me_flags |= MDB_FATAL_ERROR;
2633                 return rc;
2634         }
2635 done:
2636         /* Memory ordering issues are irrelevant; since the entire writer
2637          * is wrapped by wmutex, all of these changes will become visible
2638          * after the wmutex is unlocked. Since the DB is multi-version,
2639          * readers will get consistent data regardless of how fresh or
2640          * how stale their view of these values is.
2641          */
2642         txn->mt_env->me_txns->mti_txnid = txn->mt_txnid;
2643
2644         return MDB_SUCCESS;
2645 }
2646
2647 /** Check both meta pages to see which one is newer.
2648  * @param[in] env the environment handle
2649  * @return meta toggle (0 or 1).
2650  */
2651 static int
2652 mdb_env_pick_meta(const MDB_env *env)
2653 {
2654         return (env->me_metas[0]->mm_txnid < env->me_metas[1]->mm_txnid);
2655 }
2656
2657 int
2658 mdb_env_create(MDB_env **env)
2659 {
2660         MDB_env *e;
2661
2662         e = calloc(1, sizeof(MDB_env));
2663         if (!e)
2664                 return ENOMEM;
2665
2666         e->me_free_pgs = mdb_midl_alloc();
2667         if (!e->me_free_pgs) {
2668                 free(e);
2669                 return ENOMEM;
2670         }
2671         e->me_maxreaders = DEFAULT_READERS;
2672         e->me_maxdbs = 2;
2673         e->me_fd = INVALID_HANDLE_VALUE;
2674         e->me_lfd = INVALID_HANDLE_VALUE;
2675         e->me_mfd = INVALID_HANDLE_VALUE;
2676 #ifdef MDB_USE_POSIX_SEM
2677         e->me_rmutex = SEM_FAILED;
2678         e->me_wmutex = SEM_FAILED;
2679 #endif
2680         e->me_pid = getpid();
2681         VGMEMP_CREATE(e,0,0);
2682         *env = e;
2683         return MDB_SUCCESS;
2684 }
2685
2686 int
2687 mdb_env_set_mapsize(MDB_env *env, size_t size)
2688 {
2689         if (env->me_map)
2690                 return EINVAL;
2691         env->me_mapsize = size;
2692         if (env->me_psize)
2693                 env->me_maxpg = env->me_mapsize / env->me_psize;
2694         return MDB_SUCCESS;
2695 }
2696
2697 int
2698 mdb_env_set_maxdbs(MDB_env *env, MDB_dbi dbs)
2699 {
2700         if (env->me_map)
2701                 return EINVAL;
2702         env->me_maxdbs = dbs + 2; /* Named databases + main and free DB */
2703         return MDB_SUCCESS;
2704 }
2705
2706 int
2707 mdb_env_set_maxreaders(MDB_env *env, unsigned int readers)
2708 {
2709         if (env->me_map || readers < 1)
2710                 return EINVAL;
2711         env->me_maxreaders = readers;
2712         return MDB_SUCCESS;
2713 }
2714
2715 int
2716 mdb_env_get_maxreaders(MDB_env *env, unsigned int *readers)
2717 {
2718         if (!env || !readers)
2719                 return EINVAL;
2720         *readers = env->me_maxreaders;
2721         return MDB_SUCCESS;
2722 }
2723
2724 /** Further setup required for opening an MDB environment
2725  */
2726 static int
2727 mdb_env_open2(MDB_env *env)
2728 {
2729         unsigned int flags = env->me_flags;
2730         int i, newenv = 0, prot;
2731         MDB_meta meta;
2732         MDB_page *p;
2733
2734         memset(&meta, 0, sizeof(meta));
2735
2736         if ((i = mdb_env_read_header(env, &meta)) != 0) {
2737                 if (i != ENOENT)
2738                         return i;
2739                 DPUTS("new mdbenv");
2740                 newenv = 1;
2741         }
2742
2743         /* Was a mapsize configured? */
2744         if (!env->me_mapsize) {
2745                 /* If this is a new environment, take the default,
2746                  * else use the size recorded in the existing env.
2747                  */
2748                 env->me_mapsize = newenv ? DEFAULT_MAPSIZE : meta.mm_mapsize;
2749         } else if (env->me_mapsize < meta.mm_mapsize) {
2750                 /* If the configured size is smaller, make sure it's
2751                  * still big enough. Silently round up to minimum if not.
2752                  */
2753                 size_t minsize = (meta.mm_last_pg + 1) * meta.mm_psize;
2754                 if (env->me_mapsize < minsize)
2755                         env->me_mapsize = minsize;
2756         }
2757
2758 #ifdef _WIN32
2759         {
2760                 HANDLE mh;
2761                 LONG sizelo, sizehi;
2762                 sizelo = env->me_mapsize & 0xffffffff;
2763                 sizehi = env->me_mapsize >> 16;         /* pointless on WIN32, only needed on W64 */
2764                 sizehi >>= 16;
2765                 /* Windows won't create mappings for zero length files.
2766                  * Just allocate the maxsize right now.
2767                  */
2768                 if (newenv) {
2769                         SetFilePointer(env->me_fd, sizelo, sizehi ? &sizehi : NULL, 0);
2770                         if (!SetEndOfFile(env->me_fd))
2771                                 return ErrCode();
2772                         SetFilePointer(env->me_fd, 0, NULL, 0);
2773                 }
2774                 mh = CreateFileMapping(env->me_fd, NULL, flags & MDB_WRITEMAP ?
2775                         PAGE_READWRITE : PAGE_READONLY,
2776                         sizehi, sizelo, NULL);
2777                 if (!mh)
2778                         return ErrCode();
2779                 env->me_map = MapViewOfFileEx(mh, flags & MDB_WRITEMAP ?
2780                         FILE_MAP_WRITE : FILE_MAP_READ,
2781                         0, 0, env->me_mapsize, meta.mm_address);
2782                 CloseHandle(mh);
2783                 if (!env->me_map)
2784                         return ErrCode();
2785         }
2786 #else
2787         i = MAP_SHARED;
2788         prot = PROT_READ;
2789         if (flags & MDB_WRITEMAP) {
2790                 prot |= PROT_WRITE;
2791                 if (ftruncate(env->me_fd, env->me_mapsize) < 0)
2792                         return ErrCode();
2793         }
2794         env->me_map = mmap(meta.mm_address, env->me_mapsize, prot, i,
2795                 env->me_fd, 0);
2796         if (env->me_map == MAP_FAILED) {
2797                 env->me_map = NULL;
2798                 return ErrCode();
2799         }
2800 #endif
2801
2802         if (newenv) {
2803                 if (flags & MDB_FIXEDMAP)
2804                         meta.mm_address = env->me_map;
2805                 i = mdb_env_init_meta(env, &meta);
2806                 if (i != MDB_SUCCESS) {
2807                         return i;
2808                 }
2809         } else if (meta.mm_address && env->me_map != meta.mm_address) {
2810                 /* Can happen because the address argument to mmap() is just a
2811                  * hint.  mmap() can pick another, e.g. if the range is in use.
2812                  * The MAP_FIXED flag would prevent that, but then mmap could
2813                  * instead unmap existing pages to make room for the new map.
2814                  */
2815                 return EBUSY;   /* TODO: Make a new MDB_* error code? */
2816         }
2817         env->me_psize = meta.mm_psize;
2818
2819         env->me_maxpg = env->me_mapsize / env->me_psize;
2820
2821         p = (MDB_page *)env->me_map;
2822         env->me_metas[0] = METADATA(p);
2823         env->me_metas[1] = (MDB_meta *)((char *)env->me_metas[0] + meta.mm_psize);
2824
2825 #if MDB_DEBUG
2826         {
2827                 int toggle = mdb_env_pick_meta(env);
2828                 MDB_db *db = &env->me_metas[toggle]->mm_dbs[MAIN_DBI];
2829
2830                 DPRINTF("opened database version %u, pagesize %u",
2831                         env->me_metas[0]->mm_version, env->me_psize);
2832                 DPRINTF("using meta page %d",  toggle);
2833                 DPRINTF("depth: %u",           db->md_depth);
2834                 DPRINTF("entries: %zu",        db->md_entries);
2835                 DPRINTF("branch pages: %zu",   db->md_branch_pages);
2836                 DPRINTF("leaf pages: %zu",     db->md_leaf_pages);
2837                 DPRINTF("overflow pages: %zu", db->md_overflow_pages);
2838                 DPRINTF("root: %zu",           db->md_root);
2839         }
2840 #endif
2841
2842         return MDB_SUCCESS;
2843 }
2844
2845
2846 /** Release a reader thread's slot in the reader lock table.
2847  *      This function is called automatically when a thread exits.
2848  * @param[in] ptr This points to the slot in the reader lock table.
2849  */
2850 static void
2851 mdb_env_reader_dest(void *ptr)
2852 {
2853         MDB_reader *reader = ptr;
2854
2855         reader->mr_pid = 0;
2856 }
2857
2858 #ifdef _WIN32
2859 /** Junk for arranging thread-specific callbacks on Windows. This is
2860  *      necessarily platform and compiler-specific. Windows supports up
2861  *      to 1088 keys. Let's assume nobody opens more than 64 environments
2862  *      in a single process, for now. They can override this if needed.
2863  */
2864 #ifndef MAX_TLS_KEYS
2865 #define MAX_TLS_KEYS    64
2866 #endif
2867 static pthread_key_t mdb_tls_keys[MAX_TLS_KEYS];
2868 static int mdb_tls_nkeys;
2869
2870 static void NTAPI mdb_tls_callback(PVOID module, DWORD reason, PVOID ptr)
2871 {
2872         int i;
2873         switch(reason) {
2874         case DLL_PROCESS_ATTACH: break;
2875         case DLL_THREAD_ATTACH: break;
2876         case DLL_THREAD_DETACH:
2877                 for (i=0; i<mdb_tls_nkeys; i++) {
2878                         MDB_reader *r = pthread_getspecific(mdb_tls_keys[i]);
2879                         mdb_env_reader_dest(r);
2880                 }
2881                 break;
2882         case DLL_PROCESS_DETACH: break;
2883         }
2884 }
2885 #ifdef __GNUC__
2886 #ifdef _WIN64
2887 const PIMAGE_TLS_CALLBACK mdb_tls_cbp __attribute__((section (".CRT$XLB"))) = mdb_tls_callback;
2888 #else
2889 PIMAGE_TLS_CALLBACK mdb_tls_cbp __attribute__((section (".CRT$XLB"))) = mdb_tls_callback;
2890 #endif
2891 #else
2892 #ifdef _WIN64
2893 /* Force some symbol references.
2894  *      _tls_used forces the linker to create the TLS directory if not already done
2895  *      mdb_tls_cbp prevents whole-program-optimizer from dropping the symbol.
2896  */
2897 #pragma comment(linker, "/INCLUDE:_tls_used")
2898 #pragma comment(linker, "/INCLUDE:mdb_tls_cbp")
2899 #pragma const_seg(".CRT$XLB")
2900 extern const PIMAGE_TLS_CALLBACK mdb_tls_callback;
2901 const PIMAGE_TLS_CALLBACK mdb_tls_cbp = mdb_tls_callback;
2902 #pragma const_seg()
2903 #else   /* WIN32 */
2904 #pragma comment(linker, "/INCLUDE:__tls_used")
2905 #pragma comment(linker, "/INCLUDE:_mdb_tls_cbp")
2906 #pragma data_seg(".CRT$XLB")
2907 PIMAGE_TLS_CALLBACK mdb_tls_cbp = mdb_tls_callback;
2908 #pragma data_seg()
2909 #endif  /* WIN 32/64 */
2910 #endif  /* !__GNUC__ */
2911 #endif
2912
2913 /** Downgrade the exclusive lock on the region back to shared */
2914 static int
2915 mdb_env_share_locks(MDB_env *env, int *excl)
2916 {
2917         int rc = 0, toggle = mdb_env_pick_meta(env);
2918
2919         env->me_txns->mti_txnid = env->me_metas[toggle]->mm_txnid;
2920
2921 #ifdef _WIN32
2922         {
2923                 OVERLAPPED ov;
2924                 /* First acquire a shared lock. The Unlock will
2925                  * then release the existing exclusive lock.
2926                  */
2927                 memset(&ov, 0, sizeof(ov));
2928                 if (!LockFileEx(env->me_lfd, 0, 0, 1, 0, &ov)) {
2929                         rc = ErrCode();
2930                 } else {
2931                         UnlockFile(env->me_lfd, 0, 0, 1, 0);
2932                         *excl = 0;
2933                 }
2934         }
2935 #else
2936         {
2937                 struct flock lock_info;
2938                 /* The shared lock replaces the existing lock */
2939                 memset((void *)&lock_info, 0, sizeof(lock_info));
2940                 lock_info.l_type = F_RDLCK;
2941                 lock_info.l_whence = SEEK_SET;
2942                 lock_info.l_start = 0;
2943                 lock_info.l_len = 1;
2944                 while ((rc = fcntl(env->me_lfd, F_SETLK, &lock_info)) &&
2945                                 (rc = ErrCode()) == EINTR) ;
2946                 *excl = rc ? -1 : 0;    /* error may mean we lost the lock */
2947         }
2948 #endif
2949
2950         return rc;
2951 }
2952
2953 /** Try to get exlusive lock, otherwise shared.
2954  *      Maintain *excl = -1: no/unknown lock, 0: shared, 1: exclusive.
2955  */
2956 static int
2957 mdb_env_excl_lock(MDB_env *env, int *excl)
2958 {
2959         int rc = 0;
2960 #ifdef _WIN32
2961         if (LockFile(env->me_lfd, 0, 0, 1, 0)) {
2962                 *excl = 1;
2963         } else {
2964                 OVERLAPPED ov;
2965                 memset(&ov, 0, sizeof(ov));
2966                 if (LockFileEx(env->me_lfd, 0, 0, 1, 0, &ov)) {
2967                         *excl = 0;
2968                 } else {
2969                         rc = ErrCode();
2970                 }
2971         }
2972 #else
2973         struct flock lock_info;
2974         memset((void *)&lock_info, 0, sizeof(lock_info));
2975         lock_info.l_type = F_WRLCK;
2976         lock_info.l_whence = SEEK_SET;
2977         lock_info.l_start = 0;
2978         lock_info.l_len = 1;
2979         while ((rc = fcntl(env->me_lfd, F_SETLK, &lock_info)) &&
2980                         (rc = ErrCode()) == EINTR) ;
2981         if (!rc) {
2982                 *excl = 1;
2983         } else
2984 # ifdef MDB_USE_POSIX_SEM
2985         if (*excl < 0) /* always true when !MDB_USE_POSIX_SEM */
2986 # endif
2987         {
2988                 lock_info.l_type = F_RDLCK;
2989                 while ((rc = fcntl(env->me_lfd, F_SETLKW, &lock_info)) &&
2990                                 (rc = ErrCode()) == EINTR) ;
2991                 if (rc == 0)
2992                         *excl = 0;
2993         }
2994 #endif
2995         return rc;
2996 }
2997
2998 #if defined(_WIN32) || defined(MDB_USE_POSIX_SEM)
2999 /*
3000  * hash_64 - 64 bit Fowler/Noll/Vo-0 FNV-1a hash code
3001  *
3002  * @(#) $Revision: 5.1 $
3003  * @(#) $Id: hash_64a.c,v 5.1 2009/06/30 09:01:38 chongo Exp $
3004  * @(#) $Source: /usr/local/src/cmd/fnv/RCS/hash_64a.c,v $
3005  *
3006  *        http://www.isthe.com/chongo/tech/comp/fnv/index.html
3007  *
3008  ***
3009  *
3010  * Please do not copyright this code.  This code is in the public domain.
3011  *
3012  * LANDON CURT NOLL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
3013  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO
3014  * EVENT SHALL LANDON CURT NOLL BE LIABLE FOR ANY SPECIAL, INDIRECT OR
3015  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
3016  * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
3017  * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
3018  * PERFORMANCE OF THIS SOFTWARE.
3019  *
3020  * By:
3021  *      chongo <Landon Curt Noll> /\oo/\
3022  *        http://www.isthe.com/chongo/
3023  *
3024  * Share and Enjoy!     :-)
3025  */
3026
3027 typedef unsigned long long      mdb_hash_t;
3028 #define MDB_HASH_INIT ((mdb_hash_t)0xcbf29ce484222325ULL)
3029
3030 /** perform a 64 bit Fowler/Noll/Vo FNV-1a hash on a buffer
3031  * @param[in] str string to hash
3032  * @param[in] hval      initial value for hash
3033  * @return 64 bit hash
3034  *
3035  * NOTE: To use the recommended 64 bit FNV-1a hash, use MDB_HASH_INIT as the
3036  *       hval arg on the first call.
3037  */
3038 static mdb_hash_t
3039 mdb_hash_val(MDB_val *val, mdb_hash_t hval)
3040 {
3041         unsigned char *s = (unsigned char *)val->mv_data;       /* unsigned string */
3042         unsigned char *end = s + val->mv_size;
3043         /*
3044          * FNV-1a hash each octet of the string
3045          */
3046         while (s < end) {
3047                 /* xor the bottom with the current octet */
3048                 hval ^= (mdb_hash_t)*s++;
3049
3050                 /* multiply by the 64 bit FNV magic prime mod 2^64 */
3051                 hval += (hval << 1) + (hval << 4) + (hval << 5) +
3052                         (hval << 7) + (hval << 8) + (hval << 40);
3053         }
3054         /* return our new hash value */
3055         return hval;
3056 }
3057
3058 /** Hash the string and output the hash in hex.
3059  * @param[in] str string to hash
3060  * @param[out] hexbuf an array of 17 chars to hold the hash
3061  */
3062 static void
3063 mdb_hash_hex(MDB_val *val, char *hexbuf)
3064 {
3065         int i;
3066         mdb_hash_t h = mdb_hash_val(val, MDB_HASH_INIT);
3067         for (i=0; i<8; i++) {
3068                 hexbuf += sprintf(hexbuf, "%02x", (unsigned int)h & 0xff);
3069                 h >>= 8;
3070         }
3071 }
3072 #endif
3073
3074 /** Open and/or initialize the lock region for the environment.
3075  * @param[in] env The MDB environment.
3076  * @param[in] lpath The pathname of the file used for the lock region.
3077  * @param[in] mode The Unix permissions for the file, if we create it.
3078  * @param[out] excl Resulting file lock type: -1 none, 0 shared, 1 exclusive
3079  * @return 0 on success, non-zero on failure.
3080  */
3081 static int
3082 mdb_env_setup_locks(MDB_env *env, char *lpath, int mode, int *excl)
3083 {
3084         int rc;
3085         off_t size, rsize;
3086
3087         *excl = -1;
3088
3089 #ifdef _WIN32
3090         if ((env->me_lfd = CreateFile(lpath, GENERIC_READ|GENERIC_WRITE,
3091                 FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_ALWAYS,
3092                 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE) {
3093                 rc = ErrCode();
3094                 if (rc == ERROR_WRITE_PROTECT && (env->me_flags & MDB_RDONLY)) {
3095                         env->me_flags |= MDB_ROFS;
3096                         return MDB_SUCCESS;
3097                 }
3098                 goto fail_errno;
3099         }
3100         /* Try to get exclusive lock. If we succeed, then
3101          * nobody is using the lock region and we should initialize it.
3102          */
3103         if ((rc = mdb_env_excl_lock(env, excl))) goto fail;
3104         size = GetFileSize(env->me_lfd, NULL);
3105
3106 #else
3107 #if !(O_CLOEXEC)
3108         {
3109                 int fdflags;
3110                 if ((env->me_lfd = open(lpath, O_RDWR|O_CREAT, mode)) == -1) {
3111                         rc = ErrCode();
3112                         if (rc == EROFS && (env->me_flags & MDB_RDONLY)) {
3113                                 env->me_flags |= MDB_ROFS;
3114                                 return MDB_SUCCESS;
3115                         }
3116                         goto fail_errno;
3117                 }
3118                 /* Lose record locks when exec*() */
3119                 if ((fdflags = fcntl(env->me_lfd, F_GETFD) | FD_CLOEXEC) >= 0)
3120                         fcntl(env->me_lfd, F_SETFD, fdflags);
3121         }
3122 #else /* O_CLOEXEC on Linux: Open file and set FD_CLOEXEC atomically */
3123         if ((env->me_lfd = open(lpath, O_RDWR|O_CREAT|O_CLOEXEC, mode)) == -1) {
3124                 rc = ErrCode();
3125                 if (rc == EROFS && (env->me_flags & MDB_RDONLY)) {
3126                         env->me_flags |= MDB_ROFS;
3127                         return MDB_SUCCESS;
3128                 }
3129                 goto fail_errno;
3130         }
3131 #endif
3132
3133         /* Try to get exclusive lock. If we succeed, then
3134          * nobody is using the lock region and we should initialize it.
3135          */
3136         if ((rc = mdb_env_excl_lock(env, excl))) goto fail;
3137
3138         size = lseek(env->me_lfd, 0, SEEK_END);
3139 #endif
3140         rsize = (env->me_maxreaders-1) * sizeof(MDB_reader) + sizeof(MDB_txninfo);
3141         if (size < rsize && *excl > 0) {
3142 #ifdef _WIN32
3143                 SetFilePointer(env->me_lfd, rsize, NULL, 0);
3144                 if (!SetEndOfFile(env->me_lfd)) goto fail_errno;
3145 #else
3146                 if (ftruncate(env->me_lfd, rsize) != 0) goto fail_errno;
3147 #endif
3148         } else {
3149                 rsize = size;
3150                 size = rsize - sizeof(MDB_txninfo);
3151                 env->me_maxreaders = size/sizeof(MDB_reader) + 1;
3152         }
3153         {
3154 #ifdef _WIN32
3155                 HANDLE mh;
3156                 mh = CreateFileMapping(env->me_lfd, NULL, PAGE_READWRITE,
3157                         0, 0, NULL);
3158                 if (!mh) goto fail_errno;
3159                 env->me_txns = MapViewOfFileEx(mh, FILE_MAP_WRITE, 0, 0, rsize, NULL);
3160                 CloseHandle(mh);
3161                 if (!env->me_txns) goto fail_errno;
3162 #else
3163                 void *m = mmap(NULL, rsize, PROT_READ|PROT_WRITE, MAP_SHARED,
3164                         env->me_lfd, 0);
3165                 if (m == MAP_FAILED) goto fail_errno;
3166                 env->me_txns = m;
3167 #endif
3168         }
3169         if (*excl > 0) {
3170 #ifdef _WIN32
3171                 BY_HANDLE_FILE_INFORMATION stbuf;
3172                 struct {
3173                         DWORD volume;
3174                         DWORD nhigh;
3175                         DWORD nlow;
3176                 } idbuf;
3177                 MDB_val val;
3178                 char hexbuf[17];
3179
3180                 if (!mdb_sec_inited) {
3181                         InitializeSecurityDescriptor(&mdb_null_sd,
3182                                 SECURITY_DESCRIPTOR_REVISION);
3183                         SetSecurityDescriptorDacl(&mdb_null_sd, TRUE, 0, FALSE);
3184                         mdb_all_sa.nLength = sizeof(SECURITY_ATTRIBUTES);
3185                         mdb_all_sa.bInheritHandle = FALSE;
3186                         mdb_all_sa.lpSecurityDescriptor = &mdb_null_sd;
3187                         mdb_sec_inited = 1;
3188                 }
3189                 if (!GetFileInformationByHandle(env->me_lfd, &stbuf)) goto fail_errno;
3190                 idbuf.volume = stbuf.dwVolumeSerialNumber;
3191                 idbuf.nhigh  = stbuf.nFileIndexHigh;
3192                 idbuf.nlow   = stbuf.nFileIndexLow;
3193                 val.mv_data = &idbuf;
3194                 val.mv_size = sizeof(idbuf);
3195                 mdb_hash_hex(&val, hexbuf);
3196                 sprintf(env->me_txns->mti_rmname, "Global\\MDBr%s", hexbuf);
3197                 sprintf(env->me_txns->mti_wmname, "Global\\MDBw%s", hexbuf);
3198                 env->me_rmutex = CreateMutex(&mdb_all_sa, FALSE, env->me_txns->mti_rmname);
3199                 if (!env->me_rmutex) goto fail_errno;
3200                 env->me_wmutex = CreateMutex(&mdb_all_sa, FALSE, env->me_txns->mti_wmname);
3201                 if (!env->me_wmutex) goto fail_errno;
3202 #elif defined(MDB_USE_POSIX_SEM)
3203                 struct stat stbuf;
3204                 struct {
3205                         dev_t dev;
3206                         ino_t ino;
3207                 } idbuf;
3208                 MDB_val val;
3209                 char hexbuf[17];
3210
3211                 if (fstat(env->me_lfd, &stbuf)) goto fail_errno;
3212                 idbuf.dev = stbuf.st_dev;
3213                 idbuf.ino = stbuf.st_ino;
3214                 val.mv_data = &idbuf;
3215                 val.mv_size = sizeof(idbuf);
3216                 mdb_hash_hex(&val, hexbuf);
3217                 sprintf(env->me_txns->mti_rmname, "/MDBr%s", hexbuf);
3218                 sprintf(env->me_txns->mti_wmname, "/MDBw%s", hexbuf);
3219                 /* Clean up after a previous run, if needed:  Try to
3220                  * remove both semaphores before doing anything else.
3221                  */
3222                 sem_unlink(env->me_txns->mti_rmname);
3223                 sem_unlink(env->me_txns->mti_wmname);
3224                 env->me_rmutex = sem_open(env->me_txns->mti_rmname,
3225                         O_CREAT|O_EXCL, mode, 1);
3226                 if (env->me_rmutex == SEM_FAILED) goto fail_errno;
3227                 env->me_wmutex = sem_open(env->me_txns->mti_wmname,
3228                         O_CREAT|O_EXCL, mode, 1);
3229                 if (env->me_wmutex == SEM_FAILED) goto fail_errno;
3230 #else   /* MDB_USE_POSIX_SEM */
3231                 pthread_mutexattr_t mattr;
3232
3233                 if ((rc = pthread_mutexattr_init(&mattr))
3234                         || (rc = pthread_mutexattr_setpshared(&mattr, PTHREAD_PROCESS_SHARED))
3235                         || (rc = pthread_mutex_init(&env->me_txns->mti_mutex, &mattr))
3236                         || (rc = pthread_mutex_init(&env->me_txns->mti_wmutex, &mattr)))
3237                         goto fail;
3238                 pthread_mutexattr_destroy(&mattr);
3239 #endif  /* _WIN32 || MDB_USE_POSIX_SEM */
3240
3241                 env->me_txns->mti_version = MDB_VERSION;
3242                 env->me_txns->mti_magic = MDB_MAGIC;
3243                 env->me_txns->mti_txnid = 0;
3244                 env->me_txns->mti_numreaders = 0;
3245
3246         } else {
3247                 if (env->me_txns->mti_magic != MDB_MAGIC) {
3248                         DPUTS("lock region has invalid magic");
3249                         rc = MDB_INVALID;
3250                         goto fail;
3251                 }
3252                 if (env->me_txns->mti_version != MDB_VERSION) {
3253                         DPRINTF("lock region is version %u, expected version %u",
3254                                 env->me_txns->mti_version, MDB_VERSION);
3255                         rc = MDB_VERSION_MISMATCH;
3256                         goto fail;
3257                 }
3258                 rc = ErrCode();
3259                 if (rc != EACCES && rc != EAGAIN) {
3260                         goto fail;
3261                 }
3262 #ifdef _WIN32
3263                 env->me_rmutex = OpenMutex(SYNCHRONIZE, FALSE, env->me_txns->mti_rmname);
3264                 if (!env->me_rmutex) goto fail_errno;
3265                 env->me_wmutex = OpenMutex(SYNCHRONIZE, FALSE, env->me_txns->mti_wmname);
3266                 if (!env->me_wmutex) goto fail_errno;
3267 #elif defined(MDB_USE_POSIX_SEM)
3268                 env->me_rmutex = sem_open(env->me_txns->mti_rmname, 0);
3269                 if (env->me_rmutex == SEM_FAILED) goto fail_errno;
3270                 env->me_wmutex = sem_open(env->me_txns->mti_wmname, 0);
3271                 if (env->me_wmutex == SEM_FAILED) goto fail_errno;
3272 #endif
3273         }
3274         return MDB_SUCCESS;
3275
3276 fail_errno:
3277         rc = ErrCode();
3278 fail:
3279         return rc;
3280 }
3281
3282         /** The name of the lock file in the DB environment */
3283 #define LOCKNAME        "/lock.mdb"
3284         /** The name of the data file in the DB environment */
3285 #define DATANAME        "/data.mdb"
3286         /** The suffix of the lock file when no subdir is used */
3287 #define LOCKSUFF        "-lock"
3288         /** Only a subset of the @ref mdb_env flags can be changed
3289          *      at runtime. Changing other flags requires closing the
3290          *      environment and re-opening it with the new flags.
3291          */
3292 #define CHANGEABLE      (MDB_NOSYNC|MDB_NOMETASYNC|MDB_MAPASYNC)
3293 #define CHANGELESS      (MDB_FIXEDMAP|MDB_NOSUBDIR|MDB_RDONLY|MDB_WRITEMAP)
3294
3295 int
3296 mdb_env_open(MDB_env *env, const char *path, unsigned int flags, mode_t mode)
3297 {
3298         int             oflags, rc, len, excl;
3299         char *lpath, *dpath;
3300
3301         if (env->me_fd!=INVALID_HANDLE_VALUE || (flags & ~(CHANGEABLE|CHANGELESS)))
3302                 return EINVAL;
3303
3304         len = strlen(path);
3305         if (flags & MDB_NOSUBDIR) {
3306                 rc = len + sizeof(LOCKSUFF) + len + 1;
3307         } else {
3308                 rc = len + sizeof(LOCKNAME) + len + sizeof(DATANAME);
3309         }
3310         lpath = malloc(rc);
3311         if (!lpath)
3312                 return ENOMEM;
3313         if (flags & MDB_NOSUBDIR) {
3314                 dpath = lpath + len + sizeof(LOCKSUFF);
3315                 sprintf(lpath, "%s" LOCKSUFF, path);
3316                 strcpy(dpath, path);
3317         } else {
3318                 dpath = lpath + len + sizeof(LOCKNAME);
3319                 sprintf(lpath, "%s" LOCKNAME, path);
3320                 sprintf(dpath, "%s" DATANAME, path);
3321         }
3322
3323         flags |= env->me_flags;
3324         /* silently ignore WRITEMAP if we're only getting read access */
3325         if (F_ISSET(flags, MDB_RDONLY|MDB_WRITEMAP))
3326                 flags ^= MDB_WRITEMAP;
3327         env->me_flags = flags |= MDB_ENV_ACTIVE;
3328
3329         rc = mdb_env_setup_locks(env, lpath, mode, &excl);
3330         if (rc)
3331                 goto leave;
3332
3333 #ifdef _WIN32
3334         if (F_ISSET(flags, MDB_RDONLY)) {
3335                 oflags = GENERIC_READ;
3336                 len = OPEN_EXISTING;
3337         } else {
3338                 oflags = GENERIC_READ|GENERIC_WRITE;
3339                 len = OPEN_ALWAYS;
3340         }
3341         mode = FILE_ATTRIBUTE_NORMAL;
3342         env->me_fd = CreateFile(dpath, oflags, FILE_SHARE_READ|FILE_SHARE_WRITE,
3343                 NULL, len, mode, NULL);
3344 #else
3345         if (F_ISSET(flags, MDB_RDONLY))
3346                 oflags = O_RDONLY;
3347         else
3348                 oflags = O_RDWR | O_CREAT;
3349
3350         env->me_fd = open(dpath, oflags, mode);
3351 #endif
3352         if (env->me_fd == INVALID_HANDLE_VALUE) {
3353                 rc = ErrCode();
3354                 goto leave;
3355         }
3356
3357         if ((rc = mdb_env_open2(env)) == MDB_SUCCESS) {
3358                 if (flags & (MDB_RDONLY|MDB_WRITEMAP)) {
3359                         env->me_mfd = env->me_fd;
3360                 } else {
3361                         /* Synchronous fd for meta writes. Needed even with
3362                          * MDB_NOSYNC/MDB_NOMETASYNC, in case these get reset.
3363                          */
3364 #ifdef _WIN32
3365                         env->me_mfd = CreateFile(dpath, oflags,
3366                                 FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, len,
3367                                 mode | FILE_FLAG_WRITE_THROUGH, NULL);
3368 #else
3369                         env->me_mfd = open(dpath, oflags | MDB_DSYNC, mode);
3370 #endif
3371                         if (env->me_mfd == INVALID_HANDLE_VALUE) {
3372                                 rc = ErrCode();
3373                                 goto leave;
3374                         }
3375                 }
3376                 DPRINTF("opened dbenv %p", (void *) env);
3377                 rc = pthread_key_create(&env->me_txkey, mdb_env_reader_dest);
3378                 if (rc)
3379                         goto leave;
3380                 env->me_numdbs = 2;     /* this notes that me_txkey was set */
3381 #ifdef _WIN32
3382                 /* Windows TLS callbacks need help finding their TLS info. */
3383                 if (mdb_tls_nkeys < MAX_TLS_KEYS)
3384                         mdb_tls_keys[mdb_tls_nkeys++] = env->me_txkey;
3385                 else {
3386                         rc = MDB_TLS_FULL;
3387                         goto leave;
3388                 }
3389 #endif
3390                 if (excl > 0) {
3391                         rc = mdb_env_share_locks(env, &excl);
3392                         if (rc)
3393                                 goto leave;
3394                 }
3395                 env->me_dbxs = calloc(env->me_maxdbs, sizeof(MDB_dbx));
3396                 env->me_dbflags = calloc(env->me_maxdbs, sizeof(uint16_t));
3397                 env->me_path = strdup(path);
3398                 if (!env->me_dbxs || !env->me_dbflags || !env->me_path)
3399                         rc = ENOMEM;
3400         }
3401
3402 leave:
3403         if (rc) {
3404                 mdb_env_close0(env, excl);
3405         }
3406         free(lpath);
3407         return rc;
3408 }
3409
3410 /** Destroy resources from mdb_env_open() and clear our readers */
3411 static void
3412 mdb_env_close0(MDB_env *env, int excl)
3413 {
3414         int i;
3415
3416         if (!(env->me_flags & MDB_ENV_ACTIVE))
3417                 return;
3418
3419         free(env->me_dbflags);
3420         free(env->me_dbxs);
3421         free(env->me_path);
3422
3423         if (env->me_numdbs) {
3424                 pthread_key_delete(env->me_txkey);
3425 #ifdef _WIN32
3426                 /* Delete our key from the global list */
3427                 for (i=0; i<mdb_tls_nkeys; i++)
3428                         if (mdb_tls_keys[i] == env->me_txkey) {
3429                                 mdb_tls_keys[i] = mdb_tls_keys[mdb_tls_nkeys-1];
3430                                 mdb_tls_nkeys--;
3431                                 break;
3432                         }
3433 #endif
3434         }
3435
3436         if (env->me_map) {
3437                 munmap(env->me_map, env->me_mapsize);
3438         }
3439         if (env->me_mfd != env->me_fd && env->me_mfd != INVALID_HANDLE_VALUE)
3440                 close(env->me_mfd);
3441         if (env->me_fd != INVALID_HANDLE_VALUE)
3442                 close(env->me_fd);
3443         if (env->me_txns) {
3444                 pid_t pid = env->me_pid;
3445                 /* Clearing readers is done in this function because
3446                  * me_txkey with its destructor must be disabled first.
3447                  */
3448                 for (i = env->me_numreaders; --i >= 0; )
3449                         if (env->me_txns->mti_readers[i].mr_pid == pid)
3450                                 env->me_txns->mti_readers[i].mr_pid = 0;
3451 #ifdef _WIN32
3452                 if (env->me_rmutex) {
3453                         CloseHandle(env->me_rmutex);
3454                         if (env->me_wmutex) CloseHandle(env->me_wmutex);
3455                 }
3456                 /* Windows automatically destroys the mutexes when
3457                  * the last handle closes.
3458                  */
3459 #elif defined(MDB_USE_POSIX_SEM)
3460                 if (env->me_rmutex != SEM_FAILED) {
3461                         sem_close(env->me_rmutex);
3462                         if (env->me_wmutex != SEM_FAILED)
3463                                 sem_close(env->me_wmutex);
3464                         /* If we have the filelock:  If we are the
3465                          * only remaining user, clean up semaphores.
3466                          */
3467                         if (excl == 0)
3468                                 mdb_env_excl_lock(env, &excl);
3469                         if (excl > 0) {
3470                                 sem_unlink(env->me_txns->mti_rmname);
3471                                 sem_unlink(env->me_txns->mti_wmname);
3472                         }
3473                 }
3474 #endif
3475                 munmap((void *)env->me_txns, (env->me_maxreaders-1)*sizeof(MDB_reader)+sizeof(MDB_txninfo));
3476         }
3477         if (env->me_lfd != INVALID_HANDLE_VALUE) {
3478 #ifdef _WIN32
3479                 if (excl >= 0) {
3480                         /* Unlock the lockfile.  Windows would have unlocked it
3481                          * after closing anyway, but not necessarily at once.
3482                          */
3483                         UnlockFile(env->me_lfd, 0, 0, 1, 0);
3484                 }
3485 #endif
3486                 close(env->me_lfd);
3487         }
3488
3489         env->me_flags &= ~MDB_ENV_ACTIVE;
3490 }
3491
3492 int
3493 mdb_env_copy(MDB_env *env, const char *path)
3494 {
3495         MDB_txn *txn = NULL;
3496         int rc, len;
3497         size_t wsize;
3498         char *lpath, *ptr;
3499         HANDLE newfd = INVALID_HANDLE_VALUE;
3500
3501         if (env->me_flags & MDB_NOSUBDIR) {
3502                 lpath = (char *)path;
3503         } else {
3504                 len = strlen(path);
3505                 len += sizeof(DATANAME);
3506                 lpath = malloc(len);
3507                 if (!lpath)
3508                         return ENOMEM;
3509                 sprintf(lpath, "%s" DATANAME, path);
3510         }
3511
3512         /* The destination path must exist, but the destination file must not.
3513          * We don't want the OS to cache the writes, since the source data is
3514          * already in the OS cache.
3515          */
3516 #ifdef _WIN32
3517         newfd = CreateFile(lpath, GENERIC_WRITE, 0, NULL, CREATE_NEW,
3518                                 FILE_FLAG_NO_BUFFERING|FILE_FLAG_WRITE_THROUGH, NULL);
3519 #else
3520         newfd = open(lpath, O_WRONLY|O_CREAT|O_EXCL
3521 #ifdef O_DIRECT
3522                 |O_DIRECT
3523 #endif
3524                 , 0666);
3525 #endif
3526         if (!(env->me_flags & MDB_NOSUBDIR))
3527                 free(lpath);
3528         if (newfd == INVALID_HANDLE_VALUE) {
3529                 rc = ErrCode();
3530                 goto leave;
3531         }
3532
3533 #ifdef F_NOCACHE        /* __APPLE__ */
3534         rc = fcntl(newfd, F_NOCACHE, 1);
3535         if (rc) {
3536                 rc = ErrCode();
3537                 goto leave;
3538         }
3539 #endif
3540
3541         /* Do the lock/unlock of the reader mutex before starting the
3542          * write txn.  Otherwise other read txns could block writers.
3543          */
3544         rc = mdb_txn_begin(env, NULL, MDB_RDONLY, &txn);
3545         if (rc)
3546                 goto leave;
3547
3548         if (!(env->me_flags & MDB_ROFS)) {
3549                 /* We must start the actual read txn after blocking writers */
3550                 mdb_txn_reset0(txn);
3551
3552                 /* Temporarily block writers until we snapshot the meta pages */
3553                 LOCK_MUTEX_W(env);
3554
3555                 rc = mdb_txn_renew0(txn);
3556                 if (rc) {
3557                         UNLOCK_MUTEX_W(env);
3558                         goto leave;
3559                 }
3560         }
3561
3562         wsize = env->me_psize * 2;
3563 #ifdef _WIN32
3564         {
3565                 DWORD len;
3566                 rc = WriteFile(newfd, env->me_map, wsize, &len, NULL);
3567                 rc = (len == wsize) ? MDB_SUCCESS : ErrCode();
3568         }
3569 #else
3570         rc = write(newfd, env->me_map, wsize);
3571         rc = (rc == (int)wsize) ? MDB_SUCCESS : ErrCode();
3572 #endif
3573         if (! (env->me_flags & MDB_ROFS))
3574                 UNLOCK_MUTEX_W(env);
3575
3576         if (rc)
3577                 goto leave;
3578
3579         ptr = env->me_map + wsize;
3580         wsize = txn->mt_next_pgno * env->me_psize - wsize;
3581 #define MAX_WRITE       2147483648U
3582 #ifdef _WIN32
3583         while (wsize > 0) {
3584                 DWORD len, w2;
3585                 if (wsize > MAX_WRITE)
3586                         w2 = MAX_WRITE;
3587                 else
3588                         w2 = wsize;
3589                 rc = WriteFile(newfd, ptr, w2, &len, NULL);
3590                 rc = (len == w2) ? MDB_SUCCESS : ErrCode();
3591                 if (rc) break;
3592                 wsize -= w2;
3593                 ptr += w2;
3594         }
3595 #else
3596         while (wsize > 0) {
3597                 size_t w2;
3598                 ssize_t wres;
3599                 if (wsize > MAX_WRITE)
3600                         w2 = MAX_WRITE;
3601                 else
3602                         w2 = wsize;
3603                 wres = write(newfd, ptr, w2);
3604                 rc = (wres > 0) ? MDB_SUCCESS : ErrCode();
3605                 if (rc) break;
3606                 wsize -= wres;
3607                 ptr += wres;
3608         }
3609 #endif
3610         mdb_txn_abort(txn);
3611
3612 leave:
3613         if (newfd != INVALID_HANDLE_VALUE)
3614                 close(newfd);
3615
3616         return rc;
3617 }
3618
3619 void
3620 mdb_env_close(MDB_env *env)
3621 {
3622         MDB_page *dp;
3623
3624         if (env == NULL)
3625                 return;
3626
3627         VGMEMP_DESTROY(env);
3628         while ((dp = env->me_dpages) != NULL) {
3629                 VGMEMP_DEFINED(&dp->mp_next, sizeof(dp->mp_next));
3630                 env->me_dpages = dp->mp_next;
3631                 free(dp);
3632         }
3633
3634         mdb_env_close0(env, 0);
3635         mdb_midl_free(env->me_free_pgs);
3636         free(env);
3637 }
3638
3639 /** Compare two items pointing at aligned size_t's */
3640 static int
3641 mdb_cmp_long(const MDB_val *a, const MDB_val *b)
3642 {
3643         return (*(size_t *)a->mv_data < *(size_t *)b->mv_data) ? -1 :
3644                 *(size_t *)a->mv_data > *(size_t *)b->mv_data;
3645 }
3646
3647 /** Compare two items pointing at aligned int's */
3648 static int
3649 mdb_cmp_int(const MDB_val *a, const MDB_val *b)
3650 {
3651         return (*(unsigned int *)a->mv_data < *(unsigned int *)b->mv_data) ? -1 :
3652                 *(unsigned int *)a->mv_data > *(unsigned int *)b->mv_data;
3653 }
3654
3655 /** Compare two items pointing at ints of unknown alignment.
3656  *      Nodes and keys are guaranteed to be 2-byte aligned.
3657  */
3658 static int
3659 mdb_cmp_cint(const MDB_val *a, const MDB_val *b)
3660 {
3661 #if BYTE_ORDER == LITTLE_ENDIAN
3662         unsigned short *u, *c;
3663         int x;
3664
3665         u = (unsigned short *) ((char *) a->mv_data + a->mv_size);
3666         c = (unsigned short *) ((char *) b->mv_data + a->mv_size);
3667         do {
3668                 x = *--u - *--c;
3669         } while(!x && u > (unsigned short *)a->mv_data);
3670         return x;
3671 #else
3672         return memcmp(a->mv_data, b->mv_data, a->mv_size);
3673 #endif
3674 }
3675
3676 /** Compare two items lexically */
3677 static int
3678 mdb_cmp_memn(const MDB_val *a, const MDB_val *b)
3679 {
3680         int diff;
3681         ssize_t len_diff;
3682         unsigned int len;
3683
3684         len = a->mv_size;
3685         len_diff = (ssize_t) a->mv_size - (ssize_t) b->mv_size;
3686         if (len_diff > 0) {
3687                 len = b->mv_size;
3688                 len_diff = 1;
3689         }
3690
3691         diff = memcmp(a->mv_data, b->mv_data, len);
3692         return diff ? diff : len_diff<0 ? -1 : len_diff;
3693 }
3694
3695 /** Compare two items in reverse byte order */
3696 static int
3697 mdb_cmp_memnr(const MDB_val *a, const MDB_val *b)
3698 {
3699         const unsigned char     *p1, *p2, *p1_lim;
3700         ssize_t len_diff;
3701         int diff;
3702
3703         p1_lim = (const unsigned char *)a->mv_data;
3704         p1 = (const unsigned char *)a->mv_data + a->mv_size;
3705         p2 = (const unsigned char *)b->mv_data + b->mv_size;
3706
3707         len_diff = (ssize_t) a->mv_size - (ssize_t) b->mv_size;
3708         if (len_diff > 0) {
3709                 p1_lim += len_diff;
3710                 len_diff = 1;
3711         }
3712
3713         while (p1 > p1_lim) {
3714                 diff = *--p1 - *--p2;
3715                 if (diff)
3716                         return diff;
3717         }
3718         return len_diff<0 ? -1 : len_diff;
3719 }
3720
3721 /** Search for key within a page, using binary search.
3722  * Returns the smallest entry larger or equal to the key.
3723  * If exactp is non-null, stores whether the found entry was an exact match
3724  * in *exactp (1 or 0).
3725  * Updates the cursor index with the index of the found entry.
3726  * If no entry larger or equal to the key is found, returns NULL.
3727  */
3728 static MDB_node *
3729 mdb_node_search(MDB_cursor *mc, MDB_val *key, int *exactp)
3730 {
3731         unsigned int     i = 0, nkeys;
3732         int              low, high;
3733         int              rc = 0;
3734         MDB_page *mp = mc->mc_pg[mc->mc_top];
3735         MDB_node        *node = NULL;
3736         MDB_val  nodekey;
3737         MDB_cmp_func *cmp;
3738         DKBUF;
3739
3740         nkeys = NUMKEYS(mp);
3741
3742 #if MDB_DEBUG
3743         {
3744         pgno_t pgno;
3745         COPY_PGNO(pgno, mp->mp_pgno);
3746         DPRINTF("searching %u keys in %s %spage %zu",
3747             nkeys, IS_LEAF(mp) ? "leaf" : "branch", IS_SUBP(mp) ? "sub-" : "",
3748             pgno);
3749         }
3750 #endif
3751
3752         assert(nkeys > 0);
3753
3754         low = IS_LEAF(mp) ? 0 : 1;
3755         high = nkeys - 1;
3756         cmp = mc->mc_dbx->md_cmp;
3757
3758         /* Branch pages have no data, so if using integer keys,
3759          * alignment is guaranteed. Use faster mdb_cmp_int.
3760          */
3761         if (cmp == mdb_cmp_cint && IS_BRANCH(mp)) {
3762                 if (NODEPTR(mp, 1)->mn_ksize == sizeof(size_t))
3763                         cmp = mdb_cmp_long;
3764                 else
3765                         cmp = mdb_cmp_int;
3766         }
3767
3768         if (IS_LEAF2(mp)) {
3769                 nodekey.mv_size = mc->mc_db->md_pad;
3770                 node = NODEPTR(mp, 0);  /* fake */
3771                 while (low <= high) {
3772                         i = (low + high) >> 1;
3773                         nodekey.mv_data = LEAF2KEY(mp, i, nodekey.mv_size);
3774                         rc = cmp(key, &nodekey);
3775                         DPRINTF("found leaf index %u [%s], rc = %i",
3776                             i, DKEY(&nodekey), rc);
3777                         if (rc == 0)
3778                                 break;
3779                         if (rc > 0)
3780                                 low = i + 1;
3781                         else
3782                                 high = i - 1;
3783                 }
3784         } else {
3785                 while (low <= high) {
3786                         i = (low + high) >> 1;
3787
3788                         node = NODEPTR(mp, i);
3789                         nodekey.mv_size = NODEKSZ(node);
3790                         nodekey.mv_data = NODEKEY(node);
3791
3792                         rc = cmp(key, &nodekey);
3793 #if MDB_DEBUG
3794                         if (IS_LEAF(mp))
3795                                 DPRINTF("found leaf index %u [%s], rc = %i",
3796                                     i, DKEY(&nodekey), rc);
3797                         else
3798                                 DPRINTF("found branch index %u [%s -> %zu], rc = %i",
3799                                     i, DKEY(&nodekey), NODEPGNO(node), rc);
3800 #endif
3801                         if (rc == 0)
3802                                 break;
3803                         if (rc > 0)
3804                                 low = i + 1;
3805                         else
3806                                 high = i - 1;
3807                 }
3808         }
3809
3810         if (rc > 0) {   /* Found entry is less than the key. */
3811                 i++;    /* Skip to get the smallest entry larger than key. */
3812                 if (!IS_LEAF2(mp))
3813                         node = NODEPTR(mp, i);
3814         }
3815         if (exactp)
3816                 *exactp = (rc == 0);
3817         /* store the key index */
3818         mc->mc_ki[mc->mc_top] = i;
3819         if (i >= nkeys)
3820                 /* There is no entry larger or equal to the key. */
3821                 return NULL;
3822
3823         /* nodeptr is fake for LEAF2 */
3824         return node;
3825 }
3826
3827 #if 0
3828 static void
3829 mdb_cursor_adjust(MDB_cursor *mc, func)
3830 {
3831         MDB_cursor *m2;
3832
3833         for (m2 = mc->mc_txn->mt_cursors[mc->mc_dbi]; m2; m2=m2->mc_next) {
3834                 if (m2->mc_pg[m2->mc_top] == mc->mc_pg[mc->mc_top]) {
3835                         func(mc, m2);
3836                 }
3837         }
3838 }
3839 #endif
3840
3841 /** Pop a page off the top of the cursor's stack. */
3842 static void
3843 mdb_cursor_pop(MDB_cursor *mc)
3844 {
3845         if (mc->mc_snum) {
3846 #ifndef MDB_DEBUG_SKIP
3847                 MDB_page        *top = mc->mc_pg[mc->mc_top];
3848 #endif
3849                 mc->mc_snum--;
3850                 if (mc->mc_snum)
3851                         mc->mc_top--;
3852
3853                 DPRINTF("popped page %zu off db %u cursor %p", top->mp_pgno,
3854                         mc->mc_dbi, (void *) mc);
3855         }
3856 }
3857
3858 /** Push a page onto the top of the cursor's stack. */
3859 static int
3860 mdb_cursor_push(MDB_cursor *mc, MDB_page *mp)
3861 {
3862         DPRINTF("pushing page %zu on db %u cursor %p", mp->mp_pgno,
3863                 mc->mc_dbi, (void *) mc);
3864
3865         if (mc->mc_snum >= CURSOR_STACK) {
3866                 assert(mc->mc_snum < CURSOR_STACK);
3867                 return MDB_CURSOR_FULL;
3868         }
3869
3870         mc->mc_top = mc->mc_snum++;
3871         mc->mc_pg[mc->mc_top] = mp;
3872         mc->mc_ki[mc->mc_top] = 0;
3873
3874         return MDB_SUCCESS;
3875 }
3876
3877 /** Find the address of the page corresponding to a given page number.
3878  * @param[in] txn the transaction for this access.
3879  * @param[in] pgno the page number for the page to retrieve.
3880  * @param[out] ret address of a pointer where the page's address will be stored.
3881  * @return 0 on success, non-zero on failure.
3882  */
3883 static int
3884 mdb_page_get(MDB_txn *txn, pgno_t pgno, MDB_page **ret)
3885 {
3886         MDB_page *p = NULL;
3887
3888         if (txn->mt_env->me_flags & MDB_WRITEMAP) {
3889                 if (pgno < txn->mt_next_pgno)
3890                         p = (MDB_page *)(txn->mt_env->me_map + txn->mt_env->me_psize * pgno);
3891                 goto done;
3892         }
3893         if (!F_ISSET(txn->mt_flags, MDB_TXN_RDONLY) && txn->mt_u.dirty_list[0].mid) {
3894                 unsigned x;
3895                 x = mdb_mid2l_search(txn->mt_u.dirty_list, pgno);
3896                 if (x <= txn->mt_u.dirty_list[0].mid && txn->mt_u.dirty_list[x].mid == pgno) {
3897                         p = txn->mt_u.dirty_list[x].mptr;
3898                 }
3899         }
3900         if (!p) {
3901                 if (pgno < txn->mt_next_pgno)
3902                         p = (MDB_page *)(txn->mt_env->me_map + txn->mt_env->me_psize * pgno);
3903         }
3904 done:
3905         *ret = p;
3906         if (!p) {
3907                 DPRINTF("page %zu not found", pgno);
3908                 assert(p != NULL);
3909         }
3910         return (p != NULL) ? MDB_SUCCESS : MDB_PAGE_NOTFOUND;
3911 }
3912
3913 /** Search for the page a given key should be in.
3914  * Pushes parent pages on the cursor stack. This function continues a
3915  * search on a cursor that has already been initialized. (Usually by
3916  * #mdb_page_search() but also by #mdb_node_move().)
3917  * @param[in,out] mc the cursor for this operation.
3918  * @param[in] key the key to search for. If NULL, search for the lowest
3919  * page. (This is used by #mdb_cursor_first().)
3920  * @param[in] flags If MDB_PS_MODIFY set, visited pages are updated with new page numbers.
3921  *   If MDB_PS_ROOTONLY set, just fetch root node, no further lookups.
3922  * @return 0 on success, non-zero on failure.
3923  */
3924 static int
3925 mdb_page_search_root(MDB_cursor *mc, MDB_val *key, int modify)
3926 {
3927         MDB_page        *mp = mc->mc_pg[mc->mc_top];
3928         DKBUF;
3929         int rc;
3930
3931
3932         while (IS_BRANCH(mp)) {
3933                 MDB_node        *node;
3934                 indx_t          i;
3935
3936                 DPRINTF("branch page %zu has %u keys", mp->mp_pgno, NUMKEYS(mp));
3937                 assert(NUMKEYS(mp) > 1);
3938                 DPRINTF("found index 0 to page %zu", NODEPGNO(NODEPTR(mp, 0)));
3939
3940                 if (key == NULL)        /* Initialize cursor to first page. */
3941                         i = 0;
3942                 else if (key->mv_size > MAXKEYSIZE && key->mv_data == NULL) {
3943                                                         /* cursor to last page */
3944                         i = NUMKEYS(mp)-1;
3945                 } else {
3946                         int      exact;
3947                         node = mdb_node_search(mc, key, &exact);
3948                         if (node == NULL)
3949                                 i = NUMKEYS(mp) - 1;
3950                         else {
3951                                 i = mc->mc_ki[mc->mc_top];
3952                                 if (!exact) {
3953                                         assert(i > 0);
3954                                         i--;
3955                                 }
3956                         }
3957                 }
3958
3959                 if (key)
3960                         DPRINTF("following index %u for key [%s]",
3961                             i, DKEY(key));
3962                 assert(i < NUMKEYS(mp));
3963                 node = NODEPTR(mp, i);
3964
3965                 if ((rc = mdb_page_get(mc->mc_txn, NODEPGNO(node), &mp)))
3966                         return rc;
3967
3968                 mc->mc_ki[mc->mc_top] = i;
3969                 if ((rc = mdb_cursor_push(mc, mp)))
3970                         return rc;
3971
3972                 if (modify) {
3973                         if ((rc = mdb_page_touch(mc)) != 0)
3974                                 return rc;
3975                         mp = mc->mc_pg[mc->mc_top];
3976                 }
3977         }
3978
3979         if (!IS_LEAF(mp)) {
3980                 DPRINTF("internal error, index points to a %02X page!?",
3981                     mp->mp_flags);
3982                 return MDB_CORRUPTED;
3983         }
3984
3985         DPRINTF("found leaf page %zu for key [%s]", mp->mp_pgno,
3986             key ? DKEY(key) : NULL);
3987
3988         return MDB_SUCCESS;
3989 }
3990
3991 /** Search for the page a given key should be in.
3992  * Pushes parent pages on the cursor stack. This function just sets up
3993  * the search; it finds the root page for \b mc's database and sets this
3994  * as the root of the cursor's stack. Then #mdb_page_search_root() is
3995  * called to complete the search.
3996  * @param[in,out] mc the cursor for this operation.
3997  * @param[in] key the key to search for. If NULL, search for the lowest
3998  * page. (This is used by #mdb_cursor_first().)
3999  * @param[in] modify If true, visited pages are updated with new page numbers.
4000  * @return 0 on success, non-zero on failure.
4001  */
4002 static int
4003 mdb_page_search(MDB_cursor *mc, MDB_val *key, int flags)
4004 {
4005         int              rc;
4006         pgno_t           root;
4007
4008         /* Make sure the txn is still viable, then find the root from
4009          * the txn's db table.
4010          */
4011         if (F_ISSET(mc->mc_txn->mt_flags, MDB_TXN_ERROR)) {
4012                 DPUTS("transaction has failed, must abort");
4013                 return EINVAL;
4014         } else {
4015                 /* Make sure we're using an up-to-date root */
4016                 if (mc->mc_dbi > MAIN_DBI) {
4017                         if ((*mc->mc_dbflag & DB_STALE) ||
4018                         ((flags & MDB_PS_MODIFY) && !(*mc->mc_dbflag & DB_DIRTY))) {
4019                                 MDB_cursor mc2;
4020                                 unsigned char dbflag = 0;
4021                                 mdb_cursor_init(&mc2, mc->mc_txn, MAIN_DBI, NULL);
4022                                 rc = mdb_page_search(&mc2, &mc->mc_dbx->md_name, flags & MDB_PS_MODIFY);
4023                                 if (rc)
4024                                         return rc;
4025                                 if (*mc->mc_dbflag & DB_STALE) {
4026                                         MDB_val data;
4027                                         int exact = 0;
4028                                         MDB_node *leaf = mdb_node_search(&mc2,
4029                                                 &mc->mc_dbx->md_name, &exact);
4030                                         if (!exact)
4031                                                 return MDB_NOTFOUND;
4032                                         mdb_node_read(mc->mc_txn, leaf, &data);
4033                                         memcpy(mc->mc_db, data.mv_data, sizeof(MDB_db));
4034                                 }
4035                                 if (flags & MDB_PS_MODIFY)
4036                                         dbflag = DB_DIRTY;
4037                                 *mc->mc_dbflag = dbflag;
4038                         }
4039                 }
4040                 root = mc->mc_db->md_root;
4041
4042                 if (root == P_INVALID) {                /* Tree is empty. */
4043                         DPUTS("tree is empty");
4044                         return MDB_NOTFOUND;
4045                 }
4046         }
4047
4048         assert(root > 1);
4049         if (!mc->mc_pg[0] || mc->mc_pg[0]->mp_pgno != root)
4050                 if ((rc = mdb_page_get(mc->mc_txn, root, &mc->mc_pg[0])))
4051                         return rc;
4052
4053         mc->mc_snum = 1;
4054         mc->mc_top = 0;
4055
4056         DPRINTF("db %u root page %zu has flags 0x%X",
4057                 mc->mc_dbi, root, mc->mc_pg[0]->mp_flags);
4058
4059         if (flags & MDB_PS_MODIFY) {
4060                 if ((rc = mdb_page_touch(mc)))
4061                         return rc;
4062         }
4063
4064         if (flags & MDB_PS_ROOTONLY)
4065                 return MDB_SUCCESS;
4066
4067         return mdb_page_search_root(mc, key, flags);
4068 }
4069
4070 /** Return the data associated with a given node.
4071  * @param[in] txn The transaction for this operation.
4072  * @param[in] leaf The node being read.
4073  * @param[out] data Updated to point to the node's data.
4074  * @return 0 on success, non-zero on failure.
4075  */
4076 static int
4077 mdb_node_read(MDB_txn *txn, MDB_node *leaf, MDB_val *data)
4078 {
4079         MDB_page        *omp;           /* overflow page */
4080         pgno_t           pgno;
4081         int rc;
4082
4083         if (!F_ISSET(leaf->mn_flags, F_BIGDATA)) {
4084                 data->mv_size = NODEDSZ(leaf);
4085                 data->mv_data = NODEDATA(leaf);
4086                 return MDB_SUCCESS;
4087         }
4088
4089         /* Read overflow data.
4090          */
4091         data->mv_size = NODEDSZ(leaf);
4092         memcpy(&pgno, NODEDATA(leaf), sizeof(pgno));
4093         if ((rc = mdb_page_get(txn, pgno, &omp))) {
4094                 DPRINTF("read overflow page %zu failed", pgno);
4095                 return rc;
4096         }
4097         data->mv_data = METADATA(omp);
4098
4099         return MDB_SUCCESS;
4100 }
4101
4102 int
4103 mdb_get(MDB_txn *txn, MDB_dbi dbi,
4104     MDB_val *key, MDB_val *data)
4105 {
4106         MDB_cursor      mc;
4107         MDB_xcursor     mx;
4108         int exact = 0;
4109         DKBUF;
4110
4111         assert(key);
4112         assert(data);
4113         DPRINTF("===> get db %u key [%s]", dbi, DKEY(key));
4114
4115         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs)
4116                 return EINVAL;
4117
4118         if (key->mv_size == 0 || key->mv_size > MAXKEYSIZE) {
4119                 return EINVAL;
4120         }
4121
4122         mdb_cursor_init(&mc, txn, dbi, &mx);
4123         return mdb_cursor_set(&mc, key, data, MDB_SET, &exact);
4124 }
4125
4126 /** Find a sibling for a page.
4127  * Replaces the page at the top of the cursor's stack with the
4128  * specified sibling, if one exists.
4129  * @param[in] mc The cursor for this operation.
4130  * @param[in] move_right Non-zero if the right sibling is requested,
4131  * otherwise the left sibling.
4132  * @return 0 on success, non-zero on failure.
4133  */
4134 static int
4135 mdb_cursor_sibling(MDB_cursor *mc, int move_right)
4136 {
4137         int              rc;
4138         MDB_node        *indx;
4139         MDB_page        *mp;
4140
4141         if (mc->mc_snum < 2) {
4142                 return MDB_NOTFOUND;            /* root has no siblings */
4143         }
4144
4145         mdb_cursor_pop(mc);
4146         DPRINTF("parent page is page %zu, index %u",
4147                 mc->mc_pg[mc->mc_top]->mp_pgno, mc->mc_ki[mc->mc_top]);
4148
4149         if (move_right ? (mc->mc_ki[mc->mc_top] + 1u >= NUMKEYS(mc->mc_pg[mc->mc_top]))
4150                        : (mc->mc_ki[mc->mc_top] == 0)) {
4151                 DPRINTF("no more keys left, moving to %s sibling",
4152                     move_right ? "right" : "left");
4153                 if ((rc = mdb_cursor_sibling(mc, move_right)) != MDB_SUCCESS) {
4154                         /* undo cursor_pop before returning */
4155                         mc->mc_top++;
4156                         mc->mc_snum++;
4157                         return rc;
4158                 }
4159         } else {
4160                 if (move_right)
4161                         mc->mc_ki[mc->mc_top]++;
4162                 else
4163                         mc->mc_ki[mc->mc_top]--;
4164                 DPRINTF("just moving to %s index key %u",
4165                     move_right ? "right" : "left", mc->mc_ki[mc->mc_top]);
4166         }
4167         assert(IS_BRANCH(mc->mc_pg[mc->mc_top]));
4168
4169         indx = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
4170         if ((rc = mdb_page_get(mc->mc_txn, NODEPGNO(indx), &mp)))
4171                 return rc;
4172
4173         mdb_cursor_push(mc, mp);
4174
4175         return MDB_SUCCESS;
4176 }
4177
4178 /** Move the cursor to the next data item. */
4179 static int
4180 mdb_cursor_next(MDB_cursor *mc, MDB_val *key, MDB_val *data, MDB_cursor_op op)
4181 {
4182         MDB_page        *mp;
4183         MDB_node        *leaf;
4184         int rc;
4185
4186         if (mc->mc_flags & C_EOF) {
4187                 return MDB_NOTFOUND;
4188         }
4189
4190         assert(mc->mc_flags & C_INITIALIZED);
4191
4192         mp = mc->mc_pg[mc->mc_top];
4193
4194         if (mc->mc_db->md_flags & MDB_DUPSORT) {
4195                 leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
4196                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4197                         if (op == MDB_NEXT || op == MDB_NEXT_DUP) {
4198                                 rc = mdb_cursor_next(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_NEXT);
4199                                 if (op != MDB_NEXT || rc == MDB_SUCCESS)
4200                                         return rc;
4201                         }
4202                 } else {
4203                         mc->mc_xcursor->mx_cursor.mc_flags &= ~C_INITIALIZED;
4204                         if (op == MDB_NEXT_DUP)
4205                                 return MDB_NOTFOUND;
4206                 }
4207         }
4208
4209         DPRINTF("cursor_next: top page is %zu in cursor %p", mp->mp_pgno, (void *) mc);
4210
4211         if (mc->mc_ki[mc->mc_top] + 1u >= NUMKEYS(mp)) {
4212                 DPUTS("=====> move to next sibling page");
4213                 if (mdb_cursor_sibling(mc, 1) != MDB_SUCCESS) {
4214                         mc->mc_flags |= C_EOF;
4215                         mc->mc_flags &= ~C_INITIALIZED;
4216                         return MDB_NOTFOUND;
4217                 }
4218                 mp = mc->mc_pg[mc->mc_top];
4219                 DPRINTF("next page is %zu, key index %u", mp->mp_pgno, mc->mc_ki[mc->mc_top]);
4220         } else
4221                 mc->mc_ki[mc->mc_top]++;
4222
4223         DPRINTF("==> cursor points to page %zu with %u keys, key index %u",
4224             mp->mp_pgno, NUMKEYS(mp), mc->mc_ki[mc->mc_top]);
4225
4226         if (IS_LEAF2(mp)) {
4227                 key->mv_size = mc->mc_db->md_pad;
4228                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
4229                 return MDB_SUCCESS;
4230         }
4231
4232         assert(IS_LEAF(mp));
4233         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
4234
4235         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4236                 mdb_xcursor_init1(mc, leaf);
4237         }
4238         if (data) {
4239                 if ((rc = mdb_node_read(mc->mc_txn, leaf, data) != MDB_SUCCESS))
4240                         return rc;
4241
4242                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4243                         rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
4244                         if (rc != MDB_SUCCESS)
4245                                 return rc;
4246                 }
4247         }
4248
4249         MDB_GET_KEY(leaf, key);
4250         return MDB_SUCCESS;
4251 }
4252
4253 /** Move the cursor to the previous data item. */
4254 static int
4255 mdb_cursor_prev(MDB_cursor *mc, MDB_val *key, MDB_val *data, MDB_cursor_op op)
4256 {
4257         MDB_page        *mp;
4258         MDB_node        *leaf;
4259         int rc;
4260
4261         assert(mc->mc_flags & C_INITIALIZED);
4262
4263         mp = mc->mc_pg[mc->mc_top];
4264
4265         if (mc->mc_db->md_flags & MDB_DUPSORT) {
4266                 leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
4267                 if (op == MDB_PREV || op == MDB_PREV_DUP) {
4268                         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4269                                 rc = mdb_cursor_prev(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_PREV);
4270                                 if (op != MDB_PREV || rc == MDB_SUCCESS)
4271                                         return rc;
4272                         } else {
4273                                 mc->mc_xcursor->mx_cursor.mc_flags &= ~C_INITIALIZED;
4274                                 if (op == MDB_PREV_DUP)
4275                                         return MDB_NOTFOUND;
4276                         }
4277                 }
4278         }
4279
4280         DPRINTF("cursor_prev: top page is %zu in cursor %p", mp->mp_pgno, (void *) mc);
4281
4282         if (mc->mc_ki[mc->mc_top] == 0)  {
4283                 DPUTS("=====> move to prev sibling page");
4284                 if (mdb_cursor_sibling(mc, 0) != MDB_SUCCESS) {
4285                         mc->mc_flags &= ~C_INITIALIZED;
4286                         return MDB_NOTFOUND;
4287                 }
4288                 mp = mc->mc_pg[mc->mc_top];
4289                 mc->mc_ki[mc->mc_top] = NUMKEYS(mp) - 1;
4290                 DPRINTF("prev page is %zu, key index %u", mp->mp_pgno, mc->mc_ki[mc->mc_top]);
4291         } else
4292                 mc->mc_ki[mc->mc_top]--;
4293
4294         mc->mc_flags &= ~C_EOF;
4295
4296         DPRINTF("==> cursor points to page %zu with %u keys, key index %u",
4297             mp->mp_pgno, NUMKEYS(mp), mc->mc_ki[mc->mc_top]);
4298
4299         if (IS_LEAF2(mp)) {
4300                 key->mv_size = mc->mc_db->md_pad;
4301                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
4302                 return MDB_SUCCESS;
4303         }
4304
4305         assert(IS_LEAF(mp));
4306         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
4307
4308         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4309                 mdb_xcursor_init1(mc, leaf);
4310         }
4311         if (data) {
4312                 if ((rc = mdb_node_read(mc->mc_txn, leaf, data) != MDB_SUCCESS))
4313                         return rc;
4314
4315                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4316                         rc = mdb_cursor_last(&mc->mc_xcursor->mx_cursor, data, NULL);
4317                         if (rc != MDB_SUCCESS)
4318                                 return rc;
4319                 }
4320         }
4321
4322         MDB_GET_KEY(leaf, key);
4323         return MDB_SUCCESS;
4324 }
4325
4326 /** Set the cursor on a specific data item. */
4327 static int
4328 mdb_cursor_set(MDB_cursor *mc, MDB_val *key, MDB_val *data,
4329     MDB_cursor_op op, int *exactp)
4330 {
4331         int              rc;
4332         MDB_page        *mp;
4333         MDB_node        *leaf = NULL;
4334         DKBUF;
4335
4336         assert(mc);
4337         assert(key);
4338         assert(key->mv_size > 0);
4339
4340         /* See if we're already on the right page */
4341         if (mc->mc_flags & C_INITIALIZED) {
4342                 MDB_val nodekey;
4343
4344                 mp = mc->mc_pg[mc->mc_top];
4345                 if (!NUMKEYS(mp)) {
4346                         mc->mc_ki[mc->mc_top] = 0;
4347                         return MDB_NOTFOUND;
4348                 }
4349                 if (mp->mp_flags & P_LEAF2) {
4350                         nodekey.mv_size = mc->mc_db->md_pad;
4351                         nodekey.mv_data = LEAF2KEY(mp, 0, nodekey.mv_size);
4352                 } else {
4353                         leaf = NODEPTR(mp, 0);
4354                         MDB_GET_KEY(leaf, &nodekey);
4355                 }
4356                 rc = mc->mc_dbx->md_cmp(key, &nodekey);
4357                 if (rc == 0) {
4358                         /* Probably happens rarely, but first node on the page
4359                          * was the one we wanted.
4360                          */
4361                         mc->mc_ki[mc->mc_top] = 0;
4362                         if (exactp)
4363                                 *exactp = 1;
4364                         goto set1;
4365                 }
4366                 if (rc > 0) {
4367                         unsigned int i;
4368                         unsigned int nkeys = NUMKEYS(mp);
4369                         if (nkeys > 1) {
4370                                 if (mp->mp_flags & P_LEAF2) {
4371                                         nodekey.mv_data = LEAF2KEY(mp,
4372                                                  nkeys-1, nodekey.mv_size);
4373                                 } else {
4374                                         leaf = NODEPTR(mp, nkeys-1);
4375                                         MDB_GET_KEY(leaf, &nodekey);
4376                                 }
4377                                 rc = mc->mc_dbx->md_cmp(key, &nodekey);
4378                                 if (rc == 0) {
4379                                         /* last node was the one we wanted */
4380                                         mc->mc_ki[mc->mc_top] = nkeys-1;
4381                                         if (exactp)
4382                                                 *exactp = 1;
4383                                         goto set1;
4384                                 }
4385                                 if (rc < 0) {
4386                                         if (mc->mc_ki[mc->mc_top] < NUMKEYS(mp)) {
4387                                                 /* This is definitely the right page, skip search_page */
4388                                                 if (mp->mp_flags & P_LEAF2) {
4389                                                         nodekey.mv_data = LEAF2KEY(mp,
4390                                                                  mc->mc_ki[mc->mc_top], nodekey.mv_size);
4391                                                 } else {
4392                                                         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
4393                                                         MDB_GET_KEY(leaf, &nodekey);
4394                                                 }
4395                                                 rc = mc->mc_dbx->md_cmp(key, &nodekey);
4396                                                 if (rc == 0) {
4397                                                         /* current node was the one we wanted */
4398                                                         if (exactp)
4399                                                                 *exactp = 1;
4400                                                         goto set1;
4401                                                 }
4402                                         }
4403                                         rc = 0;
4404                                         goto set2;
4405                                 }
4406                         }
4407                         /* If any parents have right-sibs, search.
4408                          * Otherwise, there's nothing further.
4409                          */
4410                         for (i=0; i<mc->mc_top; i++)
4411                                 if (mc->mc_ki[i] <
4412                                         NUMKEYS(mc->mc_pg[i])-1)
4413                                         break;
4414                         if (i == mc->mc_top) {
4415                                 /* There are no other pages */
4416                                 mc->mc_ki[mc->mc_top] = nkeys;
4417                                 return MDB_NOTFOUND;
4418                         }
4419                 }
4420                 if (!mc->mc_top) {
4421                         /* There are no other pages */
4422                         mc->mc_ki[mc->mc_top] = 0;
4423                         return MDB_NOTFOUND;
4424                 }
4425         }
4426
4427         rc = mdb_page_search(mc, key, 0);
4428         if (rc != MDB_SUCCESS)
4429                 return rc;
4430
4431         mp = mc->mc_pg[mc->mc_top];
4432         assert(IS_LEAF(mp));
4433
4434 set2:
4435         leaf = mdb_node_search(mc, key, exactp);
4436         if (exactp != NULL && !*exactp) {
4437                 /* MDB_SET specified and not an exact match. */
4438                 return MDB_NOTFOUND;
4439         }
4440
4441         if (leaf == NULL) {
4442                 DPUTS("===> inexact leaf not found, goto sibling");
4443                 if ((rc = mdb_cursor_sibling(mc, 1)) != MDB_SUCCESS)
4444                         return rc;              /* no entries matched */
4445                 mp = mc->mc_pg[mc->mc_top];
4446                 assert(IS_LEAF(mp));
4447                 leaf = NODEPTR(mp, 0);
4448         }
4449
4450 set1:
4451         mc->mc_flags |= C_INITIALIZED;
4452         mc->mc_flags &= ~C_EOF;
4453
4454         if (IS_LEAF2(mp)) {
4455                 key->mv_size = mc->mc_db->md_pad;
4456                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
4457                 return MDB_SUCCESS;
4458         }
4459
4460         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4461                 mdb_xcursor_init1(mc, leaf);
4462         }
4463         if (data) {
4464                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4465                         if (op == MDB_SET || op == MDB_SET_KEY || op == MDB_SET_RANGE) {
4466                                 rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
4467                         } else {
4468                                 int ex2, *ex2p;
4469                                 if (op == MDB_GET_BOTH) {
4470                                         ex2p = &ex2;
4471                                         ex2 = 0;
4472                                 } else {
4473                                         ex2p = NULL;
4474                                 }
4475                                 rc = mdb_cursor_set(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_SET_RANGE, ex2p);
4476                                 if (rc != MDB_SUCCESS)
4477                                         return rc;
4478                         }
4479                 } else if (op == MDB_GET_BOTH || op == MDB_GET_BOTH_RANGE) {
4480                         MDB_val d2;
4481                         if ((rc = mdb_node_read(mc->mc_txn, leaf, &d2)) != MDB_SUCCESS)
4482                                 return rc;
4483                         rc = mc->mc_dbx->md_dcmp(data, &d2);
4484                         if (rc) {
4485                                 if (op == MDB_GET_BOTH || rc > 0)
4486                                         return MDB_NOTFOUND;
4487                         }
4488
4489                 } else {
4490                         if (mc->mc_xcursor)
4491                                 mc->mc_xcursor->mx_cursor.mc_flags &= ~C_INITIALIZED;
4492                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
4493                                 return rc;
4494                 }
4495         }
4496
4497         /* The key already matches in all other cases */
4498         if (op == MDB_SET_RANGE || op == MDB_SET_KEY)
4499                 MDB_GET_KEY(leaf, key);
4500         DPRINTF("==> cursor placed on key [%s]", DKEY(key));
4501
4502         return rc;
4503 }
4504
4505 /** Move the cursor to the first item in the database. */
4506 static int
4507 mdb_cursor_first(MDB_cursor *mc, MDB_val *key, MDB_val *data)
4508 {
4509         int              rc;
4510         MDB_node        *leaf;
4511
4512         if (!(mc->mc_flags & C_INITIALIZED) || mc->mc_top) {
4513                 rc = mdb_page_search(mc, NULL, 0);
4514                 if (rc != MDB_SUCCESS)
4515                         return rc;
4516         }
4517         assert(IS_LEAF(mc->mc_pg[mc->mc_top]));
4518
4519         leaf = NODEPTR(mc->mc_pg[mc->mc_top], 0);
4520         mc->mc_flags |= C_INITIALIZED;
4521         mc->mc_flags &= ~C_EOF;
4522
4523         mc->mc_ki[mc->mc_top] = 0;
4524
4525         if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
4526                 key->mv_size = mc->mc_db->md_pad;
4527                 key->mv_data = LEAF2KEY(mc->mc_pg[mc->mc_top], 0, key->mv_size);
4528                 return MDB_SUCCESS;
4529         }
4530
4531         if (data) {
4532                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4533                         mdb_xcursor_init1(mc, leaf);
4534                         rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
4535                         if (rc)
4536                                 return rc;
4537                 } else {
4538                         if (mc->mc_xcursor)
4539                                 mc->mc_xcursor->mx_cursor.mc_flags &= ~C_INITIALIZED;
4540                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
4541                                 return rc;
4542                 }
4543         }
4544         MDB_GET_KEY(leaf, key);
4545         return MDB_SUCCESS;
4546 }
4547
4548 /** Move the cursor to the last item in the database. */
4549 static int
4550 mdb_cursor_last(MDB_cursor *mc, MDB_val *key, MDB_val *data)
4551 {
4552         int              rc;
4553         MDB_node        *leaf;
4554
4555         if (!(mc->mc_flags & C_EOF)) {
4556
4557         if (!(mc->mc_flags & C_INITIALIZED) || mc->mc_top) {
4558                 MDB_val lkey;
4559
4560                 lkey.mv_size = MAXKEYSIZE+1;
4561                 lkey.mv_data = NULL;
4562                 rc = mdb_page_search(mc, &lkey, 0);
4563                 if (rc != MDB_SUCCESS)
4564                         return rc;
4565         }
4566         assert(IS_LEAF(mc->mc_pg[mc->mc_top]));
4567
4568         mc->mc_flags |= C_INITIALIZED|C_EOF;
4569         mc->mc_ki[mc->mc_top] = NUMKEYS(mc->mc_pg[mc->mc_top]) - 1;
4570         }
4571         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
4572
4573         if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
4574                 key->mv_size = mc->mc_db->md_pad;
4575                 key->mv_data = LEAF2KEY(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], key->mv_size);
4576                 return MDB_SUCCESS;
4577         }
4578
4579         if (data) {
4580                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4581                         mdb_xcursor_init1(mc, leaf);
4582                         rc = mdb_cursor_last(&mc->mc_xcursor->mx_cursor, data, NULL);
4583                         if (rc)
4584                                 return rc;
4585                 } else {
4586                         if (mc->mc_xcursor)
4587                                 mc->mc_xcursor->mx_cursor.mc_flags &= ~C_INITIALIZED;
4588                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
4589                                 return rc;
4590                 }
4591         }
4592
4593         MDB_GET_KEY(leaf, key);
4594         return MDB_SUCCESS;
4595 }
4596
4597 int
4598 mdb_cursor_get(MDB_cursor *mc, MDB_val *key, MDB_val *data,
4599     MDB_cursor_op op)
4600 {
4601         int              rc;
4602         int              exact = 0;
4603
4604         assert(mc);
4605
4606         switch (op) {
4607         case MDB_GET_CURRENT:
4608                 if (!mc->mc_flags & C_INITIALIZED) {
4609                         rc = EINVAL;
4610                 } else {
4611                         MDB_page *mp = mc->mc_pg[mc->mc_top];
4612                         if (!NUMKEYS(mp)) {
4613                                 mc->mc_ki[mc->mc_top] = 0;
4614                                 rc = MDB_NOTFOUND;
4615                                 break;
4616                         }
4617                         rc = MDB_SUCCESS;
4618                         if (IS_LEAF2(mp)) {
4619                                 key->mv_size = mc->mc_db->md_pad;
4620                                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
4621                         } else {
4622                                 MDB_node *leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
4623                                 MDB_GET_KEY(leaf, key);
4624                                 if (data) {
4625                                         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4626                                                 rc = mdb_cursor_get(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_GET_CURRENT);
4627                                         } else {
4628                                                 rc = mdb_node_read(mc->mc_txn, leaf, data);
4629                                         }
4630                                 }
4631                         }
4632                 }
4633                 break;
4634         case MDB_GET_BOTH:
4635         case MDB_GET_BOTH_RANGE:
4636                 if (data == NULL || mc->mc_xcursor == NULL) {
4637                         rc = EINVAL;
4638                         break;
4639                 }
4640                 /* FALLTHRU */
4641         case MDB_SET:
4642         case MDB_SET_KEY:
4643         case MDB_SET_RANGE:
4644                 if (key == NULL || key->mv_size == 0 || key->mv_size > MAXKEYSIZE) {
4645                         rc = EINVAL;
4646                 } else if (op == MDB_SET_RANGE)
4647                         rc = mdb_cursor_set(mc, key, data, op, NULL);
4648                 else
4649                         rc = mdb_cursor_set(mc, key, data, op, &exact);
4650                 break;
4651         case MDB_GET_MULTIPLE:
4652                 if (data == NULL ||
4653                         !(mc->mc_db->md_flags & MDB_DUPFIXED) ||
4654                         !(mc->mc_flags & C_INITIALIZED)) {
4655                         rc = EINVAL;
4656                         break;
4657                 }
4658                 rc = MDB_SUCCESS;
4659                 if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED) ||
4660                         (mc->mc_xcursor->mx_cursor.mc_flags & C_EOF))
4661                         break;
4662                 goto fetchm;
4663         case MDB_NEXT_MULTIPLE:
4664                 if (data == NULL ||
4665                         !(mc->mc_db->md_flags & MDB_DUPFIXED)) {
4666                         rc = EINVAL;
4667                         break;
4668                 }
4669                 if (!(mc->mc_flags & C_INITIALIZED))
4670                         rc = mdb_cursor_first(mc, key, data);
4671                 else
4672                         rc = mdb_cursor_next(mc, key, data, MDB_NEXT_DUP);
4673                 if (rc == MDB_SUCCESS) {
4674                         if (mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED) {
4675                                 MDB_cursor *mx;
4676 fetchm:
4677                                 mx = &mc->mc_xcursor->mx_cursor;
4678                                 data->mv_size = NUMKEYS(mx->mc_pg[mx->mc_top]) *
4679                                         mx->mc_db->md_pad;
4680                                 data->mv_data = METADATA(mx->mc_pg[mx->mc_top]);
4681                                 mx->mc_ki[mx->mc_top] = NUMKEYS(mx->mc_pg[mx->mc_top])-1;
4682                         } else {
4683                                 rc = MDB_NOTFOUND;
4684                         }
4685                 }
4686                 break;
4687         case MDB_NEXT:
4688         case MDB_NEXT_DUP:
4689         case MDB_NEXT_NODUP:
4690                 if (!(mc->mc_flags & C_INITIALIZED))
4691                         rc = mdb_cursor_first(mc, key, data);
4692                 else
4693                         rc = mdb_cursor_next(mc, key, data, op);
4694                 break;
4695         case MDB_PREV:
4696         case MDB_PREV_DUP:
4697         case MDB_PREV_NODUP:
4698                 if (!(mc->mc_flags & C_INITIALIZED) || (mc->mc_flags & C_EOF)) {
4699                         rc = mdb_cursor_last(mc, key, data);
4700                         mc->mc_flags |= C_INITIALIZED;
4701                         mc->mc_ki[mc->mc_top]++;
4702                 }
4703                 rc = mdb_cursor_prev(mc, key, data, op);
4704                 break;
4705         case MDB_FIRST:
4706                 rc = mdb_cursor_first(mc, key, data);
4707                 break;
4708         case MDB_FIRST_DUP:
4709                 if (data == NULL ||
4710                         !(mc->mc_db->md_flags & MDB_DUPSORT) ||
4711                         !(mc->mc_flags & C_INITIALIZED) ||
4712                         !(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED)) {
4713                         rc = EINVAL;
4714                         break;
4715                 }
4716                 rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
4717                 break;
4718         case MDB_LAST:
4719                 rc = mdb_cursor_last(mc, key, data);
4720                 break;
4721         case MDB_LAST_DUP:
4722                 if (data == NULL ||
4723                         !(mc->mc_db->md_flags & MDB_DUPSORT) ||
4724                         !(mc->mc_flags & C_INITIALIZED) ||
4725                         !(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED)) {
4726                         rc = EINVAL;
4727                         break;
4728                 }
4729                 rc = mdb_cursor_last(&mc->mc_xcursor->mx_cursor, data, NULL);
4730                 break;
4731         default:
4732                 DPRINTF("unhandled/unimplemented cursor operation %u", op);
4733                 rc = EINVAL;
4734                 break;
4735         }
4736
4737         return rc;
4738 }
4739
4740 /** Touch all the pages in the cursor stack.
4741  *      Makes sure all the pages are writable, before attempting a write operation.
4742  * @param[in] mc The cursor to operate on.
4743  */
4744 static int
4745 mdb_cursor_touch(MDB_cursor *mc)
4746 {
4747         int rc;
4748
4749         if (mc->mc_dbi > MAIN_DBI && !(*mc->mc_dbflag & DB_DIRTY)) {
4750                 MDB_cursor mc2;
4751                 MDB_xcursor mcx;
4752                 mdb_cursor_init(&mc2, mc->mc_txn, MAIN_DBI,
4753                         mc->mc_txn->mt_dbs[MAIN_DBI].md_flags & MDB_DUPSORT ? &mcx : NULL);
4754                 rc = mdb_page_search(&mc2, &mc->mc_dbx->md_name, MDB_PS_MODIFY);
4755                 if (rc)
4756                          return rc;
4757                 *mc->mc_dbflag = DB_DIRTY;
4758         }
4759         for (mc->mc_top = 0; mc->mc_top < mc->mc_snum; mc->mc_top++) {
4760                 rc = mdb_page_touch(mc);
4761                 if (rc)
4762                         return rc;
4763         }
4764         mc->mc_top = mc->mc_snum-1;
4765         return MDB_SUCCESS;
4766 }
4767
4768 int
4769 mdb_cursor_put(MDB_cursor *mc, MDB_val *key, MDB_val *data,
4770     unsigned int flags)
4771 {
4772         MDB_node        *leaf = NULL;
4773         MDB_val xdata, *rdata, dkey;
4774         MDB_page        *fp;
4775         MDB_db dummy;
4776         int do_sub = 0, insert = 0;
4777         unsigned int mcount = 0;
4778         size_t nsize;
4779         int rc, rc2;
4780         MDB_pagebuf pbuf;
4781         char dbuf[MAXKEYSIZE+1];
4782         unsigned int nflags;
4783         DKBUF;
4784
4785         if (F_ISSET(mc->mc_txn->mt_flags, MDB_TXN_RDONLY))
4786                 return EACCES;
4787
4788         DPRINTF("==> put db %u key [%s], size %zu, data size %zu",
4789                 mc->mc_dbi, DKEY(key), key ? key->mv_size:0, data->mv_size);
4790
4791         dkey.mv_size = 0;
4792
4793         if (flags == MDB_CURRENT) {
4794                 if (!(mc->mc_flags & C_INITIALIZED))
4795                         return EINVAL;
4796                 rc = MDB_SUCCESS;
4797         } else if (mc->mc_db->md_root == P_INVALID) {
4798                 MDB_page *np;
4799                 /* new database, write a root leaf page */
4800                 DPUTS("allocating new root leaf page");
4801                 if ((rc = mdb_page_new(mc, P_LEAF, 1, &np))) {
4802                         return rc;
4803                 }
4804                 mc->mc_snum = 0;
4805                 mdb_cursor_push(mc, np);
4806                 mc->mc_db->md_root = np->mp_pgno;
4807                 mc->mc_db->md_depth++;
4808                 *mc->mc_dbflag = DB_DIRTY;
4809                 if ((mc->mc_db->md_flags & (MDB_DUPSORT|MDB_DUPFIXED))
4810                         == MDB_DUPFIXED)
4811                         np->mp_flags |= P_LEAF2;
4812                 mc->mc_flags |= C_INITIALIZED;
4813                 rc = MDB_NOTFOUND;
4814                 goto top;
4815         } else {
4816                 int exact = 0;
4817                 MDB_val d2;
4818                 if (flags & MDB_APPEND) {
4819                         MDB_val k2;
4820                         rc = mdb_cursor_last(mc, &k2, &d2);
4821                         if (rc == 0) {
4822                                 rc = mc->mc_dbx->md_cmp(key, &k2);
4823                                 if (rc > 0) {
4824                                         rc = MDB_NOTFOUND;
4825                                         mc->mc_ki[mc->mc_top]++;
4826                                 } else {
4827                                         rc = 0;
4828                                 }
4829                         }
4830                 } else {
4831                 rc = mdb_cursor_set(mc, key, &d2, MDB_SET, &exact);
4832                 }
4833                 if ((flags & MDB_NOOVERWRITE) && rc == 0) {
4834                         DPRINTF("duplicate key [%s]", DKEY(key));
4835                         *data = d2;
4836                         return MDB_KEYEXIST;
4837                 }
4838                 if (rc && rc != MDB_NOTFOUND)
4839                         return rc;
4840         }
4841
4842         /* Cursor is positioned, now make sure all pages are writable */
4843         rc2 = mdb_cursor_touch(mc);
4844         if (rc2)
4845                 return rc2;
4846
4847 top:
4848         /* The key already exists */
4849         if (rc == MDB_SUCCESS) {
4850                 /* there's only a key anyway, so this is a no-op */
4851                 if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
4852                         unsigned int ksize = mc->mc_db->md_pad;
4853                         if (key->mv_size != ksize)
4854                                 return EINVAL;
4855                         if (flags == MDB_CURRENT) {
4856                                 char *ptr = LEAF2KEY(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], ksize);
4857                                 memcpy(ptr, key->mv_data, ksize);
4858                         }
4859                         return MDB_SUCCESS;
4860                 }
4861
4862                 leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
4863
4864                 /* DB has dups? */
4865                 if (F_ISSET(mc->mc_db->md_flags, MDB_DUPSORT)) {
4866                         /* Was a single item before, must convert now */
4867 more:
4868                         if (!F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4869                                 /* Just overwrite the current item */
4870                                 if (flags == MDB_CURRENT)
4871                                         goto current;
4872
4873                                 dkey.mv_size = NODEDSZ(leaf);
4874                                 dkey.mv_data = NODEDATA(leaf);
4875 #if UINT_MAX < SIZE_MAX
4876                                 if (mc->mc_dbx->md_dcmp == mdb_cmp_int && dkey.mv_size == sizeof(size_t))
4877 #ifdef MISALIGNED_OK
4878                                         mc->mc_dbx->md_dcmp = mdb_cmp_long;
4879 #else
4880                                         mc->mc_dbx->md_dcmp = mdb_cmp_cint;
4881 #endif
4882 #endif
4883                                 /* if data matches, ignore it */
4884                                 if (!mc->mc_dbx->md_dcmp(data, &dkey))
4885                                         return (flags == MDB_NODUPDATA) ? MDB_KEYEXIST : MDB_SUCCESS;
4886
4887                                 /* create a fake page for the dup items */
4888                                 memcpy(dbuf, dkey.mv_data, dkey.mv_size);
4889                                 dkey.mv_data = dbuf;
4890                                 fp = (MDB_page *)&pbuf;
4891                                 fp->mp_pgno = mc->mc_pg[mc->mc_top]->mp_pgno;
4892                                 fp->mp_flags = P_LEAF|P_DIRTY|P_SUBP;
4893                                 fp->mp_lower = PAGEHDRSZ;
4894                                 fp->mp_upper = PAGEHDRSZ + dkey.mv_size + data->mv_size;
4895                                 if (mc->mc_db->md_flags & MDB_DUPFIXED) {
4896                                         fp->mp_flags |= P_LEAF2;
4897                                         fp->mp_pad = data->mv_size;
4898                                         fp->mp_upper += 2 * data->mv_size;      /* leave space for 2 more */
4899                                 } else {
4900                                         fp->mp_upper += 2 * sizeof(indx_t) + 2 * NODESIZE +
4901                                                 (dkey.mv_size & 1) + (data->mv_size & 1);
4902                                 }
4903                                 mdb_node_del(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], 0);
4904                                 do_sub = 1;
4905                                 rdata = &xdata;
4906                                 xdata.mv_size = fp->mp_upper;
4907                                 xdata.mv_data = fp;
4908                                 flags |= F_DUPDATA;
4909                                 goto new_sub;
4910                         }
4911                         if (!F_ISSET(leaf->mn_flags, F_SUBDATA)) {
4912                                 /* See if we need to convert from fake page to subDB */
4913                                 MDB_page *mp;
4914                                 unsigned int offset;
4915                                 unsigned int i;
4916
4917                                 fp = NODEDATA(leaf);
4918                                 if (flags == MDB_CURRENT) {
4919 reuse:
4920                                         fp->mp_flags |= P_DIRTY;
4921                                         COPY_PGNO(fp->mp_pgno, mc->mc_pg[mc->mc_top]->mp_pgno);
4922                                         mc->mc_xcursor->mx_cursor.mc_pg[0] = fp;
4923                                         flags |= F_DUPDATA;
4924                                         goto put_sub;
4925                                 }
4926                                 if (mc->mc_db->md_flags & MDB_DUPFIXED) {
4927                                         offset = fp->mp_pad;
4928                                         if (SIZELEFT(fp) >= offset)
4929                                                 goto reuse;
4930                                         offset *= 4;    /* space for 4 more */
4931                                 } else {
4932                                         offset = NODESIZE + sizeof(indx_t) + data->mv_size;
4933                                 }
4934                                 offset += offset & 1;
4935                                 if (NODESIZE + sizeof(indx_t) + NODEKSZ(leaf) + NODEDSZ(leaf) +
4936                                         offset >= (mc->mc_txn->mt_env->me_psize - PAGEHDRSZ) /
4937                                                 MDB_MINKEYS) {
4938                                         /* yes, convert it */
4939                                         dummy.md_flags = 0;
4940                                         if (mc->mc_db->md_flags & MDB_DUPFIXED) {
4941                                                 dummy.md_pad = fp->mp_pad;
4942                                                 dummy.md_flags = MDB_DUPFIXED;
4943                                                 if (mc->mc_db->md_flags & MDB_INTEGERDUP)
4944                                                         dummy.md_flags |= MDB_INTEGERKEY;
4945                                         }
4946                                         dummy.md_depth = 1;
4947                                         dummy.md_branch_pages = 0;
4948                                         dummy.md_leaf_pages = 1;
4949                                         dummy.md_overflow_pages = 0;
4950                                         dummy.md_entries = NUMKEYS(fp);
4951                                         rdata = &xdata;
4952                                         xdata.mv_size = sizeof(MDB_db);
4953                                         xdata.mv_data = &dummy;
4954                                         if ((rc = mdb_page_alloc(mc, 1, &mp)))
4955                                                 return rc;
4956                                         offset = mc->mc_txn->mt_env->me_psize - NODEDSZ(leaf);
4957                                         flags |= F_DUPDATA|F_SUBDATA;
4958                                         dummy.md_root = mp->mp_pgno;
4959                                 } else {
4960                                         /* no, just grow it */
4961                                         rdata = &xdata;
4962                                         xdata.mv_size = NODEDSZ(leaf) + offset;
4963                                         xdata.mv_data = &pbuf;
4964                                         mp = (MDB_page *)&pbuf;
4965                                         mp->mp_pgno = mc->mc_pg[mc->mc_top]->mp_pgno;
4966                                         flags |= F_DUPDATA;
4967                                 }
4968                                 mp->mp_flags = fp->mp_flags | P_DIRTY;
4969                                 mp->mp_pad   = fp->mp_pad;
4970                                 mp->mp_lower = fp->mp_lower;
4971                                 mp->mp_upper = fp->mp_upper + offset;
4972                                 if (IS_LEAF2(fp)) {
4973                                         memcpy(METADATA(mp), METADATA(fp), NUMKEYS(fp) * fp->mp_pad);
4974                                 } else {
4975                                         nsize = NODEDSZ(leaf) - fp->mp_upper;
4976                                         memcpy((char *)mp + mp->mp_upper, (char *)fp + fp->mp_upper, nsize);
4977                                         for (i=0; i<NUMKEYS(fp); i++)
4978                                                 mp->mp_ptrs[i] = fp->mp_ptrs[i] + offset;
4979                                 }
4980                                 mdb_node_del(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], 0);
4981                                 do_sub = 1;
4982                                 goto new_sub;
4983                         }
4984                         /* data is on sub-DB, just store it */
4985                         flags |= F_DUPDATA|F_SUBDATA;
4986                         goto put_sub;
4987                 }
4988 current:
4989                 /* overflow page overwrites need special handling */
4990                 if (F_ISSET(leaf->mn_flags, F_BIGDATA)) {
4991                         MDB_page *omp;
4992                         pgno_t pg;
4993                         int ovpages, dpages;
4994
4995                         ovpages = OVPAGES(NODEDSZ(leaf), mc->mc_txn->mt_env->me_psize);
4996                         dpages = OVPAGES(data->mv_size, mc->mc_txn->mt_env->me_psize);
4997                         memcpy(&pg, NODEDATA(leaf), sizeof(pg));
4998                         mdb_page_get(mc->mc_txn, pg, &omp);
4999                         /* Is the ov page writable and large enough? */
5000                         if ((omp->mp_flags & P_DIRTY) && ovpages >= dpages) {
5001                                 /* yes, overwrite it. Note in this case we don't
5002                                  * bother to try shrinking the node if the new data
5003                                  * is smaller than the overflow threshold.
5004                                  */
5005                                 if (F_ISSET(flags, MDB_RESERVE))
5006                                         data->mv_data = METADATA(omp);
5007                                 else
5008                                         memcpy(METADATA(omp), data->mv_data, data->mv_size);
5009                                 goto done;
5010                         } else {
5011                                 /* no, free ovpages */
5012                                 int i;
5013                                 mc->mc_db->md_overflow_pages -= ovpages;
5014                                 for (i=0; i<ovpages; i++) {
5015                                         DPRINTF("freed ov page %zu", pg);
5016                                         mdb_midl_append(&mc->mc_txn->mt_free_pgs, pg);
5017                                         pg++;
5018                                 }
5019                         }
5020                 } else if (NODEDSZ(leaf) == data->mv_size) {
5021                         /* same size, just replace it. Note that we could
5022                          * also reuse this node if the new data is smaller,
5023                          * but instead we opt to shrink the node in that case.
5024                          */
5025                         if (F_ISSET(flags, MDB_RESERVE))
5026                                 data->mv_data = NODEDATA(leaf);
5027                         else
5028                                 memcpy(NODEDATA(leaf), data->mv_data, data->mv_size);
5029                         goto done;
5030                 }
5031                 mdb_node_del(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], 0);
5032                 mc->mc_db->md_entries--;
5033         } else {
5034                 DPRINTF("inserting key at index %i", mc->mc_ki[mc->mc_top]);
5035                 insert = 1;
5036         }
5037
5038         rdata = data;
5039
5040 new_sub:
5041         nflags = flags & NODE_ADD_FLAGS;
5042         nsize = IS_LEAF2(mc->mc_pg[mc->mc_top]) ? key->mv_size : mdb_leaf_size(mc->mc_txn->mt_env, key, rdata);
5043         if (SIZELEFT(mc->mc_pg[mc->mc_top]) < nsize) {
5044                 if (( flags & (F_DUPDATA|F_SUBDATA)) == F_DUPDATA )
5045                         nflags &= ~MDB_APPEND;
5046                 if (!insert)
5047                         nflags |= MDB_SPLIT_REPLACE;
5048                 rc = mdb_page_split(mc, key, rdata, P_INVALID, nflags);
5049         } else {
5050                 /* There is room already in this leaf page. */
5051                 rc = mdb_node_add(mc, mc->mc_ki[mc->mc_top], key, rdata, 0, nflags);
5052                 if (rc == 0 && !do_sub && insert) {
5053                         /* Adjust other cursors pointing to mp */
5054                         MDB_cursor *m2, *m3;
5055                         MDB_dbi dbi = mc->mc_dbi;
5056                         unsigned i = mc->mc_top;
5057                         MDB_page *mp = mc->mc_pg[i];
5058
5059                         if (mc->mc_flags & C_SUB)
5060                                 dbi--;
5061
5062                         for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
5063                                 if (mc->mc_flags & C_SUB)
5064                                         m3 = &m2->mc_xcursor->mx_cursor;
5065                                 else
5066                                         m3 = m2;
5067                                 if (m3 == mc || m3->mc_snum < mc->mc_snum) continue;
5068                                 if (m3->mc_pg[i] == mp && m3->mc_ki[i] >= mc->mc_ki[i]) {
5069                                         m3->mc_ki[i]++;
5070                                 }
5071                         }
5072                 }
5073         }
5074
5075         if (rc != MDB_SUCCESS)
5076                 mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
5077         else {
5078                 /* Now store the actual data in the child DB. Note that we're
5079                  * storing the user data in the keys field, so there are strict
5080                  * size limits on dupdata. The actual data fields of the child
5081                  * DB are all zero size.
5082                  */
5083                 if (do_sub) {
5084                         int xflags;
5085 put_sub:
5086                         xdata.mv_size = 0;
5087                         xdata.mv_data = "";
5088                         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
5089                         if (flags & MDB_CURRENT) {
5090                                 xflags = MDB_CURRENT;
5091                         } else {
5092                                 mdb_xcursor_init1(mc, leaf);
5093                                 xflags = (flags & MDB_NODUPDATA) ? MDB_NOOVERWRITE : 0;
5094                         }
5095                         /* converted, write the original data first */
5096                         if (dkey.mv_size) {
5097                                 rc = mdb_cursor_put(&mc->mc_xcursor->mx_cursor, &dkey, &xdata, xflags);
5098                                 if (rc)
5099                                         return rc;
5100                                 {
5101                                         /* Adjust other cursors pointing to mp */
5102                                         MDB_cursor *m2;
5103                                         unsigned i = mc->mc_top;
5104                                         MDB_page *mp = mc->mc_pg[i];
5105
5106                                         for (m2 = mc->mc_txn->mt_cursors[mc->mc_dbi]; m2; m2=m2->mc_next) {
5107                                                 if (m2 == mc || m2->mc_snum < mc->mc_snum) continue;
5108                                                 if (m2->mc_pg[i] == mp && m2->mc_ki[i] == mc->mc_ki[i]) {
5109                                                         mdb_xcursor_init1(m2, leaf);
5110                                                 }
5111                                         }
5112                                 }
5113                         }
5114                         if (flags & MDB_APPENDDUP)
5115                                 xflags |= MDB_APPEND;
5116                         rc = mdb_cursor_put(&mc->mc_xcursor->mx_cursor, data, &xdata, xflags);
5117                         if (flags & F_SUBDATA) {
5118                                 void *db = NODEDATA(leaf);
5119                                 memcpy(db, &mc->mc_xcursor->mx_db, sizeof(MDB_db));
5120                         }
5121                 }
5122                 /* sub-writes might have failed so check rc again.
5123                  * Don't increment count if we just replaced an existing item.
5124                  */
5125                 if (!rc && !(flags & MDB_CURRENT))
5126                         mc->mc_db->md_entries++;
5127                 if (flags & MDB_MULTIPLE) {
5128                         mcount++;
5129                         if (mcount < data[1].mv_size) {
5130                                 data[0].mv_data = (char *)data[0].mv_data + data[0].mv_size;
5131                                 leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
5132                                 goto more;
5133                         }
5134                 }
5135         }
5136 done:
5137         return rc;
5138 }
5139
5140 int
5141 mdb_cursor_del(MDB_cursor *mc, unsigned int flags)
5142 {
5143         MDB_node        *leaf;
5144         int rc;
5145
5146         if (F_ISSET(mc->mc_txn->mt_flags, MDB_TXN_RDONLY))
5147                 return EACCES;
5148
5149         if (!mc->mc_flags & C_INITIALIZED)
5150                 return EINVAL;
5151
5152         rc = mdb_cursor_touch(mc);
5153         if (rc)
5154                 return rc;
5155
5156         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
5157
5158         if (!IS_LEAF2(mc->mc_pg[mc->mc_top]) && F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5159                 if (flags != MDB_NODUPDATA) {
5160                         if (!F_ISSET(leaf->mn_flags, F_SUBDATA)) {
5161                                 mc->mc_xcursor->mx_cursor.mc_pg[0] = NODEDATA(leaf);
5162                         }
5163                         rc = mdb_cursor_del(&mc->mc_xcursor->mx_cursor, 0);
5164                         /* If sub-DB still has entries, we're done */
5165                         if (mc->mc_xcursor->mx_db.md_entries) {
5166                                 if (leaf->mn_flags & F_SUBDATA) {
5167                                         /* update subDB info */
5168                                         void *db = NODEDATA(leaf);
5169                                         memcpy(db, &mc->mc_xcursor->mx_db, sizeof(MDB_db));
5170                                 } else {
5171                                         /* shrink fake page */
5172                                         mdb_node_shrink(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
5173                                 }
5174                                 mc->mc_db->md_entries--;
5175                                 return rc;
5176                         }
5177                         /* otherwise fall thru and delete the sub-DB */
5178                 }
5179
5180                 if (leaf->mn_flags & F_SUBDATA) {
5181                         /* add all the child DB's pages to the free list */
5182                         rc = mdb_drop0(&mc->mc_xcursor->mx_cursor, 0);
5183                         if (rc == MDB_SUCCESS) {
5184                                 mc->mc_db->md_entries -=
5185                                         mc->mc_xcursor->mx_db.md_entries;
5186                         }
5187                 }
5188         }
5189
5190         return mdb_cursor_del0(mc, leaf);
5191 }
5192
5193 /** Allocate and initialize new pages for a database.
5194  * @param[in] mc a cursor on the database being added to.
5195  * @param[in] flags flags defining what type of page is being allocated.
5196  * @param[in] num the number of pages to allocate. This is usually 1,
5197  * unless allocating overflow pages for a large record.
5198  * @param[out] mp Address of a page, or NULL on failure.
5199  * @return 0 on success, non-zero on failure.
5200  */
5201 static int
5202 mdb_page_new(MDB_cursor *mc, uint32_t flags, int num, MDB_page **mp)
5203 {
5204         MDB_page        *np;
5205         int rc;
5206
5207         if ((rc = mdb_page_alloc(mc, num, &np)))
5208                 return rc;
5209         DPRINTF("allocated new mpage %zu, page size %u",
5210             np->mp_pgno, mc->mc_txn->mt_env->me_psize);
5211         np->mp_flags = flags | P_DIRTY;
5212         np->mp_lower = PAGEHDRSZ;
5213         np->mp_upper = mc->mc_txn->mt_env->me_psize;
5214
5215         if (IS_BRANCH(np))
5216                 mc->mc_db->md_branch_pages++;
5217         else if (IS_LEAF(np))
5218                 mc->mc_db->md_leaf_pages++;
5219         else if (IS_OVERFLOW(np)) {
5220                 mc->mc_db->md_overflow_pages += num;
5221                 np->mp_pages = num;
5222         }
5223         *mp = np;
5224
5225         return 0;
5226 }
5227
5228 /** Calculate the size of a leaf node.
5229  * The size depends on the environment's page size; if a data item
5230  * is too large it will be put onto an overflow page and the node
5231  * size will only include the key and not the data. Sizes are always
5232  * rounded up to an even number of bytes, to guarantee 2-byte alignment
5233  * of the #MDB_node headers.
5234  * @param[in] env The environment handle.
5235  * @param[in] key The key for the node.
5236  * @param[in] data The data for the node.
5237  * @return The number of bytes needed to store the node.
5238  */
5239 static size_t
5240 mdb_leaf_size(MDB_env *env, MDB_val *key, MDB_val *data)
5241 {
5242         size_t           sz;
5243
5244         sz = LEAFSIZE(key, data);
5245         if (sz >= env->me_psize / MDB_MINKEYS) {
5246                 /* put on overflow page */
5247                 sz -= data->mv_size - sizeof(pgno_t);
5248         }
5249         sz += sz & 1;
5250
5251         return sz + sizeof(indx_t);
5252 }
5253
5254 /** Calculate the size of a branch node.
5255  * The size should depend on the environment's page size but since
5256  * we currently don't support spilling large keys onto overflow
5257  * pages, it's simply the size of the #MDB_node header plus the
5258  * size of the key. Sizes are always rounded up to an even number
5259  * of bytes, to guarantee 2-byte alignment of the #MDB_node headers.
5260  * @param[in] env The environment handle.
5261  * @param[in] key The key for the node.
5262  * @return The number of bytes needed to store the node.
5263  */
5264 static size_t
5265 mdb_branch_size(MDB_env *env, MDB_val *key)
5266 {
5267         size_t           sz;
5268
5269         sz = INDXSIZE(key);
5270         if (sz >= env->me_psize / MDB_MINKEYS) {
5271                 /* put on overflow page */
5272                 /* not implemented */
5273                 /* sz -= key->size - sizeof(pgno_t); */
5274         }
5275
5276         return sz + sizeof(indx_t);
5277 }
5278
5279 /** Add a node to the page pointed to by the cursor.
5280  * @param[in] mc The cursor for this operation.
5281  * @param[in] indx The index on the page where the new node should be added.
5282  * @param[in] key The key for the new node.
5283  * @param[in] data The data for the new node, if any.
5284  * @param[in] pgno The page number, if adding a branch node.
5285  * @param[in] flags Flags for the node.
5286  * @return 0 on success, non-zero on failure. Possible errors are:
5287  * <ul>
5288  *      <li>ENOMEM - failed to allocate overflow pages for the node.
5289  *      <li>MDB_PAGE_FULL - there is insufficient room in the page. This error
5290  *      should never happen since all callers already calculate the
5291  *      page's free space before calling this function.
5292  * </ul>
5293  */
5294 static int
5295 mdb_node_add(MDB_cursor *mc, indx_t indx,
5296     MDB_val *key, MDB_val *data, pgno_t pgno, unsigned int flags)
5297 {
5298         unsigned int     i;
5299         size_t           node_size = NODESIZE;
5300         indx_t           ofs;
5301         MDB_node        *node;
5302         MDB_page        *mp = mc->mc_pg[mc->mc_top];
5303         MDB_page        *ofp = NULL;            /* overflow page */
5304         DKBUF;
5305
5306         assert(mp->mp_upper >= mp->mp_lower);
5307
5308         DPRINTF("add to %s %spage %zu index %i, data size %zu key size %zu [%s]",
5309             IS_LEAF(mp) ? "leaf" : "branch",
5310                 IS_SUBP(mp) ? "sub-" : "",
5311             mp->mp_pgno, indx, data ? data->mv_size : 0,
5312                 key ? key->mv_size : 0, key ? DKEY(key) : NULL);
5313
5314         if (IS_LEAF2(mp)) {
5315                 /* Move higher keys up one slot. */
5316                 int ksize = mc->mc_db->md_pad, dif;
5317                 char *ptr = LEAF2KEY(mp, indx, ksize);
5318                 dif = NUMKEYS(mp) - indx;
5319                 if (dif > 0)
5320                         memmove(ptr+ksize, ptr, dif*ksize);
5321                 /* insert new key */
5322                 memcpy(ptr, key->mv_data, ksize);
5323
5324                 /* Just using these for counting */
5325                 mp->mp_lower += sizeof(indx_t);
5326                 mp->mp_upper -= ksize - sizeof(indx_t);
5327                 return MDB_SUCCESS;
5328         }
5329
5330         if (key != NULL)
5331                 node_size += key->mv_size;
5332
5333         if (IS_LEAF(mp)) {
5334                 assert(data);
5335                 if (F_ISSET(flags, F_BIGDATA)) {
5336                         /* Data already on overflow page. */
5337                         node_size += sizeof(pgno_t);
5338                 } else if (node_size + data->mv_size >= mc->mc_txn->mt_env->me_psize / MDB_MINKEYS) {
5339                         int ovpages = OVPAGES(data->mv_size, mc->mc_txn->mt_env->me_psize);
5340                         int rc;
5341                         /* Put data on overflow page. */
5342                         DPRINTF("data size is %zu, node would be %zu, put data on overflow page",
5343                             data->mv_size, node_size+data->mv_size);
5344                         node_size += sizeof(pgno_t);
5345                         if ((rc = mdb_page_new(mc, P_OVERFLOW, ovpages, &ofp)))
5346                                 return rc;
5347                         DPRINTF("allocated overflow page %zu", ofp->mp_pgno);
5348                         flags |= F_BIGDATA;
5349                 } else {
5350                         node_size += data->mv_size;
5351                 }
5352         }
5353         node_size += node_size & 1;
5354
5355         if (node_size + sizeof(indx_t) > SIZELEFT(mp)) {
5356                 DPRINTF("not enough room in page %zu, got %u ptrs",
5357                     mp->mp_pgno, NUMKEYS(mp));
5358                 DPRINTF("upper - lower = %u - %u = %u", mp->mp_upper, mp->mp_lower,
5359                     mp->mp_upper - mp->mp_lower);
5360                 DPRINTF("node size = %zu", node_size);
5361                 return MDB_PAGE_FULL;
5362         }
5363
5364         /* Move higher pointers up one slot. */
5365         for (i = NUMKEYS(mp); i > indx; i--)
5366                 mp->mp_ptrs[i] = mp->mp_ptrs[i - 1];
5367
5368         /* Adjust free space offsets. */
5369         ofs = mp->mp_upper - node_size;
5370         assert(ofs >= mp->mp_lower + sizeof(indx_t));
5371         mp->mp_ptrs[indx] = ofs;
5372         mp->mp_upper = ofs;
5373         mp->mp_lower += sizeof(indx_t);
5374
5375         /* Write the node data. */
5376         node = NODEPTR(mp, indx);
5377         node->mn_ksize = (key == NULL) ? 0 : key->mv_size;
5378         node->mn_flags = flags;
5379         if (IS_LEAF(mp))
5380                 SETDSZ(node,data->mv_size);
5381         else
5382                 SETPGNO(node,pgno);
5383
5384         if (key)
5385                 memcpy(NODEKEY(node), key->mv_data, key->mv_size);
5386
5387         if (IS_LEAF(mp)) {
5388                 assert(key);
5389                 if (ofp == NULL) {
5390                         if (F_ISSET(flags, F_BIGDATA))
5391                                 memcpy(node->mn_data + key->mv_size, data->mv_data,
5392                                     sizeof(pgno_t));
5393                         else if (F_ISSET(flags, MDB_RESERVE))
5394                                 data->mv_data = node->mn_data + key->mv_size;
5395                         else
5396                                 memcpy(node->mn_data + key->mv_size, data->mv_data,
5397                                     data->mv_size);
5398                 } else {
5399                         memcpy(node->mn_data + key->mv_size, &ofp->mp_pgno,
5400                             sizeof(pgno_t));
5401                         if (F_ISSET(flags, MDB_RESERVE))
5402                                 data->mv_data = METADATA(ofp);
5403                         else
5404                                 memcpy(METADATA(ofp), data->mv_data, data->mv_size);
5405                 }
5406         }
5407
5408         return MDB_SUCCESS;
5409 }
5410
5411 /** Delete the specified node from a page.
5412  * @param[in] mp The page to operate on.
5413  * @param[in] indx The index of the node to delete.
5414  * @param[in] ksize The size of a node. Only used if the page is
5415  * part of a #MDB_DUPFIXED database.
5416  */
5417 static void
5418 mdb_node_del(MDB_page *mp, indx_t indx, int ksize)
5419 {
5420         unsigned int     sz;
5421         indx_t           i, j, numkeys, ptr;
5422         MDB_node        *node;
5423         char            *base;
5424
5425 #if MDB_DEBUG
5426         {
5427         pgno_t pgno;
5428         COPY_PGNO(pgno, mp->mp_pgno);
5429         DPRINTF("delete node %u on %s page %zu", indx,
5430             IS_LEAF(mp) ? "leaf" : "branch", pgno);
5431         }
5432 #endif
5433         assert(indx < NUMKEYS(mp));
5434
5435         if (IS_LEAF2(mp)) {
5436                 int x = NUMKEYS(mp) - 1 - indx;
5437                 base = LEAF2KEY(mp, indx, ksize);
5438                 if (x)
5439                         memmove(base, base + ksize, x * ksize);
5440                 mp->mp_lower -= sizeof(indx_t);
5441                 mp->mp_upper += ksize - sizeof(indx_t);
5442                 return;
5443         }
5444
5445         node = NODEPTR(mp, indx);
5446         sz = NODESIZE + node->mn_ksize;
5447         if (IS_LEAF(mp)) {
5448                 if (F_ISSET(node->mn_flags, F_BIGDATA))
5449                         sz += sizeof(pgno_t);
5450                 else
5451                         sz += NODEDSZ(node);
5452         }
5453         sz += sz & 1;
5454
5455         ptr = mp->mp_ptrs[indx];
5456         numkeys = NUMKEYS(mp);
5457         for (i = j = 0; i < numkeys; i++) {
5458                 if (i != indx) {
5459                         mp->mp_ptrs[j] = mp->mp_ptrs[i];
5460                         if (mp->mp_ptrs[i] < ptr)
5461                                 mp->mp_ptrs[j] += sz;
5462                         j++;
5463                 }
5464         }
5465
5466         base = (char *)mp + mp->mp_upper;
5467         memmove(base + sz, base, ptr - mp->mp_upper);
5468
5469         mp->mp_lower -= sizeof(indx_t);
5470         mp->mp_upper += sz;
5471 }
5472
5473 /** Compact the main page after deleting a node on a subpage.
5474  * @param[in] mp The main page to operate on.
5475  * @param[in] indx The index of the subpage on the main page.
5476  */
5477 static void
5478 mdb_node_shrink(MDB_page *mp, indx_t indx)
5479 {
5480         MDB_node *node;
5481         MDB_page *sp, *xp;
5482         char *base;
5483         int osize, nsize;
5484         int delta;
5485         indx_t           i, numkeys, ptr;
5486
5487         node = NODEPTR(mp, indx);
5488         sp = (MDB_page *)NODEDATA(node);
5489         osize = NODEDSZ(node);
5490
5491         delta = sp->mp_upper - sp->mp_lower;
5492         SETDSZ(node, osize - delta);
5493         xp = (MDB_page *)((char *)sp + delta);
5494
5495         /* shift subpage upward */
5496         if (IS_LEAF2(sp)) {
5497                 nsize = NUMKEYS(sp) * sp->mp_pad;
5498                 memmove(METADATA(xp), METADATA(sp), nsize);
5499         } else {
5500                 int i;
5501                 nsize = osize - sp->mp_upper;
5502                 numkeys = NUMKEYS(sp);
5503                 for (i=numkeys-1; i>=0; i--)
5504                         xp->mp_ptrs[i] = sp->mp_ptrs[i] - delta;
5505         }
5506         xp->mp_upper = sp->mp_lower;
5507         xp->mp_lower = sp->mp_lower;
5508         xp->mp_flags = sp->mp_flags;
5509         xp->mp_pad = sp->mp_pad;
5510         COPY_PGNO(xp->mp_pgno, mp->mp_pgno);
5511
5512         /* shift lower nodes upward */
5513         ptr = mp->mp_ptrs[indx];
5514         numkeys = NUMKEYS(mp);
5515         for (i = 0; i < numkeys; i++) {
5516                 if (mp->mp_ptrs[i] <= ptr)
5517                         mp->mp_ptrs[i] += delta;
5518         }
5519
5520         base = (char *)mp + mp->mp_upper;
5521         memmove(base + delta, base, ptr - mp->mp_upper + NODESIZE + NODEKSZ(node));
5522         mp->mp_upper += delta;
5523 }
5524
5525 /** Initial setup of a sorted-dups cursor.
5526  * Sorted duplicates are implemented as a sub-database for the given key.
5527  * The duplicate data items are actually keys of the sub-database.
5528  * Operations on the duplicate data items are performed using a sub-cursor
5529  * initialized when the sub-database is first accessed. This function does
5530  * the preliminary setup of the sub-cursor, filling in the fields that
5531  * depend only on the parent DB.
5532  * @param[in] mc The main cursor whose sorted-dups cursor is to be initialized.
5533  */
5534 static void
5535 mdb_xcursor_init0(MDB_cursor *mc)
5536 {
5537         MDB_xcursor *mx = mc->mc_xcursor;
5538
5539         mx->mx_cursor.mc_xcursor = NULL;
5540         mx->mx_cursor.mc_txn = mc->mc_txn;
5541         mx->mx_cursor.mc_db = &mx->mx_db;
5542         mx->mx_cursor.mc_dbx = &mx->mx_dbx;
5543         mx->mx_cursor.mc_dbi = mc->mc_dbi+1;
5544         mx->mx_cursor.mc_dbflag = &mx->mx_dbflag;
5545         mx->mx_cursor.mc_snum = 0;
5546         mx->mx_cursor.mc_top = 0;
5547         mx->mx_cursor.mc_flags = C_SUB;
5548         mx->mx_dbx.md_cmp = mc->mc_dbx->md_dcmp;
5549         mx->mx_dbx.md_dcmp = NULL;
5550         mx->mx_dbx.md_rel = mc->mc_dbx->md_rel;
5551 }
5552
5553 /** Final setup of a sorted-dups cursor.
5554  *      Sets up the fields that depend on the data from the main cursor.
5555  * @param[in] mc The main cursor whose sorted-dups cursor is to be initialized.
5556  * @param[in] node The data containing the #MDB_db record for the
5557  * sorted-dup database.
5558  */
5559 static void
5560 mdb_xcursor_init1(MDB_cursor *mc, MDB_node *node)
5561 {
5562         MDB_xcursor *mx = mc->mc_xcursor;
5563
5564         if (node->mn_flags & F_SUBDATA) {
5565                 memcpy(&mx->mx_db, NODEDATA(node), sizeof(MDB_db));
5566                 mx->mx_cursor.mc_pg[0] = 0;
5567                 mx->mx_cursor.mc_snum = 0;
5568                 mx->mx_cursor.mc_flags = C_SUB;
5569         } else {
5570                 MDB_page *fp = NODEDATA(node);
5571                 mx->mx_db.md_pad = mc->mc_pg[mc->mc_top]->mp_pad;
5572                 mx->mx_db.md_flags = 0;
5573                 mx->mx_db.md_depth = 1;
5574                 mx->mx_db.md_branch_pages = 0;
5575                 mx->mx_db.md_leaf_pages = 1;
5576                 mx->mx_db.md_overflow_pages = 0;
5577                 mx->mx_db.md_entries = NUMKEYS(fp);
5578                 COPY_PGNO(mx->mx_db.md_root, fp->mp_pgno);
5579                 mx->mx_cursor.mc_snum = 1;
5580                 mx->mx_cursor.mc_flags = C_INITIALIZED|C_SUB;
5581                 mx->mx_cursor.mc_top = 0;
5582                 mx->mx_cursor.mc_pg[0] = fp;
5583                 mx->mx_cursor.mc_ki[0] = 0;
5584                 if (mc->mc_db->md_flags & MDB_DUPFIXED) {
5585                         mx->mx_db.md_flags = MDB_DUPFIXED;
5586                         mx->mx_db.md_pad = fp->mp_pad;
5587                         if (mc->mc_db->md_flags & MDB_INTEGERDUP)
5588                                 mx->mx_db.md_flags |= MDB_INTEGERKEY;
5589                 }
5590         }
5591         DPRINTF("Sub-db %u for db %u root page %zu", mx->mx_cursor.mc_dbi, mc->mc_dbi,
5592                 mx->mx_db.md_root);
5593         mx->mx_dbflag = (F_ISSET(mc->mc_pg[mc->mc_top]->mp_flags, P_DIRTY)) ?
5594                 DB_DIRTY : 0;
5595         mx->mx_dbx.md_name.mv_data = NODEKEY(node);
5596         mx->mx_dbx.md_name.mv_size = node->mn_ksize;
5597 #if UINT_MAX < SIZE_MAX
5598         if (mx->mx_dbx.md_cmp == mdb_cmp_int && mx->mx_db.md_pad == sizeof(size_t))
5599 #ifdef MISALIGNED_OK
5600                 mx->mx_dbx.md_cmp = mdb_cmp_long;
5601 #else
5602                 mx->mx_dbx.md_cmp = mdb_cmp_cint;
5603 #endif
5604 #endif
5605 }
5606
5607 /** Initialize a cursor for a given transaction and database. */
5608 static void
5609 mdb_cursor_init(MDB_cursor *mc, MDB_txn *txn, MDB_dbi dbi, MDB_xcursor *mx)
5610 {
5611         mc->mc_orig = NULL;
5612         mc->mc_dbi = dbi;
5613         mc->mc_txn = txn;
5614         mc->mc_db = &txn->mt_dbs[dbi];
5615         mc->mc_dbx = &txn->mt_dbxs[dbi];
5616         mc->mc_dbflag = &txn->mt_dbflags[dbi];
5617         mc->mc_snum = 0;
5618         mc->mc_top = 0;
5619         mc->mc_pg[0] = 0;
5620         mc->mc_flags = 0;
5621         if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT) {
5622                 assert(mx != NULL);
5623                 mc->mc_xcursor = mx;
5624                 mdb_xcursor_init0(mc);
5625         } else {
5626                 mc->mc_xcursor = NULL;
5627         }
5628         if (*mc->mc_dbflag & DB_STALE) {
5629                 mdb_page_search(mc, NULL, MDB_PS_ROOTONLY);
5630         }
5631 }
5632
5633 int
5634 mdb_cursor_open(MDB_txn *txn, MDB_dbi dbi, MDB_cursor **ret)
5635 {
5636         MDB_cursor      *mc;
5637         MDB_xcursor     *mx = NULL;
5638         size_t size = sizeof(MDB_cursor);
5639
5640         if (txn == NULL || ret == NULL || dbi >= txn->mt_numdbs)
5641                 return EINVAL;
5642
5643         /* Allow read access to the freelist */
5644         if (!dbi && !F_ISSET(txn->mt_flags, MDB_TXN_RDONLY))
5645                 return EINVAL;
5646
5647         if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT)
5648                 size += sizeof(MDB_xcursor);
5649
5650         if ((mc = malloc(size)) != NULL) {
5651                 if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT) {
5652                         mx = (MDB_xcursor *)(mc + 1);
5653                 }
5654                 mdb_cursor_init(mc, txn, dbi, mx);
5655                 if (txn->mt_cursors) {
5656                         mc->mc_next = txn->mt_cursors[dbi];
5657                         txn->mt_cursors[dbi] = mc;
5658                 }
5659                 mc->mc_flags |= C_ALLOCD;
5660         } else {
5661                 return ENOMEM;
5662         }
5663
5664         *ret = mc;
5665
5666         return MDB_SUCCESS;
5667 }
5668
5669 int
5670 mdb_cursor_renew(MDB_txn *txn, MDB_cursor *mc)
5671 {
5672         if (txn == NULL || mc == NULL || mc->mc_dbi >= txn->mt_numdbs)
5673                 return EINVAL;
5674
5675         if (txn->mt_cursors)
5676                 return EINVAL;
5677
5678         mdb_cursor_init(mc, txn, mc->mc_dbi, mc->mc_xcursor);
5679         return MDB_SUCCESS;
5680 }
5681
5682 /* Return the count of duplicate data items for the current key */
5683 int
5684 mdb_cursor_count(MDB_cursor *mc, size_t *countp)
5685 {
5686         MDB_node        *leaf;
5687
5688         if (mc == NULL || countp == NULL)
5689                 return EINVAL;
5690
5691         if (!(mc->mc_db->md_flags & MDB_DUPSORT))
5692                 return EINVAL;
5693
5694         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
5695         if (!F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5696                 *countp = 1;
5697         } else {
5698                 if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED))
5699                         return EINVAL;
5700
5701                 *countp = mc->mc_xcursor->mx_db.md_entries;
5702         }
5703         return MDB_SUCCESS;
5704 }
5705
5706 void
5707 mdb_cursor_close(MDB_cursor *mc)
5708 {
5709         if (mc != NULL) {
5710                 /* remove from txn, if tracked */
5711                 if (mc->mc_txn->mt_cursors) {
5712                         MDB_cursor **prev = &mc->mc_txn->mt_cursors[mc->mc_dbi];
5713                         while (*prev && *prev != mc) prev = &(*prev)->mc_next;
5714                         if (*prev == mc)
5715                                 *prev = mc->mc_next;
5716                 }
5717                 if (mc->mc_flags & C_ALLOCD)
5718                         free(mc);
5719         }
5720 }
5721
5722 MDB_txn *
5723 mdb_cursor_txn(MDB_cursor *mc)
5724 {
5725         if (!mc) return NULL;
5726         return mc->mc_txn;
5727 }
5728
5729 MDB_dbi
5730 mdb_cursor_dbi(MDB_cursor *mc)
5731 {
5732         assert(mc != NULL);
5733         return mc->mc_dbi;
5734 }
5735
5736 /** Replace the key for a node with a new key.
5737  * @param[in] mp The page containing the node to operate on.
5738  * @param[in] indx The index of the node to operate on.
5739  * @param[in] key The new key to use.
5740  * @return 0 on success, non-zero on failure.
5741  */
5742 static int
5743 mdb_update_key(MDB_page *mp, indx_t indx, MDB_val *key)
5744 {
5745         MDB_node                *node;
5746         char                    *base;
5747         size_t                   len;
5748         int                      delta, delta0;
5749         indx_t                   ptr, i, numkeys;
5750         DKBUF;
5751
5752         node = NODEPTR(mp, indx);
5753         ptr = mp->mp_ptrs[indx];
5754 #if MDB_DEBUG
5755         {
5756                 MDB_val k2;
5757                 char kbuf2[(MAXKEYSIZE*2+1)];
5758                 k2.mv_data = NODEKEY(node);
5759                 k2.mv_size = node->mn_ksize;
5760                 DPRINTF("update key %u (ofs %u) [%s] to [%s] on page %zu",
5761                         indx, ptr,
5762                         mdb_dkey(&k2, kbuf2),
5763                         DKEY(key),
5764                         mp->mp_pgno);
5765         }
5766 #endif
5767
5768         delta0 = delta = key->mv_size - node->mn_ksize;
5769
5770         /* Must be 2-byte aligned. If new key is
5771          * shorter by 1, the shift will be skipped.
5772          */
5773         delta += (delta & 1);
5774         if (delta) {
5775                 if (delta > 0 && SIZELEFT(mp) < delta) {
5776                         DPRINTF("OUCH! Not enough room, delta = %d", delta);
5777                         return MDB_PAGE_FULL;
5778                 }
5779
5780                 numkeys = NUMKEYS(mp);
5781                 for (i = 0; i < numkeys; i++) {
5782                         if (mp->mp_ptrs[i] <= ptr)
5783                                 mp->mp_ptrs[i] -= delta;
5784                 }
5785
5786                 base = (char *)mp + mp->mp_upper;
5787                 len = ptr - mp->mp_upper + NODESIZE;
5788                 memmove(base - delta, base, len);
5789                 mp->mp_upper -= delta;
5790
5791                 node = NODEPTR(mp, indx);
5792         }
5793
5794         /* But even if no shift was needed, update ksize */
5795         if (delta0)
5796                 node->mn_ksize = key->mv_size;
5797
5798         if (key->mv_size)
5799                 memcpy(NODEKEY(node), key->mv_data, key->mv_size);
5800
5801         return MDB_SUCCESS;
5802 }
5803
5804 /** Move a node from csrc to cdst.
5805  */
5806 static int
5807 mdb_node_move(MDB_cursor *csrc, MDB_cursor *cdst)
5808 {
5809         int                      rc;
5810         MDB_node                *srcnode;
5811         MDB_val          key, data;
5812         pgno_t  srcpg;
5813         unsigned short flags;
5814
5815         DKBUF;
5816
5817         /* Mark src and dst as dirty. */
5818         if ((rc = mdb_page_touch(csrc)) ||
5819             (rc = mdb_page_touch(cdst)))
5820                 return rc;
5821
5822         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
5823                 srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);        /* fake */
5824                 key.mv_size = csrc->mc_db->md_pad;
5825                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], csrc->mc_ki[csrc->mc_top], key.mv_size);
5826                 data.mv_size = 0;
5827                 data.mv_data = NULL;
5828                 srcpg = 0;
5829                 flags = 0;
5830         } else {
5831                 srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], csrc->mc_ki[csrc->mc_top]);
5832                 assert(!((long)srcnode&1));
5833                 srcpg = NODEPGNO(srcnode);
5834                 flags = srcnode->mn_flags;
5835                 if (csrc->mc_ki[csrc->mc_top] == 0 && IS_BRANCH(csrc->mc_pg[csrc->mc_top])) {
5836                         unsigned int snum = csrc->mc_snum;
5837                         MDB_node *s2;
5838                         /* must find the lowest key below src */
5839                         mdb_page_search_root(csrc, NULL, 0);
5840                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
5841                                 key.mv_size = csrc->mc_db->md_pad;
5842                                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], 0, key.mv_size);
5843                         } else {
5844                                 s2 = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);
5845                                 key.mv_size = NODEKSZ(s2);
5846                                 key.mv_data = NODEKEY(s2);
5847                         }
5848                         csrc->mc_snum = snum--;
5849                         csrc->mc_top = snum;
5850                 } else {
5851                         key.mv_size = NODEKSZ(srcnode);
5852                         key.mv_data = NODEKEY(srcnode);
5853                 }
5854                 data.mv_size = NODEDSZ(srcnode);
5855                 data.mv_data = NODEDATA(srcnode);
5856         }
5857         if (IS_BRANCH(cdst->mc_pg[cdst->mc_top]) && cdst->mc_ki[cdst->mc_top] == 0) {
5858                 unsigned int snum = cdst->mc_snum;
5859                 MDB_node *s2;
5860                 MDB_val bkey;
5861                 /* must find the lowest key below dst */
5862                 mdb_page_search_root(cdst, NULL, 0);
5863                 if (IS_LEAF2(cdst->mc_pg[cdst->mc_top])) {
5864                         bkey.mv_size = cdst->mc_db->md_pad;
5865                         bkey.mv_data = LEAF2KEY(cdst->mc_pg[cdst->mc_top], 0, bkey.mv_size);
5866                 } else {
5867                         s2 = NODEPTR(cdst->mc_pg[cdst->mc_top], 0);
5868                         bkey.mv_size = NODEKSZ(s2);
5869                         bkey.mv_data = NODEKEY(s2);
5870                 }
5871                 cdst->mc_snum = snum--;
5872                 cdst->mc_top = snum;
5873                 rc = mdb_update_key(cdst->mc_pg[cdst->mc_top], 0, &bkey);
5874         }
5875
5876         DPRINTF("moving %s node %u [%s] on page %zu to node %u on page %zu",
5877             IS_LEAF(csrc->mc_pg[csrc->mc_top]) ? "leaf" : "branch",
5878             csrc->mc_ki[csrc->mc_top],
5879                 DKEY(&key),
5880             csrc->mc_pg[csrc->mc_top]->mp_pgno,
5881             cdst->mc_ki[cdst->mc_top], cdst->mc_pg[cdst->mc_top]->mp_pgno);
5882
5883         /* Add the node to the destination page.
5884          */
5885         rc = mdb_node_add(cdst, cdst->mc_ki[cdst->mc_top], &key, &data, srcpg, flags);
5886         if (rc != MDB_SUCCESS)
5887                 return rc;
5888
5889         /* Delete the node from the source page.
5890          */
5891         mdb_node_del(csrc->mc_pg[csrc->mc_top], csrc->mc_ki[csrc->mc_top], key.mv_size);
5892
5893         {
5894                 /* Adjust other cursors pointing to mp */
5895                 MDB_cursor *m2, *m3;
5896                 MDB_dbi dbi = csrc->mc_dbi;
5897                 MDB_page *mp = csrc->mc_pg[csrc->mc_top];
5898
5899                 if (csrc->mc_flags & C_SUB)
5900                         dbi--;
5901
5902                 for (m2 = csrc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
5903                         if (m2 == csrc) continue;
5904                         if (csrc->mc_flags & C_SUB)
5905                                 m3 = &m2->mc_xcursor->mx_cursor;
5906                         else
5907                                 m3 = m2;
5908                         if (m3->mc_pg[csrc->mc_top] == mp && m3->mc_ki[csrc->mc_top] ==
5909                                 csrc->mc_ki[csrc->mc_top]) {
5910                                 m3->mc_pg[csrc->mc_top] = cdst->mc_pg[cdst->mc_top];
5911                                 m3->mc_ki[csrc->mc_top] = cdst->mc_ki[cdst->mc_top];
5912                         }
5913                 }
5914         }
5915
5916         /* Update the parent separators.
5917          */
5918         if (csrc->mc_ki[csrc->mc_top] == 0) {
5919                 if (csrc->mc_ki[csrc->mc_top-1] != 0) {
5920                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
5921                                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], 0, key.mv_size);
5922                         } else {
5923                                 srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);
5924                                 key.mv_size = NODEKSZ(srcnode);
5925                                 key.mv_data = NODEKEY(srcnode);
5926                         }
5927                         DPRINTF("update separator for source page %zu to [%s]",
5928                                 csrc->mc_pg[csrc->mc_top]->mp_pgno, DKEY(&key));
5929                         if ((rc = mdb_update_key(csrc->mc_pg[csrc->mc_top-1], csrc->mc_ki[csrc->mc_top-1],
5930                                 &key)) != MDB_SUCCESS)
5931                                 return rc;
5932                 }
5933                 if (IS_BRANCH(csrc->mc_pg[csrc->mc_top])) {
5934                         MDB_val  nullkey;
5935                         nullkey.mv_size = 0;
5936                         rc = mdb_update_key(csrc->mc_pg[csrc->mc_top], 0, &nullkey);
5937                         assert(rc == MDB_SUCCESS);
5938                 }
5939         }
5940
5941         if (cdst->mc_ki[cdst->mc_top] == 0) {
5942                 if (cdst->mc_ki[cdst->mc_top-1] != 0) {
5943                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
5944                                 key.mv_data = LEAF2KEY(cdst->mc_pg[cdst->mc_top], 0, key.mv_size);
5945                         } else {
5946                                 srcnode = NODEPTR(cdst->mc_pg[cdst->mc_top], 0);
5947                                 key.mv_size = NODEKSZ(srcnode);
5948                                 key.mv_data = NODEKEY(srcnode);
5949                         }
5950                         DPRINTF("update separator for destination page %zu to [%s]",
5951                                 cdst->mc_pg[cdst->mc_top]->mp_pgno, DKEY(&key));
5952                         if ((rc = mdb_update_key(cdst->mc_pg[cdst->mc_top-1], cdst->mc_ki[cdst->mc_top-1],
5953                                 &key)) != MDB_SUCCESS)
5954                                 return rc;
5955                 }
5956                 if (IS_BRANCH(cdst->mc_pg[cdst->mc_top])) {
5957                         MDB_val  nullkey;
5958                         nullkey.mv_size = 0;
5959                         rc = mdb_update_key(cdst->mc_pg[cdst->mc_top], 0, &nullkey);
5960                         assert(rc == MDB_SUCCESS);
5961                 }
5962         }
5963
5964         return MDB_SUCCESS;
5965 }
5966
5967 /** Merge one page into another.
5968  *  The nodes from the page pointed to by \b csrc will
5969  *      be copied to the page pointed to by \b cdst and then
5970  *      the \b csrc page will be freed.
5971  * @param[in] csrc Cursor pointing to the source page.
5972  * @param[in] cdst Cursor pointing to the destination page.
5973  */
5974 static int
5975 mdb_page_merge(MDB_cursor *csrc, MDB_cursor *cdst)
5976 {
5977         int                      rc;
5978         indx_t                   i, j;
5979         MDB_node                *srcnode;
5980         MDB_val          key, data;
5981         unsigned        nkeys;
5982
5983         DPRINTF("merging page %zu into %zu", csrc->mc_pg[csrc->mc_top]->mp_pgno,
5984                 cdst->mc_pg[cdst->mc_top]->mp_pgno);
5985
5986         assert(csrc->mc_snum > 1);      /* can't merge root page */
5987         assert(cdst->mc_snum > 1);
5988
5989         /* Mark dst as dirty. */
5990         if ((rc = mdb_page_touch(cdst)))
5991                 return rc;
5992
5993         /* Move all nodes from src to dst.
5994          */
5995         j = nkeys = NUMKEYS(cdst->mc_pg[cdst->mc_top]);
5996         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
5997                 key.mv_size = csrc->mc_db->md_pad;
5998                 key.mv_data = METADATA(csrc->mc_pg[csrc->mc_top]);
5999                 for (i = 0; i < NUMKEYS(csrc->mc_pg[csrc->mc_top]); i++, j++) {
6000                         rc = mdb_node_add(cdst, j, &key, NULL, 0, 0);
6001                         if (rc != MDB_SUCCESS)
6002                                 return rc;
6003                         key.mv_data = (char *)key.mv_data + key.mv_size;
6004                 }
6005         } else {
6006                 for (i = 0; i < NUMKEYS(csrc->mc_pg[csrc->mc_top]); i++, j++) {
6007                         srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], i);
6008                         if (i == 0 && IS_BRANCH(csrc->mc_pg[csrc->mc_top])) {
6009                                 unsigned int snum = csrc->mc_snum;
6010                                 MDB_node *s2;
6011                                 /* must find the lowest key below src */
6012                                 mdb_page_search_root(csrc, NULL, 0);
6013                                 if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
6014                                         key.mv_size = csrc->mc_db->md_pad;
6015                                         key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], 0, key.mv_size);
6016                                 } else {
6017                                         s2 = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);
6018                                         key.mv_size = NODEKSZ(s2);
6019                                         key.mv_data = NODEKEY(s2);
6020                                 }
6021                                 csrc->mc_snum = snum--;
6022                                 csrc->mc_top = snum;
6023                         } else {
6024                                 key.mv_size = srcnode->mn_ksize;
6025                                 key.mv_data = NODEKEY(srcnode);
6026                         }
6027
6028                         data.mv_size = NODEDSZ(srcnode);
6029                         data.mv_data = NODEDATA(srcnode);
6030                         rc = mdb_node_add(cdst, j, &key, &data, NODEPGNO(srcnode), srcnode->mn_flags);
6031                         if (rc != MDB_SUCCESS)
6032                                 return rc;
6033                 }
6034         }
6035
6036         DPRINTF("dst page %zu now has %u keys (%.1f%% filled)",
6037             cdst->mc_pg[cdst->mc_top]->mp_pgno, NUMKEYS(cdst->mc_pg[cdst->mc_top]), (float)PAGEFILL(cdst->mc_txn->mt_env, cdst->mc_pg[cdst->mc_top]) / 10);
6038
6039         /* Unlink the src page from parent and add to free list.
6040          */
6041         mdb_node_del(csrc->mc_pg[csrc->mc_top-1], csrc->mc_ki[csrc->mc_top-1], 0);
6042         if (csrc->mc_ki[csrc->mc_top-1] == 0) {
6043                 key.mv_size = 0;
6044                 if ((rc = mdb_update_key(csrc->mc_pg[csrc->mc_top-1], 0, &key)) != MDB_SUCCESS)
6045                         return rc;
6046         }
6047
6048         mdb_midl_append(&csrc->mc_txn->mt_free_pgs, csrc->mc_pg[csrc->mc_top]->mp_pgno);
6049         if (IS_LEAF(csrc->mc_pg[csrc->mc_top]))
6050                 csrc->mc_db->md_leaf_pages--;
6051         else
6052                 csrc->mc_db->md_branch_pages--;
6053         {
6054                 /* Adjust other cursors pointing to mp */
6055                 MDB_cursor *m2, *m3;
6056                 MDB_dbi dbi = csrc->mc_dbi;
6057                 MDB_page *mp = cdst->mc_pg[cdst->mc_top];
6058
6059                 if (csrc->mc_flags & C_SUB)
6060                         dbi--;
6061
6062                 for (m2 = csrc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
6063                         if (csrc->mc_flags & C_SUB)
6064                                 m3 = &m2->mc_xcursor->mx_cursor;
6065                         else
6066                                 m3 = m2;
6067                         if (m3 == csrc) continue;
6068                         if (m3->mc_snum < csrc->mc_snum) continue;
6069                         if (m3->mc_pg[csrc->mc_top] == csrc->mc_pg[csrc->mc_top]) {
6070                                 m3->mc_pg[csrc->mc_top] = mp;
6071                                 m3->mc_ki[csrc->mc_top] += nkeys;
6072                         }
6073                 }
6074         }
6075         mdb_cursor_pop(csrc);
6076
6077         return mdb_rebalance(csrc);
6078 }
6079
6080 /** Copy the contents of a cursor.
6081  * @param[in] csrc The cursor to copy from.
6082  * @param[out] cdst The cursor to copy to.
6083  */
6084 static void
6085 mdb_cursor_copy(const MDB_cursor *csrc, MDB_cursor *cdst)
6086 {
6087         unsigned int i;
6088
6089         cdst->mc_txn = csrc->mc_txn;
6090         cdst->mc_dbi = csrc->mc_dbi;
6091         cdst->mc_db  = csrc->mc_db;
6092         cdst->mc_dbx = csrc->mc_dbx;
6093         cdst->mc_snum = csrc->mc_snum;
6094         cdst->mc_top = csrc->mc_top;
6095         cdst->mc_flags = csrc->mc_flags;
6096
6097         for (i=0; i<csrc->mc_snum; i++) {
6098                 cdst->mc_pg[i] = csrc->mc_pg[i];
6099                 cdst->mc_ki[i] = csrc->mc_ki[i];
6100         }
6101 }
6102
6103 /** Rebalance the tree after a delete operation.
6104  * @param[in] mc Cursor pointing to the page where rebalancing
6105  * should begin.
6106  * @return 0 on success, non-zero on failure.
6107  */
6108 static int
6109 mdb_rebalance(MDB_cursor *mc)
6110 {
6111         MDB_node        *node;
6112         int rc;
6113         unsigned int ptop;
6114         MDB_cursor      mn;
6115
6116 #if MDB_DEBUG
6117         {
6118         pgno_t pgno;
6119         COPY_PGNO(pgno, mc->mc_pg[mc->mc_top]->mp_pgno);
6120         DPRINTF("rebalancing %s page %zu (has %u keys, %.1f%% full)",
6121             IS_LEAF(mc->mc_pg[mc->mc_top]) ? "leaf" : "branch",
6122             pgno, NUMKEYS(mc->mc_pg[mc->mc_top]), (float)PAGEFILL(mc->mc_txn->mt_env, mc->mc_pg[mc->mc_top]) / 10);
6123         }
6124 #endif
6125
6126         if (PAGEFILL(mc->mc_txn->mt_env, mc->mc_pg[mc->mc_top]) >= FILL_THRESHOLD) {
6127 #if MDB_DEBUG
6128                 pgno_t pgno;
6129                 COPY_PGNO(pgno, mc->mc_pg[mc->mc_top]->mp_pgno);
6130                 DPRINTF("no need to rebalance page %zu, above fill threshold",
6131                     pgno);
6132 #endif
6133                 return MDB_SUCCESS;
6134         }
6135
6136         if (mc->mc_snum < 2) {
6137                 MDB_page *mp = mc->mc_pg[0];
6138                 if (NUMKEYS(mp) == 0) {
6139                         DPUTS("tree is completely empty");
6140                         mc->mc_db->md_root = P_INVALID;
6141                         mc->mc_db->md_depth = 0;
6142                         mc->mc_db->md_leaf_pages = 0;
6143                         mdb_midl_append(&mc->mc_txn->mt_free_pgs, mp->mp_pgno);
6144                         mc->mc_snum = 0;
6145                         mc->mc_top = 0;
6146                         {
6147                                 /* Adjust other cursors pointing to mp */
6148                                 MDB_cursor *m2, *m3;
6149                                 MDB_dbi dbi = mc->mc_dbi;
6150
6151                                 if (mc->mc_flags & C_SUB)
6152                                         dbi--;
6153
6154                                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
6155                                         if (m2 == mc) continue;
6156                                         if (mc->mc_flags & C_SUB)
6157                                                 m3 = &m2->mc_xcursor->mx_cursor;
6158                                         else
6159                                                 m3 = m2;
6160                                         if (m3->mc_snum < mc->mc_snum) continue;
6161                                         if (m3->mc_pg[0] == mp) {
6162                                                 m3->mc_snum = 0;
6163                                                 m3->mc_top = 0;
6164                                         }
6165                                 }
6166                         }
6167                 } else if (IS_BRANCH(mp) && NUMKEYS(mp) == 1) {
6168                         DPUTS("collapsing root page!");
6169                         mdb_midl_append(&mc->mc_txn->mt_free_pgs, mp->mp_pgno);
6170                         mc->mc_db->md_root = NODEPGNO(NODEPTR(mp, 0));
6171                         if ((rc = mdb_page_get(mc->mc_txn, mc->mc_db->md_root,
6172                                 &mc->mc_pg[0])))
6173                                 return rc;
6174                         mc->mc_db->md_depth--;
6175                         mc->mc_db->md_branch_pages--;
6176                         {
6177                                 /* Adjust other cursors pointing to mp */
6178                                 MDB_cursor *m2, *m3;
6179                                 MDB_dbi dbi = mc->mc_dbi;
6180
6181                                 if (mc->mc_flags & C_SUB)
6182                                         dbi--;
6183
6184                                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
6185                                         if (m2 == mc) continue;
6186                                         if (mc->mc_flags & C_SUB)
6187                                                 m3 = &m2->mc_xcursor->mx_cursor;
6188                                         else
6189                                                 m3 = m2;
6190                                         if (m3->mc_snum < mc->mc_snum) continue;
6191                                         if (m3->mc_pg[0] == mp) {
6192                                                 m3->mc_pg[0] = mc->mc_pg[0];
6193                                         }
6194                                 }
6195                         }
6196                 } else
6197                         DPUTS("root page doesn't need rebalancing");
6198                 return MDB_SUCCESS;
6199         }
6200
6201         /* The parent (branch page) must have at least 2 pointers,
6202          * otherwise the tree is invalid.
6203          */
6204         ptop = mc->mc_top-1;
6205         assert(NUMKEYS(mc->mc_pg[ptop]) > 1);
6206
6207         /* Leaf page fill factor is below the threshold.
6208          * Try to move keys from left or right neighbor, or
6209          * merge with a neighbor page.
6210          */
6211
6212         /* Find neighbors.
6213          */
6214         mdb_cursor_copy(mc, &mn);
6215         mn.mc_xcursor = NULL;
6216
6217         if (mc->mc_ki[ptop] == 0) {
6218                 /* We're the leftmost leaf in our parent.
6219                  */
6220                 DPUTS("reading right neighbor");
6221                 mn.mc_ki[ptop]++;
6222                 node = NODEPTR(mc->mc_pg[ptop], mn.mc_ki[ptop]);
6223                 if ((rc = mdb_page_get(mc->mc_txn, NODEPGNO(node), &mn.mc_pg[mn.mc_top])))
6224                         return rc;
6225                 mn.mc_ki[mn.mc_top] = 0;
6226                 mc->mc_ki[mc->mc_top] = NUMKEYS(mc->mc_pg[mc->mc_top]);
6227         } else {
6228                 /* There is at least one neighbor to the left.
6229                  */
6230                 DPUTS("reading left neighbor");
6231                 mn.mc_ki[ptop]--;
6232                 node = NODEPTR(mc->mc_pg[ptop], mn.mc_ki[ptop]);
6233                 if ((rc = mdb_page_get(mc->mc_txn, NODEPGNO(node), &mn.mc_pg[mn.mc_top])))
6234                         return rc;
6235                 mn.mc_ki[mn.mc_top] = NUMKEYS(mn.mc_pg[mn.mc_top]) - 1;
6236                 mc->mc_ki[mc->mc_top] = 0;
6237         }
6238
6239         DPRINTF("found neighbor page %zu (%u keys, %.1f%% full)",
6240             mn.mc_pg[mn.mc_top]->mp_pgno, NUMKEYS(mn.mc_pg[mn.mc_top]), (float)PAGEFILL(mc->mc_txn->mt_env, mn.mc_pg[mn.mc_top]) / 10);
6241
6242         /* If the neighbor page is above threshold and has at least two
6243          * keys, move one key from it.
6244          *
6245          * Otherwise we should try to merge them.
6246          */
6247         if (PAGEFILL(mc->mc_txn->mt_env, mn.mc_pg[mn.mc_top]) >= FILL_THRESHOLD && NUMKEYS(mn.mc_pg[mn.mc_top]) >= 2)
6248                 return mdb_node_move(&mn, mc);
6249         else { /* FIXME: if (has_enough_room()) */
6250                 mc->mc_flags &= ~C_INITIALIZED;
6251                 if (mc->mc_ki[ptop] == 0)
6252                         return mdb_page_merge(&mn, mc);
6253                 else
6254                         return mdb_page_merge(mc, &mn);
6255         }
6256 }
6257
6258 /** Complete a delete operation started by #mdb_cursor_del(). */
6259 static int
6260 mdb_cursor_del0(MDB_cursor *mc, MDB_node *leaf)
6261 {
6262         int rc;
6263
6264         /* add overflow pages to free list */
6265         if (!IS_LEAF2(mc->mc_pg[mc->mc_top]) && F_ISSET(leaf->mn_flags, F_BIGDATA)) {
6266                 int i, ovpages;
6267                 pgno_t pg;
6268
6269                 memcpy(&pg, NODEDATA(leaf), sizeof(pg));
6270                 ovpages = OVPAGES(NODEDSZ(leaf), mc->mc_txn->mt_env->me_psize);
6271                 mc->mc_db->md_overflow_pages -= ovpages;
6272                 for (i=0; i<ovpages; i++) {
6273                         DPRINTF("freed ov page %zu", pg);
6274                         mdb_midl_append(&mc->mc_txn->mt_free_pgs, pg);
6275                         pg++;
6276                 }
6277         }
6278         mdb_node_del(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], mc->mc_db->md_pad);
6279         mc->mc_db->md_entries--;
6280         rc = mdb_rebalance(mc);
6281         if (rc != MDB_SUCCESS)
6282                 mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
6283
6284         return rc;
6285 }
6286
6287 int
6288 mdb_del(MDB_txn *txn, MDB_dbi dbi,
6289     MDB_val *key, MDB_val *data)
6290 {
6291         MDB_cursor mc;
6292         MDB_xcursor mx;
6293         MDB_cursor_op op;
6294         MDB_val rdata, *xdata;
6295         int              rc, exact;
6296         DKBUF;
6297
6298         assert(key != NULL);
6299
6300         DPRINTF("====> delete db %u key [%s]", dbi, DKEY(key));
6301
6302         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs)
6303                 return EINVAL;
6304
6305         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY)) {
6306                 return EACCES;
6307         }
6308
6309         if (key->mv_size == 0 || key->mv_size > MAXKEYSIZE) {
6310                 return EINVAL;
6311         }
6312
6313         mdb_cursor_init(&mc, txn, dbi, &mx);
6314
6315         exact = 0;
6316         if (data) {
6317                 op = MDB_GET_BOTH;
6318                 rdata = *data;
6319                 xdata = &rdata;
6320         } else {
6321                 op = MDB_SET;
6322                 xdata = NULL;
6323         }
6324         rc = mdb_cursor_set(&mc, key, xdata, op, &exact);
6325         if (rc == 0)
6326                 rc = mdb_cursor_del(&mc, data ? 0 : MDB_NODUPDATA);
6327         return rc;
6328 }
6329
6330 /** Split a page and insert a new node.
6331  * @param[in,out] mc Cursor pointing to the page and desired insertion index.
6332  * The cursor will be updated to point to the actual page and index where
6333  * the node got inserted after the split.
6334  * @param[in] newkey The key for the newly inserted node.
6335  * @param[in] newdata The data for the newly inserted node.
6336  * @param[in] newpgno The page number, if the new node is a branch node.
6337  * @param[in] nflags The #NODE_ADD_FLAGS for the new node.
6338  * @return 0 on success, non-zero on failure.
6339  */
6340 static int
6341 mdb_page_split(MDB_cursor *mc, MDB_val *newkey, MDB_val *newdata, pgno_t newpgno,
6342         unsigned int nflags)
6343 {
6344         unsigned int flags;
6345         int              rc = MDB_SUCCESS, ins_new = 0, new_root = 0, newpos = 1, did_split = 0;
6346         indx_t           newindx;
6347         pgno_t           pgno = 0;
6348         unsigned int     i, j, split_indx, nkeys, pmax;
6349         MDB_node        *node;
6350         MDB_val  sepkey, rkey, xdata, *rdata = &xdata;
6351         MDB_page        *copy;
6352         MDB_page        *mp, *rp, *pp;
6353         unsigned int ptop;
6354         MDB_cursor      mn;
6355         DKBUF;
6356
6357         mp = mc->mc_pg[mc->mc_top];
6358         newindx = mc->mc_ki[mc->mc_top];
6359
6360         DPRINTF("-----> splitting %s page %zu and adding [%s] at index %i",
6361             IS_LEAF(mp) ? "leaf" : "branch", mp->mp_pgno,
6362             DKEY(newkey), mc->mc_ki[mc->mc_top]);
6363
6364         /* Create a right sibling. */
6365         if ((rc = mdb_page_new(mc, mp->mp_flags, 1, &rp)))
6366                 return rc;
6367         DPRINTF("new right sibling: page %zu", rp->mp_pgno);
6368
6369         if (mc->mc_snum < 2) {
6370                 if ((rc = mdb_page_new(mc, P_BRANCH, 1, &pp)))
6371                         return rc;
6372                 /* shift current top to make room for new parent */
6373                 mc->mc_pg[1] = mc->mc_pg[0];
6374                 mc->mc_ki[1] = mc->mc_ki[0];
6375                 mc->mc_pg[0] = pp;
6376                 mc->mc_ki[0] = 0;
6377                 mc->mc_db->md_root = pp->mp_pgno;
6378                 DPRINTF("root split! new root = %zu", pp->mp_pgno);
6379                 mc->mc_db->md_depth++;
6380                 new_root = 1;
6381
6382                 /* Add left (implicit) pointer. */
6383                 if ((rc = mdb_node_add(mc, 0, NULL, NULL, mp->mp_pgno, 0)) != MDB_SUCCESS) {
6384                         /* undo the pre-push */
6385                         mc->mc_pg[0] = mc->mc_pg[1];
6386                         mc->mc_ki[0] = mc->mc_ki[1];
6387                         mc->mc_db->md_root = mp->mp_pgno;
6388                         mc->mc_db->md_depth--;
6389                         return rc;
6390                 }
6391                 mc->mc_snum = 2;
6392                 mc->mc_top = 1;
6393                 ptop = 0;
6394         } else {
6395                 ptop = mc->mc_top-1;
6396                 DPRINTF("parent branch page is %zu", mc->mc_pg[ptop]->mp_pgno);
6397         }
6398
6399         mc->mc_flags |= C_SPLITTING;
6400         mdb_cursor_copy(mc, &mn);
6401         mn.mc_pg[mn.mc_top] = rp;
6402         mn.mc_ki[ptop] = mc->mc_ki[ptop]+1;
6403
6404         if (nflags & MDB_APPEND) {
6405                 mn.mc_ki[mn.mc_top] = 0;
6406                 sepkey = *newkey;
6407                 split_indx = newindx;
6408                 nkeys = 0;
6409                 goto newsep;
6410         }
6411
6412         nkeys = NUMKEYS(mp);
6413         split_indx = nkeys / 2;
6414         if (newindx < split_indx)
6415                 newpos = 0;
6416
6417         if (IS_LEAF2(rp)) {
6418                 char *split, *ins;
6419                 int x;
6420                 unsigned int lsize, rsize, ksize;
6421                 /* Move half of the keys to the right sibling */
6422                 copy = NULL;
6423                 x = mc->mc_ki[mc->mc_top] - split_indx;
6424                 ksize = mc->mc_db->md_pad;
6425                 split = LEAF2KEY(mp, split_indx, ksize);
6426                 rsize = (nkeys - split_indx) * ksize;
6427                 lsize = (nkeys - split_indx) * sizeof(indx_t);
6428                 mp->mp_lower -= lsize;
6429                 rp->mp_lower += lsize;
6430                 mp->mp_upper += rsize - lsize;
6431                 rp->mp_upper -= rsize - lsize;
6432                 sepkey.mv_size = ksize;
6433                 if (newindx == split_indx) {
6434                         sepkey.mv_data = newkey->mv_data;
6435                 } else {
6436                         sepkey.mv_data = split;
6437                 }
6438                 if (x<0) {
6439                         ins = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], ksize);
6440                         memcpy(rp->mp_ptrs, split, rsize);
6441                         sepkey.mv_data = rp->mp_ptrs;
6442                         memmove(ins+ksize, ins, (split_indx - mc->mc_ki[mc->mc_top]) * ksize);
6443                         memcpy(ins, newkey->mv_data, ksize);
6444                         mp->mp_lower += sizeof(indx_t);
6445                         mp->mp_upper -= ksize - sizeof(indx_t);
6446                 } else {
6447                         if (x)
6448                                 memcpy(rp->mp_ptrs, split, x * ksize);
6449                         ins = LEAF2KEY(rp, x, ksize);
6450                         memcpy(ins, newkey->mv_data, ksize);
6451                         memcpy(ins+ksize, split + x * ksize, rsize - x * ksize);
6452                         rp->mp_lower += sizeof(indx_t);
6453                         rp->mp_upper -= ksize - sizeof(indx_t);
6454                         mc->mc_ki[mc->mc_top] = x;
6455                         mc->mc_pg[mc->mc_top] = rp;
6456                 }
6457                 goto newsep;
6458         }
6459
6460         /* For leaf pages, check the split point based on what
6461          * fits where, since otherwise mdb_node_add can fail.
6462          *
6463          * This check is only needed when the data items are
6464          * relatively large, such that being off by one will
6465          * make the difference between success or failure.
6466          *
6467          * It's also relevant if a page happens to be laid out
6468          * such that one half of its nodes are all "small" and
6469          * the other half of its nodes are "large." If the new
6470          * item is also "large" and falls on the half with
6471          * "large" nodes, it also may not fit.
6472          */
6473         if (IS_LEAF(mp)) {
6474                 unsigned int psize, nsize;
6475                 /* Maximum free space in an empty page */
6476                 pmax = mc->mc_txn->mt_env->me_psize - PAGEHDRSZ;
6477                 nsize = mdb_leaf_size(mc->mc_txn->mt_env, newkey, newdata);
6478                 if ((nkeys < 20) || (nsize > pmax/16)) {
6479                         if (newindx <= split_indx) {
6480                                 psize = nsize;
6481                                 newpos = 0;
6482                                 for (i=0; i<split_indx; i++) {
6483                                         node = NODEPTR(mp, i);
6484                                         psize += NODESIZE + NODEKSZ(node) + sizeof(indx_t);
6485                                         if (F_ISSET(node->mn_flags, F_BIGDATA))
6486                                                 psize += sizeof(pgno_t);
6487                                         else
6488                                                 psize += NODEDSZ(node);
6489                                         psize += psize & 1;
6490                                         if (psize > pmax) {
6491                                                 if (i <= newindx) {
6492                                                         split_indx = newindx;
6493                                                         if (i < newindx)
6494                                                                 newpos = 1;
6495                                                 }
6496                                                 else
6497                                                         split_indx = i;
6498                                                 break;
6499                                         }
6500                                 }
6501                         } else {
6502                                 psize = nsize;
6503                                 for (i=nkeys-1; i>=split_indx; i--) {
6504                                         node = NODEPTR(mp, i);
6505                                         psize += NODESIZE + NODEKSZ(node) + sizeof(indx_t);
6506                                         if (F_ISSET(node->mn_flags, F_BIGDATA))
6507                                                 psize += sizeof(pgno_t);
6508                                         else
6509                                                 psize += NODEDSZ(node);
6510                                         psize += psize & 1;
6511                                         if (psize > pmax) {
6512                                                 if (i >= newindx) {
6513                                                         split_indx = newindx;
6514                                                         newpos = 0;
6515                                                 } else
6516                                                         split_indx = i+1;
6517                                                 break;
6518                                         }
6519                                 }
6520                         }
6521                 }
6522         }
6523
6524         /* First find the separating key between the split pages.
6525          * The case where newindx == split_indx is ambiguous; the
6526          * new item could go to the new page or stay on the original
6527          * page. If newpos == 1 it goes to the new page.
6528          */
6529         if (newindx == split_indx && newpos) {
6530                 sepkey.mv_size = newkey->mv_size;
6531                 sepkey.mv_data = newkey->mv_data;
6532         } else {
6533                 node = NODEPTR(mp, split_indx);
6534                 sepkey.mv_size = node->mn_ksize;
6535                 sepkey.mv_data = NODEKEY(node);
6536         }
6537
6538 newsep:
6539         DPRINTF("separator is [%s]", DKEY(&sepkey));
6540
6541         /* Copy separator key to the parent.
6542          */
6543         if (SIZELEFT(mn.mc_pg[ptop]) < mdb_branch_size(mc->mc_txn->mt_env, &sepkey)) {
6544                 mn.mc_snum--;
6545                 mn.mc_top--;
6546                 did_split = 1;
6547                 rc = mdb_page_split(&mn, &sepkey, NULL, rp->mp_pgno, 0);
6548
6549                 /* root split? */
6550                 if (mn.mc_snum == mc->mc_snum) {
6551                         mc->mc_pg[mc->mc_snum] = mc->mc_pg[mc->mc_top];
6552                         mc->mc_ki[mc->mc_snum] = mc->mc_ki[mc->mc_top];
6553                         mc->mc_pg[mc->mc_top] = mc->mc_pg[ptop];
6554                         mc->mc_ki[mc->mc_top] = mc->mc_ki[ptop];
6555                         mc->mc_snum++;
6556                         mc->mc_top++;
6557                         ptop++;
6558                 }
6559                 /* Right page might now have changed parent.
6560                  * Check if left page also changed parent.
6561                  */
6562                 if (mn.mc_pg[ptop] != mc->mc_pg[ptop] &&
6563                     mc->mc_ki[ptop] >= NUMKEYS(mc->mc_pg[ptop])) {
6564                         for (i=0; i<ptop; i++) {
6565                                 mc->mc_pg[i] = mn.mc_pg[i];
6566                                 mc->mc_ki[i] = mn.mc_ki[i];
6567                         }
6568                         mc->mc_pg[ptop] = mn.mc_pg[ptop];
6569                         mc->mc_ki[ptop] = mn.mc_ki[ptop] - 1;
6570                 }
6571         } else {
6572                 mn.mc_top--;
6573                 rc = mdb_node_add(&mn, mn.mc_ki[ptop], &sepkey, NULL, rp->mp_pgno, 0);
6574                 mn.mc_top++;
6575         }
6576         mc->mc_flags ^= C_SPLITTING;
6577         if (rc != MDB_SUCCESS) {
6578                 return rc;
6579         }
6580         if (nflags & MDB_APPEND) {
6581                 mc->mc_pg[mc->mc_top] = rp;
6582                 mc->mc_ki[mc->mc_top] = 0;
6583                 rc = mdb_node_add(mc, 0, newkey, newdata, newpgno, nflags);
6584                 if (rc)
6585                         return rc;
6586                 for (i=0; i<mc->mc_top; i++)
6587                         mc->mc_ki[i] = mn.mc_ki[i];
6588                 goto done;
6589         }
6590         if (IS_LEAF2(rp)) {
6591                 goto done;
6592         }
6593
6594         /* Move half of the keys to the right sibling. */
6595
6596         /* grab a page to hold a temporary copy */
6597         copy = mdb_page_malloc(mc);
6598         if (copy == NULL)
6599                 return ENOMEM;
6600
6601         copy->mp_pgno  = mp->mp_pgno;
6602         copy->mp_flags = mp->mp_flags;
6603         copy->mp_lower = PAGEHDRSZ;
6604         copy->mp_upper = mc->mc_txn->mt_env->me_psize;
6605         mc->mc_pg[mc->mc_top] = copy;
6606         for (i = j = 0; i <= nkeys; j++) {
6607                 if (i == split_indx) {
6608                 /* Insert in right sibling. */
6609                 /* Reset insert index for right sibling. */
6610                         if (i != newindx || (newpos ^ ins_new)) {
6611                                 j = 0;
6612                                 mc->mc_pg[mc->mc_top] = rp;
6613                         }
6614                 }
6615
6616                 if (i == newindx && !ins_new) {
6617                         /* Insert the original entry that caused the split. */
6618                         rkey.mv_data = newkey->mv_data;
6619                         rkey.mv_size = newkey->mv_size;
6620                         if (IS_LEAF(mp)) {
6621                                 rdata = newdata;
6622                         } else
6623                                 pgno = newpgno;
6624                         flags = nflags;
6625
6626                         ins_new = 1;
6627
6628                         /* Update index for the new key. */
6629                         mc->mc_ki[mc->mc_top] = j;
6630                 } else if (i == nkeys) {
6631                         break;
6632                 } else {
6633                         node = NODEPTR(mp, i);
6634                         rkey.mv_data = NODEKEY(node);
6635                         rkey.mv_size = node->mn_ksize;
6636                         if (IS_LEAF(mp)) {
6637                                 xdata.mv_data = NODEDATA(node);
6638                                 xdata.mv_size = NODEDSZ(node);
6639                                 rdata = &xdata;
6640                         } else
6641                                 pgno = NODEPGNO(node);
6642                         flags = node->mn_flags;
6643
6644                         i++;
6645                 }
6646
6647                 if (!IS_LEAF(mp) && j == 0) {
6648                         /* First branch index doesn't need key data. */
6649                         rkey.mv_size = 0;
6650                 }
6651
6652                 rc = mdb_node_add(mc, j, &rkey, rdata, pgno, flags);
6653                 if (rc) break;
6654         }
6655
6656         nkeys = NUMKEYS(copy);
6657         for (i=0; i<nkeys; i++)
6658                 mp->mp_ptrs[i] = copy->mp_ptrs[i];
6659         mp->mp_lower = copy->mp_lower;
6660         mp->mp_upper = copy->mp_upper;
6661         memcpy(NODEPTR(mp, nkeys-1), NODEPTR(copy, nkeys-1),
6662                 mc->mc_txn->mt_env->me_psize - copy->mp_upper);
6663
6664         /* reset back to original page */
6665         if (newindx < split_indx || (!newpos && newindx == split_indx)) {
6666                 mc->mc_pg[mc->mc_top] = mp;
6667                 if (nflags & MDB_RESERVE) {
6668                         node = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
6669                         if (!(node->mn_flags & F_BIGDATA))
6670                                 newdata->mv_data = NODEDATA(node);
6671                 }
6672         } else {
6673                 mc->mc_ki[ptop]++;
6674         }
6675
6676         /* return tmp page to freelist */
6677         copy->mp_next = mc->mc_txn->mt_env->me_dpages;
6678         VGMEMP_FREE(mc->mc_txn->mt_env, copy);
6679         mc->mc_txn->mt_env->me_dpages = copy;
6680 done:
6681         {
6682                 /* Adjust other cursors pointing to mp */
6683                 MDB_cursor *m2, *m3;
6684                 MDB_dbi dbi = mc->mc_dbi;
6685                 int fixup = NUMKEYS(mp);
6686
6687                 if (mc->mc_flags & C_SUB)
6688                         dbi--;
6689
6690                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
6691                         if (m2 == mc) continue;
6692                         if (mc->mc_flags & C_SUB)
6693                                 m3 = &m2->mc_xcursor->mx_cursor;
6694                         else
6695                                 m3 = m2;
6696                         if (!(m3->mc_flags & C_INITIALIZED))
6697                                 continue;
6698                         if (m3->mc_flags & C_SPLITTING)
6699                                 continue;
6700                         if (new_root) {
6701                                 int k;
6702                                 /* root split */
6703                                 for (k=m3->mc_top; k>=0; k--) {
6704                                         m3->mc_ki[k+1] = m3->mc_ki[k];
6705                                         m3->mc_pg[k+1] = m3->mc_pg[k];
6706                                 }
6707                                 if (m3->mc_ki[0] >= split_indx) {
6708                                         m3->mc_ki[0] = 1;
6709                                 } else {
6710                                         m3->mc_ki[0] = 0;
6711                                 }
6712                                 m3->mc_pg[0] = mc->mc_pg[0];
6713                                 m3->mc_snum++;
6714                                 m3->mc_top++;
6715                         }
6716                         if (m3->mc_pg[mc->mc_top] == mp) {
6717                                 if (m3->mc_ki[mc->mc_top] >= newindx && !(nflags & MDB_SPLIT_REPLACE))
6718                                         m3->mc_ki[mc->mc_top]++;
6719                                 if (m3->mc_ki[mc->mc_top] >= fixup) {
6720                                         m3->mc_pg[mc->mc_top] = rp;
6721                                         m3->mc_ki[mc->mc_top] -= fixup;
6722                                         m3->mc_ki[ptop] = mn.mc_ki[ptop];
6723                                 }
6724                         } else if (!did_split && m3->mc_pg[ptop] == mc->mc_pg[ptop] &&
6725                                 m3->mc_ki[ptop] >= mc->mc_ki[ptop]) {
6726                                 m3->mc_ki[ptop]++;
6727                         }
6728                 }
6729         }
6730         return rc;
6731 }
6732
6733 int
6734 mdb_put(MDB_txn *txn, MDB_dbi dbi,
6735     MDB_val *key, MDB_val *data, unsigned int flags)
6736 {
6737         MDB_cursor mc;
6738         MDB_xcursor mx;
6739
6740         assert(key != NULL);
6741         assert(data != NULL);
6742
6743         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs)
6744                 return EINVAL;
6745
6746         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY)) {
6747                 return EACCES;
6748         }
6749
6750         if (key->mv_size == 0 || key->mv_size > MAXKEYSIZE) {
6751                 return EINVAL;
6752         }
6753
6754         if ((flags & (MDB_NOOVERWRITE|MDB_NODUPDATA|MDB_RESERVE|MDB_APPEND)) != flags)
6755                 return EINVAL;
6756
6757         mdb_cursor_init(&mc, txn, dbi, &mx);
6758         return mdb_cursor_put(&mc, key, data, flags);
6759 }
6760
6761 int
6762 mdb_env_set_flags(MDB_env *env, unsigned int flag, int onoff)
6763 {
6764         if ((flag & CHANGEABLE) != flag)
6765                 return EINVAL;
6766         if (onoff)
6767                 env->me_flags |= flag;
6768         else
6769                 env->me_flags &= ~flag;
6770         return MDB_SUCCESS;
6771 }
6772
6773 int
6774 mdb_env_get_flags(MDB_env *env, unsigned int *arg)
6775 {
6776         if (!env || !arg)
6777                 return EINVAL;
6778
6779         *arg = env->me_flags;
6780         return MDB_SUCCESS;
6781 }
6782
6783 int
6784 mdb_env_get_path(MDB_env *env, const char **arg)
6785 {
6786         if (!env || !arg)
6787                 return EINVAL;
6788
6789         *arg = env->me_path;
6790         return MDB_SUCCESS;
6791 }
6792
6793 /** Common code for #mdb_stat() and #mdb_env_stat().
6794  * @param[in] env the environment to operate in.
6795  * @param[in] db the #MDB_db record containing the stats to return.
6796  * @param[out] arg the address of an #MDB_stat structure to receive the stats.
6797  * @return 0, this function always succeeds.
6798  */
6799 static int
6800 mdb_stat0(MDB_env *env, MDB_db *db, MDB_stat *arg)
6801 {
6802         arg->ms_psize = env->me_psize;
6803         arg->ms_depth = db->md_depth;
6804         arg->ms_branch_pages = db->md_branch_pages;
6805         arg->ms_leaf_pages = db->md_leaf_pages;
6806         arg->ms_overflow_pages = db->md_overflow_pages;
6807         arg->ms_entries = db->md_entries;
6808
6809         return MDB_SUCCESS;
6810 }
6811 int
6812 mdb_env_stat(MDB_env *env, MDB_stat *arg)
6813 {
6814         int toggle;
6815
6816         if (env == NULL || arg == NULL)
6817                 return EINVAL;
6818
6819         toggle = mdb_env_pick_meta(env);
6820
6821         return mdb_stat0(env, &env->me_metas[toggle]->mm_dbs[MAIN_DBI], arg);
6822 }
6823
6824 int
6825 mdb_env_info(MDB_env *env, MDB_envinfo *arg)
6826 {
6827         int toggle;
6828
6829         if (env == NULL || arg == NULL)
6830                 return EINVAL;
6831
6832         toggle = mdb_env_pick_meta(env);
6833         arg->me_mapaddr = (env->me_flags & MDB_FIXEDMAP) ? env->me_map : 0;
6834         arg->me_mapsize = env->me_mapsize;
6835         arg->me_maxreaders = env->me_maxreaders;
6836         arg->me_numreaders = env->me_numreaders;
6837         arg->me_last_pgno = env->me_metas[toggle]->mm_last_pg;
6838         arg->me_last_txnid = env->me_metas[toggle]->mm_txnid;
6839         return MDB_SUCCESS;
6840 }
6841
6842 /** Set the default comparison functions for a database.
6843  * Called immediately after a database is opened to set the defaults.
6844  * The user can then override them with #mdb_set_compare() or
6845  * #mdb_set_dupsort().
6846  * @param[in] txn A transaction handle returned by #mdb_txn_begin()
6847  * @param[in] dbi A database handle returned by #mdb_dbi_open()
6848  */
6849 static void
6850 mdb_default_cmp(MDB_txn *txn, MDB_dbi dbi)
6851 {
6852         uint16_t f = txn->mt_dbs[dbi].md_flags;
6853
6854         txn->mt_dbxs[dbi].md_cmp =
6855                 (f & MDB_REVERSEKEY) ? mdb_cmp_memnr :
6856                 (f & MDB_INTEGERKEY) ? mdb_cmp_cint  : mdb_cmp_memn;
6857
6858         txn->mt_dbxs[dbi].md_dcmp =
6859                 !(f & MDB_DUPSORT) ? 0 :
6860                 ((f & MDB_INTEGERDUP)
6861                  ? ((f & MDB_DUPFIXED)   ? mdb_cmp_int   : mdb_cmp_cint)
6862                  : ((f & MDB_REVERSEDUP) ? mdb_cmp_memnr : mdb_cmp_memn));
6863 }
6864
6865 #define PERSISTENT_FLAGS        0xffff
6866 #define VALID_FLAGS     (MDB_REVERSEKEY|MDB_DUPSORT|MDB_INTEGERKEY|MDB_DUPFIXED|\
6867         MDB_INTEGERDUP|MDB_REVERSEDUP|MDB_CREATE)
6868 int mdb_dbi_open(MDB_txn *txn, const char *name, unsigned int flags, MDB_dbi *dbi)
6869 {
6870         MDB_val key, data;
6871         MDB_dbi i;
6872         MDB_cursor mc;
6873         int rc, dbflag, exact;
6874         unsigned int unused = 0;
6875         size_t len;
6876
6877         if (txn->mt_dbxs[FREE_DBI].md_cmp == NULL) {
6878                 mdb_default_cmp(txn, FREE_DBI);
6879         }
6880
6881         if ((flags & VALID_FLAGS) != flags)
6882                 return EINVAL;
6883
6884         /* main DB? */
6885         if (!name) {
6886                 *dbi = MAIN_DBI;
6887                 if (flags & PERSISTENT_FLAGS) {
6888                         uint16_t f2 = flags & PERSISTENT_FLAGS;
6889                         /* make sure flag changes get committed */
6890                         if ((txn->mt_dbs[MAIN_DBI].md_flags | f2) != txn->mt_dbs[MAIN_DBI].md_flags) {
6891                                 txn->mt_dbs[MAIN_DBI].md_flags |= f2;
6892                                 txn->mt_flags |= MDB_TXN_DIRTY;
6893                         }
6894                 }
6895                 mdb_default_cmp(txn, MAIN_DBI);
6896                 return MDB_SUCCESS;
6897         }
6898
6899         if (txn->mt_dbxs[MAIN_DBI].md_cmp == NULL) {
6900                 mdb_default_cmp(txn, MAIN_DBI);
6901         }
6902
6903         /* Is the DB already open? */
6904         len = strlen(name);
6905         for (i=2; i<txn->mt_numdbs; i++) {
6906                 if (!txn->mt_dbxs[i].md_name.mv_size) {
6907                         /* Remember this free slot */
6908                         if (!unused) unused = i;
6909                         continue;
6910                 }
6911                 if (len == txn->mt_dbxs[i].md_name.mv_size &&
6912                         !strncmp(name, txn->mt_dbxs[i].md_name.mv_data, len)) {
6913                         *dbi = i;
6914                         return MDB_SUCCESS;
6915                 }
6916         }
6917
6918         /* If no free slot and max hit, fail */
6919         if (!unused && txn->mt_numdbs >= txn->mt_env->me_maxdbs)
6920                 return MDB_DBS_FULL;
6921
6922         /* Find the DB info */
6923         dbflag = 0;
6924         exact = 0;
6925         key.mv_size = len;
6926         key.mv_data = (void *)name;
6927         mdb_cursor_init(&mc, txn, MAIN_DBI, NULL);
6928         rc = mdb_cursor_set(&mc, &key, &data, MDB_SET, &exact);
6929         if (rc == MDB_SUCCESS) {
6930                 /* make sure this is actually a DB */
6931                 MDB_node *node = NODEPTR(mc.mc_pg[mc.mc_top], mc.mc_ki[mc.mc_top]);
6932                 if (!(node->mn_flags & F_SUBDATA))
6933                         return EINVAL;
6934         } else if (rc == MDB_NOTFOUND && (flags & MDB_CREATE)) {
6935                 /* Create if requested */
6936                 MDB_db dummy;
6937                 data.mv_size = sizeof(MDB_db);
6938                 data.mv_data = &dummy;
6939                 memset(&dummy, 0, sizeof(dummy));
6940                 dummy.md_root = P_INVALID;
6941                 dummy.md_flags = flags & PERSISTENT_FLAGS;
6942                 rc = mdb_cursor_put(&mc, &key, &data, F_SUBDATA);
6943                 dbflag = DB_DIRTY;
6944         }
6945
6946         /* OK, got info, add to table */
6947         if (rc == MDB_SUCCESS) {
6948                 unsigned int slot = unused ? unused : txn->mt_numdbs;
6949                 txn->mt_dbxs[slot].md_name.mv_data = strdup(name);
6950                 txn->mt_dbxs[slot].md_name.mv_size = len;
6951                 txn->mt_dbxs[slot].md_rel = NULL;
6952                 txn->mt_dbflags[slot] = dbflag;
6953                 memcpy(&txn->mt_dbs[slot], data.mv_data, sizeof(MDB_db));
6954                 *dbi = slot;
6955                 txn->mt_env->me_dbflags[slot] = txn->mt_dbs[slot].md_flags;
6956                 mdb_default_cmp(txn, slot);
6957                 if (!unused) {
6958                         txn->mt_numdbs++;
6959                         txn->mt_env->me_numdbs++;
6960                 }
6961         }
6962
6963         return rc;
6964 }
6965
6966 int mdb_stat(MDB_txn *txn, MDB_dbi dbi, MDB_stat *arg)
6967 {
6968         if (txn == NULL || arg == NULL || dbi >= txn->mt_numdbs)
6969                 return EINVAL;
6970
6971         return mdb_stat0(txn->mt_env, &txn->mt_dbs[dbi], arg);
6972 }
6973
6974 void mdb_dbi_close(MDB_env *env, MDB_dbi dbi)
6975 {
6976         char *ptr;
6977         if (dbi <= MAIN_DBI || dbi >= env->me_numdbs)
6978                 return;
6979         ptr = env->me_dbxs[dbi].md_name.mv_data;
6980         env->me_dbxs[dbi].md_name.mv_data = NULL;
6981         env->me_dbxs[dbi].md_name.mv_size = 0;
6982         free(ptr);
6983 }
6984
6985 /** Add all the DB's pages to the free list.
6986  * @param[in] mc Cursor on the DB to free.
6987  * @param[in] subs non-Zero to check for sub-DBs in this DB.
6988  * @return 0 on success, non-zero on failure.
6989  */
6990 static int
6991 mdb_drop0(MDB_cursor *mc, int subs)
6992 {
6993         int rc;
6994
6995         rc = mdb_page_search(mc, NULL, 0);
6996         if (rc == MDB_SUCCESS) {
6997                 MDB_node *ni;
6998                 MDB_cursor mx;
6999                 unsigned int i;
7000
7001                 /* LEAF2 pages have no nodes, cannot have sub-DBs */
7002                 if (!subs || IS_LEAF2(mc->mc_pg[mc->mc_top]))
7003                         mdb_cursor_pop(mc);
7004
7005                 mdb_cursor_copy(mc, &mx);
7006                 while (mc->mc_snum > 0) {
7007                         if (IS_LEAF(mc->mc_pg[mc->mc_top])) {
7008                                 for (i=0; i<NUMKEYS(mc->mc_pg[mc->mc_top]); i++) {
7009                                         ni = NODEPTR(mc->mc_pg[mc->mc_top], i);
7010                                         if (ni->mn_flags & F_SUBDATA) {
7011                                                 mdb_xcursor_init1(mc, ni);
7012                                                 rc = mdb_drop0(&mc->mc_xcursor->mx_cursor, 0);
7013                                                 if (rc)
7014                                                         return rc;
7015                                         }
7016                                 }
7017                         } else {
7018                                 for (i=0; i<NUMKEYS(mc->mc_pg[mc->mc_top]); i++) {
7019                                         pgno_t pg;
7020                                         ni = NODEPTR(mc->mc_pg[mc->mc_top], i);
7021                                         pg = NODEPGNO(ni);
7022                                         /* free it */
7023                                         mdb_midl_append(&mc->mc_txn->mt_free_pgs, pg);
7024                                 }
7025                         }
7026                         if (!mc->mc_top)
7027                                 break;
7028                         rc = mdb_cursor_sibling(mc, 1);
7029                         if (rc) {
7030                                 /* no more siblings, go back to beginning
7031                                  * of previous level.
7032                                  */
7033                                 mdb_cursor_pop(mc);
7034                                 for (i=1; i<mc->mc_top; i++)
7035                                         mc->mc_pg[i] = mx.mc_pg[i];
7036                         }
7037                 }
7038                 /* free it */
7039                 mdb_midl_append(&mc->mc_txn->mt_free_pgs,
7040                         mc->mc_db->md_root);
7041         }
7042         return 0;
7043 }
7044
7045 int mdb_drop(MDB_txn *txn, MDB_dbi dbi, int del)
7046 {
7047         MDB_cursor *mc;
7048         int rc;
7049
7050         if (!txn || !dbi || dbi >= txn->mt_numdbs || (unsigned)del > 1)
7051                 return EINVAL;
7052
7053         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY))
7054                 return EACCES;
7055
7056         rc = mdb_cursor_open(txn, dbi, &mc);
7057         if (rc)
7058                 return rc;
7059
7060         rc = mdb_drop0(mc, mc->mc_db->md_flags & MDB_DUPSORT);
7061         if (rc)
7062                 goto leave;
7063
7064         /* Can't delete the main DB */
7065         if (del && dbi > MAIN_DBI) {
7066                 rc = mdb_del(txn, MAIN_DBI, &mc->mc_dbx->md_name, NULL);
7067                 if (!rc)
7068                         mdb_dbi_close(txn->mt_env, dbi);
7069         } else {
7070                 /* reset the DB record, mark it dirty */
7071                 txn->mt_dbflags[dbi] |= DB_DIRTY;
7072                 txn->mt_dbs[dbi].md_depth = 0;
7073                 txn->mt_dbs[dbi].md_branch_pages = 0;
7074                 txn->mt_dbs[dbi].md_leaf_pages = 0;
7075                 txn->mt_dbs[dbi].md_overflow_pages = 0;
7076                 txn->mt_dbs[dbi].md_entries = 0;
7077                 txn->mt_dbs[dbi].md_root = P_INVALID;
7078
7079                 if (!txn->mt_u.dirty_list[0].mid) {
7080                         MDB_cursor m2;
7081                         MDB_val key, data;
7082                         /* make sure we have at least one dirty page in this txn
7083                          * otherwise these changes will be ignored.
7084                          */
7085                         key.mv_size = sizeof(txnid_t);
7086                         key.mv_data = &txn->mt_txnid;
7087                         data.mv_size = sizeof(MDB_ID);
7088                         data.mv_data = txn->mt_free_pgs;
7089                         mdb_cursor_init(&m2, txn, FREE_DBI, NULL);
7090                         rc = mdb_cursor_put(&m2, &key, &data, 0);
7091                 }
7092         }
7093 leave:
7094         mdb_cursor_close(mc);
7095         return rc;
7096 }
7097
7098 int mdb_set_compare(MDB_txn *txn, MDB_dbi dbi, MDB_cmp_func *cmp)
7099 {
7100         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs)
7101                 return EINVAL;
7102
7103         txn->mt_dbxs[dbi].md_cmp = cmp;
7104         return MDB_SUCCESS;
7105 }
7106
7107 int mdb_set_dupsort(MDB_txn *txn, MDB_dbi dbi, MDB_cmp_func *cmp)
7108 {
7109         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs)
7110                 return EINVAL;
7111
7112         txn->mt_dbxs[dbi].md_dcmp = cmp;
7113         return MDB_SUCCESS;
7114 }
7115
7116 int mdb_set_relfunc(MDB_txn *txn, MDB_dbi dbi, MDB_rel_func *rel)
7117 {
7118         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs)
7119                 return EINVAL;
7120
7121         txn->mt_dbxs[dbi].md_rel = rel;
7122         return MDB_SUCCESS;
7123 }
7124
7125 int mdb_set_relctx(MDB_txn *txn, MDB_dbi dbi, void *ctx)
7126 {
7127         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs)
7128                 return EINVAL;
7129
7130         txn->mt_dbxs[dbi].md_relctx = ctx;
7131         return MDB_SUCCESS;
7132 }
7133
7134 /** @} */