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