]> git.sur5r.net Git - openldap/blob - libraries/libmdb/mdb.c
533ec7b4a8687b4306b8546368ecd2376fe63a47
[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 #ifdef _WIN32
3132         if (F_ISSET(flags, MDB_RDONLY)) {
3133                 oflags = GENERIC_READ;
3134                 len = OPEN_EXISTING;
3135         } else {
3136                 oflags = GENERIC_READ|GENERIC_WRITE;
3137                 len = OPEN_ALWAYS;
3138         }
3139         mode = FILE_ATTRIBUTE_NORMAL;
3140         env->me_fd = CreateFile(dpath, oflags, FILE_SHARE_READ|FILE_SHARE_WRITE,
3141                 NULL, len, mode, NULL);
3142 #else
3143         if (F_ISSET(flags, MDB_RDONLY))
3144                 oflags = O_RDONLY;
3145         else
3146                 oflags = O_RDWR | O_CREAT;
3147
3148         env->me_fd = open(dpath, oflags, mode);
3149 #endif
3150         if (env->me_fd == INVALID_HANDLE_VALUE) {
3151                 rc = ErrCode();
3152                 goto leave;
3153         }
3154
3155         if ((rc = mdb_env_open2(env, flags)) == MDB_SUCCESS) {
3156                 if (flags & (MDB_RDONLY|MDB_NOSYNC|MDB_NOMETASYNC|MDB_WRITEMAP)) {
3157                         env->me_mfd = env->me_fd;
3158                 } else {
3159                         /* synchronous fd for meta writes */
3160 #ifdef _WIN32
3161                         env->me_mfd = CreateFile(dpath, oflags,
3162                                 FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, len,
3163                                 mode | FILE_FLAG_WRITE_THROUGH, NULL);
3164 #else
3165                         env->me_mfd = open(dpath, oflags | MDB_DSYNC, mode);
3166 #endif
3167                         if (env->me_mfd == INVALID_HANDLE_VALUE) {
3168                                 rc = ErrCode();
3169                                 goto leave;
3170                         }
3171                 }
3172                 DPRINTF("opened dbenv %p", (void *) env);
3173                 pthread_key_create(&env->me_txkey, mdb_env_reader_dest);
3174                 env->me_numdbs = 2;     /* this notes that me_txkey was set */
3175 #ifdef _WIN32
3176                 /* Windows TLS callbacks need help finding their TLS info. */
3177                 if (mdb_tls_nkeys < MAX_TLS_KEYS)
3178                         mdb_tls_keys[mdb_tls_nkeys++] = env->me_txkey;
3179                 else {
3180                         rc = MDB_TLS_FULL;
3181                         goto leave;
3182                 }
3183 #endif
3184                 if (excl > 0) {
3185                         rc = mdb_env_share_locks(env, &excl);
3186                         if (rc)
3187                                 goto leave;
3188                 }
3189                 env->me_dbxs = calloc(env->me_maxdbs, sizeof(MDB_dbx));
3190                 env->me_dbflags = calloc(env->me_maxdbs, sizeof(uint16_t));
3191                 env->me_path = strdup(path);
3192                 if (!env->me_dbxs || !env->me_dbflags || !env->me_path)
3193                         rc = ENOMEM;
3194         }
3195
3196 leave:
3197         if (rc) {
3198                 mdb_env_close0(env, excl);
3199         }
3200         free(lpath);
3201         return rc;
3202 }
3203
3204 /** Destroy resources from mdb_env_open() and clear our readers */
3205 static void
3206 mdb_env_close0(MDB_env *env, int excl)
3207 {
3208         int i;
3209
3210         if (env->me_lfd == INVALID_HANDLE_VALUE) /* 1st field to get inited */
3211                 return;
3212
3213         free(env->me_dbflags);
3214         free(env->me_dbxs);
3215         free(env->me_path);
3216
3217         if (env->me_numdbs) {
3218                 pthread_key_delete(env->me_txkey);
3219 #ifdef _WIN32
3220                 /* Delete our key from the global list */
3221                 for (i=0; i<mdb_tls_nkeys; i++)
3222                         if (mdb_tls_keys[i] == env->me_txkey) {
3223                                 mdb_tls_keys[i] = mdb_tls_keys[mdb_tls_nkeys-1];
3224                                 mdb_tls_nkeys--;
3225                                 break;
3226                         }
3227 #endif
3228         }
3229
3230         if (env->me_map) {
3231                 munmap(env->me_map, env->me_mapsize);
3232         }
3233         if (env->me_mfd != env->me_fd && env->me_mfd != INVALID_HANDLE_VALUE)
3234                 close(env->me_mfd);
3235         if (env->me_fd != INVALID_HANDLE_VALUE)
3236                 close(env->me_fd);
3237         if (env->me_txns) {
3238                 pid_t pid = env->me_pid;
3239                 /* Clearing readers is done in this function because
3240                  * me_txkey with its destructor must be disabled first.
3241                  */
3242                 for (i = env->me_numreaders; --i >= 0; )
3243                         if (env->me_txns->mti_readers[i].mr_pid == pid)
3244                                 env->me_txns->mti_readers[i].mr_pid = 0;
3245 #ifdef _WIN32
3246                 if (env->me_rmutex) {
3247                         CloseHandle(env->me_rmutex);
3248                         if (env->me_wmutex) CloseHandle(env->me_wmutex);
3249                 }
3250                 /* Windows automatically destroys the mutexes when
3251                  * the last handle closes.
3252                  */
3253 #elif defined(MDB_USE_POSIX_SEM)
3254                 if (env->me_rmutex != SEM_FAILED) {
3255                         sem_close(env->me_rmutex);
3256                         if (env->me_wmutex != SEM_FAILED)
3257                                 sem_close(env->me_wmutex);
3258                         /* If we have the filelock:  If we are the
3259                          * only remaining user, clean up semaphores.
3260                          */
3261                         if (excl == 0)
3262                                 mdb_env_excl_lock(env, &excl);
3263                         if (excl > 0) {
3264                                 sem_unlink(env->me_txns->mti_rmname);
3265                                 sem_unlink(env->me_txns->mti_wmname);
3266                         }
3267                 }
3268 #endif
3269                 munmap((void *)env->me_txns, (env->me_maxreaders-1)*sizeof(MDB_reader)+sizeof(MDB_txninfo));
3270         }
3271         close(env->me_lfd);
3272
3273         env->me_lfd = INVALID_HANDLE_VALUE;     /* Mark env as reset */
3274 }
3275
3276 void
3277 mdb_env_close(MDB_env *env)
3278 {
3279         MDB_page *dp;
3280
3281         if (env == NULL)
3282                 return;
3283
3284         VGMEMP_DESTROY(env);
3285         while ((dp = env->me_dpages) != NULL) {
3286                 VGMEMP_DEFINED(&dp->mp_next, sizeof(dp->mp_next));
3287                 env->me_dpages = dp->mp_next;
3288                 free(dp);
3289         }
3290
3291         mdb_env_close0(env, 0);
3292         mdb_midl_free(env->me_free_pgs);
3293         free(env);
3294 }
3295
3296 /** Compare two items pointing at aligned size_t's */
3297 static int
3298 mdb_cmp_long(const MDB_val *a, const MDB_val *b)
3299 {
3300         return (*(size_t *)a->mv_data < *(size_t *)b->mv_data) ? -1 :
3301                 *(size_t *)a->mv_data > *(size_t *)b->mv_data;
3302 }
3303
3304 /** Compare two items pointing at aligned int's */
3305 static int
3306 mdb_cmp_int(const MDB_val *a, const MDB_val *b)
3307 {
3308         return (*(unsigned int *)a->mv_data < *(unsigned int *)b->mv_data) ? -1 :
3309                 *(unsigned int *)a->mv_data > *(unsigned int *)b->mv_data;
3310 }
3311
3312 /** Compare two items pointing at ints of unknown alignment.
3313  *      Nodes and keys are guaranteed to be 2-byte aligned.
3314  */
3315 static int
3316 mdb_cmp_cint(const MDB_val *a, const MDB_val *b)
3317 {
3318 #if BYTE_ORDER == LITTLE_ENDIAN
3319         unsigned short *u, *c;
3320         int x;
3321
3322         u = (unsigned short *) ((char *) a->mv_data + a->mv_size);
3323         c = (unsigned short *) ((char *) b->mv_data + a->mv_size);
3324         do {
3325                 x = *--u - *--c;
3326         } while(!x && u > (unsigned short *)a->mv_data);
3327         return x;
3328 #else
3329         return memcmp(a->mv_data, b->mv_data, a->mv_size);
3330 #endif
3331 }
3332
3333 /** Compare two items lexically */
3334 static int
3335 mdb_cmp_memn(const MDB_val *a, const MDB_val *b)
3336 {
3337         int diff;
3338         ssize_t len_diff;
3339         unsigned int len;
3340
3341         len = a->mv_size;
3342         len_diff = (ssize_t) a->mv_size - (ssize_t) b->mv_size;
3343         if (len_diff > 0) {
3344                 len = b->mv_size;
3345                 len_diff = 1;
3346         }
3347
3348         diff = memcmp(a->mv_data, b->mv_data, len);
3349         return diff ? diff : len_diff<0 ? -1 : len_diff;
3350 }
3351
3352 /** Compare two items in reverse byte order */
3353 static int
3354 mdb_cmp_memnr(const MDB_val *a, const MDB_val *b)
3355 {
3356         const unsigned char     *p1, *p2, *p1_lim;
3357         ssize_t len_diff;
3358         int diff;
3359
3360         p1_lim = (const unsigned char *)a->mv_data;
3361         p1 = (const unsigned char *)a->mv_data + a->mv_size;
3362         p2 = (const unsigned char *)b->mv_data + b->mv_size;
3363
3364         len_diff = (ssize_t) a->mv_size - (ssize_t) b->mv_size;
3365         if (len_diff > 0) {
3366                 p1_lim += len_diff;
3367                 len_diff = 1;
3368         }
3369
3370         while (p1 > p1_lim) {
3371                 diff = *--p1 - *--p2;
3372                 if (diff)
3373                         return diff;
3374         }
3375         return len_diff<0 ? -1 : len_diff;
3376 }
3377
3378 /** Search for key within a page, using binary search.
3379  * Returns the smallest entry larger or equal to the key.
3380  * If exactp is non-null, stores whether the found entry was an exact match
3381  * in *exactp (1 or 0).
3382  * Updates the cursor index with the index of the found entry.
3383  * If no entry larger or equal to the key is found, returns NULL.
3384  */
3385 static MDB_node *
3386 mdb_node_search(MDB_cursor *mc, MDB_val *key, int *exactp)
3387 {
3388         unsigned int     i = 0, nkeys;
3389         int              low, high;
3390         int              rc = 0;
3391         MDB_page *mp = mc->mc_pg[mc->mc_top];
3392         MDB_node        *node = NULL;
3393         MDB_val  nodekey;
3394         MDB_cmp_func *cmp;
3395         DKBUF;
3396
3397         nkeys = NUMKEYS(mp);
3398
3399 #if MDB_DEBUG
3400         {
3401         pgno_t pgno;
3402         COPY_PGNO(pgno, mp->mp_pgno);
3403         DPRINTF("searching %u keys in %s %spage %zu",
3404             nkeys, IS_LEAF(mp) ? "leaf" : "branch", IS_SUBP(mp) ? "sub-" : "",
3405             pgno);
3406         }
3407 #endif
3408
3409         assert(nkeys > 0);
3410
3411         low = IS_LEAF(mp) ? 0 : 1;
3412         high = nkeys - 1;
3413         cmp = mc->mc_dbx->md_cmp;
3414
3415         /* Branch pages have no data, so if using integer keys,
3416          * alignment is guaranteed. Use faster mdb_cmp_int.
3417          */
3418         if (cmp == mdb_cmp_cint && IS_BRANCH(mp)) {
3419                 if (NODEPTR(mp, 1)->mn_ksize == sizeof(size_t))
3420                         cmp = mdb_cmp_long;
3421                 else
3422                         cmp = mdb_cmp_int;
3423         }
3424
3425         if (IS_LEAF2(mp)) {
3426                 nodekey.mv_size = mc->mc_db->md_pad;
3427                 node = NODEPTR(mp, 0);  /* fake */
3428                 while (low <= high) {
3429                         i = (low + high) >> 1;
3430                         nodekey.mv_data = LEAF2KEY(mp, i, nodekey.mv_size);
3431                         rc = cmp(key, &nodekey);
3432                         DPRINTF("found leaf index %u [%s], rc = %i",
3433                             i, DKEY(&nodekey), rc);
3434                         if (rc == 0)
3435                                 break;
3436                         if (rc > 0)
3437                                 low = i + 1;
3438                         else
3439                                 high = i - 1;
3440                 }
3441         } else {
3442                 while (low <= high) {
3443                         i = (low + high) >> 1;
3444
3445                         node = NODEPTR(mp, i);
3446                         nodekey.mv_size = NODEKSZ(node);
3447                         nodekey.mv_data = NODEKEY(node);
3448
3449                         rc = cmp(key, &nodekey);
3450 #if MDB_DEBUG
3451                         if (IS_LEAF(mp))
3452                                 DPRINTF("found leaf index %u [%s], rc = %i",
3453                                     i, DKEY(&nodekey), rc);
3454                         else
3455                                 DPRINTF("found branch index %u [%s -> %zu], rc = %i",
3456                                     i, DKEY(&nodekey), NODEPGNO(node), rc);
3457 #endif
3458                         if (rc == 0)
3459                                 break;
3460                         if (rc > 0)
3461                                 low = i + 1;
3462                         else
3463                                 high = i - 1;
3464                 }
3465         }
3466
3467         if (rc > 0) {   /* Found entry is less than the key. */
3468                 i++;    /* Skip to get the smallest entry larger than key. */
3469                 if (!IS_LEAF2(mp))
3470                         node = NODEPTR(mp, i);
3471         }
3472         if (exactp)
3473                 *exactp = (rc == 0);
3474         /* store the key index */
3475         mc->mc_ki[mc->mc_top] = i;
3476         if (i >= nkeys)
3477                 /* There is no entry larger or equal to the key. */
3478                 return NULL;
3479
3480         /* nodeptr is fake for LEAF2 */
3481         return node;
3482 }
3483
3484 #if 0
3485 static void
3486 mdb_cursor_adjust(MDB_cursor *mc, func)
3487 {
3488         MDB_cursor *m2;
3489
3490         for (m2 = mc->mc_txn->mt_cursors[mc->mc_dbi]; m2; m2=m2->mc_next) {
3491                 if (m2->mc_pg[m2->mc_top] == mc->mc_pg[mc->mc_top]) {
3492                         func(mc, m2);
3493                 }
3494         }
3495 }
3496 #endif
3497
3498 /** Pop a page off the top of the cursor's stack. */
3499 static void
3500 mdb_cursor_pop(MDB_cursor *mc)
3501 {
3502         if (mc->mc_snum) {
3503 #if MDB_DEBUG
3504                 MDB_page        *top = mc->mc_pg[mc->mc_top];
3505 #endif
3506                 mc->mc_snum--;
3507                 if (mc->mc_snum)
3508                         mc->mc_top--;
3509
3510                 DPRINTF("popped page %zu off db %u cursor %p", top->mp_pgno,
3511                         mc->mc_dbi, (void *) mc);
3512         }
3513 }
3514
3515 /** Push a page onto the top of the cursor's stack. */
3516 static int
3517 mdb_cursor_push(MDB_cursor *mc, MDB_page *mp)
3518 {
3519         DPRINTF("pushing page %zu on db %u cursor %p", mp->mp_pgno,
3520                 mc->mc_dbi, (void *) mc);
3521
3522         if (mc->mc_snum >= CURSOR_STACK) {
3523                 assert(mc->mc_snum < CURSOR_STACK);
3524                 return MDB_CURSOR_FULL;
3525         }
3526
3527         mc->mc_top = mc->mc_snum++;
3528         mc->mc_pg[mc->mc_top] = mp;
3529         mc->mc_ki[mc->mc_top] = 0;
3530
3531         return MDB_SUCCESS;
3532 }
3533
3534 /** Find the address of the page corresponding to a given page number.
3535  * @param[in] txn the transaction for this access.
3536  * @param[in] pgno the page number for the page to retrieve.
3537  * @param[out] ret address of a pointer where the page's address will be stored.
3538  * @return 0 on success, non-zero on failure.
3539  */
3540 static int
3541 mdb_page_get(MDB_txn *txn, pgno_t pgno, MDB_page **ret)
3542 {
3543         MDB_page *p = NULL;
3544
3545         if (txn->mt_env->me_flags & MDB_WRITEMAP) {
3546                 if (pgno < txn->mt_next_pgno)
3547                         p = (MDB_page *)(txn->mt_env->me_map + txn->mt_env->me_psize * pgno);
3548                 goto done;
3549         }
3550         if (!F_ISSET(txn->mt_flags, MDB_TXN_RDONLY) && txn->mt_u.dirty_list[0].mid) {
3551                 unsigned x;
3552                 x = mdb_mid2l_search(txn->mt_u.dirty_list, pgno);
3553                 if (x <= txn->mt_u.dirty_list[0].mid && txn->mt_u.dirty_list[x].mid == pgno) {
3554                         p = txn->mt_u.dirty_list[x].mptr;
3555                 }
3556         }
3557         if (!p) {
3558                 if (pgno < txn->mt_next_pgno)
3559                         p = (MDB_page *)(txn->mt_env->me_map + txn->mt_env->me_psize * pgno);
3560         }
3561 done:
3562         *ret = p;
3563         if (!p) {
3564                 DPRINTF("page %zu not found", pgno);
3565                 assert(p != NULL);
3566         }
3567         return (p != NULL) ? MDB_SUCCESS : MDB_PAGE_NOTFOUND;
3568 }
3569
3570 /** Search for the page a given key should be in.
3571  * Pushes parent pages on the cursor stack. This function continues a
3572  * search on a cursor that has already been initialized. (Usually by
3573  * #mdb_page_search() but also by #mdb_node_move().)
3574  * @param[in,out] mc the cursor for this operation.
3575  * @param[in] key the key to search for. If NULL, search for the lowest
3576  * page. (This is used by #mdb_cursor_first().)
3577  * @param[in] flags If MDB_PS_MODIFY set, visited pages are updated with new page numbers.
3578  *   If MDB_PS_ROOTONLY set, just fetch root node, no further lookups.
3579  * @return 0 on success, non-zero on failure.
3580  */
3581 static int
3582 mdb_page_search_root(MDB_cursor *mc, MDB_val *key, int modify)
3583 {
3584         MDB_page        *mp = mc->mc_pg[mc->mc_top];
3585         DKBUF;
3586         int rc;
3587
3588
3589         while (IS_BRANCH(mp)) {
3590                 MDB_node        *node;
3591                 indx_t          i;
3592
3593                 DPRINTF("branch page %zu has %u keys", mp->mp_pgno, NUMKEYS(mp));
3594                 assert(NUMKEYS(mp) > 1);
3595                 DPRINTF("found index 0 to page %zu", NODEPGNO(NODEPTR(mp, 0)));
3596
3597                 if (key == NULL)        /* Initialize cursor to first page. */
3598                         i = 0;
3599                 else if (key->mv_size > MAXKEYSIZE && key->mv_data == NULL) {
3600                                                         /* cursor to last page */
3601                         i = NUMKEYS(mp)-1;
3602                 } else {
3603                         int      exact;
3604                         node = mdb_node_search(mc, key, &exact);
3605                         if (node == NULL)
3606                                 i = NUMKEYS(mp) - 1;
3607                         else {
3608                                 i = mc->mc_ki[mc->mc_top];
3609                                 if (!exact) {
3610                                         assert(i > 0);
3611                                         i--;
3612                                 }
3613                         }
3614                 }
3615
3616                 if (key)
3617                         DPRINTF("following index %u for key [%s]",
3618                             i, DKEY(key));
3619                 assert(i < NUMKEYS(mp));
3620                 node = NODEPTR(mp, i);
3621
3622                 if ((rc = mdb_page_get(mc->mc_txn, NODEPGNO(node), &mp)))
3623                         return rc;
3624
3625                 mc->mc_ki[mc->mc_top] = i;
3626                 if ((rc = mdb_cursor_push(mc, mp)))
3627                         return rc;
3628
3629                 if (modify) {
3630                         if ((rc = mdb_page_touch(mc)) != 0)
3631                                 return rc;
3632                         mp = mc->mc_pg[mc->mc_top];
3633                 }
3634         }
3635
3636         if (!IS_LEAF(mp)) {
3637                 DPRINTF("internal error, index points to a %02X page!?",
3638                     mp->mp_flags);
3639                 return MDB_CORRUPTED;
3640         }
3641
3642         DPRINTF("found leaf page %zu for key [%s]", mp->mp_pgno,
3643             key ? DKEY(key) : NULL);
3644
3645         return MDB_SUCCESS;
3646 }
3647
3648 /** Search for the page a given key should be in.
3649  * Pushes parent pages on the cursor stack. This function just sets up
3650  * the search; it finds the root page for \b mc's database and sets this
3651  * as the root of the cursor's stack. Then #mdb_page_search_root() is
3652  * called to complete the search.
3653  * @param[in,out] mc the cursor for this operation.
3654  * @param[in] key the key to search for. If NULL, search for the lowest
3655  * page. (This is used by #mdb_cursor_first().)
3656  * @param[in] modify If true, visited pages are updated with new page numbers.
3657  * @return 0 on success, non-zero on failure.
3658  */
3659 static int
3660 mdb_page_search(MDB_cursor *mc, MDB_val *key, int flags)
3661 {
3662         int              rc;
3663         pgno_t           root;
3664
3665         /* Make sure the txn is still viable, then find the root from
3666          * the txn's db table.
3667          */
3668         if (F_ISSET(mc->mc_txn->mt_flags, MDB_TXN_ERROR)) {
3669                 DPUTS("transaction has failed, must abort");
3670                 return EINVAL;
3671         } else {
3672                 /* Make sure we're using an up-to-date root */
3673                 if (mc->mc_dbi > MAIN_DBI) {
3674                         if ((*mc->mc_dbflag & DB_STALE) ||
3675                         ((flags & MDB_PS_MODIFY) && !(*mc->mc_dbflag & DB_DIRTY))) {
3676                                 MDB_cursor mc2;
3677                                 unsigned char dbflag = 0;
3678                                 mdb_cursor_init(&mc2, mc->mc_txn, MAIN_DBI, NULL);
3679                                 rc = mdb_page_search(&mc2, &mc->mc_dbx->md_name, flags & MDB_PS_MODIFY);
3680                                 if (rc)
3681                                         return rc;
3682                                 if (*mc->mc_dbflag & DB_STALE) {
3683                                         MDB_val data;
3684                                         int exact = 0;
3685                                         MDB_node *leaf = mdb_node_search(&mc2,
3686                                                 &mc->mc_dbx->md_name, &exact);
3687                                         if (!exact)
3688                                                 return MDB_NOTFOUND;
3689                                         mdb_node_read(mc->mc_txn, leaf, &data);
3690                                         memcpy(mc->mc_db, data.mv_data, sizeof(MDB_db));
3691                                 }
3692                                 if (flags & MDB_PS_MODIFY)
3693                                         dbflag = DB_DIRTY;
3694                                 *mc->mc_dbflag = dbflag;
3695                         }
3696                 }
3697                 root = mc->mc_db->md_root;
3698
3699                 if (root == P_INVALID) {                /* Tree is empty. */
3700                         DPUTS("tree is empty");
3701                         return MDB_NOTFOUND;
3702                 }
3703         }
3704
3705         assert(root > 1);
3706         if (!mc->mc_pg[0] || mc->mc_pg[0]->mp_pgno != root)
3707                 if ((rc = mdb_page_get(mc->mc_txn, root, &mc->mc_pg[0])))
3708                         return rc;
3709
3710         mc->mc_snum = 1;
3711         mc->mc_top = 0;
3712
3713         DPRINTF("db %u root page %zu has flags 0x%X",
3714                 mc->mc_dbi, root, mc->mc_pg[0]->mp_flags);
3715
3716         if (flags & MDB_PS_MODIFY) {
3717                 if ((rc = mdb_page_touch(mc)))
3718                         return rc;
3719         }
3720
3721         if (flags & MDB_PS_ROOTONLY)
3722                 return MDB_SUCCESS;
3723
3724         return mdb_page_search_root(mc, key, flags);
3725 }
3726
3727 /** Return the data associated with a given node.
3728  * @param[in] txn The transaction for this operation.
3729  * @param[in] leaf The node being read.
3730  * @param[out] data Updated to point to the node's data.
3731  * @return 0 on success, non-zero on failure.
3732  */
3733 static int
3734 mdb_node_read(MDB_txn *txn, MDB_node *leaf, MDB_val *data)
3735 {
3736         MDB_page        *omp;           /* overflow page */
3737         pgno_t           pgno;
3738         int rc;
3739
3740         if (!F_ISSET(leaf->mn_flags, F_BIGDATA)) {
3741                 data->mv_size = NODEDSZ(leaf);
3742                 data->mv_data = NODEDATA(leaf);
3743                 return MDB_SUCCESS;
3744         }
3745
3746         /* Read overflow data.
3747          */
3748         data->mv_size = NODEDSZ(leaf);
3749         memcpy(&pgno, NODEDATA(leaf), sizeof(pgno));
3750         if ((rc = mdb_page_get(txn, pgno, &omp))) {
3751                 DPRINTF("read overflow page %zu failed", pgno);
3752                 return rc;
3753         }
3754         data->mv_data = METADATA(omp);
3755
3756         return MDB_SUCCESS;
3757 }
3758
3759 int
3760 mdb_get(MDB_txn *txn, MDB_dbi dbi,
3761     MDB_val *key, MDB_val *data)
3762 {
3763         MDB_cursor      mc;
3764         MDB_xcursor     mx;
3765         int exact = 0;
3766         DKBUF;
3767
3768         assert(key);
3769         assert(data);
3770         DPRINTF("===> get db %u key [%s]", dbi, DKEY(key));
3771
3772         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs)
3773                 return EINVAL;
3774
3775         if (key->mv_size == 0 || key->mv_size > MAXKEYSIZE) {
3776                 return EINVAL;
3777         }
3778
3779         mdb_cursor_init(&mc, txn, dbi, &mx);
3780         return mdb_cursor_set(&mc, key, data, MDB_SET, &exact);
3781 }
3782
3783 /** Find a sibling for a page.
3784  * Replaces the page at the top of the cursor's stack with the
3785  * specified sibling, if one exists.
3786  * @param[in] mc The cursor for this operation.
3787  * @param[in] move_right Non-zero if the right sibling is requested,
3788  * otherwise the left sibling.
3789  * @return 0 on success, non-zero on failure.
3790  */
3791 static int
3792 mdb_cursor_sibling(MDB_cursor *mc, int move_right)
3793 {
3794         int              rc;
3795         MDB_node        *indx;
3796         MDB_page        *mp;
3797
3798         if (mc->mc_snum < 2) {
3799                 return MDB_NOTFOUND;            /* root has no siblings */
3800         }
3801
3802         mdb_cursor_pop(mc);
3803         DPRINTF("parent page is page %zu, index %u",
3804                 mc->mc_pg[mc->mc_top]->mp_pgno, mc->mc_ki[mc->mc_top]);
3805
3806         if (move_right ? (mc->mc_ki[mc->mc_top] + 1u >= NUMKEYS(mc->mc_pg[mc->mc_top]))
3807                        : (mc->mc_ki[mc->mc_top] == 0)) {
3808                 DPRINTF("no more keys left, moving to %s sibling",
3809                     move_right ? "right" : "left");
3810                 if ((rc = mdb_cursor_sibling(mc, move_right)) != MDB_SUCCESS)
3811                         return rc;
3812         } else {
3813                 if (move_right)
3814                         mc->mc_ki[mc->mc_top]++;
3815                 else
3816                         mc->mc_ki[mc->mc_top]--;
3817                 DPRINTF("just moving to %s index key %u",
3818                     move_right ? "right" : "left", mc->mc_ki[mc->mc_top]);
3819         }
3820         assert(IS_BRANCH(mc->mc_pg[mc->mc_top]));
3821
3822         indx = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
3823         if ((rc = mdb_page_get(mc->mc_txn, NODEPGNO(indx), &mp)))
3824                 return rc;;
3825
3826         mdb_cursor_push(mc, mp);
3827
3828         return MDB_SUCCESS;
3829 }
3830
3831 /** Move the cursor to the next data item. */
3832 static int
3833 mdb_cursor_next(MDB_cursor *mc, MDB_val *key, MDB_val *data, MDB_cursor_op op)
3834 {
3835         MDB_page        *mp;
3836         MDB_node        *leaf;
3837         int rc;
3838
3839         if (mc->mc_flags & C_EOF) {
3840                 return MDB_NOTFOUND;
3841         }
3842
3843         assert(mc->mc_flags & C_INITIALIZED);
3844
3845         mp = mc->mc_pg[mc->mc_top];
3846
3847         if (mc->mc_db->md_flags & MDB_DUPSORT) {
3848                 leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
3849                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
3850                         if (op == MDB_NEXT || op == MDB_NEXT_DUP) {
3851                                 rc = mdb_cursor_next(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_NEXT);
3852                                 if (op != MDB_NEXT || rc == MDB_SUCCESS)
3853                                         return rc;
3854                         }
3855                 } else {
3856                         mc->mc_xcursor->mx_cursor.mc_flags &= ~C_INITIALIZED;
3857                         if (op == MDB_NEXT_DUP)
3858                                 return MDB_NOTFOUND;
3859                 }
3860         }
3861
3862         DPRINTF("cursor_next: top page is %zu in cursor %p", mp->mp_pgno, (void *) mc);
3863
3864         if (mc->mc_ki[mc->mc_top] + 1u >= NUMKEYS(mp)) {
3865                 DPUTS("=====> move to next sibling page");
3866                 if (mdb_cursor_sibling(mc, 1) != MDB_SUCCESS) {
3867                         mc->mc_flags |= C_EOF;
3868                         mc->mc_flags &= ~C_INITIALIZED;
3869                         return MDB_NOTFOUND;
3870                 }
3871                 mp = mc->mc_pg[mc->mc_top];
3872                 DPRINTF("next page is %zu, key index %u", mp->mp_pgno, mc->mc_ki[mc->mc_top]);
3873         } else
3874                 mc->mc_ki[mc->mc_top]++;
3875
3876         DPRINTF("==> cursor points to page %zu with %u keys, key index %u",
3877             mp->mp_pgno, NUMKEYS(mp), mc->mc_ki[mc->mc_top]);
3878
3879         if (IS_LEAF2(mp)) {
3880                 key->mv_size = mc->mc_db->md_pad;
3881                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
3882                 return MDB_SUCCESS;
3883         }
3884
3885         assert(IS_LEAF(mp));
3886         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
3887
3888         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
3889                 mdb_xcursor_init1(mc, leaf);
3890         }
3891         if (data) {
3892                 if ((rc = mdb_node_read(mc->mc_txn, leaf, data) != MDB_SUCCESS))
3893                         return rc;
3894
3895                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
3896                         rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
3897                         if (rc != MDB_SUCCESS)
3898                                 return rc;
3899                 }
3900         }
3901
3902         MDB_GET_KEY(leaf, key);
3903         return MDB_SUCCESS;
3904 }
3905
3906 /** Move the cursor to the previous data item. */
3907 static int
3908 mdb_cursor_prev(MDB_cursor *mc, MDB_val *key, MDB_val *data, MDB_cursor_op op)
3909 {
3910         MDB_page        *mp;
3911         MDB_node        *leaf;
3912         int rc;
3913
3914         assert(mc->mc_flags & C_INITIALIZED);
3915
3916         mp = mc->mc_pg[mc->mc_top];
3917
3918         if (mc->mc_db->md_flags & MDB_DUPSORT) {
3919                 leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
3920                 if (op == MDB_PREV || op == MDB_PREV_DUP) {
3921                         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
3922                                 rc = mdb_cursor_prev(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_PREV);
3923                                 if (op != MDB_PREV || rc == MDB_SUCCESS)
3924                                         return rc;
3925                         } else {
3926                                 mc->mc_xcursor->mx_cursor.mc_flags &= ~C_INITIALIZED;
3927                                 if (op == MDB_PREV_DUP)
3928                                         return MDB_NOTFOUND;
3929                         }
3930                 }
3931         }
3932
3933         DPRINTF("cursor_prev: top page is %zu in cursor %p", mp->mp_pgno, (void *) mc);
3934
3935         if (mc->mc_ki[mc->mc_top] == 0)  {
3936                 DPUTS("=====> move to prev sibling page");
3937                 if (mdb_cursor_sibling(mc, 0) != MDB_SUCCESS) {
3938                         mc->mc_flags &= ~C_INITIALIZED;
3939                         return MDB_NOTFOUND;
3940                 }
3941                 mp = mc->mc_pg[mc->mc_top];
3942                 mc->mc_ki[mc->mc_top] = NUMKEYS(mp) - 1;
3943                 DPRINTF("prev page is %zu, key index %u", mp->mp_pgno, mc->mc_ki[mc->mc_top]);
3944         } else
3945                 mc->mc_ki[mc->mc_top]--;
3946
3947         mc->mc_flags &= ~C_EOF;
3948
3949         DPRINTF("==> cursor points to page %zu with %u keys, key index %u",
3950             mp->mp_pgno, NUMKEYS(mp), mc->mc_ki[mc->mc_top]);
3951
3952         if (IS_LEAF2(mp)) {
3953                 key->mv_size = mc->mc_db->md_pad;
3954                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
3955                 return MDB_SUCCESS;
3956         }
3957
3958         assert(IS_LEAF(mp));
3959         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
3960
3961         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
3962                 mdb_xcursor_init1(mc, leaf);
3963         }
3964         if (data) {
3965                 if ((rc = mdb_node_read(mc->mc_txn, leaf, data) != MDB_SUCCESS))
3966                         return rc;
3967
3968                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
3969                         rc = mdb_cursor_last(&mc->mc_xcursor->mx_cursor, data, NULL);
3970                         if (rc != MDB_SUCCESS)
3971                                 return rc;
3972                 }
3973         }
3974
3975         MDB_GET_KEY(leaf, key);
3976         return MDB_SUCCESS;
3977 }
3978
3979 /** Set the cursor on a specific data item. */
3980 static int
3981 mdb_cursor_set(MDB_cursor *mc, MDB_val *key, MDB_val *data,
3982     MDB_cursor_op op, int *exactp)
3983 {
3984         int              rc;
3985         MDB_page        *mp;
3986         MDB_node        *leaf = NULL;
3987         DKBUF;
3988
3989         assert(mc);
3990         assert(key);
3991         assert(key->mv_size > 0);
3992
3993         /* See if we're already on the right page */
3994         if (mc->mc_flags & C_INITIALIZED) {
3995                 MDB_val nodekey;
3996
3997                 mp = mc->mc_pg[mc->mc_top];
3998                 if (!NUMKEYS(mp)) {
3999                         mc->mc_ki[mc->mc_top] = 0;
4000                         return MDB_NOTFOUND;
4001                 }
4002                 if (mp->mp_flags & P_LEAF2) {
4003                         nodekey.mv_size = mc->mc_db->md_pad;
4004                         nodekey.mv_data = LEAF2KEY(mp, 0, nodekey.mv_size);
4005                 } else {
4006                         leaf = NODEPTR(mp, 0);
4007                         MDB_GET_KEY(leaf, &nodekey);
4008                 }
4009                 rc = mc->mc_dbx->md_cmp(key, &nodekey);
4010                 if (rc == 0) {
4011                         /* Probably happens rarely, but first node on the page
4012                          * was the one we wanted.
4013                          */
4014                         mc->mc_ki[mc->mc_top] = 0;
4015                         if (exactp)
4016                                 *exactp = 1;
4017                         goto set1;
4018                 }
4019                 if (rc > 0) {
4020                         unsigned int i;
4021                         unsigned int nkeys = NUMKEYS(mp);
4022                         if (nkeys > 1) {
4023                                 if (mp->mp_flags & P_LEAF2) {
4024                                         nodekey.mv_data = LEAF2KEY(mp,
4025                                                  nkeys-1, nodekey.mv_size);
4026                                 } else {
4027                                         leaf = NODEPTR(mp, nkeys-1);
4028                                         MDB_GET_KEY(leaf, &nodekey);
4029                                 }
4030                                 rc = mc->mc_dbx->md_cmp(key, &nodekey);
4031                                 if (rc == 0) {
4032                                         /* last node was the one we wanted */
4033                                         mc->mc_ki[mc->mc_top] = nkeys-1;
4034                                         if (exactp)
4035                                                 *exactp = 1;
4036                                         goto set1;
4037                                 }
4038                                 if (rc < 0) {
4039                                         if (mc->mc_ki[mc->mc_top] < NUMKEYS(mp)) {
4040                                                 /* This is definitely the right page, skip search_page */
4041                                                 if (mp->mp_flags & P_LEAF2) {
4042                                                         nodekey.mv_data = LEAF2KEY(mp,
4043                                                                  mc->mc_ki[mc->mc_top], nodekey.mv_size);
4044                                                 } else {
4045                                                         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
4046                                                         MDB_GET_KEY(leaf, &nodekey);
4047                                                 }
4048                                                 rc = mc->mc_dbx->md_cmp(key, &nodekey);
4049                                                 if (rc == 0) {
4050                                                         /* current node was the one we wanted */
4051                                                         if (exactp)
4052                                                                 *exactp = 1;
4053                                                         goto set1;
4054                                                 }
4055                                         }
4056                                         rc = 0;
4057                                         goto set2;
4058                                 }
4059                         }
4060                         /* If any parents have right-sibs, search.
4061                          * Otherwise, there's nothing further.
4062                          */
4063                         for (i=0; i<mc->mc_top; i++)
4064                                 if (mc->mc_ki[i] <
4065                                         NUMKEYS(mc->mc_pg[i])-1)
4066                                         break;
4067                         if (i == mc->mc_top) {
4068                                 /* There are no other pages */
4069                                 mc->mc_ki[mc->mc_top] = nkeys;
4070                                 return MDB_NOTFOUND;
4071                         }
4072                 }
4073                 if (!mc->mc_top) {
4074                         /* There are no other pages */
4075                         mc->mc_ki[mc->mc_top] = 0;
4076                         return MDB_NOTFOUND;
4077                 }
4078         }
4079
4080         rc = mdb_page_search(mc, key, 0);
4081         if (rc != MDB_SUCCESS)
4082                 return rc;
4083
4084         mp = mc->mc_pg[mc->mc_top];
4085         assert(IS_LEAF(mp));
4086
4087 set2:
4088         leaf = mdb_node_search(mc, key, exactp);
4089         if (exactp != NULL && !*exactp) {
4090                 /* MDB_SET specified and not an exact match. */
4091                 return MDB_NOTFOUND;
4092         }
4093
4094         if (leaf == NULL) {
4095                 DPUTS("===> inexact leaf not found, goto sibling");
4096                 if ((rc = mdb_cursor_sibling(mc, 1)) != MDB_SUCCESS)
4097                         return rc;              /* no entries matched */
4098                 mp = mc->mc_pg[mc->mc_top];
4099                 assert(IS_LEAF(mp));
4100                 leaf = NODEPTR(mp, 0);
4101         }
4102
4103 set1:
4104         mc->mc_flags |= C_INITIALIZED;
4105         mc->mc_flags &= ~C_EOF;
4106
4107         if (IS_LEAF2(mp)) {
4108                 key->mv_size = mc->mc_db->md_pad;
4109                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
4110                 return MDB_SUCCESS;
4111         }
4112
4113         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4114                 mdb_xcursor_init1(mc, leaf);
4115         }
4116         if (data) {
4117                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4118                         if (op == MDB_SET || op == MDB_SET_KEY || op == MDB_SET_RANGE) {
4119                                 rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
4120                         } else {
4121                                 int ex2, *ex2p;
4122                                 if (op == MDB_GET_BOTH) {
4123                                         ex2p = &ex2;
4124                                         ex2 = 0;
4125                                 } else {
4126                                         ex2p = NULL;
4127                                 }
4128                                 rc = mdb_cursor_set(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_SET_RANGE, ex2p);
4129                                 if (rc != MDB_SUCCESS)
4130                                         return rc;
4131                         }
4132                 } else if (op == MDB_GET_BOTH || op == MDB_GET_BOTH_RANGE) {
4133                         MDB_val d2;
4134                         if ((rc = mdb_node_read(mc->mc_txn, leaf, &d2)) != MDB_SUCCESS)
4135                                 return rc;
4136                         rc = mc->mc_dbx->md_dcmp(data, &d2);
4137                         if (rc) {
4138                                 if (op == MDB_GET_BOTH || rc > 0)
4139                                         return MDB_NOTFOUND;
4140                         }
4141
4142                 } else {
4143                         if (mc->mc_xcursor)
4144                                 mc->mc_xcursor->mx_cursor.mc_flags &= ~C_INITIALIZED;
4145                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
4146                                 return rc;
4147                 }
4148         }
4149
4150         /* The key already matches in all other cases */
4151         if (op == MDB_SET_RANGE || op == MDB_SET_KEY)
4152                 MDB_GET_KEY(leaf, key);
4153         DPRINTF("==> cursor placed on key [%s]", DKEY(key));
4154
4155         return rc;
4156 }
4157
4158 /** Move the cursor to the first item in the database. */
4159 static int
4160 mdb_cursor_first(MDB_cursor *mc, MDB_val *key, MDB_val *data)
4161 {
4162         int              rc;
4163         MDB_node        *leaf;
4164
4165         if (!(mc->mc_flags & C_INITIALIZED) || mc->mc_top) {
4166                 rc = mdb_page_search(mc, NULL, 0);
4167                 if (rc != MDB_SUCCESS)
4168                         return rc;
4169         }
4170         assert(IS_LEAF(mc->mc_pg[mc->mc_top]));
4171
4172         leaf = NODEPTR(mc->mc_pg[mc->mc_top], 0);
4173         mc->mc_flags |= C_INITIALIZED;
4174         mc->mc_flags &= ~C_EOF;
4175
4176         mc->mc_ki[mc->mc_top] = 0;
4177
4178         if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
4179                 key->mv_size = mc->mc_db->md_pad;
4180                 key->mv_data = LEAF2KEY(mc->mc_pg[mc->mc_top], 0, key->mv_size);
4181                 return MDB_SUCCESS;
4182         }
4183
4184         if (data) {
4185                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4186                         mdb_xcursor_init1(mc, leaf);
4187                         rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
4188                         if (rc)
4189                                 return rc;
4190                 } else {
4191                         if (mc->mc_xcursor)
4192                                 mc->mc_xcursor->mx_cursor.mc_flags &= ~C_INITIALIZED;
4193                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
4194                                 return rc;
4195                 }
4196         }
4197         MDB_GET_KEY(leaf, key);
4198         return MDB_SUCCESS;
4199 }
4200
4201 /** Move the cursor to the last item in the database. */
4202 static int
4203 mdb_cursor_last(MDB_cursor *mc, MDB_val *key, MDB_val *data)
4204 {
4205         int              rc;
4206         MDB_node        *leaf;
4207
4208         if (!(mc->mc_flags & C_EOF)) {
4209
4210         if (!(mc->mc_flags & C_INITIALIZED) || mc->mc_top) {
4211                 MDB_val lkey;
4212
4213                 lkey.mv_size = MAXKEYSIZE+1;
4214                 lkey.mv_data = NULL;
4215                 rc = mdb_page_search(mc, &lkey, 0);
4216                 if (rc != MDB_SUCCESS)
4217                         return rc;
4218         }
4219         assert(IS_LEAF(mc->mc_pg[mc->mc_top]));
4220
4221         mc->mc_ki[mc->mc_top] = NUMKEYS(mc->mc_pg[mc->mc_top]) - 1;
4222         mc->mc_flags |= C_INITIALIZED|C_EOF;
4223         }
4224         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
4225
4226         if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
4227                 key->mv_size = mc->mc_db->md_pad;
4228                 key->mv_data = LEAF2KEY(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], key->mv_size);
4229                 return MDB_SUCCESS;
4230         }
4231
4232         if (data) {
4233                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4234                         mdb_xcursor_init1(mc, leaf);
4235                         rc = mdb_cursor_last(&mc->mc_xcursor->mx_cursor, data, NULL);
4236                         if (rc)
4237                                 return rc;
4238                 } else {
4239                         if (mc->mc_xcursor)
4240                                 mc->mc_xcursor->mx_cursor.mc_flags &= ~C_INITIALIZED;
4241                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
4242                                 return rc;
4243                 }
4244         }
4245
4246         MDB_GET_KEY(leaf, key);
4247         return MDB_SUCCESS;
4248 }
4249
4250 int
4251 mdb_cursor_get(MDB_cursor *mc, MDB_val *key, MDB_val *data,
4252     MDB_cursor_op op)
4253 {
4254         int              rc;
4255         int              exact = 0;
4256
4257         assert(mc);
4258
4259         switch (op) {
4260         case MDB_GET_BOTH:
4261         case MDB_GET_BOTH_RANGE:
4262                 if (data == NULL || mc->mc_xcursor == NULL) {
4263                         rc = EINVAL;
4264                         break;
4265                 }
4266                 /* FALLTHRU */
4267         case MDB_SET:
4268         case MDB_SET_KEY:
4269         case MDB_SET_RANGE:
4270                 if (key == NULL || key->mv_size == 0 || key->mv_size > MAXKEYSIZE) {
4271                         rc = EINVAL;
4272                 } else if (op == MDB_SET_RANGE)
4273                         rc = mdb_cursor_set(mc, key, data, op, NULL);
4274                 else
4275                         rc = mdb_cursor_set(mc, key, data, op, &exact);
4276                 break;
4277         case MDB_GET_MULTIPLE:
4278                 if (data == NULL ||
4279                         !(mc->mc_db->md_flags & MDB_DUPFIXED) ||
4280                         !(mc->mc_flags & C_INITIALIZED)) {
4281                         rc = EINVAL;
4282                         break;
4283                 }
4284                 rc = MDB_SUCCESS;
4285                 if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED) ||
4286                         (mc->mc_xcursor->mx_cursor.mc_flags & C_EOF))
4287                         break;
4288                 goto fetchm;
4289         case MDB_NEXT_MULTIPLE:
4290                 if (data == NULL ||
4291                         !(mc->mc_db->md_flags & MDB_DUPFIXED)) {
4292                         rc = EINVAL;
4293                         break;
4294                 }
4295                 if (!(mc->mc_flags & C_INITIALIZED))
4296                         rc = mdb_cursor_first(mc, key, data);
4297                 else
4298                         rc = mdb_cursor_next(mc, key, data, MDB_NEXT_DUP);
4299                 if (rc == MDB_SUCCESS) {
4300                         if (mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED) {
4301                                 MDB_cursor *mx;
4302 fetchm:
4303                                 mx = &mc->mc_xcursor->mx_cursor;
4304                                 data->mv_size = NUMKEYS(mx->mc_pg[mx->mc_top]) *
4305                                         mx->mc_db->md_pad;
4306                                 data->mv_data = METADATA(mx->mc_pg[mx->mc_top]);
4307                                 mx->mc_ki[mx->mc_top] = NUMKEYS(mx->mc_pg[mx->mc_top])-1;
4308                         } else {
4309                                 rc = MDB_NOTFOUND;
4310                         }
4311                 }
4312                 break;
4313         case MDB_NEXT:
4314         case MDB_NEXT_DUP:
4315         case MDB_NEXT_NODUP:
4316                 if (!(mc->mc_flags & C_INITIALIZED))
4317                         rc = mdb_cursor_first(mc, key, data);
4318                 else
4319                         rc = mdb_cursor_next(mc, key, data, op);
4320                 break;
4321         case MDB_PREV:
4322         case MDB_PREV_DUP:
4323         case MDB_PREV_NODUP:
4324                 if (!(mc->mc_flags & C_INITIALIZED) || (mc->mc_flags & C_EOF)) {
4325                         rc = mdb_cursor_last(mc, key, data);
4326                         mc->mc_flags &= ~C_EOF;
4327                 } else
4328                         rc = mdb_cursor_prev(mc, key, data, op);
4329                 break;
4330         case MDB_FIRST:
4331                 rc = mdb_cursor_first(mc, key, data);
4332                 break;
4333         case MDB_FIRST_DUP:
4334                 if (data == NULL ||
4335                         !(mc->mc_db->md_flags & MDB_DUPSORT) ||
4336                         !(mc->mc_flags & C_INITIALIZED) ||
4337                         !(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED)) {
4338                         rc = EINVAL;
4339                         break;
4340                 }
4341                 rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
4342                 break;
4343         case MDB_LAST:
4344                 rc = mdb_cursor_last(mc, key, data);
4345                 break;
4346         case MDB_LAST_DUP:
4347                 if (data == NULL ||
4348                         !(mc->mc_db->md_flags & MDB_DUPSORT) ||
4349                         !(mc->mc_flags & C_INITIALIZED) ||
4350                         !(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED)) {
4351                         rc = EINVAL;
4352                         break;
4353                 }
4354                 rc = mdb_cursor_last(&mc->mc_xcursor->mx_cursor, data, NULL);
4355                 break;
4356         default:
4357                 DPRINTF("unhandled/unimplemented cursor operation %u", op);
4358                 rc = EINVAL;
4359                 break;
4360         }
4361
4362         return rc;
4363 }
4364
4365 /** Touch all the pages in the cursor stack.
4366  *      Makes sure all the pages are writable, before attempting a write operation.
4367  * @param[in] mc The cursor to operate on.
4368  */
4369 static int
4370 mdb_cursor_touch(MDB_cursor *mc)
4371 {
4372         int rc;
4373
4374         if (mc->mc_dbi > MAIN_DBI && !(*mc->mc_dbflag & DB_DIRTY)) {
4375                 MDB_cursor mc2;
4376                 mdb_cursor_init(&mc2, mc->mc_txn, MAIN_DBI, NULL);
4377                 rc = mdb_page_search(&mc2, &mc->mc_dbx->md_name, MDB_PS_MODIFY);
4378                 if (rc)
4379                          return rc;
4380                 *mc->mc_dbflag = DB_DIRTY;
4381         }
4382         for (mc->mc_top = 0; mc->mc_top < mc->mc_snum; mc->mc_top++) {
4383                 rc = mdb_page_touch(mc);
4384                 if (rc)
4385                         return rc;
4386         }
4387         mc->mc_top = mc->mc_snum-1;
4388         return MDB_SUCCESS;
4389 }
4390
4391 int
4392 mdb_cursor_put(MDB_cursor *mc, MDB_val *key, MDB_val *data,
4393     unsigned int flags)
4394 {
4395         MDB_node        *leaf = NULL;
4396         MDB_val xdata, *rdata, dkey;
4397         MDB_page        *fp;
4398         MDB_db dummy;
4399         int do_sub = 0, insert = 0;
4400         unsigned int mcount = 0;
4401         size_t nsize;
4402         int rc, rc2;
4403         MDB_pagebuf pbuf;
4404         char dbuf[MAXKEYSIZE+1];
4405         unsigned int nflags;
4406         DKBUF;
4407
4408         if (F_ISSET(mc->mc_txn->mt_flags, MDB_TXN_RDONLY))
4409                 return EACCES;
4410
4411         DPRINTF("==> put db %u key [%s], size %zu, data size %zu",
4412                 mc->mc_dbi, DKEY(key), key ? key->mv_size:0, data->mv_size);
4413
4414         dkey.mv_size = 0;
4415
4416         if (flags == MDB_CURRENT) {
4417                 if (!(mc->mc_flags & C_INITIALIZED))
4418                         return EINVAL;
4419                 rc = MDB_SUCCESS;
4420         } else if (mc->mc_db->md_root == P_INVALID) {
4421                 MDB_page *np;
4422                 /* new database, write a root leaf page */
4423                 DPUTS("allocating new root leaf page");
4424                 if ((rc = mdb_page_new(mc, P_LEAF, 1, &np))) {
4425                         return rc;
4426                 }
4427                 mc->mc_snum = 0;
4428                 mdb_cursor_push(mc, np);
4429                 mc->mc_db->md_root = np->mp_pgno;
4430                 mc->mc_db->md_depth++;
4431                 *mc->mc_dbflag = DB_DIRTY;
4432                 if ((mc->mc_db->md_flags & (MDB_DUPSORT|MDB_DUPFIXED))
4433                         == MDB_DUPFIXED)
4434                         np->mp_flags |= P_LEAF2;
4435                 mc->mc_flags |= C_INITIALIZED;
4436                 rc = MDB_NOTFOUND;
4437                 goto top;
4438         } else {
4439                 int exact = 0;
4440                 MDB_val d2;
4441                 if (flags & MDB_APPEND) {
4442                         MDB_val k2;
4443                         rc = mdb_cursor_last(mc, &k2, &d2);
4444                         if (rc == 0) {
4445                                 rc = mc->mc_dbx->md_cmp(key, &k2);
4446                                 if (rc > 0) {
4447                                         rc = MDB_NOTFOUND;
4448                                         mc->mc_ki[mc->mc_top]++;
4449                                 } else {
4450                                         rc = 0;
4451                                 }
4452                         }
4453                 } else {
4454                 rc = mdb_cursor_set(mc, key, &d2, MDB_SET, &exact);
4455                 }
4456                 if ((flags & MDB_NOOVERWRITE) && rc == 0) {
4457                         DPRINTF("duplicate key [%s]", DKEY(key));
4458                         *data = d2;
4459                         return MDB_KEYEXIST;
4460                 }
4461                 if (rc && rc != MDB_NOTFOUND)
4462                         return rc;
4463         }
4464
4465         /* Cursor is positioned, now make sure all pages are writable */
4466         rc2 = mdb_cursor_touch(mc);
4467         if (rc2)
4468                 return rc2;
4469
4470 top:
4471         /* The key already exists */
4472         if (rc == MDB_SUCCESS) {
4473                 /* there's only a key anyway, so this is a no-op */
4474                 if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
4475                         unsigned int ksize = mc->mc_db->md_pad;
4476                         if (key->mv_size != ksize)
4477                                 return EINVAL;
4478                         if (flags == MDB_CURRENT) {
4479                                 char *ptr = LEAF2KEY(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], ksize);
4480                                 memcpy(ptr, key->mv_data, ksize);
4481                         }
4482                         return MDB_SUCCESS;
4483                 }
4484
4485                 leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
4486
4487                 /* DB has dups? */
4488                 if (F_ISSET(mc->mc_db->md_flags, MDB_DUPSORT)) {
4489                         /* Was a single item before, must convert now */
4490 more:
4491                         if (!F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4492                                 /* Just overwrite the current item */
4493                                 if (flags == MDB_CURRENT)
4494                                         goto current;
4495
4496                                 dkey.mv_size = NODEDSZ(leaf);
4497                                 dkey.mv_data = NODEDATA(leaf);
4498 #if UINT_MAX < SIZE_MAX
4499                                 if (mc->mc_dbx->md_dcmp == mdb_cmp_int && dkey.mv_size == sizeof(size_t))
4500 #ifdef MISALIGNED_OK
4501                                         mc->mc_dbx->md_dcmp = mdb_cmp_long;
4502 #else
4503                                         mc->mc_dbx->md_dcmp = mdb_cmp_cint;
4504 #endif
4505 #endif
4506                                 /* if data matches, ignore it */
4507                                 if (!mc->mc_dbx->md_dcmp(data, &dkey))
4508                                         return (flags == MDB_NODUPDATA) ? MDB_KEYEXIST : MDB_SUCCESS;
4509
4510                                 /* create a fake page for the dup items */
4511                                 memcpy(dbuf, dkey.mv_data, dkey.mv_size);
4512                                 dkey.mv_data = dbuf;
4513                                 fp = (MDB_page *)&pbuf;
4514                                 fp->mp_pgno = mc->mc_pg[mc->mc_top]->mp_pgno;
4515                                 fp->mp_flags = P_LEAF|P_DIRTY|P_SUBP;
4516                                 fp->mp_lower = PAGEHDRSZ;
4517                                 fp->mp_upper = PAGEHDRSZ + dkey.mv_size + data->mv_size;
4518                                 if (mc->mc_db->md_flags & MDB_DUPFIXED) {
4519                                         fp->mp_flags |= P_LEAF2;
4520                                         fp->mp_pad = data->mv_size;
4521                                         fp->mp_upper += 2 * data->mv_size;      /* leave space for 2 more */
4522                                 } else {
4523                                         fp->mp_upper += 2 * sizeof(indx_t) + 2 * NODESIZE +
4524                                                 (dkey.mv_size & 1) + (data->mv_size & 1);
4525                                 }
4526                                 mdb_node_del(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], 0);
4527                                 do_sub = 1;
4528                                 rdata = &xdata;
4529                                 xdata.mv_size = fp->mp_upper;
4530                                 xdata.mv_data = fp;
4531                                 flags |= F_DUPDATA;
4532                                 goto new_sub;
4533                         }
4534                         if (!F_ISSET(leaf->mn_flags, F_SUBDATA)) {
4535                                 /* See if we need to convert from fake page to subDB */
4536                                 MDB_page *mp;
4537                                 unsigned int offset;
4538                                 unsigned int i;
4539
4540                                 fp = NODEDATA(leaf);
4541                                 if (flags == MDB_CURRENT) {
4542 reuse:
4543                                         fp->mp_flags |= P_DIRTY;
4544                                         COPY_PGNO(fp->mp_pgno, mc->mc_pg[mc->mc_top]->mp_pgno);
4545                                         mc->mc_xcursor->mx_cursor.mc_pg[0] = fp;
4546                                         flags |= F_DUPDATA;
4547                                         goto put_sub;
4548                                 }
4549                                 if (mc->mc_db->md_flags & MDB_DUPFIXED) {
4550                                         offset = fp->mp_pad;
4551                                         if (SIZELEFT(fp) >= offset)
4552                                                 goto reuse;
4553                                         offset *= 4;    /* space for 4 more */
4554                                 } else {
4555                                         offset = NODESIZE + sizeof(indx_t) + data->mv_size;
4556                                 }
4557                                 offset += offset & 1;
4558                                 if (NODESIZE + sizeof(indx_t) + NODEKSZ(leaf) + NODEDSZ(leaf) +
4559                                         offset >= (mc->mc_txn->mt_env->me_psize - PAGEHDRSZ) /
4560                                                 MDB_MINKEYS) {
4561                                         /* yes, convert it */
4562                                         dummy.md_flags = 0;
4563                                         if (mc->mc_db->md_flags & MDB_DUPFIXED) {
4564                                                 dummy.md_pad = fp->mp_pad;
4565                                                 dummy.md_flags = MDB_DUPFIXED;
4566                                                 if (mc->mc_db->md_flags & MDB_INTEGERDUP)
4567                                                         dummy.md_flags |= MDB_INTEGERKEY;
4568                                         }
4569                                         dummy.md_depth = 1;
4570                                         dummy.md_branch_pages = 0;
4571                                         dummy.md_leaf_pages = 1;
4572                                         dummy.md_overflow_pages = 0;
4573                                         dummy.md_entries = NUMKEYS(fp);
4574                                         rdata = &xdata;
4575                                         xdata.mv_size = sizeof(MDB_db);
4576                                         xdata.mv_data = &dummy;
4577                                         if ((rc = mdb_page_alloc(mc, 1, &mp)))
4578                                                 return rc;
4579                                         offset = mc->mc_txn->mt_env->me_psize - NODEDSZ(leaf);
4580                                         flags |= F_DUPDATA|F_SUBDATA;
4581                                         dummy.md_root = mp->mp_pgno;
4582                                 } else {
4583                                         /* no, just grow it */
4584                                         rdata = &xdata;
4585                                         xdata.mv_size = NODEDSZ(leaf) + offset;
4586                                         xdata.mv_data = &pbuf;
4587                                         mp = (MDB_page *)&pbuf;
4588                                         mp->mp_pgno = mc->mc_pg[mc->mc_top]->mp_pgno;
4589                                         flags |= F_DUPDATA;
4590                                 }
4591                                 mp->mp_flags = fp->mp_flags | P_DIRTY;
4592                                 mp->mp_pad   = fp->mp_pad;
4593                                 mp->mp_lower = fp->mp_lower;
4594                                 mp->mp_upper = fp->mp_upper + offset;
4595                                 if (IS_LEAF2(fp)) {
4596                                         memcpy(METADATA(mp), METADATA(fp), NUMKEYS(fp) * fp->mp_pad);
4597                                 } else {
4598                                         nsize = NODEDSZ(leaf) - fp->mp_upper;
4599                                         memcpy((char *)mp + mp->mp_upper, (char *)fp + fp->mp_upper, nsize);
4600                                         for (i=0; i<NUMKEYS(fp); i++)
4601                                                 mp->mp_ptrs[i] = fp->mp_ptrs[i] + offset;
4602                                 }
4603                                 mdb_node_del(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], 0);
4604                                 do_sub = 1;
4605                                 goto new_sub;
4606                         }
4607                         /* data is on sub-DB, just store it */
4608                         flags |= F_DUPDATA|F_SUBDATA;
4609                         goto put_sub;
4610                 }
4611 current:
4612                 /* overflow page overwrites need special handling */
4613                 if (F_ISSET(leaf->mn_flags, F_BIGDATA)) {
4614                         MDB_page *omp;
4615                         pgno_t pg;
4616                         int ovpages, dpages;
4617
4618                         ovpages = OVPAGES(NODEDSZ(leaf), mc->mc_txn->mt_env->me_psize);
4619                         dpages = OVPAGES(data->mv_size, mc->mc_txn->mt_env->me_psize);
4620                         memcpy(&pg, NODEDATA(leaf), sizeof(pg));
4621                         mdb_page_get(mc->mc_txn, pg, &omp);
4622                         /* Is the ov page writable and large enough? */
4623                         if ((omp->mp_flags & P_DIRTY) && ovpages >= dpages) {
4624                                 /* yes, overwrite it. Note in this case we don't
4625                                  * bother to try shrinking the node if the new data
4626                                  * is smaller than the overflow threshold.
4627                                  */
4628                                 if (F_ISSET(flags, MDB_RESERVE))
4629                                         data->mv_data = METADATA(omp);
4630                                 else
4631                                         memcpy(METADATA(omp), data->mv_data, data->mv_size);
4632                                 goto done;
4633                         } else {
4634                                 /* no, free ovpages */
4635                                 int i;
4636                                 mc->mc_db->md_overflow_pages -= ovpages;
4637                                 for (i=0; i<ovpages; i++) {
4638                                         DPRINTF("freed ov page %zu", pg);
4639                                         mdb_midl_append(&mc->mc_txn->mt_free_pgs, pg);
4640                                         pg++;
4641                                 }
4642                         }
4643                 } else if (NODEDSZ(leaf) == data->mv_size) {
4644                         /* same size, just replace it. Note that we could
4645                          * also reuse this node if the new data is smaller,
4646                          * but instead we opt to shrink the node in that case.
4647                          */
4648                         if (F_ISSET(flags, MDB_RESERVE))
4649                                 data->mv_data = NODEDATA(leaf);
4650                         else
4651                                 memcpy(NODEDATA(leaf), data->mv_data, data->mv_size);
4652                         goto done;
4653                 }
4654                 mdb_node_del(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], 0);
4655                 mc->mc_db->md_entries--;
4656         } else {
4657                 DPRINTF("inserting key at index %i", mc->mc_ki[mc->mc_top]);
4658                 insert = 1;
4659         }
4660
4661         rdata = data;
4662
4663 new_sub:
4664         nflags = flags & NODE_ADD_FLAGS;
4665         nsize = IS_LEAF2(mc->mc_pg[mc->mc_top]) ? key->mv_size : mdb_leaf_size(mc->mc_txn->mt_env, key, rdata);
4666         if (SIZELEFT(mc->mc_pg[mc->mc_top]) < nsize) {
4667                 if (( flags & (F_DUPDATA|F_SUBDATA)) == F_DUPDATA )
4668                         nflags &= ~MDB_APPEND;
4669                 if (!insert)
4670                         nflags |= MDB_SPLIT_REPLACE;
4671                 rc = mdb_page_split(mc, key, rdata, P_INVALID, nflags);
4672         } else {
4673                 /* There is room already in this leaf page. */
4674                 rc = mdb_node_add(mc, mc->mc_ki[mc->mc_top], key, rdata, 0, nflags);
4675                 if (rc == 0 && !do_sub && insert) {
4676                         /* Adjust other cursors pointing to mp */
4677                         MDB_cursor *m2, *m3;
4678                         MDB_dbi dbi = mc->mc_dbi;
4679                         unsigned i = mc->mc_top;
4680                         MDB_page *mp = mc->mc_pg[i];
4681
4682                         if (mc->mc_flags & C_SUB)
4683                                 dbi--;
4684
4685                         for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
4686                                 if (mc->mc_flags & C_SUB)
4687                                         m3 = &m2->mc_xcursor->mx_cursor;
4688                                 else
4689                                         m3 = m2;
4690                                 if (m3 == mc || m3->mc_snum < mc->mc_snum) continue;
4691                                 if (m3->mc_pg[i] == mp && m3->mc_ki[i] >= mc->mc_ki[i]) {
4692                                         m3->mc_ki[i]++;
4693                                 }
4694                         }
4695                 }
4696         }
4697
4698         if (rc != MDB_SUCCESS)
4699                 mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
4700         else {
4701                 /* Now store the actual data in the child DB. Note that we're
4702                  * storing the user data in the keys field, so there are strict
4703                  * size limits on dupdata. The actual data fields of the child
4704                  * DB are all zero size.
4705                  */
4706                 if (do_sub) {
4707                         int xflags;
4708 put_sub:
4709                         xdata.mv_size = 0;
4710                         xdata.mv_data = "";
4711                         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
4712                         if (flags & MDB_CURRENT) {
4713                                 xflags = MDB_CURRENT;
4714                         } else {
4715                                 mdb_xcursor_init1(mc, leaf);
4716                                 xflags = (flags & MDB_NODUPDATA) ? MDB_NOOVERWRITE : 0;
4717                         }
4718                         /* converted, write the original data first */
4719                         if (dkey.mv_size) {
4720                                 rc = mdb_cursor_put(&mc->mc_xcursor->mx_cursor, &dkey, &xdata, xflags);
4721                                 if (rc)
4722                                         return rc;
4723                                 {
4724                                         /* Adjust other cursors pointing to mp */
4725                                         MDB_cursor *m2;
4726                                         unsigned i = mc->mc_top;
4727                                         MDB_page *mp = mc->mc_pg[i];
4728
4729                                         for (m2 = mc->mc_txn->mt_cursors[mc->mc_dbi]; m2; m2=m2->mc_next) {
4730                                                 if (m2 == mc || m2->mc_snum < mc->mc_snum) continue;
4731                                                 if (m2->mc_pg[i] == mp && m2->mc_ki[i] == mc->mc_ki[i]) {
4732                                                         mdb_xcursor_init1(m2, leaf);
4733                                                 }
4734                                         }
4735                                 }
4736                         }
4737                         if (flags & MDB_APPENDDUP)
4738                                 xflags |= MDB_APPEND;
4739                         rc = mdb_cursor_put(&mc->mc_xcursor->mx_cursor, data, &xdata, xflags);
4740                         if (flags & F_SUBDATA) {
4741                                 void *db = NODEDATA(leaf);
4742                                 memcpy(db, &mc->mc_xcursor->mx_db, sizeof(MDB_db));
4743                         }
4744                 }
4745                 /* sub-writes might have failed so check rc again.
4746                  * Don't increment count if we just replaced an existing item.
4747                  */
4748                 if (!rc && !(flags & MDB_CURRENT))
4749                         mc->mc_db->md_entries++;
4750                 if (flags & MDB_MULTIPLE) {
4751                         mcount++;
4752                         if (mcount < data[1].mv_size) {
4753                                 data[0].mv_data = (char *)data[0].mv_data + data[0].mv_size;
4754                                 leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
4755                                 goto more;
4756                         }
4757                 }
4758         }
4759 done:
4760         return rc;
4761 }
4762
4763 int
4764 mdb_cursor_del(MDB_cursor *mc, unsigned int flags)
4765 {
4766         MDB_node        *leaf;
4767         int rc;
4768
4769         if (F_ISSET(mc->mc_txn->mt_flags, MDB_TXN_RDONLY))
4770                 return EACCES;
4771
4772         if (!mc->mc_flags & C_INITIALIZED)
4773                 return EINVAL;
4774
4775         rc = mdb_cursor_touch(mc);
4776         if (rc)
4777                 return rc;
4778
4779         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
4780
4781         if (!IS_LEAF2(mc->mc_pg[mc->mc_top]) && F_ISSET(leaf->mn_flags, F_DUPDATA)) {
4782                 if (flags != MDB_NODUPDATA) {
4783                         if (!F_ISSET(leaf->mn_flags, F_SUBDATA)) {
4784                                 mc->mc_xcursor->mx_cursor.mc_pg[0] = NODEDATA(leaf);
4785                         }
4786                         rc = mdb_cursor_del(&mc->mc_xcursor->mx_cursor, 0);
4787                         /* If sub-DB still has entries, we're done */
4788                         if (mc->mc_xcursor->mx_db.md_entries) {
4789                                 if (leaf->mn_flags & F_SUBDATA) {
4790                                         /* update subDB info */
4791                                         void *db = NODEDATA(leaf);
4792                                         memcpy(db, &mc->mc_xcursor->mx_db, sizeof(MDB_db));
4793                                 } else {
4794                                         /* shrink fake page */
4795                                         mdb_node_shrink(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
4796                                 }
4797                                 mc->mc_db->md_entries--;
4798                                 return rc;
4799                         }
4800                         /* otherwise fall thru and delete the sub-DB */
4801                 }
4802
4803                 if (leaf->mn_flags & F_SUBDATA) {
4804                         /* add all the child DB's pages to the free list */
4805                         rc = mdb_drop0(&mc->mc_xcursor->mx_cursor, 0);
4806                         if (rc == MDB_SUCCESS) {
4807                                 mc->mc_db->md_entries -=
4808                                         mc->mc_xcursor->mx_db.md_entries;
4809                         }
4810                 }
4811         }
4812
4813         return mdb_cursor_del0(mc, leaf);
4814 }
4815
4816 /** Allocate and initialize new pages for a database.
4817  * @param[in] mc a cursor on the database being added to.
4818  * @param[in] flags flags defining what type of page is being allocated.
4819  * @param[in] num the number of pages to allocate. This is usually 1,
4820  * unless allocating overflow pages for a large record.
4821  * @param[out] mp Address of a page, or NULL on failure.
4822  * @return 0 on success, non-zero on failure.
4823  */
4824 static int
4825 mdb_page_new(MDB_cursor *mc, uint32_t flags, int num, MDB_page **mp)
4826 {
4827         MDB_page        *np;
4828         int rc;
4829
4830         if ((rc = mdb_page_alloc(mc, num, &np)))
4831                 return rc;
4832         DPRINTF("allocated new mpage %zu, page size %u",
4833             np->mp_pgno, mc->mc_txn->mt_env->me_psize);
4834         np->mp_flags = flags | P_DIRTY;
4835         np->mp_lower = PAGEHDRSZ;
4836         np->mp_upper = mc->mc_txn->mt_env->me_psize;
4837
4838         if (IS_BRANCH(np))
4839                 mc->mc_db->md_branch_pages++;
4840         else if (IS_LEAF(np))
4841                 mc->mc_db->md_leaf_pages++;
4842         else if (IS_OVERFLOW(np)) {
4843                 mc->mc_db->md_overflow_pages += num;
4844                 np->mp_pages = num;
4845         }
4846         *mp = np;
4847
4848         return 0;
4849 }
4850
4851 /** Calculate the size of a leaf node.
4852  * The size depends on the environment's page size; if a data item
4853  * is too large it will be put onto an overflow page and the node
4854  * size will only include the key and not the data. Sizes are always
4855  * rounded up to an even number of bytes, to guarantee 2-byte alignment
4856  * of the #MDB_node headers.
4857  * @param[in] env The environment handle.
4858  * @param[in] key The key for the node.
4859  * @param[in] data The data for the node.
4860  * @return The number of bytes needed to store the node.
4861  */
4862 static size_t
4863 mdb_leaf_size(MDB_env *env, MDB_val *key, MDB_val *data)
4864 {
4865         size_t           sz;
4866
4867         sz = LEAFSIZE(key, data);
4868         if (sz >= env->me_psize / MDB_MINKEYS) {
4869                 /* put on overflow page */
4870                 sz -= data->mv_size - sizeof(pgno_t);
4871         }
4872         sz += sz & 1;
4873
4874         return sz + sizeof(indx_t);
4875 }
4876
4877 /** Calculate the size of a branch node.
4878  * The size should depend on the environment's page size but since
4879  * we currently don't support spilling large keys onto overflow
4880  * pages, it's simply the size of the #MDB_node header plus the
4881  * size of the key. Sizes are always rounded up to an even number
4882  * of bytes, to guarantee 2-byte alignment of the #MDB_node headers.
4883  * @param[in] env The environment handle.
4884  * @param[in] key The key for the node.
4885  * @return The number of bytes needed to store the node.
4886  */
4887 static size_t
4888 mdb_branch_size(MDB_env *env, MDB_val *key)
4889 {
4890         size_t           sz;
4891
4892         sz = INDXSIZE(key);
4893         if (sz >= env->me_psize / MDB_MINKEYS) {
4894                 /* put on overflow page */
4895                 /* not implemented */
4896                 /* sz -= key->size - sizeof(pgno_t); */
4897         }
4898
4899         return sz + sizeof(indx_t);
4900 }
4901
4902 /** Add a node to the page pointed to by the cursor.
4903  * @param[in] mc The cursor for this operation.
4904  * @param[in] indx The index on the page where the new node should be added.
4905  * @param[in] key The key for the new node.
4906  * @param[in] data The data for the new node, if any.
4907  * @param[in] pgno The page number, if adding a branch node.
4908  * @param[in] flags Flags for the node.
4909  * @return 0 on success, non-zero on failure. Possible errors are:
4910  * <ul>
4911  *      <li>ENOMEM - failed to allocate overflow pages for the node.
4912  *      <li>MDB_PAGE_FULL - there is insufficient room in the page. This error
4913  *      should never happen since all callers already calculate the
4914  *      page's free space before calling this function.
4915  * </ul>
4916  */
4917 static int
4918 mdb_node_add(MDB_cursor *mc, indx_t indx,
4919     MDB_val *key, MDB_val *data, pgno_t pgno, unsigned int flags)
4920 {
4921         unsigned int     i;
4922         size_t           node_size = NODESIZE;
4923         indx_t           ofs;
4924         MDB_node        *node;
4925         MDB_page        *mp = mc->mc_pg[mc->mc_top];
4926         MDB_page        *ofp = NULL;            /* overflow page */
4927         DKBUF;
4928
4929         assert(mp->mp_upper >= mp->mp_lower);
4930
4931         DPRINTF("add to %s %spage %zu index %i, data size %zu key size %zu [%s]",
4932             IS_LEAF(mp) ? "leaf" : "branch",
4933                 IS_SUBP(mp) ? "sub-" : "",
4934             mp->mp_pgno, indx, data ? data->mv_size : 0,
4935                 key ? key->mv_size : 0, key ? DKEY(key) : NULL);
4936
4937         if (IS_LEAF2(mp)) {
4938                 /* Move higher keys up one slot. */
4939                 int ksize = mc->mc_db->md_pad, dif;
4940                 char *ptr = LEAF2KEY(mp, indx, ksize);
4941                 dif = NUMKEYS(mp) - indx;
4942                 if (dif > 0)
4943                         memmove(ptr+ksize, ptr, dif*ksize);
4944                 /* insert new key */
4945                 memcpy(ptr, key->mv_data, ksize);
4946
4947                 /* Just using these for counting */
4948                 mp->mp_lower += sizeof(indx_t);
4949                 mp->mp_upper -= ksize - sizeof(indx_t);
4950                 return MDB_SUCCESS;
4951         }
4952
4953         if (key != NULL)
4954                 node_size += key->mv_size;
4955
4956         if (IS_LEAF(mp)) {
4957                 assert(data);
4958                 if (F_ISSET(flags, F_BIGDATA)) {
4959                         /* Data already on overflow page. */
4960                         node_size += sizeof(pgno_t);
4961                 } else if (node_size + data->mv_size >= mc->mc_txn->mt_env->me_psize / MDB_MINKEYS) {
4962                         int ovpages = OVPAGES(data->mv_size, mc->mc_txn->mt_env->me_psize);
4963                         int rc;
4964                         /* Put data on overflow page. */
4965                         DPRINTF("data size is %zu, node would be %zu, put data on overflow page",
4966                             data->mv_size, node_size+data->mv_size);
4967                         node_size += sizeof(pgno_t);
4968                         if ((rc = mdb_page_new(mc, P_OVERFLOW, ovpages, &ofp)))
4969                                 return rc;
4970                         DPRINTF("allocated overflow page %zu", ofp->mp_pgno);
4971                         flags |= F_BIGDATA;
4972                 } else {
4973                         node_size += data->mv_size;
4974                 }
4975         }
4976         node_size += node_size & 1;
4977
4978         if (node_size + sizeof(indx_t) > SIZELEFT(mp)) {
4979                 DPRINTF("not enough room in page %zu, got %u ptrs",
4980                     mp->mp_pgno, NUMKEYS(mp));
4981                 DPRINTF("upper - lower = %u - %u = %u", mp->mp_upper, mp->mp_lower,
4982                     mp->mp_upper - mp->mp_lower);
4983                 DPRINTF("node size = %zu", node_size);
4984                 return MDB_PAGE_FULL;
4985         }
4986
4987         /* Move higher pointers up one slot. */
4988         for (i = NUMKEYS(mp); i > indx; i--)
4989                 mp->mp_ptrs[i] = mp->mp_ptrs[i - 1];
4990
4991         /* Adjust free space offsets. */
4992         ofs = mp->mp_upper - node_size;
4993         assert(ofs >= mp->mp_lower + sizeof(indx_t));
4994         mp->mp_ptrs[indx] = ofs;
4995         mp->mp_upper = ofs;
4996         mp->mp_lower += sizeof(indx_t);
4997
4998         /* Write the node data. */
4999         node = NODEPTR(mp, indx);
5000         node->mn_ksize = (key == NULL) ? 0 : key->mv_size;
5001         node->mn_flags = flags;
5002         if (IS_LEAF(mp))
5003                 SETDSZ(node,data->mv_size);
5004         else
5005                 SETPGNO(node,pgno);
5006
5007         if (key)
5008                 memcpy(NODEKEY(node), key->mv_data, key->mv_size);
5009
5010         if (IS_LEAF(mp)) {
5011                 assert(key);
5012                 if (ofp == NULL) {
5013                         if (F_ISSET(flags, F_BIGDATA))
5014                                 memcpy(node->mn_data + key->mv_size, data->mv_data,
5015                                     sizeof(pgno_t));
5016                         else if (F_ISSET(flags, MDB_RESERVE))
5017                                 data->mv_data = node->mn_data + key->mv_size;
5018                         else
5019                                 memcpy(node->mn_data + key->mv_size, data->mv_data,
5020                                     data->mv_size);
5021                 } else {
5022                         memcpy(node->mn_data + key->mv_size, &ofp->mp_pgno,
5023                             sizeof(pgno_t));
5024                         if (F_ISSET(flags, MDB_RESERVE))
5025                                 data->mv_data = METADATA(ofp);
5026                         else
5027                                 memcpy(METADATA(ofp), data->mv_data, data->mv_size);
5028                 }
5029         }
5030
5031         return MDB_SUCCESS;
5032 }
5033
5034 /** Delete the specified node from a page.
5035  * @param[in] mp The page to operate on.
5036  * @param[in] indx The index of the node to delete.
5037  * @param[in] ksize The size of a node. Only used if the page is
5038  * part of a #MDB_DUPFIXED database.
5039  */
5040 static void
5041 mdb_node_del(MDB_page *mp, indx_t indx, int ksize)
5042 {
5043         unsigned int     sz;
5044         indx_t           i, j, numkeys, ptr;
5045         MDB_node        *node;
5046         char            *base;
5047
5048 #if MDB_DEBUG
5049         {
5050         pgno_t pgno;
5051         COPY_PGNO(pgno, mp->mp_pgno);
5052         DPRINTF("delete node %u on %s page %zu", indx,
5053             IS_LEAF(mp) ? "leaf" : "branch", pgno);
5054         }
5055 #endif
5056         assert(indx < NUMKEYS(mp));
5057
5058         if (IS_LEAF2(mp)) {
5059                 int x = NUMKEYS(mp) - 1 - indx;
5060                 base = LEAF2KEY(mp, indx, ksize);
5061                 if (x)
5062                         memmove(base, base + ksize, x * ksize);
5063                 mp->mp_lower -= sizeof(indx_t);
5064                 mp->mp_upper += ksize - sizeof(indx_t);
5065                 return;
5066         }
5067
5068         node = NODEPTR(mp, indx);
5069         sz = NODESIZE + node->mn_ksize;
5070         if (IS_LEAF(mp)) {
5071                 if (F_ISSET(node->mn_flags, F_BIGDATA))
5072                         sz += sizeof(pgno_t);
5073                 else
5074                         sz += NODEDSZ(node);
5075         }
5076         sz += sz & 1;
5077
5078         ptr = mp->mp_ptrs[indx];
5079         numkeys = NUMKEYS(mp);
5080         for (i = j = 0; i < numkeys; i++) {
5081                 if (i != indx) {
5082                         mp->mp_ptrs[j] = mp->mp_ptrs[i];
5083                         if (mp->mp_ptrs[i] < ptr)
5084                                 mp->mp_ptrs[j] += sz;
5085                         j++;
5086                 }
5087         }
5088
5089         base = (char *)mp + mp->mp_upper;
5090         memmove(base + sz, base, ptr - mp->mp_upper);
5091
5092         mp->mp_lower -= sizeof(indx_t);
5093         mp->mp_upper += sz;
5094 }
5095
5096 /** Compact the main page after deleting a node on a subpage.
5097  * @param[in] mp The main page to operate on.
5098  * @param[in] indx The index of the subpage on the main page.
5099  */
5100 static void
5101 mdb_node_shrink(MDB_page *mp, indx_t indx)
5102 {
5103         MDB_node *node;
5104         MDB_page *sp, *xp;
5105         char *base;
5106         int osize, nsize;
5107         int delta;
5108         indx_t           i, numkeys, ptr;
5109
5110         node = NODEPTR(mp, indx);
5111         sp = (MDB_page *)NODEDATA(node);
5112         osize = NODEDSZ(node);
5113
5114         delta = sp->mp_upper - sp->mp_lower;
5115         SETDSZ(node, osize - delta);
5116         xp = (MDB_page *)((char *)sp + delta);
5117
5118         /* shift subpage upward */
5119         if (IS_LEAF2(sp)) {
5120                 nsize = NUMKEYS(sp) * sp->mp_pad;
5121                 memmove(METADATA(xp), METADATA(sp), nsize);
5122         } else {
5123                 int i;
5124                 nsize = osize - sp->mp_upper;
5125                 numkeys = NUMKEYS(sp);
5126                 for (i=numkeys-1; i>=0; i--)
5127                         xp->mp_ptrs[i] = sp->mp_ptrs[i] - delta;
5128         }
5129         xp->mp_upper = sp->mp_lower;
5130         xp->mp_lower = sp->mp_lower;
5131         xp->mp_flags = sp->mp_flags;
5132         xp->mp_pad = sp->mp_pad;
5133         COPY_PGNO(xp->mp_pgno, mp->mp_pgno);
5134
5135         /* shift lower nodes upward */
5136         ptr = mp->mp_ptrs[indx];
5137         numkeys = NUMKEYS(mp);
5138         for (i = 0; i < numkeys; i++) {
5139                 if (mp->mp_ptrs[i] <= ptr)
5140                         mp->mp_ptrs[i] += delta;
5141         }
5142
5143         base = (char *)mp + mp->mp_upper;
5144         memmove(base + delta, base, ptr - mp->mp_upper + NODESIZE + NODEKSZ(node));
5145         mp->mp_upper += delta;
5146 }
5147
5148 /** Initial setup of a sorted-dups cursor.
5149  * Sorted duplicates are implemented as a sub-database for the given key.
5150  * The duplicate data items are actually keys of the sub-database.
5151  * Operations on the duplicate data items are performed using a sub-cursor
5152  * initialized when the sub-database is first accessed. This function does
5153  * the preliminary setup of the sub-cursor, filling in the fields that
5154  * depend only on the parent DB.
5155  * @param[in] mc The main cursor whose sorted-dups cursor is to be initialized.
5156  */
5157 static void
5158 mdb_xcursor_init0(MDB_cursor *mc)
5159 {
5160         MDB_xcursor *mx = mc->mc_xcursor;
5161
5162         mx->mx_cursor.mc_xcursor = NULL;
5163         mx->mx_cursor.mc_txn = mc->mc_txn;
5164         mx->mx_cursor.mc_db = &mx->mx_db;
5165         mx->mx_cursor.mc_dbx = &mx->mx_dbx;
5166         mx->mx_cursor.mc_dbi = mc->mc_dbi+1;
5167         mx->mx_cursor.mc_dbflag = &mx->mx_dbflag;
5168         mx->mx_cursor.mc_snum = 0;
5169         mx->mx_cursor.mc_top = 0;
5170         mx->mx_cursor.mc_flags = C_SUB;
5171         mx->mx_dbx.md_cmp = mc->mc_dbx->md_dcmp;
5172         mx->mx_dbx.md_dcmp = NULL;
5173         mx->mx_dbx.md_rel = mc->mc_dbx->md_rel;
5174 }
5175
5176 /** Final setup of a sorted-dups cursor.
5177  *      Sets up the fields that depend on the data from the main cursor.
5178  * @param[in] mc The main cursor whose sorted-dups cursor is to be initialized.
5179  * @param[in] node The data containing the #MDB_db record for the
5180  * sorted-dup database.
5181  */
5182 static void
5183 mdb_xcursor_init1(MDB_cursor *mc, MDB_node *node)
5184 {
5185         MDB_xcursor *mx = mc->mc_xcursor;
5186
5187         if (node->mn_flags & F_SUBDATA) {
5188                 memcpy(&mx->mx_db, NODEDATA(node), sizeof(MDB_db));
5189                 mx->mx_cursor.mc_pg[0] = 0;
5190                 mx->mx_cursor.mc_snum = 0;
5191                 mx->mx_cursor.mc_flags = C_SUB;
5192         } else {
5193                 MDB_page *fp = NODEDATA(node);
5194                 mx->mx_db.md_pad = mc->mc_pg[mc->mc_top]->mp_pad;
5195                 mx->mx_db.md_flags = 0;
5196                 mx->mx_db.md_depth = 1;
5197                 mx->mx_db.md_branch_pages = 0;
5198                 mx->mx_db.md_leaf_pages = 1;
5199                 mx->mx_db.md_overflow_pages = 0;
5200                 mx->mx_db.md_entries = NUMKEYS(fp);
5201                 COPY_PGNO(mx->mx_db.md_root, fp->mp_pgno);
5202                 mx->mx_cursor.mc_snum = 1;
5203                 mx->mx_cursor.mc_flags = C_INITIALIZED|C_SUB;
5204                 mx->mx_cursor.mc_top = 0;
5205                 mx->mx_cursor.mc_pg[0] = fp;
5206                 mx->mx_cursor.mc_ki[0] = 0;
5207                 if (mc->mc_db->md_flags & MDB_DUPFIXED) {
5208                         mx->mx_db.md_flags = MDB_DUPFIXED;
5209                         mx->mx_db.md_pad = fp->mp_pad;
5210                         if (mc->mc_db->md_flags & MDB_INTEGERDUP)
5211                                 mx->mx_db.md_flags |= MDB_INTEGERKEY;
5212                 }
5213         }
5214         DPRINTF("Sub-db %u for db %u root page %zu", mx->mx_cursor.mc_dbi, mc->mc_dbi,
5215                 mx->mx_db.md_root);
5216         mx->mx_dbflag = (F_ISSET(mc->mc_pg[mc->mc_top]->mp_flags, P_DIRTY)) ?
5217                 DB_DIRTY : 0;
5218         mx->mx_dbx.md_name.mv_data = NODEKEY(node);
5219         mx->mx_dbx.md_name.mv_size = node->mn_ksize;
5220 #if UINT_MAX < SIZE_MAX
5221         if (mx->mx_dbx.md_cmp == mdb_cmp_int && mx->mx_db.md_pad == sizeof(size_t))
5222 #ifdef MISALIGNED_OK
5223                 mx->mx_dbx.md_cmp = mdb_cmp_long;
5224 #else
5225                 mx->mx_dbx.md_cmp = mdb_cmp_cint;
5226 #endif
5227 #endif
5228 }
5229
5230 /** Initialize a cursor for a given transaction and database. */
5231 static void
5232 mdb_cursor_init(MDB_cursor *mc, MDB_txn *txn, MDB_dbi dbi, MDB_xcursor *mx)
5233 {
5234         mc->mc_orig = NULL;
5235         mc->mc_dbi = dbi;
5236         mc->mc_txn = txn;
5237         mc->mc_db = &txn->mt_dbs[dbi];
5238         mc->mc_dbx = &txn->mt_dbxs[dbi];
5239         mc->mc_dbflag = &txn->mt_dbflags[dbi];
5240         mc->mc_snum = 0;
5241         mc->mc_top = 0;
5242         mc->mc_pg[0] = 0;
5243         mc->mc_flags = 0;
5244         if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT) {
5245                 assert(mx != NULL);
5246                 mc->mc_xcursor = mx;
5247                 mdb_xcursor_init0(mc);
5248         } else {
5249                 mc->mc_xcursor = NULL;
5250         }
5251         if (*mc->mc_dbflag & DB_STALE) {
5252                 mdb_page_search(mc, NULL, MDB_PS_ROOTONLY);
5253         }
5254 }
5255
5256 int
5257 mdb_cursor_open(MDB_txn *txn, MDB_dbi dbi, MDB_cursor **ret)
5258 {
5259         MDB_cursor      *mc;
5260         MDB_xcursor     *mx = NULL;
5261         size_t size = sizeof(MDB_cursor);
5262
5263         if (txn == NULL || ret == NULL || dbi >= txn->mt_numdbs)
5264                 return EINVAL;
5265
5266         /* Allow read access to the freelist */
5267         if (!dbi && !F_ISSET(txn->mt_flags, MDB_TXN_RDONLY))
5268                 return EINVAL;
5269
5270         if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT)
5271                 size += sizeof(MDB_xcursor);
5272
5273         if ((mc = malloc(size)) != NULL) {
5274                 if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT) {
5275                         mx = (MDB_xcursor *)(mc + 1);
5276                 }
5277                 mdb_cursor_init(mc, txn, dbi, mx);
5278                 if (txn->mt_cursors) {
5279                         mc->mc_next = txn->mt_cursors[dbi];
5280                         txn->mt_cursors[dbi] = mc;
5281                 }
5282                 mc->mc_flags |= C_ALLOCD;
5283         } else {
5284                 return ENOMEM;
5285         }
5286
5287         *ret = mc;
5288
5289         return MDB_SUCCESS;
5290 }
5291
5292 int
5293 mdb_cursor_renew(MDB_txn *txn, MDB_cursor *mc)
5294 {
5295         if (txn == NULL || mc == NULL || mc->mc_dbi >= txn->mt_numdbs)
5296                 return EINVAL;
5297
5298         if (txn->mt_cursors)
5299                 return EINVAL;
5300
5301         mdb_cursor_init(mc, txn, mc->mc_dbi, mc->mc_xcursor);
5302         return MDB_SUCCESS;
5303 }
5304
5305 /* Return the count of duplicate data items for the current key */
5306 int
5307 mdb_cursor_count(MDB_cursor *mc, size_t *countp)
5308 {
5309         MDB_node        *leaf;
5310
5311         if (mc == NULL || countp == NULL)
5312                 return EINVAL;
5313
5314         if (!(mc->mc_db->md_flags & MDB_DUPSORT))
5315                 return EINVAL;
5316
5317         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
5318         if (!F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5319                 *countp = 1;
5320         } else {
5321                 if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED))
5322                         return EINVAL;
5323
5324                 *countp = mc->mc_xcursor->mx_db.md_entries;
5325         }
5326         return MDB_SUCCESS;
5327 }
5328
5329 void
5330 mdb_cursor_close(MDB_cursor *mc)
5331 {
5332         if (mc != NULL) {
5333                 /* remove from txn, if tracked */
5334                 if (mc->mc_txn->mt_cursors) {
5335                         MDB_cursor **prev = &mc->mc_txn->mt_cursors[mc->mc_dbi];
5336                         while (*prev && *prev != mc) prev = &(*prev)->mc_next;
5337                         if (*prev == mc)
5338                                 *prev = mc->mc_next;
5339                 }
5340                 if (mc->mc_flags & C_ALLOCD)
5341                         free(mc);
5342         }
5343 }
5344
5345 MDB_txn *
5346 mdb_cursor_txn(MDB_cursor *mc)
5347 {
5348         if (!mc) return NULL;
5349         return mc->mc_txn;
5350 }
5351
5352 MDB_dbi
5353 mdb_cursor_dbi(MDB_cursor *mc)
5354 {
5355         if (!mc) return 0;
5356         return mc->mc_dbi;
5357 }
5358
5359 /** Replace the key for a node with a new key.
5360  * @param[in] mp The page containing the node to operate on.
5361  * @param[in] indx The index of the node to operate on.
5362  * @param[in] key The new key to use.
5363  * @return 0 on success, non-zero on failure.
5364  */
5365 static int
5366 mdb_update_key(MDB_page *mp, indx_t indx, MDB_val *key)
5367 {
5368         MDB_node                *node;
5369         char                    *base;
5370         size_t                   len;
5371         int                      delta, delta0;
5372         indx_t                   ptr, i, numkeys;
5373         DKBUF;
5374
5375         node = NODEPTR(mp, indx);
5376         ptr = mp->mp_ptrs[indx];
5377 #if MDB_DEBUG
5378         {
5379                 MDB_val k2;
5380                 char kbuf2[(MAXKEYSIZE*2+1)];
5381                 k2.mv_data = NODEKEY(node);
5382                 k2.mv_size = node->mn_ksize;
5383                 DPRINTF("update key %u (ofs %u) [%s] to [%s] on page %zu",
5384                         indx, ptr,
5385                         mdb_dkey(&k2, kbuf2),
5386                         DKEY(key),
5387                         mp->mp_pgno);
5388         }
5389 #endif
5390
5391         delta0 = delta = key->mv_size - node->mn_ksize;
5392
5393         /* Must be 2-byte aligned. If new key is
5394          * shorter by 1, the shift will be skipped.
5395          */
5396         delta += (delta & 1);
5397         if (delta) {
5398                 if (delta > 0 && SIZELEFT(mp) < delta) {
5399                         DPRINTF("OUCH! Not enough room, delta = %d", delta);
5400                         return MDB_PAGE_FULL;
5401                 }
5402
5403                 numkeys = NUMKEYS(mp);
5404                 for (i = 0; i < numkeys; i++) {
5405                         if (mp->mp_ptrs[i] <= ptr)
5406                                 mp->mp_ptrs[i] -= delta;
5407                 }
5408
5409                 base = (char *)mp + mp->mp_upper;
5410                 len = ptr - mp->mp_upper + NODESIZE;
5411                 memmove(base - delta, base, len);
5412                 mp->mp_upper -= delta;
5413
5414                 node = NODEPTR(mp, indx);
5415         }
5416
5417         /* But even if no shift was needed, update ksize */
5418         if (delta0)
5419                 node->mn_ksize = key->mv_size;
5420
5421         if (key->mv_size)
5422                 memcpy(NODEKEY(node), key->mv_data, key->mv_size);
5423
5424         return MDB_SUCCESS;
5425 }
5426
5427 /** Move a node from csrc to cdst.
5428  */
5429 static int
5430 mdb_node_move(MDB_cursor *csrc, MDB_cursor *cdst)
5431 {
5432         int                      rc;
5433         MDB_node                *srcnode;
5434         MDB_val          key, data;
5435         pgno_t  srcpg;
5436         unsigned short flags;
5437
5438         DKBUF;
5439
5440         /* Mark src and dst as dirty. */
5441         if ((rc = mdb_page_touch(csrc)) ||
5442             (rc = mdb_page_touch(cdst)))
5443                 return rc;
5444
5445         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
5446                 srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);        /* fake */
5447                 key.mv_size = csrc->mc_db->md_pad;
5448                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], csrc->mc_ki[csrc->mc_top], key.mv_size);
5449                 data.mv_size = 0;
5450                 data.mv_data = NULL;
5451                 srcpg = 0;
5452                 flags = 0;
5453         } else {
5454                 srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], csrc->mc_ki[csrc->mc_top]);
5455                 assert(!((long)srcnode&1));
5456                 srcpg = NODEPGNO(srcnode);
5457                 flags = srcnode->mn_flags;
5458                 if (csrc->mc_ki[csrc->mc_top] == 0 && IS_BRANCH(csrc->mc_pg[csrc->mc_top])) {
5459                         unsigned int snum = csrc->mc_snum;
5460                         MDB_node *s2;
5461                         /* must find the lowest key below src */
5462                         mdb_page_search_root(csrc, NULL, 0);
5463                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
5464                                 key.mv_size = csrc->mc_db->md_pad;
5465                                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], 0, key.mv_size);
5466                         } else {
5467                                 s2 = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);
5468                                 key.mv_size = NODEKSZ(s2);
5469                                 key.mv_data = NODEKEY(s2);
5470                         }
5471                         csrc->mc_snum = snum--;
5472                         csrc->mc_top = snum;
5473                 } else {
5474                         key.mv_size = NODEKSZ(srcnode);
5475                         key.mv_data = NODEKEY(srcnode);
5476                 }
5477                 data.mv_size = NODEDSZ(srcnode);
5478                 data.mv_data = NODEDATA(srcnode);
5479         }
5480         if (IS_BRANCH(cdst->mc_pg[cdst->mc_top]) && cdst->mc_ki[cdst->mc_top] == 0) {
5481                 unsigned int snum = cdst->mc_snum;
5482                 MDB_node *s2;
5483                 MDB_val bkey;
5484                 /* must find the lowest key below dst */
5485                 mdb_page_search_root(cdst, NULL, 0);
5486                 if (IS_LEAF2(cdst->mc_pg[cdst->mc_top])) {
5487                         bkey.mv_size = cdst->mc_db->md_pad;
5488                         bkey.mv_data = LEAF2KEY(cdst->mc_pg[cdst->mc_top], 0, bkey.mv_size);
5489                 } else {
5490                         s2 = NODEPTR(cdst->mc_pg[cdst->mc_top], 0);
5491                         bkey.mv_size = NODEKSZ(s2);
5492                         bkey.mv_data = NODEKEY(s2);
5493                 }
5494                 cdst->mc_snum = snum--;
5495                 cdst->mc_top = snum;
5496                 rc = mdb_update_key(cdst->mc_pg[cdst->mc_top], 0, &bkey);
5497         }
5498
5499         DPRINTF("moving %s node %u [%s] on page %zu to node %u on page %zu",
5500             IS_LEAF(csrc->mc_pg[csrc->mc_top]) ? "leaf" : "branch",
5501             csrc->mc_ki[csrc->mc_top],
5502                 DKEY(&key),
5503             csrc->mc_pg[csrc->mc_top]->mp_pgno,
5504             cdst->mc_ki[cdst->mc_top], cdst->mc_pg[cdst->mc_top]->mp_pgno);
5505
5506         /* Add the node to the destination page.
5507          */
5508         rc = mdb_node_add(cdst, cdst->mc_ki[cdst->mc_top], &key, &data, srcpg, flags);
5509         if (rc != MDB_SUCCESS)
5510                 return rc;
5511
5512         /* Delete the node from the source page.
5513          */
5514         mdb_node_del(csrc->mc_pg[csrc->mc_top], csrc->mc_ki[csrc->mc_top], key.mv_size);
5515
5516         {
5517                 /* Adjust other cursors pointing to mp */
5518                 MDB_cursor *m2, *m3;
5519                 MDB_dbi dbi = csrc->mc_dbi;
5520                 MDB_page *mp = csrc->mc_pg[csrc->mc_top];
5521
5522                 if (csrc->mc_flags & C_SUB)
5523                         dbi--;
5524
5525                 for (m2 = csrc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
5526                         if (m2 == csrc) continue;
5527                         if (csrc->mc_flags & C_SUB)
5528                                 m3 = &m2->mc_xcursor->mx_cursor;
5529                         else
5530                                 m3 = m2;
5531                         if (m3->mc_pg[csrc->mc_top] == mp && m3->mc_ki[csrc->mc_top] ==
5532                                 csrc->mc_ki[csrc->mc_top]) {
5533                                 m3->mc_pg[csrc->mc_top] = cdst->mc_pg[cdst->mc_top];
5534                                 m3->mc_ki[csrc->mc_top] = cdst->mc_ki[cdst->mc_top];
5535                         }
5536                 }
5537         }
5538
5539         /* Update the parent separators.
5540          */
5541         if (csrc->mc_ki[csrc->mc_top] == 0) {
5542                 if (csrc->mc_ki[csrc->mc_top-1] != 0) {
5543                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
5544                                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], 0, key.mv_size);
5545                         } else {
5546                                 srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);
5547                                 key.mv_size = NODEKSZ(srcnode);
5548                                 key.mv_data = NODEKEY(srcnode);
5549                         }
5550                         DPRINTF("update separator for source page %zu to [%s]",
5551                                 csrc->mc_pg[csrc->mc_top]->mp_pgno, DKEY(&key));
5552                         if ((rc = mdb_update_key(csrc->mc_pg[csrc->mc_top-1], csrc->mc_ki[csrc->mc_top-1],
5553                                 &key)) != MDB_SUCCESS)
5554                                 return rc;
5555                 }
5556                 if (IS_BRANCH(csrc->mc_pg[csrc->mc_top])) {
5557                         MDB_val  nullkey;
5558                         nullkey.mv_size = 0;
5559                         rc = mdb_update_key(csrc->mc_pg[csrc->mc_top], 0, &nullkey);
5560                         assert(rc == MDB_SUCCESS);
5561                 }
5562         }
5563
5564         if (cdst->mc_ki[cdst->mc_top] == 0) {
5565                 if (cdst->mc_ki[cdst->mc_top-1] != 0) {
5566                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
5567                                 key.mv_data = LEAF2KEY(cdst->mc_pg[cdst->mc_top], 0, key.mv_size);
5568                         } else {
5569                                 srcnode = NODEPTR(cdst->mc_pg[cdst->mc_top], 0);
5570                                 key.mv_size = NODEKSZ(srcnode);
5571                                 key.mv_data = NODEKEY(srcnode);
5572                         }
5573                         DPRINTF("update separator for destination page %zu to [%s]",
5574                                 cdst->mc_pg[cdst->mc_top]->mp_pgno, DKEY(&key));
5575                         if ((rc = mdb_update_key(cdst->mc_pg[cdst->mc_top-1], cdst->mc_ki[cdst->mc_top-1],
5576                                 &key)) != MDB_SUCCESS)
5577                                 return rc;
5578                 }
5579                 if (IS_BRANCH(cdst->mc_pg[cdst->mc_top])) {
5580                         MDB_val  nullkey;
5581                         nullkey.mv_size = 0;
5582                         rc = mdb_update_key(cdst->mc_pg[cdst->mc_top], 0, &nullkey);
5583                         assert(rc == MDB_SUCCESS);
5584                 }
5585         }
5586
5587         return MDB_SUCCESS;
5588 }
5589
5590 /** Merge one page into another.
5591  *  The nodes from the page pointed to by \b csrc will
5592  *      be copied to the page pointed to by \b cdst and then
5593  *      the \b csrc page will be freed.
5594  * @param[in] csrc Cursor pointing to the source page.
5595  * @param[in] cdst Cursor pointing to the destination page.
5596  */
5597 static int
5598 mdb_page_merge(MDB_cursor *csrc, MDB_cursor *cdst)
5599 {
5600         int                      rc;
5601         indx_t                   i, j;
5602         MDB_node                *srcnode;
5603         MDB_val          key, data;
5604         unsigned        nkeys;
5605
5606         DPRINTF("merging page %zu into %zu", csrc->mc_pg[csrc->mc_top]->mp_pgno,
5607                 cdst->mc_pg[cdst->mc_top]->mp_pgno);
5608
5609         assert(csrc->mc_snum > 1);      /* can't merge root page */
5610         assert(cdst->mc_snum > 1);
5611
5612         /* Mark dst as dirty. */
5613         if ((rc = mdb_page_touch(cdst)))
5614                 return rc;
5615
5616         /* Move all nodes from src to dst.
5617          */
5618         j = nkeys = NUMKEYS(cdst->mc_pg[cdst->mc_top]);
5619         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
5620                 key.mv_size = csrc->mc_db->md_pad;
5621                 key.mv_data = METADATA(csrc->mc_pg[csrc->mc_top]);
5622                 for (i = 0; i < NUMKEYS(csrc->mc_pg[csrc->mc_top]); i++, j++) {
5623                         rc = mdb_node_add(cdst, j, &key, NULL, 0, 0);
5624                         if (rc != MDB_SUCCESS)
5625                                 return rc;
5626                         key.mv_data = (char *)key.mv_data + key.mv_size;
5627                 }
5628         } else {
5629                 for (i = 0; i < NUMKEYS(csrc->mc_pg[csrc->mc_top]); i++, j++) {
5630                         srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], i);
5631                         if (i == 0 && IS_BRANCH(csrc->mc_pg[csrc->mc_top])) {
5632                                 unsigned int snum = csrc->mc_snum;
5633                                 MDB_node *s2;
5634                                 /* must find the lowest key below src */
5635                                 mdb_page_search_root(csrc, NULL, 0);
5636                                 if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
5637                                         key.mv_size = csrc->mc_db->md_pad;
5638                                         key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], 0, key.mv_size);
5639                                 } else {
5640                                         s2 = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);
5641                                         key.mv_size = NODEKSZ(s2);
5642                                         key.mv_data = NODEKEY(s2);
5643                                 }
5644                                 csrc->mc_snum = snum--;
5645                                 csrc->mc_top = snum;
5646                         } else {
5647                                 key.mv_size = srcnode->mn_ksize;
5648                                 key.mv_data = NODEKEY(srcnode);
5649                         }
5650
5651                         data.mv_size = NODEDSZ(srcnode);
5652                         data.mv_data = NODEDATA(srcnode);
5653                         rc = mdb_node_add(cdst, j, &key, &data, NODEPGNO(srcnode), srcnode->mn_flags);
5654                         if (rc != MDB_SUCCESS)
5655                                 return rc;
5656                 }
5657         }
5658
5659         DPRINTF("dst page %zu now has %u keys (%.1f%% filled)",
5660             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);
5661
5662         /* Unlink the src page from parent and add to free list.
5663          */
5664         mdb_node_del(csrc->mc_pg[csrc->mc_top-1], csrc->mc_ki[csrc->mc_top-1], 0);
5665         if (csrc->mc_ki[csrc->mc_top-1] == 0) {
5666                 key.mv_size = 0;
5667                 if ((rc = mdb_update_key(csrc->mc_pg[csrc->mc_top-1], 0, &key)) != MDB_SUCCESS)
5668                         return rc;
5669         }
5670
5671         mdb_midl_append(&csrc->mc_txn->mt_free_pgs, csrc->mc_pg[csrc->mc_top]->mp_pgno);
5672         if (IS_LEAF(csrc->mc_pg[csrc->mc_top]))
5673                 csrc->mc_db->md_leaf_pages--;
5674         else
5675                 csrc->mc_db->md_branch_pages--;
5676         {
5677                 /* Adjust other cursors pointing to mp */
5678                 MDB_cursor *m2, *m3;
5679                 MDB_dbi dbi = csrc->mc_dbi;
5680                 MDB_page *mp = cdst->mc_pg[cdst->mc_top];
5681
5682                 if (csrc->mc_flags & C_SUB)
5683                         dbi--;
5684
5685                 for (m2 = csrc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
5686                         if (csrc->mc_flags & C_SUB)
5687                                 m3 = &m2->mc_xcursor->mx_cursor;
5688                         else
5689                                 m3 = m2;
5690                         if (m3 == csrc) continue;
5691                         if (m3->mc_snum < csrc->mc_snum) continue;
5692                         if (m3->mc_pg[csrc->mc_top] == csrc->mc_pg[csrc->mc_top]) {
5693                                 m3->mc_pg[csrc->mc_top] = mp;
5694                                 m3->mc_ki[csrc->mc_top] += nkeys;
5695                         }
5696                 }
5697         }
5698         mdb_cursor_pop(csrc);
5699
5700         return mdb_rebalance(csrc);
5701 }
5702
5703 /** Copy the contents of a cursor.
5704  * @param[in] csrc The cursor to copy from.
5705  * @param[out] cdst The cursor to copy to.
5706  */
5707 static void
5708 mdb_cursor_copy(const MDB_cursor *csrc, MDB_cursor *cdst)
5709 {
5710         unsigned int i;
5711
5712         cdst->mc_txn = csrc->mc_txn;
5713         cdst->mc_dbi = csrc->mc_dbi;
5714         cdst->mc_db  = csrc->mc_db;
5715         cdst->mc_dbx = csrc->mc_dbx;
5716         cdst->mc_snum = csrc->mc_snum;
5717         cdst->mc_top = csrc->mc_top;
5718         cdst->mc_flags = csrc->mc_flags;
5719
5720         for (i=0; i<csrc->mc_snum; i++) {
5721                 cdst->mc_pg[i] = csrc->mc_pg[i];
5722                 cdst->mc_ki[i] = csrc->mc_ki[i];
5723         }
5724 }
5725
5726 /** Rebalance the tree after a delete operation.
5727  * @param[in] mc Cursor pointing to the page where rebalancing
5728  * should begin.
5729  * @return 0 on success, non-zero on failure.
5730  */
5731 static int
5732 mdb_rebalance(MDB_cursor *mc)
5733 {
5734         MDB_node        *node;
5735         int rc;
5736         unsigned int ptop;
5737         MDB_cursor      mn;
5738
5739 #if MDB_DEBUG
5740         {
5741         pgno_t pgno;
5742         COPY_PGNO(pgno, mc->mc_pg[mc->mc_top]->mp_pgno);
5743         DPRINTF("rebalancing %s page %zu (has %u keys, %.1f%% full)",
5744             IS_LEAF(mc->mc_pg[mc->mc_top]) ? "leaf" : "branch",
5745             pgno, NUMKEYS(mc->mc_pg[mc->mc_top]), (float)PAGEFILL(mc->mc_txn->mt_env, mc->mc_pg[mc->mc_top]) / 10);
5746         }
5747 #endif
5748
5749         if (PAGEFILL(mc->mc_txn->mt_env, mc->mc_pg[mc->mc_top]) >= FILL_THRESHOLD) {
5750 #if MDB_DEBUG
5751                 pgno_t pgno;
5752                 COPY_PGNO(pgno, mc->mc_pg[mc->mc_top]->mp_pgno);
5753                 DPRINTF("no need to rebalance page %zu, above fill threshold",
5754                     pgno);
5755 #endif
5756                 return MDB_SUCCESS;
5757         }
5758
5759         if (mc->mc_snum < 2) {
5760                 MDB_page *mp = mc->mc_pg[0];
5761                 if (NUMKEYS(mp) == 0) {
5762                         DPUTS("tree is completely empty");
5763                         mc->mc_db->md_root = P_INVALID;
5764                         mc->mc_db->md_depth = 0;
5765                         mc->mc_db->md_leaf_pages = 0;
5766                         mdb_midl_append(&mc->mc_txn->mt_free_pgs, mp->mp_pgno);
5767                         mc->mc_snum = 0;
5768                         mc->mc_top = 0;
5769                         {
5770                                 /* Adjust other cursors pointing to mp */
5771                                 MDB_cursor *m2, *m3;
5772                                 MDB_dbi dbi = mc->mc_dbi;
5773
5774                                 if (mc->mc_flags & C_SUB)
5775                                         dbi--;
5776
5777                                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
5778                                         if (m2 == mc) continue;
5779                                         if (mc->mc_flags & C_SUB)
5780                                                 m3 = &m2->mc_xcursor->mx_cursor;
5781                                         else
5782                                                 m3 = m2;
5783                                         if (m3->mc_snum < mc->mc_snum) continue;
5784                                         if (m3->mc_pg[0] == mp) {
5785                                                 m3->mc_snum = 0;
5786                                                 m3->mc_top = 0;
5787                                         }
5788                                 }
5789                         }
5790                 } else if (IS_BRANCH(mp) && NUMKEYS(mp) == 1) {
5791                         DPUTS("collapsing root page!");
5792                         mdb_midl_append(&mc->mc_txn->mt_free_pgs, mp->mp_pgno);
5793                         mc->mc_db->md_root = NODEPGNO(NODEPTR(mp, 0));
5794                         if ((rc = mdb_page_get(mc->mc_txn, mc->mc_db->md_root,
5795                                 &mc->mc_pg[0])))
5796                                 return rc;
5797                         mc->mc_db->md_depth--;
5798                         mc->mc_db->md_branch_pages--;
5799                         {
5800                                 /* Adjust other cursors pointing to mp */
5801                                 MDB_cursor *m2, *m3;
5802                                 MDB_dbi dbi = mc->mc_dbi;
5803
5804                                 if (mc->mc_flags & C_SUB)
5805                                         dbi--;
5806
5807                                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
5808                                         if (m2 == mc) continue;
5809                                         if (mc->mc_flags & C_SUB)
5810                                                 m3 = &m2->mc_xcursor->mx_cursor;
5811                                         else
5812                                                 m3 = m2;
5813                                         if (m3->mc_snum < mc->mc_snum) continue;
5814                                         if (m3->mc_pg[0] == mp) {
5815                                                 m3->mc_pg[0] = mc->mc_pg[0];
5816                                         }
5817                                 }
5818                         }
5819                 } else
5820                         DPUTS("root page doesn't need rebalancing");
5821                 return MDB_SUCCESS;
5822         }
5823
5824         /* The parent (branch page) must have at least 2 pointers,
5825          * otherwise the tree is invalid.
5826          */
5827         ptop = mc->mc_top-1;
5828         assert(NUMKEYS(mc->mc_pg[ptop]) > 1);
5829
5830         /* Leaf page fill factor is below the threshold.
5831          * Try to move keys from left or right neighbor, or
5832          * merge with a neighbor page.
5833          */
5834
5835         /* Find neighbors.
5836          */
5837         mdb_cursor_copy(mc, &mn);
5838         mn.mc_xcursor = NULL;
5839
5840         if (mc->mc_ki[ptop] == 0) {
5841                 /* We're the leftmost leaf in our parent.
5842                  */
5843                 DPUTS("reading right neighbor");
5844                 mn.mc_ki[ptop]++;
5845                 node = NODEPTR(mc->mc_pg[ptop], mn.mc_ki[ptop]);
5846                 if ((rc = mdb_page_get(mc->mc_txn, NODEPGNO(node), &mn.mc_pg[mn.mc_top])))
5847                         return rc;
5848                 mn.mc_ki[mn.mc_top] = 0;
5849                 mc->mc_ki[mc->mc_top] = NUMKEYS(mc->mc_pg[mc->mc_top]);
5850         } else {
5851                 /* There is at least one neighbor to the left.
5852                  */
5853                 DPUTS("reading left neighbor");
5854                 mn.mc_ki[ptop]--;
5855                 node = NODEPTR(mc->mc_pg[ptop], mn.mc_ki[ptop]);
5856                 if ((rc = mdb_page_get(mc->mc_txn, NODEPGNO(node), &mn.mc_pg[mn.mc_top])))
5857                         return rc;
5858                 mn.mc_ki[mn.mc_top] = NUMKEYS(mn.mc_pg[mn.mc_top]) - 1;
5859                 mc->mc_ki[mc->mc_top] = 0;
5860         }
5861
5862         DPRINTF("found neighbor page %zu (%u keys, %.1f%% full)",
5863             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);
5864
5865         /* If the neighbor page is above threshold and has at least two
5866          * keys, move one key from it.
5867          *
5868          * Otherwise we should try to merge them.
5869          */
5870         if (PAGEFILL(mc->mc_txn->mt_env, mn.mc_pg[mn.mc_top]) >= FILL_THRESHOLD && NUMKEYS(mn.mc_pg[mn.mc_top]) >= 2)
5871                 return mdb_node_move(&mn, mc);
5872         else { /* FIXME: if (has_enough_room()) */
5873                 mc->mc_flags &= ~C_INITIALIZED;
5874                 if (mc->mc_ki[ptop] == 0)
5875                         return mdb_page_merge(&mn, mc);
5876                 else
5877                         return mdb_page_merge(mc, &mn);
5878         }
5879 }
5880
5881 /** Complete a delete operation started by #mdb_cursor_del(). */
5882 static int
5883 mdb_cursor_del0(MDB_cursor *mc, MDB_node *leaf)
5884 {
5885         int rc;
5886
5887         /* add overflow pages to free list */
5888         if (!IS_LEAF2(mc->mc_pg[mc->mc_top]) && F_ISSET(leaf->mn_flags, F_BIGDATA)) {
5889                 int i, ovpages;
5890                 pgno_t pg;
5891
5892                 memcpy(&pg, NODEDATA(leaf), sizeof(pg));
5893                 ovpages = OVPAGES(NODEDSZ(leaf), mc->mc_txn->mt_env->me_psize);
5894                 mc->mc_db->md_overflow_pages -= ovpages;
5895                 for (i=0; i<ovpages; i++) {
5896                         DPRINTF("freed ov page %zu", pg);
5897                         mdb_midl_append(&mc->mc_txn->mt_free_pgs, pg);
5898                         pg++;
5899                 }
5900         }
5901         mdb_node_del(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], mc->mc_db->md_pad);
5902         mc->mc_db->md_entries--;
5903         rc = mdb_rebalance(mc);
5904         if (rc != MDB_SUCCESS)
5905                 mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
5906
5907         return rc;
5908 }
5909
5910 int
5911 mdb_del(MDB_txn *txn, MDB_dbi dbi,
5912     MDB_val *key, MDB_val *data)
5913 {
5914         MDB_cursor mc;
5915         MDB_xcursor mx;
5916         MDB_cursor_op op;
5917         MDB_val rdata, *xdata;
5918         int              rc, exact;
5919         DKBUF;
5920
5921         assert(key != NULL);
5922
5923         DPRINTF("====> delete db %u key [%s]", dbi, DKEY(key));
5924
5925         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs)
5926                 return EINVAL;
5927
5928         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY)) {
5929                 return EACCES;
5930         }
5931
5932         if (key->mv_size == 0 || key->mv_size > MAXKEYSIZE) {
5933                 return EINVAL;
5934         }
5935
5936         mdb_cursor_init(&mc, txn, dbi, &mx);
5937
5938         exact = 0;
5939         if (data) {
5940                 op = MDB_GET_BOTH;
5941                 rdata = *data;
5942                 xdata = &rdata;
5943         } else {
5944                 op = MDB_SET;
5945                 xdata = NULL;
5946         }
5947         rc = mdb_cursor_set(&mc, key, xdata, op, &exact);
5948         if (rc == 0)
5949                 rc = mdb_cursor_del(&mc, data ? 0 : MDB_NODUPDATA);
5950         return rc;
5951 }
5952
5953 /** Split a page and insert a new node.
5954  * @param[in,out] mc Cursor pointing to the page and desired insertion index.
5955  * The cursor will be updated to point to the actual page and index where
5956  * the node got inserted after the split.
5957  * @param[in] newkey The key for the newly inserted node.
5958  * @param[in] newdata The data for the newly inserted node.
5959  * @param[in] newpgno The page number, if the new node is a branch node.
5960  * @param[in] nflags The #NODE_ADD_FLAGS for the new node.
5961  * @return 0 on success, non-zero on failure.
5962  */
5963 static int
5964 mdb_page_split(MDB_cursor *mc, MDB_val *newkey, MDB_val *newdata, pgno_t newpgno,
5965         unsigned int nflags)
5966 {
5967         unsigned int flags;
5968         int              rc = MDB_SUCCESS, ins_new = 0, new_root = 0, newpos = 1, did_split = 0;
5969         indx_t           newindx;
5970         pgno_t           pgno = 0;
5971         unsigned int     i, j, split_indx, nkeys, pmax;
5972         MDB_node        *node;
5973         MDB_val  sepkey, rkey, xdata, *rdata = &xdata;
5974         MDB_page        *copy;
5975         MDB_page        *mp, *rp, *pp;
5976         unsigned int ptop;
5977         MDB_cursor      mn;
5978         DKBUF;
5979
5980         mp = mc->mc_pg[mc->mc_top];
5981         newindx = mc->mc_ki[mc->mc_top];
5982
5983         DPRINTF("-----> splitting %s page %zu and adding [%s] at index %i",
5984             IS_LEAF(mp) ? "leaf" : "branch", mp->mp_pgno,
5985             DKEY(newkey), mc->mc_ki[mc->mc_top]);
5986
5987         /* Create a right sibling. */
5988         if ((rc = mdb_page_new(mc, mp->mp_flags, 1, &rp)))
5989                 return rc;
5990         DPRINTF("new right sibling: page %zu", rp->mp_pgno);
5991
5992         if (mc->mc_snum < 2) {
5993                 if ((rc = mdb_page_new(mc, P_BRANCH, 1, &pp)))
5994                         return rc;
5995                 /* shift current top to make room for new parent */
5996                 mc->mc_pg[1] = mc->mc_pg[0];
5997                 mc->mc_ki[1] = mc->mc_ki[0];
5998                 mc->mc_pg[0] = pp;
5999                 mc->mc_ki[0] = 0;
6000                 mc->mc_db->md_root = pp->mp_pgno;
6001                 DPRINTF("root split! new root = %zu", pp->mp_pgno);
6002                 mc->mc_db->md_depth++;
6003                 new_root = 1;
6004
6005                 /* Add left (implicit) pointer. */
6006                 if ((rc = mdb_node_add(mc, 0, NULL, NULL, mp->mp_pgno, 0)) != MDB_SUCCESS) {
6007                         /* undo the pre-push */
6008                         mc->mc_pg[0] = mc->mc_pg[1];
6009                         mc->mc_ki[0] = mc->mc_ki[1];
6010                         mc->mc_db->md_root = mp->mp_pgno;
6011                         mc->mc_db->md_depth--;
6012                         return rc;
6013                 }
6014                 mc->mc_snum = 2;
6015                 mc->mc_top = 1;
6016                 ptop = 0;
6017         } else {
6018                 ptop = mc->mc_top-1;
6019                 DPRINTF("parent branch page is %zu", mc->mc_pg[ptop]->mp_pgno);
6020         }
6021
6022         mc->mc_flags |= C_SPLITTING;
6023         mdb_cursor_copy(mc, &mn);
6024         mn.mc_pg[mn.mc_top] = rp;
6025         mn.mc_ki[ptop] = mc->mc_ki[ptop]+1;
6026
6027         if (nflags & MDB_APPEND) {
6028                 mn.mc_ki[mn.mc_top] = 0;
6029                 sepkey = *newkey;
6030                 split_indx = newindx;
6031                 nkeys = 0;
6032                 goto newsep;
6033         }
6034
6035         nkeys = NUMKEYS(mp);
6036         split_indx = nkeys / 2;
6037         if (newindx < split_indx)
6038                 newpos = 0;
6039
6040         if (IS_LEAF2(rp)) {
6041                 char *split, *ins;
6042                 int x;
6043                 unsigned int lsize, rsize, ksize;
6044                 /* Move half of the keys to the right sibling */
6045                 copy = NULL;
6046                 x = mc->mc_ki[mc->mc_top] - split_indx;
6047                 ksize = mc->mc_db->md_pad;
6048                 split = LEAF2KEY(mp, split_indx, ksize);
6049                 rsize = (nkeys - split_indx) * ksize;
6050                 lsize = (nkeys - split_indx) * sizeof(indx_t);
6051                 mp->mp_lower -= lsize;
6052                 rp->mp_lower += lsize;
6053                 mp->mp_upper += rsize - lsize;
6054                 rp->mp_upper -= rsize - lsize;
6055                 sepkey.mv_size = ksize;
6056                 if (newindx == split_indx) {
6057                         sepkey.mv_data = newkey->mv_data;
6058                 } else {
6059                         sepkey.mv_data = split;
6060                 }
6061                 if (x<0) {
6062                         ins = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], ksize);
6063                         memcpy(rp->mp_ptrs, split, rsize);
6064                         sepkey.mv_data = rp->mp_ptrs;
6065                         memmove(ins+ksize, ins, (split_indx - mc->mc_ki[mc->mc_top]) * ksize);
6066                         memcpy(ins, newkey->mv_data, ksize);
6067                         mp->mp_lower += sizeof(indx_t);
6068                         mp->mp_upper -= ksize - sizeof(indx_t);
6069                 } else {
6070                         if (x)
6071                                 memcpy(rp->mp_ptrs, split, x * ksize);
6072                         ins = LEAF2KEY(rp, x, ksize);
6073                         memcpy(ins, newkey->mv_data, ksize);
6074                         memcpy(ins+ksize, split + x * ksize, rsize - x * ksize);
6075                         rp->mp_lower += sizeof(indx_t);
6076                         rp->mp_upper -= ksize - sizeof(indx_t);
6077                         mc->mc_ki[mc->mc_top] = x;
6078                         mc->mc_pg[mc->mc_top] = rp;
6079                 }
6080                 goto newsep;
6081         }
6082
6083         /* For leaf pages, check the split point based on what
6084          * fits where, since otherwise mdb_node_add can fail.
6085          *
6086          * This check is only needed when the data items are
6087          * relatively large, such that being off by one will
6088          * make the difference between success or failure.
6089          * When the size of the data items is much smaller than
6090          * one-half of a page, this check is irrelevant.
6091          */
6092         if (IS_LEAF(mp)) {
6093                 unsigned int psize, nsize;
6094                 /* Maximum free space in an empty page */
6095                 pmax = mc->mc_txn->mt_env->me_psize - PAGEHDRSZ;
6096                 nsize = mdb_leaf_size(mc->mc_txn->mt_env, newkey, newdata);
6097                 if ((nkeys < 20) || (nsize > pmax/4)) {
6098                         if (newindx <= split_indx) {
6099                                 psize = nsize;
6100                                 newpos = 0;
6101                                 for (i=0; i<split_indx; i++) {
6102                                         node = NODEPTR(mp, i);
6103                                         psize += NODESIZE + NODEKSZ(node) + sizeof(indx_t);
6104                                         if (F_ISSET(node->mn_flags, F_BIGDATA))
6105                                                 psize += sizeof(pgno_t);
6106                                         else
6107                                                 psize += NODEDSZ(node);
6108                                         psize += psize & 1;
6109                                         if (psize > pmax) {
6110                                                 if (i <= newindx) {
6111                                                         split_indx = newindx;
6112                                                         if (i < newindx)
6113                                                                 newpos = 1;
6114                                                 }
6115                                                 else
6116                                                         split_indx = i;
6117                                                 break;
6118                                         }
6119                                 }
6120                         } else {
6121                                 psize = nsize;
6122                                 for (i=nkeys-1; i>=split_indx; i--) {
6123                                         node = NODEPTR(mp, i);
6124                                         psize += NODESIZE + NODEKSZ(node) + sizeof(indx_t);
6125                                         if (F_ISSET(node->mn_flags, F_BIGDATA))
6126                                                 psize += sizeof(pgno_t);
6127                                         else
6128                                                 psize += NODEDSZ(node);
6129                                         psize += psize & 1;
6130                                         if (psize > pmax) {
6131                                                 if (i >= newindx)
6132                                                         split_indx = newindx;
6133                                                 else
6134                                                         split_indx = i+1;
6135                                                 break;
6136                                         }
6137                                 }
6138                         }
6139                 }
6140         }
6141
6142         /* First find the separating key between the split pages.
6143          * The case where newindx == split_indx is ambiguous; the
6144          * new item could go to the new page or stay on the original
6145          * page. If newpos == 1 it goes to the new page.
6146          */
6147         if (newindx == split_indx && newpos) {
6148                 sepkey.mv_size = newkey->mv_size;
6149                 sepkey.mv_data = newkey->mv_data;
6150         } else {
6151                 node = NODEPTR(mp, split_indx);
6152                 sepkey.mv_size = node->mn_ksize;
6153                 sepkey.mv_data = NODEKEY(node);
6154         }
6155
6156 newsep:
6157         DPRINTF("separator is [%s]", DKEY(&sepkey));
6158
6159         /* Copy separator key to the parent.
6160          */
6161         if (SIZELEFT(mn.mc_pg[ptop]) < mdb_branch_size(mc->mc_txn->mt_env, &sepkey)) {
6162                 mn.mc_snum--;
6163                 mn.mc_top--;
6164                 did_split = 1;
6165                 rc = mdb_page_split(&mn, &sepkey, NULL, rp->mp_pgno, 0);
6166
6167                 /* root split? */
6168                 if (mn.mc_snum == mc->mc_snum) {
6169                         mc->mc_pg[mc->mc_snum] = mc->mc_pg[mc->mc_top];
6170                         mc->mc_ki[mc->mc_snum] = mc->mc_ki[mc->mc_top];
6171                         mc->mc_pg[mc->mc_top] = mc->mc_pg[ptop];
6172                         mc->mc_ki[mc->mc_top] = mc->mc_ki[ptop];
6173                         mc->mc_snum++;
6174                         mc->mc_top++;
6175                         ptop++;
6176                 }
6177                 /* Right page might now have changed parent.
6178                  * Check if left page also changed parent.
6179                  */
6180                 if (mn.mc_pg[ptop] != mc->mc_pg[ptop] &&
6181                     mc->mc_ki[ptop] >= NUMKEYS(mc->mc_pg[ptop])) {
6182                         for (i=0; i<ptop; i++) {
6183                                 mc->mc_pg[i] = mn.mc_pg[i];
6184                                 mc->mc_ki[i] = mn.mc_ki[i];
6185                         }
6186                         mc->mc_pg[ptop] = mn.mc_pg[ptop];
6187                         mc->mc_ki[ptop] = mn.mc_ki[ptop] - 1;
6188                 }
6189         } else {
6190                 mn.mc_top--;
6191                 rc = mdb_node_add(&mn, mn.mc_ki[ptop], &sepkey, NULL, rp->mp_pgno, 0);
6192                 mn.mc_top++;
6193         }
6194         mc->mc_flags ^= C_SPLITTING;
6195         if (rc != MDB_SUCCESS) {
6196                 return rc;
6197         }
6198         if (nflags & MDB_APPEND) {
6199                 mc->mc_pg[mc->mc_top] = rp;
6200                 mc->mc_ki[mc->mc_top] = 0;
6201                 rc = mdb_node_add(mc, 0, newkey, newdata, newpgno, nflags);
6202                 if (rc)
6203                         return rc;
6204                 for (i=0; i<mc->mc_top; i++)
6205                         mc->mc_ki[i] = mn.mc_ki[i];
6206                 goto done;
6207         }
6208         if (IS_LEAF2(rp)) {
6209                 goto done;
6210         }
6211
6212         /* Move half of the keys to the right sibling. */
6213
6214         /* grab a page to hold a temporary copy */
6215         copy = mdb_page_malloc(mc);
6216         if (copy == NULL)
6217                 return ENOMEM;
6218
6219         copy->mp_pgno  = mp->mp_pgno;
6220         copy->mp_flags = mp->mp_flags;
6221         copy->mp_lower = PAGEHDRSZ;
6222         copy->mp_upper = mc->mc_txn->mt_env->me_psize;
6223         mc->mc_pg[mc->mc_top] = copy;
6224         for (i = j = 0; i <= nkeys; j++) {
6225                 if (i == split_indx) {
6226                 /* Insert in right sibling. */
6227                 /* Reset insert index for right sibling. */
6228                         if (i != newindx || (newpos ^ ins_new)) {
6229                                 j = 0;
6230                                 mc->mc_pg[mc->mc_top] = rp;
6231                         }
6232                 }
6233
6234                 if (i == newindx && !ins_new) {
6235                         /* Insert the original entry that caused the split. */
6236                         rkey.mv_data = newkey->mv_data;
6237                         rkey.mv_size = newkey->mv_size;
6238                         if (IS_LEAF(mp)) {
6239                                 rdata = newdata;
6240                         } else
6241                                 pgno = newpgno;
6242                         flags = nflags;
6243
6244                         ins_new = 1;
6245
6246                         /* Update index for the new key. */
6247                         mc->mc_ki[mc->mc_top] = j;
6248                 } else if (i == nkeys) {
6249                         break;
6250                 } else {
6251                         node = NODEPTR(mp, i);
6252                         rkey.mv_data = NODEKEY(node);
6253                         rkey.mv_size = node->mn_ksize;
6254                         if (IS_LEAF(mp)) {
6255                                 xdata.mv_data = NODEDATA(node);
6256                                 xdata.mv_size = NODEDSZ(node);
6257                                 rdata = &xdata;
6258                         } else
6259                                 pgno = NODEPGNO(node);
6260                         flags = node->mn_flags;
6261
6262                         i++;
6263                 }
6264
6265                 if (!IS_LEAF(mp) && j == 0) {
6266                         /* First branch index doesn't need key data. */
6267                         rkey.mv_size = 0;
6268                 }
6269
6270                 rc = mdb_node_add(mc, j, &rkey, rdata, pgno, flags);
6271                 if (rc) break;
6272         }
6273
6274         nkeys = NUMKEYS(copy);
6275         for (i=0; i<nkeys; i++)
6276                 mp->mp_ptrs[i] = copy->mp_ptrs[i];
6277         mp->mp_lower = copy->mp_lower;
6278         mp->mp_upper = copy->mp_upper;
6279         memcpy(NODEPTR(mp, nkeys-1), NODEPTR(copy, nkeys-1),
6280                 mc->mc_txn->mt_env->me_psize - copy->mp_upper);
6281
6282         /* reset back to original page */
6283         if (newindx < split_indx || (!newpos && newindx == split_indx)) {
6284                 mc->mc_pg[mc->mc_top] = mp;
6285                 if (nflags & MDB_RESERVE) {
6286                         node = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
6287                         if (!(node->mn_flags & F_BIGDATA))
6288                                 newdata->mv_data = NODEDATA(node);
6289                 }
6290         } else {
6291                 mc->mc_ki[ptop]++;
6292         }
6293
6294         /* return tmp page to freelist */
6295         copy->mp_next = mc->mc_txn->mt_env->me_dpages;
6296         VGMEMP_FREE(mc->mc_txn->mt_env, copy);
6297         mc->mc_txn->mt_env->me_dpages = copy;
6298 done:
6299         {
6300                 /* Adjust other cursors pointing to mp */
6301                 MDB_cursor *m2, *m3;
6302                 MDB_dbi dbi = mc->mc_dbi;
6303                 int fixup = NUMKEYS(mp);
6304
6305                 if (mc->mc_flags & C_SUB)
6306                         dbi--;
6307
6308                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
6309                         if (m2 == mc) continue;
6310                         if (mc->mc_flags & C_SUB)
6311                                 m3 = &m2->mc_xcursor->mx_cursor;
6312                         else
6313                                 m3 = m2;
6314                         if (!(m3->mc_flags & C_INITIALIZED))
6315                                 continue;
6316                         if (m3->mc_flags & C_SPLITTING)
6317                                 continue;
6318                         if (new_root) {
6319                                 int k;
6320                                 /* root split */
6321                                 for (k=m3->mc_top; k>=0; k--) {
6322                                         m3->mc_ki[k+1] = m3->mc_ki[k];
6323                                         m3->mc_pg[k+1] = m3->mc_pg[k];
6324                                 }
6325                                 if (m3->mc_ki[0] >= split_indx) {
6326                                         m3->mc_ki[0] = 1;
6327                                 } else {
6328                                         m3->mc_ki[0] = 0;
6329                                 }
6330                                 m3->mc_pg[0] = mc->mc_pg[0];
6331                                 m3->mc_snum++;
6332                                 m3->mc_top++;
6333                         }
6334                         if (m3->mc_pg[mc->mc_top] == mp) {
6335                                 if (m3->mc_ki[mc->mc_top] >= newindx && !(nflags & MDB_SPLIT_REPLACE))
6336                                         m3->mc_ki[mc->mc_top]++;
6337                                 if (m3->mc_ki[mc->mc_top] >= fixup) {
6338                                         m3->mc_pg[mc->mc_top] = rp;
6339                                         m3->mc_ki[mc->mc_top] -= fixup;
6340                                         m3->mc_ki[ptop] = mn.mc_ki[ptop];
6341                                 }
6342                         } else if (!did_split && m3->mc_pg[ptop] == mc->mc_pg[ptop] &&
6343                                 m3->mc_ki[ptop] >= mc->mc_ki[ptop]) {
6344                                 m3->mc_ki[ptop]++;
6345                         }
6346                 }
6347         }
6348         return rc;
6349 }
6350
6351 int
6352 mdb_put(MDB_txn *txn, MDB_dbi dbi,
6353     MDB_val *key, MDB_val *data, unsigned int flags)
6354 {
6355         MDB_cursor mc;
6356         MDB_xcursor mx;
6357
6358         assert(key != NULL);
6359         assert(data != NULL);
6360
6361         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs)
6362                 return EINVAL;
6363
6364         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY)) {
6365                 return EACCES;
6366         }
6367
6368         if (key->mv_size == 0 || key->mv_size > MAXKEYSIZE) {
6369                 return EINVAL;
6370         }
6371
6372         if ((flags & (MDB_NOOVERWRITE|MDB_NODUPDATA|MDB_RESERVE|MDB_APPEND)) != flags)
6373                 return EINVAL;
6374
6375         mdb_cursor_init(&mc, txn, dbi, &mx);
6376         return mdb_cursor_put(&mc, key, data, flags);
6377 }
6378
6379 /** Only a subset of the @ref mdb_env flags can be changed
6380  *      at runtime. Changing other flags requires closing the environment
6381  *      and re-opening it with the new flags.
6382  */
6383 #define CHANGEABLE      (MDB_NOSYNC|MDB_NOMETASYNC|MDB_MAPASYNC)
6384 int
6385 mdb_env_set_flags(MDB_env *env, unsigned int flag, int onoff)
6386 {
6387         if ((flag & CHANGEABLE) != flag)
6388                 return EINVAL;
6389         if (onoff)
6390                 env->me_flags |= flag;
6391         else
6392                 env->me_flags &= ~flag;
6393         return MDB_SUCCESS;
6394 }
6395
6396 int
6397 mdb_env_get_flags(MDB_env *env, unsigned int *arg)
6398 {
6399         if (!env || !arg)
6400                 return EINVAL;
6401
6402         *arg = env->me_flags;
6403         return MDB_SUCCESS;
6404 }
6405
6406 int
6407 mdb_env_get_path(MDB_env *env, const char **arg)
6408 {
6409         if (!env || !arg)
6410                 return EINVAL;
6411
6412         *arg = env->me_path;
6413         return MDB_SUCCESS;
6414 }
6415
6416 /** Common code for #mdb_stat() and #mdb_env_stat().
6417  * @param[in] env the environment to operate in.
6418  * @param[in] db the #MDB_db record containing the stats to return.
6419  * @param[out] arg the address of an #MDB_stat structure to receive the stats.
6420  * @return 0, this function always succeeds.
6421  */
6422 static int
6423 mdb_stat0(MDB_env *env, MDB_db *db, MDB_stat *arg)
6424 {
6425         arg->ms_psize = env->me_psize;
6426         arg->ms_depth = db->md_depth;
6427         arg->ms_branch_pages = db->md_branch_pages;
6428         arg->ms_leaf_pages = db->md_leaf_pages;
6429         arg->ms_overflow_pages = db->md_overflow_pages;
6430         arg->ms_entries = db->md_entries;
6431
6432         return MDB_SUCCESS;
6433 }
6434 int
6435 mdb_env_stat(MDB_env *env, MDB_stat *arg)
6436 {
6437         int toggle;
6438
6439         if (env == NULL || arg == NULL)
6440                 return EINVAL;
6441
6442         toggle = mdb_env_pick_meta(env);
6443
6444         return mdb_stat0(env, &env->me_metas[toggle]->mm_dbs[MAIN_DBI], arg);
6445 }
6446
6447 /** Set the default comparison functions for a database.
6448  * Called immediately after a database is opened to set the defaults.
6449  * The user can then override them with #mdb_set_compare() or
6450  * #mdb_set_dupsort().
6451  * @param[in] txn A transaction handle returned by #mdb_txn_begin()
6452  * @param[in] dbi A database handle returned by #mdb_open()
6453  */
6454 static void
6455 mdb_default_cmp(MDB_txn *txn, MDB_dbi dbi)
6456 {
6457         uint16_t f = txn->mt_dbs[dbi].md_flags;
6458
6459         txn->mt_dbxs[dbi].md_cmp =
6460                 (f & MDB_REVERSEKEY) ? mdb_cmp_memnr :
6461                 (f & MDB_INTEGERKEY) ? mdb_cmp_cint  : mdb_cmp_memn;
6462
6463         txn->mt_dbxs[dbi].md_dcmp =
6464                 !(f & MDB_DUPSORT) ? 0 :
6465                 ((f & MDB_INTEGERDUP)
6466                  ? ((f & MDB_DUPFIXED)   ? mdb_cmp_int   : mdb_cmp_cint)
6467                  : ((f & MDB_REVERSEDUP) ? mdb_cmp_memnr : mdb_cmp_memn));
6468 }
6469
6470 int mdb_open(MDB_txn *txn, const char *name, unsigned int flags, MDB_dbi *dbi)
6471 {
6472         MDB_val key, data;
6473         MDB_dbi i;
6474         MDB_cursor mc;
6475         int rc, dbflag, exact;
6476         unsigned int unused = 0;
6477         size_t len;
6478
6479         if (txn->mt_dbxs[FREE_DBI].md_cmp == NULL) {
6480                 mdb_default_cmp(txn, FREE_DBI);
6481         }
6482
6483         /* main DB? */
6484         if (!name) {
6485                 *dbi = MAIN_DBI;
6486                 if (flags & (MDB_DUPSORT|MDB_REVERSEKEY|MDB_INTEGERKEY))
6487                         txn->mt_dbs[MAIN_DBI].md_flags |= (flags & (MDB_DUPSORT|MDB_REVERSEKEY|MDB_INTEGERKEY));
6488                 mdb_default_cmp(txn, MAIN_DBI);
6489                 return MDB_SUCCESS;
6490         }
6491
6492         if (txn->mt_dbxs[MAIN_DBI].md_cmp == NULL) {
6493                 mdb_default_cmp(txn, MAIN_DBI);
6494         }
6495
6496         /* Is the DB already open? */
6497         len = strlen(name);
6498         for (i=2; i<txn->mt_numdbs; i++) {
6499                 if (!txn->mt_dbxs[i].md_name.mv_size) {
6500                         /* Remember this free slot */
6501                         if (!unused) unused = i;
6502                         continue;
6503                 }
6504                 if (len == txn->mt_dbxs[i].md_name.mv_size &&
6505                         !strncmp(name, txn->mt_dbxs[i].md_name.mv_data, len)) {
6506                         *dbi = i;
6507                         return MDB_SUCCESS;
6508                 }
6509         }
6510
6511         /* If no free slot and max hit, fail */
6512         if (!unused && txn->mt_numdbs >= txn->mt_env->me_maxdbs - 1)
6513                 return MDB_DBS_FULL;
6514
6515         /* Find the DB info */
6516         dbflag = 0;
6517         exact = 0;
6518         key.mv_size = len;
6519         key.mv_data = (void *)name;
6520         mdb_cursor_init(&mc, txn, MAIN_DBI, NULL);
6521         rc = mdb_cursor_set(&mc, &key, &data, MDB_SET, &exact);
6522         if (rc == MDB_SUCCESS) {
6523                 /* make sure this is actually a DB */
6524                 MDB_node *node = NODEPTR(mc.mc_pg[mc.mc_top], mc.mc_ki[mc.mc_top]);
6525                 if (!(node->mn_flags & F_SUBDATA))
6526                         return EINVAL;
6527         } else if (rc == MDB_NOTFOUND && (flags & MDB_CREATE)) {
6528                 /* Create if requested */
6529                 MDB_db dummy;
6530                 data.mv_size = sizeof(MDB_db);
6531                 data.mv_data = &dummy;
6532                 memset(&dummy, 0, sizeof(dummy));
6533                 dummy.md_root = P_INVALID;
6534                 dummy.md_flags = flags & 0xffff;
6535                 rc = mdb_cursor_put(&mc, &key, &data, F_SUBDATA);
6536                 dbflag = DB_DIRTY;
6537         }
6538
6539         /* OK, got info, add to table */
6540         if (rc == MDB_SUCCESS) {
6541                 unsigned int slot = unused ? unused : txn->mt_numdbs;
6542                 txn->mt_dbxs[slot].md_name.mv_data = strdup(name);
6543                 txn->mt_dbxs[slot].md_name.mv_size = len;
6544                 txn->mt_dbxs[slot].md_rel = NULL;
6545                 txn->mt_dbflags[slot] = dbflag;
6546                 memcpy(&txn->mt_dbs[slot], data.mv_data, sizeof(MDB_db));
6547                 *dbi = slot;
6548                 txn->mt_env->me_dbflags[slot] = txn->mt_dbs[slot].md_flags;
6549                 mdb_default_cmp(txn, slot);
6550                 if (!unused) {
6551                         txn->mt_numdbs++;
6552                         txn->mt_env->me_numdbs++;
6553                 }
6554         }
6555
6556         return rc;
6557 }
6558
6559 int mdb_stat(MDB_txn *txn, MDB_dbi dbi, MDB_stat *arg)
6560 {
6561         if (txn == NULL || arg == NULL || dbi >= txn->mt_numdbs)
6562                 return EINVAL;
6563
6564         return mdb_stat0(txn->mt_env, &txn->mt_dbs[dbi], arg);
6565 }
6566
6567 void mdb_close(MDB_env *env, MDB_dbi dbi)
6568 {
6569         char *ptr;
6570         if (dbi <= MAIN_DBI || dbi >= env->me_numdbs)
6571                 return;
6572         ptr = env->me_dbxs[dbi].md_name.mv_data;
6573         env->me_dbxs[dbi].md_name.mv_data = NULL;
6574         env->me_dbxs[dbi].md_name.mv_size = 0;
6575         free(ptr);
6576 }
6577
6578 /** Add all the DB's pages to the free list.
6579  * @param[in] mc Cursor on the DB to free.
6580  * @param[in] subs non-Zero to check for sub-DBs in this DB.
6581  * @return 0 on success, non-zero on failure.
6582  */
6583 static int
6584 mdb_drop0(MDB_cursor *mc, int subs)
6585 {
6586         int rc;
6587
6588         rc = mdb_page_search(mc, NULL, 0);
6589         if (rc == MDB_SUCCESS) {
6590                 MDB_node *ni;
6591                 MDB_cursor mx;
6592                 unsigned int i;
6593
6594                 /* LEAF2 pages have no nodes, cannot have sub-DBs */
6595                 if (!subs || IS_LEAF2(mc->mc_pg[mc->mc_top]))
6596                         mdb_cursor_pop(mc);
6597
6598                 mdb_cursor_copy(mc, &mx);
6599                 while (mc->mc_snum > 0) {
6600                         if (IS_LEAF(mc->mc_pg[mc->mc_top])) {
6601                                 for (i=0; i<NUMKEYS(mc->mc_pg[mc->mc_top]); i++) {
6602                                         ni = NODEPTR(mc->mc_pg[mc->mc_top], i);
6603                                         if (ni->mn_flags & F_SUBDATA) {
6604                                                 mdb_xcursor_init1(mc, ni);
6605                                                 rc = mdb_drop0(&mc->mc_xcursor->mx_cursor, 0);
6606                                                 if (rc)
6607                                                         return rc;
6608                                         }
6609                                 }
6610                         } else {
6611                                 for (i=0; i<NUMKEYS(mc->mc_pg[mc->mc_top]); i++) {
6612                                         pgno_t pg;
6613                                         ni = NODEPTR(mc->mc_pg[mc->mc_top], i);
6614                                         pg = NODEPGNO(ni);
6615                                         /* free it */
6616                                         mdb_midl_append(&mc->mc_txn->mt_free_pgs, pg);
6617                                 }
6618                         }
6619                         if (!mc->mc_top)
6620                                 break;
6621                         rc = mdb_cursor_sibling(mc, 1);
6622                         if (rc) {
6623                                 /* no more siblings, go back to beginning
6624                                  * of previous level. (stack was already popped
6625                                  * by mdb_cursor_sibling)
6626                                  */
6627                                 for (i=1; i<mc->mc_top; i++)
6628                                         mc->mc_pg[i] = mx.mc_pg[i];
6629                         }
6630                 }
6631                 /* free it */
6632                 mdb_midl_append(&mc->mc_txn->mt_free_pgs,
6633                         mc->mc_db->md_root);
6634         }
6635         return 0;
6636 }
6637
6638 int mdb_drop(MDB_txn *txn, MDB_dbi dbi, int del)
6639 {
6640         MDB_cursor *mc;
6641         int rc;
6642
6643         if (!txn || !dbi || dbi >= txn->mt_numdbs)
6644                 return EINVAL;
6645
6646         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY))
6647                 return EACCES;
6648
6649         rc = mdb_cursor_open(txn, dbi, &mc);
6650         if (rc)
6651                 return rc;
6652
6653         rc = mdb_drop0(mc, mc->mc_db->md_flags & MDB_DUPSORT);
6654         if (rc)
6655                 goto leave;
6656
6657         /* Can't delete the main DB */
6658         if (del && dbi > MAIN_DBI) {
6659                 rc = mdb_del(txn, MAIN_DBI, &mc->mc_dbx->md_name, NULL);
6660                 if (!rc)
6661                         mdb_close(txn->mt_env, dbi);
6662         } else {
6663                 txn->mt_dbflags[dbi] |= DB_DIRTY;
6664                 txn->mt_dbs[dbi].md_depth = 0;
6665                 txn->mt_dbs[dbi].md_branch_pages = 0;
6666                 txn->mt_dbs[dbi].md_leaf_pages = 0;
6667                 txn->mt_dbs[dbi].md_overflow_pages = 0;
6668                 txn->mt_dbs[dbi].md_entries = 0;
6669                 txn->mt_dbs[dbi].md_root = P_INVALID;
6670         }
6671 leave:
6672         mdb_cursor_close(mc);
6673         return rc;
6674 }
6675
6676 int mdb_set_compare(MDB_txn *txn, MDB_dbi dbi, MDB_cmp_func *cmp)
6677 {
6678         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs)
6679                 return EINVAL;
6680
6681         txn->mt_dbxs[dbi].md_cmp = cmp;
6682         return MDB_SUCCESS;
6683 }
6684
6685 int mdb_set_dupsort(MDB_txn *txn, MDB_dbi dbi, MDB_cmp_func *cmp)
6686 {
6687         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs)
6688                 return EINVAL;
6689
6690         txn->mt_dbxs[dbi].md_dcmp = cmp;
6691         return MDB_SUCCESS;
6692 }
6693
6694 int mdb_set_relfunc(MDB_txn *txn, MDB_dbi dbi, MDB_rel_func *rel)
6695 {
6696         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs)
6697                 return EINVAL;
6698
6699         txn->mt_dbxs[dbi].md_rel = rel;
6700         return MDB_SUCCESS;
6701 }
6702
6703 int mdb_set_relctx(MDB_txn *txn, MDB_dbi dbi, void *ctx)
6704 {
6705         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs)
6706                 return EINVAL;
6707
6708         txn->mt_dbxs[dbi].md_relctx = ctx;
6709         return MDB_SUCCESS;
6710 }
6711
6712 /** @} */