]> git.sur5r.net Git - openldap/blob - libraries/liblmdb/mdb.c
Fix GET_BOTH_RANGE
[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                                 *data = d2;
5362                         }
5363
5364                 } else {
5365                         if (mc->mc_xcursor)
5366                                 mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5367                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
5368                                 return rc;
5369                 }
5370         }
5371
5372         /* The key already matches in all other cases */
5373         if (op == MDB_SET_RANGE || op == MDB_SET_KEY)
5374                 MDB_GET_KEY(leaf, key);
5375         DPRINTF(("==> cursor placed on key [%s]", DKEY(key)));
5376
5377         return rc;
5378 }
5379
5380 /** Move the cursor to the first item in the database. */
5381 static int
5382 mdb_cursor_first(MDB_cursor *mc, MDB_val *key, MDB_val *data)
5383 {
5384         int              rc;
5385         MDB_node        *leaf;
5386
5387         if (mc->mc_xcursor)
5388                 mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5389
5390         if (!(mc->mc_flags & C_INITIALIZED) || mc->mc_top) {
5391                 rc = mdb_page_search(mc, NULL, MDB_PS_FIRST);
5392                 if (rc != MDB_SUCCESS)
5393                         return rc;
5394         }
5395         assert(IS_LEAF(mc->mc_pg[mc->mc_top]));
5396
5397         leaf = NODEPTR(mc->mc_pg[mc->mc_top], 0);
5398         mc->mc_flags |= C_INITIALIZED;
5399         mc->mc_flags &= ~C_EOF;
5400
5401         mc->mc_ki[mc->mc_top] = 0;
5402
5403         if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
5404                 key->mv_size = mc->mc_db->md_pad;
5405                 key->mv_data = LEAF2KEY(mc->mc_pg[mc->mc_top], 0, key->mv_size);
5406                 return MDB_SUCCESS;
5407         }
5408
5409         if (data) {
5410                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5411                         mdb_xcursor_init1(mc, leaf);
5412                         rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
5413                         if (rc)
5414                                 return rc;
5415                 } else {
5416                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
5417                                 return rc;
5418                 }
5419         }
5420         MDB_GET_KEY(leaf, key);
5421         return MDB_SUCCESS;
5422 }
5423
5424 /** Move the cursor to the last item in the database. */
5425 static int
5426 mdb_cursor_last(MDB_cursor *mc, MDB_val *key, MDB_val *data)
5427 {
5428         int              rc;
5429         MDB_node        *leaf;
5430
5431         if (mc->mc_xcursor)
5432                 mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5433
5434         if (!(mc->mc_flags & C_EOF)) {
5435
5436                 if (!(mc->mc_flags & C_INITIALIZED) || mc->mc_top) {
5437                         rc = mdb_page_search(mc, NULL, MDB_PS_LAST);
5438                         if (rc != MDB_SUCCESS)
5439                                 return rc;
5440                 }
5441                 assert(IS_LEAF(mc->mc_pg[mc->mc_top]));
5442
5443         }
5444         mc->mc_ki[mc->mc_top] = NUMKEYS(mc->mc_pg[mc->mc_top]) - 1;
5445         mc->mc_flags |= C_INITIALIZED|C_EOF;
5446         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
5447
5448         if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
5449                 key->mv_size = mc->mc_db->md_pad;
5450                 key->mv_data = LEAF2KEY(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], key->mv_size);
5451                 return MDB_SUCCESS;
5452         }
5453
5454         if (data) {
5455                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5456                         mdb_xcursor_init1(mc, leaf);
5457                         rc = mdb_cursor_last(&mc->mc_xcursor->mx_cursor, data, NULL);
5458                         if (rc)
5459                                 return rc;
5460                 } else {
5461                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
5462                                 return rc;
5463                 }
5464         }
5465
5466         MDB_GET_KEY(leaf, key);
5467         return MDB_SUCCESS;
5468 }
5469
5470 int
5471 mdb_cursor_get(MDB_cursor *mc, MDB_val *key, MDB_val *data,
5472     MDB_cursor_op op)
5473 {
5474         int              rc;
5475         int              exact = 0;
5476         int              (*mfunc)(MDB_cursor *mc, MDB_val *key, MDB_val *data);
5477
5478         assert(mc);
5479
5480         if (mc->mc_txn->mt_flags & MDB_TXN_ERROR)
5481                 return MDB_BAD_TXN;
5482
5483         switch (op) {
5484         case MDB_GET_CURRENT:
5485                 if (!(mc->mc_flags & C_INITIALIZED)) {
5486                         rc = EINVAL;
5487                 } else {
5488                         MDB_page *mp = mc->mc_pg[mc->mc_top];
5489                         int nkeys = NUMKEYS(mp);
5490                         if (!nkeys || mc->mc_ki[mc->mc_top] >= nkeys) {
5491                                 mc->mc_ki[mc->mc_top] = nkeys;
5492                                 rc = MDB_NOTFOUND;
5493                                 break;
5494                         }
5495                         rc = MDB_SUCCESS;
5496                         if (IS_LEAF2(mp)) {
5497                                 key->mv_size = mc->mc_db->md_pad;
5498                                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
5499                         } else {
5500                                 MDB_node *leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
5501                                 MDB_GET_KEY(leaf, key);
5502                                 if (data) {
5503                                         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5504                                                 if (mc->mc_flags & C_DEL)
5505                                                         mdb_xcursor_init1(mc, leaf);
5506                                                 rc = mdb_cursor_get(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_GET_CURRENT);
5507                                         } else {
5508                                                 rc = mdb_node_read(mc->mc_txn, leaf, data);
5509                                         }
5510                                 }
5511                         }
5512                 }
5513                 break;
5514         case MDB_GET_BOTH:
5515         case MDB_GET_BOTH_RANGE:
5516                 if (data == NULL) {
5517                         rc = EINVAL;
5518                         break;
5519                 }
5520                 if (mc->mc_xcursor == NULL) {
5521                         rc = MDB_INCOMPATIBLE;
5522                         break;
5523                 }
5524                 /* FALLTHRU */
5525         case MDB_SET:
5526         case MDB_SET_KEY:
5527         case MDB_SET_RANGE:
5528                 if (key == NULL) {
5529                         rc = EINVAL;
5530                 } else if (key->mv_size > MDB_MAXKEYSIZE) {
5531                         rc = MDB_BAD_VALSIZE;
5532                 } else if (op == MDB_SET_RANGE)
5533                         rc = mdb_cursor_set(mc, key, data, op, NULL);
5534                 else
5535                         rc = mdb_cursor_set(mc, key, data, op, &exact);
5536                 break;
5537         case MDB_GET_MULTIPLE:
5538                 if (data == NULL || !(mc->mc_flags & C_INITIALIZED)) {
5539                         rc = EINVAL;
5540                         break;
5541                 }
5542                 if (!(mc->mc_db->md_flags & MDB_DUPFIXED)) {
5543                         rc = MDB_INCOMPATIBLE;
5544                         break;
5545                 }
5546                 rc = MDB_SUCCESS;
5547                 if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED) ||
5548                         (mc->mc_xcursor->mx_cursor.mc_flags & C_EOF))
5549                         break;
5550                 goto fetchm;
5551         case MDB_NEXT_MULTIPLE:
5552                 if (data == NULL) {
5553                         rc = EINVAL;
5554                         break;
5555                 }
5556                 if (!(mc->mc_db->md_flags & MDB_DUPFIXED)) {
5557                         rc = MDB_INCOMPATIBLE;
5558                         break;
5559                 }
5560                 if (!(mc->mc_flags & C_INITIALIZED))
5561                         rc = mdb_cursor_first(mc, key, data);
5562                 else
5563                         rc = mdb_cursor_next(mc, key, data, MDB_NEXT_DUP);
5564                 if (rc == MDB_SUCCESS) {
5565                         if (mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED) {
5566                                 MDB_cursor *mx;
5567 fetchm:
5568                                 mx = &mc->mc_xcursor->mx_cursor;
5569                                 data->mv_size = NUMKEYS(mx->mc_pg[mx->mc_top]) *
5570                                         mx->mc_db->md_pad;
5571                                 data->mv_data = METADATA(mx->mc_pg[mx->mc_top]);
5572                                 mx->mc_ki[mx->mc_top] = NUMKEYS(mx->mc_pg[mx->mc_top])-1;
5573                         } else {
5574                                 rc = MDB_NOTFOUND;
5575                         }
5576                 }
5577                 break;
5578         case MDB_NEXT:
5579         case MDB_NEXT_DUP:
5580         case MDB_NEXT_NODUP:
5581                 if (!(mc->mc_flags & C_INITIALIZED))
5582                         rc = mdb_cursor_first(mc, key, data);
5583                 else
5584                         rc = mdb_cursor_next(mc, key, data, op);
5585                 break;
5586         case MDB_PREV:
5587         case MDB_PREV_DUP:
5588         case MDB_PREV_NODUP:
5589                 if (!(mc->mc_flags & C_INITIALIZED)) {
5590                         rc = mdb_cursor_last(mc, key, data);
5591                         if (rc)
5592                                 break;
5593                         mc->mc_flags |= C_INITIALIZED;
5594                         mc->mc_ki[mc->mc_top]++;
5595                 }
5596                 rc = mdb_cursor_prev(mc, key, data, op);
5597                 break;
5598         case MDB_FIRST:
5599                 rc = mdb_cursor_first(mc, key, data);
5600                 break;
5601         case MDB_FIRST_DUP:
5602                 mfunc = mdb_cursor_first;
5603         mmove:
5604                 if (data == NULL || !(mc->mc_flags & C_INITIALIZED)) {
5605                         rc = EINVAL;
5606                         break;
5607                 }
5608                 if (mc->mc_xcursor == NULL) {
5609                         rc = MDB_INCOMPATIBLE;
5610                         break;
5611                 }
5612                 if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED)) {
5613                         rc = EINVAL;
5614                         break;
5615                 }
5616                 rc = mfunc(&mc->mc_xcursor->mx_cursor, data, NULL);
5617                 break;
5618         case MDB_LAST:
5619                 rc = mdb_cursor_last(mc, key, data);
5620                 break;
5621         case MDB_LAST_DUP:
5622                 mfunc = mdb_cursor_last;
5623                 goto mmove;
5624         default:
5625                 DPRINTF(("unhandled/unimplemented cursor operation %u", op));
5626                 rc = EINVAL;
5627                 break;
5628         }
5629
5630         if (mc->mc_flags & C_DEL)
5631                 mc->mc_flags ^= C_DEL;
5632
5633         return rc;
5634 }
5635
5636 /** Touch all the pages in the cursor stack. Set mc_top.
5637  *      Makes sure all the pages are writable, before attempting a write operation.
5638  * @param[in] mc The cursor to operate on.
5639  */
5640 static int
5641 mdb_cursor_touch(MDB_cursor *mc)
5642 {
5643         int rc = MDB_SUCCESS;
5644
5645         if (mc->mc_dbi > MAIN_DBI && !(*mc->mc_dbflag & DB_DIRTY)) {
5646                 MDB_cursor mc2;
5647                 MDB_xcursor mcx;
5648                 mdb_cursor_init(&mc2, mc->mc_txn, MAIN_DBI, &mcx);
5649                 rc = mdb_page_search(&mc2, &mc->mc_dbx->md_name, MDB_PS_MODIFY);
5650                 if (rc)
5651                          return rc;
5652                 *mc->mc_dbflag |= DB_DIRTY;
5653         }
5654         mc->mc_top = 0;
5655         if (mc->mc_snum) {
5656                 do {
5657                         rc = mdb_page_touch(mc);
5658                 } while (!rc && ++(mc->mc_top) < mc->mc_snum);
5659                 mc->mc_top = mc->mc_snum-1;
5660         }
5661         return rc;
5662 }
5663
5664 /** Do not spill pages to disk if txn is getting full, may fail instead */
5665 #define MDB_NOSPILL     0x8000
5666
5667 int
5668 mdb_cursor_put(MDB_cursor *mc, MDB_val *key, MDB_val *data,
5669     unsigned int flags)
5670 {
5671         enum { MDB_NO_ROOT = MDB_LAST_ERRCODE+10 }; /* internal code */
5672         MDB_env         *env = mc->mc_txn->mt_env;
5673         MDB_node        *leaf = NULL;
5674         MDB_val xdata, *rdata, dkey;
5675         MDB_db dummy;
5676         int do_sub = 0, insert = 0;
5677         unsigned int mcount = 0, dcount = 0, nospill;
5678         size_t nsize;
5679         int rc, rc2;
5680         char dbuf[MDB_MAXKEYSIZE+1];
5681         unsigned int nflags;
5682         DKBUF;
5683
5684         /* Check this first so counter will always be zero on any
5685          * early failures.
5686          */
5687         if (flags & MDB_MULTIPLE) {
5688                 dcount = data[1].mv_size;
5689                 data[1].mv_size = 0;
5690                 if (!F_ISSET(mc->mc_db->md_flags, MDB_DUPFIXED))
5691                         return MDB_INCOMPATIBLE;
5692         }
5693
5694         nospill = flags & MDB_NOSPILL;
5695         flags &= ~MDB_NOSPILL;
5696
5697         if (mc->mc_txn->mt_flags & (MDB_TXN_RDONLY|MDB_TXN_ERROR))
5698                 return (mc->mc_txn->mt_flags & MDB_TXN_RDONLY) ? EACCES : MDB_BAD_TXN;
5699
5700         if (flags != MDB_CURRENT && (key->mv_size == 0 || key->mv_size > MDB_MAXKEYSIZE))
5701                 return MDB_BAD_VALSIZE;
5702
5703         if (F_ISSET(mc->mc_db->md_flags, MDB_DUPSORT) && data->mv_size > MDB_MAXKEYSIZE)
5704                 return MDB_BAD_VALSIZE;
5705
5706 #if SIZE_MAX > MAXDATASIZE
5707         if (data->mv_size > MAXDATASIZE)
5708                 return MDB_BAD_VALSIZE;
5709 #endif
5710
5711         DPRINTF(("==> put db %d key [%s], size %"Z"u, data size %"Z"u",
5712                 DDBI(mc), DKEY(key), key ? key->mv_size : 0, data->mv_size));
5713
5714         dkey.mv_size = 0;
5715
5716         if (flags == MDB_CURRENT) {
5717                 if (!(mc->mc_flags & C_INITIALIZED))
5718                         return EINVAL;
5719                 rc = MDB_SUCCESS;
5720         } else if (mc->mc_db->md_root == P_INVALID) {
5721                 /* new database, cursor has nothing to point to */
5722                 mc->mc_snum = 0;
5723                 mc->mc_top = 0;
5724                 mc->mc_flags &= ~C_INITIALIZED;
5725                 rc = MDB_NO_ROOT;
5726         } else {
5727                 int exact = 0;
5728                 MDB_val d2;
5729                 if (flags & MDB_APPEND) {
5730                         MDB_val k2;
5731                         rc = mdb_cursor_last(mc, &k2, &d2);
5732                         if (rc == 0) {
5733                                 rc = mc->mc_dbx->md_cmp(key, &k2);
5734                                 if (rc > 0) {
5735                                         rc = MDB_NOTFOUND;
5736                                         mc->mc_ki[mc->mc_top]++;
5737                                 } else {
5738                                         /* new key is <= last key */
5739                                         rc = MDB_KEYEXIST;
5740                                 }
5741                         }
5742                 } else {
5743                         rc = mdb_cursor_set(mc, key, &d2, MDB_SET, &exact);
5744                 }
5745                 if ((flags & MDB_NOOVERWRITE) && rc == 0) {
5746                         DPRINTF(("duplicate key [%s]", DKEY(key)));
5747                         *data = d2;
5748                         return MDB_KEYEXIST;
5749                 }
5750                 if (rc && rc != MDB_NOTFOUND)
5751                         return rc;
5752         }
5753
5754         if (mc->mc_flags & C_DEL)
5755                 mc->mc_flags ^= C_DEL;
5756
5757         /* Cursor is positioned, check for room in the dirty list */
5758         if (!nospill) {
5759                 if (flags & MDB_MULTIPLE) {
5760                         rdata = &xdata;
5761                         xdata.mv_size = data->mv_size * dcount;
5762                 } else {
5763                         rdata = data;
5764                 }
5765                 if ((rc2 = mdb_page_spill(mc, key, rdata)))
5766                         return rc2;
5767         }
5768
5769         if (rc == MDB_NO_ROOT) {
5770                 MDB_page *np;
5771                 /* new database, write a root leaf page */
5772                 DPUTS("allocating new root leaf page");
5773                 if ((rc2 = mdb_page_new(mc, P_LEAF, 1, &np))) {
5774                         return rc2;
5775                 }
5776                 mdb_cursor_push(mc, np);
5777                 mc->mc_db->md_root = np->mp_pgno;
5778                 mc->mc_db->md_depth++;
5779                 *mc->mc_dbflag |= DB_DIRTY;
5780                 if ((mc->mc_db->md_flags & (MDB_DUPSORT|MDB_DUPFIXED))
5781                         == MDB_DUPFIXED)
5782                         np->mp_flags |= P_LEAF2;
5783                 mc->mc_flags |= C_INITIALIZED;
5784         } else {
5785                 /* make sure all cursor pages are writable */
5786                 rc2 = mdb_cursor_touch(mc);
5787                 if (rc2)
5788                         return rc2;
5789         }
5790
5791         /* The key already exists */
5792         if (rc == MDB_SUCCESS) {
5793                 MDB_page        *fp, *mp;
5794                 MDB_val         olddata;
5795
5796                 /* there's only a key anyway, so this is a no-op */
5797                 if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
5798                         unsigned int ksize = mc->mc_db->md_pad;
5799                         if (key->mv_size != ksize)
5800                                 return MDB_BAD_VALSIZE;
5801                         if (flags == MDB_CURRENT) {
5802                                 char *ptr = LEAF2KEY(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], ksize);
5803                                 memcpy(ptr, key->mv_data, ksize);
5804                         }
5805                         return MDB_SUCCESS;
5806                 }
5807
5808 more:
5809                 leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
5810                 olddata.mv_size = NODEDSZ(leaf);
5811                 olddata.mv_data = NODEDATA(leaf);
5812
5813                 /* DB has dups? */
5814                 if (F_ISSET(mc->mc_db->md_flags, MDB_DUPSORT)) {
5815                         mp = fp = xdata.mv_data = env->me_pbuf;
5816                         mp->mp_pgno = mc->mc_pg[mc->mc_top]->mp_pgno;
5817
5818                         /* Was a single item before, must convert now */
5819                         if (!F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5820                                 /* Just overwrite the current item */
5821                                 if (flags == MDB_CURRENT)
5822                                         goto current;
5823
5824                                 dkey = olddata;
5825 #if UINT_MAX < SIZE_MAX
5826                                 if (mc->mc_dbx->md_dcmp == mdb_cmp_int && dkey.mv_size == sizeof(size_t))
5827 #ifdef MISALIGNED_OK
5828                                         mc->mc_dbx->md_dcmp = mdb_cmp_long;
5829 #else
5830                                         mc->mc_dbx->md_dcmp = mdb_cmp_cint;
5831 #endif
5832 #endif
5833                                 /* if data matches, skip it */
5834                                 if (!mc->mc_dbx->md_dcmp(data, &dkey)) {
5835                                         if (flags & MDB_NODUPDATA)
5836                                                 rc = MDB_KEYEXIST;
5837                                         else if (flags & MDB_MULTIPLE)
5838                                                 goto next_mult;
5839                                         else
5840                                                 rc = MDB_SUCCESS;
5841                                         return rc;
5842                                 }
5843
5844                                 /* create a fake page for the dup items */
5845                                 memcpy(dbuf, dkey.mv_data, dkey.mv_size);
5846                                 dkey.mv_data = dbuf;
5847                                 fp->mp_flags = P_LEAF|P_DIRTY|P_SUBP;
5848                                 fp->mp_lower = PAGEHDRSZ;
5849                                 xdata.mv_size = PAGEHDRSZ + dkey.mv_size + data->mv_size;
5850                                 if (mc->mc_db->md_flags & MDB_DUPFIXED) {
5851                                         fp->mp_flags |= P_LEAF2;
5852                                         fp->mp_pad = data->mv_size;
5853                                         xdata.mv_size += 2 * data->mv_size;     /* leave space for 2 more */
5854                                 } else {
5855                                         xdata.mv_size += 2 * (sizeof(indx_t) + NODESIZE) +
5856                                                 (dkey.mv_size & 1) + (data->mv_size & 1);
5857                                 }
5858                                 fp->mp_upper = xdata.mv_size;
5859                         } else if (leaf->mn_flags & F_SUBDATA) {
5860                                 /* Data is on sub-DB, just store it */
5861                                 flags |= F_DUPDATA|F_SUBDATA;
5862                                 goto put_sub;
5863                         } else {
5864                                 /* See if we need to convert from fake page to subDB */
5865                                 unsigned int offset;
5866                                 unsigned int i;
5867                                 uint16_t fp_flags;
5868
5869                                 fp = olddata.mv_data;
5870                                 switch (flags) {
5871                                 default:
5872                                         if (!(mc->mc_db->md_flags & MDB_DUPFIXED)) {
5873                                                 offset = NODESIZE + sizeof(indx_t) + data->mv_size;
5874                                                 offset += offset & 1;
5875                                                 break;
5876                                         }
5877                                         offset = fp->mp_pad;
5878                                         if (SIZELEFT(fp) < offset) {
5879                                                 offset *= 4; /* space for 4 more */
5880                                                 break;
5881                                         }
5882                                         /* FALLTHRU: Big enough MDB_DUPFIXED sub-page */
5883                                 case MDB_CURRENT:
5884                                         fp->mp_flags |= P_DIRTY;
5885                                         COPY_PGNO(fp->mp_pgno, mp->mp_pgno);
5886                                         mc->mc_xcursor->mx_cursor.mc_pg[0] = fp;
5887                                         flags |= F_DUPDATA;
5888                                         goto put_sub;
5889                                 }
5890                                 fp_flags = fp->mp_flags;
5891                                 xdata.mv_size = olddata.mv_size + offset;
5892                                 if (NODESIZE + sizeof(indx_t) + NODEKSZ(leaf) + xdata.mv_size
5893                                         >= env->me_nodemax) {
5894                                         /* yes, convert it */
5895                                         if (mc->mc_db->md_flags & MDB_DUPFIXED) {
5896                                                 dummy.md_pad = fp->mp_pad;
5897                                                 dummy.md_flags = MDB_DUPFIXED;
5898                                                 if (mc->mc_db->md_flags & MDB_INTEGERDUP)
5899                                                         dummy.md_flags |= MDB_INTEGERKEY;
5900                                         } else {
5901                                                 dummy.md_pad = 0;
5902                                                 dummy.md_flags = 0;
5903                                         }
5904                                         dummy.md_depth = 1;
5905                                         dummy.md_branch_pages = 0;
5906                                         dummy.md_leaf_pages = 1;
5907                                         dummy.md_overflow_pages = 0;
5908                                         dummy.md_entries = NUMKEYS(fp);
5909                                         xdata.mv_size = sizeof(MDB_db);
5910                                         xdata.mv_data = &dummy;
5911                                         if ((rc = mdb_page_alloc(mc, 1, &mp)))
5912                                                 return rc;
5913                                         offset = env->me_psize - olddata.mv_size;
5914                                         flags |= F_DUPDATA|F_SUBDATA;
5915                                         dummy.md_root = mp->mp_pgno;
5916                                         fp_flags &= ~P_SUBP;
5917                                 }
5918                                 mp->mp_flags = fp_flags | P_DIRTY;
5919                                 mp->mp_pad   = fp->mp_pad;
5920                                 mp->mp_lower = fp->mp_lower;
5921                                 mp->mp_upper = fp->mp_upper + offset;
5922                                 if (IS_LEAF2(fp)) {
5923                                         memcpy(METADATA(mp), METADATA(fp), NUMKEYS(fp) * fp->mp_pad);
5924                                 } else {
5925                                         memcpy((char *)mp + mp->mp_upper, (char *)fp + fp->mp_upper,
5926                                                 olddata.mv_size - fp->mp_upper);
5927                                         for (i=0; i<NUMKEYS(fp); i++)
5928                                                 mp->mp_ptrs[i] = fp->mp_ptrs[i] + offset;
5929                                 }
5930                         }
5931
5932                         rdata = &xdata;
5933                         flags |= F_DUPDATA;
5934                         do_sub = 1;
5935                         mdb_node_del(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], 0);
5936                         goto new_sub;
5937                 }
5938 current:
5939                 /* overflow page overwrites need special handling */
5940                 if (F_ISSET(leaf->mn_flags, F_BIGDATA)) {
5941                         MDB_page *omp;
5942                         pgno_t pg;
5943                         int level, ovpages, dpages = OVPAGES(data->mv_size, env->me_psize);
5944
5945                         memcpy(&pg, olddata.mv_data, sizeof(pg));
5946                         if ((rc2 = mdb_page_get(mc->mc_txn, pg, &omp, &level)) != 0)
5947                                 return rc2;
5948                         ovpages = omp->mp_pages;
5949
5950                         /* Is the ov page large enough? */
5951                         if (ovpages >= dpages) {
5952                           if (!(omp->mp_flags & P_DIRTY) &&
5953                                   (level || (env->me_flags & MDB_WRITEMAP)))
5954                           {
5955                                 rc = mdb_page_unspill(mc->mc_txn, omp, &omp);
5956                                 if (rc)
5957                                         return rc;
5958                                 level = 0;              /* dirty in this txn or clean */
5959                           }
5960                           /* Is it dirty? */
5961                           if (omp->mp_flags & P_DIRTY) {
5962                                 /* yes, overwrite it. Note in this case we don't
5963                                  * bother to try shrinking the page if the new data
5964                                  * is smaller than the overflow threshold.
5965                                  */
5966                                 if (level > 1) {
5967                                         /* It is writable only in a parent txn */
5968                                         size_t sz = (size_t) env->me_psize * ovpages, off;
5969                                         MDB_page *np = mdb_page_malloc(mc->mc_txn, ovpages);
5970                                         MDB_ID2 id2;
5971                                         if (!np)
5972                                                 return ENOMEM;
5973                                         id2.mid = pg;
5974                                         id2.mptr = np;
5975                                         mdb_mid2l_insert(mc->mc_txn->mt_u.dirty_list, &id2);
5976                                         if (!(flags & MDB_RESERVE)) {
5977                                                 /* Copy end of page, adjusting alignment so
5978                                                  * compiler may copy words instead of bytes.
5979                                                  */
5980                                                 off = (PAGEHDRSZ + data->mv_size) & -sizeof(size_t);
5981                                                 memcpy((size_t *)((char *)np + off),
5982                                                         (size_t *)((char *)omp + off), sz - off);
5983                                                 sz = PAGEHDRSZ;
5984                                         }
5985                                         memcpy(np, omp, sz); /* Copy beginning of page */
5986                                         omp = np;
5987                                 }
5988                                 SETDSZ(leaf, data->mv_size);
5989                                 if (F_ISSET(flags, MDB_RESERVE))
5990                                         data->mv_data = METADATA(omp);
5991                                 else
5992                                         memcpy(METADATA(omp), data->mv_data, data->mv_size);
5993                                 goto done;
5994                           }
5995                         }
5996                         if ((rc2 = mdb_ovpage_free(mc, omp)) != MDB_SUCCESS)
5997                                 return rc2;
5998                 } else if (data->mv_size == olddata.mv_size) {
5999                         /* same size, just replace it. Note that we could
6000                          * also reuse this node if the new data is smaller,
6001                          * but instead we opt to shrink the node in that case.
6002                          */
6003                         if (F_ISSET(flags, MDB_RESERVE))
6004                                 data->mv_data = olddata.mv_data;
6005                         else if (data->mv_size)
6006                                 memcpy(olddata.mv_data, data->mv_data, data->mv_size);
6007                         else
6008                                 memcpy(NODEKEY(leaf), key->mv_data, key->mv_size);
6009                         goto done;
6010                 }
6011                 mdb_node_del(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], 0);
6012                 mc->mc_db->md_entries--;
6013         } else {
6014                 DPRINTF(("inserting key at index %i", mc->mc_ki[mc->mc_top]));
6015                 insert = 1;
6016         }
6017
6018         rdata = data;
6019
6020 new_sub:
6021         nflags = flags & NODE_ADD_FLAGS;
6022         nsize = IS_LEAF2(mc->mc_pg[mc->mc_top]) ? key->mv_size : mdb_leaf_size(env, key, rdata);
6023         if (SIZELEFT(mc->mc_pg[mc->mc_top]) < nsize) {
6024                 if (( flags & (F_DUPDATA|F_SUBDATA)) == F_DUPDATA )
6025                         nflags &= ~MDB_APPEND;
6026                 if (!insert)
6027                         nflags |= MDB_SPLIT_REPLACE;
6028                 rc = mdb_page_split(mc, key, rdata, P_INVALID, nflags);
6029         } else {
6030                 /* There is room already in this leaf page. */
6031                 rc = mdb_node_add(mc, mc->mc_ki[mc->mc_top], key, rdata, 0, nflags);
6032                 if (rc == 0 && !do_sub && insert) {
6033                         /* Adjust other cursors pointing to mp */
6034                         MDB_cursor *m2, *m3;
6035                         MDB_dbi dbi = mc->mc_dbi;
6036                         unsigned i = mc->mc_top;
6037                         MDB_page *mp = mc->mc_pg[i];
6038
6039                         for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
6040                                 if (mc->mc_flags & C_SUB)
6041                                         m3 = &m2->mc_xcursor->mx_cursor;
6042                                 else
6043                                         m3 = m2;
6044                                 if (m3 == mc || m3->mc_snum < mc->mc_snum) continue;
6045                                 if (m3->mc_pg[i] == mp && m3->mc_ki[i] >= mc->mc_ki[i]) {
6046                                         m3->mc_ki[i]++;
6047                                 }
6048                         }
6049                 }
6050         }
6051
6052         if (rc != MDB_SUCCESS)
6053                 mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
6054         else {
6055                 /* Now store the actual data in the child DB. Note that we're
6056                  * storing the user data in the keys field, so there are strict
6057                  * size limits on dupdata. The actual data fields of the child
6058                  * DB are all zero size.
6059                  */
6060                 if (do_sub) {
6061                         int xflags;
6062 put_sub:
6063                         xdata.mv_size = 0;
6064                         xdata.mv_data = "";
6065                         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
6066                         if (flags & MDB_CURRENT) {
6067                                 xflags = MDB_CURRENT|MDB_NOSPILL;
6068                         } else {
6069                                 mdb_xcursor_init1(mc, leaf);
6070                                 xflags = (flags & MDB_NODUPDATA) ?
6071                                         MDB_NOOVERWRITE|MDB_NOSPILL : MDB_NOSPILL;
6072                         }
6073                         /* converted, write the original data first */
6074                         if (dkey.mv_size) {
6075                                 rc = mdb_cursor_put(&mc->mc_xcursor->mx_cursor, &dkey, &xdata, xflags);
6076                                 if (rc)
6077                                         return rc;
6078                                 {
6079                                         /* Adjust other cursors pointing to mp */
6080                                         MDB_cursor *m2;
6081                                         unsigned i = mc->mc_top;
6082                                         MDB_page *mp = mc->mc_pg[i];
6083
6084                                         for (m2 = mc->mc_txn->mt_cursors[mc->mc_dbi]; m2; m2=m2->mc_next) {
6085                                                 if (m2 == mc || m2->mc_snum < mc->mc_snum) continue;
6086                                                 if (!(m2->mc_flags & C_INITIALIZED)) continue;
6087                                                 if (m2->mc_pg[i] == mp && m2->mc_ki[i] == mc->mc_ki[i]) {
6088                                                         mdb_xcursor_init1(m2, leaf);
6089                                                 }
6090                                         }
6091                                 }
6092                                 /* we've done our job */
6093                                 dkey.mv_size = 0;
6094                         }
6095                         if (flags & MDB_APPENDDUP)
6096                                 xflags |= MDB_APPEND;
6097                         rc = mdb_cursor_put(&mc->mc_xcursor->mx_cursor, data, &xdata, xflags);
6098                         if (flags & F_SUBDATA) {
6099                                 void *db = NODEDATA(leaf);
6100                                 memcpy(db, &mc->mc_xcursor->mx_db, sizeof(MDB_db));
6101                         }
6102                 }
6103                 /* sub-writes might have failed so check rc again.
6104                  * Don't increment count if we just replaced an existing item.
6105                  */
6106                 if (!rc && !(flags & MDB_CURRENT))
6107                         mc->mc_db->md_entries++;
6108                 if (flags & MDB_MULTIPLE) {
6109                         if (!rc) {
6110 next_mult:
6111                                 mcount++;
6112                                 /* let caller know how many succeeded, if any */
6113                                 data[1].mv_size = mcount;
6114                                 if (mcount < dcount) {
6115                                         data[0].mv_data = (char *)data[0].mv_data + data[0].mv_size;
6116                                         goto more;
6117                                 }
6118                         }
6119                 }
6120         }
6121 done:
6122         /* If we succeeded and the key didn't exist before, make sure
6123          * the cursor is marked valid.
6124          */
6125         if (!rc && insert)
6126                 mc->mc_flags |= C_INITIALIZED;
6127         return rc;
6128 }
6129
6130 int
6131 mdb_cursor_del(MDB_cursor *mc, unsigned int flags)
6132 {
6133         MDB_node        *leaf;
6134         MDB_page        *mp;
6135         int rc;
6136
6137         if (mc->mc_txn->mt_flags & (MDB_TXN_RDONLY|MDB_TXN_ERROR))
6138                 return (mc->mc_txn->mt_flags & MDB_TXN_RDONLY) ? EACCES : MDB_BAD_TXN;
6139
6140         if (!(mc->mc_flags & C_INITIALIZED))
6141                 return EINVAL;
6142
6143         if (mc->mc_ki[mc->mc_top] >= NUMKEYS(mc->mc_pg[mc->mc_top]))
6144                 return MDB_NOTFOUND;
6145
6146         if (!(flags & MDB_NOSPILL) && (rc = mdb_page_spill(mc, NULL, NULL)))
6147                 return rc;
6148
6149         rc = mdb_cursor_touch(mc);
6150         if (rc)
6151                 return rc;
6152
6153         mp = mc->mc_pg[mc->mc_top];
6154         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
6155
6156         if (!IS_LEAF2(mp) && F_ISSET(leaf->mn_flags, F_DUPDATA)) {
6157                 if (!(flags & MDB_NODUPDATA)) {
6158                         if (!F_ISSET(leaf->mn_flags, F_SUBDATA)) {
6159                                 mc->mc_xcursor->mx_cursor.mc_pg[0] = NODEDATA(leaf);
6160                         }
6161                         rc = mdb_cursor_del(&mc->mc_xcursor->mx_cursor, MDB_NOSPILL);
6162                         /* If sub-DB still has entries, we're done */
6163                         if (mc->mc_xcursor->mx_db.md_entries) {
6164                                 if (leaf->mn_flags & F_SUBDATA) {
6165                                         /* update subDB info */
6166                                         void *db = NODEDATA(leaf);
6167                                         memcpy(db, &mc->mc_xcursor->mx_db, sizeof(MDB_db));
6168                                 } else {
6169                                         MDB_cursor *m2;
6170                                         /* shrink fake page */
6171                                         mdb_node_shrink(mp, mc->mc_ki[mc->mc_top]);
6172                                         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
6173                                         mc->mc_xcursor->mx_cursor.mc_pg[0] = NODEDATA(leaf);
6174                                         /* fix other sub-DB cursors pointed at this fake page */
6175                                         for (m2 = mc->mc_txn->mt_cursors[mc->mc_dbi]; m2; m2=m2->mc_next) {
6176                                                 if (m2 == mc || m2->mc_snum < mc->mc_snum) continue;
6177                                                 if (m2->mc_pg[mc->mc_top] == mp &&
6178                                                         m2->mc_ki[mc->mc_top] == mc->mc_ki[mc->mc_top])
6179                                                         m2->mc_xcursor->mx_cursor.mc_pg[0] = NODEDATA(leaf);
6180                                         }
6181                                 }
6182                                 mc->mc_db->md_entries--;
6183                                 mc->mc_flags |= C_DEL;
6184                                 return rc;
6185                         }
6186                         /* otherwise fall thru and delete the sub-DB */
6187                 }
6188
6189                 if (leaf->mn_flags & F_SUBDATA) {
6190                         /* add all the child DB's pages to the free list */
6191                         rc = mdb_drop0(&mc->mc_xcursor->mx_cursor, 0);
6192                         if (rc == MDB_SUCCESS) {
6193                                 mc->mc_db->md_entries -=
6194                                         mc->mc_xcursor->mx_db.md_entries;
6195                         }
6196                 }
6197         }
6198
6199         return mdb_cursor_del0(mc, leaf);
6200 }
6201
6202 /** Allocate and initialize new pages for a database.
6203  * @param[in] mc a cursor on the database being added to.
6204  * @param[in] flags flags defining what type of page is being allocated.
6205  * @param[in] num the number of pages to allocate. This is usually 1,
6206  * unless allocating overflow pages for a large record.
6207  * @param[out] mp Address of a page, or NULL on failure.
6208  * @return 0 on success, non-zero on failure.
6209  */
6210 static int
6211 mdb_page_new(MDB_cursor *mc, uint32_t flags, int num, MDB_page **mp)
6212 {
6213         MDB_page        *np;
6214         int rc;
6215
6216         if ((rc = mdb_page_alloc(mc, num, &np)))
6217                 return rc;
6218         DPRINTF(("allocated new mpage %"Z"u, page size %u",
6219             np->mp_pgno, mc->mc_txn->mt_env->me_psize));
6220         np->mp_flags = flags | P_DIRTY;
6221         np->mp_lower = PAGEHDRSZ;
6222         np->mp_upper = mc->mc_txn->mt_env->me_psize;
6223
6224         if (IS_BRANCH(np))
6225                 mc->mc_db->md_branch_pages++;
6226         else if (IS_LEAF(np))
6227                 mc->mc_db->md_leaf_pages++;
6228         else if (IS_OVERFLOW(np)) {
6229                 mc->mc_db->md_overflow_pages += num;
6230                 np->mp_pages = num;
6231         }
6232         *mp = np;
6233
6234         return 0;
6235 }
6236
6237 /** Calculate the size of a leaf node.
6238  * The size depends on the environment's page size; if a data item
6239  * is too large it will be put onto an overflow page and the node
6240  * size will only include the key and not the data. Sizes are always
6241  * rounded up to an even number of bytes, to guarantee 2-byte alignment
6242  * of the #MDB_node headers.
6243  * @param[in] env The environment handle.
6244  * @param[in] key The key for the node.
6245  * @param[in] data The data for the node.
6246  * @return The number of bytes needed to store the node.
6247  */
6248 static size_t
6249 mdb_leaf_size(MDB_env *env, MDB_val *key, MDB_val *data)
6250 {
6251         size_t           sz;
6252
6253         sz = LEAFSIZE(key, data);
6254         if (sz >= env->me_nodemax) {
6255                 /* put on overflow page */
6256                 sz -= data->mv_size - sizeof(pgno_t);
6257         }
6258         sz += sz & 1;
6259
6260         return sz + sizeof(indx_t);
6261 }
6262
6263 /** Calculate the size of a branch node.
6264  * The size should depend on the environment's page size but since
6265  * we currently don't support spilling large keys onto overflow
6266  * pages, it's simply the size of the #MDB_node header plus the
6267  * size of the key. Sizes are always rounded up to an even number
6268  * of bytes, to guarantee 2-byte alignment of the #MDB_node headers.
6269  * @param[in] env The environment handle.
6270  * @param[in] key The key for the node.
6271  * @return The number of bytes needed to store the node.
6272  */
6273 static size_t
6274 mdb_branch_size(MDB_env *env, MDB_val *key)
6275 {
6276         size_t           sz;
6277
6278         sz = INDXSIZE(key);
6279         if (sz >= env->me_nodemax) {
6280                 /* put on overflow page */
6281                 /* not implemented */
6282                 /* sz -= key->size - sizeof(pgno_t); */
6283         }
6284
6285         return sz + sizeof(indx_t);
6286 }
6287
6288 /** Add a node to the page pointed to by the cursor.
6289  * @param[in] mc The cursor for this operation.
6290  * @param[in] indx The index on the page where the new node should be added.
6291  * @param[in] key The key for the new node.
6292  * @param[in] data The data for the new node, if any.
6293  * @param[in] pgno The page number, if adding a branch node.
6294  * @param[in] flags Flags for the node.
6295  * @return 0 on success, non-zero on failure. Possible errors are:
6296  * <ul>
6297  *      <li>ENOMEM - failed to allocate overflow pages for the node.
6298  *      <li>MDB_PAGE_FULL - there is insufficient room in the page. This error
6299  *      should never happen since all callers already calculate the
6300  *      page's free space before calling this function.
6301  * </ul>
6302  */
6303 static int
6304 mdb_node_add(MDB_cursor *mc, indx_t indx,
6305     MDB_val *key, MDB_val *data, pgno_t pgno, unsigned int flags)
6306 {
6307         unsigned int     i;
6308         size_t           node_size = NODESIZE;
6309         ssize_t          room;
6310         indx_t           ofs;
6311         MDB_node        *node;
6312         MDB_page        *mp = mc->mc_pg[mc->mc_top];
6313         MDB_page        *ofp = NULL;            /* overflow page */
6314         DKBUF;
6315
6316         assert(mp->mp_upper >= mp->mp_lower);
6317
6318         DPRINTF(("add to %s %spage %"Z"u index %i, data size %"Z"u key size %"Z"u [%s]",
6319             IS_LEAF(mp) ? "leaf" : "branch",
6320                 IS_SUBP(mp) ? "sub-" : "",
6321             mp->mp_pgno, indx, data ? data->mv_size : 0,
6322                 key ? key->mv_size : 0, key ? DKEY(key) : "null"));
6323
6324         if (IS_LEAF2(mp)) {
6325                 /* Move higher keys up one slot. */
6326                 int ksize = mc->mc_db->md_pad, dif;
6327                 char *ptr = LEAF2KEY(mp, indx, ksize);
6328                 dif = NUMKEYS(mp) - indx;
6329                 if (dif > 0)
6330                         memmove(ptr+ksize, ptr, dif*ksize);
6331                 /* insert new key */
6332                 memcpy(ptr, key->mv_data, ksize);
6333
6334                 /* Just using these for counting */
6335                 mp->mp_lower += sizeof(indx_t);
6336                 mp->mp_upper -= ksize - sizeof(indx_t);
6337                 return MDB_SUCCESS;
6338         }
6339
6340         room = (ssize_t)SIZELEFT(mp) - (ssize_t)sizeof(indx_t);
6341         if (key != NULL)
6342                 node_size += key->mv_size;
6343         if (IS_LEAF(mp)) {
6344                 assert(data);
6345                 if (F_ISSET(flags, F_BIGDATA)) {
6346                         /* Data already on overflow page. */
6347                         node_size += sizeof(pgno_t);
6348                 } else if (node_size + data->mv_size >= mc->mc_txn->mt_env->me_nodemax) {
6349                         int ovpages = OVPAGES(data->mv_size, mc->mc_txn->mt_env->me_psize);
6350                         int rc;
6351                         /* Put data on overflow page. */
6352                         DPRINTF(("data size is %"Z"u, node would be %"Z"u, put data on overflow page",
6353                             data->mv_size, node_size+data->mv_size));
6354                         node_size += sizeof(pgno_t) + (node_size & 1);
6355                         if ((ssize_t)node_size > room)
6356                                 goto full;
6357                         if ((rc = mdb_page_new(mc, P_OVERFLOW, ovpages, &ofp)))
6358                                 return rc;
6359                         DPRINTF(("allocated overflow page %"Z"u", ofp->mp_pgno));
6360                         flags |= F_BIGDATA;
6361                         goto update;
6362                 } else {
6363                         node_size += data->mv_size;
6364                 }
6365         }
6366         node_size += node_size & 1;
6367         if ((ssize_t)node_size > room)
6368                 goto full;
6369
6370 update:
6371         /* Move higher pointers up one slot. */
6372         for (i = NUMKEYS(mp); i > indx; i--)
6373                 mp->mp_ptrs[i] = mp->mp_ptrs[i - 1];
6374
6375         /* Adjust free space offsets. */
6376         ofs = mp->mp_upper - node_size;
6377         assert(ofs >= mp->mp_lower + sizeof(indx_t));
6378         mp->mp_ptrs[indx] = ofs;
6379         mp->mp_upper = ofs;
6380         mp->mp_lower += sizeof(indx_t);
6381
6382         /* Write the node data. */
6383         node = NODEPTR(mp, indx);
6384         node->mn_ksize = (key == NULL) ? 0 : key->mv_size;
6385         node->mn_flags = flags;
6386         if (IS_LEAF(mp))
6387                 SETDSZ(node,data->mv_size);
6388         else
6389                 SETPGNO(node,pgno);
6390
6391         if (key)
6392                 memcpy(NODEKEY(node), key->mv_data, key->mv_size);
6393
6394         if (IS_LEAF(mp)) {
6395                 assert(key);
6396                 if (ofp == NULL) {
6397                         if (F_ISSET(flags, F_BIGDATA))
6398                                 memcpy(node->mn_data + key->mv_size, data->mv_data,
6399                                     sizeof(pgno_t));
6400                         else if (F_ISSET(flags, MDB_RESERVE))
6401                                 data->mv_data = node->mn_data + key->mv_size;
6402                         else
6403                                 memcpy(node->mn_data + key->mv_size, data->mv_data,
6404                                     data->mv_size);
6405                 } else {
6406                         memcpy(node->mn_data + key->mv_size, &ofp->mp_pgno,
6407                             sizeof(pgno_t));
6408                         if (F_ISSET(flags, MDB_RESERVE))
6409                                 data->mv_data = METADATA(ofp);
6410                         else
6411                                 memcpy(METADATA(ofp), data->mv_data, data->mv_size);
6412                 }
6413         }
6414
6415         return MDB_SUCCESS;
6416
6417 full:
6418         DPRINTF(("not enough room in page %"Z"u, got %u ptrs",
6419                 mp->mp_pgno, NUMKEYS(mp)));
6420         DPRINTF(("upper-lower = %u - %u = %"Z"d", mp->mp_upper,mp->mp_lower,room));
6421         DPRINTF(("node size = %"Z"u", node_size));
6422         return MDB_PAGE_FULL;
6423 }
6424
6425 /** Delete the specified node from a page.
6426  * @param[in] mp The page to operate on.
6427  * @param[in] indx The index of the node to delete.
6428  * @param[in] ksize The size of a node. Only used if the page is
6429  * part of a #MDB_DUPFIXED database.
6430  */
6431 static void
6432 mdb_node_del(MDB_page *mp, indx_t indx, int ksize)
6433 {
6434         unsigned int     sz;
6435         indx_t           i, j, numkeys, ptr;
6436         MDB_node        *node;
6437         char            *base;
6438
6439 #if MDB_DEBUG
6440         {
6441         pgno_t pgno;
6442         COPY_PGNO(pgno, mp->mp_pgno);
6443         DPRINTF(("delete node %u on %s page %"Z"u", indx,
6444             IS_LEAF(mp) ? "leaf" : "branch", pgno));
6445         }
6446 #endif
6447         assert(indx < NUMKEYS(mp));
6448
6449         if (IS_LEAF2(mp)) {
6450                 int x = NUMKEYS(mp) - 1 - indx;
6451                 base = LEAF2KEY(mp, indx, ksize);
6452                 if (x)
6453                         memmove(base, base + ksize, x * ksize);
6454                 mp->mp_lower -= sizeof(indx_t);
6455                 mp->mp_upper += ksize - sizeof(indx_t);
6456                 return;
6457         }
6458
6459         node = NODEPTR(mp, indx);
6460         sz = NODESIZE + node->mn_ksize;
6461         if (IS_LEAF(mp)) {
6462                 if (F_ISSET(node->mn_flags, F_BIGDATA))
6463                         sz += sizeof(pgno_t);
6464                 else
6465                         sz += NODEDSZ(node);
6466         }
6467         sz += sz & 1;
6468
6469         ptr = mp->mp_ptrs[indx];
6470         numkeys = NUMKEYS(mp);
6471         for (i = j = 0; i < numkeys; i++) {
6472                 if (i != indx) {
6473                         mp->mp_ptrs[j] = mp->mp_ptrs[i];
6474                         if (mp->mp_ptrs[i] < ptr)
6475                                 mp->mp_ptrs[j] += sz;
6476                         j++;
6477                 }
6478         }
6479
6480         base = (char *)mp + mp->mp_upper;
6481         memmove(base + sz, base, ptr - mp->mp_upper);
6482
6483         mp->mp_lower -= sizeof(indx_t);
6484         mp->mp_upper += sz;
6485 }
6486
6487 /** Compact the main page after deleting a node on a subpage.
6488  * @param[in] mp The main page to operate on.
6489  * @param[in] indx The index of the subpage on the main page.
6490  */
6491 static void
6492 mdb_node_shrink(MDB_page *mp, indx_t indx)
6493 {
6494         MDB_node *node;
6495         MDB_page *sp, *xp;
6496         char *base;
6497         int osize, nsize;
6498         int delta;
6499         indx_t           i, numkeys, ptr;
6500
6501         node = NODEPTR(mp, indx);
6502         sp = (MDB_page *)NODEDATA(node);
6503         osize = NODEDSZ(node);
6504
6505         delta = sp->mp_upper - sp->mp_lower;
6506         SETDSZ(node, osize - delta);
6507         xp = (MDB_page *)((char *)sp + delta);
6508
6509         /* shift subpage upward */
6510         if (IS_LEAF2(sp)) {
6511                 nsize = NUMKEYS(sp) * sp->mp_pad;
6512                 memmove(METADATA(xp), METADATA(sp), nsize);
6513         } else {
6514                 int i;
6515                 nsize = osize - sp->mp_upper;
6516                 numkeys = NUMKEYS(sp);
6517                 for (i=numkeys-1; i>=0; i--)
6518                         xp->mp_ptrs[i] = sp->mp_ptrs[i] - delta;
6519         }
6520         xp->mp_upper = sp->mp_lower;
6521         xp->mp_lower = sp->mp_lower;
6522         xp->mp_flags = sp->mp_flags;
6523         xp->mp_pad = sp->mp_pad;
6524         COPY_PGNO(xp->mp_pgno, mp->mp_pgno);
6525
6526         /* shift lower nodes upward */
6527         ptr = mp->mp_ptrs[indx];
6528         numkeys = NUMKEYS(mp);
6529         for (i = 0; i < numkeys; i++) {
6530                 if (mp->mp_ptrs[i] <= ptr)
6531                         mp->mp_ptrs[i] += delta;
6532         }
6533
6534         base = (char *)mp + mp->mp_upper;
6535         memmove(base + delta, base, ptr - mp->mp_upper + NODESIZE + NODEKSZ(node));
6536         mp->mp_upper += delta;
6537 }
6538
6539 /** Initial setup of a sorted-dups cursor.
6540  * Sorted duplicates are implemented as a sub-database for the given key.
6541  * The duplicate data items are actually keys of the sub-database.
6542  * Operations on the duplicate data items are performed using a sub-cursor
6543  * initialized when the sub-database is first accessed. This function does
6544  * the preliminary setup of the sub-cursor, filling in the fields that
6545  * depend only on the parent DB.
6546  * @param[in] mc The main cursor whose sorted-dups cursor is to be initialized.
6547  */
6548 static void
6549 mdb_xcursor_init0(MDB_cursor *mc)
6550 {
6551         MDB_xcursor *mx = mc->mc_xcursor;
6552
6553         mx->mx_cursor.mc_xcursor = NULL;
6554         mx->mx_cursor.mc_txn = mc->mc_txn;
6555         mx->mx_cursor.mc_db = &mx->mx_db;
6556         mx->mx_cursor.mc_dbx = &mx->mx_dbx;
6557         mx->mx_cursor.mc_dbi = mc->mc_dbi;
6558         mx->mx_cursor.mc_dbflag = &mx->mx_dbflag;
6559         mx->mx_cursor.mc_snum = 0;
6560         mx->mx_cursor.mc_top = 0;
6561         mx->mx_cursor.mc_flags = C_SUB;
6562         mx->mx_dbx.md_name.mv_size = 0;
6563         mx->mx_dbx.md_name.mv_data = NULL;
6564         mx->mx_dbx.md_cmp = mc->mc_dbx->md_dcmp;
6565         mx->mx_dbx.md_dcmp = NULL;
6566         mx->mx_dbx.md_rel = mc->mc_dbx->md_rel;
6567 }
6568
6569 /** Final setup of a sorted-dups cursor.
6570  *      Sets up the fields that depend on the data from the main cursor.
6571  * @param[in] mc The main cursor whose sorted-dups cursor is to be initialized.
6572  * @param[in] node The data containing the #MDB_db record for the
6573  * sorted-dup database.
6574  */
6575 static void
6576 mdb_xcursor_init1(MDB_cursor *mc, MDB_node *node)
6577 {
6578         MDB_xcursor *mx = mc->mc_xcursor;
6579
6580         if (node->mn_flags & F_SUBDATA) {
6581                 memcpy(&mx->mx_db, NODEDATA(node), sizeof(MDB_db));
6582                 mx->mx_cursor.mc_pg[0] = 0;
6583                 mx->mx_cursor.mc_snum = 0;
6584                 mx->mx_cursor.mc_top = 0;
6585                 mx->mx_cursor.mc_flags = C_SUB;
6586         } else {
6587                 MDB_page *fp = NODEDATA(node);
6588                 mx->mx_db.md_pad = mc->mc_pg[mc->mc_top]->mp_pad;
6589                 mx->mx_db.md_flags = 0;
6590                 mx->mx_db.md_depth = 1;
6591                 mx->mx_db.md_branch_pages = 0;
6592                 mx->mx_db.md_leaf_pages = 1;
6593                 mx->mx_db.md_overflow_pages = 0;
6594                 mx->mx_db.md_entries = NUMKEYS(fp);
6595                 COPY_PGNO(mx->mx_db.md_root, fp->mp_pgno);
6596                 mx->mx_cursor.mc_snum = 1;
6597                 mx->mx_cursor.mc_top = 0;
6598                 mx->mx_cursor.mc_flags = C_INITIALIZED|C_SUB;
6599                 mx->mx_cursor.mc_pg[0] = fp;
6600                 mx->mx_cursor.mc_ki[0] = 0;
6601                 if (mc->mc_db->md_flags & MDB_DUPFIXED) {
6602                         mx->mx_db.md_flags = MDB_DUPFIXED;
6603                         mx->mx_db.md_pad = fp->mp_pad;
6604                         if (mc->mc_db->md_flags & MDB_INTEGERDUP)
6605                                 mx->mx_db.md_flags |= MDB_INTEGERKEY;
6606                 }
6607         }
6608         DPRINTF(("Sub-db -%u root page %"Z"u", mx->mx_cursor.mc_dbi,
6609                 mx->mx_db.md_root));
6610         mx->mx_dbflag = DB_VALID|DB_DIRTY; /* DB_DIRTY guides mdb_cursor_touch */
6611 #if UINT_MAX < SIZE_MAX
6612         if (mx->mx_dbx.md_cmp == mdb_cmp_int && mx->mx_db.md_pad == sizeof(size_t))
6613 #ifdef MISALIGNED_OK
6614                 mx->mx_dbx.md_cmp = mdb_cmp_long;
6615 #else
6616                 mx->mx_dbx.md_cmp = mdb_cmp_cint;
6617 #endif
6618 #endif
6619 }
6620
6621 /** Initialize a cursor for a given transaction and database. */
6622 static void
6623 mdb_cursor_init(MDB_cursor *mc, MDB_txn *txn, MDB_dbi dbi, MDB_xcursor *mx)
6624 {
6625         mc->mc_next = NULL;
6626         mc->mc_backup = NULL;
6627         mc->mc_dbi = dbi;
6628         mc->mc_txn = txn;
6629         mc->mc_db = &txn->mt_dbs[dbi];
6630         mc->mc_dbx = &txn->mt_dbxs[dbi];
6631         mc->mc_dbflag = &txn->mt_dbflags[dbi];
6632         mc->mc_snum = 0;
6633         mc->mc_top = 0;
6634         mc->mc_pg[0] = 0;
6635         mc->mc_flags = 0;
6636         if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT) {
6637                 assert(mx != NULL);
6638                 mc->mc_xcursor = mx;
6639                 mdb_xcursor_init0(mc);
6640         } else {
6641                 mc->mc_xcursor = NULL;
6642         }
6643         if (*mc->mc_dbflag & DB_STALE) {
6644                 mdb_page_search(mc, NULL, MDB_PS_ROOTONLY);
6645         }
6646 }
6647
6648 int
6649 mdb_cursor_open(MDB_txn *txn, MDB_dbi dbi, MDB_cursor **ret)
6650 {
6651         MDB_cursor      *mc;
6652         size_t size = sizeof(MDB_cursor);
6653
6654         if (txn == NULL || ret == NULL || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
6655                 return EINVAL;
6656
6657         if (txn->mt_flags & MDB_TXN_ERROR)
6658                 return MDB_BAD_TXN;
6659
6660         /* Allow read access to the freelist */
6661         if (!dbi && !F_ISSET(txn->mt_flags, MDB_TXN_RDONLY))
6662                 return EINVAL;
6663
6664         if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT)
6665                 size += sizeof(MDB_xcursor);
6666
6667         if ((mc = malloc(size)) != NULL) {
6668                 mdb_cursor_init(mc, txn, dbi, (MDB_xcursor *)(mc + 1));
6669                 if (txn->mt_cursors) {
6670                         mc->mc_next = txn->mt_cursors[dbi];
6671                         txn->mt_cursors[dbi] = mc;
6672                         mc->mc_flags |= C_UNTRACK;
6673                 }
6674         } else {
6675                 return ENOMEM;
6676         }
6677
6678         *ret = mc;
6679
6680         return MDB_SUCCESS;
6681 }
6682
6683 int
6684 mdb_cursor_renew(MDB_txn *txn, MDB_cursor *mc)
6685 {
6686         if (txn == NULL || mc == NULL || mc->mc_dbi >= txn->mt_numdbs)
6687                 return EINVAL;
6688
6689         if ((mc->mc_flags & C_UNTRACK) || txn->mt_cursors)
6690                 return EINVAL;
6691
6692         mdb_cursor_init(mc, txn, mc->mc_dbi, mc->mc_xcursor);
6693         return MDB_SUCCESS;
6694 }
6695
6696 /* Return the count of duplicate data items for the current key */
6697 int
6698 mdb_cursor_count(MDB_cursor *mc, size_t *countp)
6699 {
6700         MDB_node        *leaf;
6701
6702         if (mc == NULL || countp == NULL)
6703                 return EINVAL;
6704
6705         if (mc->mc_xcursor == NULL)
6706                 return MDB_INCOMPATIBLE;
6707
6708         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
6709         if (!F_ISSET(leaf->mn_flags, F_DUPDATA)) {
6710                 *countp = 1;
6711         } else {
6712                 if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED))
6713                         return EINVAL;
6714
6715                 *countp = mc->mc_xcursor->mx_db.md_entries;
6716         }
6717         return MDB_SUCCESS;
6718 }
6719
6720 void
6721 mdb_cursor_close(MDB_cursor *mc)
6722 {
6723         if (mc && !mc->mc_backup) {
6724                 /* remove from txn, if tracked */
6725                 if ((mc->mc_flags & C_UNTRACK) && mc->mc_txn->mt_cursors) {
6726                         MDB_cursor **prev = &mc->mc_txn->mt_cursors[mc->mc_dbi];
6727                         while (*prev && *prev != mc) prev = &(*prev)->mc_next;
6728                         if (*prev == mc)
6729                                 *prev = mc->mc_next;
6730                 }
6731                 free(mc);
6732         }
6733 }
6734
6735 MDB_txn *
6736 mdb_cursor_txn(MDB_cursor *mc)
6737 {
6738         if (!mc) return NULL;
6739         return mc->mc_txn;
6740 }
6741
6742 MDB_dbi
6743 mdb_cursor_dbi(MDB_cursor *mc)
6744 {
6745         assert(mc != NULL);
6746         return mc->mc_dbi;
6747 }
6748
6749 /** Replace the key for a node with a new key.
6750  * @param[in] mc Cursor pointing to the node to operate on.
6751  * @param[in] key The new key to use.
6752  * @return 0 on success, non-zero on failure.
6753  */
6754 static int
6755 mdb_update_key(MDB_cursor *mc, MDB_val *key)
6756 {
6757         MDB_page                *mp;
6758         MDB_node                *node;
6759         char                    *base;
6760         size_t                   len;
6761         int                              delta, ksize, oksize;
6762         indx_t                   ptr, i, numkeys, indx;
6763         DKBUF;
6764
6765         indx = mc->mc_ki[mc->mc_top];
6766         mp = mc->mc_pg[mc->mc_top];
6767         node = NODEPTR(mp, indx);
6768         ptr = mp->mp_ptrs[indx];
6769 #if MDB_DEBUG
6770         {
6771                 MDB_val k2;
6772                 char kbuf2[(MDB_MAXKEYSIZE*2+1)];
6773                 k2.mv_data = NODEKEY(node);
6774                 k2.mv_size = node->mn_ksize;
6775                 DPRINTF(("update key %u (ofs %u) [%s] to [%s] on page %"Z"u",
6776                         indx, ptr,
6777                         mdb_dkey(&k2, kbuf2),
6778                         DKEY(key),
6779                         mp->mp_pgno));
6780         }
6781 #endif
6782
6783         ksize = key->mv_size;
6784         ksize += (ksize & 1);
6785         oksize = node->mn_ksize;
6786         oksize += (oksize & 1);
6787         delta = ksize - oksize;
6788
6789         /* Must be 2-byte aligned. If new key is
6790          * shorter by 1, the shift will be skipped.
6791          */
6792         if (delta) {
6793                 if (delta > 0 && SIZELEFT(mp) < delta) {
6794                         pgno_t pgno;
6795                         /* not enough space left, do a delete and split */
6796                         DPRINTF(("Not enough room, delta = %d, splitting...", delta));
6797                         pgno = NODEPGNO(node);
6798                         mdb_node_del(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], 0);
6799                         return mdb_page_split(mc, key, NULL, pgno, MDB_SPLIT_REPLACE);
6800                 }
6801
6802                 numkeys = NUMKEYS(mp);
6803                 for (i = 0; i < numkeys; i++) {
6804                         if (mp->mp_ptrs[i] <= ptr)
6805                                 mp->mp_ptrs[i] -= delta;
6806                 }
6807
6808                 base = (char *)mp + mp->mp_upper;
6809                 len = ptr - mp->mp_upper + NODESIZE;
6810                 memmove(base - delta, base, len);
6811                 mp->mp_upper -= delta;
6812
6813                 node = NODEPTR(mp, indx);
6814         }
6815
6816         /* But even if no shift was needed, update ksize */
6817         if (node->mn_ksize != key->mv_size)
6818                 node->mn_ksize = key->mv_size;
6819
6820         if (key->mv_size)
6821                 memcpy(NODEKEY(node), key->mv_data, key->mv_size);
6822
6823         return MDB_SUCCESS;
6824 }
6825
6826 static void
6827 mdb_cursor_copy(const MDB_cursor *csrc, MDB_cursor *cdst);
6828
6829 /** Move a node from csrc to cdst.
6830  */
6831 static int
6832 mdb_node_move(MDB_cursor *csrc, MDB_cursor *cdst)
6833 {
6834         MDB_node                *srcnode;
6835         MDB_val          key, data;
6836         pgno_t  srcpg;
6837         MDB_cursor mn;
6838         int                      rc;
6839         unsigned short flags;
6840
6841         DKBUF;
6842
6843         /* Mark src and dst as dirty. */
6844         if ((rc = mdb_page_touch(csrc)) ||
6845             (rc = mdb_page_touch(cdst)))
6846                 return rc;
6847
6848         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
6849                 srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);        /* fake */
6850                 key.mv_size = csrc->mc_db->md_pad;
6851                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], csrc->mc_ki[csrc->mc_top], key.mv_size);
6852                 data.mv_size = 0;
6853                 data.mv_data = NULL;
6854                 srcpg = 0;
6855                 flags = 0;
6856         } else {
6857                 srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], csrc->mc_ki[csrc->mc_top]);
6858                 assert(!((size_t)srcnode&1));
6859                 srcpg = NODEPGNO(srcnode);
6860                 flags = srcnode->mn_flags;
6861                 if (csrc->mc_ki[csrc->mc_top] == 0 && IS_BRANCH(csrc->mc_pg[csrc->mc_top])) {
6862                         unsigned int snum = csrc->mc_snum;
6863                         MDB_node *s2;
6864                         /* must find the lowest key below src */
6865                         mdb_page_search_lowest(csrc);
6866                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
6867                                 key.mv_size = csrc->mc_db->md_pad;
6868                                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], 0, key.mv_size);
6869                         } else {
6870                                 s2 = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);
6871                                 key.mv_size = NODEKSZ(s2);
6872                                 key.mv_data = NODEKEY(s2);
6873                         }
6874                         csrc->mc_snum = snum--;
6875                         csrc->mc_top = snum;
6876                 } else {
6877                         key.mv_size = NODEKSZ(srcnode);
6878                         key.mv_data = NODEKEY(srcnode);
6879                 }
6880                 data.mv_size = NODEDSZ(srcnode);
6881                 data.mv_data = NODEDATA(srcnode);
6882         }
6883         if (IS_BRANCH(cdst->mc_pg[cdst->mc_top]) && cdst->mc_ki[cdst->mc_top] == 0) {
6884                 unsigned int snum = cdst->mc_snum;
6885                 MDB_node *s2;
6886                 MDB_val bkey;
6887                 /* must find the lowest key below dst */
6888                 mdb_page_search_lowest(cdst);
6889                 if (IS_LEAF2(cdst->mc_pg[cdst->mc_top])) {
6890                         bkey.mv_size = cdst->mc_db->md_pad;
6891                         bkey.mv_data = LEAF2KEY(cdst->mc_pg[cdst->mc_top], 0, bkey.mv_size);
6892                 } else {
6893                         s2 = NODEPTR(cdst->mc_pg[cdst->mc_top], 0);
6894                         bkey.mv_size = NODEKSZ(s2);
6895                         bkey.mv_data = NODEKEY(s2);
6896                 }
6897                 cdst->mc_snum = snum--;
6898                 cdst->mc_top = snum;
6899                 mdb_cursor_copy(cdst, &mn);
6900                 mn.mc_ki[snum] = 0;
6901                 rc = mdb_update_key(&mn, &bkey);
6902                 if (rc)
6903                         return rc;
6904         }
6905
6906         DPRINTF(("moving %s node %u [%s] on page %"Z"u to node %u on page %"Z"u",
6907             IS_LEAF(csrc->mc_pg[csrc->mc_top]) ? "leaf" : "branch",
6908             csrc->mc_ki[csrc->mc_top],
6909                 DKEY(&key),
6910             csrc->mc_pg[csrc->mc_top]->mp_pgno,
6911             cdst->mc_ki[cdst->mc_top], cdst->mc_pg[cdst->mc_top]->mp_pgno));
6912
6913         /* Add the node to the destination page.
6914          */
6915         rc = mdb_node_add(cdst, cdst->mc_ki[cdst->mc_top], &key, &data, srcpg, flags);
6916         if (rc != MDB_SUCCESS)
6917                 return rc;
6918
6919         /* Delete the node from the source page.
6920          */
6921         mdb_node_del(csrc->mc_pg[csrc->mc_top], csrc->mc_ki[csrc->mc_top], key.mv_size);
6922
6923         {
6924                 /* Adjust other cursors pointing to mp */
6925                 MDB_cursor *m2, *m3;
6926                 MDB_dbi dbi = csrc->mc_dbi;
6927                 MDB_page *mp = csrc->mc_pg[csrc->mc_top];
6928
6929                 for (m2 = csrc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
6930                         if (csrc->mc_flags & C_SUB)
6931                                 m3 = &m2->mc_xcursor->mx_cursor;
6932                         else
6933                                 m3 = m2;
6934                         if (m3 == csrc) continue;
6935                         if (m3->mc_pg[csrc->mc_top] == mp && m3->mc_ki[csrc->mc_top] ==
6936                                 csrc->mc_ki[csrc->mc_top]) {
6937                                 m3->mc_pg[csrc->mc_top] = cdst->mc_pg[cdst->mc_top];
6938                                 m3->mc_ki[csrc->mc_top] = cdst->mc_ki[cdst->mc_top];
6939                         }
6940                 }
6941         }
6942
6943         /* Update the parent separators.
6944          */
6945         if (csrc->mc_ki[csrc->mc_top] == 0) {
6946                 if (csrc->mc_ki[csrc->mc_top-1] != 0) {
6947                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
6948                                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], 0, key.mv_size);
6949                         } else {
6950                                 srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);
6951                                 key.mv_size = NODEKSZ(srcnode);
6952                                 key.mv_data = NODEKEY(srcnode);
6953                         }
6954                         DPRINTF(("update separator for source page %"Z"u to [%s]",
6955                                 csrc->mc_pg[csrc->mc_top]->mp_pgno, DKEY(&key)));
6956                         mdb_cursor_copy(csrc, &mn);
6957                         mn.mc_snum--;
6958                         mn.mc_top--;
6959                         if ((rc = mdb_update_key(&mn, &key)) != MDB_SUCCESS)
6960                                 return rc;
6961                 }
6962                 if (IS_BRANCH(csrc->mc_pg[csrc->mc_top])) {
6963                         MDB_val  nullkey;
6964                         indx_t  ix = csrc->mc_ki[csrc->mc_top];
6965                         nullkey.mv_size = 0;
6966                         csrc->mc_ki[csrc->mc_top] = 0;
6967                         rc = mdb_update_key(csrc, &nullkey);
6968                         csrc->mc_ki[csrc->mc_top] = ix;
6969                         assert(rc == MDB_SUCCESS);
6970                 }
6971         }
6972
6973         if (cdst->mc_ki[cdst->mc_top] == 0) {
6974                 if (cdst->mc_ki[cdst->mc_top-1] != 0) {
6975                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
6976                                 key.mv_data = LEAF2KEY(cdst->mc_pg[cdst->mc_top], 0, key.mv_size);
6977                         } else {
6978                                 srcnode = NODEPTR(cdst->mc_pg[cdst->mc_top], 0);
6979                                 key.mv_size = NODEKSZ(srcnode);
6980                                 key.mv_data = NODEKEY(srcnode);
6981                         }
6982                         DPRINTF(("update separator for destination page %"Z"u to [%s]",
6983                                 cdst->mc_pg[cdst->mc_top]->mp_pgno, DKEY(&key)));
6984                         mdb_cursor_copy(cdst, &mn);
6985                         mn.mc_snum--;
6986                         mn.mc_top--;
6987                         if ((rc = mdb_update_key(&mn, &key)) != MDB_SUCCESS)
6988                                 return rc;
6989                 }
6990                 if (IS_BRANCH(cdst->mc_pg[cdst->mc_top])) {
6991                         MDB_val  nullkey;
6992                         indx_t  ix = cdst->mc_ki[cdst->mc_top];
6993                         nullkey.mv_size = 0;
6994                         cdst->mc_ki[cdst->mc_top] = 0;
6995                         rc = mdb_update_key(cdst, &nullkey);
6996                         cdst->mc_ki[cdst->mc_top] = ix;
6997                         assert(rc == MDB_SUCCESS);
6998                 }
6999         }
7000
7001         return MDB_SUCCESS;
7002 }
7003
7004 /** Merge one page into another.
7005  *  The nodes from the page pointed to by \b csrc will
7006  *      be copied to the page pointed to by \b cdst and then
7007  *      the \b csrc page will be freed.
7008  * @param[in] csrc Cursor pointing to the source page.
7009  * @param[in] cdst Cursor pointing to the destination page.
7010  */
7011 static int
7012 mdb_page_merge(MDB_cursor *csrc, MDB_cursor *cdst)
7013 {
7014         int                      rc;
7015         indx_t                   i, j;
7016         MDB_node                *srcnode;
7017         MDB_val          key, data;
7018         unsigned        nkeys;
7019
7020         DPRINTF(("merging page %"Z"u into %"Z"u", csrc->mc_pg[csrc->mc_top]->mp_pgno,
7021                 cdst->mc_pg[cdst->mc_top]->mp_pgno));
7022
7023         assert(csrc->mc_snum > 1);      /* can't merge root page */
7024         assert(cdst->mc_snum > 1);
7025
7026         /* Mark dst as dirty. */
7027         if ((rc = mdb_page_touch(cdst)))
7028                 return rc;
7029
7030         /* Move all nodes from src to dst.
7031          */
7032         j = nkeys = NUMKEYS(cdst->mc_pg[cdst->mc_top]);
7033         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
7034                 key.mv_size = csrc->mc_db->md_pad;
7035                 key.mv_data = METADATA(csrc->mc_pg[csrc->mc_top]);
7036                 for (i = 0; i < NUMKEYS(csrc->mc_pg[csrc->mc_top]); i++, j++) {
7037                         rc = mdb_node_add(cdst, j, &key, NULL, 0, 0);
7038                         if (rc != MDB_SUCCESS)
7039                                 return rc;
7040                         key.mv_data = (char *)key.mv_data + key.mv_size;
7041                 }
7042         } else {
7043                 for (i = 0; i < NUMKEYS(csrc->mc_pg[csrc->mc_top]); i++, j++) {
7044                         srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], i);
7045                         if (i == 0 && IS_BRANCH(csrc->mc_pg[csrc->mc_top])) {
7046                                 unsigned int snum = csrc->mc_snum;
7047                                 MDB_node *s2;
7048                                 /* must find the lowest key below src */
7049                                 mdb_page_search_lowest(csrc);
7050                                 if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
7051                                         key.mv_size = csrc->mc_db->md_pad;
7052                                         key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], 0, key.mv_size);
7053                                 } else {
7054                                         s2 = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);
7055                                         key.mv_size = NODEKSZ(s2);
7056                                         key.mv_data = NODEKEY(s2);
7057                                 }
7058                                 csrc->mc_snum = snum--;
7059                                 csrc->mc_top = snum;
7060                         } else {
7061                                 key.mv_size = srcnode->mn_ksize;
7062                                 key.mv_data = NODEKEY(srcnode);
7063                         }
7064
7065                         data.mv_size = NODEDSZ(srcnode);
7066                         data.mv_data = NODEDATA(srcnode);
7067                         rc = mdb_node_add(cdst, j, &key, &data, NODEPGNO(srcnode), srcnode->mn_flags);
7068                         if (rc != MDB_SUCCESS)
7069                                 return rc;
7070                 }
7071         }
7072
7073         DPRINTF(("dst page %"Z"u now has %u keys (%.1f%% filled)",
7074             cdst->mc_pg[cdst->mc_top]->mp_pgno, NUMKEYS(cdst->mc_pg[cdst->mc_top]),
7075                 (float)PAGEFILL(cdst->mc_txn->mt_env, cdst->mc_pg[cdst->mc_top]) / 10));
7076
7077         /* Unlink the src page from parent and add to free list.
7078          */
7079         mdb_node_del(csrc->mc_pg[csrc->mc_top-1], csrc->mc_ki[csrc->mc_top-1], 0);
7080         if (csrc->mc_ki[csrc->mc_top-1] == 0) {
7081                 key.mv_size = 0;
7082                 csrc->mc_top--;
7083                 rc = mdb_update_key(csrc, &key);
7084                 csrc->mc_top++;
7085                 if (rc)
7086                         return rc;
7087         }
7088
7089         rc = mdb_midl_append(&csrc->mc_txn->mt_free_pgs,
7090                 csrc->mc_pg[csrc->mc_top]->mp_pgno);
7091         if (rc)
7092                 return rc;
7093         if (IS_LEAF(csrc->mc_pg[csrc->mc_top]))
7094                 csrc->mc_db->md_leaf_pages--;
7095         else
7096                 csrc->mc_db->md_branch_pages--;
7097         {
7098                 /* Adjust other cursors pointing to mp */
7099                 MDB_cursor *m2, *m3;
7100                 MDB_dbi dbi = csrc->mc_dbi;
7101                 MDB_page *mp = cdst->mc_pg[cdst->mc_top];
7102
7103                 for (m2 = csrc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
7104                         if (csrc->mc_flags & C_SUB)
7105                                 m3 = &m2->mc_xcursor->mx_cursor;
7106                         else
7107                                 m3 = m2;
7108                         if (m3 == csrc) continue;
7109                         if (m3->mc_snum < csrc->mc_snum) continue;
7110                         if (m3->mc_pg[csrc->mc_top] == csrc->mc_pg[csrc->mc_top]) {
7111                                 m3->mc_pg[csrc->mc_top] = mp;
7112                                 m3->mc_ki[csrc->mc_top] += nkeys;
7113                         }
7114                 }
7115         }
7116         mdb_cursor_pop(csrc);
7117
7118         return mdb_rebalance(csrc);
7119 }
7120
7121 /** Copy the contents of a cursor.
7122  * @param[in] csrc The cursor to copy from.
7123  * @param[out] cdst The cursor to copy to.
7124  */
7125 static void
7126 mdb_cursor_copy(const MDB_cursor *csrc, MDB_cursor *cdst)
7127 {
7128         unsigned int i;
7129
7130         cdst->mc_txn = csrc->mc_txn;
7131         cdst->mc_dbi = csrc->mc_dbi;
7132         cdst->mc_db  = csrc->mc_db;
7133         cdst->mc_dbx = csrc->mc_dbx;
7134         cdst->mc_snum = csrc->mc_snum;
7135         cdst->mc_top = csrc->mc_top;
7136         cdst->mc_flags = csrc->mc_flags;
7137
7138         for (i=0; i<csrc->mc_snum; i++) {
7139                 cdst->mc_pg[i] = csrc->mc_pg[i];
7140                 cdst->mc_ki[i] = csrc->mc_ki[i];
7141         }
7142 }
7143
7144 /** Rebalance the tree after a delete operation.
7145  * @param[in] mc Cursor pointing to the page where rebalancing
7146  * should begin.
7147  * @return 0 on success, non-zero on failure.
7148  */
7149 static int
7150 mdb_rebalance(MDB_cursor *mc)
7151 {
7152         MDB_node        *node;
7153         int rc;
7154         unsigned int ptop, minkeys;
7155         MDB_cursor      mn;
7156
7157         minkeys = 1 + (IS_BRANCH(mc->mc_pg[mc->mc_top]));
7158 #if MDB_DEBUG
7159         {
7160         pgno_t pgno;
7161         COPY_PGNO(pgno, mc->mc_pg[mc->mc_top]->mp_pgno);
7162         DPRINTF(("rebalancing %s page %"Z"u (has %u keys, %.1f%% full)",
7163             IS_LEAF(mc->mc_pg[mc->mc_top]) ? "leaf" : "branch",
7164             pgno, NUMKEYS(mc->mc_pg[mc->mc_top]),
7165                 (float)PAGEFILL(mc->mc_txn->mt_env, mc->mc_pg[mc->mc_top]) / 10));
7166         }
7167 #endif
7168
7169         if (PAGEFILL(mc->mc_txn->mt_env, mc->mc_pg[mc->mc_top]) >= FILL_THRESHOLD &&
7170                 NUMKEYS(mc->mc_pg[mc->mc_top]) >= minkeys) {
7171 #if MDB_DEBUG
7172                 pgno_t pgno;
7173                 COPY_PGNO(pgno, mc->mc_pg[mc->mc_top]->mp_pgno);
7174                 DPRINTF(("no need to rebalance page %"Z"u, above fill threshold",
7175                     pgno));
7176 #endif
7177                 return MDB_SUCCESS;
7178         }
7179
7180         if (mc->mc_snum < 2) {
7181                 MDB_page *mp = mc->mc_pg[0];
7182                 if (IS_SUBP(mp)) {
7183                         DPUTS("Can't rebalance a subpage, ignoring");
7184                         return MDB_SUCCESS;
7185                 }
7186                 if (NUMKEYS(mp) == 0) {
7187                         DPUTS("tree is completely empty");
7188                         mc->mc_db->md_root = P_INVALID;
7189                         mc->mc_db->md_depth = 0;
7190                         mc->mc_db->md_leaf_pages = 0;
7191                         rc = mdb_midl_append(&mc->mc_txn->mt_free_pgs, mp->mp_pgno);
7192                         if (rc)
7193                                 return rc;
7194                         /* Adjust cursors pointing to mp */
7195                         mc->mc_snum = 0;
7196                         mc->mc_top = 0;
7197                         mc->mc_flags &= ~C_INITIALIZED;
7198                         {
7199                                 MDB_cursor *m2, *m3;
7200                                 MDB_dbi dbi = mc->mc_dbi;
7201
7202                                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
7203                                         if (mc->mc_flags & C_SUB)
7204                                                 m3 = &m2->mc_xcursor->mx_cursor;
7205                                         else
7206                                                 m3 = m2;
7207                                         if (m3->mc_snum < mc->mc_snum) continue;
7208                                         if (m3->mc_pg[0] == mp) {
7209                                                 m3->mc_snum = 0;
7210                                                 m3->mc_top = 0;
7211                                                 m3->mc_flags &= ~C_INITIALIZED;
7212                                         }
7213                                 }
7214                         }
7215                 } else if (IS_BRANCH(mp) && NUMKEYS(mp) == 1) {
7216                         DPUTS("collapsing root page!");
7217                         rc = mdb_midl_append(&mc->mc_txn->mt_free_pgs, mp->mp_pgno);
7218                         if (rc)
7219                                 return rc;
7220                         mc->mc_db->md_root = NODEPGNO(NODEPTR(mp, 0));
7221                         rc = mdb_page_get(mc->mc_txn,mc->mc_db->md_root,&mc->mc_pg[0],NULL);
7222                         if (rc)
7223                                 return rc;
7224                         mc->mc_db->md_depth--;
7225                         mc->mc_db->md_branch_pages--;
7226                         mc->mc_ki[0] = mc->mc_ki[1];
7227                         {
7228                                 /* Adjust other cursors pointing to mp */
7229                                 MDB_cursor *m2, *m3;
7230                                 MDB_dbi dbi = mc->mc_dbi;
7231
7232                                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
7233                                         if (mc->mc_flags & C_SUB)
7234                                                 m3 = &m2->mc_xcursor->mx_cursor;
7235                                         else
7236                                                 m3 = m2;
7237                                         if (m3 == mc || m3->mc_snum < mc->mc_snum) continue;
7238                                         if (m3->mc_pg[0] == mp) {
7239                                                 int i;
7240                                                 m3->mc_snum--;
7241                                                 m3->mc_top--;
7242                                                 for (i=0; i<m3->mc_snum; i++) {
7243                                                         m3->mc_pg[i] = m3->mc_pg[i+1];
7244                                                         m3->mc_ki[i] = m3->mc_ki[i+1];
7245                                                 }
7246                                         }
7247                                 }
7248                         }
7249                 } else
7250                         DPUTS("root page doesn't need rebalancing");
7251                 return MDB_SUCCESS;
7252         }
7253
7254         /* The parent (branch page) must have at least 2 pointers,
7255          * otherwise the tree is invalid.
7256          */
7257         ptop = mc->mc_top-1;
7258         assert(NUMKEYS(mc->mc_pg[ptop]) > 1);
7259
7260         /* Leaf page fill factor is below the threshold.
7261          * Try to move keys from left or right neighbor, or
7262          * merge with a neighbor page.
7263          */
7264
7265         /* Find neighbors.
7266          */
7267         mdb_cursor_copy(mc, &mn);
7268         mn.mc_xcursor = NULL;
7269
7270         if (mc->mc_ki[ptop] == 0) {
7271                 /* We're the leftmost leaf in our parent.
7272                  */
7273                 DPUTS("reading right neighbor");
7274                 mn.mc_ki[ptop]++;
7275                 node = NODEPTR(mc->mc_pg[ptop], mn.mc_ki[ptop]);
7276                 rc = mdb_page_get(mc->mc_txn,NODEPGNO(node),&mn.mc_pg[mn.mc_top],NULL);
7277                 if (rc)
7278                         return rc;
7279                 mn.mc_ki[mn.mc_top] = 0;
7280                 mc->mc_ki[mc->mc_top] = NUMKEYS(mc->mc_pg[mc->mc_top]);
7281         } else {
7282                 /* There is at least one neighbor to the left.
7283                  */
7284                 DPUTS("reading left neighbor");
7285                 mn.mc_ki[ptop]--;
7286                 node = NODEPTR(mc->mc_pg[ptop], mn.mc_ki[ptop]);
7287                 rc = mdb_page_get(mc->mc_txn,NODEPGNO(node),&mn.mc_pg[mn.mc_top],NULL);
7288                 if (rc)
7289                         return rc;
7290                 mn.mc_ki[mn.mc_top] = NUMKEYS(mn.mc_pg[mn.mc_top]) - 1;
7291                 mc->mc_ki[mc->mc_top] = 0;
7292         }
7293
7294         DPRINTF(("found neighbor page %"Z"u (%u keys, %.1f%% full)",
7295             mn.mc_pg[mn.mc_top]->mp_pgno, NUMKEYS(mn.mc_pg[mn.mc_top]),
7296                 (float)PAGEFILL(mc->mc_txn->mt_env, mn.mc_pg[mn.mc_top]) / 10));
7297
7298         /* If the neighbor page is above threshold and has enough keys,
7299          * move one key from it. Otherwise we should try to merge them.
7300          * (A branch page must never have less than 2 keys.)
7301          */
7302         minkeys = 1 + (IS_BRANCH(mn.mc_pg[mn.mc_top]));
7303         if (PAGEFILL(mc->mc_txn->mt_env, mn.mc_pg[mn.mc_top]) >= FILL_THRESHOLD && NUMKEYS(mn.mc_pg[mn.mc_top]) > minkeys)
7304                 return mdb_node_move(&mn, mc);
7305         else {
7306                 if (mc->mc_ki[ptop] == 0)
7307                         rc = mdb_page_merge(&mn, mc);
7308                 else {
7309                         mn.mc_ki[mn.mc_top] += mc->mc_ki[mn.mc_top] + 1;
7310                         rc = mdb_page_merge(mc, &mn);
7311                         mdb_cursor_copy(&mn, mc);
7312                 }
7313                 mc->mc_flags &= ~(C_INITIALIZED|C_EOF);
7314         }
7315         return rc;
7316 }
7317
7318 /** Complete a delete operation started by #mdb_cursor_del(). */
7319 static int
7320 mdb_cursor_del0(MDB_cursor *mc, MDB_node *leaf)
7321 {
7322         int rc;
7323         MDB_page *mp;
7324         indx_t ki;
7325         unsigned int nkeys;
7326
7327         mp = mc->mc_pg[mc->mc_top];
7328         ki = mc->mc_ki[mc->mc_top];
7329
7330         /* add overflow pages to free list */
7331         if (!IS_LEAF2(mp) && F_ISSET(leaf->mn_flags, F_BIGDATA)) {
7332                 MDB_page *omp;
7333                 pgno_t pg;
7334
7335                 memcpy(&pg, NODEDATA(leaf), sizeof(pg));
7336                 if ((rc = mdb_page_get(mc->mc_txn, pg, &omp, NULL)) ||
7337                         (rc = mdb_ovpage_free(mc, omp)))
7338                         return rc;
7339         }
7340         mdb_node_del(mp, ki, mc->mc_db->md_pad);
7341         mc->mc_db->md_entries--;
7342         rc = mdb_rebalance(mc);
7343         if (rc != MDB_SUCCESS)
7344                 mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
7345         else {
7346                 MDB_cursor *m2;
7347                 MDB_dbi dbi = mc->mc_dbi;
7348
7349                 mp = mc->mc_pg[mc->mc_top];
7350                 nkeys = NUMKEYS(mp);
7351
7352                 /* if mc points past last node in page, find next sibling */
7353                 if (mc->mc_ki[mc->mc_top] >= nkeys)
7354                         mdb_cursor_sibling(mc, 1);
7355
7356                 /* Adjust other cursors pointing to mp */
7357                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
7358                         if (m2 == mc || m2->mc_snum < mc->mc_snum)
7359                                 continue;
7360                         if (!(m2->mc_flags & C_INITIALIZED))
7361                                 continue;
7362                         if (m2->mc_pg[mc->mc_top] == mp) {
7363                                 if (m2->mc_ki[mc->mc_top] >= ki) {
7364                                         m2->mc_flags |= C_DEL;
7365                                         if (m2->mc_ki[mc->mc_top] > ki)
7366                                                 m2->mc_ki[mc->mc_top]--;
7367                                 }
7368                                 if (m2->mc_ki[mc->mc_top] >= nkeys)
7369                                         mdb_cursor_sibling(m2, 1);
7370                         }
7371                 }
7372                 mc->mc_flags |= C_DEL;
7373         }
7374
7375         return rc;
7376 }
7377
7378 int
7379 mdb_del(MDB_txn *txn, MDB_dbi dbi,
7380     MDB_val *key, MDB_val *data)
7381 {
7382         MDB_cursor mc;
7383         MDB_xcursor mx;
7384         MDB_cursor_op op;
7385         MDB_val rdata, *xdata;
7386         int              rc, exact;
7387         DKBUF;
7388
7389         assert(key != NULL);
7390
7391         DPRINTF(("====> delete db %u key [%s]", dbi, DKEY(key)));
7392
7393         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
7394                 return EINVAL;
7395
7396         if (txn->mt_flags & (MDB_TXN_RDONLY|MDB_TXN_ERROR))
7397                 return (txn->mt_flags & MDB_TXN_RDONLY) ? EACCES : MDB_BAD_TXN;
7398
7399         if (key->mv_size > MDB_MAXKEYSIZE) {
7400                 return MDB_BAD_VALSIZE;
7401         }
7402
7403         mdb_cursor_init(&mc, txn, dbi, &mx);
7404
7405         exact = 0;
7406         if (!F_ISSET(txn->mt_dbs[dbi].md_flags, MDB_DUPSORT)) {
7407                 /* must ignore any data */
7408                 data = NULL;
7409         }
7410         if (data) {
7411                 op = MDB_GET_BOTH;
7412                 rdata = *data;
7413                 xdata = &rdata;
7414         } else {
7415                 op = MDB_SET;
7416                 xdata = NULL;
7417         }
7418         rc = mdb_cursor_set(&mc, key, xdata, op, &exact);
7419         if (rc == 0) {
7420                 /* let mdb_page_split know about this cursor if needed:
7421                  * delete will trigger a rebalance; if it needs to move
7422                  * a node from one page to another, it will have to
7423                  * update the parent's separator key(s). If the new sepkey
7424                  * is larger than the current one, the parent page may
7425                  * run out of space, triggering a split. We need this
7426                  * cursor to be consistent until the end of the rebalance.
7427                  */
7428                 mc.mc_flags |= C_UNTRACK;
7429                 mc.mc_next = txn->mt_cursors[dbi];
7430                 txn->mt_cursors[dbi] = &mc;
7431                 rc = mdb_cursor_del(&mc, data ? 0 : MDB_NODUPDATA);
7432                 txn->mt_cursors[dbi] = mc.mc_next;
7433         }
7434         return rc;
7435 }
7436
7437 /** Split a page and insert a new node.
7438  * @param[in,out] mc Cursor pointing to the page and desired insertion index.
7439  * The cursor will be updated to point to the actual page and index where
7440  * the node got inserted after the split.
7441  * @param[in] newkey The key for the newly inserted node.
7442  * @param[in] newdata The data for the newly inserted node.
7443  * @param[in] newpgno The page number, if the new node is a branch node.
7444  * @param[in] nflags The #NODE_ADD_FLAGS for the new node.
7445  * @return 0 on success, non-zero on failure.
7446  */
7447 static int
7448 mdb_page_split(MDB_cursor *mc, MDB_val *newkey, MDB_val *newdata, pgno_t newpgno,
7449         unsigned int nflags)
7450 {
7451         unsigned int flags;
7452         int              rc = MDB_SUCCESS, new_root = 0, did_split = 0;
7453         indx_t           newindx;
7454         pgno_t           pgno = 0;
7455         int      i, j, split_indx, nkeys, pmax;
7456         MDB_env         *env = mc->mc_txn->mt_env;
7457         MDB_node        *node;
7458         MDB_val  sepkey, rkey, xdata, *rdata = &xdata;
7459         MDB_page        *copy = NULL;
7460         MDB_page        *mp, *rp, *pp;
7461         int ptop;
7462         MDB_cursor      mn;
7463         DKBUF;
7464
7465         mp = mc->mc_pg[mc->mc_top];
7466         newindx = mc->mc_ki[mc->mc_top];
7467         nkeys = NUMKEYS(mp);
7468
7469         DPRINTF(("-----> splitting %s page %"Z"u and adding [%s] at index %i/%i",
7470             IS_LEAF(mp) ? "leaf" : "branch", mp->mp_pgno,
7471             DKEY(newkey), mc->mc_ki[mc->mc_top], nkeys));
7472
7473         /* Create a right sibling. */
7474         if ((rc = mdb_page_new(mc, mp->mp_flags, 1, &rp)))
7475                 return rc;
7476         DPRINTF(("new right sibling: page %"Z"u", rp->mp_pgno));
7477
7478         if (mc->mc_snum < 2) {
7479                 if ((rc = mdb_page_new(mc, P_BRANCH, 1, &pp)))
7480                         return rc;
7481                 /* shift current top to make room for new parent */
7482                 mc->mc_pg[1] = mc->mc_pg[0];
7483                 mc->mc_ki[1] = mc->mc_ki[0];
7484                 mc->mc_pg[0] = pp;
7485                 mc->mc_ki[0] = 0;
7486                 mc->mc_db->md_root = pp->mp_pgno;
7487                 DPRINTF(("root split! new root = %"Z"u", pp->mp_pgno));
7488                 mc->mc_db->md_depth++;
7489                 new_root = 1;
7490
7491                 /* Add left (implicit) pointer. */
7492                 if ((rc = mdb_node_add(mc, 0, NULL, NULL, mp->mp_pgno, 0)) != MDB_SUCCESS) {
7493                         /* undo the pre-push */
7494                         mc->mc_pg[0] = mc->mc_pg[1];
7495                         mc->mc_ki[0] = mc->mc_ki[1];
7496                         mc->mc_db->md_root = mp->mp_pgno;
7497                         mc->mc_db->md_depth--;
7498                         return rc;
7499                 }
7500                 mc->mc_snum = 2;
7501                 mc->mc_top = 1;
7502                 ptop = 0;
7503         } else {
7504                 ptop = mc->mc_top-1;
7505                 DPRINTF(("parent branch page is %"Z"u", mc->mc_pg[ptop]->mp_pgno));
7506         }
7507
7508         mc->mc_flags |= C_SPLITTING;
7509         mdb_cursor_copy(mc, &mn);
7510         mn.mc_pg[mn.mc_top] = rp;
7511         mn.mc_ki[ptop] = mc->mc_ki[ptop]+1;
7512
7513         if (nflags & MDB_APPEND) {
7514                 mn.mc_ki[mn.mc_top] = 0;
7515                 sepkey = *newkey;
7516                 split_indx = newindx;
7517                 nkeys = 0;
7518         } else {
7519
7520                 split_indx = (nkeys+1) / 2;
7521
7522                 if (IS_LEAF2(rp)) {
7523                         char *split, *ins;
7524                         int x;
7525                         unsigned int lsize, rsize, ksize;
7526                         /* Move half of the keys to the right sibling */
7527                         copy = NULL;
7528                         x = mc->mc_ki[mc->mc_top] - split_indx;
7529                         ksize = mc->mc_db->md_pad;
7530                         split = LEAF2KEY(mp, split_indx, ksize);
7531                         rsize = (nkeys - split_indx) * ksize;
7532                         lsize = (nkeys - split_indx) * sizeof(indx_t);
7533                         mp->mp_lower -= lsize;
7534                         rp->mp_lower += lsize;
7535                         mp->mp_upper += rsize - lsize;
7536                         rp->mp_upper -= rsize - lsize;
7537                         sepkey.mv_size = ksize;
7538                         if (newindx == split_indx) {
7539                                 sepkey.mv_data = newkey->mv_data;
7540                         } else {
7541                                 sepkey.mv_data = split;
7542                         }
7543                         if (x<0) {
7544                                 ins = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], ksize);
7545                                 memcpy(rp->mp_ptrs, split, rsize);
7546                                 sepkey.mv_data = rp->mp_ptrs;
7547                                 memmove(ins+ksize, ins, (split_indx - mc->mc_ki[mc->mc_top]) * ksize);
7548                                 memcpy(ins, newkey->mv_data, ksize);
7549                                 mp->mp_lower += sizeof(indx_t);
7550                                 mp->mp_upper -= ksize - sizeof(indx_t);
7551                         } else {
7552                                 if (x)
7553                                         memcpy(rp->mp_ptrs, split, x * ksize);
7554                                 ins = LEAF2KEY(rp, x, ksize);
7555                                 memcpy(ins, newkey->mv_data, ksize);
7556                                 memcpy(ins+ksize, split + x * ksize, rsize - x * ksize);
7557                                 rp->mp_lower += sizeof(indx_t);
7558                                 rp->mp_upper -= ksize - sizeof(indx_t);
7559                                 mc->mc_ki[mc->mc_top] = x;
7560                                 mc->mc_pg[mc->mc_top] = rp;
7561                         }
7562                 } else {
7563                         int psize, nsize, k;
7564                         /* Maximum free space in an empty page */
7565                         pmax = env->me_psize - PAGEHDRSZ;
7566                         if (IS_LEAF(mp))
7567                                 nsize = mdb_leaf_size(env, newkey, newdata);
7568                         else
7569                                 nsize = mdb_branch_size(env, newkey);
7570                         nsize += nsize & 1;
7571
7572                         /* grab a page to hold a temporary copy */
7573                         copy = mdb_page_malloc(mc->mc_txn, 1);
7574                         if (copy == NULL)
7575                                 return ENOMEM;
7576                         copy->mp_pgno  = mp->mp_pgno;
7577                         copy->mp_flags = mp->mp_flags;
7578                         copy->mp_lower = PAGEHDRSZ;
7579                         copy->mp_upper = env->me_psize;
7580
7581                         /* prepare to insert */
7582                         for (i=0, j=0; i<nkeys; i++) {
7583                                 if (i == newindx) {
7584                                         copy->mp_ptrs[j++] = 0;
7585                                 }
7586                                 copy->mp_ptrs[j++] = mp->mp_ptrs[i];
7587                         }
7588
7589                         /* When items are relatively large the split point needs
7590                          * to be checked, because being off-by-one will make the
7591                          * difference between success or failure in mdb_node_add.
7592                          *
7593                          * It's also relevant if a page happens to be laid out
7594                          * such that one half of its nodes are all "small" and
7595                          * the other half of its nodes are "large." If the new
7596                          * item is also "large" and falls on the half with
7597                          * "large" nodes, it also may not fit.
7598                          *
7599                          * As a final tweak, if the new item goes on the last
7600                          * spot on the page (and thus, onto the new page), bias
7601                          * the split so the new page is emptier than the old page.
7602                          * This yields better packing during sequential inserts.
7603                          */
7604                         if (nkeys < 20 || nsize > pmax/16 || newindx >= nkeys) {
7605                                 /* Find split point */
7606                                 psize = 0;
7607                                 if (newindx <= split_indx || newindx >= nkeys) {
7608                                         i = 0; j = 1;
7609                                         k = newindx >= nkeys ? nkeys : split_indx+2;
7610                                 } else {
7611                                         i = nkeys; j = -1;
7612                                         k = split_indx-1;
7613                                 }
7614                                 for (; i!=k; i+=j) {
7615                                         if (i == newindx) {
7616                                                 psize += nsize;
7617                                                 node = NULL;
7618                                         } else {
7619                                                 node = (MDB_node *)((char *)mp + copy->mp_ptrs[i]);
7620                                                 psize += NODESIZE + NODEKSZ(node) + sizeof(indx_t);
7621                                                 if (IS_LEAF(mp)) {
7622                                                         if (F_ISSET(node->mn_flags, F_BIGDATA))
7623                                                                 psize += sizeof(pgno_t);
7624                                                         else
7625                                                                 psize += NODEDSZ(node);
7626                                                 }
7627                                                 psize += psize & 1;
7628                                         }
7629                                         if (psize > pmax || i == k-j) {
7630                                                 split_indx = i + (j<0);
7631                                                 break;
7632                                         }
7633                                 }
7634                         }
7635                         if (split_indx == newindx) {
7636                                 sepkey.mv_size = newkey->mv_size;
7637                                 sepkey.mv_data = newkey->mv_data;
7638                         } else {
7639                                 node = (MDB_node *)((char *)mp + copy->mp_ptrs[split_indx]);
7640                                 sepkey.mv_size = node->mn_ksize;
7641                                 sepkey.mv_data = NODEKEY(node);
7642                         }
7643                 }
7644         }
7645
7646         DPRINTF(("separator is %d [%s]", split_indx, DKEY(&sepkey)));
7647
7648         /* Copy separator key to the parent.
7649          */
7650         if (SIZELEFT(mn.mc_pg[ptop]) < mdb_branch_size(env, &sepkey)) {
7651                 mn.mc_snum--;
7652                 mn.mc_top--;
7653                 did_split = 1;
7654                 rc = mdb_page_split(&mn, &sepkey, NULL, rp->mp_pgno, 0);
7655
7656                 /* root split? */
7657                 if (mn.mc_snum == mc->mc_snum) {
7658                         mc->mc_pg[mc->mc_snum] = mc->mc_pg[mc->mc_top];
7659                         mc->mc_ki[mc->mc_snum] = mc->mc_ki[mc->mc_top];
7660                         mc->mc_pg[mc->mc_top] = mc->mc_pg[ptop];
7661                         mc->mc_ki[mc->mc_top] = mc->mc_ki[ptop];
7662                         mc->mc_snum++;
7663                         mc->mc_top++;
7664                         ptop++;
7665                 }
7666                 /* Right page might now have changed parent.
7667                  * Check if left page also changed parent.
7668                  */
7669                 if (mn.mc_pg[ptop] != mc->mc_pg[ptop] &&
7670                     mc->mc_ki[ptop] >= NUMKEYS(mc->mc_pg[ptop])) {
7671                         for (i=0; i<ptop; i++) {
7672                                 mc->mc_pg[i] = mn.mc_pg[i];
7673                                 mc->mc_ki[i] = mn.mc_ki[i];
7674                         }
7675                         mc->mc_pg[ptop] = mn.mc_pg[ptop];
7676                         mc->mc_ki[ptop] = mn.mc_ki[ptop] - 1;
7677                 }
7678         } else {
7679                 mn.mc_top--;
7680                 rc = mdb_node_add(&mn, mn.mc_ki[ptop], &sepkey, NULL, rp->mp_pgno, 0);
7681                 mn.mc_top++;
7682         }
7683         mc->mc_flags ^= C_SPLITTING;
7684         if (rc != MDB_SUCCESS) {
7685                 return rc;
7686         }
7687         if (nflags & MDB_APPEND) {
7688                 mc->mc_pg[mc->mc_top] = rp;
7689                 mc->mc_ki[mc->mc_top] = 0;
7690                 rc = mdb_node_add(mc, 0, newkey, newdata, newpgno, nflags);
7691                 if (rc)
7692                         return rc;
7693                 for (i=0; i<mc->mc_top; i++)
7694                         mc->mc_ki[i] = mn.mc_ki[i];
7695         } else if (!IS_LEAF2(mp)) {
7696                 /* Move nodes */
7697                 mc->mc_pg[mc->mc_top] = rp;
7698                 i = split_indx;
7699                 j = 0;
7700                 do {
7701                         if (i == newindx) {
7702                                 rkey.mv_data = newkey->mv_data;
7703                                 rkey.mv_size = newkey->mv_size;
7704                                 if (IS_LEAF(mp)) {
7705                                         rdata = newdata;
7706                                 } else
7707                                         pgno = newpgno;
7708                                 flags = nflags;
7709                                 /* Update index for the new key. */
7710                                 mc->mc_ki[mc->mc_top] = j;
7711                         } else {
7712                                 node = (MDB_node *)((char *)mp + copy->mp_ptrs[i]);
7713                                 rkey.mv_data = NODEKEY(node);
7714                                 rkey.mv_size = node->mn_ksize;
7715                                 if (IS_LEAF(mp)) {
7716                                         xdata.mv_data = NODEDATA(node);
7717                                         xdata.mv_size = NODEDSZ(node);
7718                                         rdata = &xdata;
7719                                 } else
7720                                         pgno = NODEPGNO(node);
7721                                 flags = node->mn_flags;
7722                         }
7723
7724                         if (!IS_LEAF(mp) && j == 0) {
7725                                 /* First branch index doesn't need key data. */
7726                                 rkey.mv_size = 0;
7727                         }
7728
7729                         rc = mdb_node_add(mc, j, &rkey, rdata, pgno, flags);
7730                         if (rc) {
7731                                 /* return tmp page to freelist */
7732                                 mdb_page_free(env, copy);
7733                                 return rc;
7734                         }
7735                         if (i == nkeys) {
7736                                 i = 0;
7737                                 j = 0;
7738                                 mc->mc_pg[mc->mc_top] = copy;
7739                         } else {
7740                                 i++;
7741                                 j++;
7742                         }
7743                 } while (i != split_indx);
7744
7745                 nkeys = NUMKEYS(copy);
7746                 for (i=0; i<nkeys; i++)
7747                         mp->mp_ptrs[i] = copy->mp_ptrs[i];
7748                 mp->mp_lower = copy->mp_lower;
7749                 mp->mp_upper = copy->mp_upper;
7750                 memcpy(NODEPTR(mp, nkeys-1), NODEPTR(copy, nkeys-1),
7751                         env->me_psize - copy->mp_upper);
7752
7753                 /* reset back to original page */
7754                 if (newindx < split_indx) {
7755                         mc->mc_pg[mc->mc_top] = mp;
7756                         if (nflags & MDB_RESERVE) {
7757                                 node = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
7758                                 if (!(node->mn_flags & F_BIGDATA))
7759                                         newdata->mv_data = NODEDATA(node);
7760                         }
7761                 } else {
7762                         mc->mc_pg[mc->mc_top] = rp;
7763                         mc->mc_ki[ptop]++;
7764                         /* Make sure mc_ki is still valid.
7765                          */
7766                         if (mn.mc_pg[ptop] != mc->mc_pg[ptop] &&
7767                                 mc->mc_ki[ptop] >= NUMKEYS(mc->mc_pg[ptop])) {
7768                                 for (i=0; i<ptop; i++) {
7769                                         mc->mc_pg[i] = mn.mc_pg[i];
7770                                         mc->mc_ki[i] = mn.mc_ki[i];
7771                                 }
7772                                 mc->mc_pg[ptop] = mn.mc_pg[ptop];
7773                                 mc->mc_ki[ptop] = mn.mc_ki[ptop] - 1;
7774                         }
7775                 }
7776                 /* return tmp page to freelist */
7777                 mdb_page_free(env, copy);
7778         }
7779
7780         {
7781                 /* Adjust other cursors pointing to mp */
7782                 MDB_cursor *m2, *m3;
7783                 MDB_dbi dbi = mc->mc_dbi;
7784                 int fixup = NUMKEYS(mp);
7785
7786                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
7787                         if (mc->mc_flags & C_SUB)
7788                                 m3 = &m2->mc_xcursor->mx_cursor;
7789                         else
7790                                 m3 = m2;
7791                         if (m3 == mc)
7792                                 continue;
7793                         if (!(m2->mc_flags & m3->mc_flags & C_INITIALIZED))
7794                                 continue;
7795                         if (m3->mc_flags & C_SPLITTING)
7796                                 continue;
7797                         if (new_root) {
7798                                 int k;
7799                                 /* root split */
7800                                 for (k=m3->mc_top; k>=0; k--) {
7801                                         m3->mc_ki[k+1] = m3->mc_ki[k];
7802                                         m3->mc_pg[k+1] = m3->mc_pg[k];
7803                                 }
7804                                 if (m3->mc_ki[0] >= split_indx) {
7805                                         m3->mc_ki[0] = 1;
7806                                 } else {
7807                                         m3->mc_ki[0] = 0;
7808                                 }
7809                                 m3->mc_pg[0] = mc->mc_pg[0];
7810                                 m3->mc_snum++;
7811                                 m3->mc_top++;
7812                         }
7813                         if (m3->mc_top >= mc->mc_top && m3->mc_pg[mc->mc_top] == mp) {
7814                                 if (m3->mc_ki[mc->mc_top] >= newindx && !(nflags & MDB_SPLIT_REPLACE))
7815                                         m3->mc_ki[mc->mc_top]++;
7816                                 if (m3->mc_ki[mc->mc_top] >= fixup) {
7817                                         m3->mc_pg[mc->mc_top] = rp;
7818                                         m3->mc_ki[mc->mc_top] -= fixup;
7819                                         m3->mc_ki[ptop] = mn.mc_ki[ptop];
7820                                 }
7821                         } else if (!did_split && m3->mc_top >= ptop && m3->mc_pg[ptop] == mc->mc_pg[ptop] &&
7822                                 m3->mc_ki[ptop] >= mc->mc_ki[ptop]) {
7823                                 m3->mc_ki[ptop]++;
7824                         }
7825                 }
7826         }
7827         DPRINTF(("mp left: %d, rp left: %d", SIZELEFT(mp), SIZELEFT(rp)));
7828         return rc;
7829 }
7830
7831 int
7832 mdb_put(MDB_txn *txn, MDB_dbi dbi,
7833     MDB_val *key, MDB_val *data, unsigned int flags)
7834 {
7835         MDB_cursor mc;
7836         MDB_xcursor mx;
7837
7838         assert(key != NULL);
7839         assert(data != NULL);
7840
7841         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
7842                 return EINVAL;
7843
7844         if ((flags & (MDB_NOOVERWRITE|MDB_NODUPDATA|MDB_RESERVE|MDB_APPEND|MDB_APPENDDUP)) != flags)
7845                 return EINVAL;
7846
7847         mdb_cursor_init(&mc, txn, dbi, &mx);
7848         return mdb_cursor_put(&mc, key, data, flags);
7849 }
7850
7851 int
7852 mdb_env_set_flags(MDB_env *env, unsigned int flag, int onoff)
7853 {
7854         if ((flag & CHANGEABLE) != flag)
7855                 return EINVAL;
7856         if (onoff)
7857                 env->me_flags |= flag;
7858         else
7859                 env->me_flags &= ~flag;
7860         return MDB_SUCCESS;
7861 }
7862
7863 int
7864 mdb_env_get_flags(MDB_env *env, unsigned int *arg)
7865 {
7866         if (!env || !arg)
7867                 return EINVAL;
7868
7869         *arg = env->me_flags;
7870         return MDB_SUCCESS;
7871 }
7872
7873 int
7874 mdb_env_get_path(MDB_env *env, const char **arg)
7875 {
7876         if (!env || !arg)
7877                 return EINVAL;
7878
7879         *arg = env->me_path;
7880         return MDB_SUCCESS;
7881 }
7882
7883 int
7884 mdb_env_get_fd(MDB_env *env, mdb_filehandle_t *arg)
7885 {
7886         if (!env || !arg)
7887                 return EINVAL;
7888
7889         *arg = env->me_fd;
7890         return MDB_SUCCESS;
7891 }
7892
7893 /** Common code for #mdb_stat() and #mdb_env_stat().
7894  * @param[in] env the environment to operate in.
7895  * @param[in] db the #MDB_db record containing the stats to return.
7896  * @param[out] arg the address of an #MDB_stat structure to receive the stats.
7897  * @return 0, this function always succeeds.
7898  */
7899 static int
7900 mdb_stat0(MDB_env *env, MDB_db *db, MDB_stat *arg)
7901 {
7902         arg->ms_psize = env->me_psize;
7903         arg->ms_depth = db->md_depth;
7904         arg->ms_branch_pages = db->md_branch_pages;
7905         arg->ms_leaf_pages = db->md_leaf_pages;
7906         arg->ms_overflow_pages = db->md_overflow_pages;
7907         arg->ms_entries = db->md_entries;
7908
7909         return MDB_SUCCESS;
7910 }
7911 int
7912 mdb_env_stat(MDB_env *env, MDB_stat *arg)
7913 {
7914         int toggle;
7915
7916         if (env == NULL || arg == NULL)
7917                 return EINVAL;
7918
7919         toggle = mdb_env_pick_meta(env);
7920
7921         return mdb_stat0(env, &env->me_metas[toggle]->mm_dbs[MAIN_DBI], arg);
7922 }
7923
7924 int
7925 mdb_env_info(MDB_env *env, MDB_envinfo *arg)
7926 {
7927         int toggle;
7928
7929         if (env == NULL || arg == NULL)
7930                 return EINVAL;
7931
7932         toggle = mdb_env_pick_meta(env);
7933         arg->me_mapaddr = (env->me_flags & MDB_FIXEDMAP) ? env->me_map : 0;
7934         arg->me_mapsize = env->me_mapsize;
7935         arg->me_maxreaders = env->me_maxreaders;
7936
7937         /* me_numreaders may be zero if this process never used any readers. Use
7938          * the shared numreader count if it exists.
7939          */
7940         arg->me_numreaders = env->me_txns ? env->me_txns->mti_numreaders : env->me_numreaders;
7941
7942         arg->me_last_pgno = env->me_metas[toggle]->mm_last_pg;
7943         arg->me_last_txnid = env->me_metas[toggle]->mm_txnid;
7944         return MDB_SUCCESS;
7945 }
7946
7947 /** Set the default comparison functions for a database.
7948  * Called immediately after a database is opened to set the defaults.
7949  * The user can then override them with #mdb_set_compare() or
7950  * #mdb_set_dupsort().
7951  * @param[in] txn A transaction handle returned by #mdb_txn_begin()
7952  * @param[in] dbi A database handle returned by #mdb_dbi_open()
7953  */
7954 static void
7955 mdb_default_cmp(MDB_txn *txn, MDB_dbi dbi)
7956 {
7957         uint16_t f = txn->mt_dbs[dbi].md_flags;
7958
7959         txn->mt_dbxs[dbi].md_cmp =
7960                 (f & MDB_REVERSEKEY) ? mdb_cmp_memnr :
7961                 (f & MDB_INTEGERKEY) ? mdb_cmp_cint  : mdb_cmp_memn;
7962
7963         txn->mt_dbxs[dbi].md_dcmp =
7964                 !(f & MDB_DUPSORT) ? 0 :
7965                 ((f & MDB_INTEGERDUP)
7966                  ? ((f & MDB_DUPFIXED)   ? mdb_cmp_int   : mdb_cmp_cint)
7967                  : ((f & MDB_REVERSEDUP) ? mdb_cmp_memnr : mdb_cmp_memn));
7968 }
7969
7970 int mdb_dbi_open(MDB_txn *txn, const char *name, unsigned int flags, MDB_dbi *dbi)
7971 {
7972         MDB_val key, data;
7973         MDB_dbi i;
7974         MDB_cursor mc;
7975         int rc, dbflag, exact;
7976         unsigned int unused = 0;
7977         size_t len;
7978
7979         if (txn->mt_dbxs[FREE_DBI].md_cmp == NULL) {
7980                 mdb_default_cmp(txn, FREE_DBI);
7981         }
7982
7983         if ((flags & VALID_FLAGS) != flags)
7984                 return EINVAL;
7985         if (txn->mt_flags & MDB_TXN_ERROR)
7986                 return MDB_BAD_TXN;
7987
7988         /* main DB? */
7989         if (!name) {
7990                 *dbi = MAIN_DBI;
7991                 if (flags & PERSISTENT_FLAGS) {
7992                         uint16_t f2 = flags & PERSISTENT_FLAGS;
7993                         /* make sure flag changes get committed */
7994                         if ((txn->mt_dbs[MAIN_DBI].md_flags | f2) != txn->mt_dbs[MAIN_DBI].md_flags) {
7995                                 txn->mt_dbs[MAIN_DBI].md_flags |= f2;
7996                                 txn->mt_flags |= MDB_TXN_DIRTY;
7997                         }
7998                 }
7999                 mdb_default_cmp(txn, MAIN_DBI);
8000                 return MDB_SUCCESS;
8001         }
8002
8003         if (txn->mt_dbxs[MAIN_DBI].md_cmp == NULL) {
8004                 mdb_default_cmp(txn, MAIN_DBI);
8005         }
8006
8007         /* Is the DB already open? */
8008         len = strlen(name);
8009         for (i=2; i<txn->mt_numdbs; i++) {
8010                 if (!txn->mt_dbxs[i].md_name.mv_size) {
8011                         /* Remember this free slot */
8012                         if (!unused) unused = i;
8013                         continue;
8014                 }
8015                 if (len == txn->mt_dbxs[i].md_name.mv_size &&
8016                         !strncmp(name, txn->mt_dbxs[i].md_name.mv_data, len)) {
8017                         *dbi = i;
8018                         return MDB_SUCCESS;
8019                 }
8020         }
8021
8022         /* If no free slot and max hit, fail */
8023         if (!unused && txn->mt_numdbs >= txn->mt_env->me_maxdbs)
8024                 return MDB_DBS_FULL;
8025
8026         /* Cannot mix named databases with some mainDB flags */
8027         if (txn->mt_dbs[MAIN_DBI].md_flags & (MDB_DUPSORT|MDB_INTEGERKEY))
8028                 return (flags & MDB_CREATE) ? MDB_INCOMPATIBLE : MDB_NOTFOUND;
8029
8030         /* Find the DB info */
8031         dbflag = DB_NEW|DB_VALID;
8032         exact = 0;
8033         key.mv_size = len;
8034         key.mv_data = (void *)name;
8035         mdb_cursor_init(&mc, txn, MAIN_DBI, NULL);
8036         rc = mdb_cursor_set(&mc, &key, &data, MDB_SET, &exact);
8037         if (rc == MDB_SUCCESS) {
8038                 /* make sure this is actually a DB */
8039                 MDB_node *node = NODEPTR(mc.mc_pg[mc.mc_top], mc.mc_ki[mc.mc_top]);
8040                 if (!(node->mn_flags & F_SUBDATA))
8041                         return MDB_INCOMPATIBLE;
8042         } else if (rc == MDB_NOTFOUND && (flags & MDB_CREATE)) {
8043                 /* Create if requested */
8044                 MDB_db dummy;
8045                 data.mv_size = sizeof(MDB_db);
8046                 data.mv_data = &dummy;
8047                 memset(&dummy, 0, sizeof(dummy));
8048                 dummy.md_root = P_INVALID;
8049                 dummy.md_flags = flags & PERSISTENT_FLAGS;
8050                 rc = mdb_cursor_put(&mc, &key, &data, F_SUBDATA);
8051                 dbflag |= DB_DIRTY;
8052         }
8053
8054         /* OK, got info, add to table */
8055         if (rc == MDB_SUCCESS) {
8056                 unsigned int slot = unused ? unused : txn->mt_numdbs;
8057                 txn->mt_dbxs[slot].md_name.mv_data = strdup(name);
8058                 txn->mt_dbxs[slot].md_name.mv_size = len;
8059                 txn->mt_dbxs[slot].md_rel = NULL;
8060                 txn->mt_dbflags[slot] = dbflag;
8061                 memcpy(&txn->mt_dbs[slot], data.mv_data, sizeof(MDB_db));
8062                 *dbi = slot;
8063                 mdb_default_cmp(txn, slot);
8064                 if (!unused) {
8065                         txn->mt_numdbs++;
8066                 }
8067         }
8068
8069         return rc;
8070 }
8071
8072 int mdb_stat(MDB_txn *txn, MDB_dbi dbi, MDB_stat *arg)
8073 {
8074         if (txn == NULL || arg == NULL || dbi >= txn->mt_numdbs)
8075                 return EINVAL;
8076
8077         if (txn->mt_dbflags[dbi] & DB_STALE) {
8078                 MDB_cursor mc;
8079                 MDB_xcursor mx;
8080                 /* Stale, must read the DB's root. cursor_init does it for us. */
8081                 mdb_cursor_init(&mc, txn, dbi, &mx);
8082         }
8083         return mdb_stat0(txn->mt_env, &txn->mt_dbs[dbi], arg);
8084 }
8085
8086 void mdb_dbi_close(MDB_env *env, MDB_dbi dbi)
8087 {
8088         char *ptr;
8089         if (dbi <= MAIN_DBI || dbi >= env->me_maxdbs)
8090                 return;
8091         ptr = env->me_dbxs[dbi].md_name.mv_data;
8092         env->me_dbxs[dbi].md_name.mv_data = NULL;
8093         env->me_dbxs[dbi].md_name.mv_size = 0;
8094         env->me_dbflags[dbi] = 0;
8095         free(ptr);
8096 }
8097
8098 int mdb_dbi_flags(MDB_txn *txn, MDB_dbi dbi, unsigned int *flags)
8099 {
8100         /* We could return the flags for the FREE_DBI too but what's the point? */
8101         if (txn == NULL || dbi < MAIN_DBI || dbi >= txn->mt_numdbs)
8102                 return EINVAL;
8103         *flags = txn->mt_dbs[dbi].md_flags & PERSISTENT_FLAGS;
8104         return MDB_SUCCESS;
8105 }
8106
8107 /** Add all the DB's pages to the free list.
8108  * @param[in] mc Cursor on the DB to free.
8109  * @param[in] subs non-Zero to check for sub-DBs in this DB.
8110  * @return 0 on success, non-zero on failure.
8111  */
8112 static int
8113 mdb_drop0(MDB_cursor *mc, int subs)
8114 {
8115         int rc;
8116
8117         rc = mdb_page_search(mc, NULL, MDB_PS_FIRST);
8118         if (rc == MDB_SUCCESS) {
8119                 MDB_txn *txn = mc->mc_txn;
8120                 MDB_node *ni;
8121                 MDB_cursor mx;
8122                 unsigned int i;
8123
8124                 /* LEAF2 pages have no nodes, cannot have sub-DBs */
8125                 if (IS_LEAF2(mc->mc_pg[mc->mc_top]))
8126                         mdb_cursor_pop(mc);
8127
8128                 mdb_cursor_copy(mc, &mx);
8129                 while (mc->mc_snum > 0) {
8130                         MDB_page *mp = mc->mc_pg[mc->mc_top];
8131                         unsigned n = NUMKEYS(mp);
8132                         if (IS_LEAF(mp)) {
8133                                 for (i=0; i<n; i++) {
8134                                         ni = NODEPTR(mp, i);
8135                                         if (ni->mn_flags & F_BIGDATA) {
8136                                                 MDB_page *omp;
8137                                                 pgno_t pg;
8138                                                 memcpy(&pg, NODEDATA(ni), sizeof(pg));
8139                                                 rc = mdb_page_get(txn, pg, &omp, NULL);
8140                                                 if (rc != 0)
8141                                                         return rc;
8142                                                 assert(IS_OVERFLOW(omp));
8143                                                 rc = mdb_midl_append_range(&txn->mt_free_pgs,
8144                                                         pg, omp->mp_pages);
8145                                                 if (rc)
8146                                                         return rc;
8147                                         } else if (subs && (ni->mn_flags & F_SUBDATA)) {
8148                                                 mdb_xcursor_init1(mc, ni);
8149                                                 rc = mdb_drop0(&mc->mc_xcursor->mx_cursor, 0);
8150                                                 if (rc)
8151                                                         return rc;
8152                                         }
8153                                 }
8154                         } else {
8155                                 if ((rc = mdb_midl_need(&txn->mt_free_pgs, n)) != 0)
8156                                         return rc;
8157                                 for (i=0; i<n; i++) {
8158                                         pgno_t pg;
8159                                         ni = NODEPTR(mp, i);
8160                                         pg = NODEPGNO(ni);
8161                                         /* free it */
8162                                         mdb_midl_xappend(txn->mt_free_pgs, pg);
8163                                 }
8164                         }
8165                         if (!mc->mc_top)
8166                                 break;
8167                         mc->mc_ki[mc->mc_top] = i;
8168                         rc = mdb_cursor_sibling(mc, 1);
8169                         if (rc) {
8170                                 /* no more siblings, go back to beginning
8171                                  * of previous level.
8172                                  */
8173                                 mdb_cursor_pop(mc);
8174                                 mc->mc_ki[0] = 0;
8175                                 for (i=1; i<mc->mc_snum; i++) {
8176                                         mc->mc_ki[i] = 0;
8177                                         mc->mc_pg[i] = mx.mc_pg[i];
8178                                 }
8179                         }
8180                 }
8181                 /* free it */
8182                 rc = mdb_midl_append(&txn->mt_free_pgs, mc->mc_db->md_root);
8183         } else if (rc == MDB_NOTFOUND) {
8184                 rc = MDB_SUCCESS;
8185         }
8186         return rc;
8187 }
8188
8189 int mdb_drop(MDB_txn *txn, MDB_dbi dbi, int del)
8190 {
8191         MDB_cursor *mc, *m2;
8192         int rc;
8193
8194         if (!txn || !dbi || dbi >= txn->mt_numdbs || (unsigned)del > 1 || !(txn->mt_dbflags[dbi] & DB_VALID))
8195                 return EINVAL;
8196
8197         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY))
8198                 return EACCES;
8199
8200         rc = mdb_cursor_open(txn, dbi, &mc);
8201         if (rc)
8202                 return rc;
8203
8204         rc = mdb_drop0(mc, mc->mc_db->md_flags & MDB_DUPSORT);
8205         /* Invalidate the dropped DB's cursors */
8206         for (m2 = txn->mt_cursors[dbi]; m2; m2 = m2->mc_next)
8207                 m2->mc_flags &= ~(C_INITIALIZED|C_EOF);
8208         if (rc)
8209                 goto leave;
8210
8211         /* Can't delete the main DB */
8212         if (del && dbi > MAIN_DBI) {
8213                 rc = mdb_del(txn, MAIN_DBI, &mc->mc_dbx->md_name, NULL);
8214                 if (!rc) {
8215                         txn->mt_dbflags[dbi] = DB_STALE;
8216                         mdb_dbi_close(txn->mt_env, dbi);
8217                 }
8218         } else {
8219                 /* reset the DB record, mark it dirty */
8220                 txn->mt_dbflags[dbi] |= DB_DIRTY;
8221                 txn->mt_dbs[dbi].md_depth = 0;
8222                 txn->mt_dbs[dbi].md_branch_pages = 0;
8223                 txn->mt_dbs[dbi].md_leaf_pages = 0;
8224                 txn->mt_dbs[dbi].md_overflow_pages = 0;
8225                 txn->mt_dbs[dbi].md_entries = 0;
8226                 txn->mt_dbs[dbi].md_root = P_INVALID;
8227
8228                 txn->mt_flags |= MDB_TXN_DIRTY;
8229         }
8230 leave:
8231         mdb_cursor_close(mc);
8232         return rc;
8233 }
8234
8235 int mdb_set_compare(MDB_txn *txn, MDB_dbi dbi, MDB_cmp_func *cmp)
8236 {
8237         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
8238                 return EINVAL;
8239
8240         txn->mt_dbxs[dbi].md_cmp = cmp;
8241         return MDB_SUCCESS;
8242 }
8243
8244 int mdb_set_dupsort(MDB_txn *txn, MDB_dbi dbi, MDB_cmp_func *cmp)
8245 {
8246         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
8247                 return EINVAL;
8248
8249         txn->mt_dbxs[dbi].md_dcmp = cmp;
8250         return MDB_SUCCESS;
8251 }
8252
8253 int mdb_set_relfunc(MDB_txn *txn, MDB_dbi dbi, MDB_rel_func *rel)
8254 {
8255         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
8256                 return EINVAL;
8257
8258         txn->mt_dbxs[dbi].md_rel = rel;
8259         return MDB_SUCCESS;
8260 }
8261
8262 int mdb_set_relctx(MDB_txn *txn, MDB_dbi dbi, void *ctx)
8263 {
8264         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
8265                 return EINVAL;
8266
8267         txn->mt_dbxs[dbi].md_relctx = ctx;
8268         return MDB_SUCCESS;
8269 }
8270
8271 int mdb_env_get_maxkeysize(MDB_env *env)
8272 {
8273         return MDB_MAXKEYSIZE;
8274 }
8275
8276 int mdb_reader_list(MDB_env *env, MDB_msg_func *func, void *ctx)
8277 {
8278         unsigned int i, rdrs;
8279         MDB_reader *mr;
8280         char buf[64];
8281         int first = 1;
8282
8283         if (!env || !func)
8284                 return -1;
8285         if (!env->me_txns) {
8286                 return func("(no reader locks)\n", ctx);
8287         }
8288         rdrs = env->me_txns->mti_numreaders;
8289         mr = env->me_txns->mti_readers;
8290         for (i=0; i<rdrs; i++) {
8291                 if (mr[i].mr_pid) {
8292                         size_t tid;
8293                         int rc;
8294                         tid = mr[i].mr_tid;
8295                         if (mr[i].mr_txnid == (txnid_t)-1) {
8296                                 sprintf(buf, "%10d %"Z"x -\n", mr[i].mr_pid, tid);
8297                         } else {
8298                                 sprintf(buf, "%10d %"Z"x %"Z"u\n", mr[i].mr_pid, tid, mr[i].mr_txnid);
8299                         }
8300                         if (first) {
8301                                 first = 0;
8302                                 func("    pid     thread     txnid\n", ctx);
8303                         }
8304                         rc = func(buf, ctx);
8305                         if (rc < 0)
8306                                 return rc;
8307                 }
8308         }
8309         if (first) {
8310                 func("(no active readers)\n", ctx);
8311         }
8312         return 0;
8313 }
8314
8315 /** Insert pid into list if not already present.
8316  * return -1 if already present.
8317  */
8318 static int mdb_pid_insert(MDB_PID_T *ids, MDB_PID_T pid)
8319 {
8320         /* binary search of pid in list */
8321         unsigned base = 0;
8322         unsigned cursor = 1;
8323         int val = 0;
8324         unsigned n = ids[0];
8325
8326         while( 0 < n ) {
8327                 unsigned pivot = n >> 1;
8328                 cursor = base + pivot + 1;
8329                 val = pid - ids[cursor];
8330
8331                 if( val < 0 ) {
8332                         n = pivot;
8333
8334                 } else if ( val > 0 ) {
8335                         base = cursor;
8336                         n -= pivot + 1;
8337
8338                 } else {
8339                         /* found, so it's a duplicate */
8340                         return -1;
8341                 }
8342         }
8343
8344         if( val > 0 ) {
8345                 ++cursor;
8346         }
8347         ids[0]++;
8348         for (n = ids[0]; n > cursor; n--)
8349                 ids[n] = ids[n-1];
8350         ids[n] = pid;
8351         return 0;
8352 }
8353
8354 int mdb_reader_check(MDB_env *env, int *dead)
8355 {
8356         unsigned int i, j, rdrs;
8357         MDB_reader *mr;
8358         MDB_PID_T *pids, pid;
8359         int count = 0;
8360
8361         if (!env)
8362                 return EINVAL;
8363         if (dead)
8364                 *dead = 0;
8365         if (!env->me_txns)
8366                 return MDB_SUCCESS;
8367         rdrs = env->me_txns->mti_numreaders;
8368         pids = malloc((rdrs+1) * sizeof(MDB_PID_T));
8369         if (!pids)
8370                 return ENOMEM;
8371         pids[0] = 0;
8372         mr = env->me_txns->mti_readers;
8373         j = 0;
8374         for (i=0; i<rdrs; i++) {
8375                 if (mr[i].mr_pid && mr[i].mr_pid != env->me_pid) {
8376                         pid = mr[i].mr_pid;
8377                         if (mdb_pid_insert(pids, pid) == 0) {
8378                                 if (!mdb_reader_pid(env, Pidcheck, pid)) {
8379                                         LOCK_MUTEX_R(env);
8380                                         /* Recheck, a new process may have reused pid */
8381                                         if (!mdb_reader_pid(env, Pidcheck, pid)) {
8382                                                 for (j=i; j<rdrs; j++)
8383                                                         if (mr[j].mr_pid == pid) {
8384                                                                 DPRINTF(("clear stale reader pid %u txn %"Z"d",
8385                                                                         (unsigned) pid, mr[j].mr_txnid));
8386                                                                 mr[j].mr_pid = 0;
8387                                                                 count++;
8388                                                         }
8389                                         }
8390                                         UNLOCK_MUTEX_R(env);
8391                                 }
8392                         }
8393                 }
8394         }
8395         free(pids);
8396         if (dead)
8397                 *dead = count;
8398         return MDB_SUCCESS;
8399 }
8400 /** @} */