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