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