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