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