]> git.sur5r.net Git - openldap/blob - libraries/liblmdb/mdb.c
Free write mutex earlier in txn_reset0
[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) || defined(ANDROID)
94 /* Most platforms have posix_memalign, older may only have memalign */
95 #define HAVE_MEMALIGN   1
96 #include <malloc.h>
97 #endif
98
99 #if !(defined(BYTE_ORDER) || defined(__BYTE_ORDER))
100 #include <netinet/in.h>
101 #include <resolv.h>     /* defines BYTE_ORDER on HPUX and Solaris */
102 #endif
103
104 #if defined(__APPLE__) || defined (BSD)
105 # define MDB_USE_POSIX_SEM      1
106 # define MDB_FDATASYNC          fsync
107 #elif defined(ANDROID)
108 # define MDB_FDATASYNC          fsync
109 #endif
110
111 #ifndef _WIN32
112 #include <pthread.h>
113 #ifdef MDB_USE_POSIX_SEM
114 # define MDB_USE_HASH           1
115 #include <semaphore.h>
116 #endif
117 #endif
118
119 #ifdef USE_VALGRIND
120 #include <valgrind/memcheck.h>
121 #define VGMEMP_CREATE(h,r,z)    VALGRIND_CREATE_MEMPOOL(h,r,z)
122 #define VGMEMP_ALLOC(h,a,s) VALGRIND_MEMPOOL_ALLOC(h,a,s)
123 #define VGMEMP_FREE(h,a) VALGRIND_MEMPOOL_FREE(h,a)
124 #define VGMEMP_DESTROY(h)       VALGRIND_DESTROY_MEMPOOL(h)
125 #define VGMEMP_DEFINED(a,s)     VALGRIND_MAKE_MEM_DEFINED(a,s)
126 #else
127 #define VGMEMP_CREATE(h,r,z)
128 #define VGMEMP_ALLOC(h,a,s)
129 #define VGMEMP_FREE(h,a)
130 #define VGMEMP_DESTROY(h)
131 #define VGMEMP_DEFINED(a,s)
132 #endif
133
134 #ifndef BYTE_ORDER
135 # if (defined(_LITTLE_ENDIAN) || defined(_BIG_ENDIAN)) && !(defined(_LITTLE_ENDIAN) && defined(_BIG_ENDIAN))
136 /* Solaris just defines one or the other */
137 #  define LITTLE_ENDIAN 1234
138 #  define BIG_ENDIAN    4321
139 #  ifdef _LITTLE_ENDIAN
140 #   define BYTE_ORDER  LITTLE_ENDIAN
141 #  else
142 #   define BYTE_ORDER  BIG_ENDIAN
143 #  endif
144 # else
145 #  define BYTE_ORDER   __BYTE_ORDER
146 # endif
147 #endif
148
149 #ifndef LITTLE_ENDIAN
150 #define LITTLE_ENDIAN   __LITTLE_ENDIAN
151 #endif
152 #ifndef BIG_ENDIAN
153 #define BIG_ENDIAN      __BIG_ENDIAN
154 #endif
155
156 #if defined(__i386) || defined(__x86_64) || defined(_M_IX86)
157 #define MISALIGNED_OK   1
158 #endif
159
160 #include "lmdb.h"
161 #include "midl.h"
162
163 #if (BYTE_ORDER == LITTLE_ENDIAN) == (BYTE_ORDER == BIG_ENDIAN)
164 # error "Unknown or unsupported endianness (BYTE_ORDER)"
165 #elif (-6 & 5) || CHAR_BIT != 8 || UINT_MAX < 0xffffffff || ULONG_MAX % 0xFFFF
166 # error "Two's complement, reasonably sized integer types, please"
167 #endif
168
169 #ifdef __GNUC__
170 /** Put infrequently used env functions in separate section */
171 # ifdef __APPLE__
172 #  define       ESECT   __attribute__ ((section("__TEXT,text_env")))
173 # else
174 #  define       ESECT   __attribute__ ((section("text_env")))
175 # endif
176 #else
177 #define ESECT
178 #endif
179
180 /** @defgroup internal  LMDB Internals
181  *      @{
182  */
183 /** @defgroup compat    Compatibility Macros
184  *      A bunch of macros to minimize the amount of platform-specific ifdefs
185  *      needed throughout the rest of the code. When the features this library
186  *      needs are similar enough to POSIX to be hidden in a one-or-two line
187  *      replacement, this macro approach is used.
188  *      @{
189  */
190
191         /** Features under development */
192 #ifndef MDB_DEVEL
193 #define MDB_DEVEL 0
194 #endif
195
196         /** 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                         txn->mt_flags = 0;
2630                         goto ok;
2631                 }
2632                 size += env->me_maxdbs * sizeof(MDB_cursor *);
2633                 /* child txns use parent's dbiseqs */
2634                 if (!parent)
2635                         size += env->me_maxdbs * sizeof(unsigned int);
2636         }
2637
2638         if ((txn = calloc(1, size)) == NULL) {
2639                 DPRINTF(("calloc: %s", strerror(errno)));
2640                 return ENOMEM;
2641         }
2642         txn->mt_dbs = (MDB_db *) ((char *)txn + tsize);
2643         if (flags & MDB_RDONLY) {
2644                 txn->mt_flags |= MDB_TXN_RDONLY;
2645                 txn->mt_dbflags = (unsigned char *)(txn->mt_dbs + env->me_maxdbs);
2646                 txn->mt_dbiseqs = env->me_dbiseqs;
2647         } else {
2648                 txn->mt_cursors = (MDB_cursor **)(txn->mt_dbs + env->me_maxdbs);
2649                 if (parent) {
2650                         txn->mt_dbiseqs = parent->mt_dbiseqs;
2651                         txn->mt_dbflags = (unsigned char *)(txn->mt_cursors + env->me_maxdbs);
2652                 } else {
2653                         txn->mt_dbiseqs = (unsigned int *)(txn->mt_cursors + env->me_maxdbs);
2654                         txn->mt_dbflags = (unsigned char *)(txn->mt_dbiseqs + env->me_maxdbs);
2655                 }
2656         }
2657         txn->mt_env = env;
2658
2659 ok:
2660         if (parent) {
2661                 unsigned int i;
2662                 txn->mt_u.dirty_list = malloc(sizeof(MDB_ID2)*MDB_IDL_UM_SIZE);
2663                 if (!txn->mt_u.dirty_list ||
2664                         !(txn->mt_free_pgs = mdb_midl_alloc(MDB_IDL_UM_MAX)))
2665                 {
2666                         free(txn->mt_u.dirty_list);
2667                         free(txn);
2668                         return ENOMEM;
2669                 }
2670                 txn->mt_txnid = parent->mt_txnid;
2671                 txn->mt_dirty_room = parent->mt_dirty_room;
2672                 txn->mt_u.dirty_list[0].mid = 0;
2673                 txn->mt_spill_pgs = NULL;
2674                 txn->mt_next_pgno = parent->mt_next_pgno;
2675                 parent->mt_child = txn;
2676                 txn->mt_parent = parent;
2677                 txn->mt_numdbs = parent->mt_numdbs;
2678                 txn->mt_flags = parent->mt_flags;
2679                 txn->mt_dbxs = parent->mt_dbxs;
2680                 memcpy(txn->mt_dbs, parent->mt_dbs, txn->mt_numdbs * sizeof(MDB_db));
2681                 /* Copy parent's mt_dbflags, but clear DB_NEW */
2682                 for (i=0; i<txn->mt_numdbs; i++)
2683                         txn->mt_dbflags[i] = parent->mt_dbflags[i] & ~DB_NEW;
2684                 rc = 0;
2685                 ntxn = (MDB_ntxn *)txn;
2686                 ntxn->mnt_pgstate = env->me_pgstate; /* save parent me_pghead & co */
2687                 if (env->me_pghead) {
2688                         size = MDB_IDL_SIZEOF(env->me_pghead);
2689                         env->me_pghead = mdb_midl_alloc(env->me_pghead[0]);
2690                         if (env->me_pghead)
2691                                 memcpy(env->me_pghead, ntxn->mnt_pgstate.mf_pghead, size);
2692                         else
2693                                 rc = ENOMEM;
2694                 }
2695                 if (!rc)
2696                         rc = mdb_cursor_shadow(parent, txn);
2697                 if (rc)
2698                         mdb_txn_reset0(txn, "beginchild-fail");
2699         } else {
2700                 rc = mdb_txn_renew0(txn);
2701         }
2702         if (rc) {
2703                 if (txn != env->me_txn0)
2704                         free(txn);
2705         } else {
2706                 *ret = txn;
2707                 DPRINTF(("begin txn %"Z"u%c %p on mdbenv %p, root page %"Z"u",
2708                         txn->mt_txnid, (txn->mt_flags & MDB_TXN_RDONLY) ? 'r' : 'w',
2709                         (void *) txn, (void *) env, txn->mt_dbs[MAIN_DBI].md_root));
2710         }
2711
2712         return rc;
2713 }
2714
2715 MDB_env *
2716 mdb_txn_env(MDB_txn *txn)
2717 {
2718         if(!txn) return NULL;
2719         return txn->mt_env;
2720 }
2721
2722 /** Export or close DBI handles opened in this txn. */
2723 static void
2724 mdb_dbis_update(MDB_txn *txn, int keep)
2725 {
2726         int i;
2727         MDB_dbi n = txn->mt_numdbs;
2728         MDB_env *env = txn->mt_env;
2729         unsigned char *tdbflags = txn->mt_dbflags;
2730
2731         for (i = n; --i >= 2;) {
2732                 if (tdbflags[i] & DB_NEW) {
2733                         if (keep) {
2734                                 env->me_dbflags[i] = txn->mt_dbs[i].md_flags | MDB_VALID;
2735                         } else {
2736                                 char *ptr = env->me_dbxs[i].md_name.mv_data;
2737                                 if (ptr) {
2738                                         env->me_dbxs[i].md_name.mv_data = NULL;
2739                                         env->me_dbxs[i].md_name.mv_size = 0;
2740                                         env->me_dbflags[i] = 0;
2741                                         env->me_dbiseqs[i]++;
2742                                         free(ptr);
2743                                 }
2744                         }
2745                 }
2746         }
2747         if (keep && env->me_numdbs < n)
2748                 env->me_numdbs = n;
2749 }
2750
2751 /** Common code for #mdb_txn_reset() and #mdb_txn_abort().
2752  * May be called twice for readonly txns: First reset it, then abort.
2753  * @param[in] txn the transaction handle to reset
2754  * @param[in] act why the transaction is being reset
2755  */
2756 static void
2757 mdb_txn_reset0(MDB_txn *txn, const char *act)
2758 {
2759         MDB_env *env = txn->mt_env;
2760
2761         /* Close any DBI handles opened in this txn */
2762         mdb_dbis_update(txn, 0);
2763
2764         DPRINTF(("%s txn %"Z"u%c %p on mdbenv %p, root page %"Z"u",
2765                 act, txn->mt_txnid, (txn->mt_flags & MDB_TXN_RDONLY) ? 'r' : 'w',
2766                 (void *) txn, (void *)env, txn->mt_dbs[MAIN_DBI].md_root));
2767
2768         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY)) {
2769                 if (txn->mt_u.reader) {
2770                         txn->mt_u.reader->mr_txnid = (txnid_t)-1;
2771                         if (!(env->me_flags & MDB_NOTLS))
2772                                 txn->mt_u.reader = NULL; /* txn does not own reader */
2773                 }
2774                 txn->mt_numdbs = 0;             /* close nothing if called again */
2775                 txn->mt_dbxs = NULL;    /* mark txn as reset */
2776         } else {
2777                 pgno_t *pghead = env->me_pghead;
2778                 env->me_pghead = NULL;
2779                 env->me_pglast = 0;
2780
2781                 if (!txn->mt_parent) {
2782                         if (mdb_midl_shrink(&txn->mt_free_pgs))
2783                                 env->me_free_pgs = txn->mt_free_pgs;
2784
2785                         env->me_txn = NULL;
2786                         /* The writer mutex was locked in mdb_txn_begin. */
2787                         if (env->me_txns)
2788                                 UNLOCK_MUTEX_W(env);
2789                 }
2790
2791                 mdb_cursors_close(txn, 0);
2792
2793                 if (!(env->me_flags & MDB_WRITEMAP)) {
2794                         mdb_dlist_free(txn);
2795                 }
2796                 mdb_midl_free(pghead);
2797
2798                 if (txn->mt_parent) {
2799                         txn->mt_parent->mt_child = NULL;
2800                         env->me_pgstate = ((MDB_ntxn *)txn)->mnt_pgstate;
2801                         mdb_midl_free(txn->mt_free_pgs);
2802                         mdb_midl_free(txn->mt_spill_pgs);
2803                         free(txn->mt_u.dirty_list);
2804                 }
2805         }
2806 }
2807
2808 void
2809 mdb_txn_reset(MDB_txn *txn)
2810 {
2811         if (txn == NULL)
2812                 return;
2813
2814         /* This call is only valid for read-only txns */
2815         if (!(txn->mt_flags & MDB_TXN_RDONLY))
2816                 return;
2817
2818         mdb_txn_reset0(txn, "reset");
2819 }
2820
2821 void
2822 mdb_txn_abort(MDB_txn *txn)
2823 {
2824         if (txn == NULL)
2825                 return;
2826
2827         if (txn->mt_child)
2828                 mdb_txn_abort(txn->mt_child);
2829
2830         mdb_txn_reset0(txn, "abort");
2831         /* Free reader slot tied to this txn (if MDB_NOTLS && writable FS) */
2832         if ((txn->mt_flags & MDB_TXN_RDONLY) && txn->mt_u.reader)
2833                 txn->mt_u.reader->mr_pid = 0;
2834
2835         if (txn != txn->mt_env->me_txn0)
2836                 free(txn);
2837 }
2838
2839 /** Save the freelist as of this transaction to the freeDB.
2840  * This changes the freelist. Keep trying until it stabilizes.
2841  */
2842 static int
2843 mdb_freelist_save(MDB_txn *txn)
2844 {
2845         /* env->me_pghead[] can grow and shrink during this call.
2846          * env->me_pglast and txn->mt_free_pgs[] can only grow.
2847          * Page numbers cannot disappear from txn->mt_free_pgs[].
2848          */
2849         MDB_cursor mc;
2850         MDB_env *env = txn->mt_env;
2851         int rc, maxfree_1pg = env->me_maxfree_1pg, more = 1;
2852         txnid_t pglast = 0, head_id = 0;
2853         pgno_t  freecnt = 0, *free_pgs, *mop;
2854         ssize_t head_room = 0, total_room = 0, mop_len, clean_limit;
2855
2856         mdb_cursor_init(&mc, txn, FREE_DBI, NULL);
2857
2858         if (env->me_pghead) {
2859                 /* Make sure first page of freeDB is touched and on freelist */
2860                 rc = mdb_page_search(&mc, NULL, MDB_PS_FIRST|MDB_PS_MODIFY);
2861                 if (rc && rc != MDB_NOTFOUND)
2862                         return rc;
2863         }
2864
2865         if (!env->me_pghead && txn->mt_loose_pgs) {
2866                 /* Put loose page numbers in mt_free_pgs, since
2867                  * we may be unable to return them to me_pghead.
2868                  */
2869                 MDB_page *mp = txn->mt_loose_pgs;
2870                 if ((rc = mdb_midl_need(&txn->mt_free_pgs, txn->mt_loose_count)) != 0)
2871                         return rc;
2872                 for (; mp; mp = NEXT_LOOSE_PAGE(mp))
2873                         mdb_midl_xappend(txn->mt_free_pgs, mp->mp_pgno);
2874                 txn->mt_loose_pgs = NULL;
2875                 txn->mt_loose_count = 0;
2876         }
2877
2878         /* MDB_RESERVE cancels meminit in ovpage malloc (when no WRITEMAP) */
2879         clean_limit = (env->me_flags & (MDB_NOMEMINIT|MDB_WRITEMAP))
2880                 ? SSIZE_MAX : maxfree_1pg;
2881
2882         for (;;) {
2883                 /* Come back here after each Put() in case freelist changed */
2884                 MDB_val key, data;
2885                 pgno_t *pgs;
2886                 ssize_t j;
2887
2888                 /* If using records from freeDB which we have not yet
2889                  * deleted, delete them and any we reserved for me_pghead.
2890                  */
2891                 while (pglast < env->me_pglast) {
2892                         rc = mdb_cursor_first(&mc, &key, NULL);
2893                         if (rc)
2894                                 return rc;
2895                         pglast = head_id = *(txnid_t *)key.mv_data;
2896                         total_room = head_room = 0;
2897                         mdb_tassert(txn, pglast <= env->me_pglast);
2898                         rc = mdb_cursor_del(&mc, 0);
2899                         if (rc)
2900                                 return rc;
2901                 }
2902
2903                 /* Save the IDL of pages freed by this txn, to a single record */
2904                 if (freecnt < txn->mt_free_pgs[0]) {
2905                         if (!freecnt) {
2906                                 /* Make sure last page of freeDB is touched and on freelist */
2907                                 rc = mdb_page_search(&mc, NULL, MDB_PS_LAST|MDB_PS_MODIFY);
2908                                 if (rc && rc != MDB_NOTFOUND)
2909                                         return rc;
2910                         }
2911                         free_pgs = txn->mt_free_pgs;
2912                         /* Write to last page of freeDB */
2913                         key.mv_size = sizeof(txn->mt_txnid);
2914                         key.mv_data = &txn->mt_txnid;
2915                         do {
2916                                 freecnt = free_pgs[0];
2917                                 data.mv_size = MDB_IDL_SIZEOF(free_pgs);
2918                                 rc = mdb_cursor_put(&mc, &key, &data, MDB_RESERVE);
2919                                 if (rc)
2920                                         return rc;
2921                                 /* Retry if mt_free_pgs[] grew during the Put() */
2922                                 free_pgs = txn->mt_free_pgs;
2923                         } while (freecnt < free_pgs[0]);
2924                         mdb_midl_sort(free_pgs);
2925                         memcpy(data.mv_data, free_pgs, data.mv_size);
2926 #if (MDB_DEBUG) > 1
2927                         {
2928                                 unsigned int i = free_pgs[0];
2929                                 DPRINTF(("IDL write txn %"Z"u root %"Z"u num %u",
2930                                         txn->mt_txnid, txn->mt_dbs[FREE_DBI].md_root, i));
2931                                 for (; i; i--)
2932                                         DPRINTF(("IDL %"Z"u", free_pgs[i]));
2933                         }
2934 #endif
2935                         continue;
2936                 }
2937
2938                 mop = env->me_pghead;
2939                 mop_len = (mop ? mop[0] : 0) + txn->mt_loose_count;
2940
2941                 /* Reserve records for me_pghead[]. Split it if multi-page,
2942                  * to avoid searching freeDB for a page range. Use keys in
2943                  * range [1,me_pglast]: Smaller than txnid of oldest reader.
2944                  */
2945                 if (total_room >= mop_len) {
2946                         if (total_room == mop_len || --more < 0)
2947                                 break;
2948                 } else if (head_room >= maxfree_1pg && head_id > 1) {
2949                         /* Keep current record (overflow page), add a new one */
2950                         head_id--;
2951                         head_room = 0;
2952                 }
2953                 /* (Re)write {key = head_id, IDL length = head_room} */
2954                 total_room -= head_room;
2955                 head_room = mop_len - total_room;
2956                 if (head_room > maxfree_1pg && head_id > 1) {
2957                         /* Overflow multi-page for part of me_pghead */
2958                         head_room /= head_id; /* amortize page sizes */
2959                         head_room += maxfree_1pg - head_room % (maxfree_1pg + 1);
2960                 } else if (head_room < 0) {
2961                         /* Rare case, not bothering to delete this record */
2962                         head_room = 0;
2963                 }
2964                 key.mv_size = sizeof(head_id);
2965                 key.mv_data = &head_id;
2966                 data.mv_size = (head_room + 1) * sizeof(pgno_t);
2967                 rc = mdb_cursor_put(&mc, &key, &data, MDB_RESERVE);
2968                 if (rc)
2969                         return rc;
2970                 /* IDL is initially empty, zero out at least the length */
2971                 pgs = (pgno_t *)data.mv_data;
2972                 j = head_room > clean_limit ? head_room : 0;
2973                 do {
2974                         pgs[j] = 0;
2975                 } while (--j >= 0);
2976                 total_room += head_room;
2977         }
2978
2979         /* Return loose page numbers to me_pghead, though usually none are
2980          * left at this point.  The pages themselves remain in dirty_list.
2981          */
2982         if (txn->mt_loose_pgs) {
2983                 MDB_page *mp = txn->mt_loose_pgs;
2984                 unsigned count = txn->mt_loose_count;
2985                 MDB_IDL loose;
2986                 /* Room for loose pages + temp IDL with same */
2987                 if ((rc = mdb_midl_need(&env->me_pghead, 2*count+1)) != 0)
2988                         return rc;
2989                 mop = env->me_pghead;
2990                 loose = mop + MDB_IDL_ALLOCLEN(mop) - count;
2991                 for (count = 0; mp; mp = NEXT_LOOSE_PAGE(mp))
2992                         loose[ ++count ] = mp->mp_pgno;
2993                 loose[0] = count;
2994                 mdb_midl_sort(loose);
2995                 mdb_midl_xmerge(mop, loose);
2996                 txn->mt_loose_pgs = NULL;
2997                 txn->mt_loose_count = 0;
2998                 mop_len = mop[0];
2999         }
3000
3001         /* Fill in the reserved me_pghead records */
3002         rc = MDB_SUCCESS;
3003         if (mop_len) {
3004                 MDB_val key, data;
3005
3006                 mop += mop_len;
3007                 rc = mdb_cursor_first(&mc, &key, &data);
3008                 for (; !rc; rc = mdb_cursor_next(&mc, &key, &data, MDB_NEXT)) {
3009                         txnid_t id = *(txnid_t *)key.mv_data;
3010                         ssize_t len = (ssize_t)(data.mv_size / sizeof(MDB_ID)) - 1;
3011                         MDB_ID save;
3012
3013                         mdb_tassert(txn, len >= 0 && id <= env->me_pglast);
3014                         key.mv_data = &id;
3015                         if (len > mop_len) {
3016                                 len = mop_len;
3017                                 data.mv_size = (len + 1) * sizeof(MDB_ID);
3018                         }
3019                         data.mv_data = mop -= len;
3020                         save = mop[0];
3021                         mop[0] = len;
3022                         rc = mdb_cursor_put(&mc, &key, &data, MDB_CURRENT);
3023                         mop[0] = save;
3024                         if (rc || !(mop_len -= len))
3025                                 break;
3026                 }
3027         }
3028         return rc;
3029 }
3030
3031 /** Flush (some) dirty pages to the map, after clearing their dirty flag.
3032  * @param[in] txn the transaction that's being committed
3033  * @param[in] keep number of initial pages in dirty_list to keep dirty.
3034  * @return 0 on success, non-zero on failure.
3035  */
3036 static int
3037 mdb_page_flush(MDB_txn *txn, int keep)
3038 {
3039         MDB_env         *env = txn->mt_env;
3040         MDB_ID2L        dl = txn->mt_u.dirty_list;
3041         unsigned        psize = env->me_psize, j;
3042         int                     i, pagecount = dl[0].mid, rc;
3043         size_t          size = 0, pos = 0;
3044         pgno_t          pgno = 0;
3045         MDB_page        *dp = NULL;
3046 #ifdef _WIN32
3047         OVERLAPPED      ov;
3048 #else
3049         struct iovec iov[MDB_COMMIT_PAGES];
3050         ssize_t         wpos = 0, wsize = 0, wres;
3051         size_t          next_pos = 1; /* impossible pos, so pos != next_pos */
3052         int                     n = 0;
3053 #endif
3054
3055         j = i = keep;
3056
3057         if (env->me_flags & MDB_WRITEMAP) {
3058                 /* Clear dirty flags */
3059                 while (++i <= pagecount) {
3060                         dp = dl[i].mptr;
3061                         /* Don't flush this page yet */
3062                         if (dp->mp_flags & (P_LOOSE|P_KEEP)) {
3063                                 dp->mp_flags &= ~P_KEEP;
3064                                 dl[++j] = dl[i];
3065                                 continue;
3066                         }
3067                         dp->mp_flags &= ~P_DIRTY;
3068                 }
3069                 goto done;
3070         }
3071
3072         /* Write the pages */
3073         for (;;) {
3074                 if (++i <= pagecount) {
3075                         dp = dl[i].mptr;
3076                         /* Don't flush this page yet */
3077                         if (dp->mp_flags & (P_LOOSE|P_KEEP)) {
3078                                 dp->mp_flags &= ~P_KEEP;
3079                                 dl[i].mid = 0;
3080                                 continue;
3081                         }
3082                         pgno = dl[i].mid;
3083                         /* clear dirty flag */
3084                         dp->mp_flags &= ~P_DIRTY;
3085                         pos = pgno * psize;
3086                         size = psize;
3087                         if (IS_OVERFLOW(dp)) size *= dp->mp_pages;
3088                 }
3089 #ifdef _WIN32
3090                 else break;
3091
3092                 /* Windows actually supports scatter/gather I/O, but only on
3093                  * unbuffered file handles. Since we're relying on the OS page
3094                  * cache for all our data, that's self-defeating. So we just
3095                  * write pages one at a time. We use the ov structure to set
3096                  * the write offset, to at least save the overhead of a Seek
3097                  * system call.
3098                  */
3099                 DPRINTF(("committing page %"Z"u", pgno));
3100                 memset(&ov, 0, sizeof(ov));
3101                 ov.Offset = pos & 0xffffffff;
3102                 ov.OffsetHigh = pos >> 16 >> 16;
3103                 if (!WriteFile(env->me_fd, dp, size, NULL, &ov)) {
3104                         rc = ErrCode();
3105                         DPRINTF(("WriteFile: %d", rc));
3106                         return rc;
3107                 }
3108 #else
3109                 /* Write up to MDB_COMMIT_PAGES dirty pages at a time. */
3110                 if (pos!=next_pos || n==MDB_COMMIT_PAGES || wsize+size>MAX_WRITE) {
3111                         if (n) {
3112                                 /* Write previous page(s) */
3113 #ifdef MDB_USE_PWRITEV
3114                                 wres = pwritev(env->me_fd, iov, n, wpos);
3115 #else
3116                                 if (n == 1) {
3117                                         wres = pwrite(env->me_fd, iov[0].iov_base, wsize, wpos);
3118                                 } else {
3119                                         if (lseek(env->me_fd, wpos, SEEK_SET) == -1) {
3120                                                 rc = ErrCode();
3121                                                 DPRINTF(("lseek: %s", strerror(rc)));
3122                                                 return rc;
3123                                         }
3124                                         wres = writev(env->me_fd, iov, n);
3125                                 }
3126 #endif
3127                                 if (wres != wsize) {
3128                                         if (wres < 0) {
3129                                                 rc = ErrCode();
3130                                                 DPRINTF(("Write error: %s", strerror(rc)));
3131                                         } else {
3132                                                 rc = EIO; /* TODO: Use which error code? */
3133                                                 DPUTS("short write, filesystem full?");
3134                                         }
3135                                         return rc;
3136                                 }
3137                                 n = 0;
3138                         }
3139                         if (i > pagecount)
3140                                 break;
3141                         wpos = pos;
3142                         wsize = 0;
3143                 }
3144                 DPRINTF(("committing page %"Z"u", pgno));
3145                 next_pos = pos + size;
3146                 iov[n].iov_len = size;
3147                 iov[n].iov_base = (char *)dp;
3148                 wsize += size;
3149                 n++;
3150 #endif  /* _WIN32 */
3151         }
3152
3153         /* MIPS has cache coherency issues, this is a no-op everywhere else
3154          * Note: for any size >= on-chip cache size, entire on-chip cache is
3155          * flushed.
3156          */
3157         CACHEFLUSH(env->me_map, txn->mt_next_pgno * env->me_psize, DCACHE);
3158
3159         for (i = keep; ++i <= pagecount; ) {
3160                 dp = dl[i].mptr;
3161                 /* This is a page we skipped above */
3162                 if (!dl[i].mid) {
3163                         dl[++j] = dl[i];
3164                         dl[j].mid = dp->mp_pgno;
3165                         continue;
3166                 }
3167                 mdb_dpage_free(env, dp);
3168         }
3169
3170 done:
3171         i--;
3172         txn->mt_dirty_room += i - j;
3173         dl[0].mid = j;
3174         return MDB_SUCCESS;
3175 }
3176
3177 int
3178 mdb_txn_commit(MDB_txn *txn)
3179 {
3180         int             rc;
3181         unsigned int i;
3182         MDB_env *env;
3183
3184         if (txn == NULL || txn->mt_env == NULL)
3185                 return EINVAL;
3186
3187         if (txn->mt_child) {
3188                 rc = mdb_txn_commit(txn->mt_child);
3189                 txn->mt_child = NULL;
3190                 if (rc)
3191                         goto fail;
3192         }
3193
3194         env = txn->mt_env;
3195
3196         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY)) {
3197                 mdb_dbis_update(txn, 1);
3198                 txn->mt_numdbs = 2; /* so txn_abort() doesn't close any new handles */
3199                 mdb_txn_abort(txn);
3200                 return MDB_SUCCESS;
3201         }
3202
3203         if (F_ISSET(txn->mt_flags, MDB_TXN_ERROR)) {
3204                 DPUTS("error flag is set, can't commit");
3205                 if (txn->mt_parent)
3206                         txn->mt_parent->mt_flags |= MDB_TXN_ERROR;
3207                 rc = MDB_BAD_TXN;
3208                 goto fail;
3209         }
3210
3211         if (txn->mt_parent) {
3212                 MDB_txn *parent = txn->mt_parent;
3213                 MDB_page **lp;
3214                 MDB_ID2L dst, src;
3215                 MDB_IDL pspill;
3216                 unsigned x, y, len, ps_len;
3217
3218                 /* Append our free list to parent's */
3219                 rc = mdb_midl_append_list(&parent->mt_free_pgs, txn->mt_free_pgs);
3220                 if (rc)
3221                         goto fail;
3222                 mdb_midl_free(txn->mt_free_pgs);
3223                 /* Failures after this must either undo the changes
3224                  * to the parent or set MDB_TXN_ERROR in the parent.
3225                  */
3226
3227                 parent->mt_next_pgno = txn->mt_next_pgno;
3228                 parent->mt_flags = txn->mt_flags;
3229
3230                 /* Merge our cursors into parent's and close them */
3231                 mdb_cursors_close(txn, 1);
3232
3233                 /* Update parent's DB table. */
3234                 memcpy(parent->mt_dbs, txn->mt_dbs, txn->mt_numdbs * sizeof(MDB_db));
3235                 parent->mt_numdbs = txn->mt_numdbs;
3236                 parent->mt_dbflags[0] = txn->mt_dbflags[0];
3237                 parent->mt_dbflags[1] = txn->mt_dbflags[1];
3238                 for (i=2; i<txn->mt_numdbs; i++) {
3239                         /* preserve parent's DB_NEW status */
3240                         x = parent->mt_dbflags[i] & DB_NEW;
3241                         parent->mt_dbflags[i] = txn->mt_dbflags[i] | x;
3242                 }
3243
3244                 dst = parent->mt_u.dirty_list;
3245                 src = txn->mt_u.dirty_list;
3246                 /* Remove anything in our dirty list from parent's spill list */
3247                 if ((pspill = parent->mt_spill_pgs) && (ps_len = pspill[0])) {
3248                         x = y = ps_len;
3249                         pspill[0] = (pgno_t)-1;
3250                         /* Mark our dirty pages as deleted in parent spill list */
3251                         for (i=0, len=src[0].mid; ++i <= len; ) {
3252                                 MDB_ID pn = src[i].mid << 1;
3253                                 while (pn > pspill[x])
3254                                         x--;
3255                                 if (pn == pspill[x]) {
3256                                         pspill[x] = 1;
3257                                         y = --x;
3258                                 }
3259                         }
3260                         /* Squash deleted pagenums if we deleted any */
3261                         for (x=y; ++x <= ps_len; )
3262                                 if (!(pspill[x] & 1))
3263                                         pspill[++y] = pspill[x];
3264                         pspill[0] = y;
3265                 }
3266
3267                 /* Find len = length of merging our dirty list with parent's */
3268                 x = dst[0].mid;
3269                 dst[0].mid = 0;         /* simplify loops */
3270                 if (parent->mt_parent) {
3271                         len = x + src[0].mid;
3272                         y = mdb_mid2l_search(src, dst[x].mid + 1) - 1;
3273                         for (i = x; y && i; y--) {
3274                                 pgno_t yp = src[y].mid;
3275                                 while (yp < dst[i].mid)
3276                                         i--;
3277                                 if (yp == dst[i].mid) {
3278                                         i--;
3279                                         len--;
3280                                 }
3281                         }
3282                 } else { /* Simplify the above for single-ancestor case */
3283                         len = MDB_IDL_UM_MAX - txn->mt_dirty_room;
3284                 }
3285                 /* Merge our dirty list with parent's */
3286                 y = src[0].mid;
3287                 for (i = len; y; dst[i--] = src[y--]) {
3288                         pgno_t yp = src[y].mid;
3289                         while (yp < dst[x].mid)
3290                                 dst[i--] = dst[x--];
3291                         if (yp == dst[x].mid)
3292                                 free(dst[x--].mptr);
3293                 }
3294                 mdb_tassert(txn, i == x);
3295                 dst[0].mid = len;
3296                 free(txn->mt_u.dirty_list);
3297                 parent->mt_dirty_room = txn->mt_dirty_room;
3298                 if (txn->mt_spill_pgs) {
3299                         if (parent->mt_spill_pgs) {
3300                                 /* TODO: Prevent failure here, so parent does not fail */
3301                                 rc = mdb_midl_append_list(&parent->mt_spill_pgs, txn->mt_spill_pgs);
3302                                 if (rc)
3303                                         parent->mt_flags |= MDB_TXN_ERROR;
3304                                 mdb_midl_free(txn->mt_spill_pgs);
3305                                 mdb_midl_sort(parent->mt_spill_pgs);
3306                         } else {
3307                                 parent->mt_spill_pgs = txn->mt_spill_pgs;
3308                         }
3309                 }
3310
3311                 /* Append our loose page list to parent's */
3312                 for (lp = &parent->mt_loose_pgs; *lp; lp = &NEXT_LOOSE_PAGE(lp))
3313                         ;
3314                 *lp = txn->mt_loose_pgs;
3315                 parent->mt_loose_count += txn->mt_loose_count;
3316
3317                 parent->mt_child = NULL;
3318                 mdb_midl_free(((MDB_ntxn *)txn)->mnt_pgstate.mf_pghead);
3319                 free(txn);
3320                 return rc;
3321         }
3322
3323         if (txn != env->me_txn) {
3324                 DPUTS("attempt to commit unknown transaction");
3325                 rc = EINVAL;
3326                 goto fail;
3327         }
3328
3329         mdb_cursors_close(txn, 0);
3330
3331         if (!txn->mt_u.dirty_list[0].mid &&
3332                 !(txn->mt_flags & (MDB_TXN_DIRTY|MDB_TXN_SPILLS)))
3333                 goto done;
3334
3335         DPRINTF(("committing txn %"Z"u %p on mdbenv %p, root page %"Z"u",
3336             txn->mt_txnid, (void*)txn, (void*)env, txn->mt_dbs[MAIN_DBI].md_root));
3337
3338         /* Update DB root pointers */
3339         if (txn->mt_numdbs > 2) {
3340                 MDB_cursor mc;
3341                 MDB_dbi i;
3342                 MDB_val data;
3343                 data.mv_size = sizeof(MDB_db);
3344
3345                 mdb_cursor_init(&mc, txn, MAIN_DBI, NULL);
3346                 for (i = 2; i < txn->mt_numdbs; i++) {
3347                         if (txn->mt_dbflags[i] & DB_DIRTY) {
3348                                 if (TXN_DBI_CHANGED(txn, i)) {
3349                                         rc = MDB_BAD_DBI;
3350                                         goto fail;
3351                                 }
3352                                 data.mv_data = &txn->mt_dbs[i];
3353                                 rc = mdb_cursor_put(&mc, &txn->mt_dbxs[i].md_name, &data, 0);
3354                                 if (rc)
3355                                         goto fail;
3356                         }
3357                 }
3358         }
3359
3360         rc = mdb_freelist_save(txn);
3361         if (rc)
3362                 goto fail;
3363
3364         mdb_midl_free(env->me_pghead);
3365         env->me_pghead = NULL;
3366         if (mdb_midl_shrink(&txn->mt_free_pgs))
3367                 env->me_free_pgs = txn->mt_free_pgs;
3368
3369 #if (MDB_DEBUG) > 2
3370         mdb_audit(txn);
3371 #endif
3372
3373         if ((rc = mdb_page_flush(txn, 0)) ||
3374                 (rc = mdb_env_sync(env, 0)) ||
3375                 (rc = mdb_env_write_meta(txn)))
3376                 goto fail;
3377
3378         /* Free P_LOOSE pages left behind in dirty_list */
3379         if (!(env->me_flags & MDB_WRITEMAP))
3380                 mdb_dlist_free(txn);
3381
3382 done:
3383         env->me_pglast = 0;
3384         env->me_txn = NULL;
3385         mdb_dbis_update(txn, 1);
3386
3387         if (env->me_txns)
3388                 UNLOCK_MUTEX_W(env);
3389         if (txn != env->me_txn0)
3390                 free(txn);
3391
3392         return MDB_SUCCESS;
3393
3394 fail:
3395         mdb_txn_abort(txn);
3396         return rc;
3397 }
3398
3399 /** Read the environment parameters of a DB environment before
3400  * mapping it into memory.
3401  * @param[in] env the environment handle
3402  * @param[out] meta address of where to store the meta information
3403  * @return 0 on success, non-zero on failure.
3404  */
3405 static int ESECT
3406 mdb_env_read_header(MDB_env *env, MDB_meta *meta)
3407 {
3408         MDB_metabuf     pbuf;
3409         MDB_page        *p;
3410         MDB_meta        *m;
3411         int                     i, rc, off;
3412         enum { Size = sizeof(pbuf) };
3413
3414         /* We don't know the page size yet, so use a minimum value.
3415          * Read both meta pages so we can use the latest one.
3416          */
3417
3418         for (i=off=0; i<2; i++, off = meta->mm_psize) {
3419 #ifdef _WIN32
3420                 DWORD len;
3421                 OVERLAPPED ov;
3422                 memset(&ov, 0, sizeof(ov));
3423                 ov.Offset = off;
3424                 rc = ReadFile(env->me_fd, &pbuf, Size, &len, &ov) ? (int)len : -1;
3425                 if (rc == -1 && ErrCode() == ERROR_HANDLE_EOF)
3426                         rc = 0;
3427 #else
3428                 rc = pread(env->me_fd, &pbuf, Size, off);
3429 #endif
3430                 if (rc != Size) {
3431                         if (rc == 0 && off == 0)
3432                                 return ENOENT;
3433                         rc = rc < 0 ? (int) ErrCode() : MDB_INVALID;
3434                         DPRINTF(("read: %s", mdb_strerror(rc)));
3435                         return rc;
3436                 }
3437
3438                 p = (MDB_page *)&pbuf;
3439
3440                 if (!F_ISSET(p->mp_flags, P_META)) {
3441                         DPRINTF(("page %"Z"u not a meta page", p->mp_pgno));
3442                         return MDB_INVALID;
3443                 }
3444
3445                 m = METADATA(p);
3446                 if (m->mm_magic != MDB_MAGIC) {
3447                         DPUTS("meta has invalid magic");
3448                         return MDB_INVALID;
3449                 }
3450
3451                 if (m->mm_version != MDB_DATA_VERSION) {
3452                         DPRINTF(("database is version %u, expected version %u",
3453                                 m->mm_version, MDB_DATA_VERSION));
3454                         return MDB_VERSION_MISMATCH;
3455                 }
3456
3457                 if (off == 0 || m->mm_txnid > meta->mm_txnid)
3458                         *meta = *m;
3459         }
3460         return 0;
3461 }
3462
3463 static void ESECT
3464 mdb_env_init_meta0(MDB_env *env, MDB_meta *meta)
3465 {
3466         meta->mm_magic = MDB_MAGIC;
3467         meta->mm_version = MDB_DATA_VERSION;
3468         meta->mm_mapsize = env->me_mapsize;
3469         meta->mm_psize = env->me_psize;
3470         meta->mm_last_pg = 1;
3471         meta->mm_flags = env->me_flags & 0xffff;
3472         meta->mm_flags |= MDB_INTEGERKEY;
3473         meta->mm_dbs[0].md_root = P_INVALID;
3474         meta->mm_dbs[1].md_root = P_INVALID;
3475 }
3476
3477 /** Write the environment parameters of a freshly created DB environment.
3478  * @param[in] env the environment handle
3479  * @param[out] meta address of where to store the meta information
3480  * @return 0 on success, non-zero on failure.
3481  */
3482 static int ESECT
3483 mdb_env_init_meta(MDB_env *env, MDB_meta *meta)
3484 {
3485         MDB_page *p, *q;
3486         int rc;
3487         unsigned int     psize;
3488 #ifdef _WIN32
3489         DWORD len;
3490         OVERLAPPED ov;
3491         memset(&ov, 0, sizeof(ov));
3492 #define DO_PWRITE(rc, fd, ptr, size, len, pos)  do { \
3493         ov.Offset = pos;        \
3494         rc = WriteFile(fd, ptr, size, &len, &ov);       } while(0)
3495 #else
3496         int len;
3497 #define DO_PWRITE(rc, fd, ptr, size, len, pos)  do { \
3498         len = pwrite(fd, ptr, size, pos);       \
3499         rc = (len >= 0); } while(0)
3500 #endif
3501
3502         DPUTS("writing new meta page");
3503
3504         psize = env->me_psize;
3505
3506         mdb_env_init_meta0(env, meta);
3507
3508         p = calloc(2, psize);
3509         p->mp_pgno = 0;
3510         p->mp_flags = P_META;
3511         *(MDB_meta *)METADATA(p) = *meta;
3512
3513         q = (MDB_page *)((char *)p + psize);
3514         q->mp_pgno = 1;
3515         q->mp_flags = P_META;
3516         *(MDB_meta *)METADATA(q) = *meta;
3517
3518         DO_PWRITE(rc, env->me_fd, p, psize * 2, len, 0);
3519         if (!rc)
3520                 rc = ErrCode();
3521         else if ((unsigned) len == psize * 2)
3522                 rc = MDB_SUCCESS;
3523         else
3524                 rc = ENOSPC;
3525         free(p);
3526         return rc;
3527 }
3528
3529 /** Update the environment info to commit a transaction.
3530  * @param[in] txn the transaction that's being committed
3531  * @return 0 on success, non-zero on failure.
3532  */
3533 static int
3534 mdb_env_write_meta(MDB_txn *txn)
3535 {
3536         MDB_env *env;
3537         MDB_meta        meta, metab, *mp;
3538         size_t mapsize;
3539         off_t off;
3540         int rc, len, toggle;
3541         char *ptr;
3542         HANDLE mfd;
3543 #ifdef _WIN32
3544         OVERLAPPED ov;
3545 #else
3546         int r2;
3547 #endif
3548
3549         toggle = txn->mt_txnid & 1;
3550         DPRINTF(("writing meta page %d for root page %"Z"u",
3551                 toggle, txn->mt_dbs[MAIN_DBI].md_root));
3552
3553         env = txn->mt_env;
3554         mp = env->me_metas[toggle];
3555         mapsize = env->me_metas[toggle ^ 1]->mm_mapsize;
3556         /* Persist any increases of mapsize config */
3557         if (mapsize < env->me_mapsize)
3558                 mapsize = env->me_mapsize;
3559
3560         if (env->me_flags & MDB_WRITEMAP) {
3561                 mp->mm_mapsize = mapsize;
3562                 mp->mm_dbs[0] = txn->mt_dbs[0];
3563                 mp->mm_dbs[1] = txn->mt_dbs[1];
3564                 mp->mm_last_pg = txn->mt_next_pgno - 1;
3565                 mp->mm_txnid = txn->mt_txnid;
3566                 if (!(env->me_flags & (MDB_NOMETASYNC|MDB_NOSYNC))) {
3567                         unsigned meta_size = env->me_psize;
3568                         rc = (env->me_flags & MDB_MAPASYNC) ? MS_ASYNC : MS_SYNC;
3569                         ptr = env->me_map;
3570                         if (toggle) {
3571 #ifndef _WIN32  /* POSIX msync() requires ptr = start of OS page */
3572                                 if (meta_size < env->me_os_psize)
3573                                         meta_size += meta_size;
3574                                 else
3575 #endif
3576                                         ptr += meta_size;
3577                         }
3578                         if (MDB_MSYNC(ptr, meta_size, rc)) {
3579                                 rc = ErrCode();
3580                                 goto fail;
3581                         }
3582                 }
3583                 goto done;
3584         }
3585         metab.mm_txnid = env->me_metas[toggle]->mm_txnid;
3586         metab.mm_last_pg = env->me_metas[toggle]->mm_last_pg;
3587
3588         meta.mm_mapsize = mapsize;
3589         meta.mm_dbs[0] = txn->mt_dbs[0];
3590         meta.mm_dbs[1] = txn->mt_dbs[1];
3591         meta.mm_last_pg = txn->mt_next_pgno - 1;
3592         meta.mm_txnid = txn->mt_txnid;
3593
3594         off = offsetof(MDB_meta, mm_mapsize);
3595         ptr = (char *)&meta + off;
3596         len = sizeof(MDB_meta) - off;
3597         if (toggle)
3598                 off += env->me_psize;
3599         off += PAGEHDRSZ;
3600
3601         /* Write to the SYNC fd */
3602         mfd = env->me_flags & (MDB_NOSYNC|MDB_NOMETASYNC) ?
3603                 env->me_fd : env->me_mfd;
3604 #ifdef _WIN32
3605         {
3606                 memset(&ov, 0, sizeof(ov));
3607                 ov.Offset = off;
3608                 if (!WriteFile(mfd, ptr, len, (DWORD *)&rc, &ov))
3609                         rc = -1;
3610         }
3611 #else
3612         rc = pwrite(mfd, ptr, len, off);
3613 #endif
3614         if (rc != len) {
3615                 rc = rc < 0 ? ErrCode() : EIO;
3616                 DPUTS("write failed, disk error?");
3617                 /* On a failure, the pagecache still contains the new data.
3618                  * Write some old data back, to prevent it from being used.
3619                  * Use the non-SYNC fd; we know it will fail anyway.
3620                  */
3621                 meta.mm_last_pg = metab.mm_last_pg;
3622                 meta.mm_txnid = metab.mm_txnid;
3623 #ifdef _WIN32
3624                 memset(&ov, 0, sizeof(ov));
3625                 ov.Offset = off;
3626                 WriteFile(env->me_fd, ptr, len, NULL, &ov);
3627 #else
3628                 r2 = pwrite(env->me_fd, ptr, len, off);
3629                 (void)r2;       /* Silence warnings. We don't care about pwrite's return value */
3630 #endif
3631 fail:
3632                 env->me_flags |= MDB_FATAL_ERROR;
3633                 return rc;
3634         }
3635         /* MIPS has cache coherency issues, this is a no-op everywhere else */
3636         CACHEFLUSH(env->me_map + off, len, DCACHE);
3637 done:
3638         /* Memory ordering issues are irrelevant; since the entire writer
3639          * is wrapped by wmutex, all of these changes will become visible
3640          * after the wmutex is unlocked. Since the DB is multi-version,
3641          * readers will get consistent data regardless of how fresh or
3642          * how stale their view of these values is.
3643          */
3644         if (env->me_txns)
3645                 env->me_txns->mti_txnid = txn->mt_txnid;
3646
3647         return MDB_SUCCESS;
3648 }
3649
3650 /** Check both meta pages to see which one is newer.
3651  * @param[in] env the environment handle
3652  * @return meta toggle (0 or 1).
3653  */
3654 static int
3655 mdb_env_pick_meta(const MDB_env *env)
3656 {
3657         return (env->me_metas[0]->mm_txnid < env->me_metas[1]->mm_txnid);
3658 }
3659
3660 int ESECT
3661 mdb_env_create(MDB_env **env)
3662 {
3663         MDB_env *e;
3664
3665         e = calloc(1, sizeof(MDB_env));
3666         if (!e)
3667                 return ENOMEM;
3668
3669         e->me_maxreaders = DEFAULT_READERS;
3670         e->me_maxdbs = e->me_numdbs = 2;
3671         e->me_fd = INVALID_HANDLE_VALUE;
3672         e->me_lfd = INVALID_HANDLE_VALUE;
3673         e->me_mfd = INVALID_HANDLE_VALUE;
3674 #ifdef MDB_USE_POSIX_SEM
3675         e->me_rmutex = SEM_FAILED;
3676         e->me_wmutex = SEM_FAILED;
3677 #endif
3678         e->me_pid = getpid();
3679         GET_PAGESIZE(e->me_os_psize);
3680         VGMEMP_CREATE(e,0,0);
3681         *env = e;
3682         return MDB_SUCCESS;
3683 }
3684
3685 static int ESECT
3686 mdb_env_map(MDB_env *env, void *addr)
3687 {
3688         MDB_page *p;
3689         unsigned int flags = env->me_flags;
3690 #ifdef _WIN32
3691         int rc;
3692         HANDLE mh;
3693         LONG sizelo, sizehi;
3694         size_t msize;
3695
3696         if (flags & MDB_RDONLY) {
3697                 /* Don't set explicit map size, use whatever exists */
3698                 msize = 0;
3699                 sizelo = 0;
3700                 sizehi = 0;
3701         } else {
3702                 msize = env->me_mapsize;
3703                 sizelo = msize & 0xffffffff;
3704                 sizehi = msize >> 16 >> 16; /* only needed on Win64 */
3705
3706                 /* Windows won't create mappings for zero length files.
3707                  * and won't map more than the file size.
3708                  * Just set the maxsize right now.
3709                  */
3710                 if (SetFilePointer(env->me_fd, sizelo, &sizehi, 0) != (DWORD)sizelo
3711                         || !SetEndOfFile(env->me_fd)
3712                         || SetFilePointer(env->me_fd, 0, NULL, 0) != 0)
3713                         return ErrCode();
3714         }
3715
3716         mh = CreateFileMapping(env->me_fd, NULL, flags & MDB_WRITEMAP ?
3717                 PAGE_READWRITE : PAGE_READONLY,
3718                 sizehi, sizelo, NULL);
3719         if (!mh)
3720                 return ErrCode();
3721         env->me_map = MapViewOfFileEx(mh, flags & MDB_WRITEMAP ?
3722                 FILE_MAP_WRITE : FILE_MAP_READ,
3723                 0, 0, msize, addr);
3724         rc = env->me_map ? 0 : ErrCode();
3725         CloseHandle(mh);
3726         if (rc)
3727                 return rc;
3728 #else
3729         int prot = PROT_READ;
3730         if (flags & MDB_WRITEMAP) {
3731                 prot |= PROT_WRITE;
3732                 if (ftruncate(env->me_fd, env->me_mapsize) < 0)
3733                         return ErrCode();
3734         }
3735         env->me_map = mmap(addr, env->me_mapsize, prot, MAP_SHARED,
3736                 env->me_fd, 0);
3737         if (env->me_map == MAP_FAILED) {
3738                 env->me_map = NULL;
3739                 return ErrCode();
3740         }
3741
3742         if (flags & MDB_NORDAHEAD) {
3743                 /* Turn off readahead. It's harmful when the DB is larger than RAM. */
3744 #ifdef MADV_RANDOM
3745                 madvise(env->me_map, env->me_mapsize, MADV_RANDOM);
3746 #else
3747 #ifdef POSIX_MADV_RANDOM
3748                 posix_madvise(env->me_map, env->me_mapsize, POSIX_MADV_RANDOM);
3749 #endif /* POSIX_MADV_RANDOM */
3750 #endif /* MADV_RANDOM */
3751         }
3752 #endif /* _WIN32 */
3753
3754         /* Can happen because the address argument to mmap() is just a
3755          * hint.  mmap() can pick another, e.g. if the range is in use.
3756          * The MAP_FIXED flag would prevent that, but then mmap could
3757          * instead unmap existing pages to make room for the new map.
3758          */
3759         if (addr && env->me_map != addr)
3760                 return EBUSY;   /* TODO: Make a new MDB_* error code? */
3761
3762         p = (MDB_page *)env->me_map;
3763         env->me_metas[0] = METADATA(p);
3764         env->me_metas[1] = (MDB_meta *)((char *)env->me_metas[0] + env->me_psize);
3765
3766         return MDB_SUCCESS;
3767 }
3768
3769 int ESECT
3770 mdb_env_set_mapsize(MDB_env *env, size_t size)
3771 {
3772         /* If env is already open, caller is responsible for making
3773          * sure there are no active txns.
3774          */
3775         if (env->me_map) {
3776                 int rc;
3777                 void *old;
3778                 if (env->me_txn)
3779                         return EINVAL;
3780                 if (!size)
3781                         size = env->me_metas[mdb_env_pick_meta(env)]->mm_mapsize;
3782                 else if (size < env->me_mapsize) {
3783                         /* If the configured size is smaller, make sure it's
3784                          * still big enough. Silently round up to minimum if not.
3785                          */
3786                         size_t minsize = (env->me_metas[mdb_env_pick_meta(env)]->mm_last_pg + 1) * env->me_psize;
3787                         if (size < minsize)
3788                                 size = minsize;
3789                 }
3790                 munmap(env->me_map, env->me_mapsize);
3791                 env->me_mapsize = size;
3792                 old = (env->me_flags & MDB_FIXEDMAP) ? env->me_map : NULL;
3793                 rc = mdb_env_map(env, old);
3794                 if (rc)
3795                         return rc;
3796         }
3797         env->me_mapsize = size;
3798         if (env->me_psize)
3799                 env->me_maxpg = env->me_mapsize / env->me_psize;
3800         return MDB_SUCCESS;
3801 }
3802
3803 int ESECT
3804 mdb_env_set_maxdbs(MDB_env *env, MDB_dbi dbs)
3805 {
3806         if (env->me_map)
3807                 return EINVAL;
3808         env->me_maxdbs = dbs + 2; /* Named databases + main and free DB */
3809         return MDB_SUCCESS;
3810 }
3811
3812 int ESECT
3813 mdb_env_set_maxreaders(MDB_env *env, unsigned int readers)
3814 {
3815         if (env->me_map || readers < 1)
3816                 return EINVAL;
3817         env->me_maxreaders = readers;
3818         return MDB_SUCCESS;
3819 }
3820
3821 int ESECT
3822 mdb_env_get_maxreaders(MDB_env *env, unsigned int *readers)
3823 {
3824         if (!env || !readers)
3825                 return EINVAL;
3826         *readers = env->me_maxreaders;
3827         return MDB_SUCCESS;
3828 }
3829
3830 /** Further setup required for opening an LMDB environment
3831  */
3832 static int ESECT
3833 mdb_env_open2(MDB_env *env)
3834 {
3835         unsigned int flags = env->me_flags;
3836         int i, newenv = 0, rc;
3837         MDB_meta meta;
3838
3839 #ifdef _WIN32
3840         /* See if we should use QueryLimited */
3841         rc = GetVersion();
3842         if ((rc & 0xff) > 5)
3843                 env->me_pidquery = MDB_PROCESS_QUERY_LIMITED_INFORMATION;
3844         else
3845                 env->me_pidquery = PROCESS_QUERY_INFORMATION;
3846 #endif /* _WIN32 */
3847
3848         memset(&meta, 0, sizeof(meta));
3849
3850         if ((i = mdb_env_read_header(env, &meta)) != 0) {
3851                 if (i != ENOENT)
3852                         return i;
3853                 DPUTS("new mdbenv");
3854                 newenv = 1;
3855                 env->me_psize = env->me_os_psize;
3856                 if (env->me_psize > MAX_PAGESIZE)
3857                         env->me_psize = MAX_PAGESIZE;
3858         } else {
3859                 env->me_psize = meta.mm_psize;
3860         }
3861
3862         /* Was a mapsize configured? */
3863         if (!env->me_mapsize) {
3864                 /* If this is a new environment, take the default,
3865                  * else use the size recorded in the existing env.
3866                  */
3867                 env->me_mapsize = newenv ? DEFAULT_MAPSIZE : meta.mm_mapsize;
3868         } else if (env->me_mapsize < meta.mm_mapsize) {
3869                 /* If the configured size is smaller, make sure it's
3870                  * still big enough. Silently round up to minimum if not.
3871                  */
3872                 size_t minsize = (meta.mm_last_pg + 1) * meta.mm_psize;
3873                 if (env->me_mapsize < minsize)
3874                         env->me_mapsize = minsize;
3875         }
3876
3877         rc = mdb_env_map(env, (flags & MDB_FIXEDMAP) ? meta.mm_address : NULL);
3878         if (rc)
3879                 return rc;
3880
3881         if (newenv) {
3882                 if (flags & MDB_FIXEDMAP)
3883                         meta.mm_address = env->me_map;
3884                 i = mdb_env_init_meta(env, &meta);
3885                 if (i != MDB_SUCCESS) {
3886                         return i;
3887                 }
3888         }
3889
3890         env->me_maxfree_1pg = (env->me_psize - PAGEHDRSZ) / sizeof(pgno_t) - 1;
3891         env->me_nodemax = (((env->me_psize - PAGEHDRSZ) / MDB_MINKEYS) & -2)
3892                 - sizeof(indx_t);
3893 #if !(MDB_MAXKEYSIZE)
3894         env->me_maxkey = env->me_nodemax - (NODESIZE + sizeof(MDB_db));
3895 #endif
3896         env->me_maxpg = env->me_mapsize / env->me_psize;
3897
3898 #if MDB_DEBUG
3899         {
3900                 int toggle = mdb_env_pick_meta(env);
3901                 MDB_db *db = &env->me_metas[toggle]->mm_dbs[MAIN_DBI];
3902
3903                 DPRINTF(("opened database version %u, pagesize %u",
3904                         env->me_metas[0]->mm_version, env->me_psize));
3905                 DPRINTF(("using meta page %d",    toggle));
3906                 DPRINTF(("depth: %u",             db->md_depth));
3907                 DPRINTF(("entries: %"Z"u",        db->md_entries));
3908                 DPRINTF(("branch pages: %"Z"u",   db->md_branch_pages));
3909                 DPRINTF(("leaf pages: %"Z"u",     db->md_leaf_pages));
3910                 DPRINTF(("overflow pages: %"Z"u", db->md_overflow_pages));
3911                 DPRINTF(("root: %"Z"u",           db->md_root));
3912         }
3913 #endif
3914
3915         return MDB_SUCCESS;
3916 }
3917
3918
3919 /** Release a reader thread's slot in the reader lock table.
3920  *      This function is called automatically when a thread exits.
3921  * @param[in] ptr This points to the slot in the reader lock table.
3922  */
3923 static void
3924 mdb_env_reader_dest(void *ptr)
3925 {
3926         MDB_reader *reader = ptr;
3927
3928         reader->mr_pid = 0;
3929 }
3930
3931 #ifdef _WIN32
3932 /** Junk for arranging thread-specific callbacks on Windows. This is
3933  *      necessarily platform and compiler-specific. Windows supports up
3934  *      to 1088 keys. Let's assume nobody opens more than 64 environments
3935  *      in a single process, for now. They can override this if needed.
3936  */
3937 #ifndef MAX_TLS_KEYS
3938 #define MAX_TLS_KEYS    64
3939 #endif
3940 static pthread_key_t mdb_tls_keys[MAX_TLS_KEYS];
3941 static int mdb_tls_nkeys;
3942
3943 static void NTAPI mdb_tls_callback(PVOID module, DWORD reason, PVOID ptr)
3944 {
3945         int i;
3946         switch(reason) {
3947         case DLL_PROCESS_ATTACH: break;
3948         case DLL_THREAD_ATTACH: break;
3949         case DLL_THREAD_DETACH:
3950                 for (i=0; i<mdb_tls_nkeys; i++) {
3951                         MDB_reader *r = pthread_getspecific(mdb_tls_keys[i]);
3952                         if (r) {
3953                                 mdb_env_reader_dest(r);
3954                         }
3955                 }
3956                 break;
3957         case DLL_PROCESS_DETACH: break;
3958         }
3959 }
3960 #ifdef __GNUC__
3961 #ifdef _WIN64
3962 const PIMAGE_TLS_CALLBACK mdb_tls_cbp __attribute__((section (".CRT$XLB"))) = mdb_tls_callback;
3963 #else
3964 PIMAGE_TLS_CALLBACK mdb_tls_cbp __attribute__((section (".CRT$XLB"))) = mdb_tls_callback;
3965 #endif
3966 #else
3967 #ifdef _WIN64
3968 /* Force some symbol references.
3969  *      _tls_used forces the linker to create the TLS directory if not already done
3970  *      mdb_tls_cbp prevents whole-program-optimizer from dropping the symbol.
3971  */
3972 #pragma comment(linker, "/INCLUDE:_tls_used")
3973 #pragma comment(linker, "/INCLUDE:mdb_tls_cbp")
3974 #pragma const_seg(".CRT$XLB")
3975 extern const PIMAGE_TLS_CALLBACK mdb_tls_cbp;
3976 const PIMAGE_TLS_CALLBACK mdb_tls_cbp = mdb_tls_callback;
3977 #pragma const_seg()
3978 #else   /* WIN32 */
3979 #pragma comment(linker, "/INCLUDE:__tls_used")
3980 #pragma comment(linker, "/INCLUDE:_mdb_tls_cbp")
3981 #pragma data_seg(".CRT$XLB")
3982 PIMAGE_TLS_CALLBACK mdb_tls_cbp = mdb_tls_callback;
3983 #pragma data_seg()
3984 #endif  /* WIN 32/64 */
3985 #endif  /* !__GNUC__ */
3986 #endif
3987
3988 /** Downgrade the exclusive lock on the region back to shared */
3989 static int ESECT
3990 mdb_env_share_locks(MDB_env *env, int *excl)
3991 {
3992         int rc = 0, toggle = mdb_env_pick_meta(env);
3993
3994         env->me_txns->mti_txnid = env->me_metas[toggle]->mm_txnid;
3995
3996 #ifdef _WIN32
3997         {
3998                 OVERLAPPED ov;
3999                 /* First acquire a shared lock. The Unlock will
4000                  * then release the existing exclusive lock.
4001                  */
4002                 memset(&ov, 0, sizeof(ov));
4003                 if (!LockFileEx(env->me_lfd, 0, 0, 1, 0, &ov)) {
4004                         rc = ErrCode();
4005                 } else {
4006                         UnlockFile(env->me_lfd, 0, 0, 1, 0);
4007                         *excl = 0;
4008                 }
4009         }
4010 #else
4011         {
4012                 struct flock lock_info;
4013                 /* The shared lock replaces the existing lock */
4014                 memset((void *)&lock_info, 0, sizeof(lock_info));
4015                 lock_info.l_type = F_RDLCK;
4016                 lock_info.l_whence = SEEK_SET;
4017                 lock_info.l_start = 0;
4018                 lock_info.l_len = 1;
4019                 while ((rc = fcntl(env->me_lfd, F_SETLK, &lock_info)) &&
4020                                 (rc = ErrCode()) == EINTR) ;
4021                 *excl = rc ? -1 : 0;    /* error may mean we lost the lock */
4022         }
4023 #endif
4024
4025         return rc;
4026 }
4027
4028 /** Try to get exlusive lock, otherwise shared.
4029  *      Maintain *excl = -1: no/unknown lock, 0: shared, 1: exclusive.
4030  */
4031 static int ESECT
4032 mdb_env_excl_lock(MDB_env *env, int *excl)
4033 {
4034         int rc = 0;
4035 #ifdef _WIN32
4036         if (LockFile(env->me_lfd, 0, 0, 1, 0)) {
4037                 *excl = 1;
4038         } else {
4039                 OVERLAPPED ov;
4040                 memset(&ov, 0, sizeof(ov));
4041                 if (LockFileEx(env->me_lfd, 0, 0, 1, 0, &ov)) {
4042                         *excl = 0;
4043                 } else {
4044                         rc = ErrCode();
4045                 }
4046         }
4047 #else
4048         struct flock lock_info;
4049         memset((void *)&lock_info, 0, sizeof(lock_info));
4050         lock_info.l_type = F_WRLCK;
4051         lock_info.l_whence = SEEK_SET;
4052         lock_info.l_start = 0;
4053         lock_info.l_len = 1;
4054         while ((rc = fcntl(env->me_lfd, F_SETLK, &lock_info)) &&
4055                         (rc = ErrCode()) == EINTR) ;
4056         if (!rc) {
4057                 *excl = 1;
4058         } else
4059 # ifdef MDB_USE_POSIX_SEM
4060         if (*excl < 0) /* always true when !MDB_USE_POSIX_SEM */
4061 # endif
4062         {
4063                 lock_info.l_type = F_RDLCK;
4064                 while ((rc = fcntl(env->me_lfd, F_SETLKW, &lock_info)) &&
4065                                 (rc = ErrCode()) == EINTR) ;
4066                 if (rc == 0)
4067                         *excl = 0;
4068         }
4069 #endif
4070         return rc;
4071 }
4072
4073 #ifdef MDB_USE_HASH
4074 /*
4075  * hash_64 - 64 bit Fowler/Noll/Vo-0 FNV-1a hash code
4076  *
4077  * @(#) $Revision: 5.1 $
4078  * @(#) $Id: hash_64a.c,v 5.1 2009/06/30 09:01:38 chongo Exp $
4079  * @(#) $Source: /usr/local/src/cmd/fnv/RCS/hash_64a.c,v $
4080  *
4081  *        http://www.isthe.com/chongo/tech/comp/fnv/index.html
4082  *
4083  ***
4084  *
4085  * Please do not copyright this code.  This code is in the public domain.
4086  *
4087  * LANDON CURT NOLL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
4088  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO
4089  * EVENT SHALL LANDON CURT NOLL BE LIABLE FOR ANY SPECIAL, INDIRECT OR
4090  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
4091  * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
4092  * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
4093  * PERFORMANCE OF THIS SOFTWARE.
4094  *
4095  * By:
4096  *      chongo <Landon Curt Noll> /\oo/\
4097  *        http://www.isthe.com/chongo/
4098  *
4099  * Share and Enjoy!     :-)
4100  */
4101
4102 typedef unsigned long long      mdb_hash_t;
4103 #define MDB_HASH_INIT ((mdb_hash_t)0xcbf29ce484222325ULL)
4104
4105 /** perform a 64 bit Fowler/Noll/Vo FNV-1a hash on a buffer
4106  * @param[in] val       value to hash
4107  * @param[in] hval      initial value for hash
4108  * @return 64 bit hash
4109  *
4110  * NOTE: To use the recommended 64 bit FNV-1a hash, use MDB_HASH_INIT as the
4111  *       hval arg on the first call.
4112  */
4113 static mdb_hash_t
4114 mdb_hash_val(MDB_val *val, mdb_hash_t hval)
4115 {
4116         unsigned char *s = (unsigned char *)val->mv_data;       /* unsigned string */
4117         unsigned char *end = s + val->mv_size;
4118         /*
4119          * FNV-1a hash each octet of the string
4120          */
4121         while (s < end) {
4122                 /* xor the bottom with the current octet */
4123                 hval ^= (mdb_hash_t)*s++;
4124
4125                 /* multiply by the 64 bit FNV magic prime mod 2^64 */
4126                 hval += (hval << 1) + (hval << 4) + (hval << 5) +
4127                         (hval << 7) + (hval << 8) + (hval << 40);
4128         }
4129         /* return our new hash value */
4130         return hval;
4131 }
4132
4133 /** Hash the string and output the encoded hash.
4134  * This uses modified RFC1924 Ascii85 encoding to accommodate systems with
4135  * very short name limits. We don't care about the encoding being reversible,
4136  * we just want to preserve as many bits of the input as possible in a
4137  * small printable string.
4138  * @param[in] str string to hash
4139  * @param[out] encbuf an array of 11 chars to hold the hash
4140  */
4141 static const char mdb_a85[]= "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~";
4142
4143 static void
4144 mdb_pack85(unsigned long l, char *out)
4145 {
4146         int i;
4147
4148         for (i=0; i<5; i++) {
4149                 *out++ = mdb_a85[l % 85];
4150                 l /= 85;
4151         }
4152 }
4153
4154 static void
4155 mdb_hash_enc(MDB_val *val, char *encbuf)
4156 {
4157         mdb_hash_t h = mdb_hash_val(val, MDB_HASH_INIT);
4158
4159         mdb_pack85(h, encbuf);
4160         mdb_pack85(h>>32, encbuf+5);
4161         encbuf[10] = '\0';
4162 }
4163 #endif
4164
4165 /** Open and/or initialize the lock region for the environment.
4166  * @param[in] env The LMDB environment.
4167  * @param[in] lpath The pathname of the file used for the lock region.
4168  * @param[in] mode The Unix permissions for the file, if we create it.
4169  * @param[out] excl Resulting file lock type: -1 none, 0 shared, 1 exclusive
4170  * @param[in,out] excl In -1, out lock type: -1 none, 0 shared, 1 exclusive
4171  * @return 0 on success, non-zero on failure.
4172  */
4173 static int ESECT
4174 mdb_env_setup_locks(MDB_env *env, char *lpath, int mode, int *excl)
4175 {
4176 #ifdef _WIN32
4177 #       define MDB_ERRCODE_ROFS ERROR_WRITE_PROTECT
4178 #else
4179 #       define MDB_ERRCODE_ROFS EROFS
4180 #ifdef O_CLOEXEC        /* Linux: Open file and set FD_CLOEXEC atomically */
4181 #       define MDB_CLOEXEC              O_CLOEXEC
4182 #else
4183         int fdflags;
4184 #       define MDB_CLOEXEC              0
4185 #endif
4186 #endif
4187         int rc;
4188         off_t size, rsize;
4189
4190 #ifdef _WIN32
4191         env->me_lfd = CreateFile(lpath, GENERIC_READ|GENERIC_WRITE,
4192                 FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_ALWAYS,
4193                 FILE_ATTRIBUTE_NORMAL, NULL);
4194 #else
4195         env->me_lfd = open(lpath, O_RDWR|O_CREAT|MDB_CLOEXEC, mode);
4196 #endif
4197         if (env->me_lfd == INVALID_HANDLE_VALUE) {
4198                 rc = ErrCode();
4199                 if (rc == MDB_ERRCODE_ROFS && (env->me_flags & MDB_RDONLY)) {
4200                         return MDB_SUCCESS;
4201                 }
4202                 goto fail_errno;
4203         }
4204 #if ! ((MDB_CLOEXEC) || defined(_WIN32))
4205         /* Lose record locks when exec*() */
4206         if ((fdflags = fcntl(env->me_lfd, F_GETFD) | FD_CLOEXEC) >= 0)
4207                         fcntl(env->me_lfd, F_SETFD, fdflags);
4208 #endif
4209
4210         if (!(env->me_flags & MDB_NOTLS)) {
4211                 rc = pthread_key_create(&env->me_txkey, mdb_env_reader_dest);
4212                 if (rc)
4213                         goto fail;
4214                 env->me_flags |= MDB_ENV_TXKEY;
4215 #ifdef _WIN32
4216                 /* Windows TLS callbacks need help finding their TLS info. */
4217                 if (mdb_tls_nkeys >= MAX_TLS_KEYS) {
4218                         rc = MDB_TLS_FULL;
4219                         goto fail;
4220                 }
4221                 mdb_tls_keys[mdb_tls_nkeys++] = env->me_txkey;
4222 #endif
4223         }
4224
4225         /* Try to get exclusive lock. If we succeed, then
4226          * nobody is using the lock region and we should initialize it.
4227          */
4228         if ((rc = mdb_env_excl_lock(env, excl))) goto fail;
4229
4230 #ifdef _WIN32
4231         size = GetFileSize(env->me_lfd, NULL);
4232 #else
4233         size = lseek(env->me_lfd, 0, SEEK_END);
4234         if (size == -1) goto fail_errno;
4235 #endif
4236         rsize = (env->me_maxreaders-1) * sizeof(MDB_reader) + sizeof(MDB_txninfo);
4237         if (size < rsize && *excl > 0) {
4238 #ifdef _WIN32
4239                 if (SetFilePointer(env->me_lfd, rsize, NULL, FILE_BEGIN) != (DWORD)rsize
4240                         || !SetEndOfFile(env->me_lfd))
4241                         goto fail_errno;
4242 #else
4243                 if (ftruncate(env->me_lfd, rsize) != 0) goto fail_errno;
4244 #endif
4245         } else {
4246                 rsize = size;
4247                 size = rsize - sizeof(MDB_txninfo);
4248                 env->me_maxreaders = size/sizeof(MDB_reader) + 1;
4249         }
4250         {
4251 #ifdef _WIN32
4252                 HANDLE mh;
4253                 mh = CreateFileMapping(env->me_lfd, NULL, PAGE_READWRITE,
4254                         0, 0, NULL);
4255                 if (!mh) goto fail_errno;
4256                 env->me_txns = MapViewOfFileEx(mh, FILE_MAP_WRITE, 0, 0, rsize, NULL);
4257                 CloseHandle(mh);
4258                 if (!env->me_txns) goto fail_errno;
4259 #else
4260                 void *m = mmap(NULL, rsize, PROT_READ|PROT_WRITE, MAP_SHARED,
4261                         env->me_lfd, 0);
4262                 if (m == MAP_FAILED) goto fail_errno;
4263                 env->me_txns = m;
4264 #endif
4265         }
4266         if (*excl > 0) {
4267 #ifdef _WIN32
4268                 BY_HANDLE_FILE_INFORMATION stbuf;
4269                 struct {
4270                         DWORD volume;
4271                         DWORD nhigh;
4272                         DWORD nlow;
4273                 } idbuf;
4274                 MDB_val val;
4275                 char encbuf[11];
4276
4277                 if (!mdb_sec_inited) {
4278                         InitializeSecurityDescriptor(&mdb_null_sd,
4279                                 SECURITY_DESCRIPTOR_REVISION);
4280                         SetSecurityDescriptorDacl(&mdb_null_sd, TRUE, 0, FALSE);
4281                         mdb_all_sa.nLength = sizeof(SECURITY_ATTRIBUTES);
4282                         mdb_all_sa.bInheritHandle = FALSE;
4283                         mdb_all_sa.lpSecurityDescriptor = &mdb_null_sd;
4284                         mdb_sec_inited = 1;
4285                 }
4286                 if (!GetFileInformationByHandle(env->me_lfd, &stbuf)) goto fail_errno;
4287                 idbuf.volume = stbuf.dwVolumeSerialNumber;
4288                 idbuf.nhigh  = stbuf.nFileIndexHigh;
4289                 idbuf.nlow   = stbuf.nFileIndexLow;
4290                 val.mv_data = &idbuf;
4291                 val.mv_size = sizeof(idbuf);
4292                 mdb_hash_enc(&val, encbuf);
4293                 sprintf(env->me_txns->mti_rmname, "Global\\MDBr%s", encbuf);
4294                 sprintf(env->me_txns->mti_wmname, "Global\\MDBw%s", encbuf);
4295                 env->me_rmutex = CreateMutex(&mdb_all_sa, FALSE, env->me_txns->mti_rmname);
4296                 if (!env->me_rmutex) goto fail_errno;
4297                 env->me_wmutex = CreateMutex(&mdb_all_sa, FALSE, env->me_txns->mti_wmname);
4298                 if (!env->me_wmutex) goto fail_errno;
4299 #elif defined(MDB_USE_POSIX_SEM)
4300                 struct stat stbuf;
4301                 struct {
4302                         dev_t dev;
4303                         ino_t ino;
4304                 } idbuf;
4305                 MDB_val val;
4306                 char encbuf[11];
4307
4308 #if defined(__NetBSD__)
4309 #define MDB_SHORT_SEMNAMES      1       /* limited to 14 chars */
4310 #endif
4311                 if (fstat(env->me_lfd, &stbuf)) goto fail_errno;
4312                 idbuf.dev = stbuf.st_dev;
4313                 idbuf.ino = stbuf.st_ino;
4314                 val.mv_data = &idbuf;
4315                 val.mv_size = sizeof(idbuf);
4316                 mdb_hash_enc(&val, encbuf);
4317 #ifdef MDB_SHORT_SEMNAMES
4318                 encbuf[9] = '\0';       /* drop name from 15 chars to 14 chars */
4319 #endif
4320                 sprintf(env->me_txns->mti_rmname, "/MDBr%s", encbuf);
4321                 sprintf(env->me_txns->mti_wmname, "/MDBw%s", encbuf);
4322                 /* Clean up after a previous run, if needed:  Try to
4323                  * remove both semaphores before doing anything else.
4324                  */
4325                 sem_unlink(env->me_txns->mti_rmname);
4326                 sem_unlink(env->me_txns->mti_wmname);
4327                 env->me_rmutex = sem_open(env->me_txns->mti_rmname,
4328                         O_CREAT|O_EXCL, mode, 1);
4329                 if (env->me_rmutex == SEM_FAILED) goto fail_errno;
4330                 env->me_wmutex = sem_open(env->me_txns->mti_wmname,
4331                         O_CREAT|O_EXCL, mode, 1);
4332                 if (env->me_wmutex == SEM_FAILED) goto fail_errno;
4333 #else   /* MDB_USE_POSIX_SEM */
4334                 pthread_mutexattr_t mattr;
4335
4336                 if ((rc = pthread_mutexattr_init(&mattr))
4337                         || (rc = pthread_mutexattr_setpshared(&mattr, PTHREAD_PROCESS_SHARED))
4338                         || (rc = pthread_mutex_init(&env->me_txns->mti_mutex, &mattr))
4339                         || (rc = pthread_mutex_init(&env->me_txns->mti_wmutex, &mattr)))
4340                         goto fail;
4341                 pthread_mutexattr_destroy(&mattr);
4342 #endif  /* _WIN32 || MDB_USE_POSIX_SEM */
4343
4344                 env->me_txns->mti_magic = MDB_MAGIC;
4345                 env->me_txns->mti_format = MDB_LOCK_FORMAT;
4346                 env->me_txns->mti_txnid = 0;
4347                 env->me_txns->mti_numreaders = 0;
4348
4349         } else {
4350                 if (env->me_txns->mti_magic != MDB_MAGIC) {
4351                         DPUTS("lock region has invalid magic");
4352                         rc = MDB_INVALID;
4353                         goto fail;
4354                 }
4355                 if (env->me_txns->mti_format != MDB_LOCK_FORMAT) {
4356                         DPRINTF(("lock region has format+version 0x%x, expected 0x%x",
4357                                 env->me_txns->mti_format, MDB_LOCK_FORMAT));
4358                         rc = MDB_VERSION_MISMATCH;
4359                         goto fail;
4360                 }
4361                 rc = ErrCode();
4362                 if (rc && rc != EACCES && rc != EAGAIN) {
4363                         goto fail;
4364                 }
4365 #ifdef _WIN32
4366                 env->me_rmutex = OpenMutex(SYNCHRONIZE, FALSE, env->me_txns->mti_rmname);
4367                 if (!env->me_rmutex) goto fail_errno;
4368                 env->me_wmutex = OpenMutex(SYNCHRONIZE, FALSE, env->me_txns->mti_wmname);
4369                 if (!env->me_wmutex) goto fail_errno;
4370 #elif defined(MDB_USE_POSIX_SEM)
4371                 env->me_rmutex = sem_open(env->me_txns->mti_rmname, 0);
4372                 if (env->me_rmutex == SEM_FAILED) goto fail_errno;
4373                 env->me_wmutex = sem_open(env->me_txns->mti_wmname, 0);
4374                 if (env->me_wmutex == SEM_FAILED) goto fail_errno;
4375 #endif
4376         }
4377         return MDB_SUCCESS;
4378
4379 fail_errno:
4380         rc = ErrCode();
4381 fail:
4382         return rc;
4383 }
4384
4385         /** The name of the lock file in the DB environment */
4386 #define LOCKNAME        "/lock.mdb"
4387         /** The name of the data file in the DB environment */
4388 #define DATANAME        "/data.mdb"
4389         /** The suffix of the lock file when no subdir is used */
4390 #define LOCKSUFF        "-lock"
4391         /** Only a subset of the @ref mdb_env flags can be changed
4392          *      at runtime. Changing other flags requires closing the
4393          *      environment and re-opening it with the new flags.
4394          */
4395 #define CHANGEABLE      (MDB_NOSYNC|MDB_NOMETASYNC|MDB_MAPASYNC|MDB_NOMEMINIT)
4396 #define CHANGELESS      (MDB_FIXEDMAP|MDB_NOSUBDIR|MDB_RDONLY|MDB_WRITEMAP| \
4397         MDB_NOTLS|MDB_NOLOCK|MDB_NORDAHEAD)
4398
4399 #if VALID_FLAGS & PERSISTENT_FLAGS & (CHANGEABLE|CHANGELESS)
4400 # error "Persistent DB flags & env flags overlap, but both go in mm_flags"
4401 #endif
4402
4403 int ESECT
4404 mdb_env_open(MDB_env *env, const char *path, unsigned int flags, mdb_mode_t mode)
4405 {
4406         int             oflags, rc, len, excl = -1;
4407         char *lpath, *dpath;
4408
4409         if (env->me_fd!=INVALID_HANDLE_VALUE || (flags & ~(CHANGEABLE|CHANGELESS)))
4410                 return EINVAL;
4411
4412         len = strlen(path);
4413         if (flags & MDB_NOSUBDIR) {
4414                 rc = len + sizeof(LOCKSUFF) + len + 1;
4415         } else {
4416                 rc = len + sizeof(LOCKNAME) + len + sizeof(DATANAME);
4417         }
4418         lpath = malloc(rc);
4419         if (!lpath)
4420                 return ENOMEM;
4421         if (flags & MDB_NOSUBDIR) {
4422                 dpath = lpath + len + sizeof(LOCKSUFF);
4423                 sprintf(lpath, "%s" LOCKSUFF, path);
4424                 strcpy(dpath, path);
4425         } else {
4426                 dpath = lpath + len + sizeof(LOCKNAME);
4427                 sprintf(lpath, "%s" LOCKNAME, path);
4428                 sprintf(dpath, "%s" DATANAME, path);
4429         }
4430
4431         rc = MDB_SUCCESS;
4432         flags |= env->me_flags;
4433         if (flags & MDB_RDONLY) {
4434                 /* silently ignore WRITEMAP when we're only getting read access */
4435                 flags &= ~MDB_WRITEMAP;
4436         } else {
4437                 if (!((env->me_free_pgs = mdb_midl_alloc(MDB_IDL_UM_MAX)) &&
4438                           (env->me_dirty_list = calloc(MDB_IDL_UM_SIZE, sizeof(MDB_ID2)))))
4439                         rc = ENOMEM;
4440         }
4441         env->me_flags = flags |= MDB_ENV_ACTIVE;
4442         if (rc)
4443                 goto leave;
4444
4445         env->me_path = strdup(path);
4446         env->me_dbxs = calloc(env->me_maxdbs, sizeof(MDB_dbx));
4447         env->me_dbflags = calloc(env->me_maxdbs, sizeof(uint16_t));
4448         env->me_dbiseqs = calloc(env->me_maxdbs, sizeof(unsigned int));
4449         if (!(env->me_dbxs && env->me_path && env->me_dbflags && env->me_dbiseqs)) {
4450                 rc = ENOMEM;
4451                 goto leave;
4452         }
4453
4454         /* For RDONLY, get lockfile after we know datafile exists */
4455         if (!(flags & (MDB_RDONLY|MDB_NOLOCK))) {
4456                 rc = mdb_env_setup_locks(env, lpath, mode, &excl);
4457                 if (rc)
4458                         goto leave;
4459         }
4460
4461 #ifdef _WIN32
4462         if (F_ISSET(flags, MDB_RDONLY)) {
4463                 oflags = GENERIC_READ;
4464                 len = OPEN_EXISTING;
4465         } else {
4466                 oflags = GENERIC_READ|GENERIC_WRITE;
4467                 len = OPEN_ALWAYS;
4468         }
4469         mode = FILE_ATTRIBUTE_NORMAL;
4470         env->me_fd = CreateFile(dpath, oflags, FILE_SHARE_READ|FILE_SHARE_WRITE,
4471                 NULL, len, mode, NULL);
4472 #else
4473         if (F_ISSET(flags, MDB_RDONLY))
4474                 oflags = O_RDONLY;
4475         else
4476                 oflags = O_RDWR | O_CREAT;
4477
4478         env->me_fd = open(dpath, oflags, mode);
4479 #endif
4480         if (env->me_fd == INVALID_HANDLE_VALUE) {
4481                 rc = ErrCode();
4482                 goto leave;
4483         }
4484
4485         if ((flags & (MDB_RDONLY|MDB_NOLOCK)) == MDB_RDONLY) {
4486                 rc = mdb_env_setup_locks(env, lpath, mode, &excl);
4487                 if (rc)
4488                         goto leave;
4489         }
4490
4491         if ((rc = mdb_env_open2(env)) == MDB_SUCCESS) {
4492                 if (flags & (MDB_RDONLY|MDB_WRITEMAP)) {
4493                         env->me_mfd = env->me_fd;
4494                 } else {
4495                         /* Synchronous fd for meta writes. Needed even with
4496                          * MDB_NOSYNC/MDB_NOMETASYNC, in case these get reset.
4497                          */
4498 #ifdef _WIN32
4499                         len = OPEN_EXISTING;
4500                         env->me_mfd = CreateFile(dpath, oflags,
4501                                 FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, len,
4502                                 mode | FILE_FLAG_WRITE_THROUGH, NULL);
4503 #else
4504                         oflags &= ~O_CREAT;
4505                         env->me_mfd = open(dpath, oflags | MDB_DSYNC, mode);
4506 #endif
4507                         if (env->me_mfd == INVALID_HANDLE_VALUE) {
4508                                 rc = ErrCode();
4509                                 goto leave;
4510                         }
4511                 }
4512                 DPRINTF(("opened dbenv %p", (void *) env));
4513                 if (excl > 0) {
4514                         rc = mdb_env_share_locks(env, &excl);
4515                         if (rc)
4516                                 goto leave;
4517                 }
4518                 if (!((flags & MDB_RDONLY) ||
4519                           (env->me_pbuf = calloc(1, env->me_psize))))
4520                         rc = ENOMEM;
4521                 if (!(flags & MDB_RDONLY)) {
4522                         MDB_txn *txn;
4523                         int tsize = sizeof(MDB_txn), size = tsize + env->me_maxdbs *
4524                                 (sizeof(MDB_db)+sizeof(MDB_cursor)+sizeof(unsigned int)+1);
4525                         txn = calloc(1, size);
4526                         if (txn) {
4527                                 txn->mt_dbs = (MDB_db *)((char *)txn + tsize);
4528                                 txn->mt_cursors = (MDB_cursor **)(txn->mt_dbs + env->me_maxdbs);
4529                                 txn->mt_dbiseqs = (unsigned int *)(txn->mt_cursors + env->me_maxdbs);
4530                                 txn->mt_dbflags = (unsigned char *)(txn->mt_dbiseqs + env->me_maxdbs);
4531                                 txn->mt_env = env;
4532                                 env->me_txn0 = txn;
4533                         } else {
4534                                 rc = ENOMEM;
4535                         }
4536                 }
4537         }
4538
4539 leave:
4540         if (rc) {
4541                 mdb_env_close0(env, excl);
4542         }
4543         free(lpath);
4544         return rc;
4545 }
4546
4547 /** Destroy resources from mdb_env_open(), clear our readers & DBIs */
4548 static void ESECT
4549 mdb_env_close0(MDB_env *env, int excl)
4550 {
4551         int i;
4552
4553         if (!(env->me_flags & MDB_ENV_ACTIVE))
4554                 return;
4555
4556         /* Doing this here since me_dbxs may not exist during mdb_env_close */
4557         for (i = env->me_maxdbs; --i > MAIN_DBI; )
4558                 free(env->me_dbxs[i].md_name.mv_data);
4559
4560         free(env->me_pbuf);
4561         free(env->me_dbiseqs);
4562         free(env->me_dbflags);
4563         free(env->me_dbxs);
4564         free(env->me_path);
4565         free(env->me_dirty_list);
4566         free(env->me_txn0);
4567         mdb_midl_free(env->me_free_pgs);
4568
4569         if (env->me_flags & MDB_ENV_TXKEY) {
4570                 pthread_key_delete(env->me_txkey);
4571 #ifdef _WIN32
4572                 /* Delete our key from the global list */
4573                 for (i=0; i<mdb_tls_nkeys; i++)
4574                         if (mdb_tls_keys[i] == env->me_txkey) {
4575                                 mdb_tls_keys[i] = mdb_tls_keys[mdb_tls_nkeys-1];
4576                                 mdb_tls_nkeys--;
4577                                 break;
4578                         }
4579 #endif
4580         }
4581
4582         if (env->me_map) {
4583                 munmap(env->me_map, env->me_mapsize);
4584         }
4585         if (env->me_mfd != env->me_fd && env->me_mfd != INVALID_HANDLE_VALUE)
4586                 (void) close(env->me_mfd);
4587         if (env->me_fd != INVALID_HANDLE_VALUE)
4588                 (void) close(env->me_fd);
4589         if (env->me_txns) {
4590                 MDB_PID_T pid = env->me_pid;
4591                 /* Clearing readers is done in this function because
4592                  * me_txkey with its destructor must be disabled first.
4593                  */
4594                 for (i = env->me_numreaders; --i >= 0; )
4595                         if (env->me_txns->mti_readers[i].mr_pid == pid)
4596                                 env->me_txns->mti_readers[i].mr_pid = 0;
4597 #ifdef _WIN32
4598                 if (env->me_rmutex) {
4599                         CloseHandle(env->me_rmutex);
4600                         if (env->me_wmutex) CloseHandle(env->me_wmutex);
4601                 }
4602                 /* Windows automatically destroys the mutexes when
4603                  * the last handle closes.
4604                  */
4605 #elif defined(MDB_USE_POSIX_SEM)
4606                 if (env->me_rmutex != SEM_FAILED) {
4607                         sem_close(env->me_rmutex);
4608                         if (env->me_wmutex != SEM_FAILED)
4609                                 sem_close(env->me_wmutex);
4610                         /* If we have the filelock:  If we are the
4611                          * only remaining user, clean up semaphores.
4612                          */
4613                         if (excl == 0)
4614                                 mdb_env_excl_lock(env, &excl);
4615                         if (excl > 0) {
4616                                 sem_unlink(env->me_txns->mti_rmname);
4617                                 sem_unlink(env->me_txns->mti_wmname);
4618                         }
4619                 }
4620 #endif
4621                 munmap((void *)env->me_txns, (env->me_maxreaders-1)*sizeof(MDB_reader)+sizeof(MDB_txninfo));
4622         }
4623         if (env->me_lfd != INVALID_HANDLE_VALUE) {
4624 #ifdef _WIN32
4625                 if (excl >= 0) {
4626                         /* Unlock the lockfile.  Windows would have unlocked it
4627                          * after closing anyway, but not necessarily at once.
4628                          */
4629                         UnlockFile(env->me_lfd, 0, 0, 1, 0);
4630                 }
4631 #endif
4632                 (void) close(env->me_lfd);
4633         }
4634
4635         env->me_flags &= ~(MDB_ENV_ACTIVE|MDB_ENV_TXKEY);
4636 }
4637
4638
4639 void ESECT
4640 mdb_env_close(MDB_env *env)
4641 {
4642         MDB_page *dp;
4643
4644         if (env == NULL)
4645                 return;
4646
4647         VGMEMP_DESTROY(env);
4648         while ((dp = env->me_dpages) != NULL) {
4649                 VGMEMP_DEFINED(&dp->mp_next, sizeof(dp->mp_next));
4650                 env->me_dpages = dp->mp_next;
4651                 free(dp);
4652         }
4653
4654         mdb_env_close0(env, 0);
4655         free(env);
4656 }
4657
4658 /** Compare two items pointing at aligned size_t's */
4659 static int
4660 mdb_cmp_long(const MDB_val *a, const MDB_val *b)
4661 {
4662         return (*(size_t *)a->mv_data < *(size_t *)b->mv_data) ? -1 :
4663                 *(size_t *)a->mv_data > *(size_t *)b->mv_data;
4664 }
4665
4666 /** Compare two items pointing at aligned unsigned int's */
4667 static int
4668 mdb_cmp_int(const MDB_val *a, const MDB_val *b)
4669 {
4670         return (*(unsigned int *)a->mv_data < *(unsigned int *)b->mv_data) ? -1 :
4671                 *(unsigned int *)a->mv_data > *(unsigned int *)b->mv_data;
4672 }
4673
4674 /** Compare two items pointing at unsigned ints of unknown alignment.
4675  *      Nodes and keys are guaranteed to be 2-byte aligned.
4676  */
4677 static int
4678 mdb_cmp_cint(const MDB_val *a, const MDB_val *b)
4679 {
4680 #if BYTE_ORDER == LITTLE_ENDIAN
4681         unsigned short *u, *c;
4682         int x;
4683
4684         u = (unsigned short *) ((char *) a->mv_data + a->mv_size);
4685         c = (unsigned short *) ((char *) b->mv_data + a->mv_size);
4686         do {
4687                 x = *--u - *--c;
4688         } while(!x && u > (unsigned short *)a->mv_data);
4689         return x;
4690 #else
4691         unsigned short *u, *c, *end;
4692         int x;
4693
4694         end = (unsigned short *) ((char *) a->mv_data + a->mv_size);
4695         u = (unsigned short *)a->mv_data;
4696         c = (unsigned short *)b->mv_data;
4697         do {
4698                 x = *u++ - *c++;
4699         } while(!x && u < end);
4700         return x;
4701 #endif
4702 }
4703
4704 /** Compare two items pointing at size_t's of unknown alignment. */
4705 #ifdef MISALIGNED_OK
4706 # define mdb_cmp_clong mdb_cmp_long
4707 #else
4708 # define mdb_cmp_clong mdb_cmp_cint
4709 #endif
4710
4711 /** Compare two items lexically */
4712 static int
4713 mdb_cmp_memn(const MDB_val *a, const MDB_val *b)
4714 {
4715         int diff;
4716         ssize_t len_diff;
4717         unsigned int len;
4718
4719         len = a->mv_size;
4720         len_diff = (ssize_t) a->mv_size - (ssize_t) b->mv_size;
4721         if (len_diff > 0) {
4722                 len = b->mv_size;
4723                 len_diff = 1;
4724         }
4725
4726         diff = memcmp(a->mv_data, b->mv_data, len);
4727         return diff ? diff : len_diff<0 ? -1 : len_diff;
4728 }
4729
4730 /** Compare two items in reverse byte order */
4731 static int
4732 mdb_cmp_memnr(const MDB_val *a, const MDB_val *b)
4733 {
4734         const unsigned char     *p1, *p2, *p1_lim;
4735         ssize_t len_diff;
4736         int diff;
4737
4738         p1_lim = (const unsigned char *)a->mv_data;
4739         p1 = (const unsigned char *)a->mv_data + a->mv_size;
4740         p2 = (const unsigned char *)b->mv_data + b->mv_size;
4741
4742         len_diff = (ssize_t) a->mv_size - (ssize_t) b->mv_size;
4743         if (len_diff > 0) {
4744                 p1_lim += len_diff;
4745                 len_diff = 1;
4746         }
4747
4748         while (p1 > p1_lim) {
4749                 diff = *--p1 - *--p2;
4750                 if (diff)
4751                         return diff;
4752         }
4753         return len_diff<0 ? -1 : len_diff;
4754 }
4755
4756 /** Search for key within a page, using binary search.
4757  * Returns the smallest entry larger or equal to the key.
4758  * If exactp is non-null, stores whether the found entry was an exact match
4759  * in *exactp (1 or 0).
4760  * Updates the cursor index with the index of the found entry.
4761  * If no entry larger or equal to the key is found, returns NULL.
4762  */
4763 static MDB_node *
4764 mdb_node_search(MDB_cursor *mc, MDB_val *key, int *exactp)
4765 {
4766         unsigned int     i = 0, nkeys;
4767         int              low, high;
4768         int              rc = 0;
4769         MDB_page *mp = mc->mc_pg[mc->mc_top];
4770         MDB_node        *node = NULL;
4771         MDB_val  nodekey;
4772         MDB_cmp_func *cmp;
4773         DKBUF;
4774
4775         nkeys = NUMKEYS(mp);
4776
4777         DPRINTF(("searching %u keys in %s %spage %"Z"u",
4778             nkeys, IS_LEAF(mp) ? "leaf" : "branch", IS_SUBP(mp) ? "sub-" : "",
4779             mdb_dbg_pgno(mp)));
4780
4781         low = IS_LEAF(mp) ? 0 : 1;
4782         high = nkeys - 1;
4783         cmp = mc->mc_dbx->md_cmp;
4784
4785         /* Branch pages have no data, so if using integer keys,
4786          * alignment is guaranteed. Use faster mdb_cmp_int.
4787          */
4788         if (cmp == mdb_cmp_cint && IS_BRANCH(mp)) {
4789                 if (NODEPTR(mp, 1)->mn_ksize == sizeof(size_t))
4790                         cmp = mdb_cmp_long;
4791                 else
4792                         cmp = mdb_cmp_int;
4793         }
4794
4795         if (IS_LEAF2(mp)) {
4796                 nodekey.mv_size = mc->mc_db->md_pad;
4797                 node = NODEPTR(mp, 0);  /* fake */
4798                 while (low <= high) {
4799                         i = (low + high) >> 1;
4800                         nodekey.mv_data = LEAF2KEY(mp, i, nodekey.mv_size);
4801                         rc = cmp(key, &nodekey);
4802                         DPRINTF(("found leaf index %u [%s], rc = %i",
4803                             i, DKEY(&nodekey), rc));
4804                         if (rc == 0)
4805                                 break;
4806                         if (rc > 0)
4807                                 low = i + 1;
4808                         else
4809                                 high = i - 1;
4810                 }
4811         } else {
4812                 while (low <= high) {
4813                         i = (low + high) >> 1;
4814
4815                         node = NODEPTR(mp, i);
4816                         nodekey.mv_size = NODEKSZ(node);
4817                         nodekey.mv_data = NODEKEY(node);
4818
4819                         rc = cmp(key, &nodekey);
4820 #if MDB_DEBUG
4821                         if (IS_LEAF(mp))
4822                                 DPRINTF(("found leaf index %u [%s], rc = %i",
4823                                     i, DKEY(&nodekey), rc));
4824                         else
4825                                 DPRINTF(("found branch index %u [%s -> %"Z"u], rc = %i",
4826                                     i, DKEY(&nodekey), NODEPGNO(node), rc));
4827 #endif
4828                         if (rc == 0)
4829                                 break;
4830                         if (rc > 0)
4831                                 low = i + 1;
4832                         else
4833                                 high = i - 1;
4834                 }
4835         }
4836
4837         if (rc > 0) {   /* Found entry is less than the key. */
4838                 i++;    /* Skip to get the smallest entry larger than key. */
4839                 if (!IS_LEAF2(mp))
4840                         node = NODEPTR(mp, i);
4841         }
4842         if (exactp)
4843                 *exactp = (rc == 0 && nkeys > 0);
4844         /* store the key index */
4845         mc->mc_ki[mc->mc_top] = i;
4846         if (i >= nkeys)
4847                 /* There is no entry larger or equal to the key. */
4848                 return NULL;
4849
4850         /* nodeptr is fake for LEAF2 */
4851         return node;
4852 }
4853
4854 #if 0
4855 static void
4856 mdb_cursor_adjust(MDB_cursor *mc, func)
4857 {
4858         MDB_cursor *m2;
4859
4860         for (m2 = mc->mc_txn->mt_cursors[mc->mc_dbi]; m2; m2=m2->mc_next) {
4861                 if (m2->mc_pg[m2->mc_top] == mc->mc_pg[mc->mc_top]) {
4862                         func(mc, m2);
4863                 }
4864         }
4865 }
4866 #endif
4867
4868 /** Pop a page off the top of the cursor's stack. */
4869 static void
4870 mdb_cursor_pop(MDB_cursor *mc)
4871 {
4872         if (mc->mc_snum) {
4873 #if MDB_DEBUG
4874                 MDB_page        *top = mc->mc_pg[mc->mc_top];
4875 #endif
4876                 mc->mc_snum--;
4877                 if (mc->mc_snum)
4878                         mc->mc_top--;
4879
4880                 DPRINTF(("popped page %"Z"u off db %d cursor %p", top->mp_pgno,
4881                         DDBI(mc), (void *) mc));
4882         }
4883 }
4884
4885 /** Push a page onto the top of the cursor's stack. */
4886 static int
4887 mdb_cursor_push(MDB_cursor *mc, MDB_page *mp)
4888 {
4889         DPRINTF(("pushing page %"Z"u on db %d cursor %p", mp->mp_pgno,
4890                 DDBI(mc), (void *) mc));
4891
4892         if (mc->mc_snum >= CURSOR_STACK) {
4893                 mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
4894                 return MDB_CURSOR_FULL;
4895         }
4896
4897         mc->mc_top = mc->mc_snum++;
4898         mc->mc_pg[mc->mc_top] = mp;
4899         mc->mc_ki[mc->mc_top] = 0;
4900
4901         return MDB_SUCCESS;
4902 }
4903
4904 /** Find the address of the page corresponding to a given page number.
4905  * @param[in] txn the transaction for this access.
4906  * @param[in] pgno the page number for the page to retrieve.
4907  * @param[out] ret address of a pointer where the page's address will be stored.
4908  * @param[out] lvl dirty_list inheritance level of found page. 1=current txn, 0=mapped page.
4909  * @return 0 on success, non-zero on failure.
4910  */
4911 static int
4912 mdb_page_get(MDB_txn *txn, pgno_t pgno, MDB_page **ret, int *lvl)
4913 {
4914         MDB_env *env = txn->mt_env;
4915         MDB_page *p = NULL;
4916         int level;
4917
4918         if (!((txn->mt_flags & MDB_TXN_RDONLY) | (env->me_flags & MDB_WRITEMAP))) {
4919                 MDB_txn *tx2 = txn;
4920                 level = 1;
4921                 do {
4922                         MDB_ID2L dl = tx2->mt_u.dirty_list;
4923                         unsigned x;
4924                         /* Spilled pages were dirtied in this txn and flushed
4925                          * because the dirty list got full. Bring this page
4926                          * back in from the map (but don't unspill it here,
4927                          * leave that unless page_touch happens again).
4928                          */
4929                         if (tx2->mt_spill_pgs) {
4930                                 MDB_ID pn = pgno << 1;
4931                                 x = mdb_midl_search(tx2->mt_spill_pgs, pn);
4932                                 if (x <= tx2->mt_spill_pgs[0] && tx2->mt_spill_pgs[x] == pn) {
4933                                         p = (MDB_page *)(env->me_map + env->me_psize * pgno);
4934                                         goto done;
4935                                 }
4936                         }
4937                         if (dl[0].mid) {
4938                                 unsigned x = mdb_mid2l_search(dl, pgno);
4939                                 if (x <= dl[0].mid && dl[x].mid == pgno) {
4940                                         p = dl[x].mptr;
4941                                         goto done;
4942                                 }
4943                         }
4944                         level++;
4945                 } while ((tx2 = tx2->mt_parent) != NULL);
4946         }
4947
4948         if (pgno < txn->mt_next_pgno) {
4949                 level = 0;
4950                 p = (MDB_page *)(env->me_map + env->me_psize * pgno);
4951         } else {
4952                 DPRINTF(("page %"Z"u not found", pgno));
4953                 txn->mt_flags |= MDB_TXN_ERROR;
4954                 return MDB_PAGE_NOTFOUND;
4955         }
4956
4957 done:
4958         *ret = p;
4959         if (lvl)
4960                 *lvl = level;
4961         return MDB_SUCCESS;
4962 }
4963
4964 /** Finish #mdb_page_search() / #mdb_page_search_lowest().
4965  *      The cursor is at the root page, set up the rest of it.
4966  */
4967 static int
4968 mdb_page_search_root(MDB_cursor *mc, MDB_val *key, int flags)
4969 {
4970         MDB_page        *mp = mc->mc_pg[mc->mc_top];
4971         int rc;
4972         DKBUF;
4973
4974         while (IS_BRANCH(mp)) {
4975                 MDB_node        *node;
4976                 indx_t          i;
4977
4978                 DPRINTF(("branch page %"Z"u has %u keys", mp->mp_pgno, NUMKEYS(mp)));
4979                 mdb_cassert(mc, NUMKEYS(mp) > 1);
4980                 DPRINTF(("found index 0 to page %"Z"u", NODEPGNO(NODEPTR(mp, 0))));
4981
4982                 if (flags & (MDB_PS_FIRST|MDB_PS_LAST)) {
4983                         i = 0;
4984                         if (flags & MDB_PS_LAST)
4985                                 i = NUMKEYS(mp) - 1;
4986                 } else {
4987                         int      exact;
4988                         node = mdb_node_search(mc, key, &exact);
4989                         if (node == NULL)
4990                                 i = NUMKEYS(mp) - 1;
4991                         else {
4992                                 i = mc->mc_ki[mc->mc_top];
4993                                 if (!exact) {
4994                                         mdb_cassert(mc, i > 0);
4995                                         i--;
4996                                 }
4997                         }
4998                         DPRINTF(("following index %u for key [%s]", i, DKEY(key)));
4999                 }
5000
5001                 mdb_cassert(mc, i < NUMKEYS(mp));
5002                 node = NODEPTR(mp, i);
5003
5004                 if ((rc = mdb_page_get(mc->mc_txn, NODEPGNO(node), &mp, NULL)) != 0)
5005                         return rc;
5006
5007                 mc->mc_ki[mc->mc_top] = i;
5008                 if ((rc = mdb_cursor_push(mc, mp)))
5009                         return rc;
5010
5011                 if (flags & MDB_PS_MODIFY) {
5012                         if ((rc = mdb_page_touch(mc)) != 0)
5013                                 return rc;
5014                         mp = mc->mc_pg[mc->mc_top];
5015                 }
5016         }
5017
5018         if (!IS_LEAF(mp)) {
5019                 DPRINTF(("internal error, index points to a %02X page!?",
5020                     mp->mp_flags));
5021                 mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
5022                 return MDB_CORRUPTED;
5023         }
5024
5025         DPRINTF(("found leaf page %"Z"u for key [%s]", mp->mp_pgno,
5026             key ? DKEY(key) : "null"));
5027         mc->mc_flags |= C_INITIALIZED;
5028         mc->mc_flags &= ~C_EOF;
5029
5030         return MDB_SUCCESS;
5031 }
5032
5033 /** Search for the lowest key under the current branch page.
5034  * This just bypasses a NUMKEYS check in the current page
5035  * before calling mdb_page_search_root(), because the callers
5036  * are all in situations where the current page is known to
5037  * be underfilled.
5038  */
5039 static int
5040 mdb_page_search_lowest(MDB_cursor *mc)
5041 {
5042         MDB_page        *mp = mc->mc_pg[mc->mc_top];
5043         MDB_node        *node = NODEPTR(mp, 0);
5044         int rc;
5045
5046         if ((rc = mdb_page_get(mc->mc_txn, NODEPGNO(node), &mp, NULL)) != 0)
5047                 return rc;
5048
5049         mc->mc_ki[mc->mc_top] = 0;
5050         if ((rc = mdb_cursor_push(mc, mp)))
5051                 return rc;
5052         return mdb_page_search_root(mc, NULL, MDB_PS_FIRST);
5053 }
5054
5055 /** Search for the page a given key should be in.
5056  * Push it and its parent pages on the cursor stack.
5057  * @param[in,out] mc the cursor for this operation.
5058  * @param[in] key the key to search for, or NULL for first/last page.
5059  * @param[in] flags If MDB_PS_MODIFY is set, visited pages in the DB
5060  *   are touched (updated with new page numbers).
5061  *   If MDB_PS_FIRST or MDB_PS_LAST is set, find first or last leaf.
5062  *   This is used by #mdb_cursor_first() and #mdb_cursor_last().
5063  *   If MDB_PS_ROOTONLY set, just fetch root node, no further lookups.
5064  * @return 0 on success, non-zero on failure.
5065  */
5066 static int
5067 mdb_page_search(MDB_cursor *mc, MDB_val *key, int flags)
5068 {
5069         int              rc;
5070         pgno_t           root;
5071
5072         /* Make sure the txn is still viable, then find the root from
5073          * the txn's db table and set it as the root of the cursor's stack.
5074          */
5075         if (F_ISSET(mc->mc_txn->mt_flags, MDB_TXN_ERROR)) {
5076                 DPUTS("transaction has failed, must abort");
5077                 return MDB_BAD_TXN;
5078         } else {
5079                 /* Make sure we're using an up-to-date root */
5080                 if (*mc->mc_dbflag & DB_STALE) {
5081                                 MDB_cursor mc2;
5082                                 if (TXN_DBI_CHANGED(mc->mc_txn, mc->mc_dbi))
5083                                         return MDB_BAD_DBI;
5084                                 mdb_cursor_init(&mc2, mc->mc_txn, MAIN_DBI, NULL);
5085                                 rc = mdb_page_search(&mc2, &mc->mc_dbx->md_name, 0);
5086                                 if (rc)
5087                                         return rc;
5088                                 {
5089                                         MDB_val data;
5090                                         int exact = 0;
5091                                         uint16_t flags;
5092                                         MDB_node *leaf = mdb_node_search(&mc2,
5093                                                 &mc->mc_dbx->md_name, &exact);
5094                                         if (!exact)
5095                                                 return MDB_NOTFOUND;
5096                                         rc = mdb_node_read(mc->mc_txn, leaf, &data);
5097                                         if (rc)
5098                                                 return rc;
5099                                         memcpy(&flags, ((char *) data.mv_data + offsetof(MDB_db, md_flags)),
5100                                                 sizeof(uint16_t));
5101                                         /* The txn may not know this DBI, or another process may
5102                                          * have dropped and recreated the DB with other flags.
5103                                          */
5104                                         if ((mc->mc_db->md_flags & PERSISTENT_FLAGS) != flags)
5105                                                 return MDB_INCOMPATIBLE;
5106                                         memcpy(mc->mc_db, data.mv_data, sizeof(MDB_db));
5107                                 }
5108                                 *mc->mc_dbflag &= ~DB_STALE;
5109                 }
5110                 root = mc->mc_db->md_root;
5111
5112                 if (root == P_INVALID) {                /* Tree is empty. */
5113                         DPUTS("tree is empty");
5114                         return MDB_NOTFOUND;
5115                 }
5116         }
5117
5118         mdb_cassert(mc, root > 1);
5119         if (!mc->mc_pg[0] || mc->mc_pg[0]->mp_pgno != root)
5120                 if ((rc = mdb_page_get(mc->mc_txn, root, &mc->mc_pg[0], NULL)) != 0)
5121                         return rc;
5122
5123         mc->mc_snum = 1;
5124         mc->mc_top = 0;
5125
5126         DPRINTF(("db %d root page %"Z"u has flags 0x%X",
5127                 DDBI(mc), root, mc->mc_pg[0]->mp_flags));
5128
5129         if (flags & MDB_PS_MODIFY) {
5130                 if ((rc = mdb_page_touch(mc)))
5131                         return rc;
5132         }
5133
5134         if (flags & MDB_PS_ROOTONLY)
5135                 return MDB_SUCCESS;
5136
5137         return mdb_page_search_root(mc, key, flags);
5138 }
5139
5140 static int
5141 mdb_ovpage_free(MDB_cursor *mc, MDB_page *mp)
5142 {
5143         MDB_txn *txn = mc->mc_txn;
5144         pgno_t pg = mp->mp_pgno;
5145         unsigned x = 0, ovpages = mp->mp_pages;
5146         MDB_env *env = txn->mt_env;
5147         MDB_IDL sl = txn->mt_spill_pgs;
5148         MDB_ID pn = pg << 1;
5149         int rc;
5150
5151         DPRINTF(("free ov page %"Z"u (%d)", pg, ovpages));
5152         /* If the page is dirty or on the spill list we just acquired it,
5153          * so we should give it back to our current free list, if any.
5154          * Otherwise put it onto the list of pages we freed in this txn.
5155          *
5156          * Won't create me_pghead: me_pglast must be inited along with it.
5157          * Unsupported in nested txns: They would need to hide the page
5158          * range in ancestor txns' dirty and spilled lists.
5159          */
5160         if (env->me_pghead &&
5161                 !txn->mt_parent &&
5162                 ((mp->mp_flags & P_DIRTY) ||
5163                  (sl && (x = mdb_midl_search(sl, pn)) <= sl[0] && sl[x] == pn)))
5164         {
5165                 unsigned i, j;
5166                 pgno_t *mop;
5167                 MDB_ID2 *dl, ix, iy;
5168                 rc = mdb_midl_need(&env->me_pghead, ovpages);
5169                 if (rc)
5170                         return rc;
5171                 if (!(mp->mp_flags & P_DIRTY)) {
5172                         /* This page is no longer spilled */
5173                         if (x == sl[0])
5174                                 sl[0]--;
5175                         else
5176                                 sl[x] |= 1;
5177                         goto release;
5178                 }
5179                 /* Remove from dirty list */
5180                 dl = txn->mt_u.dirty_list;
5181                 x = dl[0].mid--;
5182                 for (ix = dl[x]; ix.mptr != mp; ix = iy) {
5183                         if (x > 1) {
5184                                 x--;
5185                                 iy = dl[x];
5186                                 dl[x] = ix;
5187                         } else {
5188                                 mdb_cassert(mc, x > 1);
5189                                 j = ++(dl[0].mid);
5190                                 dl[j] = ix;             /* Unsorted. OK when MDB_TXN_ERROR. */
5191                                 txn->mt_flags |= MDB_TXN_ERROR;
5192                                 return MDB_CORRUPTED;
5193                         }
5194                 }
5195                 if (!(env->me_flags & MDB_WRITEMAP))
5196                         mdb_dpage_free(env, mp);
5197 release:
5198                 /* Insert in me_pghead */
5199                 mop = env->me_pghead;
5200                 j = mop[0] + ovpages;
5201                 for (i = mop[0]; i && mop[i] < pg; i--)
5202                         mop[j--] = mop[i];
5203                 while (j>i)
5204                         mop[j--] = pg++;
5205                 mop[0] += ovpages;
5206         } else {
5207                 rc = mdb_midl_append_range(&txn->mt_free_pgs, pg, ovpages);
5208                 if (rc)
5209                         return rc;
5210         }
5211         mc->mc_db->md_overflow_pages -= ovpages;
5212         return 0;
5213 }
5214
5215 /** Return the data associated with a given node.
5216  * @param[in] txn The transaction for this operation.
5217  * @param[in] leaf The node being read.
5218  * @param[out] data Updated to point to the node's data.
5219  * @return 0 on success, non-zero on failure.
5220  */
5221 static int
5222 mdb_node_read(MDB_txn *txn, MDB_node *leaf, MDB_val *data)
5223 {
5224         MDB_page        *omp;           /* overflow page */
5225         pgno_t           pgno;
5226         int rc;
5227
5228         if (!F_ISSET(leaf->mn_flags, F_BIGDATA)) {
5229                 data->mv_size = NODEDSZ(leaf);
5230                 data->mv_data = NODEDATA(leaf);
5231                 return MDB_SUCCESS;
5232         }
5233
5234         /* Read overflow data.
5235          */
5236         data->mv_size = NODEDSZ(leaf);
5237         memcpy(&pgno, NODEDATA(leaf), sizeof(pgno));
5238         if ((rc = mdb_page_get(txn, pgno, &omp, NULL)) != 0) {
5239                 DPRINTF(("read overflow page %"Z"u failed", pgno));
5240                 return rc;
5241         }
5242         data->mv_data = METADATA(omp);
5243
5244         return MDB_SUCCESS;
5245 }
5246
5247 int
5248 mdb_get(MDB_txn *txn, MDB_dbi dbi,
5249     MDB_val *key, MDB_val *data)
5250 {
5251         MDB_cursor      mc;
5252         MDB_xcursor     mx;
5253         int exact = 0;
5254         DKBUF;
5255
5256         DPRINTF(("===> get db %u key [%s]", dbi, DKEY(key)));
5257
5258         if (!key || !data || dbi == FREE_DBI || !TXN_DBI_EXIST(txn, dbi))
5259                 return EINVAL;
5260
5261         if (txn->mt_flags & MDB_TXN_ERROR)
5262                 return MDB_BAD_TXN;
5263
5264         mdb_cursor_init(&mc, txn, dbi, &mx);
5265         return mdb_cursor_set(&mc, key, data, MDB_SET, &exact);
5266 }
5267
5268 /** Find a sibling for a page.
5269  * Replaces the page at the top of the cursor's stack with the
5270  * specified sibling, if one exists.
5271  * @param[in] mc The cursor for this operation.
5272  * @param[in] move_right Non-zero if the right sibling is requested,
5273  * otherwise the left sibling.
5274  * @return 0 on success, non-zero on failure.
5275  */
5276 static int
5277 mdb_cursor_sibling(MDB_cursor *mc, int move_right)
5278 {
5279         int              rc;
5280         MDB_node        *indx;
5281         MDB_page        *mp;
5282
5283         if (mc->mc_snum < 2) {
5284                 return MDB_NOTFOUND;            /* root has no siblings */
5285         }
5286
5287         mdb_cursor_pop(mc);
5288         DPRINTF(("parent page is page %"Z"u, index %u",
5289                 mc->mc_pg[mc->mc_top]->mp_pgno, mc->mc_ki[mc->mc_top]));
5290
5291         if (move_right ? (mc->mc_ki[mc->mc_top] + 1u >= NUMKEYS(mc->mc_pg[mc->mc_top]))
5292                        : (mc->mc_ki[mc->mc_top] == 0)) {
5293                 DPRINTF(("no more keys left, moving to %s sibling",
5294                     move_right ? "right" : "left"));
5295                 if ((rc = mdb_cursor_sibling(mc, move_right)) != MDB_SUCCESS) {
5296                         /* undo cursor_pop before returning */
5297                         mc->mc_top++;
5298                         mc->mc_snum++;
5299                         return rc;
5300                 }
5301         } else {
5302                 if (move_right)
5303                         mc->mc_ki[mc->mc_top]++;
5304                 else
5305                         mc->mc_ki[mc->mc_top]--;
5306                 DPRINTF(("just moving to %s index key %u",
5307                     move_right ? "right" : "left", mc->mc_ki[mc->mc_top]));
5308         }
5309         mdb_cassert(mc, IS_BRANCH(mc->mc_pg[mc->mc_top]));
5310
5311         indx = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
5312         if ((rc = mdb_page_get(mc->mc_txn, NODEPGNO(indx), &mp, NULL)) != 0) {
5313                 /* mc will be inconsistent if caller does mc_snum++ as above */
5314                 mc->mc_flags &= ~(C_INITIALIZED|C_EOF);
5315                 return rc;
5316         }
5317
5318         mdb_cursor_push(mc, mp);
5319         if (!move_right)
5320                 mc->mc_ki[mc->mc_top] = NUMKEYS(mp)-1;
5321
5322         return MDB_SUCCESS;
5323 }
5324
5325 /** Move the cursor to the next data item. */
5326 static int
5327 mdb_cursor_next(MDB_cursor *mc, MDB_val *key, MDB_val *data, MDB_cursor_op op)
5328 {
5329         MDB_page        *mp;
5330         MDB_node        *leaf;
5331         int rc;
5332
5333         if (mc->mc_flags & C_EOF) {
5334                 return MDB_NOTFOUND;
5335         }
5336
5337         mdb_cassert(mc, mc->mc_flags & C_INITIALIZED);
5338
5339         mp = mc->mc_pg[mc->mc_top];
5340
5341         if (mc->mc_db->md_flags & MDB_DUPSORT) {
5342                 leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
5343                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5344                         if (op == MDB_NEXT || op == MDB_NEXT_DUP) {
5345                                 rc = mdb_cursor_next(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_NEXT);
5346                                 if (op != MDB_NEXT || rc != MDB_NOTFOUND) {
5347                                         if (rc == MDB_SUCCESS)
5348                                                 MDB_GET_KEY(leaf, key);
5349                                         return rc;
5350                                 }
5351                         }
5352                 } else {
5353                         mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5354                         if (op == MDB_NEXT_DUP)
5355                                 return MDB_NOTFOUND;
5356                 }
5357         }
5358
5359         DPRINTF(("cursor_next: top page is %"Z"u in cursor %p",
5360                 mdb_dbg_pgno(mp), (void *) mc));
5361         if (mc->mc_flags & C_DEL)
5362                 goto skip;
5363
5364         if (mc->mc_ki[mc->mc_top] + 1u >= NUMKEYS(mp)) {
5365                 DPUTS("=====> move to next sibling page");
5366                 if ((rc = mdb_cursor_sibling(mc, 1)) != MDB_SUCCESS) {
5367                         mc->mc_flags |= C_EOF;
5368                         return rc;
5369                 }
5370                 mp = mc->mc_pg[mc->mc_top];
5371                 DPRINTF(("next page is %"Z"u, key index %u", mp->mp_pgno, mc->mc_ki[mc->mc_top]));
5372         } else
5373                 mc->mc_ki[mc->mc_top]++;
5374
5375 skip:
5376         DPRINTF(("==> cursor points to page %"Z"u with %u keys, key index %u",
5377             mdb_dbg_pgno(mp), NUMKEYS(mp), mc->mc_ki[mc->mc_top]));
5378
5379         if (IS_LEAF2(mp)) {
5380                 key->mv_size = mc->mc_db->md_pad;
5381                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
5382                 return MDB_SUCCESS;
5383         }
5384
5385         mdb_cassert(mc, IS_LEAF(mp));
5386         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
5387
5388         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5389                 mdb_xcursor_init1(mc, leaf);
5390         }
5391         if (data) {
5392                 if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
5393                         return rc;
5394
5395                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5396                         rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
5397                         if (rc != MDB_SUCCESS)
5398                                 return rc;
5399                 }
5400         }
5401
5402         MDB_GET_KEY(leaf, key);
5403         return MDB_SUCCESS;
5404 }
5405
5406 /** Move the cursor to the previous data item. */
5407 static int
5408 mdb_cursor_prev(MDB_cursor *mc, MDB_val *key, MDB_val *data, MDB_cursor_op op)
5409 {
5410         MDB_page        *mp;
5411         MDB_node        *leaf;
5412         int rc;
5413
5414         mdb_cassert(mc, mc->mc_flags & C_INITIALIZED);
5415
5416         mp = mc->mc_pg[mc->mc_top];
5417
5418         if (mc->mc_db->md_flags & MDB_DUPSORT) {
5419                 leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
5420                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5421                         if (op == MDB_PREV || op == MDB_PREV_DUP) {
5422                                 rc = mdb_cursor_prev(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_PREV);
5423                                 if (op != MDB_PREV || rc != MDB_NOTFOUND) {
5424                                         if (rc == MDB_SUCCESS) {
5425                                                 MDB_GET_KEY(leaf, key);
5426                                                 mc->mc_flags &= ~C_EOF;
5427                                         }
5428                                         return rc;
5429                                 }
5430                         } else {
5431                                 mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5432                                 if (op == MDB_PREV_DUP)
5433                                         return MDB_NOTFOUND;
5434                         }
5435                 }
5436         }
5437
5438         DPRINTF(("cursor_prev: top page is %"Z"u in cursor %p",
5439                 mdb_dbg_pgno(mp), (void *) mc));
5440
5441         if (mc->mc_ki[mc->mc_top] == 0)  {
5442                 DPUTS("=====> move to prev sibling page");
5443                 if ((rc = mdb_cursor_sibling(mc, 0)) != MDB_SUCCESS) {
5444                         return rc;
5445                 }
5446                 mp = mc->mc_pg[mc->mc_top];
5447                 mc->mc_ki[mc->mc_top] = NUMKEYS(mp) - 1;
5448                 DPRINTF(("prev page is %"Z"u, key index %u", mp->mp_pgno, mc->mc_ki[mc->mc_top]));
5449         } else
5450                 mc->mc_ki[mc->mc_top]--;
5451
5452         mc->mc_flags &= ~C_EOF;
5453
5454         DPRINTF(("==> cursor points to page %"Z"u with %u keys, key index %u",
5455             mdb_dbg_pgno(mp), NUMKEYS(mp), mc->mc_ki[mc->mc_top]));
5456
5457         if (IS_LEAF2(mp)) {
5458                 key->mv_size = mc->mc_db->md_pad;
5459                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
5460                 return MDB_SUCCESS;
5461         }
5462
5463         mdb_cassert(mc, IS_LEAF(mp));
5464         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
5465
5466         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5467                 mdb_xcursor_init1(mc, leaf);
5468         }
5469         if (data) {
5470                 if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
5471                         return rc;
5472
5473                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5474                         rc = mdb_cursor_last(&mc->mc_xcursor->mx_cursor, data, NULL);
5475                         if (rc != MDB_SUCCESS)
5476                                 return rc;
5477                 }
5478         }
5479
5480         MDB_GET_KEY(leaf, key);
5481         return MDB_SUCCESS;
5482 }
5483
5484 /** Set the cursor on a specific data item. */
5485 static int
5486 mdb_cursor_set(MDB_cursor *mc, MDB_val *key, MDB_val *data,
5487     MDB_cursor_op op, int *exactp)
5488 {
5489         int              rc;
5490         MDB_page        *mp;
5491         MDB_node        *leaf = NULL;
5492         DKBUF;
5493
5494         if (key->mv_size == 0)
5495                 return MDB_BAD_VALSIZE;
5496
5497         if (mc->mc_xcursor)
5498                 mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5499
5500         /* See if we're already on the right page */
5501         if (mc->mc_flags & C_INITIALIZED) {
5502                 MDB_val nodekey;
5503
5504                 mp = mc->mc_pg[mc->mc_top];
5505                 if (!NUMKEYS(mp)) {
5506                         mc->mc_ki[mc->mc_top] = 0;
5507                         return MDB_NOTFOUND;
5508                 }
5509                 if (mp->mp_flags & P_LEAF2) {
5510                         nodekey.mv_size = mc->mc_db->md_pad;
5511                         nodekey.mv_data = LEAF2KEY(mp, 0, nodekey.mv_size);
5512                 } else {
5513                         leaf = NODEPTR(mp, 0);
5514                         MDB_GET_KEY2(leaf, nodekey);
5515                 }
5516                 rc = mc->mc_dbx->md_cmp(key, &nodekey);
5517                 if (rc == 0) {
5518                         /* Probably happens rarely, but first node on the page
5519                          * was the one we wanted.
5520                          */
5521                         mc->mc_ki[mc->mc_top] = 0;
5522                         if (exactp)
5523                                 *exactp = 1;
5524                         goto set1;
5525                 }
5526                 if (rc > 0) {
5527                         unsigned int i;
5528                         unsigned int nkeys = NUMKEYS(mp);
5529                         if (nkeys > 1) {
5530                                 if (mp->mp_flags & P_LEAF2) {
5531                                         nodekey.mv_data = LEAF2KEY(mp,
5532                                                  nkeys-1, nodekey.mv_size);
5533                                 } else {
5534                                         leaf = NODEPTR(mp, nkeys-1);
5535                                         MDB_GET_KEY2(leaf, nodekey);
5536                                 }
5537                                 rc = mc->mc_dbx->md_cmp(key, &nodekey);
5538                                 if (rc == 0) {
5539                                         /* last node was the one we wanted */
5540                                         mc->mc_ki[mc->mc_top] = nkeys-1;
5541                                         if (exactp)
5542                                                 *exactp = 1;
5543                                         goto set1;
5544                                 }
5545                                 if (rc < 0) {
5546                                         if (mc->mc_ki[mc->mc_top] < NUMKEYS(mp)) {
5547                                                 /* This is definitely the right page, skip search_page */
5548                                                 if (mp->mp_flags & P_LEAF2) {
5549                                                         nodekey.mv_data = LEAF2KEY(mp,
5550                                                                  mc->mc_ki[mc->mc_top], nodekey.mv_size);
5551                                                 } else {
5552                                                         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
5553                                                         MDB_GET_KEY2(leaf, nodekey);
5554                                                 }
5555                                                 rc = mc->mc_dbx->md_cmp(key, &nodekey);
5556                                                 if (rc == 0) {
5557                                                         /* current node was the one we wanted */
5558                                                         if (exactp)
5559                                                                 *exactp = 1;
5560                                                         goto set1;
5561                                                 }
5562                                         }
5563                                         rc = 0;
5564                                         goto set2;
5565                                 }
5566                         }
5567                         /* If any parents have right-sibs, search.
5568                          * Otherwise, there's nothing further.
5569                          */
5570                         for (i=0; i<mc->mc_top; i++)
5571                                 if (mc->mc_ki[i] <
5572                                         NUMKEYS(mc->mc_pg[i])-1)
5573                                         break;
5574                         if (i == mc->mc_top) {
5575                                 /* There are no other pages */
5576                                 mc->mc_ki[mc->mc_top] = nkeys;
5577                                 return MDB_NOTFOUND;
5578                         }
5579                 }
5580                 if (!mc->mc_top) {
5581                         /* There are no other pages */
5582                         mc->mc_ki[mc->mc_top] = 0;
5583                         if (op == MDB_SET_RANGE && !exactp) {
5584                                 rc = 0;
5585                                 goto set1;
5586                         } else
5587                                 return MDB_NOTFOUND;
5588                 }
5589         }
5590
5591         rc = mdb_page_search(mc, key, 0);
5592         if (rc != MDB_SUCCESS)
5593                 return rc;
5594
5595         mp = mc->mc_pg[mc->mc_top];
5596         mdb_cassert(mc, IS_LEAF(mp));
5597
5598 set2:
5599         leaf = mdb_node_search(mc, key, exactp);
5600         if (exactp != NULL && !*exactp) {
5601                 /* MDB_SET specified and not an exact match. */
5602                 return MDB_NOTFOUND;
5603         }
5604
5605         if (leaf == NULL) {
5606                 DPUTS("===> inexact leaf not found, goto sibling");
5607                 if ((rc = mdb_cursor_sibling(mc, 1)) != MDB_SUCCESS)
5608                         return rc;              /* no entries matched */
5609                 mp = mc->mc_pg[mc->mc_top];
5610                 mdb_cassert(mc, IS_LEAF(mp));
5611                 leaf = NODEPTR(mp, 0);
5612         }
5613
5614 set1:
5615         mc->mc_flags |= C_INITIALIZED;
5616         mc->mc_flags &= ~C_EOF;
5617
5618         if (IS_LEAF2(mp)) {
5619                 if (op == MDB_SET_RANGE || op == MDB_SET_KEY) {
5620                         key->mv_size = mc->mc_db->md_pad;
5621                         key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
5622                 }
5623                 return MDB_SUCCESS;
5624         }
5625
5626         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5627                 mdb_xcursor_init1(mc, leaf);
5628         }
5629         if (data) {
5630                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5631                         if (op == MDB_SET || op == MDB_SET_KEY || op == MDB_SET_RANGE) {
5632                                 rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
5633                         } else {
5634                                 int ex2, *ex2p;
5635                                 if (op == MDB_GET_BOTH) {
5636                                         ex2p = &ex2;
5637                                         ex2 = 0;
5638                                 } else {
5639                                         ex2p = NULL;
5640                                 }
5641                                 rc = mdb_cursor_set(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_SET_RANGE, ex2p);
5642                                 if (rc != MDB_SUCCESS)
5643                                         return rc;
5644                         }
5645                 } else if (op == MDB_GET_BOTH || op == MDB_GET_BOTH_RANGE) {
5646                         MDB_val d2;
5647                         if ((rc = mdb_node_read(mc->mc_txn, leaf, &d2)) != MDB_SUCCESS)
5648                                 return rc;
5649                         rc = mc->mc_dbx->md_dcmp(data, &d2);
5650                         if (rc) {
5651                                 if (op == MDB_GET_BOTH || rc > 0)
5652                                         return MDB_NOTFOUND;
5653                                 rc = 0;
5654                                 *data = d2;
5655                         }
5656
5657                 } else {
5658                         if (mc->mc_xcursor)
5659                                 mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5660                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
5661                                 return rc;
5662                 }
5663         }
5664
5665         /* The key already matches in all other cases */
5666         if (op == MDB_SET_RANGE || op == MDB_SET_KEY)
5667                 MDB_GET_KEY(leaf, key);
5668         DPRINTF(("==> cursor placed on key [%s]", DKEY(key)));
5669
5670         return rc;
5671 }
5672
5673 /** Move the cursor to the first item in the database. */
5674 static int
5675 mdb_cursor_first(MDB_cursor *mc, MDB_val *key, MDB_val *data)
5676 {
5677         int              rc;
5678         MDB_node        *leaf;
5679
5680         if (mc->mc_xcursor)
5681                 mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5682
5683         if (!(mc->mc_flags & C_INITIALIZED) || mc->mc_top) {
5684                 rc = mdb_page_search(mc, NULL, MDB_PS_FIRST);
5685                 if (rc != MDB_SUCCESS)
5686                         return rc;
5687         }
5688         mdb_cassert(mc, IS_LEAF(mc->mc_pg[mc->mc_top]));
5689
5690         leaf = NODEPTR(mc->mc_pg[mc->mc_top], 0);
5691         mc->mc_flags |= C_INITIALIZED;
5692         mc->mc_flags &= ~C_EOF;
5693
5694         mc->mc_ki[mc->mc_top] = 0;
5695
5696         if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
5697                 key->mv_size = mc->mc_db->md_pad;
5698                 key->mv_data = LEAF2KEY(mc->mc_pg[mc->mc_top], 0, key->mv_size);
5699                 return MDB_SUCCESS;
5700         }
5701
5702         if (data) {
5703                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5704                         mdb_xcursor_init1(mc, leaf);
5705                         rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
5706                         if (rc)
5707                                 return rc;
5708                 } else {
5709                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
5710                                 return rc;
5711                 }
5712         }
5713         MDB_GET_KEY(leaf, key);
5714         return MDB_SUCCESS;
5715 }
5716
5717 /** Move the cursor to the last item in the database. */
5718 static int
5719 mdb_cursor_last(MDB_cursor *mc, MDB_val *key, MDB_val *data)
5720 {
5721         int              rc;
5722         MDB_node        *leaf;
5723
5724         if (mc->mc_xcursor)
5725                 mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5726
5727         if (!(mc->mc_flags & C_EOF)) {
5728
5729                 if (!(mc->mc_flags & C_INITIALIZED) || mc->mc_top) {
5730                         rc = mdb_page_search(mc, NULL, MDB_PS_LAST);
5731                         if (rc != MDB_SUCCESS)
5732                                 return rc;
5733                 }
5734                 mdb_cassert(mc, IS_LEAF(mc->mc_pg[mc->mc_top]));
5735
5736         }
5737         mc->mc_ki[mc->mc_top] = NUMKEYS(mc->mc_pg[mc->mc_top]) - 1;
5738         mc->mc_flags |= C_INITIALIZED|C_EOF;
5739         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
5740
5741         if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
5742                 key->mv_size = mc->mc_db->md_pad;
5743                 key->mv_data = LEAF2KEY(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], key->mv_size);
5744                 return MDB_SUCCESS;
5745         }
5746
5747         if (data) {
5748                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5749                         mdb_xcursor_init1(mc, leaf);
5750                         rc = mdb_cursor_last(&mc->mc_xcursor->mx_cursor, data, NULL);
5751                         if (rc)
5752                                 return rc;
5753                 } else {
5754                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
5755                                 return rc;
5756                 }
5757         }
5758
5759         MDB_GET_KEY(leaf, key);
5760         return MDB_SUCCESS;
5761 }
5762
5763 int
5764 mdb_cursor_get(MDB_cursor *mc, MDB_val *key, MDB_val *data,
5765     MDB_cursor_op op)
5766 {
5767         int              rc;
5768         int              exact = 0;
5769         int              (*mfunc)(MDB_cursor *mc, MDB_val *key, MDB_val *data);
5770
5771         if (mc == NULL)
5772                 return EINVAL;
5773
5774         if (mc->mc_txn->mt_flags & MDB_TXN_ERROR)
5775                 return MDB_BAD_TXN;
5776
5777         switch (op) {
5778         case MDB_GET_CURRENT:
5779                 if (!(mc->mc_flags & C_INITIALIZED)) {
5780                         rc = EINVAL;
5781                 } else {
5782                         MDB_page *mp = mc->mc_pg[mc->mc_top];
5783                         int nkeys = NUMKEYS(mp);
5784                         if (!nkeys || mc->mc_ki[mc->mc_top] >= nkeys) {
5785                                 mc->mc_ki[mc->mc_top] = nkeys;
5786                                 rc = MDB_NOTFOUND;
5787                                 break;
5788                         }
5789                         rc = MDB_SUCCESS;
5790                         if (IS_LEAF2(mp)) {
5791                                 key->mv_size = mc->mc_db->md_pad;
5792                                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
5793                         } else {
5794                                 MDB_node *leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
5795                                 MDB_GET_KEY(leaf, key);
5796                                 if (data) {
5797                                         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5798                                                 if (mc->mc_flags & C_DEL)
5799                                                         mdb_xcursor_init1(mc, leaf);
5800                                                 rc = mdb_cursor_get(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_GET_CURRENT);
5801                                         } else {
5802                                                 rc = mdb_node_read(mc->mc_txn, leaf, data);
5803                                         }
5804                                 }
5805                         }
5806                 }
5807                 break;
5808         case MDB_GET_BOTH:
5809         case MDB_GET_BOTH_RANGE:
5810                 if (data == NULL) {
5811                         rc = EINVAL;
5812                         break;
5813                 }
5814                 if (mc->mc_xcursor == NULL) {
5815                         rc = MDB_INCOMPATIBLE;
5816                         break;
5817                 }
5818                 /* FALLTHRU */
5819         case MDB_SET:
5820         case MDB_SET_KEY:
5821         case MDB_SET_RANGE:
5822                 if (key == NULL) {
5823                         rc = EINVAL;
5824                 } else {
5825                         rc = mdb_cursor_set(mc, key, data, op,
5826                                 op == MDB_SET_RANGE ? NULL : &exact);
5827                 }
5828                 break;
5829         case MDB_GET_MULTIPLE:
5830                 if (data == NULL || !(mc->mc_flags & C_INITIALIZED)) {
5831                         rc = EINVAL;
5832                         break;
5833                 }
5834                 if (!(mc->mc_db->md_flags & MDB_DUPFIXED)) {
5835                         rc = MDB_INCOMPATIBLE;
5836                         break;
5837                 }
5838                 rc = MDB_SUCCESS;
5839                 if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED) ||
5840                         (mc->mc_xcursor->mx_cursor.mc_flags & C_EOF))
5841                         break;
5842                 goto fetchm;
5843         case MDB_NEXT_MULTIPLE:
5844                 if (data == NULL) {
5845                         rc = EINVAL;
5846                         break;
5847                 }
5848                 if (!(mc->mc_db->md_flags & MDB_DUPFIXED)) {
5849                         rc = MDB_INCOMPATIBLE;
5850                         break;
5851                 }
5852                 if (!(mc->mc_flags & C_INITIALIZED))
5853                         rc = mdb_cursor_first(mc, key, data);
5854                 else
5855                         rc = mdb_cursor_next(mc, key, data, MDB_NEXT_DUP);
5856                 if (rc == MDB_SUCCESS) {
5857                         if (mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED) {
5858                                 MDB_cursor *mx;
5859 fetchm:
5860                                 mx = &mc->mc_xcursor->mx_cursor;
5861                                 data->mv_size = NUMKEYS(mx->mc_pg[mx->mc_top]) *
5862                                         mx->mc_db->md_pad;
5863                                 data->mv_data = METADATA(mx->mc_pg[mx->mc_top]);
5864                                 mx->mc_ki[mx->mc_top] = NUMKEYS(mx->mc_pg[mx->mc_top])-1;
5865                         } else {
5866                                 rc = MDB_NOTFOUND;
5867                         }
5868                 }
5869                 break;
5870         case MDB_NEXT:
5871         case MDB_NEXT_DUP:
5872         case MDB_NEXT_NODUP:
5873                 if (!(mc->mc_flags & C_INITIALIZED))
5874                         rc = mdb_cursor_first(mc, key, data);
5875                 else
5876                         rc = mdb_cursor_next(mc, key, data, op);
5877                 break;
5878         case MDB_PREV:
5879         case MDB_PREV_DUP:
5880         case MDB_PREV_NODUP:
5881                 if (!(mc->mc_flags & C_INITIALIZED)) {
5882                         rc = mdb_cursor_last(mc, key, data);
5883                         if (rc)
5884                                 break;
5885                         mc->mc_flags |= C_INITIALIZED;
5886                         mc->mc_ki[mc->mc_top]++;
5887                 }
5888                 rc = mdb_cursor_prev(mc, key, data, op);
5889                 break;
5890         case MDB_FIRST:
5891                 rc = mdb_cursor_first(mc, key, data);
5892                 break;
5893         case MDB_FIRST_DUP:
5894                 mfunc = mdb_cursor_first;
5895         mmove:
5896                 if (data == NULL || !(mc->mc_flags & C_INITIALIZED)) {
5897                         rc = EINVAL;
5898                         break;
5899                 }
5900                 if (mc->mc_xcursor == NULL) {
5901                         rc = MDB_INCOMPATIBLE;
5902                         break;
5903                 }
5904                 {
5905                         MDB_node *leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
5906                         if (!F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5907                                 MDB_GET_KEY(leaf, key);
5908                                 rc = mdb_node_read(mc->mc_txn, leaf, data);
5909                                 break;
5910                         }
5911                 }
5912                 if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED)) {
5913                         rc = EINVAL;
5914                         break;
5915                 }
5916                 rc = mfunc(&mc->mc_xcursor->mx_cursor, data, NULL);
5917                 break;
5918         case MDB_LAST:
5919                 rc = mdb_cursor_last(mc, key, data);
5920                 break;
5921         case MDB_LAST_DUP:
5922                 mfunc = mdb_cursor_last;
5923                 goto mmove;
5924         default:
5925                 DPRINTF(("unhandled/unimplemented cursor operation %u", op));
5926                 rc = EINVAL;
5927                 break;
5928         }
5929
5930         if (mc->mc_flags & C_DEL)
5931                 mc->mc_flags ^= C_DEL;
5932
5933         return rc;
5934 }
5935
5936 /** Touch all the pages in the cursor stack. Set mc_top.
5937  *      Makes sure all the pages are writable, before attempting a write operation.
5938  * @param[in] mc The cursor to operate on.
5939  */
5940 static int
5941 mdb_cursor_touch(MDB_cursor *mc)
5942 {
5943         int rc = MDB_SUCCESS;
5944
5945         if (mc->mc_dbi > MAIN_DBI && !(*mc->mc_dbflag & DB_DIRTY)) {
5946                 MDB_cursor mc2;
5947                 MDB_xcursor mcx;
5948                 if (TXN_DBI_CHANGED(mc->mc_txn, mc->mc_dbi))
5949                         return MDB_BAD_DBI;
5950                 mdb_cursor_init(&mc2, mc->mc_txn, MAIN_DBI, &mcx);
5951                 rc = mdb_page_search(&mc2, &mc->mc_dbx->md_name, MDB_PS_MODIFY);
5952                 if (rc)
5953                          return rc;
5954                 *mc->mc_dbflag |= DB_DIRTY;
5955         }
5956         mc->mc_top = 0;
5957         if (mc->mc_snum) {
5958                 do {
5959                         rc = mdb_page_touch(mc);
5960                 } while (!rc && ++(mc->mc_top) < mc->mc_snum);
5961                 mc->mc_top = mc->mc_snum-1;
5962         }
5963         return rc;
5964 }
5965
5966 /** Do not spill pages to disk if txn is getting full, may fail instead */
5967 #define MDB_NOSPILL     0x8000
5968
5969 int
5970 mdb_cursor_put(MDB_cursor *mc, MDB_val *key, MDB_val *data,
5971     unsigned int flags)
5972 {
5973         enum { MDB_NO_ROOT = MDB_LAST_ERRCODE+10 }; /* internal code */
5974         MDB_env         *env;
5975         MDB_node        *leaf = NULL;
5976         MDB_page        *fp, *mp;
5977         uint16_t        fp_flags;
5978         MDB_val         xdata, *rdata, dkey, olddata;
5979         MDB_db dummy;
5980         int do_sub = 0, insert_key, insert_data;
5981         unsigned int mcount = 0, dcount = 0, nospill;
5982         size_t nsize;
5983         int rc, rc2;
5984         unsigned int nflags;
5985         DKBUF;
5986
5987         if (mc == NULL || key == NULL)
5988                 return EINVAL;
5989
5990         env = mc->mc_txn->mt_env;
5991
5992         /* Check this first so counter will always be zero on any
5993          * early failures.
5994          */
5995         if (flags & MDB_MULTIPLE) {
5996                 dcount = data[1].mv_size;
5997                 data[1].mv_size = 0;
5998                 if (!F_ISSET(mc->mc_db->md_flags, MDB_DUPFIXED))
5999                         return MDB_INCOMPATIBLE;
6000         }
6001
6002         nospill = flags & MDB_NOSPILL;
6003         flags &= ~MDB_NOSPILL;
6004
6005         if (mc->mc_txn->mt_flags & (MDB_TXN_RDONLY|MDB_TXN_ERROR))
6006                 return (mc->mc_txn->mt_flags & MDB_TXN_RDONLY) ? EACCES : MDB_BAD_TXN;
6007
6008         if (key->mv_size-1 >= ENV_MAXKEY(env))
6009                 return MDB_BAD_VALSIZE;
6010
6011 #if SIZE_MAX > MAXDATASIZE
6012         if (data->mv_size > ((mc->mc_db->md_flags & MDB_DUPSORT) ? ENV_MAXKEY(env) : MAXDATASIZE))
6013                 return MDB_BAD_VALSIZE;
6014 #else
6015         if ((mc->mc_db->md_flags & MDB_DUPSORT) && data->mv_size > ENV_MAXKEY(env))
6016                 return MDB_BAD_VALSIZE;
6017 #endif
6018
6019         DPRINTF(("==> put db %d key [%s], size %"Z"u, data size %"Z"u",
6020                 DDBI(mc), DKEY(key), key ? key->mv_size : 0, data->mv_size));
6021
6022         dkey.mv_size = 0;
6023
6024         if (flags == MDB_CURRENT) {
6025                 if (!(mc->mc_flags & C_INITIALIZED))
6026                         return EINVAL;
6027                 rc = MDB_SUCCESS;
6028         } else if (mc->mc_db->md_root == P_INVALID) {
6029                 /* new database, cursor has nothing to point to */
6030                 mc->mc_snum = 0;
6031                 mc->mc_top = 0;
6032                 mc->mc_flags &= ~C_INITIALIZED;
6033                 rc = MDB_NO_ROOT;
6034         } else {
6035                 int exact = 0;
6036                 MDB_val d2;
6037                 if (flags & MDB_APPEND) {
6038                         MDB_val k2;
6039                         rc = mdb_cursor_last(mc, &k2, &d2);
6040                         if (rc == 0) {
6041                                 rc = mc->mc_dbx->md_cmp(key, &k2);
6042                                 if (rc > 0) {
6043                                         rc = MDB_NOTFOUND;
6044                                         mc->mc_ki[mc->mc_top]++;
6045                                 } else {
6046                                         /* new key is <= last key */
6047                                         rc = MDB_KEYEXIST;
6048                                 }
6049                         }
6050                 } else {
6051                         rc = mdb_cursor_set(mc, key, &d2, MDB_SET, &exact);
6052                 }
6053                 if ((flags & MDB_NOOVERWRITE) && rc == 0) {
6054                         DPRINTF(("duplicate key [%s]", DKEY(key)));
6055                         *data = d2;
6056                         return MDB_KEYEXIST;
6057                 }
6058                 if (rc && rc != MDB_NOTFOUND)
6059                         return rc;
6060         }
6061
6062         if (mc->mc_flags & C_DEL)
6063                 mc->mc_flags ^= C_DEL;
6064
6065         /* Cursor is positioned, check for room in the dirty list */
6066         if (!nospill) {
6067                 if (flags & MDB_MULTIPLE) {
6068                         rdata = &xdata;
6069                         xdata.mv_size = data->mv_size * dcount;
6070                 } else {
6071                         rdata = data;
6072                 }
6073                 if ((rc2 = mdb_page_spill(mc, key, rdata)))
6074                         return rc2;
6075         }
6076
6077         if (rc == MDB_NO_ROOT) {
6078                 MDB_page *np;
6079                 /* new database, write a root leaf page */
6080                 DPUTS("allocating new root leaf page");
6081                 if ((rc2 = mdb_page_new(mc, P_LEAF, 1, &np))) {
6082                         return rc2;
6083                 }
6084                 mdb_cursor_push(mc, np);
6085                 mc->mc_db->md_root = np->mp_pgno;
6086                 mc->mc_db->md_depth++;
6087                 *mc->mc_dbflag |= DB_DIRTY;
6088                 if ((mc->mc_db->md_flags & (MDB_DUPSORT|MDB_DUPFIXED))
6089                         == MDB_DUPFIXED)
6090                         np->mp_flags |= P_LEAF2;
6091                 mc->mc_flags |= C_INITIALIZED;
6092         } else {
6093                 /* make sure all cursor pages are writable */
6094                 rc2 = mdb_cursor_touch(mc);
6095                 if (rc2)
6096                         return rc2;
6097         }
6098
6099         insert_key = insert_data = rc;
6100         if (insert_key) {
6101                 /* The key does not exist */
6102                 DPRINTF(("inserting key at index %i", mc->mc_ki[mc->mc_top]));
6103                 if ((mc->mc_db->md_flags & MDB_DUPSORT) &&
6104                         LEAFSIZE(key, data) > env->me_nodemax)
6105                 {
6106                         /* Too big for a node, insert in sub-DB.  Set up an empty
6107                          * "old sub-page" for prep_subDB to expand to a full page.
6108                          */
6109                         fp_flags = P_LEAF|P_DIRTY;
6110                         fp = env->me_pbuf;
6111                         fp->mp_pad = data->mv_size; /* used if MDB_DUPFIXED */
6112                         fp->mp_lower = fp->mp_upper = (PAGEHDRSZ-PAGEBASE);
6113                         olddata.mv_size = PAGEHDRSZ;
6114                         goto prep_subDB;
6115                 }
6116         } else {
6117                 /* there's only a key anyway, so this is a no-op */
6118                 if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
6119                         char *ptr;
6120                         unsigned int ksize = mc->mc_db->md_pad;
6121                         if (key->mv_size != ksize)
6122                                 return MDB_BAD_VALSIZE;
6123                         ptr = LEAF2KEY(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], ksize);
6124                         memcpy(ptr, key->mv_data, ksize);
6125 fix_parent:
6126                         /* if overwriting slot 0 of leaf, need to
6127                          * update branch key if there is a parent page
6128                          */
6129                         if (mc->mc_top && !mc->mc_ki[mc->mc_top]) {
6130                                 unsigned short top = mc->mc_top;
6131                                 mc->mc_top--;
6132                                 /* slot 0 is always an empty key, find real slot */
6133                                 while (mc->mc_top && !mc->mc_ki[mc->mc_top])
6134                                         mc->mc_top--;
6135                                 if (mc->mc_ki[mc->mc_top])
6136                                         rc2 = mdb_update_key(mc, key);
6137                                 else
6138                                         rc2 = MDB_SUCCESS;
6139                                 mc->mc_top = top;
6140                                 if (rc2)
6141                                         return rc2;
6142                         }
6143                         return MDB_SUCCESS;
6144                 }
6145
6146 more:
6147                 leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
6148                 olddata.mv_size = NODEDSZ(leaf);
6149                 olddata.mv_data = NODEDATA(leaf);
6150
6151                 /* DB has dups? */
6152                 if (F_ISSET(mc->mc_db->md_flags, MDB_DUPSORT)) {
6153                         /* Prepare (sub-)page/sub-DB to accept the new item,
6154                          * if needed.  fp: old sub-page or a header faking
6155                          * it.  mp: new (sub-)page.  offset: growth in page
6156                          * size.  xdata: node data with new page or DB.
6157                          */
6158                         unsigned        i, offset = 0;
6159                         mp = fp = xdata.mv_data = env->me_pbuf;
6160                         mp->mp_pgno = mc->mc_pg[mc->mc_top]->mp_pgno;
6161
6162                         /* Was a single item before, must convert now */
6163                         if (!F_ISSET(leaf->mn_flags, F_DUPDATA)) {
6164                                 /* Just overwrite the current item */
6165                                 if (flags == MDB_CURRENT)
6166                                         goto current;
6167
6168 #if UINT_MAX < SIZE_MAX
6169                                 if (mc->mc_dbx->md_dcmp == mdb_cmp_int && olddata.mv_size == sizeof(size_t))
6170                                         mc->mc_dbx->md_dcmp = mdb_cmp_clong;
6171 #endif
6172                                 /* does data match? */
6173                                 if (!mc->mc_dbx->md_dcmp(data, &olddata)) {
6174                                         if (flags & MDB_NODUPDATA)
6175                                                 return MDB_KEYEXIST;
6176                                         /* overwrite it */
6177                                         goto current;
6178                                 }
6179
6180                                 /* Back up original data item */
6181                                 dkey.mv_size = olddata.mv_size;
6182                                 dkey.mv_data = memcpy(fp+1, olddata.mv_data, olddata.mv_size);
6183
6184                                 /* Make sub-page header for the dup items, with dummy body */
6185                                 fp->mp_flags = P_LEAF|P_DIRTY|P_SUBP;
6186                                 fp->mp_lower = (PAGEHDRSZ-PAGEBASE);
6187                                 xdata.mv_size = PAGEHDRSZ + dkey.mv_size + data->mv_size;
6188                                 if (mc->mc_db->md_flags & MDB_DUPFIXED) {
6189                                         fp->mp_flags |= P_LEAF2;
6190                                         fp->mp_pad = data->mv_size;
6191                                         xdata.mv_size += 2 * data->mv_size;     /* leave space for 2 more */
6192                                 } else {
6193                                         xdata.mv_size += 2 * (sizeof(indx_t) + NODESIZE) +
6194                                                 (dkey.mv_size & 1) + (data->mv_size & 1);
6195                                 }
6196                                 fp->mp_upper = xdata.mv_size - PAGEBASE;
6197                                 olddata.mv_size = xdata.mv_size; /* pretend olddata is fp */
6198                         } else if (leaf->mn_flags & F_SUBDATA) {
6199                                 /* Data is on sub-DB, just store it */
6200                                 flags |= F_DUPDATA|F_SUBDATA;
6201                                 goto put_sub;
6202                         } else {
6203                                 /* Data is on sub-page */
6204                                 fp = olddata.mv_data;
6205                                 switch (flags) {
6206                                 default:
6207                                         if (!(mc->mc_db->md_flags & MDB_DUPFIXED)) {
6208                                                 offset = EVEN(NODESIZE + sizeof(indx_t) +
6209                                                         data->mv_size);
6210                                                 break;
6211                                         }
6212                                         offset = fp->mp_pad;
6213                                         if (SIZELEFT(fp) < offset) {
6214                                                 offset *= 4; /* space for 4 more */
6215                                                 break;
6216                                         }
6217                                         /* FALLTHRU: Big enough MDB_DUPFIXED sub-page */
6218                                 case MDB_CURRENT:
6219                                         fp->mp_flags |= P_DIRTY;
6220                                         COPY_PGNO(fp->mp_pgno, mp->mp_pgno);
6221                                         mc->mc_xcursor->mx_cursor.mc_pg[0] = fp;
6222                                         flags |= F_DUPDATA;
6223                                         goto put_sub;
6224                                 }
6225                                 xdata.mv_size = olddata.mv_size + offset;
6226                         }
6227
6228                         fp_flags = fp->mp_flags;
6229                         if (NODESIZE + NODEKSZ(leaf) + xdata.mv_size > env->me_nodemax) {
6230                                         /* Too big for a sub-page, convert to sub-DB */
6231                                         fp_flags &= ~P_SUBP;
6232 prep_subDB:
6233                                         if (mc->mc_db->md_flags & MDB_DUPFIXED) {
6234                                                 fp_flags |= P_LEAF2;
6235                                                 dummy.md_pad = fp->mp_pad;
6236                                                 dummy.md_flags = MDB_DUPFIXED;
6237                                                 if (mc->mc_db->md_flags & MDB_INTEGERDUP)
6238                                                         dummy.md_flags |= MDB_INTEGERKEY;
6239                                         } else {
6240                                                 dummy.md_pad = 0;
6241                                                 dummy.md_flags = 0;
6242                                         }
6243                                         dummy.md_depth = 1;
6244                                         dummy.md_branch_pages = 0;
6245                                         dummy.md_leaf_pages = 1;
6246                                         dummy.md_overflow_pages = 0;
6247                                         dummy.md_entries = NUMKEYS(fp);
6248                                         xdata.mv_size = sizeof(MDB_db);
6249                                         xdata.mv_data = &dummy;
6250                                         if ((rc = mdb_page_alloc(mc, 1, &mp)))
6251                                                 return rc;
6252                                         offset = env->me_psize - olddata.mv_size;
6253                                         flags |= F_DUPDATA|F_SUBDATA;
6254                                         dummy.md_root = mp->mp_pgno;
6255                         }
6256                         if (mp != fp) {
6257                                 mp->mp_flags = fp_flags | P_DIRTY;
6258                                 mp->mp_pad   = fp->mp_pad;
6259                                 mp->mp_lower = fp->mp_lower;
6260                                 mp->mp_upper = fp->mp_upper + offset;
6261                                 if (fp_flags & P_LEAF2) {
6262                                         memcpy(METADATA(mp), METADATA(fp), NUMKEYS(fp) * fp->mp_pad);
6263                                 } else {
6264                                         memcpy((char *)mp + mp->mp_upper + PAGEBASE, (char *)fp + fp->mp_upper + PAGEBASE,
6265                                                 olddata.mv_size - fp->mp_upper - PAGEBASE);
6266                                         for (i=0; i<NUMKEYS(fp); i++)
6267                                                 mp->mp_ptrs[i] = fp->mp_ptrs[i] + offset;
6268                                 }
6269                         }
6270
6271                         rdata = &xdata;
6272                         flags |= F_DUPDATA;
6273                         do_sub = 1;
6274                         if (!insert_key)
6275                                 mdb_node_del(mc, 0);
6276                         goto new_sub;
6277                 }
6278 current:
6279                 /* overflow page overwrites need special handling */
6280                 if (F_ISSET(leaf->mn_flags, F_BIGDATA)) {
6281                         MDB_page *omp;
6282                         pgno_t pg;
6283                         int level, ovpages, dpages = OVPAGES(data->mv_size, env->me_psize);
6284
6285                         memcpy(&pg, olddata.mv_data, sizeof(pg));
6286                         if ((rc2 = mdb_page_get(mc->mc_txn, pg, &omp, &level)) != 0)
6287                                 return rc2;
6288                         ovpages = omp->mp_pages;
6289
6290                         /* Is the ov page large enough? */
6291                         if (ovpages >= dpages) {
6292                           if (!(omp->mp_flags & P_DIRTY) &&
6293                                   (level || (env->me_flags & MDB_WRITEMAP)))
6294                           {
6295                                 rc = mdb_page_unspill(mc->mc_txn, omp, &omp);
6296                                 if (rc)
6297                                         return rc;
6298                                 level = 0;              /* dirty in this txn or clean */
6299                           }
6300                           /* Is it dirty? */
6301                           if (omp->mp_flags & P_DIRTY) {
6302                                 /* yes, overwrite it. Note in this case we don't
6303                                  * bother to try shrinking the page if the new data
6304                                  * is smaller than the overflow threshold.
6305                                  */
6306                                 if (level > 1) {
6307                                         /* It is writable only in a parent txn */
6308                                         size_t sz = (size_t) env->me_psize * ovpages, off;
6309                                         MDB_page *np = mdb_page_malloc(mc->mc_txn, ovpages);
6310                                         MDB_ID2 id2;
6311                                         if (!np)
6312                                                 return ENOMEM;
6313                                         id2.mid = pg;
6314                                         id2.mptr = np;
6315                                         rc2 = mdb_mid2l_insert(mc->mc_txn->mt_u.dirty_list, &id2);
6316                                         mdb_cassert(mc, rc2 == 0);
6317                                         if (!(flags & MDB_RESERVE)) {
6318                                                 /* Copy end of page, adjusting alignment so
6319                                                  * compiler may copy words instead of bytes.
6320                                                  */
6321                                                 off = (PAGEHDRSZ + data->mv_size) & -sizeof(size_t);
6322                                                 memcpy((size_t *)((char *)np + off),
6323                                                         (size_t *)((char *)omp + off), sz - off);
6324                                                 sz = PAGEHDRSZ;
6325                                         }
6326                                         memcpy(np, omp, sz); /* Copy beginning of page */
6327                                         omp = np;
6328                                 }
6329                                 SETDSZ(leaf, data->mv_size);
6330                                 if (F_ISSET(flags, MDB_RESERVE))
6331                                         data->mv_data = METADATA(omp);
6332                                 else
6333                                         memcpy(METADATA(omp), data->mv_data, data->mv_size);
6334                                 return MDB_SUCCESS;
6335                           }
6336                         }
6337                         if ((rc2 = mdb_ovpage_free(mc, omp)) != MDB_SUCCESS)
6338                                 return rc2;
6339                 } else if (data->mv_size == olddata.mv_size) {
6340                         /* same size, just replace it. Note that we could
6341                          * also reuse this node if the new data is smaller,
6342                          * but instead we opt to shrink the node in that case.
6343                          */
6344                         if (F_ISSET(flags, MDB_RESERVE))
6345                                 data->mv_data = olddata.mv_data;
6346                         else if (!(mc->mc_flags & C_SUB))
6347                                 memcpy(olddata.mv_data, data->mv_data, data->mv_size);
6348                         else {
6349                                 memcpy(NODEKEY(leaf), key->mv_data, key->mv_size);
6350                                 goto fix_parent;
6351                         }
6352                         return MDB_SUCCESS;
6353                 }
6354                 mdb_node_del(mc, 0);
6355         }
6356
6357         rdata = data;
6358
6359 new_sub:
6360         nflags = flags & NODE_ADD_FLAGS;
6361         nsize = IS_LEAF2(mc->mc_pg[mc->mc_top]) ? key->mv_size : mdb_leaf_size(env, key, rdata);
6362         if (SIZELEFT(mc->mc_pg[mc->mc_top]) < nsize) {
6363                 if (( flags & (F_DUPDATA|F_SUBDATA)) == F_DUPDATA )
6364                         nflags &= ~MDB_APPEND; /* sub-page may need room to grow */
6365                 if (!insert_key)
6366                         nflags |= MDB_SPLIT_REPLACE;
6367                 rc = mdb_page_split(mc, key, rdata, P_INVALID, nflags);
6368         } else {
6369                 /* There is room already in this leaf page. */
6370                 rc = mdb_node_add(mc, mc->mc_ki[mc->mc_top], key, rdata, 0, nflags);
6371                 if (rc == 0 && insert_key) {
6372                         /* Adjust other cursors pointing to mp */
6373                         MDB_cursor *m2, *m3;
6374                         MDB_dbi dbi = mc->mc_dbi;
6375                         unsigned i = mc->mc_top;
6376                         MDB_page *mp = mc->mc_pg[i];
6377
6378                         for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
6379                                 if (mc->mc_flags & C_SUB)
6380                                         m3 = &m2->mc_xcursor->mx_cursor;
6381                                 else
6382                                         m3 = m2;
6383                                 if (m3 == mc || m3->mc_snum < mc->mc_snum) continue;
6384                                 if (m3->mc_pg[i] == mp && m3->mc_ki[i] >= mc->mc_ki[i]) {
6385                                         m3->mc_ki[i]++;
6386                                 }
6387                         }
6388                 }
6389         }
6390
6391         if (rc == MDB_SUCCESS) {
6392                 /* Now store the actual data in the child DB. Note that we're
6393                  * storing the user data in the keys field, so there are strict
6394                  * size limits on dupdata. The actual data fields of the child
6395                  * DB are all zero size.
6396                  */
6397                 if (do_sub) {
6398                         int xflags;
6399                         size_t ecount;
6400 put_sub:
6401                         xdata.mv_size = 0;
6402                         xdata.mv_data = "";
6403                         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
6404                         if (flags & MDB_CURRENT) {
6405                                 xflags = MDB_CURRENT|MDB_NOSPILL;
6406                         } else {
6407                                 mdb_xcursor_init1(mc, leaf);
6408                                 xflags = (flags & MDB_NODUPDATA) ?
6409                                         MDB_NOOVERWRITE|MDB_NOSPILL : MDB_NOSPILL;
6410                         }
6411                         /* converted, write the original data first */
6412                         if (dkey.mv_size) {
6413                                 rc = mdb_cursor_put(&mc->mc_xcursor->mx_cursor, &dkey, &xdata, xflags);
6414                                 if (rc)
6415                                         goto bad_sub;
6416                                 {
6417                                         /* Adjust other cursors pointing to mp */
6418                                         MDB_cursor *m2;
6419                                         unsigned i = mc->mc_top;
6420                                         MDB_page *mp = mc->mc_pg[i];
6421
6422                                         for (m2 = mc->mc_txn->mt_cursors[mc->mc_dbi]; m2; m2=m2->mc_next) {
6423                                                 if (m2 == mc || m2->mc_snum < mc->mc_snum) continue;
6424                                                 if (!(m2->mc_flags & C_INITIALIZED)) continue;
6425                                                 if (m2->mc_pg[i] == mp && m2->mc_ki[i] == mc->mc_ki[i]) {
6426                                                         mdb_xcursor_init1(m2, leaf);
6427                                                 }
6428                                         }
6429                                 }
6430                                 /* we've done our job */
6431                                 dkey.mv_size = 0;
6432                         }
6433                         ecount = mc->mc_xcursor->mx_db.md_entries;
6434                         if (flags & MDB_APPENDDUP)
6435                                 xflags |= MDB_APPEND;
6436                         rc = mdb_cursor_put(&mc->mc_xcursor->mx_cursor, data, &xdata, xflags);
6437                         if (flags & F_SUBDATA) {
6438                                 void *db = NODEDATA(leaf);
6439                                 memcpy(db, &mc->mc_xcursor->mx_db, sizeof(MDB_db));
6440                         }
6441                         insert_data = mc->mc_xcursor->mx_db.md_entries - ecount;
6442                 }
6443                 /* Increment count unless we just replaced an existing item. */
6444                 if (insert_data)
6445                         mc->mc_db->md_entries++;
6446                 if (insert_key) {
6447                         /* Invalidate txn if we created an empty sub-DB */
6448                         if (rc)
6449                                 goto bad_sub;
6450                         /* If we succeeded and the key didn't exist before,
6451                          * make sure the cursor is marked valid.
6452                          */
6453                         mc->mc_flags |= C_INITIALIZED;
6454                 }
6455                 if (flags & MDB_MULTIPLE) {
6456                         if (!rc) {
6457                                 mcount++;
6458                                 /* let caller know how many succeeded, if any */
6459                                 data[1].mv_size = mcount;
6460                                 if (mcount < dcount) {
6461                                         data[0].mv_data = (char *)data[0].mv_data + data[0].mv_size;
6462                                         insert_key = insert_data = 0;
6463                                         goto more;
6464                                 }
6465                         }
6466                 }
6467                 return rc;
6468 bad_sub:
6469                 if (rc == MDB_KEYEXIST) /* should not happen, we deleted that item */
6470                         rc = MDB_CORRUPTED;
6471         }
6472         mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
6473         return rc;
6474 }
6475
6476 int
6477 mdb_cursor_del(MDB_cursor *mc, unsigned int flags)
6478 {
6479         MDB_node        *leaf;
6480         MDB_page        *mp;
6481         int rc;
6482
6483         if (mc->mc_txn->mt_flags & (MDB_TXN_RDONLY|MDB_TXN_ERROR))
6484                 return (mc->mc_txn->mt_flags & MDB_TXN_RDONLY) ? EACCES : MDB_BAD_TXN;
6485
6486         if (!(mc->mc_flags & C_INITIALIZED))
6487                 return EINVAL;
6488
6489         if (mc->mc_ki[mc->mc_top] >= NUMKEYS(mc->mc_pg[mc->mc_top]))
6490                 return MDB_NOTFOUND;
6491
6492         if (!(flags & MDB_NOSPILL) && (rc = mdb_page_spill(mc, NULL, NULL)))
6493                 return rc;
6494
6495         rc = mdb_cursor_touch(mc);
6496         if (rc)
6497                 return rc;
6498
6499         mp = mc->mc_pg[mc->mc_top];
6500         if (IS_LEAF2(mp))
6501                 goto del_key;
6502         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
6503
6504         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
6505                 if (flags & MDB_NODUPDATA) {
6506                         /* mdb_cursor_del0() will subtract the final entry */
6507                         mc->mc_db->md_entries -= mc->mc_xcursor->mx_db.md_entries - 1;
6508                 } else {
6509                         if (!F_ISSET(leaf->mn_flags, F_SUBDATA)) {
6510                                 mc->mc_xcursor->mx_cursor.mc_pg[0] = NODEDATA(leaf);
6511                         }
6512                         rc = mdb_cursor_del(&mc->mc_xcursor->mx_cursor, MDB_NOSPILL);
6513                         if (rc)
6514                                 return rc;
6515                         /* If sub-DB still has entries, we're done */
6516                         if (mc->mc_xcursor->mx_db.md_entries) {
6517                                 if (leaf->mn_flags & F_SUBDATA) {
6518                                         /* update subDB info */
6519                                         void *db = NODEDATA(leaf);
6520                                         memcpy(db, &mc->mc_xcursor->mx_db, sizeof(MDB_db));
6521                                 } else {
6522                                         MDB_cursor *m2;
6523                                         /* shrink fake page */
6524                                         mdb_node_shrink(mp, mc->mc_ki[mc->mc_top]);
6525                                         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
6526                                         mc->mc_xcursor->mx_cursor.mc_pg[0] = NODEDATA(leaf);
6527                                         /* fix other sub-DB cursors pointed at this fake page */
6528                                         for (m2 = mc->mc_txn->mt_cursors[mc->mc_dbi]; m2; m2=m2->mc_next) {
6529                                                 if (m2 == mc || m2->mc_snum < mc->mc_snum) continue;
6530                                                 if (m2->mc_pg[mc->mc_top] == mp &&
6531                                                         m2->mc_ki[mc->mc_top] == mc->mc_ki[mc->mc_top])
6532                                                         m2->mc_xcursor->mx_cursor.mc_pg[0] = NODEDATA(leaf);
6533                                         }
6534                                 }
6535                                 mc->mc_db->md_entries--;
6536                                 mc->mc_flags |= C_DEL;
6537                                 return rc;
6538                         }
6539                         /* otherwise fall thru and delete the sub-DB */
6540                 }
6541
6542                 if (leaf->mn_flags & F_SUBDATA) {
6543                         /* add all the child DB's pages to the free list */
6544                         rc = mdb_drop0(&mc->mc_xcursor->mx_cursor, 0);
6545                         if (rc)
6546                                 goto fail;
6547                 }
6548         }
6549
6550         /* add overflow pages to free list */
6551         if (F_ISSET(leaf->mn_flags, F_BIGDATA)) {
6552                 MDB_page *omp;
6553                 pgno_t pg;
6554
6555                 memcpy(&pg, NODEDATA(leaf), sizeof(pg));
6556                 if ((rc = mdb_page_get(mc->mc_txn, pg, &omp, NULL)) ||
6557                         (rc = mdb_ovpage_free(mc, omp)))
6558                         goto fail;
6559         }
6560
6561 del_key:
6562         return mdb_cursor_del0(mc);
6563
6564 fail:
6565         mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
6566         return rc;
6567 }
6568
6569 /** Allocate and initialize new pages for a database.
6570  * @param[in] mc a cursor on the database being added to.
6571  * @param[in] flags flags defining what type of page is being allocated.
6572  * @param[in] num the number of pages to allocate. This is usually 1,
6573  * unless allocating overflow pages for a large record.
6574  * @param[out] mp Address of a page, or NULL on failure.
6575  * @return 0 on success, non-zero on failure.
6576  */
6577 static int
6578 mdb_page_new(MDB_cursor *mc, uint32_t flags, int num, MDB_page **mp)
6579 {
6580         MDB_page        *np;
6581         int rc;
6582
6583         if ((rc = mdb_page_alloc(mc, num, &np)))
6584                 return rc;
6585         DPRINTF(("allocated new mpage %"Z"u, page size %u",
6586             np->mp_pgno, mc->mc_txn->mt_env->me_psize));
6587         np->mp_flags = flags | P_DIRTY;
6588         np->mp_lower = (PAGEHDRSZ-PAGEBASE);
6589         np->mp_upper = mc->mc_txn->mt_env->me_psize - PAGEBASE;
6590
6591         if (IS_BRANCH(np))
6592                 mc->mc_db->md_branch_pages++;
6593         else if (IS_LEAF(np))
6594                 mc->mc_db->md_leaf_pages++;
6595         else if (IS_OVERFLOW(np)) {
6596                 mc->mc_db->md_overflow_pages += num;
6597                 np->mp_pages = num;
6598         }
6599         *mp = np;
6600
6601         return 0;
6602 }
6603
6604 /** Calculate the size of a leaf node.
6605  * The size depends on the environment's page size; if a data item
6606  * is too large it will be put onto an overflow page and the node
6607  * size will only include the key and not the data. Sizes are always
6608  * rounded up to an even number of bytes, to guarantee 2-byte alignment
6609  * of the #MDB_node headers.
6610  * @param[in] env The environment handle.
6611  * @param[in] key The key for the node.
6612  * @param[in] data The data for the node.
6613  * @return The number of bytes needed to store the node.
6614  */
6615 static size_t
6616 mdb_leaf_size(MDB_env *env, MDB_val *key, MDB_val *data)
6617 {
6618         size_t           sz;
6619
6620         sz = LEAFSIZE(key, data);
6621         if (sz > env->me_nodemax) {
6622                 /* put on overflow page */
6623                 sz -= data->mv_size - sizeof(pgno_t);
6624         }
6625
6626         return EVEN(sz + sizeof(indx_t));
6627 }
6628
6629 /** Calculate the size of a branch node.
6630  * The size should depend on the environment's page size but since
6631  * we currently don't support spilling large keys onto overflow
6632  * pages, it's simply the size of the #MDB_node header plus the
6633  * size of the key. Sizes are always rounded up to an even number
6634  * of bytes, to guarantee 2-byte alignment of the #MDB_node headers.
6635  * @param[in] env The environment handle.
6636  * @param[in] key The key for the node.
6637  * @return The number of bytes needed to store the node.
6638  */
6639 static size_t
6640 mdb_branch_size(MDB_env *env, MDB_val *key)
6641 {
6642         size_t           sz;
6643
6644         sz = INDXSIZE(key);
6645         if (sz > env->me_nodemax) {
6646                 /* put on overflow page */
6647                 /* not implemented */
6648                 /* sz -= key->size - sizeof(pgno_t); */
6649         }
6650
6651         return sz + sizeof(indx_t);
6652 }
6653
6654 /** Add a node to the page pointed to by the cursor.
6655  * @param[in] mc The cursor for this operation.
6656  * @param[in] indx The index on the page where the new node should be added.
6657  * @param[in] key The key for the new node.
6658  * @param[in] data The data for the new node, if any.
6659  * @param[in] pgno The page number, if adding a branch node.
6660  * @param[in] flags Flags for the node.
6661  * @return 0 on success, non-zero on failure. Possible errors are:
6662  * <ul>
6663  *      <li>ENOMEM - failed to allocate overflow pages for the node.
6664  *      <li>MDB_PAGE_FULL - there is insufficient room in the page. This error
6665  *      should never happen since all callers already calculate the
6666  *      page's free space before calling this function.
6667  * </ul>
6668  */
6669 static int
6670 mdb_node_add(MDB_cursor *mc, indx_t indx,
6671     MDB_val *key, MDB_val *data, pgno_t pgno, unsigned int flags)
6672 {
6673         unsigned int     i;
6674         size_t           node_size = NODESIZE;
6675         ssize_t          room;
6676         indx_t           ofs;
6677         MDB_node        *node;
6678         MDB_page        *mp = mc->mc_pg[mc->mc_top];
6679         MDB_page        *ofp = NULL;            /* overflow page */
6680         DKBUF;
6681
6682         mdb_cassert(mc, mp->mp_upper >= mp->mp_lower);
6683
6684         DPRINTF(("add to %s %spage %"Z"u index %i, data size %"Z"u key size %"Z"u [%s]",
6685             IS_LEAF(mp) ? "leaf" : "branch",
6686                 IS_SUBP(mp) ? "sub-" : "",
6687                 mdb_dbg_pgno(mp), indx, data ? data->mv_size : 0,
6688                 key ? key->mv_size : 0, key ? DKEY(key) : "null"));
6689
6690         if (IS_LEAF2(mp)) {
6691                 /* Move higher keys up one slot. */
6692                 int ksize = mc->mc_db->md_pad, dif;
6693                 char *ptr = LEAF2KEY(mp, indx, ksize);
6694                 dif = NUMKEYS(mp) - indx;
6695                 if (dif > 0)
6696                         memmove(ptr+ksize, ptr, dif*ksize);
6697                 /* insert new key */
6698                 memcpy(ptr, key->mv_data, ksize);
6699
6700                 /* Just using these for counting */
6701                 mp->mp_lower += sizeof(indx_t);
6702                 mp->mp_upper -= ksize - sizeof(indx_t);
6703                 return MDB_SUCCESS;
6704         }
6705
6706         room = (ssize_t)SIZELEFT(mp) - (ssize_t)sizeof(indx_t);
6707         if (key != NULL)
6708                 node_size += key->mv_size;
6709         if (IS_LEAF(mp)) {
6710                 mdb_cassert(mc, data);
6711                 if (F_ISSET(flags, F_BIGDATA)) {
6712                         /* Data already on overflow page. */
6713                         node_size += sizeof(pgno_t);
6714                 } else if (node_size + data->mv_size > mc->mc_txn->mt_env->me_nodemax) {
6715                         int ovpages = OVPAGES(data->mv_size, mc->mc_txn->mt_env->me_psize);
6716                         int rc;
6717                         /* Put data on overflow page. */
6718                         DPRINTF(("data size is %"Z"u, node would be %"Z"u, put data on overflow page",
6719                             data->mv_size, node_size+data->mv_size));
6720                         node_size = EVEN(node_size + sizeof(pgno_t));
6721                         if ((ssize_t)node_size > room)
6722                                 goto full;
6723                         if ((rc = mdb_page_new(mc, P_OVERFLOW, ovpages, &ofp)))
6724                                 return rc;
6725                         DPRINTF(("allocated overflow page %"Z"u", ofp->mp_pgno));
6726                         flags |= F_BIGDATA;
6727                         goto update;
6728                 } else {
6729                         node_size += data->mv_size;
6730                 }
6731         }
6732         node_size = EVEN(node_size);
6733         if ((ssize_t)node_size > room)
6734                 goto full;
6735
6736 update:
6737         /* Move higher pointers up one slot. */
6738         for (i = NUMKEYS(mp); i > indx; i--)
6739                 mp->mp_ptrs[i] = mp->mp_ptrs[i - 1];
6740
6741         /* Adjust free space offsets. */
6742         ofs = mp->mp_upper - node_size;
6743         mdb_cassert(mc, ofs >= mp->mp_lower + sizeof(indx_t));
6744         mp->mp_ptrs[indx] = ofs;
6745         mp->mp_upper = ofs;
6746         mp->mp_lower += sizeof(indx_t);
6747
6748         /* Write the node data. */
6749         node = NODEPTR(mp, indx);
6750         node->mn_ksize = (key == NULL) ? 0 : key->mv_size;
6751         node->mn_flags = flags;
6752         if (IS_LEAF(mp))
6753                 SETDSZ(node,data->mv_size);
6754         else
6755                 SETPGNO(node,pgno);
6756
6757         if (key)
6758                 memcpy(NODEKEY(node), key->mv_data, key->mv_size);
6759
6760         if (IS_LEAF(mp)) {
6761                 mdb_cassert(mc, key);
6762                 if (ofp == NULL) {
6763                         if (F_ISSET(flags, F_BIGDATA))
6764                                 memcpy(node->mn_data + key->mv_size, data->mv_data,
6765                                     sizeof(pgno_t));
6766                         else if (F_ISSET(flags, MDB_RESERVE))
6767                                 data->mv_data = node->mn_data + key->mv_size;
6768                         else
6769                                 memcpy(node->mn_data + key->mv_size, data->mv_data,
6770                                     data->mv_size);
6771                 } else {
6772                         memcpy(node->mn_data + key->mv_size, &ofp->mp_pgno,
6773                             sizeof(pgno_t));
6774                         if (F_ISSET(flags, MDB_RESERVE))
6775                                 data->mv_data = METADATA(ofp);
6776                         else
6777                                 memcpy(METADATA(ofp), data->mv_data, data->mv_size);
6778                 }
6779         }
6780
6781         return MDB_SUCCESS;
6782
6783 full:
6784         DPRINTF(("not enough room in page %"Z"u, got %u ptrs",
6785                 mdb_dbg_pgno(mp), NUMKEYS(mp)));
6786         DPRINTF(("upper-lower = %u - %u = %"Z"d", mp->mp_upper,mp->mp_lower,room));
6787         DPRINTF(("node size = %"Z"u", node_size));
6788         mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
6789         return MDB_PAGE_FULL;
6790 }
6791
6792 /** Delete the specified node from a page.
6793  * @param[in] mc Cursor pointing to the node to delete.
6794  * @param[in] ksize The size of a node. Only used if the page is
6795  * part of a #MDB_DUPFIXED database.
6796  */
6797 static void
6798 mdb_node_del(MDB_cursor *mc, int ksize)
6799 {
6800         MDB_page *mp = mc->mc_pg[mc->mc_top];
6801         indx_t  indx = mc->mc_ki[mc->mc_top];
6802         unsigned int     sz;
6803         indx_t           i, j, numkeys, ptr;
6804         MDB_node        *node;
6805         char            *base;
6806
6807         DPRINTF(("delete node %u on %s page %"Z"u", indx,
6808             IS_LEAF(mp) ? "leaf" : "branch", mdb_dbg_pgno(mp)));
6809         numkeys = NUMKEYS(mp);
6810         mdb_cassert(mc, indx < numkeys);
6811
6812         if (IS_LEAF2(mp)) {
6813                 int x = numkeys - 1 - indx;
6814                 base = LEAF2KEY(mp, indx, ksize);
6815                 if (x)
6816                         memmove(base, base + ksize, x * ksize);
6817                 mp->mp_lower -= sizeof(indx_t);
6818                 mp->mp_upper += ksize - sizeof(indx_t);
6819                 return;
6820         }
6821
6822         node = NODEPTR(mp, indx);
6823         sz = NODESIZE + node->mn_ksize;
6824         if (IS_LEAF(mp)) {
6825                 if (F_ISSET(node->mn_flags, F_BIGDATA))
6826                         sz += sizeof(pgno_t);
6827                 else
6828                         sz += NODEDSZ(node);
6829         }
6830         sz = EVEN(sz);
6831
6832         ptr = mp->mp_ptrs[indx];
6833         for (i = j = 0; i < numkeys; i++) {
6834                 if (i != indx) {
6835                         mp->mp_ptrs[j] = mp->mp_ptrs[i];
6836                         if (mp->mp_ptrs[i] < ptr)
6837                                 mp->mp_ptrs[j] += sz;
6838                         j++;
6839                 }
6840         }
6841
6842         base = (char *)mp + mp->mp_upper + PAGEBASE;
6843         memmove(base + sz, base, ptr - mp->mp_upper);
6844
6845         mp->mp_lower -= sizeof(indx_t);
6846         mp->mp_upper += sz;
6847 }
6848
6849 /** Compact the main page after deleting a node on a subpage.
6850  * @param[in] mp The main page to operate on.
6851  * @param[in] indx The index of the subpage on the main page.
6852  */
6853 static void
6854 mdb_node_shrink(MDB_page *mp, indx_t indx)
6855 {
6856         MDB_node *node;
6857         MDB_page *sp, *xp;
6858         char *base;
6859         int nsize, delta;
6860         indx_t           i, numkeys, ptr;
6861
6862         node = NODEPTR(mp, indx);
6863         sp = (MDB_page *)NODEDATA(node);
6864         delta = SIZELEFT(sp);
6865         xp = (MDB_page *)((char *)sp + delta);
6866
6867         /* shift subpage upward */
6868         if (IS_LEAF2(sp)) {
6869                 nsize = NUMKEYS(sp) * sp->mp_pad;
6870                 if (nsize & 1)
6871                         return;         /* do not make the node uneven-sized */
6872                 memmove(METADATA(xp), METADATA(sp), nsize);
6873         } else {
6874                 int i;
6875                 numkeys = NUMKEYS(sp);
6876                 for (i=numkeys-1; i>=0; i--)
6877                         xp->mp_ptrs[i] = sp->mp_ptrs[i] - delta;
6878         }
6879         xp->mp_upper = sp->mp_lower;
6880         xp->mp_lower = sp->mp_lower;
6881         xp->mp_flags = sp->mp_flags;
6882         xp->mp_pad = sp->mp_pad;
6883         COPY_PGNO(xp->mp_pgno, mp->mp_pgno);
6884
6885         nsize = NODEDSZ(node) - delta;
6886         SETDSZ(node, nsize);
6887
6888         /* shift lower nodes upward */
6889         ptr = mp->mp_ptrs[indx];
6890         numkeys = NUMKEYS(mp);
6891         for (i = 0; i < numkeys; i++) {
6892                 if (mp->mp_ptrs[i] <= ptr)
6893                         mp->mp_ptrs[i] += delta;
6894         }
6895
6896         base = (char *)mp + mp->mp_upper + PAGEBASE;
6897         memmove(base + delta, base, ptr - mp->mp_upper + NODESIZE + NODEKSZ(node));
6898         mp->mp_upper += delta;
6899 }
6900
6901 /** Initial setup of a sorted-dups cursor.
6902  * Sorted duplicates are implemented as a sub-database for the given key.
6903  * The duplicate data items are actually keys of the sub-database.
6904  * Operations on the duplicate data items are performed using a sub-cursor
6905  * initialized when the sub-database is first accessed. This function does
6906  * the preliminary setup of the sub-cursor, filling in the fields that
6907  * depend only on the parent DB.
6908  * @param[in] mc The main cursor whose sorted-dups cursor is to be initialized.
6909  */
6910 static void
6911 mdb_xcursor_init0(MDB_cursor *mc)
6912 {
6913         MDB_xcursor *mx = mc->mc_xcursor;
6914
6915         mx->mx_cursor.mc_xcursor = NULL;
6916         mx->mx_cursor.mc_txn = mc->mc_txn;
6917         mx->mx_cursor.mc_db = &mx->mx_db;
6918         mx->mx_cursor.mc_dbx = &mx->mx_dbx;
6919         mx->mx_cursor.mc_dbi = mc->mc_dbi;
6920         mx->mx_cursor.mc_dbflag = &mx->mx_dbflag;
6921         mx->mx_cursor.mc_snum = 0;
6922         mx->mx_cursor.mc_top = 0;
6923         mx->mx_cursor.mc_flags = C_SUB;
6924         mx->mx_dbx.md_name.mv_size = 0;
6925         mx->mx_dbx.md_name.mv_data = NULL;
6926         mx->mx_dbx.md_cmp = mc->mc_dbx->md_dcmp;
6927         mx->mx_dbx.md_dcmp = NULL;
6928         mx->mx_dbx.md_rel = mc->mc_dbx->md_rel;
6929 }
6930
6931 /** Final setup of a sorted-dups cursor.
6932  *      Sets up the fields that depend on the data from the main cursor.
6933  * @param[in] mc The main cursor whose sorted-dups cursor is to be initialized.
6934  * @param[in] node The data containing the #MDB_db record for the
6935  * sorted-dup database.
6936  */
6937 static void
6938 mdb_xcursor_init1(MDB_cursor *mc, MDB_node *node)
6939 {
6940         MDB_xcursor *mx = mc->mc_xcursor;
6941
6942         if (node->mn_flags & F_SUBDATA) {
6943                 memcpy(&mx->mx_db, NODEDATA(node), sizeof(MDB_db));
6944                 mx->mx_cursor.mc_pg[0] = 0;
6945                 mx->mx_cursor.mc_snum = 0;
6946                 mx->mx_cursor.mc_top = 0;
6947                 mx->mx_cursor.mc_flags = C_SUB;
6948         } else {
6949                 MDB_page *fp = NODEDATA(node);
6950                 mx->mx_db.md_pad = mc->mc_pg[mc->mc_top]->mp_pad;
6951                 mx->mx_db.md_flags = 0;
6952                 mx->mx_db.md_depth = 1;
6953                 mx->mx_db.md_branch_pages = 0;
6954                 mx->mx_db.md_leaf_pages = 1;
6955                 mx->mx_db.md_overflow_pages = 0;
6956                 mx->mx_db.md_entries = NUMKEYS(fp);
6957                 COPY_PGNO(mx->mx_db.md_root, fp->mp_pgno);
6958                 mx->mx_cursor.mc_snum = 1;
6959                 mx->mx_cursor.mc_top = 0;
6960                 mx->mx_cursor.mc_flags = C_INITIALIZED|C_SUB;
6961                 mx->mx_cursor.mc_pg[0] = fp;
6962                 mx->mx_cursor.mc_ki[0] = 0;
6963                 if (mc->mc_db->md_flags & MDB_DUPFIXED) {
6964                         mx->mx_db.md_flags = MDB_DUPFIXED;
6965                         mx->mx_db.md_pad = fp->mp_pad;
6966                         if (mc->mc_db->md_flags & MDB_INTEGERDUP)
6967                                 mx->mx_db.md_flags |= MDB_INTEGERKEY;
6968                 }
6969         }
6970         DPRINTF(("Sub-db -%u root page %"Z"u", mx->mx_cursor.mc_dbi,
6971                 mx->mx_db.md_root));
6972         mx->mx_dbflag = DB_VALID|DB_DIRTY; /* DB_DIRTY guides mdb_cursor_touch */
6973 #if UINT_MAX < SIZE_MAX
6974         if (mx->mx_dbx.md_cmp == mdb_cmp_int && mx->mx_db.md_pad == sizeof(size_t))
6975                 mx->mx_dbx.md_cmp = mdb_cmp_clong;
6976 #endif
6977 }
6978
6979 /** Initialize a cursor for a given transaction and database. */
6980 static void
6981 mdb_cursor_init(MDB_cursor *mc, MDB_txn *txn, MDB_dbi dbi, MDB_xcursor *mx)
6982 {
6983         mc->mc_next = NULL;
6984         mc->mc_backup = NULL;
6985         mc->mc_dbi = dbi;
6986         mc->mc_txn = txn;
6987         mc->mc_db = &txn->mt_dbs[dbi];
6988         mc->mc_dbx = &txn->mt_dbxs[dbi];
6989         mc->mc_dbflag = &txn->mt_dbflags[dbi];
6990         mc->mc_snum = 0;
6991         mc->mc_top = 0;
6992         mc->mc_pg[0] = 0;
6993         mc->mc_flags = 0;
6994         if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT) {
6995                 mdb_tassert(txn, mx != NULL);
6996                 mc->mc_xcursor = mx;
6997                 mdb_xcursor_init0(mc);
6998         } else {
6999                 mc->mc_xcursor = NULL;
7000         }
7001         if (*mc->mc_dbflag & DB_STALE) {
7002                 mdb_page_search(mc, NULL, MDB_PS_ROOTONLY);
7003         }
7004 }
7005
7006 int
7007 mdb_cursor_open(MDB_txn *txn, MDB_dbi dbi, MDB_cursor **ret)
7008 {
7009         MDB_cursor      *mc;
7010         size_t size = sizeof(MDB_cursor);
7011
7012         if (!ret || !TXN_DBI_EXIST(txn, dbi))
7013                 return EINVAL;
7014
7015         if (txn->mt_flags & MDB_TXN_ERROR)
7016                 return MDB_BAD_TXN;
7017
7018         /* Allow read access to the freelist */
7019         if (!dbi && !F_ISSET(txn->mt_flags, MDB_TXN_RDONLY))
7020                 return EINVAL;
7021
7022         if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT)
7023                 size += sizeof(MDB_xcursor);
7024
7025         if ((mc = malloc(size)) != NULL) {
7026                 mdb_cursor_init(mc, txn, dbi, (MDB_xcursor *)(mc + 1));
7027                 if (txn->mt_cursors) {
7028                         mc->mc_next = txn->mt_cursors[dbi];
7029                         txn->mt_cursors[dbi] = mc;
7030                         mc->mc_flags |= C_UNTRACK;
7031                 }
7032         } else {
7033                 return ENOMEM;
7034         }
7035
7036         *ret = mc;
7037
7038         return MDB_SUCCESS;
7039 }
7040
7041 int
7042 mdb_cursor_renew(MDB_txn *txn, MDB_cursor *mc)
7043 {
7044         if (!mc || !TXN_DBI_EXIST(txn, mc->mc_dbi))
7045                 return EINVAL;
7046
7047         if ((mc->mc_flags & C_UNTRACK) || txn->mt_cursors)
7048                 return EINVAL;
7049
7050         if (txn->mt_flags & MDB_TXN_ERROR)
7051                 return MDB_BAD_TXN;
7052
7053         mdb_cursor_init(mc, txn, mc->mc_dbi, mc->mc_xcursor);
7054         return MDB_SUCCESS;
7055 }
7056
7057 /* Return the count of duplicate data items for the current key */
7058 int
7059 mdb_cursor_count(MDB_cursor *mc, size_t *countp)
7060 {
7061         MDB_node        *leaf;
7062
7063         if (mc == NULL || countp == NULL)
7064                 return EINVAL;
7065
7066         if (mc->mc_xcursor == NULL)
7067                 return MDB_INCOMPATIBLE;
7068
7069         if (mc->mc_txn->mt_flags & MDB_TXN_ERROR)
7070                 return MDB_BAD_TXN;
7071
7072         if (!(mc->mc_flags & C_INITIALIZED))
7073                 return EINVAL;
7074
7075         if (!mc->mc_snum || (mc->mc_flags & C_EOF))
7076                 return MDB_NOTFOUND;
7077
7078         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
7079         if (!F_ISSET(leaf->mn_flags, F_DUPDATA)) {
7080                 *countp = 1;
7081         } else {
7082                 if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED))
7083                         return EINVAL;
7084
7085                 *countp = mc->mc_xcursor->mx_db.md_entries;
7086         }
7087         return MDB_SUCCESS;
7088 }
7089
7090 void
7091 mdb_cursor_close(MDB_cursor *mc)
7092 {
7093         if (mc && !mc->mc_backup) {
7094                 /* remove from txn, if tracked */
7095                 if ((mc->mc_flags & C_UNTRACK) && mc->mc_txn->mt_cursors) {
7096                         MDB_cursor **prev = &mc->mc_txn->mt_cursors[mc->mc_dbi];
7097                         while (*prev && *prev != mc) prev = &(*prev)->mc_next;
7098                         if (*prev == mc)
7099                                 *prev = mc->mc_next;
7100                 }
7101                 free(mc);
7102         }
7103 }
7104
7105 MDB_txn *
7106 mdb_cursor_txn(MDB_cursor *mc)
7107 {
7108         if (!mc) return NULL;
7109         return mc->mc_txn;
7110 }
7111
7112 MDB_dbi
7113 mdb_cursor_dbi(MDB_cursor *mc)
7114 {
7115         return mc->mc_dbi;
7116 }
7117
7118 /** Replace the key for a branch node with a new key.
7119  * @param[in] mc Cursor pointing to the node to operate on.
7120  * @param[in] key The new key to use.
7121  * @return 0 on success, non-zero on failure.
7122  */
7123 static int
7124 mdb_update_key(MDB_cursor *mc, MDB_val *key)
7125 {
7126         MDB_page                *mp;
7127         MDB_node                *node;
7128         char                    *base;
7129         size_t                   len;
7130         int                              delta, ksize, oksize;
7131         indx_t                   ptr, i, numkeys, indx;
7132         DKBUF;
7133
7134         indx = mc->mc_ki[mc->mc_top];
7135         mp = mc->mc_pg[mc->mc_top];
7136         node = NODEPTR(mp, indx);
7137         ptr = mp->mp_ptrs[indx];
7138 #if MDB_DEBUG
7139         {
7140                 MDB_val k2;
7141                 char kbuf2[DKBUF_MAXKEYSIZE*2+1];
7142                 k2.mv_data = NODEKEY(node);
7143                 k2.mv_size = node->mn_ksize;
7144                 DPRINTF(("update key %u (ofs %u) [%s] to [%s] on page %"Z"u",
7145                         indx, ptr,
7146                         mdb_dkey(&k2, kbuf2),
7147                         DKEY(key),
7148                         mp->mp_pgno));
7149         }
7150 #endif
7151
7152         /* Sizes must be 2-byte aligned. */
7153         ksize = EVEN(key->mv_size);
7154         oksize = EVEN(node->mn_ksize);
7155         delta = ksize - oksize;
7156
7157         /* Shift node contents if EVEN(key length) changed. */
7158         if (delta) {
7159                 if (delta > 0 && SIZELEFT(mp) < delta) {
7160                         pgno_t pgno;
7161                         /* not enough space left, do a delete and split */
7162                         DPRINTF(("Not enough room, delta = %d, splitting...", delta));
7163                         pgno = NODEPGNO(node);
7164                         mdb_node_del(mc, 0);
7165                         return mdb_page_split(mc, key, NULL, pgno, MDB_SPLIT_REPLACE);
7166                 }
7167
7168                 numkeys = NUMKEYS(mp);
7169                 for (i = 0; i < numkeys; i++) {
7170                         if (mp->mp_ptrs[i] <= ptr)
7171                                 mp->mp_ptrs[i] -= delta;
7172                 }
7173
7174                 base = (char *)mp + mp->mp_upper + PAGEBASE;
7175                 len = ptr - mp->mp_upper + NODESIZE;
7176                 memmove(base - delta, base, len);
7177                 mp->mp_upper -= delta;
7178
7179                 node = NODEPTR(mp, indx);
7180         }
7181
7182         /* But even if no shift was needed, update ksize */
7183         if (node->mn_ksize != key->mv_size)
7184                 node->mn_ksize = key->mv_size;
7185
7186         if (key->mv_size)
7187                 memcpy(NODEKEY(node), key->mv_data, key->mv_size);
7188
7189         return MDB_SUCCESS;
7190 }
7191
7192 static void
7193 mdb_cursor_copy(const MDB_cursor *csrc, MDB_cursor *cdst);
7194
7195 /** Move a node from csrc to cdst.
7196  */
7197 static int
7198 mdb_node_move(MDB_cursor *csrc, MDB_cursor *cdst)
7199 {
7200         MDB_node                *srcnode;
7201         MDB_val          key, data;
7202         pgno_t  srcpg;
7203         MDB_cursor mn;
7204         int                      rc;
7205         unsigned short flags;
7206
7207         DKBUF;
7208
7209         /* Mark src and dst as dirty. */
7210         if ((rc = mdb_page_touch(csrc)) ||
7211             (rc = mdb_page_touch(cdst)))
7212                 return rc;
7213
7214         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
7215                 key.mv_size = csrc->mc_db->md_pad;
7216                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], csrc->mc_ki[csrc->mc_top], key.mv_size);
7217                 data.mv_size = 0;
7218                 data.mv_data = NULL;
7219                 srcpg = 0;
7220                 flags = 0;
7221         } else {
7222                 srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], csrc->mc_ki[csrc->mc_top]);
7223                 mdb_cassert(csrc, !((size_t)srcnode & 1));
7224                 srcpg = NODEPGNO(srcnode);
7225                 flags = srcnode->mn_flags;
7226                 if (csrc->mc_ki[csrc->mc_top] == 0 && IS_BRANCH(csrc->mc_pg[csrc->mc_top])) {
7227                         unsigned int snum = csrc->mc_snum;
7228                         MDB_node *s2;
7229                         /* must find the lowest key below src */
7230                         rc = mdb_page_search_lowest(csrc);
7231                         if (rc)
7232                                 return rc;
7233                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
7234                                 key.mv_size = csrc->mc_db->md_pad;
7235                                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], 0, key.mv_size);
7236                         } else {
7237                                 s2 = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);
7238                                 key.mv_size = NODEKSZ(s2);
7239                                 key.mv_data = NODEKEY(s2);
7240                         }
7241                         csrc->mc_snum = snum--;
7242                         csrc->mc_top = snum;
7243                 } else {
7244                         key.mv_size = NODEKSZ(srcnode);
7245                         key.mv_data = NODEKEY(srcnode);
7246                 }
7247                 data.mv_size = NODEDSZ(srcnode);
7248                 data.mv_data = NODEDATA(srcnode);
7249         }
7250         if (IS_BRANCH(cdst->mc_pg[cdst->mc_top]) && cdst->mc_ki[cdst->mc_top] == 0) {
7251                 unsigned int snum = cdst->mc_snum;
7252                 MDB_node *s2;
7253                 MDB_val bkey;
7254                 /* must find the lowest key below dst */
7255                 mdb_cursor_copy(cdst, &mn);
7256                 rc = mdb_page_search_lowest(&mn);
7257                 if (rc)
7258                         return rc;
7259                 if (IS_LEAF2(mn.mc_pg[mn.mc_top])) {
7260                         bkey.mv_size = mn.mc_db->md_pad;
7261                         bkey.mv_data = LEAF2KEY(mn.mc_pg[mn.mc_top], 0, bkey.mv_size);
7262                 } else {
7263                         s2 = NODEPTR(mn.mc_pg[mn.mc_top], 0);
7264                         bkey.mv_size = NODEKSZ(s2);
7265                         bkey.mv_data = NODEKEY(s2);
7266                 }
7267                 mn.mc_snum = snum--;
7268                 mn.mc_top = snum;
7269                 mn.mc_ki[snum] = 0;
7270                 rc = mdb_update_key(&mn, &bkey);
7271                 if (rc)
7272                         return rc;
7273         }
7274
7275         DPRINTF(("moving %s node %u [%s] on page %"Z"u to node %u on page %"Z"u",
7276             IS_LEAF(csrc->mc_pg[csrc->mc_top]) ? "leaf" : "branch",
7277             csrc->mc_ki[csrc->mc_top],
7278                 DKEY(&key),
7279             csrc->mc_pg[csrc->mc_top]->mp_pgno,
7280             cdst->mc_ki[cdst->mc_top], cdst->mc_pg[cdst->mc_top]->mp_pgno));
7281
7282         /* Add the node to the destination page.
7283          */
7284         rc = mdb_node_add(cdst, cdst->mc_ki[cdst->mc_top], &key, &data, srcpg, flags);
7285         if (rc != MDB_SUCCESS)
7286                 return rc;
7287
7288         /* Delete the node from the source page.
7289          */
7290         mdb_node_del(csrc, key.mv_size);
7291
7292         {
7293                 /* Adjust other cursors pointing to mp */
7294                 MDB_cursor *m2, *m3;
7295                 MDB_dbi dbi = csrc->mc_dbi;
7296                 MDB_page *mp = csrc->mc_pg[csrc->mc_top];
7297
7298                 for (m2 = csrc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
7299                         if (csrc->mc_flags & C_SUB)
7300                                 m3 = &m2->mc_xcursor->mx_cursor;
7301                         else
7302                                 m3 = m2;
7303                         if (m3 == csrc) continue;
7304                         if (m3->mc_pg[csrc->mc_top] == mp && m3->mc_ki[csrc->mc_top] ==
7305                                 csrc->mc_ki[csrc->mc_top]) {
7306                                 m3->mc_pg[csrc->mc_top] = cdst->mc_pg[cdst->mc_top];
7307                                 m3->mc_ki[csrc->mc_top] = cdst->mc_ki[cdst->mc_top];
7308                         }
7309                 }
7310         }
7311
7312         /* Update the parent separators.
7313          */
7314         if (csrc->mc_ki[csrc->mc_top] == 0) {
7315                 if (csrc->mc_ki[csrc->mc_top-1] != 0) {
7316                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
7317                                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], 0, key.mv_size);
7318                         } else {
7319                                 srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);
7320                                 key.mv_size = NODEKSZ(srcnode);
7321                                 key.mv_data = NODEKEY(srcnode);
7322                         }
7323                         DPRINTF(("update separator for source page %"Z"u to [%s]",
7324                                 csrc->mc_pg[csrc->mc_top]->mp_pgno, DKEY(&key)));
7325                         mdb_cursor_copy(csrc, &mn);
7326                         mn.mc_snum--;
7327                         mn.mc_top--;
7328                         if ((rc = mdb_update_key(&mn, &key)) != MDB_SUCCESS)
7329                                 return rc;
7330                 }
7331                 if (IS_BRANCH(csrc->mc_pg[csrc->mc_top])) {
7332                         MDB_val  nullkey;
7333                         indx_t  ix = csrc->mc_ki[csrc->mc_top];
7334                         nullkey.mv_size = 0;
7335                         csrc->mc_ki[csrc->mc_top] = 0;
7336                         rc = mdb_update_key(csrc, &nullkey);
7337                         csrc->mc_ki[csrc->mc_top] = ix;
7338                         mdb_cassert(csrc, rc == MDB_SUCCESS);
7339                 }
7340         }
7341
7342         if (cdst->mc_ki[cdst->mc_top] == 0) {
7343                 if (cdst->mc_ki[cdst->mc_top-1] != 0) {
7344                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
7345                                 key.mv_data = LEAF2KEY(cdst->mc_pg[cdst->mc_top], 0, key.mv_size);
7346                         } else {
7347                                 srcnode = NODEPTR(cdst->mc_pg[cdst->mc_top], 0);
7348                                 key.mv_size = NODEKSZ(srcnode);
7349                                 key.mv_data = NODEKEY(srcnode);
7350                         }
7351                         DPRINTF(("update separator for destination page %"Z"u to [%s]",
7352                                 cdst->mc_pg[cdst->mc_top]->mp_pgno, DKEY(&key)));
7353                         mdb_cursor_copy(cdst, &mn);
7354                         mn.mc_snum--;
7355                         mn.mc_top--;
7356                         if ((rc = mdb_update_key(&mn, &key)) != MDB_SUCCESS)
7357                                 return rc;
7358                 }
7359                 if (IS_BRANCH(cdst->mc_pg[cdst->mc_top])) {
7360                         MDB_val  nullkey;
7361                         indx_t  ix = cdst->mc_ki[cdst->mc_top];
7362                         nullkey.mv_size = 0;
7363                         cdst->mc_ki[cdst->mc_top] = 0;
7364                         rc = mdb_update_key(cdst, &nullkey);
7365                         cdst->mc_ki[cdst->mc_top] = ix;
7366                         mdb_cassert(csrc, rc == MDB_SUCCESS);
7367                 }
7368         }
7369
7370         return MDB_SUCCESS;
7371 }
7372
7373 /** Merge one page into another.
7374  *  The nodes from the page pointed to by \b csrc will
7375  *      be copied to the page pointed to by \b cdst and then
7376  *      the \b csrc page will be freed.
7377  * @param[in] csrc Cursor pointing to the source page.
7378  * @param[in] cdst Cursor pointing to the destination page.
7379  * @return 0 on success, non-zero on failure.
7380  */
7381 static int
7382 mdb_page_merge(MDB_cursor *csrc, MDB_cursor *cdst)
7383 {
7384         MDB_page        *psrc, *pdst;
7385         MDB_node        *srcnode;
7386         MDB_val          key, data;
7387         unsigned         nkeys;
7388         int                      rc;
7389         indx_t           i, j;
7390
7391         psrc = csrc->mc_pg[csrc->mc_top];
7392         pdst = cdst->mc_pg[cdst->mc_top];
7393
7394         DPRINTF(("merging page %"Z"u into %"Z"u", psrc->mp_pgno, pdst->mp_pgno));
7395
7396         mdb_cassert(csrc, csrc->mc_snum > 1);   /* can't merge root page */
7397         mdb_cassert(csrc, cdst->mc_snum > 1);
7398
7399         /* Mark dst as dirty. */
7400         if ((rc = mdb_page_touch(cdst)))
7401                 return rc;
7402
7403         /* Move all nodes from src to dst.
7404          */
7405         j = nkeys = NUMKEYS(pdst);
7406         if (IS_LEAF2(psrc)) {
7407                 key.mv_size = csrc->mc_db->md_pad;
7408                 key.mv_data = METADATA(psrc);
7409                 for (i = 0; i < NUMKEYS(psrc); i++, j++) {
7410                         rc = mdb_node_add(cdst, j, &key, NULL, 0, 0);
7411                         if (rc != MDB_SUCCESS)
7412                                 return rc;
7413                         key.mv_data = (char *)key.mv_data + key.mv_size;
7414                 }
7415         } else {
7416                 for (i = 0; i < NUMKEYS(psrc); i++, j++) {
7417                         srcnode = NODEPTR(psrc, i);
7418                         if (i == 0 && IS_BRANCH(psrc)) {
7419                                 MDB_cursor mn;
7420                                 MDB_node *s2;
7421                                 mdb_cursor_copy(csrc, &mn);
7422                                 /* must find the lowest key below src */
7423                                 rc = mdb_page_search_lowest(&mn);
7424                                 if (rc)
7425                                         return rc;
7426                                 if (IS_LEAF2(mn.mc_pg[mn.mc_top])) {
7427                                         key.mv_size = mn.mc_db->md_pad;
7428                                         key.mv_data = LEAF2KEY(mn.mc_pg[mn.mc_top], 0, key.mv_size);
7429                                 } else {
7430                                         s2 = NODEPTR(mn.mc_pg[mn.mc_top], 0);
7431                                         key.mv_size = NODEKSZ(s2);
7432                                         key.mv_data = NODEKEY(s2);
7433                                 }
7434                         } else {
7435                                 key.mv_size = srcnode->mn_ksize;
7436                                 key.mv_data = NODEKEY(srcnode);
7437                         }
7438
7439                         data.mv_size = NODEDSZ(srcnode);
7440                         data.mv_data = NODEDATA(srcnode);
7441                         rc = mdb_node_add(cdst, j, &key, &data, NODEPGNO(srcnode), srcnode->mn_flags);
7442                         if (rc != MDB_SUCCESS)
7443                                 return rc;
7444                 }
7445         }
7446
7447         DPRINTF(("dst page %"Z"u now has %u keys (%.1f%% filled)",
7448             pdst->mp_pgno, NUMKEYS(pdst),
7449                 (float)PAGEFILL(cdst->mc_txn->mt_env, pdst) / 10));
7450
7451         /* Unlink the src page from parent and add to free list.
7452          */
7453         csrc->mc_top--;
7454         mdb_node_del(csrc, 0);
7455         if (csrc->mc_ki[csrc->mc_top] == 0) {
7456                 key.mv_size = 0;
7457                 rc = mdb_update_key(csrc, &key);
7458                 if (rc) {
7459                         csrc->mc_top++;
7460                         return rc;
7461                 }
7462         }
7463         csrc->mc_top++;
7464
7465         psrc = csrc->mc_pg[csrc->mc_top];
7466         /* If not operating on FreeDB, allow this page to be reused
7467          * in this txn. Otherwise just add to free list.
7468          */
7469         rc = mdb_page_loose(csrc, psrc);
7470         if (rc)
7471                 return rc;
7472         if (IS_LEAF(psrc))
7473                 csrc->mc_db->md_leaf_pages--;
7474         else
7475                 csrc->mc_db->md_branch_pages--;
7476         {
7477                 /* Adjust other cursors pointing to mp */
7478                 MDB_cursor *m2, *m3;
7479                 MDB_dbi dbi = csrc->mc_dbi;
7480
7481                 for (m2 = csrc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
7482                         if (csrc->mc_flags & C_SUB)
7483                                 m3 = &m2->mc_xcursor->mx_cursor;
7484                         else
7485                                 m3 = m2;
7486                         if (m3 == csrc) continue;
7487                         if (m3->mc_snum < csrc->mc_snum) continue;
7488                         if (m3->mc_pg[csrc->mc_top] == psrc) {
7489                                 m3->mc_pg[csrc->mc_top] = pdst;
7490                                 m3->mc_ki[csrc->mc_top] += nkeys;
7491                         }
7492                 }
7493         }
7494         {
7495                 unsigned int snum = cdst->mc_snum;
7496                 uint16_t depth = cdst->mc_db->md_depth;
7497                 mdb_cursor_pop(cdst);
7498                 rc = mdb_rebalance(cdst);
7499                 /* Did the tree shrink? */
7500                 if (depth > cdst->mc_db->md_depth)
7501                         snum--;
7502                 cdst->mc_snum = snum;
7503                 cdst->mc_top = snum-1;
7504         }
7505         return rc;
7506 }
7507
7508 /** Copy the contents of a cursor.
7509  * @param[in] csrc The cursor to copy from.
7510  * @param[out] cdst The cursor to copy to.
7511  */
7512 static void
7513 mdb_cursor_copy(const MDB_cursor *csrc, MDB_cursor *cdst)
7514 {
7515         unsigned int i;
7516
7517         cdst->mc_txn = csrc->mc_txn;
7518         cdst->mc_dbi = csrc->mc_dbi;
7519         cdst->mc_db  = csrc->mc_db;
7520         cdst->mc_dbx = csrc->mc_dbx;
7521         cdst->mc_snum = csrc->mc_snum;
7522         cdst->mc_top = csrc->mc_top;
7523         cdst->mc_flags = csrc->mc_flags;
7524
7525         for (i=0; i<csrc->mc_snum; i++) {
7526                 cdst->mc_pg[i] = csrc->mc_pg[i];
7527                 cdst->mc_ki[i] = csrc->mc_ki[i];
7528         }
7529 }
7530
7531 /** Rebalance the tree after a delete operation.
7532  * @param[in] mc Cursor pointing to the page where rebalancing
7533  * should begin.
7534  * @return 0 on success, non-zero on failure.
7535  */
7536 static int
7537 mdb_rebalance(MDB_cursor *mc)
7538 {
7539         MDB_node        *node;
7540         int rc;
7541         unsigned int ptop, minkeys;
7542         MDB_cursor      mn;
7543         indx_t oldki;
7544
7545         minkeys = 1 + (IS_BRANCH(mc->mc_pg[mc->mc_top]));
7546         DPRINTF(("rebalancing %s page %"Z"u (has %u keys, %.1f%% full)",
7547             IS_LEAF(mc->mc_pg[mc->mc_top]) ? "leaf" : "branch",
7548             mdb_dbg_pgno(mc->mc_pg[mc->mc_top]), NUMKEYS(mc->mc_pg[mc->mc_top]),
7549                 (float)PAGEFILL(mc->mc_txn->mt_env, mc->mc_pg[mc->mc_top]) / 10));
7550
7551         if (PAGEFILL(mc->mc_txn->mt_env, mc->mc_pg[mc->mc_top]) >= FILL_THRESHOLD &&
7552                 NUMKEYS(mc->mc_pg[mc->mc_top]) >= minkeys) {
7553                 DPRINTF(("no need to rebalance page %"Z"u, above fill threshold",
7554                     mdb_dbg_pgno(mc->mc_pg[mc->mc_top])));
7555                 return MDB_SUCCESS;
7556         }
7557
7558         if (mc->mc_snum < 2) {
7559                 MDB_page *mp = mc->mc_pg[0];
7560                 if (IS_SUBP(mp)) {
7561                         DPUTS("Can't rebalance a subpage, ignoring");
7562                         return MDB_SUCCESS;
7563                 }
7564                 if (NUMKEYS(mp) == 0) {
7565                         DPUTS("tree is completely empty");
7566                         mc->mc_db->md_root = P_INVALID;
7567                         mc->mc_db->md_depth = 0;
7568                         mc->mc_db->md_leaf_pages = 0;
7569                         rc = mdb_midl_append(&mc->mc_txn->mt_free_pgs, mp->mp_pgno);
7570                         if (rc)
7571                                 return rc;
7572                         /* Adjust cursors pointing to mp */
7573                         mc->mc_snum = 0;
7574                         mc->mc_top = 0;
7575                         mc->mc_flags &= ~C_INITIALIZED;
7576                         {
7577                                 MDB_cursor *m2, *m3;
7578                                 MDB_dbi dbi = mc->mc_dbi;
7579
7580                                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
7581                                         if (mc->mc_flags & C_SUB)
7582                                                 m3 = &m2->mc_xcursor->mx_cursor;
7583                                         else
7584                                                 m3 = m2;
7585                                         if (m3->mc_snum < mc->mc_snum) continue;
7586                                         if (m3->mc_pg[0] == mp) {
7587                                                 m3->mc_snum = 0;
7588                                                 m3->mc_top = 0;
7589                                                 m3->mc_flags &= ~C_INITIALIZED;
7590                                         }
7591                                 }
7592                         }
7593                 } else if (IS_BRANCH(mp) && NUMKEYS(mp) == 1) {
7594                         int i;
7595                         DPUTS("collapsing root page!");
7596                         rc = mdb_midl_append(&mc->mc_txn->mt_free_pgs, mp->mp_pgno);
7597                         if (rc)
7598                                 return rc;
7599                         mc->mc_db->md_root = NODEPGNO(NODEPTR(mp, 0));
7600                         rc = mdb_page_get(mc->mc_txn,mc->mc_db->md_root,&mc->mc_pg[0],NULL);
7601                         if (rc)
7602                                 return rc;
7603                         mc->mc_db->md_depth--;
7604                         mc->mc_db->md_branch_pages--;
7605                         mc->mc_ki[0] = mc->mc_ki[1];
7606                         for (i = 1; i<mc->mc_db->md_depth; i++) {
7607                                 mc->mc_pg[i] = mc->mc_pg[i+1];
7608                                 mc->mc_ki[i] = mc->mc_ki[i+1];
7609                         }
7610                         {
7611                                 /* Adjust other cursors pointing to mp */
7612                                 MDB_cursor *m2, *m3;
7613                                 MDB_dbi dbi = mc->mc_dbi;
7614
7615                                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
7616                                         if (mc->mc_flags & C_SUB)
7617                                                 m3 = &m2->mc_xcursor->mx_cursor;
7618                                         else
7619                                                 m3 = m2;
7620                                         if (m3 == mc || m3->mc_snum < mc->mc_snum) continue;
7621                                         if (m3->mc_pg[0] == mp) {
7622                                                 m3->mc_snum--;
7623                                                 m3->mc_top--;
7624                                                 for (i=0; i<m3->mc_snum; i++) {
7625                                                         m3->mc_pg[i] = m3->mc_pg[i+1];
7626                                                         m3->mc_ki[i] = m3->mc_ki[i+1];
7627                                                 }
7628                                         }
7629                                 }
7630                         }
7631                 } else
7632                         DPUTS("root page doesn't need rebalancing");
7633                 return MDB_SUCCESS;
7634         }
7635
7636         /* The parent (branch page) must have at least 2 pointers,
7637          * otherwise the tree is invalid.
7638          */
7639         ptop = mc->mc_top-1;
7640         mdb_cassert(mc, NUMKEYS(mc->mc_pg[ptop]) > 1);
7641
7642         /* Leaf page fill factor is below the threshold.
7643          * Try to move keys from left or right neighbor, or
7644          * merge with a neighbor page.
7645          */
7646
7647         /* Find neighbors.
7648          */
7649         mdb_cursor_copy(mc, &mn);
7650         mn.mc_xcursor = NULL;
7651
7652         oldki = mc->mc_ki[mc->mc_top];
7653         if (mc->mc_ki[ptop] == 0) {
7654                 /* We're the leftmost leaf in our parent.
7655                  */
7656                 DPUTS("reading right neighbor");
7657                 mn.mc_ki[ptop]++;
7658                 node = NODEPTR(mc->mc_pg[ptop], mn.mc_ki[ptop]);
7659                 rc = mdb_page_get(mc->mc_txn,NODEPGNO(node),&mn.mc_pg[mn.mc_top],NULL);
7660                 if (rc)
7661                         return rc;
7662                 mn.mc_ki[mn.mc_top] = 0;
7663                 mc->mc_ki[mc->mc_top] = NUMKEYS(mc->mc_pg[mc->mc_top]);
7664         } else {
7665                 /* There is at least one neighbor to the left.
7666                  */
7667                 DPUTS("reading left neighbor");
7668                 mn.mc_ki[ptop]--;
7669                 node = NODEPTR(mc->mc_pg[ptop], mn.mc_ki[ptop]);
7670                 rc = mdb_page_get(mc->mc_txn,NODEPGNO(node),&mn.mc_pg[mn.mc_top],NULL);
7671                 if (rc)
7672                         return rc;
7673                 mn.mc_ki[mn.mc_top] = NUMKEYS(mn.mc_pg[mn.mc_top]) - 1;
7674                 mc->mc_ki[mc->mc_top] = 0;
7675         }
7676
7677         DPRINTF(("found neighbor page %"Z"u (%u keys, %.1f%% full)",
7678             mn.mc_pg[mn.mc_top]->mp_pgno, NUMKEYS(mn.mc_pg[mn.mc_top]),
7679                 (float)PAGEFILL(mc->mc_txn->mt_env, mn.mc_pg[mn.mc_top]) / 10));
7680
7681         /* If the neighbor page is above threshold and has enough keys,
7682          * move one key from it. Otherwise we should try to merge them.
7683          * (A branch page must never have less than 2 keys.)
7684          */
7685         minkeys = 1 + (IS_BRANCH(mn.mc_pg[mn.mc_top]));
7686         if (PAGEFILL(mc->mc_txn->mt_env, mn.mc_pg[mn.mc_top]) >= FILL_THRESHOLD && NUMKEYS(mn.mc_pg[mn.mc_top]) > minkeys) {
7687                 rc = mdb_node_move(&mn, mc);
7688                 if (mc->mc_ki[ptop]) {
7689                         oldki++;
7690                 }
7691         } else {
7692                 if (mc->mc_ki[ptop] == 0) {
7693                         rc = mdb_page_merge(&mn, mc);
7694                 } else {
7695                         oldki += NUMKEYS(mn.mc_pg[mn.mc_top]);
7696                         mn.mc_ki[mn.mc_top] += mc->mc_ki[mn.mc_top] + 1;
7697                         rc = mdb_page_merge(mc, &mn);
7698                         mdb_cursor_copy(&mn, mc);
7699                 }
7700                 mc->mc_flags &= ~C_EOF;
7701         }
7702         mc->mc_ki[mc->mc_top] = oldki;
7703         return rc;
7704 }
7705
7706 /** Complete a delete operation started by #mdb_cursor_del(). */
7707 static int
7708 mdb_cursor_del0(MDB_cursor *mc)
7709 {
7710         int rc;
7711         MDB_page *mp;
7712         indx_t ki;
7713         unsigned int nkeys;
7714
7715         ki = mc->mc_ki[mc->mc_top];
7716         mdb_node_del(mc, mc->mc_db->md_pad);
7717         mc->mc_db->md_entries--;
7718         rc = mdb_rebalance(mc);
7719
7720         if (rc == MDB_SUCCESS) {
7721                 MDB_cursor *m2, *m3;
7722                 MDB_dbi dbi = mc->mc_dbi;
7723
7724                 mp = mc->mc_pg[mc->mc_top];
7725                 nkeys = NUMKEYS(mp);
7726
7727                 /* if mc points past last node in page, find next sibling */
7728                 if (mc->mc_ki[mc->mc_top] >= nkeys) {
7729                         rc = mdb_cursor_sibling(mc, 1);
7730                         if (rc == MDB_NOTFOUND) {
7731                                 mc->mc_flags |= C_EOF;
7732                                 rc = MDB_SUCCESS;
7733                         }
7734                 }
7735
7736                 /* Adjust other cursors pointing to mp */
7737                 for (m2 = mc->mc_txn->mt_cursors[dbi]; !rc && m2; m2=m2->mc_next) {
7738                         m3 = (mc->mc_flags & C_SUB) ? &m2->mc_xcursor->mx_cursor : m2;
7739                         if (! (m2->mc_flags & m3->mc_flags & C_INITIALIZED))
7740                                 continue;
7741                         if (m3 == mc || m3->mc_snum < mc->mc_snum)
7742                                 continue;
7743                         if (m3->mc_pg[mc->mc_top] == mp) {
7744                                 if (m3->mc_ki[mc->mc_top] >= ki) {
7745                                         m3->mc_flags |= C_DEL;
7746                                         if (m3->mc_ki[mc->mc_top] > ki)
7747                                                 m3->mc_ki[mc->mc_top]--;
7748                                         else if (mc->mc_db->md_flags & MDB_DUPSORT)
7749                                                 m3->mc_xcursor->mx_cursor.mc_flags |= C_EOF;
7750                                 }
7751                                 if (m3->mc_ki[mc->mc_top] >= nkeys) {
7752                                         rc = mdb_cursor_sibling(m3, 1);
7753                                         if (rc == MDB_NOTFOUND) {
7754                                                 m3->mc_flags |= C_EOF;
7755                                                 rc = MDB_SUCCESS;
7756                                         }
7757                                 }
7758                         }
7759                 }
7760                 mc->mc_flags |= C_DEL;
7761         }
7762
7763         if (rc)
7764                 mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
7765         return rc;
7766 }
7767
7768 int
7769 mdb_del(MDB_txn *txn, MDB_dbi dbi,
7770     MDB_val *key, MDB_val *data)
7771 {
7772         if (!key || dbi == FREE_DBI || !TXN_DBI_EXIST(txn, dbi))
7773                 return EINVAL;
7774
7775         if (txn->mt_flags & (MDB_TXN_RDONLY|MDB_TXN_ERROR))
7776                 return (txn->mt_flags & MDB_TXN_RDONLY) ? EACCES : MDB_BAD_TXN;
7777
7778         if (!F_ISSET(txn->mt_dbs[dbi].md_flags, MDB_DUPSORT)) {
7779                 /* must ignore any data */
7780                 data = NULL;
7781         }
7782
7783         return mdb_del0(txn, dbi, key, data, 0);
7784 }
7785
7786 static int
7787 mdb_del0(MDB_txn *txn, MDB_dbi dbi,
7788         MDB_val *key, MDB_val *data, unsigned flags)
7789 {
7790         MDB_cursor mc;
7791         MDB_xcursor mx;
7792         MDB_cursor_op op;
7793         MDB_val rdata, *xdata;
7794         int              rc, exact = 0;
7795         DKBUF;
7796
7797         DPRINTF(("====> delete db %u key [%s]", dbi, DKEY(key)));
7798
7799         mdb_cursor_init(&mc, txn, dbi, &mx);
7800
7801         if (data) {
7802                 op = MDB_GET_BOTH;
7803                 rdata = *data;
7804                 xdata = &rdata;
7805         } else {
7806                 op = MDB_SET;
7807                 xdata = NULL;
7808                 flags |= MDB_NODUPDATA;
7809         }
7810         rc = mdb_cursor_set(&mc, key, xdata, op, &exact);
7811         if (rc == 0) {
7812                 /* let mdb_page_split know about this cursor if needed:
7813                  * delete will trigger a rebalance; if it needs to move
7814                  * a node from one page to another, it will have to
7815                  * update the parent's separator key(s). If the new sepkey
7816                  * is larger than the current one, the parent page may
7817                  * run out of space, triggering a split. We need this
7818                  * cursor to be consistent until the end of the rebalance.
7819                  */
7820                 mc.mc_flags |= C_UNTRACK;
7821                 mc.mc_next = txn->mt_cursors[dbi];
7822                 txn->mt_cursors[dbi] = &mc;
7823                 rc = mdb_cursor_del(&mc, flags);
7824                 txn->mt_cursors[dbi] = mc.mc_next;
7825         }
7826         return rc;
7827 }
7828
7829 /** Split a page and insert a new node.
7830  * @param[in,out] mc Cursor pointing to the page and desired insertion index.
7831  * The cursor will be updated to point to the actual page and index where
7832  * the node got inserted after the split.
7833  * @param[in] newkey The key for the newly inserted node.
7834  * @param[in] newdata The data for the newly inserted node.
7835  * @param[in] newpgno The page number, if the new node is a branch node.
7836  * @param[in] nflags The #NODE_ADD_FLAGS for the new node.
7837  * @return 0 on success, non-zero on failure.
7838  */
7839 static int
7840 mdb_page_split(MDB_cursor *mc, MDB_val *newkey, MDB_val *newdata, pgno_t newpgno,
7841         unsigned int nflags)
7842 {
7843         unsigned int flags;
7844         int              rc = MDB_SUCCESS, new_root = 0, did_split = 0;
7845         indx_t           newindx;
7846         pgno_t           pgno = 0;
7847         int      i, j, split_indx, nkeys, pmax;
7848         MDB_env         *env = mc->mc_txn->mt_env;
7849         MDB_node        *node;
7850         MDB_val  sepkey, rkey, xdata, *rdata = &xdata;
7851         MDB_page        *copy = NULL;
7852         MDB_page        *mp, *rp, *pp;
7853         int ptop;
7854         MDB_cursor      mn;
7855         DKBUF;
7856
7857         mp = mc->mc_pg[mc->mc_top];
7858         newindx = mc->mc_ki[mc->mc_top];
7859         nkeys = NUMKEYS(mp);
7860
7861         DPRINTF(("-----> splitting %s page %"Z"u and adding [%s] at index %i/%i",
7862             IS_LEAF(mp) ? "leaf" : "branch", mp->mp_pgno,
7863             DKEY(newkey), mc->mc_ki[mc->mc_top], nkeys));
7864
7865         /* Create a right sibling. */
7866         if ((rc = mdb_page_new(mc, mp->mp_flags, 1, &rp)))
7867                 return rc;
7868         DPRINTF(("new right sibling: page %"Z"u", rp->mp_pgno));
7869
7870         if (mc->mc_snum < 2) {
7871                 if ((rc = mdb_page_new(mc, P_BRANCH, 1, &pp)))
7872                         goto done;
7873                 /* shift current top to make room for new parent */
7874                 mc->mc_pg[1] = mc->mc_pg[0];
7875                 mc->mc_ki[1] = mc->mc_ki[0];
7876                 mc->mc_pg[0] = pp;
7877                 mc->mc_ki[0] = 0;
7878                 mc->mc_db->md_root = pp->mp_pgno;
7879                 DPRINTF(("root split! new root = %"Z"u", pp->mp_pgno));
7880                 mc->mc_db->md_depth++;
7881                 new_root = 1;
7882
7883                 /* Add left (implicit) pointer. */
7884                 if ((rc = mdb_node_add(mc, 0, NULL, NULL, mp->mp_pgno, 0)) != MDB_SUCCESS) {
7885                         /* undo the pre-push */
7886                         mc->mc_pg[0] = mc->mc_pg[1];
7887                         mc->mc_ki[0] = mc->mc_ki[1];
7888                         mc->mc_db->md_root = mp->mp_pgno;
7889                         mc->mc_db->md_depth--;
7890                         goto done;
7891                 }
7892                 mc->mc_snum = 2;
7893                 mc->mc_top = 1;
7894                 ptop = 0;
7895         } else {
7896                 ptop = mc->mc_top-1;
7897                 DPRINTF(("parent branch page is %"Z"u", mc->mc_pg[ptop]->mp_pgno));
7898         }
7899
7900         mc->mc_flags |= C_SPLITTING;
7901         mdb_cursor_copy(mc, &mn);
7902         mn.mc_pg[mn.mc_top] = rp;
7903         mn.mc_ki[ptop] = mc->mc_ki[ptop]+1;
7904
7905         if (nflags & MDB_APPEND) {
7906                 mn.mc_ki[mn.mc_top] = 0;
7907                 sepkey = *newkey;
7908                 split_indx = newindx;
7909                 nkeys = 0;
7910         } else {
7911
7912                 split_indx = (nkeys+1) / 2;
7913
7914                 if (IS_LEAF2(rp)) {
7915                         char *split, *ins;
7916                         int x;
7917                         unsigned int lsize, rsize, ksize;
7918                         /* Move half of the keys to the right sibling */
7919                         x = mc->mc_ki[mc->mc_top] - split_indx;
7920                         ksize = mc->mc_db->md_pad;
7921                         split = LEAF2KEY(mp, split_indx, ksize);
7922                         rsize = (nkeys - split_indx) * ksize;
7923                         lsize = (nkeys - split_indx) * sizeof(indx_t);
7924                         mp->mp_lower -= lsize;
7925                         rp->mp_lower += lsize;
7926                         mp->mp_upper += rsize - lsize;
7927                         rp->mp_upper -= rsize - lsize;
7928                         sepkey.mv_size = ksize;
7929                         if (newindx == split_indx) {
7930                                 sepkey.mv_data = newkey->mv_data;
7931                         } else {
7932                                 sepkey.mv_data = split;
7933                         }
7934                         if (x<0) {
7935                                 ins = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], ksize);
7936                                 memcpy(rp->mp_ptrs, split, rsize);
7937                                 sepkey.mv_data = rp->mp_ptrs;
7938                                 memmove(ins+ksize, ins, (split_indx - mc->mc_ki[mc->mc_top]) * ksize);
7939                                 memcpy(ins, newkey->mv_data, ksize);
7940                                 mp->mp_lower += sizeof(indx_t);
7941                                 mp->mp_upper -= ksize - sizeof(indx_t);
7942                         } else {
7943                                 if (x)
7944                                         memcpy(rp->mp_ptrs, split, x * ksize);
7945                                 ins = LEAF2KEY(rp, x, ksize);
7946                                 memcpy(ins, newkey->mv_data, ksize);
7947                                 memcpy(ins+ksize, split + x * ksize, rsize - x * ksize);
7948                                 rp->mp_lower += sizeof(indx_t);
7949                                 rp->mp_upper -= ksize - sizeof(indx_t);
7950                                 mc->mc_ki[mc->mc_top] = x;
7951                                 mc->mc_pg[mc->mc_top] = rp;
7952                         }
7953                 } else {
7954                         int psize, nsize, k;
7955                         /* Maximum free space in an empty page */
7956                         pmax = env->me_psize - PAGEHDRSZ;
7957                         if (IS_LEAF(mp))
7958                                 nsize = mdb_leaf_size(env, newkey, newdata);
7959                         else
7960                                 nsize = mdb_branch_size(env, newkey);
7961                         nsize = EVEN(nsize);
7962
7963                         /* grab a page to hold a temporary copy */
7964                         copy = mdb_page_malloc(mc->mc_txn, 1);
7965                         if (copy == NULL) {
7966                                 rc = ENOMEM;
7967                                 goto done;
7968                         }
7969                         copy->mp_pgno  = mp->mp_pgno;
7970                         copy->mp_flags = mp->mp_flags;
7971                         copy->mp_lower = (PAGEHDRSZ-PAGEBASE);
7972                         copy->mp_upper = env->me_psize - PAGEBASE;
7973
7974                         /* prepare to insert */
7975                         for (i=0, j=0; i<nkeys; i++) {
7976                                 if (i == newindx) {
7977                                         copy->mp_ptrs[j++] = 0;
7978                                 }
7979                                 copy->mp_ptrs[j++] = mp->mp_ptrs[i];
7980                         }
7981
7982                         /* When items are relatively large the split point needs
7983                          * to be checked, because being off-by-one will make the
7984                          * difference between success or failure in mdb_node_add.
7985                          *
7986                          * It's also relevant if a page happens to be laid out
7987                          * such that one half of its nodes are all "small" and
7988                          * the other half of its nodes are "large." If the new
7989                          * item is also "large" and falls on the half with
7990                          * "large" nodes, it also may not fit.
7991                          *
7992                          * As a final tweak, if the new item goes on the last
7993                          * spot on the page (and thus, onto the new page), bias
7994                          * the split so the new page is emptier than the old page.
7995                          * This yields better packing during sequential inserts.
7996                          */
7997                         if (nkeys < 20 || nsize > pmax/16 || newindx >= nkeys) {
7998                                 /* Find split point */
7999                                 psize = 0;
8000                                 if (newindx <= split_indx || newindx >= nkeys) {
8001                                         i = 0; j = 1;
8002                                         k = newindx >= nkeys ? nkeys : split_indx+2;
8003                                 } else {
8004                                         i = nkeys; j = -1;
8005                                         k = split_indx-1;
8006                                 }
8007                                 for (; i!=k; i+=j) {
8008                                         if (i == newindx) {
8009                                                 psize += nsize;
8010                                                 node = NULL;
8011                                         } else {
8012                                                 node = (MDB_node *)((char *)mp + copy->mp_ptrs[i] + PAGEBASE);
8013                                                 psize += NODESIZE + NODEKSZ(node) + sizeof(indx_t);
8014                                                 if (IS_LEAF(mp)) {
8015                                                         if (F_ISSET(node->mn_flags, F_BIGDATA))
8016                                                                 psize += sizeof(pgno_t);
8017                                                         else
8018                                                                 psize += NODEDSZ(node);
8019                                                 }
8020                                                 psize = EVEN(psize);
8021                                         }
8022                                         if (psize > pmax || i == k-j) {
8023                                                 split_indx = i + (j<0);
8024                                                 break;
8025                                         }
8026                                 }
8027                         }
8028                         if (split_indx == newindx) {
8029                                 sepkey.mv_size = newkey->mv_size;
8030                                 sepkey.mv_data = newkey->mv_data;
8031                         } else {
8032                                 node = (MDB_node *)((char *)mp + copy->mp_ptrs[split_indx] + PAGEBASE);
8033                                 sepkey.mv_size = node->mn_ksize;
8034                                 sepkey.mv_data = NODEKEY(node);
8035                         }
8036                 }
8037         }
8038
8039         DPRINTF(("separator is %d [%s]", split_indx, DKEY(&sepkey)));
8040
8041         /* Copy separator key to the parent.
8042          */
8043         if (SIZELEFT(mn.mc_pg[ptop]) < mdb_branch_size(env, &sepkey)) {
8044                 mn.mc_snum--;
8045                 mn.mc_top--;
8046                 did_split = 1;
8047                 rc = mdb_page_split(&mn, &sepkey, NULL, rp->mp_pgno, 0);
8048                 if (rc)
8049                         goto done;
8050
8051                 /* root split? */
8052                 if (mn.mc_snum == mc->mc_snum) {
8053                         mc->mc_pg[mc->mc_snum] = mc->mc_pg[mc->mc_top];
8054                         mc->mc_ki[mc->mc_snum] = mc->mc_ki[mc->mc_top];
8055                         mc->mc_pg[mc->mc_top] = mc->mc_pg[ptop];
8056                         mc->mc_ki[mc->mc_top] = mc->mc_ki[ptop];
8057                         mc->mc_snum++;
8058                         mc->mc_top++;
8059                         ptop++;
8060                 }
8061                 /* Right page might now have changed parent.
8062                  * Check if left page also changed parent.
8063                  */
8064                 if (mn.mc_pg[ptop] != mc->mc_pg[ptop] &&
8065                     mc->mc_ki[ptop] >= NUMKEYS(mc->mc_pg[ptop])) {
8066                         for (i=0; i<ptop; i++) {
8067                                 mc->mc_pg[i] = mn.mc_pg[i];
8068                                 mc->mc_ki[i] = mn.mc_ki[i];
8069                         }
8070                         mc->mc_pg[ptop] = mn.mc_pg[ptop];
8071                         if (mn.mc_ki[ptop]) {
8072                                 mc->mc_ki[ptop] = mn.mc_ki[ptop] - 1;
8073                         } else {
8074                                 /* find right page's left sibling */
8075                                 mc->mc_ki[ptop] = mn.mc_ki[ptop];
8076                                 mdb_cursor_sibling(mc, 0);
8077                         }
8078                 }
8079         } else {
8080                 mn.mc_top--;
8081                 rc = mdb_node_add(&mn, mn.mc_ki[ptop], &sepkey, NULL, rp->mp_pgno, 0);
8082                 mn.mc_top++;
8083         }
8084         mc->mc_flags ^= C_SPLITTING;
8085         if (rc != MDB_SUCCESS) {
8086                 goto done;
8087         }
8088         if (nflags & MDB_APPEND) {
8089                 mc->mc_pg[mc->mc_top] = rp;
8090                 mc->mc_ki[mc->mc_top] = 0;
8091                 rc = mdb_node_add(mc, 0, newkey, newdata, newpgno, nflags);
8092                 if (rc)
8093                         goto done;
8094                 for (i=0; i<mc->mc_top; i++)
8095                         mc->mc_ki[i] = mn.mc_ki[i];
8096         } else if (!IS_LEAF2(mp)) {
8097                 /* Move nodes */
8098                 mc->mc_pg[mc->mc_top] = rp;
8099                 i = split_indx;
8100                 j = 0;
8101                 do {
8102                         if (i == newindx) {
8103                                 rkey.mv_data = newkey->mv_data;
8104                                 rkey.mv_size = newkey->mv_size;
8105                                 if (IS_LEAF(mp)) {
8106                                         rdata = newdata;
8107                                 } else
8108                                         pgno = newpgno;
8109                                 flags = nflags;
8110                                 /* Update index for the new key. */
8111                                 mc->mc_ki[mc->mc_top] = j;
8112                         } else {
8113                                 node = (MDB_node *)((char *)mp + copy->mp_ptrs[i] + PAGEBASE);
8114                                 rkey.mv_data = NODEKEY(node);
8115                                 rkey.mv_size = node->mn_ksize;
8116                                 if (IS_LEAF(mp)) {
8117                                         xdata.mv_data = NODEDATA(node);
8118                                         xdata.mv_size = NODEDSZ(node);
8119                                         rdata = &xdata;
8120                                 } else
8121                                         pgno = NODEPGNO(node);
8122                                 flags = node->mn_flags;
8123                         }
8124
8125                         if (!IS_LEAF(mp) && j == 0) {
8126                                 /* First branch index doesn't need key data. */
8127                                 rkey.mv_size = 0;
8128                         }
8129
8130                         rc = mdb_node_add(mc, j, &rkey, rdata, pgno, flags);
8131                         if (rc)
8132                                 goto done;
8133                         if (i == nkeys) {
8134                                 i = 0;
8135                                 j = 0;
8136                                 mc->mc_pg[mc->mc_top] = copy;
8137                         } else {
8138                                 i++;
8139                                 j++;
8140                         }
8141                 } while (i != split_indx);
8142
8143                 nkeys = NUMKEYS(copy);
8144                 for (i=0; i<nkeys; i++)
8145                         mp->mp_ptrs[i] = copy->mp_ptrs[i];
8146                 mp->mp_lower = copy->mp_lower;
8147                 mp->mp_upper = copy->mp_upper;
8148                 memcpy(NODEPTR(mp, nkeys-1), NODEPTR(copy, nkeys-1),
8149                         env->me_psize - copy->mp_upper - PAGEBASE);
8150
8151                 /* reset back to original page */
8152                 if (newindx < split_indx) {
8153                         mc->mc_pg[mc->mc_top] = mp;
8154                         if (nflags & MDB_RESERVE) {
8155                                 node = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
8156                                 if (!(node->mn_flags & F_BIGDATA))
8157                                         newdata->mv_data = NODEDATA(node);
8158                         }
8159                 } else {
8160                         mc->mc_pg[mc->mc_top] = rp;
8161                         mc->mc_ki[ptop]++;
8162                         /* Make sure mc_ki is still valid.
8163                          */
8164                         if (mn.mc_pg[ptop] != mc->mc_pg[ptop] &&
8165                                 mc->mc_ki[ptop] >= NUMKEYS(mc->mc_pg[ptop])) {
8166                                 for (i=0; i<=ptop; i++) {
8167                                         mc->mc_pg[i] = mn.mc_pg[i];
8168                                         mc->mc_ki[i] = mn.mc_ki[i];
8169                                 }
8170                         }
8171                 }
8172         }
8173
8174         {
8175                 /* Adjust other cursors pointing to mp */
8176                 MDB_cursor *m2, *m3;
8177                 MDB_dbi dbi = mc->mc_dbi;
8178                 int fixup = NUMKEYS(mp);
8179
8180                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
8181                         if (mc->mc_flags & C_SUB)
8182                                 m3 = &m2->mc_xcursor->mx_cursor;
8183                         else
8184                                 m3 = m2;
8185                         if (m3 == mc)
8186                                 continue;
8187                         if (!(m2->mc_flags & m3->mc_flags & C_INITIALIZED))
8188                                 continue;
8189                         if (m3->mc_flags & C_SPLITTING)
8190                                 continue;
8191                         if (new_root) {
8192                                 int k;
8193                                 /* root split */
8194                                 for (k=m3->mc_top; k>=0; k--) {
8195                                         m3->mc_ki[k+1] = m3->mc_ki[k];
8196                                         m3->mc_pg[k+1] = m3->mc_pg[k];
8197                                 }
8198                                 if (m3->mc_ki[0] >= split_indx) {
8199                                         m3->mc_ki[0] = 1;
8200                                 } else {
8201                                         m3->mc_ki[0] = 0;
8202                                 }
8203                                 m3->mc_pg[0] = mc->mc_pg[0];
8204                                 m3->mc_snum++;
8205                                 m3->mc_top++;
8206                         }
8207                         if (m3->mc_top >= mc->mc_top && m3->mc_pg[mc->mc_top] == mp) {
8208                                 if (m3->mc_ki[mc->mc_top] >= newindx && !(nflags & MDB_SPLIT_REPLACE))
8209                                         m3->mc_ki[mc->mc_top]++;
8210                                 if (m3->mc_ki[mc->mc_top] >= fixup) {
8211                                         m3->mc_pg[mc->mc_top] = rp;
8212                                         m3->mc_ki[mc->mc_top] -= fixup;
8213                                         m3->mc_ki[ptop] = mn.mc_ki[ptop];
8214                                 }
8215                         } else if (!did_split && m3->mc_top >= ptop && m3->mc_pg[ptop] == mc->mc_pg[ptop] &&
8216                                 m3->mc_ki[ptop] >= mc->mc_ki[ptop]) {
8217                                 m3->mc_ki[ptop]++;
8218                         }
8219                 }
8220         }
8221         DPRINTF(("mp left: %d, rp left: %d", SIZELEFT(mp), SIZELEFT(rp)));
8222
8223 done:
8224         if (copy)                                       /* tmp page */
8225                 mdb_page_free(env, copy);
8226         if (rc)
8227                 mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
8228         return rc;
8229 }
8230
8231 int
8232 mdb_put(MDB_txn *txn, MDB_dbi dbi,
8233     MDB_val *key, MDB_val *data, unsigned int flags)
8234 {
8235         MDB_cursor mc;
8236         MDB_xcursor mx;
8237
8238         if (!key || !data || dbi == FREE_DBI || !TXN_DBI_EXIST(txn, dbi))
8239                 return EINVAL;
8240
8241         if ((flags & (MDB_NOOVERWRITE|MDB_NODUPDATA|MDB_RESERVE|MDB_APPEND|MDB_APPENDDUP)) != flags)
8242                 return EINVAL;
8243
8244         mdb_cursor_init(&mc, txn, dbi, &mx);
8245         return mdb_cursor_put(&mc, key, data, flags);
8246 }
8247
8248 #ifndef MDB_WBUF
8249 #define MDB_WBUF        (1024*1024)
8250 #endif
8251
8252         /** State needed for a compacting copy. */
8253 typedef struct mdb_copy {
8254         pthread_mutex_t mc_mutex;
8255         pthread_cond_t mc_cond;
8256         char *mc_wbuf[2];
8257         char *mc_over[2];
8258         MDB_env *mc_env;
8259         MDB_txn *mc_txn;
8260         int mc_wlen[2];
8261         int mc_olen[2];
8262         pgno_t mc_next_pgno;
8263         HANDLE mc_fd;
8264         int mc_status;
8265         volatile int mc_new;
8266         int mc_toggle;
8267
8268 } mdb_copy;
8269
8270         /** Dedicated writer thread for compacting copy. */
8271 static THREAD_RET ESECT
8272 mdb_env_copythr(void *arg)
8273 {
8274         mdb_copy *my = arg;
8275         char *ptr;
8276         int toggle = 0, wsize, rc;
8277 #ifdef _WIN32
8278         DWORD len;
8279 #define DO_WRITE(rc, fd, ptr, w2, len)  rc = WriteFile(fd, ptr, w2, &len, NULL)
8280 #else
8281         int len;
8282 #define DO_WRITE(rc, fd, ptr, w2, len)  len = write(fd, ptr, w2); rc = (len >= 0)
8283 #endif
8284
8285         pthread_mutex_lock(&my->mc_mutex);
8286         my->mc_new = 0;
8287         pthread_cond_signal(&my->mc_cond);
8288         for(;;) {
8289                 while (!my->mc_new)
8290                         pthread_cond_wait(&my->mc_cond, &my->mc_mutex);
8291                 if (my->mc_new < 0) {
8292                         my->mc_new = 0;
8293                         break;
8294                 }
8295                 my->mc_new = 0;
8296                 wsize = my->mc_wlen[toggle];
8297                 ptr = my->mc_wbuf[toggle];
8298 again:
8299                 while (wsize > 0) {
8300                         DO_WRITE(rc, my->mc_fd, ptr, wsize, len);
8301                         if (!rc) {
8302                                 rc = ErrCode();
8303                                 break;
8304                         } else if (len > 0) {
8305                                 rc = MDB_SUCCESS;
8306                                 ptr += len;
8307                                 wsize -= len;
8308                                 continue;
8309                         } else {
8310                                 rc = EIO;
8311                                 break;
8312                         }
8313                 }
8314                 if (rc) {
8315                         my->mc_status = rc;
8316                         break;
8317                 }
8318                 /* If there's an overflow page tail, write it too */
8319                 if (my->mc_olen[toggle]) {
8320                         wsize = my->mc_olen[toggle];
8321                         ptr = my->mc_over[toggle];
8322                         my->mc_olen[toggle] = 0;
8323                         goto again;
8324                 }
8325                 my->mc_wlen[toggle] = 0;
8326                 toggle ^= 1;
8327                 pthread_cond_signal(&my->mc_cond);
8328         }
8329         pthread_cond_signal(&my->mc_cond);
8330         pthread_mutex_unlock(&my->mc_mutex);
8331         return (THREAD_RET)0;
8332 #undef DO_WRITE
8333 }
8334
8335         /** Tell the writer thread there's a buffer ready to write */
8336 static int ESECT
8337 mdb_env_cthr_toggle(mdb_copy *my, int st)
8338 {
8339         int toggle = my->mc_toggle ^ 1;
8340         pthread_mutex_lock(&my->mc_mutex);
8341         if (my->mc_status) {
8342                 pthread_mutex_unlock(&my->mc_mutex);
8343                 return my->mc_status;
8344         }
8345         while (my->mc_new == 1)
8346                 pthread_cond_wait(&my->mc_cond, &my->mc_mutex);
8347         my->mc_new = st;
8348         my->mc_toggle = toggle;
8349         pthread_cond_signal(&my->mc_cond);
8350         pthread_mutex_unlock(&my->mc_mutex);
8351         return 0;
8352 }
8353
8354         /** Depth-first tree traversal for compacting copy. */
8355 static int ESECT
8356 mdb_env_cwalk(mdb_copy *my, pgno_t *pg, int flags)
8357 {
8358         MDB_cursor mc;
8359         MDB_txn *txn = my->mc_txn;
8360         MDB_node *ni;
8361         MDB_page *mo, *mp, *leaf;
8362         char *buf, *ptr;
8363         int rc, toggle;
8364         unsigned int i;
8365
8366         /* Empty DB, nothing to do */
8367         if (*pg == P_INVALID)
8368                 return MDB_SUCCESS;
8369
8370         mc.mc_snum = 1;
8371         mc.mc_top = 0;
8372         mc.mc_txn = txn;
8373
8374         rc = mdb_page_get(my->mc_txn, *pg, &mc.mc_pg[0], NULL);
8375         if (rc)
8376                 return rc;
8377         rc = mdb_page_search_root(&mc, NULL, MDB_PS_FIRST);
8378         if (rc)
8379                 return rc;
8380
8381         /* Make cursor pages writable */
8382         buf = ptr = malloc(my->mc_env->me_psize * mc.mc_snum);
8383         if (buf == NULL)
8384                 return ENOMEM;
8385
8386         for (i=0; i<mc.mc_top; i++) {
8387                 mdb_page_copy((MDB_page *)ptr, mc.mc_pg[i], my->mc_env->me_psize);
8388                 mc.mc_pg[i] = (MDB_page *)ptr;
8389                 ptr += my->mc_env->me_psize;
8390         }
8391
8392         /* This is writable space for a leaf page. Usually not needed. */
8393         leaf = (MDB_page *)ptr;
8394
8395         toggle = my->mc_toggle;
8396         while (mc.mc_snum > 0) {
8397                 unsigned n;
8398                 mp = mc.mc_pg[mc.mc_top];
8399                 n = NUMKEYS(mp);
8400
8401                 if (IS_LEAF(mp)) {
8402                         if (!IS_LEAF2(mp) && !(flags & F_DUPDATA)) {
8403                                 for (i=0; i<n; i++) {
8404                                         ni = NODEPTR(mp, i);
8405                                         if (ni->mn_flags & F_BIGDATA) {
8406                                                 MDB_page *omp;
8407                                                 pgno_t pg;
8408
8409                                                 /* Need writable leaf */
8410                                                 if (mp != leaf) {
8411                                                         mc.mc_pg[mc.mc_top] = leaf;
8412                                                         mdb_page_copy(leaf, mp, my->mc_env->me_psize);
8413                                                         mp = leaf;
8414                                                         ni = NODEPTR(mp, i);
8415                                                 }
8416
8417                                                 memcpy(&pg, NODEDATA(ni), sizeof(pg));
8418                                                 rc = mdb_page_get(txn, pg, &omp, NULL);
8419                                                 if (rc)
8420                                                         goto done;
8421                                                 if (my->mc_wlen[toggle] >= MDB_WBUF) {
8422                                                         rc = mdb_env_cthr_toggle(my, 1);
8423                                                         if (rc)
8424                                                                 goto done;
8425                                                         toggle = my->mc_toggle;
8426                                                 }
8427                                                 mo = (MDB_page *)(my->mc_wbuf[toggle] + my->mc_wlen[toggle]);
8428                                                 memcpy(mo, omp, my->mc_env->me_psize);
8429                                                 mo->mp_pgno = my->mc_next_pgno;
8430                                                 my->mc_next_pgno += omp->mp_pages;
8431                                                 my->mc_wlen[toggle] += my->mc_env->me_psize;
8432                                                 if (omp->mp_pages > 1) {
8433                                                         my->mc_olen[toggle] = my->mc_env->me_psize * (omp->mp_pages - 1);
8434                                                         my->mc_over[toggle] = (char *)omp + my->mc_env->me_psize;
8435                                                         rc = mdb_env_cthr_toggle(my, 1);
8436                                                         if (rc)
8437                                                                 goto done;
8438                                                         toggle = my->mc_toggle;
8439                                                 }
8440                                                 memcpy(NODEDATA(ni), &mo->mp_pgno, sizeof(pgno_t));
8441                                         } else if (ni->mn_flags & F_SUBDATA) {
8442                                                 MDB_db db;
8443
8444                                                 /* Need writable leaf */
8445                                                 if (mp != leaf) {
8446                                                         mc.mc_pg[mc.mc_top] = leaf;
8447                                                         mdb_page_copy(leaf, mp, my->mc_env->me_psize);
8448                                                         mp = leaf;
8449                                                         ni = NODEPTR(mp, i);
8450                                                 }
8451
8452                                                 memcpy(&db, NODEDATA(ni), sizeof(db));
8453                                                 my->mc_toggle = toggle;
8454                                                 rc = mdb_env_cwalk(my, &db.md_root, ni->mn_flags & F_DUPDATA);
8455                                                 if (rc)
8456                                                         goto done;
8457                                                 toggle = my->mc_toggle;
8458                                                 memcpy(NODEDATA(ni), &db, sizeof(db));
8459                                         }
8460                                 }
8461                         }
8462                 } else {
8463                         mc.mc_ki[mc.mc_top]++;
8464                         if (mc.mc_ki[mc.mc_top] < n) {
8465                                 pgno_t pg;
8466 again:
8467                                 ni = NODEPTR(mp, mc.mc_ki[mc.mc_top]);
8468                                 pg = NODEPGNO(ni);
8469                                 rc = mdb_page_get(txn, pg, &mp, NULL);
8470                                 if (rc)
8471                                         goto done;
8472                                 mc.mc_top++;
8473                                 mc.mc_snum++;
8474                                 mc.mc_ki[mc.mc_top] = 0;
8475                                 if (IS_BRANCH(mp)) {
8476                                         /* Whenever we advance to a sibling branch page,
8477                                          * we must proceed all the way down to its first leaf.
8478                                          */
8479                                         mdb_page_copy(mc.mc_pg[mc.mc_top], mp, my->mc_env->me_psize);
8480                                         goto again;
8481                                 } else
8482                                         mc.mc_pg[mc.mc_top] = mp;
8483                                 continue;
8484                         }
8485                 }
8486                 if (my->mc_wlen[toggle] >= MDB_WBUF) {
8487                         rc = mdb_env_cthr_toggle(my, 1);
8488                         if (rc)
8489                                 goto done;
8490                         toggle = my->mc_toggle;
8491                 }
8492                 mo = (MDB_page *)(my->mc_wbuf[toggle] + my->mc_wlen[toggle]);
8493                 mdb_page_copy(mo, mp, my->mc_env->me_psize);
8494                 mo->mp_pgno = my->mc_next_pgno++;
8495                 my->mc_wlen[toggle] += my->mc_env->me_psize;
8496                 if (mc.mc_top) {
8497                         /* Update parent if there is one */
8498                         ni = NODEPTR(mc.mc_pg[mc.mc_top-1], mc.mc_ki[mc.mc_top-1]);
8499                         SETPGNO(ni, mo->mp_pgno);
8500                         mdb_cursor_pop(&mc);
8501                 } else {
8502                         /* Otherwise we're done */
8503                         *pg = mo->mp_pgno;
8504                         break;
8505                 }
8506         }
8507 done:
8508         free(buf);
8509         return rc;
8510 }
8511
8512         /** Copy environment with compaction. */
8513 static int ESECT
8514 mdb_env_copyfd1(MDB_env *env, HANDLE fd)
8515 {
8516         MDB_meta *mm;
8517         MDB_page *mp;
8518         mdb_copy my;
8519         MDB_txn *txn = NULL;
8520         pthread_t thr;
8521         int rc;
8522
8523 #ifdef _WIN32
8524         my.mc_mutex = CreateMutex(NULL, FALSE, NULL);
8525         my.mc_cond = CreateEvent(NULL, FALSE, FALSE, NULL);
8526         my.mc_wbuf[0] = _aligned_malloc(MDB_WBUF*2, env->me_os_psize);
8527         if (my.mc_wbuf[0] == NULL)
8528                 return errno;
8529 #else
8530         pthread_mutex_init(&my.mc_mutex, NULL);
8531         pthread_cond_init(&my.mc_cond, NULL);
8532 #ifdef HAVE_MEMALIGN
8533         my.mc_wbuf[0] = memalign(env->me_os_psize, MDB_WBUF*2);
8534         if (my.mc_wbuf[0] == NULL)
8535                 return errno;
8536 #else
8537         rc = posix_memalign((void **)&my.mc_wbuf[0], env->me_os_psize, MDB_WBUF*2);
8538         if (rc)
8539                 return rc;
8540 #endif
8541 #endif
8542         memset(my.mc_wbuf[0], 0, MDB_WBUF*2);
8543         my.mc_wbuf[1] = my.mc_wbuf[0] + MDB_WBUF;
8544         my.mc_wlen[0] = 0;
8545         my.mc_wlen[1] = 0;
8546         my.mc_olen[0] = 0;
8547         my.mc_olen[1] = 0;
8548         my.mc_next_pgno = 2;
8549         my.mc_status = 0;
8550         my.mc_new = 1;
8551         my.mc_toggle = 0;
8552         my.mc_env = env;
8553         my.mc_fd = fd;
8554         THREAD_CREATE(thr, mdb_env_copythr, &my);
8555
8556         rc = mdb_txn_begin(env, NULL, MDB_RDONLY, &txn);
8557         if (rc)
8558                 return rc;
8559
8560         mp = (MDB_page *)my.mc_wbuf[0];
8561         memset(mp, 0, 2*env->me_psize);
8562         mp->mp_pgno = 0;
8563         mp->mp_flags = P_META;
8564         mm = (MDB_meta *)METADATA(mp);
8565         mdb_env_init_meta0(env, mm);
8566         mm->mm_address = env->me_metas[0]->mm_address;
8567
8568         mp = (MDB_page *)(my.mc_wbuf[0] + env->me_psize);
8569         mp->mp_pgno = 1;
8570         mp->mp_flags = P_META;
8571         *(MDB_meta *)METADATA(mp) = *mm;
8572         mm = (MDB_meta *)METADATA(mp);
8573
8574         /* Count the number of free pages, subtract from lastpg to find
8575          * number of active pages
8576          */
8577         {
8578                 MDB_ID freecount = 0;
8579                 MDB_cursor mc;
8580                 MDB_val key, data;
8581                 mdb_cursor_init(&mc, txn, FREE_DBI, NULL);
8582                 while ((rc = mdb_cursor_get(&mc, &key, &data, MDB_NEXT)) == 0)
8583                         freecount += *(MDB_ID *)data.mv_data;
8584                 freecount += txn->mt_dbs[0].md_branch_pages +
8585                         txn->mt_dbs[0].md_leaf_pages +
8586                         txn->mt_dbs[0].md_overflow_pages;
8587
8588                 /* Set metapage 1 */
8589                 mm->mm_last_pg = txn->mt_next_pgno - freecount - 1;
8590                 mm->mm_dbs[1] = txn->mt_dbs[1];
8591                 mm->mm_dbs[1].md_root = mm->mm_last_pg;
8592                 mm->mm_txnid = 1;
8593         }
8594         my.mc_wlen[0] = env->me_psize * 2;
8595         my.mc_txn = txn;
8596         pthread_mutex_lock(&my.mc_mutex);
8597         while(my.mc_new)
8598                 pthread_cond_wait(&my.mc_cond, &my.mc_mutex);
8599         pthread_mutex_unlock(&my.mc_mutex);
8600         rc = mdb_env_cwalk(&my, &txn->mt_dbs[1].md_root, 0);
8601         if (rc == MDB_SUCCESS && my.mc_wlen[my.mc_toggle])
8602                 rc = mdb_env_cthr_toggle(&my, 1);
8603         mdb_env_cthr_toggle(&my, -1);
8604         pthread_mutex_lock(&my.mc_mutex);
8605         while(my.mc_new)
8606                 pthread_cond_wait(&my.mc_cond, &my.mc_mutex);
8607         pthread_mutex_unlock(&my.mc_mutex);
8608         THREAD_FINISH(thr);
8609
8610         mdb_txn_abort(txn);
8611 #ifdef _WIN32
8612         CloseHandle(my.mc_cond);
8613         CloseHandle(my.mc_mutex);
8614         _aligned_free(my.mc_wbuf[0]);
8615 #else
8616         pthread_cond_destroy(&my.mc_cond);
8617         pthread_mutex_destroy(&my.mc_mutex);
8618         free(my.mc_wbuf[0]);
8619 #endif
8620         return rc;
8621 }
8622
8623         /** Copy environment as-is. */
8624 static int ESECT
8625 mdb_env_copyfd0(MDB_env *env, HANDLE fd)
8626 {
8627         MDB_txn *txn = NULL;
8628         int rc;
8629         size_t wsize;
8630         char *ptr;
8631 #ifdef _WIN32
8632         DWORD len, w2;
8633 #define DO_WRITE(rc, fd, ptr, w2, len)  rc = WriteFile(fd, ptr, w2, &len, NULL)
8634 #else
8635         ssize_t len;
8636         size_t w2;
8637 #define DO_WRITE(rc, fd, ptr, w2, len)  len = write(fd, ptr, w2); rc = (len >= 0)
8638 #endif
8639
8640         /* Do the lock/unlock of the reader mutex before starting the
8641          * write txn.  Otherwise other read txns could block writers.
8642          */
8643         rc = mdb_txn_begin(env, NULL, MDB_RDONLY, &txn);
8644         if (rc)
8645                 return rc;
8646
8647         if (env->me_txns) {
8648                 /* We must start the actual read txn after blocking writers */
8649                 mdb_txn_reset0(txn, "reset-stage1");
8650
8651                 /* Temporarily block writers until we snapshot the meta pages */
8652                 LOCK_MUTEX_W(env);
8653
8654                 rc = mdb_txn_renew0(txn);
8655                 if (rc) {
8656                         UNLOCK_MUTEX_W(env);
8657                         goto leave;
8658                 }
8659         }
8660
8661         wsize = env->me_psize * 2;
8662         ptr = env->me_map;
8663         w2 = wsize;
8664         while (w2 > 0) {
8665                 DO_WRITE(rc, fd, ptr, w2, len);
8666                 if (!rc) {
8667                         rc = ErrCode();
8668                         break;
8669                 } else if (len > 0) {
8670                         rc = MDB_SUCCESS;
8671                         ptr += len;
8672                         w2 -= len;
8673                         continue;
8674                 } else {
8675                         /* Non-blocking or async handles are not supported */
8676                         rc = EIO;
8677                         break;
8678                 }
8679         }
8680         if (env->me_txns)
8681                 UNLOCK_MUTEX_W(env);
8682
8683         if (rc)
8684                 goto leave;
8685
8686         w2 = txn->mt_next_pgno * env->me_psize;
8687 #ifdef WIN32
8688         {
8689                 LARGE_INTEGER fsize;
8690                 GetFileSizeEx(env->me_fd, &fsize);
8691                 if (w2 > fsize.QuadPart)
8692                         w2 = fsize.QuadPart;
8693         }
8694 #else
8695         {
8696                 struct stat st;
8697                 fstat(env->me_fd, &st);
8698                 if (w2 > (size_t)st.st_size)
8699                         w2 = st.st_size;
8700         }
8701 #endif
8702         wsize = w2 - wsize;
8703         while (wsize > 0) {
8704                 if (wsize > MAX_WRITE)
8705                         w2 = MAX_WRITE;
8706                 else
8707                         w2 = wsize;
8708                 DO_WRITE(rc, fd, ptr, w2, len);
8709                 if (!rc) {
8710                         rc = ErrCode();
8711                         break;
8712                 } else if (len > 0) {
8713                         rc = MDB_SUCCESS;
8714                         ptr += len;
8715                         wsize -= len;
8716                         continue;
8717                 } else {
8718                         rc = EIO;
8719                         break;
8720                 }
8721         }
8722
8723 leave:
8724         mdb_txn_abort(txn);
8725         return rc;
8726 }
8727
8728 int ESECT
8729 mdb_env_copyfd2(MDB_env *env, HANDLE fd, unsigned int flags)
8730 {
8731         if (flags & MDB_CP_COMPACT)
8732                 return mdb_env_copyfd1(env, fd);
8733         else
8734                 return mdb_env_copyfd0(env, fd);
8735 }
8736
8737 int ESECT
8738 mdb_env_copyfd(MDB_env *env, HANDLE fd)
8739 {
8740         return mdb_env_copyfd2(env, fd, 0);
8741 }
8742
8743 int ESECT
8744 mdb_env_copy2(MDB_env *env, const char *path, unsigned int flags)
8745 {
8746         int rc, len;
8747         char *lpath;
8748         HANDLE newfd = INVALID_HANDLE_VALUE;
8749
8750         if (env->me_flags & MDB_NOSUBDIR) {
8751                 lpath = (char *)path;
8752         } else {
8753                 len = strlen(path);
8754                 len += sizeof(DATANAME);
8755                 lpath = malloc(len);
8756                 if (!lpath)
8757                         return ENOMEM;
8758                 sprintf(lpath, "%s" DATANAME, path);
8759         }
8760
8761         /* The destination path must exist, but the destination file must not.
8762          * We don't want the OS to cache the writes, since the source data is
8763          * already in the OS cache.
8764          */
8765 #ifdef _WIN32
8766         newfd = CreateFile(lpath, GENERIC_WRITE, 0, NULL, CREATE_NEW,
8767                                 FILE_FLAG_NO_BUFFERING|FILE_FLAG_WRITE_THROUGH, NULL);
8768 #else
8769         newfd = open(lpath, O_WRONLY|O_CREAT|O_EXCL, 0666);
8770 #endif
8771         if (newfd == INVALID_HANDLE_VALUE) {
8772                 rc = ErrCode();
8773                 goto leave;
8774         }
8775
8776         if (env->me_psize >= env->me_os_psize) {
8777 #ifdef O_DIRECT
8778         /* Set O_DIRECT if the file system supports it */
8779         if ((rc = fcntl(newfd, F_GETFL)) != -1)
8780                 (void) fcntl(newfd, F_SETFL, rc | O_DIRECT);
8781 #endif
8782 #ifdef F_NOCACHE        /* __APPLE__ */
8783         rc = fcntl(newfd, F_NOCACHE, 1);
8784         if (rc) {
8785                 rc = ErrCode();
8786                 goto leave;
8787         }
8788 #endif
8789         }
8790
8791         rc = mdb_env_copyfd2(env, newfd, flags);
8792
8793 leave:
8794         if (!(env->me_flags & MDB_NOSUBDIR))
8795                 free(lpath);
8796         if (newfd != INVALID_HANDLE_VALUE)
8797                 if (close(newfd) < 0 && rc == MDB_SUCCESS)
8798                         rc = ErrCode();
8799
8800         return rc;
8801 }
8802
8803 int ESECT
8804 mdb_env_copy(MDB_env *env, const char *path)
8805 {
8806         return mdb_env_copy2(env, path, 0);
8807 }
8808
8809 int ESECT
8810 mdb_env_set_flags(MDB_env *env, unsigned int flag, int onoff)
8811 {
8812         if ((flag & CHANGEABLE) != flag)
8813                 return EINVAL;
8814         if (onoff)
8815                 env->me_flags |= flag;
8816         else
8817                 env->me_flags &= ~flag;
8818         return MDB_SUCCESS;
8819 }
8820
8821 int ESECT
8822 mdb_env_get_flags(MDB_env *env, unsigned int *arg)
8823 {
8824         if (!env || !arg)
8825                 return EINVAL;
8826
8827         *arg = env->me_flags;
8828         return MDB_SUCCESS;
8829 }
8830
8831 int ESECT
8832 mdb_env_set_userctx(MDB_env *env, void *ctx)
8833 {
8834         if (!env)
8835                 return EINVAL;
8836         env->me_userctx = ctx;
8837         return MDB_SUCCESS;
8838 }
8839
8840 void * ESECT
8841 mdb_env_get_userctx(MDB_env *env)
8842 {
8843         return env ? env->me_userctx : NULL;
8844 }
8845
8846 int ESECT
8847 mdb_env_set_assert(MDB_env *env, MDB_assert_func *func)
8848 {
8849         if (!env)
8850                 return EINVAL;
8851 #ifndef NDEBUG
8852         env->me_assert_func = func;
8853 #endif
8854         return MDB_SUCCESS;
8855 }
8856
8857 int ESECT
8858 mdb_env_get_path(MDB_env *env, const char **arg)
8859 {
8860         if (!env || !arg)
8861                 return EINVAL;
8862
8863         *arg = env->me_path;
8864         return MDB_SUCCESS;
8865 }
8866
8867 int ESECT
8868 mdb_env_get_fd(MDB_env *env, mdb_filehandle_t *arg)
8869 {
8870         if (!env || !arg)
8871                 return EINVAL;
8872
8873         *arg = env->me_fd;
8874         return MDB_SUCCESS;
8875 }
8876
8877 /** Common code for #mdb_stat() and #mdb_env_stat().
8878  * @param[in] env the environment to operate in.
8879  * @param[in] db the #MDB_db record containing the stats to return.
8880  * @param[out] arg the address of an #MDB_stat structure to receive the stats.
8881  * @return 0, this function always succeeds.
8882  */
8883 static int ESECT
8884 mdb_stat0(MDB_env *env, MDB_db *db, MDB_stat *arg)
8885 {
8886         arg->ms_psize = env->me_psize;
8887         arg->ms_depth = db->md_depth;
8888         arg->ms_branch_pages = db->md_branch_pages;
8889         arg->ms_leaf_pages = db->md_leaf_pages;
8890         arg->ms_overflow_pages = db->md_overflow_pages;
8891         arg->ms_entries = db->md_entries;
8892
8893         return MDB_SUCCESS;
8894 }
8895
8896 int ESECT
8897 mdb_env_stat(MDB_env *env, MDB_stat *arg)
8898 {
8899         int toggle;
8900
8901         if (env == NULL || arg == NULL)
8902                 return EINVAL;
8903
8904         toggle = mdb_env_pick_meta(env);
8905
8906         return mdb_stat0(env, &env->me_metas[toggle]->mm_dbs[MAIN_DBI], arg);
8907 }
8908
8909 int ESECT
8910 mdb_env_info(MDB_env *env, MDB_envinfo *arg)
8911 {
8912         int toggle;
8913
8914         if (env == NULL || arg == NULL)
8915                 return EINVAL;
8916
8917         toggle = mdb_env_pick_meta(env);
8918         arg->me_mapaddr = env->me_metas[toggle]->mm_address;
8919         arg->me_mapsize = env->me_mapsize;
8920         arg->me_maxreaders = env->me_maxreaders;
8921
8922         /* me_numreaders may be zero if this process never used any readers. Use
8923          * the shared numreader count if it exists.
8924          */
8925         arg->me_numreaders = env->me_txns ? env->me_txns->mti_numreaders : env->me_numreaders;
8926
8927         arg->me_last_pgno = env->me_metas[toggle]->mm_last_pg;
8928         arg->me_last_txnid = env->me_metas[toggle]->mm_txnid;
8929         return MDB_SUCCESS;
8930 }
8931
8932 /** Set the default comparison functions for a database.
8933  * Called immediately after a database is opened to set the defaults.
8934  * The user can then override them with #mdb_set_compare() or
8935  * #mdb_set_dupsort().
8936  * @param[in] txn A transaction handle returned by #mdb_txn_begin()
8937  * @param[in] dbi A database handle returned by #mdb_dbi_open()
8938  */
8939 static void
8940 mdb_default_cmp(MDB_txn *txn, MDB_dbi dbi)
8941 {
8942         uint16_t f = txn->mt_dbs[dbi].md_flags;
8943
8944         txn->mt_dbxs[dbi].md_cmp =
8945                 (f & MDB_REVERSEKEY) ? mdb_cmp_memnr :
8946                 (f & MDB_INTEGERKEY) ? mdb_cmp_cint  : mdb_cmp_memn;
8947
8948         txn->mt_dbxs[dbi].md_dcmp =
8949                 !(f & MDB_DUPSORT) ? 0 :
8950                 ((f & MDB_INTEGERDUP)
8951                  ? ((f & MDB_DUPFIXED)   ? mdb_cmp_int   : mdb_cmp_cint)
8952                  : ((f & MDB_REVERSEDUP) ? mdb_cmp_memnr : mdb_cmp_memn));
8953 }
8954
8955 int mdb_dbi_open(MDB_txn *txn, const char *name, unsigned int flags, MDB_dbi *dbi)
8956 {
8957         MDB_val key, data;
8958         MDB_dbi i;
8959         MDB_cursor mc;
8960         MDB_db dummy;
8961         int rc, dbflag, exact;
8962         unsigned int unused = 0, seq;
8963         size_t len;
8964
8965         if (txn->mt_dbxs[FREE_DBI].md_cmp == NULL) {
8966                 mdb_default_cmp(txn, FREE_DBI);
8967         }
8968
8969         if ((flags & VALID_FLAGS) != flags)
8970                 return EINVAL;
8971         if (txn->mt_flags & MDB_TXN_ERROR)
8972                 return MDB_BAD_TXN;
8973
8974         /* main DB? */
8975         if (!name) {
8976                 *dbi = MAIN_DBI;
8977                 if (flags & PERSISTENT_FLAGS) {
8978                         uint16_t f2 = flags & PERSISTENT_FLAGS;
8979                         /* make sure flag changes get committed */
8980                         if ((txn->mt_dbs[MAIN_DBI].md_flags | f2) != txn->mt_dbs[MAIN_DBI].md_flags) {
8981                                 txn->mt_dbs[MAIN_DBI].md_flags |= f2;
8982                                 txn->mt_flags |= MDB_TXN_DIRTY;
8983                         }
8984                 }
8985                 mdb_default_cmp(txn, MAIN_DBI);
8986                 return MDB_SUCCESS;
8987         }
8988
8989         if (txn->mt_dbxs[MAIN_DBI].md_cmp == NULL) {
8990                 mdb_default_cmp(txn, MAIN_DBI);
8991         }
8992
8993         /* Is the DB already open? */
8994         len = strlen(name);
8995         for (i=2; i<txn->mt_numdbs; i++) {
8996                 if (!txn->mt_dbxs[i].md_name.mv_size) {
8997                         /* Remember this free slot */
8998                         if (!unused) unused = i;
8999                         continue;
9000                 }
9001                 if (len == txn->mt_dbxs[i].md_name.mv_size &&
9002                         !strncmp(name, txn->mt_dbxs[i].md_name.mv_data, len)) {
9003                         *dbi = i;
9004                         return MDB_SUCCESS;
9005                 }
9006         }
9007
9008         /* If no free slot and max hit, fail */
9009         if (!unused && txn->mt_numdbs >= txn->mt_env->me_maxdbs)
9010                 return MDB_DBS_FULL;
9011
9012         /* Cannot mix named databases with some mainDB flags */
9013         if (txn->mt_dbs[MAIN_DBI].md_flags & (MDB_DUPSORT|MDB_INTEGERKEY))
9014                 return (flags & MDB_CREATE) ? MDB_INCOMPATIBLE : MDB_NOTFOUND;
9015
9016         /* Find the DB info */
9017         dbflag = DB_NEW|DB_VALID;
9018         exact = 0;
9019         key.mv_size = len;
9020         key.mv_data = (void *)name;
9021         mdb_cursor_init(&mc, txn, MAIN_DBI, NULL);
9022         rc = mdb_cursor_set(&mc, &key, &data, MDB_SET, &exact);
9023         if (rc == MDB_SUCCESS) {
9024                 /* make sure this is actually a DB */
9025                 MDB_node *node = NODEPTR(mc.mc_pg[mc.mc_top], mc.mc_ki[mc.mc_top]);
9026                 if (!(node->mn_flags & F_SUBDATA))
9027                         return MDB_INCOMPATIBLE;
9028         } else if (rc == MDB_NOTFOUND && (flags & MDB_CREATE)) {
9029                 /* Create if requested */
9030                 data.mv_size = sizeof(MDB_db);
9031                 data.mv_data = &dummy;
9032                 memset(&dummy, 0, sizeof(dummy));
9033                 dummy.md_root = P_INVALID;
9034                 dummy.md_flags = flags & PERSISTENT_FLAGS;
9035                 rc = mdb_cursor_put(&mc, &key, &data, F_SUBDATA);
9036                 dbflag |= DB_DIRTY;
9037         }
9038
9039         /* OK, got info, add to table */
9040         if (rc == MDB_SUCCESS) {
9041                 unsigned int slot = unused ? unused : txn->mt_numdbs;
9042                 txn->mt_dbxs[slot].md_name.mv_data = strdup(name);
9043                 txn->mt_dbxs[slot].md_name.mv_size = len;
9044                 txn->mt_dbxs[slot].md_rel = NULL;
9045                 txn->mt_dbflags[slot] = dbflag;
9046                 /* txn-> and env-> are the same in read txns, use
9047                  * tmp variable to avoid undefined assignment
9048                  */
9049                 seq = ++txn->mt_env->me_dbiseqs[slot];
9050                 txn->mt_dbiseqs[slot] = seq;
9051
9052                 memcpy(&txn->mt_dbs[slot], data.mv_data, sizeof(MDB_db));
9053                 *dbi = slot;
9054                 mdb_default_cmp(txn, slot);
9055                 if (!unused) {
9056                         txn->mt_numdbs++;
9057                 }
9058         }
9059
9060         return rc;
9061 }
9062
9063 int mdb_stat(MDB_txn *txn, MDB_dbi dbi, MDB_stat *arg)
9064 {
9065         if (!arg || !TXN_DBI_EXIST(txn, dbi))
9066                 return EINVAL;
9067
9068         if (txn->mt_flags & MDB_TXN_ERROR)
9069                 return MDB_BAD_TXN;
9070
9071         if (txn->mt_dbflags[dbi] & DB_STALE) {
9072                 MDB_cursor mc;
9073                 MDB_xcursor mx;
9074                 /* Stale, must read the DB's root. cursor_init does it for us. */
9075                 mdb_cursor_init(&mc, txn, dbi, &mx);
9076         }
9077         return mdb_stat0(txn->mt_env, &txn->mt_dbs[dbi], arg);
9078 }
9079
9080 void mdb_dbi_close(MDB_env *env, MDB_dbi dbi)
9081 {
9082         char *ptr;
9083         if (dbi <= MAIN_DBI || dbi >= env->me_maxdbs)
9084                 return;
9085         ptr = env->me_dbxs[dbi].md_name.mv_data;
9086         /* If there was no name, this was already closed */
9087         if (ptr) {
9088                 env->me_dbxs[dbi].md_name.mv_data = NULL;
9089                 env->me_dbxs[dbi].md_name.mv_size = 0;
9090                 env->me_dbflags[dbi] = 0;
9091                 env->me_dbiseqs[dbi]++;
9092                 free(ptr);
9093         }
9094 }
9095
9096 int mdb_dbi_flags(MDB_txn *txn, MDB_dbi dbi, unsigned int *flags)
9097 {
9098         /* We could return the flags for the FREE_DBI too but what's the point? */
9099         if (dbi == FREE_DBI || !TXN_DBI_EXIST(txn, dbi))
9100                 return EINVAL;
9101         *flags = txn->mt_dbs[dbi].md_flags & PERSISTENT_FLAGS;
9102         return MDB_SUCCESS;
9103 }
9104
9105 /** Add all the DB's pages to the free list.
9106  * @param[in] mc Cursor on the DB to free.
9107  * @param[in] subs non-Zero to check for sub-DBs in this DB.
9108  * @return 0 on success, non-zero on failure.
9109  */
9110 static int
9111 mdb_drop0(MDB_cursor *mc, int subs)
9112 {
9113         int rc;
9114
9115         rc = mdb_page_search(mc, NULL, MDB_PS_FIRST);
9116         if (rc == MDB_SUCCESS) {
9117                 MDB_txn *txn = mc->mc_txn;
9118                 MDB_node *ni;
9119                 MDB_cursor mx;
9120                 unsigned int i;
9121
9122                 /* LEAF2 pages have no nodes, cannot have sub-DBs */
9123                 if (IS_LEAF2(mc->mc_pg[mc->mc_top]))
9124                         mdb_cursor_pop(mc);
9125
9126                 mdb_cursor_copy(mc, &mx);
9127                 while (mc->mc_snum > 0) {
9128                         MDB_page *mp = mc->mc_pg[mc->mc_top];
9129                         unsigned n = NUMKEYS(mp);
9130                         if (IS_LEAF(mp)) {
9131                                 for (i=0; i<n; i++) {
9132                                         ni = NODEPTR(mp, i);
9133                                         if (ni->mn_flags & F_BIGDATA) {
9134                                                 MDB_page *omp;
9135                                                 pgno_t pg;
9136                                                 memcpy(&pg, NODEDATA(ni), sizeof(pg));
9137                                                 rc = mdb_page_get(txn, pg, &omp, NULL);
9138                                                 if (rc != 0)
9139                                                         goto done;
9140                                                 mdb_cassert(mc, IS_OVERFLOW(omp));
9141                                                 rc = mdb_midl_append_range(&txn->mt_free_pgs,
9142                                                         pg, omp->mp_pages);
9143                                                 if (rc)
9144                                                         goto done;
9145                                         } else if (subs && (ni->mn_flags & F_SUBDATA)) {
9146                                                 mdb_xcursor_init1(mc, ni);
9147                                                 rc = mdb_drop0(&mc->mc_xcursor->mx_cursor, 0);
9148                                                 if (rc)
9149                                                         goto done;
9150                                         }
9151                                 }
9152                         } else {
9153                                 if ((rc = mdb_midl_need(&txn->mt_free_pgs, n)) != 0)
9154                                         goto done;
9155                                 for (i=0; i<n; i++) {
9156                                         pgno_t pg;
9157                                         ni = NODEPTR(mp, i);
9158                                         pg = NODEPGNO(ni);
9159                                         /* free it */
9160                                         mdb_midl_xappend(txn->mt_free_pgs, pg);
9161                                 }
9162                         }
9163                         if (!mc->mc_top)
9164                                 break;
9165                         mc->mc_ki[mc->mc_top] = i;
9166                         rc = mdb_cursor_sibling(mc, 1);
9167                         if (rc) {
9168                                 if (rc != MDB_NOTFOUND)
9169                                         goto done;
9170                                 /* no more siblings, go back to beginning
9171                                  * of previous level.
9172                                  */
9173                                 mdb_cursor_pop(mc);
9174                                 mc->mc_ki[0] = 0;
9175                                 for (i=1; i<mc->mc_snum; i++) {
9176                                         mc->mc_ki[i] = 0;
9177                                         mc->mc_pg[i] = mx.mc_pg[i];
9178                                 }
9179                         }
9180                 }
9181                 /* free it */
9182                 rc = mdb_midl_append(&txn->mt_free_pgs, mc->mc_db->md_root);
9183 done:
9184                 if (rc)
9185                         txn->mt_flags |= MDB_TXN_ERROR;
9186         } else if (rc == MDB_NOTFOUND) {
9187                 rc = MDB_SUCCESS;
9188         }
9189         return rc;
9190 }
9191
9192 int mdb_drop(MDB_txn *txn, MDB_dbi dbi, int del)
9193 {
9194         MDB_cursor *mc, *m2;
9195         int rc;
9196
9197         if ((unsigned)del > 1 || dbi == FREE_DBI || !TXN_DBI_EXIST(txn, dbi))
9198                 return EINVAL;
9199
9200         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY))
9201                 return EACCES;
9202
9203         if (dbi > MAIN_DBI && TXN_DBI_CHANGED(txn, dbi))
9204                 return MDB_BAD_DBI;
9205
9206         rc = mdb_cursor_open(txn, dbi, &mc);
9207         if (rc)
9208                 return rc;
9209
9210         rc = mdb_drop0(mc, mc->mc_db->md_flags & MDB_DUPSORT);
9211         /* Invalidate the dropped DB's cursors */
9212         for (m2 = txn->mt_cursors[dbi]; m2; m2 = m2->mc_next)
9213                 m2->mc_flags &= ~(C_INITIALIZED|C_EOF);
9214         if (rc)
9215                 goto leave;
9216
9217         /* Can't delete the main DB */
9218         if (del && dbi > MAIN_DBI) {
9219                 rc = mdb_del0(txn, MAIN_DBI, &mc->mc_dbx->md_name, NULL, 0);
9220                 if (!rc) {
9221                         txn->mt_dbflags[dbi] = DB_STALE;
9222                         mdb_dbi_close(txn->mt_env, dbi);
9223                 } else {
9224                         txn->mt_flags |= MDB_TXN_ERROR;
9225                 }
9226         } else {
9227                 /* reset the DB record, mark it dirty */
9228                 txn->mt_dbflags[dbi] |= DB_DIRTY;
9229                 txn->mt_dbs[dbi].md_depth = 0;
9230                 txn->mt_dbs[dbi].md_branch_pages = 0;
9231                 txn->mt_dbs[dbi].md_leaf_pages = 0;
9232                 txn->mt_dbs[dbi].md_overflow_pages = 0;
9233                 txn->mt_dbs[dbi].md_entries = 0;
9234                 txn->mt_dbs[dbi].md_root = P_INVALID;
9235
9236                 txn->mt_flags |= MDB_TXN_DIRTY;
9237         }
9238 leave:
9239         mdb_cursor_close(mc);
9240         return rc;
9241 }
9242
9243 int mdb_set_compare(MDB_txn *txn, MDB_dbi dbi, MDB_cmp_func *cmp)
9244 {
9245         if (dbi == FREE_DBI || !TXN_DBI_EXIST(txn, dbi))
9246                 return EINVAL;
9247
9248         txn->mt_dbxs[dbi].md_cmp = cmp;
9249         return MDB_SUCCESS;
9250 }
9251
9252 int mdb_set_dupsort(MDB_txn *txn, MDB_dbi dbi, MDB_cmp_func *cmp)
9253 {
9254         if (dbi == FREE_DBI || !TXN_DBI_EXIST(txn, dbi))
9255                 return EINVAL;
9256
9257         txn->mt_dbxs[dbi].md_dcmp = cmp;
9258         return MDB_SUCCESS;
9259 }
9260
9261 int mdb_set_relfunc(MDB_txn *txn, MDB_dbi dbi, MDB_rel_func *rel)
9262 {
9263         if (dbi == FREE_DBI || !TXN_DBI_EXIST(txn, dbi))
9264                 return EINVAL;
9265
9266         txn->mt_dbxs[dbi].md_rel = rel;
9267         return MDB_SUCCESS;
9268 }
9269
9270 int mdb_set_relctx(MDB_txn *txn, MDB_dbi dbi, void *ctx)
9271 {
9272         if (dbi == FREE_DBI || !TXN_DBI_EXIST(txn, dbi))
9273                 return EINVAL;
9274
9275         txn->mt_dbxs[dbi].md_relctx = ctx;
9276         return MDB_SUCCESS;
9277 }
9278
9279 int ESECT
9280 mdb_env_get_maxkeysize(MDB_env *env)
9281 {
9282         return ENV_MAXKEY(env);
9283 }
9284
9285 int ESECT
9286 mdb_reader_list(MDB_env *env, MDB_msg_func *func, void *ctx)
9287 {
9288         unsigned int i, rdrs;
9289         MDB_reader *mr;
9290         char buf[64];
9291         int rc = 0, first = 1;
9292
9293         if (!env || !func)
9294                 return -1;
9295         if (!env->me_txns) {
9296                 return func("(no reader locks)\n", ctx);
9297         }
9298         rdrs = env->me_txns->mti_numreaders;
9299         mr = env->me_txns->mti_readers;
9300         for (i=0; i<rdrs; i++) {
9301                 if (mr[i].mr_pid) {
9302                         txnid_t txnid = mr[i].mr_txnid;
9303                         sprintf(buf, txnid == (txnid_t)-1 ?
9304                                 "%10d %"Z"x -\n" : "%10d %"Z"x %"Z"u\n",
9305                                 (int)mr[i].mr_pid, (size_t)mr[i].mr_tid, txnid);
9306                         if (first) {
9307                                 first = 0;
9308                                 rc = func("    pid     thread     txnid\n", ctx);
9309                                 if (rc < 0)
9310                                         break;
9311                         }
9312                         rc = func(buf, ctx);
9313                         if (rc < 0)
9314                                 break;
9315                 }
9316         }
9317         if (first) {
9318                 rc = func("(no active readers)\n", ctx);
9319         }
9320         return rc;
9321 }
9322
9323 /** Insert pid into list if not already present.
9324  * return -1 if already present.
9325  */
9326 static int ESECT
9327 mdb_pid_insert(MDB_PID_T *ids, MDB_PID_T pid)
9328 {
9329         /* binary search of pid in list */
9330         unsigned base = 0;
9331         unsigned cursor = 1;
9332         int val = 0;
9333         unsigned n = ids[0];
9334
9335         while( 0 < n ) {
9336                 unsigned pivot = n >> 1;
9337                 cursor = base + pivot + 1;
9338                 val = pid - ids[cursor];
9339
9340                 if( val < 0 ) {
9341                         n = pivot;
9342
9343                 } else if ( val > 0 ) {
9344                         base = cursor;
9345                         n -= pivot + 1;
9346
9347                 } else {
9348                         /* found, so it's a duplicate */
9349                         return -1;
9350                 }
9351         }
9352
9353         if( val > 0 ) {
9354                 ++cursor;
9355         }
9356         ids[0]++;
9357         for (n = ids[0]; n > cursor; n--)
9358                 ids[n] = ids[n-1];
9359         ids[n] = pid;
9360         return 0;
9361 }
9362
9363 int ESECT
9364 mdb_reader_check(MDB_env *env, int *dead)
9365 {
9366         unsigned int i, j, rdrs;
9367         MDB_reader *mr;
9368         MDB_PID_T *pids, pid;
9369         int count = 0;
9370
9371         if (!env)
9372                 return EINVAL;
9373         if (dead)
9374                 *dead = 0;
9375         if (!env->me_txns)
9376                 return MDB_SUCCESS;
9377         rdrs = env->me_txns->mti_numreaders;
9378         pids = malloc((rdrs+1) * sizeof(MDB_PID_T));
9379         if (!pids)
9380                 return ENOMEM;
9381         pids[0] = 0;
9382         mr = env->me_txns->mti_readers;
9383         for (i=0; i<rdrs; i++) {
9384                 if (mr[i].mr_pid && mr[i].mr_pid != env->me_pid) {
9385                         pid = mr[i].mr_pid;
9386                         if (mdb_pid_insert(pids, pid) == 0) {
9387                                 if (!mdb_reader_pid(env, Pidcheck, pid)) {
9388                                         LOCK_MUTEX_R(env);
9389                                         /* Recheck, a new process may have reused pid */
9390                                         if (!mdb_reader_pid(env, Pidcheck, pid)) {
9391                                                 for (j=i; j<rdrs; j++)
9392                                                         if (mr[j].mr_pid == pid) {
9393                                                                 DPRINTF(("clear stale reader pid %u txn %"Z"d",
9394                                                                         (unsigned) pid, mr[j].mr_txnid));
9395                                                                 mr[j].mr_pid = 0;
9396                                                                 count++;
9397                                                         }
9398                                         }
9399                                         UNLOCK_MUTEX_R(env);
9400                                 }
9401                         }
9402                 }
9403         }
9404         free(pids);
9405         if (dead)
9406                 *dead = count;
9407         return MDB_SUCCESS;
9408 }
9409 /** @} */