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