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