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