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