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