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