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