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