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