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