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