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