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