]> git.sur5r.net Git - openldap/blob - libraries/liblmdb/mdb.c
Relax MDB_MAXKEYSIZE for existing data.
[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 we can write to a database.
386          *
387          *      We require that keys all fit onto a regular page. This limit
388          *      could be raised a bit further if needed; to something just
389          *      under (page size / #MDB_MINKEYS / 3).
390          *
391          *      Note that data items in an #MDB_DUPSORT database are actually keys
392          *      of a subDB, so they're also limited to this size.
393          */
394 #ifndef MDB_MAXKEYSIZE
395 #define MDB_MAXKEYSIZE   511
396 #endif
397
398         /**     @brief The maximum size of a data item.
399          *
400          *      We only store a 32 bit value for node sizes.
401          */
402 #define MAXDATASIZE     0xffffffffUL
403
404 #if MDB_DEBUG
405         /**     A key buffer.
406          *      @ingroup debug
407          *      This is used for printing a hex dump of a key's contents.
408          */
409 #define DKBUF   char kbuf[(MDB_MAXKEYSIZE*2+1)]
410         /**     Display a key in hex.
411          *      @ingroup debug
412          *      Invoke a function to display a key in hex.
413          */
414 #define DKEY(x) mdb_dkey(x, kbuf)
415 #else
416 #define DKBUF
417 #define DKEY(x) 0
418 #endif
419
420         /** An invalid page number.
421          *      Mainly used to denote an empty tree.
422          */
423 #define P_INVALID        (~(pgno_t)0)
424
425         /** Test if the flags \b f are set in a flag word \b w. */
426 #define F_ISSET(w, f)    (((w) & (f)) == (f))
427
428         /** Round \b n up to an even number. */
429 #define EVEN(n)         (((n) + 1U) & -2) /* sign-extending -2 to match n+1U */
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 = EVEN(total);
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, 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, n2 = num-1;
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 > n2) {
1702                         i = mop_len;
1703                         do {
1704                                 pgno = mop[i];
1705                                 if (mop[i-n2] == pgno+n2)
1706                                         goto search_done;
1707                         } while (--i > n2);
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) & -2)
3492                 - sizeof(indx_t);
3493
3494         env->me_maxpg = env->me_mapsize / env->me_psize;
3495 #if MDB_DEBUG
3496         {
3497                 int toggle = mdb_env_pick_meta(env);
3498                 MDB_db *db = &env->me_metas[toggle]->mm_dbs[MAIN_DBI];
3499
3500                 DPRINTF(("opened database version %u, pagesize %u",
3501                         env->me_metas[0]->mm_version, env->me_psize));
3502                 DPRINTF(("using meta page %d",    toggle));
3503                 DPRINTF(("depth: %u",             db->md_depth));
3504                 DPRINTF(("entries: %"Z"u",        db->md_entries));
3505                 DPRINTF(("branch pages: %"Z"u",   db->md_branch_pages));
3506                 DPRINTF(("leaf pages: %"Z"u",     db->md_leaf_pages));
3507                 DPRINTF(("overflow pages: %"Z"u", db->md_overflow_pages));
3508                 DPRINTF(("root: %"Z"u",           db->md_root));
3509         }
3510 #endif
3511
3512         return MDB_SUCCESS;
3513 }
3514
3515
3516 /** Release a reader thread's slot in the reader lock table.
3517  *      This function is called automatically when a thread exits.
3518  * @param[in] ptr This points to the slot in the reader lock table.
3519  */
3520 static void
3521 mdb_env_reader_dest(void *ptr)
3522 {
3523         MDB_reader *reader = ptr;
3524
3525         reader->mr_pid = 0;
3526 }
3527
3528 #ifdef _WIN32
3529 /** Junk for arranging thread-specific callbacks on Windows. This is
3530  *      necessarily platform and compiler-specific. Windows supports up
3531  *      to 1088 keys. Let's assume nobody opens more than 64 environments
3532  *      in a single process, for now. They can override this if needed.
3533  */
3534 #ifndef MAX_TLS_KEYS
3535 #define MAX_TLS_KEYS    64
3536 #endif
3537 static pthread_key_t mdb_tls_keys[MAX_TLS_KEYS];
3538 static int mdb_tls_nkeys;
3539
3540 static void NTAPI mdb_tls_callback(PVOID module, DWORD reason, PVOID ptr)
3541 {
3542         int i;
3543         switch(reason) {
3544         case DLL_PROCESS_ATTACH: break;
3545         case DLL_THREAD_ATTACH: break;
3546         case DLL_THREAD_DETACH:
3547                 for (i=0; i<mdb_tls_nkeys; i++) {
3548                         MDB_reader *r = pthread_getspecific(mdb_tls_keys[i]);
3549                         mdb_env_reader_dest(r);
3550                 }
3551                 break;
3552         case DLL_PROCESS_DETACH: break;
3553         }
3554 }
3555 #ifdef __GNUC__
3556 #ifdef _WIN64
3557 const PIMAGE_TLS_CALLBACK mdb_tls_cbp __attribute__((section (".CRT$XLB"))) = mdb_tls_callback;
3558 #else
3559 PIMAGE_TLS_CALLBACK mdb_tls_cbp __attribute__((section (".CRT$XLB"))) = mdb_tls_callback;
3560 #endif
3561 #else
3562 #ifdef _WIN64
3563 /* Force some symbol references.
3564  *      _tls_used forces the linker to create the TLS directory if not already done
3565  *      mdb_tls_cbp prevents whole-program-optimizer from dropping the symbol.
3566  */
3567 #pragma comment(linker, "/INCLUDE:_tls_used")
3568 #pragma comment(linker, "/INCLUDE:mdb_tls_cbp")
3569 #pragma const_seg(".CRT$XLB")
3570 extern const PIMAGE_TLS_CALLBACK mdb_tls_cbp;
3571 const PIMAGE_TLS_CALLBACK mdb_tls_cbp = mdb_tls_callback;
3572 #pragma const_seg()
3573 #else   /* WIN32 */
3574 #pragma comment(linker, "/INCLUDE:__tls_used")
3575 #pragma comment(linker, "/INCLUDE:_mdb_tls_cbp")
3576 #pragma data_seg(".CRT$XLB")
3577 PIMAGE_TLS_CALLBACK mdb_tls_cbp = mdb_tls_callback;
3578 #pragma data_seg()
3579 #endif  /* WIN 32/64 */
3580 #endif  /* !__GNUC__ */
3581 #endif
3582
3583 /** Downgrade the exclusive lock on the region back to shared */
3584 static int
3585 mdb_env_share_locks(MDB_env *env, int *excl)
3586 {
3587         int rc = 0, toggle = mdb_env_pick_meta(env);
3588
3589         env->me_txns->mti_txnid = env->me_metas[toggle]->mm_txnid;
3590
3591 #ifdef _WIN32
3592         {
3593                 OVERLAPPED ov;
3594                 /* First acquire a shared lock. The Unlock will
3595                  * then release the existing exclusive lock.
3596                  */
3597                 memset(&ov, 0, sizeof(ov));
3598                 if (!LockFileEx(env->me_lfd, 0, 0, 1, 0, &ov)) {
3599                         rc = ErrCode();
3600                 } else {
3601                         UnlockFile(env->me_lfd, 0, 0, 1, 0);
3602                         *excl = 0;
3603                 }
3604         }
3605 #else
3606         {
3607                 struct flock lock_info;
3608                 /* The shared lock replaces the existing lock */
3609                 memset((void *)&lock_info, 0, sizeof(lock_info));
3610                 lock_info.l_type = F_RDLCK;
3611                 lock_info.l_whence = SEEK_SET;
3612                 lock_info.l_start = 0;
3613                 lock_info.l_len = 1;
3614                 while ((rc = fcntl(env->me_lfd, F_SETLK, &lock_info)) &&
3615                                 (rc = ErrCode()) == EINTR) ;
3616                 *excl = rc ? -1 : 0;    /* error may mean we lost the lock */
3617         }
3618 #endif
3619
3620         return rc;
3621 }
3622
3623 /** Try to get exlusive lock, otherwise shared.
3624  *      Maintain *excl = -1: no/unknown lock, 0: shared, 1: exclusive.
3625  */
3626 static int
3627 mdb_env_excl_lock(MDB_env *env, int *excl)
3628 {
3629         int rc = 0;
3630 #ifdef _WIN32
3631         if (LockFile(env->me_lfd, 0, 0, 1, 0)) {
3632                 *excl = 1;
3633         } else {
3634                 OVERLAPPED ov;
3635                 memset(&ov, 0, sizeof(ov));
3636                 if (LockFileEx(env->me_lfd, 0, 0, 1, 0, &ov)) {
3637                         *excl = 0;
3638                 } else {
3639                         rc = ErrCode();
3640                 }
3641         }
3642 #else
3643         struct flock lock_info;
3644         memset((void *)&lock_info, 0, sizeof(lock_info));
3645         lock_info.l_type = F_WRLCK;
3646         lock_info.l_whence = SEEK_SET;
3647         lock_info.l_start = 0;
3648         lock_info.l_len = 1;
3649         while ((rc = fcntl(env->me_lfd, F_SETLK, &lock_info)) &&
3650                         (rc = ErrCode()) == EINTR) ;
3651         if (!rc) {
3652                 *excl = 1;
3653         } else
3654 # ifdef MDB_USE_POSIX_SEM
3655         if (*excl < 0) /* always true when !MDB_USE_POSIX_SEM */
3656 # endif
3657         {
3658                 lock_info.l_type = F_RDLCK;
3659                 while ((rc = fcntl(env->me_lfd, F_SETLKW, &lock_info)) &&
3660                                 (rc = ErrCode()) == EINTR) ;
3661                 if (rc == 0)
3662                         *excl = 0;
3663         }
3664 #endif
3665         return rc;
3666 }
3667
3668 #ifdef MDB_USE_HASH
3669 /*
3670  * hash_64 - 64 bit Fowler/Noll/Vo-0 FNV-1a hash code
3671  *
3672  * @(#) $Revision: 5.1 $
3673  * @(#) $Id: hash_64a.c,v 5.1 2009/06/30 09:01:38 chongo Exp $
3674  * @(#) $Source: /usr/local/src/cmd/fnv/RCS/hash_64a.c,v $
3675  *
3676  *        http://www.isthe.com/chongo/tech/comp/fnv/index.html
3677  *
3678  ***
3679  *
3680  * Please do not copyright this code.  This code is in the public domain.
3681  *
3682  * LANDON CURT NOLL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
3683  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO
3684  * EVENT SHALL LANDON CURT NOLL BE LIABLE FOR ANY SPECIAL, INDIRECT OR
3685  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
3686  * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
3687  * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
3688  * PERFORMANCE OF THIS SOFTWARE.
3689  *
3690  * By:
3691  *      chongo <Landon Curt Noll> /\oo/\
3692  *        http://www.isthe.com/chongo/
3693  *
3694  * Share and Enjoy!     :-)
3695  */
3696
3697 typedef unsigned long long      mdb_hash_t;
3698 #define MDB_HASH_INIT ((mdb_hash_t)0xcbf29ce484222325ULL)
3699
3700 /** perform a 64 bit Fowler/Noll/Vo FNV-1a hash on a buffer
3701  * @param[in] val       value to hash
3702  * @param[in] hval      initial value for hash
3703  * @return 64 bit hash
3704  *
3705  * NOTE: To use the recommended 64 bit FNV-1a hash, use MDB_HASH_INIT as the
3706  *       hval arg on the first call.
3707  */
3708 static mdb_hash_t
3709 mdb_hash_val(MDB_val *val, mdb_hash_t hval)
3710 {
3711         unsigned char *s = (unsigned char *)val->mv_data;       /* unsigned string */
3712         unsigned char *end = s + val->mv_size;
3713         /*
3714          * FNV-1a hash each octet of the string
3715          */
3716         while (s < end) {
3717                 /* xor the bottom with the current octet */
3718                 hval ^= (mdb_hash_t)*s++;
3719
3720                 /* multiply by the 64 bit FNV magic prime mod 2^64 */
3721                 hval += (hval << 1) + (hval << 4) + (hval << 5) +
3722                         (hval << 7) + (hval << 8) + (hval << 40);
3723         }
3724         /* return our new hash value */
3725         return hval;
3726 }
3727
3728 /** Hash the string and output the encoded hash.
3729  * This uses modified RFC1924 Ascii85 encoding to accommodate systems with
3730  * very short name limits. We don't care about the encoding being reversible,
3731  * we just want to preserve as many bits of the input as possible in a
3732  * small printable string.
3733  * @param[in] str string to hash
3734  * @param[out] encbuf an array of 11 chars to hold the hash
3735  */
3736 static const char mdb_a85[]= "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~";
3737
3738 static void
3739 mdb_pack85(unsigned long l, char *out)
3740 {
3741         int i;
3742
3743         for (i=0; i<5; i++) {
3744                 *out++ = mdb_a85[l % 85];
3745                 l /= 85;
3746         }
3747 }
3748
3749 static void
3750 mdb_hash_enc(MDB_val *val, char *encbuf)
3751 {
3752         mdb_hash_t h = mdb_hash_val(val, MDB_HASH_INIT);
3753
3754         mdb_pack85(h, encbuf);
3755         mdb_pack85(h>>32, encbuf+5);
3756         encbuf[10] = '\0';
3757 }
3758 #endif
3759
3760 /** Open and/or initialize the lock region for the environment.
3761  * @param[in] env The MDB environment.
3762  * @param[in] lpath The pathname of the file used for the lock region.
3763  * @param[in] mode The Unix permissions for the file, if we create it.
3764  * @param[out] excl Resulting file lock type: -1 none, 0 shared, 1 exclusive
3765  * @param[in,out] excl In -1, out lock type: -1 none, 0 shared, 1 exclusive
3766  * @return 0 on success, non-zero on failure.
3767  */
3768 static int
3769 mdb_env_setup_locks(MDB_env *env, char *lpath, int mode, int *excl)
3770 {
3771 #ifdef _WIN32
3772 #       define MDB_ERRCODE_ROFS ERROR_WRITE_PROTECT
3773 #else
3774 #       define MDB_ERRCODE_ROFS EROFS
3775 #ifdef O_CLOEXEC        /* Linux: Open file and set FD_CLOEXEC atomically */
3776 #       define MDB_CLOEXEC              O_CLOEXEC
3777 #else
3778         int fdflags;
3779 #       define MDB_CLOEXEC              0
3780 #endif
3781 #endif
3782         int rc;
3783         off_t size, rsize;
3784
3785 #ifdef _WIN32
3786         env->me_lfd = CreateFile(lpath, GENERIC_READ|GENERIC_WRITE,
3787                 FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_ALWAYS,
3788                 FILE_ATTRIBUTE_NORMAL, NULL);
3789 #else
3790         env->me_lfd = open(lpath, O_RDWR|O_CREAT|MDB_CLOEXEC, mode);
3791 #endif
3792         if (env->me_lfd == INVALID_HANDLE_VALUE) {
3793                 rc = ErrCode();
3794                 if (rc == MDB_ERRCODE_ROFS && (env->me_flags & MDB_RDONLY)) {
3795                         return MDB_SUCCESS;
3796                 }
3797                 goto fail_errno;
3798         }
3799 #if ! ((MDB_CLOEXEC) || defined(_WIN32))
3800         /* Lose record locks when exec*() */
3801         if ((fdflags = fcntl(env->me_lfd, F_GETFD) | FD_CLOEXEC) >= 0)
3802                         fcntl(env->me_lfd, F_SETFD, fdflags);
3803 #endif
3804
3805         if (!(env->me_flags & MDB_NOTLS)) {
3806                 rc = pthread_key_create(&env->me_txkey, mdb_env_reader_dest);
3807                 if (rc)
3808                         goto fail;
3809                 env->me_flags |= MDB_ENV_TXKEY;
3810 #ifdef _WIN32
3811                 /* Windows TLS callbacks need help finding their TLS info. */
3812                 if (mdb_tls_nkeys >= MAX_TLS_KEYS) {
3813                         rc = MDB_TLS_FULL;
3814                         goto fail;
3815                 }
3816                 mdb_tls_keys[mdb_tls_nkeys++] = env->me_txkey;
3817 #endif
3818         }
3819
3820         /* Try to get exclusive lock. If we succeed, then
3821          * nobody is using the lock region and we should initialize it.
3822          */
3823         if ((rc = mdb_env_excl_lock(env, excl))) goto fail;
3824
3825 #ifdef _WIN32
3826         size = GetFileSize(env->me_lfd, NULL);
3827 #else
3828         size = lseek(env->me_lfd, 0, SEEK_END);
3829         if (size == -1) goto fail_errno;
3830 #endif
3831         rsize = (env->me_maxreaders-1) * sizeof(MDB_reader) + sizeof(MDB_txninfo);
3832         if (size < rsize && *excl > 0) {
3833 #ifdef _WIN32
3834                 if (SetFilePointer(env->me_lfd, rsize, NULL, FILE_BEGIN) != (DWORD)rsize
3835                         || !SetEndOfFile(env->me_lfd))
3836                         goto fail_errno;
3837 #else
3838                 if (ftruncate(env->me_lfd, rsize) != 0) goto fail_errno;
3839 #endif
3840         } else {
3841                 rsize = size;
3842                 size = rsize - sizeof(MDB_txninfo);
3843                 env->me_maxreaders = size/sizeof(MDB_reader) + 1;
3844         }
3845         {
3846 #ifdef _WIN32
3847                 HANDLE mh;
3848                 mh = CreateFileMapping(env->me_lfd, NULL, PAGE_READWRITE,
3849                         0, 0, NULL);
3850                 if (!mh) goto fail_errno;
3851                 env->me_txns = MapViewOfFileEx(mh, FILE_MAP_WRITE, 0, 0, rsize, NULL);
3852                 CloseHandle(mh);
3853                 if (!env->me_txns) goto fail_errno;
3854 #else
3855                 void *m = mmap(NULL, rsize, PROT_READ|PROT_WRITE, MAP_SHARED,
3856                         env->me_lfd, 0);
3857                 if (m == MAP_FAILED) goto fail_errno;
3858                 env->me_txns = m;
3859 #endif
3860         }
3861         if (*excl > 0) {
3862 #ifdef _WIN32
3863                 BY_HANDLE_FILE_INFORMATION stbuf;
3864                 struct {
3865                         DWORD volume;
3866                         DWORD nhigh;
3867                         DWORD nlow;
3868                 } idbuf;
3869                 MDB_val val;
3870                 char encbuf[11];
3871
3872                 if (!mdb_sec_inited) {
3873                         InitializeSecurityDescriptor(&mdb_null_sd,
3874                                 SECURITY_DESCRIPTOR_REVISION);
3875                         SetSecurityDescriptorDacl(&mdb_null_sd, TRUE, 0, FALSE);
3876                         mdb_all_sa.nLength = sizeof(SECURITY_ATTRIBUTES);
3877                         mdb_all_sa.bInheritHandle = FALSE;
3878                         mdb_all_sa.lpSecurityDescriptor = &mdb_null_sd;
3879                         mdb_sec_inited = 1;
3880                 }
3881                 if (!GetFileInformationByHandle(env->me_lfd, &stbuf)) goto fail_errno;
3882                 idbuf.volume = stbuf.dwVolumeSerialNumber;
3883                 idbuf.nhigh  = stbuf.nFileIndexHigh;
3884                 idbuf.nlow   = stbuf.nFileIndexLow;
3885                 val.mv_data = &idbuf;
3886                 val.mv_size = sizeof(idbuf);
3887                 mdb_hash_enc(&val, encbuf);
3888                 sprintf(env->me_txns->mti_rmname, "Global\\MDBr%s", encbuf);
3889                 sprintf(env->me_txns->mti_wmname, "Global\\MDBw%s", encbuf);
3890                 env->me_rmutex = CreateMutex(&mdb_all_sa, FALSE, env->me_txns->mti_rmname);
3891                 if (!env->me_rmutex) goto fail_errno;
3892                 env->me_wmutex = CreateMutex(&mdb_all_sa, FALSE, env->me_txns->mti_wmname);
3893                 if (!env->me_wmutex) goto fail_errno;
3894 #elif defined(MDB_USE_POSIX_SEM)
3895                 struct stat stbuf;
3896                 struct {
3897                         dev_t dev;
3898                         ino_t ino;
3899                 } idbuf;
3900                 MDB_val val;
3901                 char encbuf[11];
3902
3903 #if defined(__NetBSD__)
3904 #define MDB_SHORT_SEMNAMES      1       /* limited to 14 chars */
3905 #endif
3906                 if (fstat(env->me_lfd, &stbuf)) goto fail_errno;
3907                 idbuf.dev = stbuf.st_dev;
3908                 idbuf.ino = stbuf.st_ino;
3909                 val.mv_data = &idbuf;
3910                 val.mv_size = sizeof(idbuf);
3911                 mdb_hash_enc(&val, encbuf);
3912 #ifdef MDB_SHORT_SEMNAMES
3913                 encbuf[9] = '\0';       /* drop name from 15 chars to 14 chars */
3914 #endif
3915                 sprintf(env->me_txns->mti_rmname, "/MDBr%s", encbuf);
3916                 sprintf(env->me_txns->mti_wmname, "/MDBw%s", encbuf);
3917                 /* Clean up after a previous run, if needed:  Try to
3918                  * remove both semaphores before doing anything else.
3919                  */
3920                 sem_unlink(env->me_txns->mti_rmname);
3921                 sem_unlink(env->me_txns->mti_wmname);
3922                 env->me_rmutex = sem_open(env->me_txns->mti_rmname,
3923                         O_CREAT|O_EXCL, mode, 1);
3924                 if (env->me_rmutex == SEM_FAILED) goto fail_errno;
3925                 env->me_wmutex = sem_open(env->me_txns->mti_wmname,
3926                         O_CREAT|O_EXCL, mode, 1);
3927                 if (env->me_wmutex == SEM_FAILED) goto fail_errno;
3928 #else   /* MDB_USE_POSIX_SEM */
3929                 pthread_mutexattr_t mattr;
3930
3931                 if ((rc = pthread_mutexattr_init(&mattr))
3932                         || (rc = pthread_mutexattr_setpshared(&mattr, PTHREAD_PROCESS_SHARED))
3933                         || (rc = pthread_mutex_init(&env->me_txns->mti_mutex, &mattr))
3934                         || (rc = pthread_mutex_init(&env->me_txns->mti_wmutex, &mattr)))
3935                         goto fail;
3936                 pthread_mutexattr_destroy(&mattr);
3937 #endif  /* _WIN32 || MDB_USE_POSIX_SEM */
3938
3939                 env->me_txns->mti_magic = MDB_MAGIC;
3940                 env->me_txns->mti_format = MDB_LOCK_FORMAT;
3941                 env->me_txns->mti_txnid = 0;
3942                 env->me_txns->mti_numreaders = 0;
3943
3944         } else {
3945                 if (env->me_txns->mti_magic != MDB_MAGIC) {
3946                         DPUTS("lock region has invalid magic");
3947                         rc = MDB_INVALID;
3948                         goto fail;
3949                 }
3950                 if (env->me_txns->mti_format != MDB_LOCK_FORMAT) {
3951                         DPRINTF(("lock region has format+version 0x%x, expected 0x%x",
3952                                 env->me_txns->mti_format, MDB_LOCK_FORMAT));
3953                         rc = MDB_VERSION_MISMATCH;
3954                         goto fail;
3955                 }
3956                 rc = ErrCode();
3957                 if (rc && rc != EACCES && rc != EAGAIN) {
3958                         goto fail;
3959                 }
3960 #ifdef _WIN32
3961                 env->me_rmutex = OpenMutex(SYNCHRONIZE, FALSE, env->me_txns->mti_rmname);
3962                 if (!env->me_rmutex) goto fail_errno;
3963                 env->me_wmutex = OpenMutex(SYNCHRONIZE, FALSE, env->me_txns->mti_wmname);
3964                 if (!env->me_wmutex) goto fail_errno;
3965 #elif defined(MDB_USE_POSIX_SEM)
3966                 env->me_rmutex = sem_open(env->me_txns->mti_rmname, 0);
3967                 if (env->me_rmutex == SEM_FAILED) goto fail_errno;
3968                 env->me_wmutex = sem_open(env->me_txns->mti_wmname, 0);
3969                 if (env->me_wmutex == SEM_FAILED) goto fail_errno;
3970 #endif
3971         }
3972         return MDB_SUCCESS;
3973
3974 fail_errno:
3975         rc = ErrCode();
3976 fail:
3977         return rc;
3978 }
3979
3980         /** The name of the lock file in the DB environment */
3981 #define LOCKNAME        "/lock.mdb"
3982         /** The name of the data file in the DB environment */
3983 #define DATANAME        "/data.mdb"
3984         /** The suffix of the lock file when no subdir is used */
3985 #define LOCKSUFF        "-lock"
3986         /** Only a subset of the @ref mdb_env flags can be changed
3987          *      at runtime. Changing other flags requires closing the
3988          *      environment and re-opening it with the new flags.
3989          */
3990 #define CHANGEABLE      (MDB_NOSYNC|MDB_NOMETASYNC|MDB_MAPASYNC|MDB_NOMEMINIT)
3991 #define CHANGELESS      (MDB_FIXEDMAP|MDB_NOSUBDIR|MDB_RDONLY|MDB_WRITEMAP| \
3992         MDB_NOTLS|MDB_NOLOCK|MDB_NORDAHEAD)
3993
3994 int
3995 mdb_env_open(MDB_env *env, const char *path, unsigned int flags, mdb_mode_t mode)
3996 {
3997         int             oflags, rc, len, excl = -1;
3998         char *lpath, *dpath;
3999
4000         if (env->me_fd!=INVALID_HANDLE_VALUE || (flags & ~(CHANGEABLE|CHANGELESS)))
4001                 return EINVAL;
4002
4003         len = strlen(path);
4004         if (flags & MDB_NOSUBDIR) {
4005                 rc = len + sizeof(LOCKSUFF) + len + 1;
4006         } else {
4007                 rc = len + sizeof(LOCKNAME) + len + sizeof(DATANAME);
4008         }
4009         lpath = malloc(rc);
4010         if (!lpath)
4011                 return ENOMEM;
4012         if (flags & MDB_NOSUBDIR) {
4013                 dpath = lpath + len + sizeof(LOCKSUFF);
4014                 sprintf(lpath, "%s" LOCKSUFF, path);
4015                 strcpy(dpath, path);
4016         } else {
4017                 dpath = lpath + len + sizeof(LOCKNAME);
4018                 sprintf(lpath, "%s" LOCKNAME, path);
4019                 sprintf(dpath, "%s" DATANAME, path);
4020         }
4021
4022         rc = MDB_SUCCESS;
4023         flags |= env->me_flags;
4024         if (flags & MDB_RDONLY) {
4025                 /* silently ignore WRITEMAP when we're only getting read access */
4026                 flags &= ~MDB_WRITEMAP;
4027         } else {
4028                 if (!((env->me_free_pgs = mdb_midl_alloc(MDB_IDL_UM_MAX)) &&
4029                           (env->me_dirty_list = calloc(MDB_IDL_UM_SIZE, sizeof(MDB_ID2)))))
4030                         rc = ENOMEM;
4031         }
4032         env->me_flags = flags |= MDB_ENV_ACTIVE;
4033         if (rc)
4034                 goto leave;
4035
4036         env->me_path = strdup(path);
4037         env->me_dbxs = calloc(env->me_maxdbs, sizeof(MDB_dbx));
4038         env->me_dbflags = calloc(env->me_maxdbs, sizeof(uint16_t));
4039         if (!(env->me_dbxs && env->me_path && env->me_dbflags)) {
4040                 rc = ENOMEM;
4041                 goto leave;
4042         }
4043
4044         /* For RDONLY, get lockfile after we know datafile exists */
4045         if (!(flags & (MDB_RDONLY|MDB_NOLOCK))) {
4046                 rc = mdb_env_setup_locks(env, lpath, mode, &excl);
4047                 if (rc)
4048                         goto leave;
4049         }
4050
4051 #ifdef _WIN32
4052         if (F_ISSET(flags, MDB_RDONLY)) {
4053                 oflags = GENERIC_READ;
4054                 len = OPEN_EXISTING;
4055         } else {
4056                 oflags = GENERIC_READ|GENERIC_WRITE;
4057                 len = OPEN_ALWAYS;
4058         }
4059         mode = FILE_ATTRIBUTE_NORMAL;
4060         env->me_fd = CreateFile(dpath, oflags, FILE_SHARE_READ|FILE_SHARE_WRITE,
4061                 NULL, len, mode, NULL);
4062 #else
4063         if (F_ISSET(flags, MDB_RDONLY))
4064                 oflags = O_RDONLY;
4065         else
4066                 oflags = O_RDWR | O_CREAT;
4067
4068         env->me_fd = open(dpath, oflags, mode);
4069 #endif
4070         if (env->me_fd == INVALID_HANDLE_VALUE) {
4071                 rc = ErrCode();
4072                 goto leave;
4073         }
4074
4075         if ((flags & (MDB_RDONLY|MDB_NOLOCK)) == MDB_RDONLY) {
4076                 rc = mdb_env_setup_locks(env, lpath, mode, &excl);
4077                 if (rc)
4078                         goto leave;
4079         }
4080
4081         if ((rc = mdb_env_open2(env)) == MDB_SUCCESS) {
4082                 if (flags & (MDB_RDONLY|MDB_WRITEMAP)) {
4083                         env->me_mfd = env->me_fd;
4084                 } else {
4085                         /* Synchronous fd for meta writes. Needed even with
4086                          * MDB_NOSYNC/MDB_NOMETASYNC, in case these get reset.
4087                          */
4088 #ifdef _WIN32
4089                         len = OPEN_EXISTING;
4090                         env->me_mfd = CreateFile(dpath, oflags,
4091                                 FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, len,
4092                                 mode | FILE_FLAG_WRITE_THROUGH, NULL);
4093 #else
4094                         oflags &= ~O_CREAT;
4095                         env->me_mfd = open(dpath, oflags | MDB_DSYNC, mode);
4096 #endif
4097                         if (env->me_mfd == INVALID_HANDLE_VALUE) {
4098                                 rc = ErrCode();
4099                                 goto leave;
4100                         }
4101                 }
4102                 DPRINTF(("opened dbenv %p", (void *) env));
4103                 if (excl > 0) {
4104                         rc = mdb_env_share_locks(env, &excl);
4105                         if (rc)
4106                                 goto leave;
4107                 }
4108                 if (!((flags & MDB_RDONLY) ||
4109                           (env->me_pbuf = calloc(1, env->me_psize))))
4110                         rc = ENOMEM;
4111         }
4112
4113 leave:
4114         if (rc) {
4115                 mdb_env_close0(env, excl);
4116         }
4117         free(lpath);
4118         return rc;
4119 }
4120
4121 /** Destroy resources from mdb_env_open(), clear our readers & DBIs */
4122 static void
4123 mdb_env_close0(MDB_env *env, int excl)
4124 {
4125         int i;
4126
4127         if (!(env->me_flags & MDB_ENV_ACTIVE))
4128                 return;
4129
4130         /* Doing this here since me_dbxs may not exist during mdb_env_close */
4131         for (i = env->me_maxdbs; --i > MAIN_DBI; )
4132                 free(env->me_dbxs[i].md_name.mv_data);
4133
4134         free(env->me_pbuf);
4135         free(env->me_dbflags);
4136         free(env->me_dbxs);
4137         free(env->me_path);
4138         free(env->me_dirty_list);
4139         mdb_midl_free(env->me_free_pgs);
4140
4141         if (env->me_flags & MDB_ENV_TXKEY) {
4142                 pthread_key_delete(env->me_txkey);
4143 #ifdef _WIN32
4144                 /* Delete our key from the global list */
4145                 for (i=0; i<mdb_tls_nkeys; i++)
4146                         if (mdb_tls_keys[i] == env->me_txkey) {
4147                                 mdb_tls_keys[i] = mdb_tls_keys[mdb_tls_nkeys-1];
4148                                 mdb_tls_nkeys--;
4149                                 break;
4150                         }
4151 #endif
4152         }
4153
4154         if (env->me_map) {
4155                 munmap(env->me_map, env->me_mapsize);
4156         }
4157         if (env->me_mfd != env->me_fd && env->me_mfd != INVALID_HANDLE_VALUE)
4158                 (void) close(env->me_mfd);
4159         if (env->me_fd != INVALID_HANDLE_VALUE)
4160                 (void) close(env->me_fd);
4161         if (env->me_txns) {
4162                 MDB_PID_T pid = env->me_pid;
4163                 /* Clearing readers is done in this function because
4164                  * me_txkey with its destructor must be disabled first.
4165                  */
4166                 for (i = env->me_numreaders; --i >= 0; )
4167                         if (env->me_txns->mti_readers[i].mr_pid == pid)
4168                                 env->me_txns->mti_readers[i].mr_pid = 0;
4169 #ifdef _WIN32
4170                 if (env->me_rmutex) {
4171                         CloseHandle(env->me_rmutex);
4172                         if (env->me_wmutex) CloseHandle(env->me_wmutex);
4173                 }
4174                 /* Windows automatically destroys the mutexes when
4175                  * the last handle closes.
4176                  */
4177 #elif defined(MDB_USE_POSIX_SEM)
4178                 if (env->me_rmutex != SEM_FAILED) {
4179                         sem_close(env->me_rmutex);
4180                         if (env->me_wmutex != SEM_FAILED)
4181                                 sem_close(env->me_wmutex);
4182                         /* If we have the filelock:  If we are the
4183                          * only remaining user, clean up semaphores.
4184                          */
4185                         if (excl == 0)
4186                                 mdb_env_excl_lock(env, &excl);
4187                         if (excl > 0) {
4188                                 sem_unlink(env->me_txns->mti_rmname);
4189                                 sem_unlink(env->me_txns->mti_wmname);
4190                         }
4191                 }
4192 #endif
4193                 munmap((void *)env->me_txns, (env->me_maxreaders-1)*sizeof(MDB_reader)+sizeof(MDB_txninfo));
4194         }
4195         if (env->me_lfd != INVALID_HANDLE_VALUE) {
4196 #ifdef _WIN32
4197                 if (excl >= 0) {
4198                         /* Unlock the lockfile.  Windows would have unlocked it
4199                          * after closing anyway, but not necessarily at once.
4200                          */
4201                         UnlockFile(env->me_lfd, 0, 0, 1, 0);
4202                 }
4203 #endif
4204                 (void) close(env->me_lfd);
4205         }
4206
4207         env->me_flags &= ~(MDB_ENV_ACTIVE|MDB_ENV_TXKEY);
4208 }
4209
4210 int
4211 mdb_env_copyfd(MDB_env *env, HANDLE fd)
4212 {
4213         MDB_txn *txn = NULL;
4214         int rc;
4215         size_t wsize;
4216         char *ptr;
4217 #ifdef _WIN32
4218         DWORD len, w2;
4219 #define DO_WRITE(rc, fd, ptr, w2, len)  rc = WriteFile(fd, ptr, w2, &len, NULL)
4220 #else
4221         ssize_t len;
4222         size_t w2;
4223 #define DO_WRITE(rc, fd, ptr, w2, len)  len = write(fd, ptr, w2); rc = (len >= 0)
4224 #endif
4225
4226         /* Do the lock/unlock of the reader mutex before starting the
4227          * write txn.  Otherwise other read txns could block writers.
4228          */
4229         rc = mdb_txn_begin(env, NULL, MDB_RDONLY, &txn);
4230         if (rc)
4231                 return rc;
4232
4233         if (env->me_txns) {
4234                 /* We must start the actual read txn after blocking writers */
4235                 mdb_txn_reset0(txn, "reset-stage1");
4236
4237                 /* Temporarily block writers until we snapshot the meta pages */
4238                 LOCK_MUTEX_W(env);
4239
4240                 rc = mdb_txn_renew0(txn);
4241                 if (rc) {
4242                         UNLOCK_MUTEX_W(env);
4243                         goto leave;
4244                 }
4245         }
4246
4247         wsize = env->me_psize * 2;
4248         ptr = env->me_map;
4249         w2 = wsize;
4250         while (w2 > 0) {
4251                 DO_WRITE(rc, fd, ptr, w2, len);
4252                 if (!rc) {
4253                         rc = ErrCode();
4254                         break;
4255                 } else if (len > 0) {
4256                         rc = MDB_SUCCESS;
4257                         ptr += len;
4258                         w2 -= len;
4259                         continue;
4260                 } else {
4261                         /* Non-blocking or async handles are not supported */
4262                         rc = EIO;
4263                         break;
4264                 }
4265         }
4266         if (env->me_txns)
4267                 UNLOCK_MUTEX_W(env);
4268
4269         if (rc)
4270                 goto leave;
4271
4272         wsize = txn->mt_next_pgno * env->me_psize - wsize;
4273         while (wsize > 0) {
4274                 if (wsize > MAX_WRITE)
4275                         w2 = MAX_WRITE;
4276                 else
4277                         w2 = wsize;
4278                 DO_WRITE(rc, fd, ptr, w2, len);
4279                 if (!rc) {
4280                         rc = ErrCode();
4281                         break;
4282                 } else if (len > 0) {
4283                         rc = MDB_SUCCESS;
4284                         ptr += len;
4285                         wsize -= len;
4286                         continue;
4287                 } else {
4288                         rc = EIO;
4289                         break;
4290                 }
4291         }
4292
4293 leave:
4294         mdb_txn_abort(txn);
4295         return rc;
4296 }
4297
4298 int
4299 mdb_env_copy(MDB_env *env, const char *path)
4300 {
4301         int rc, len;
4302         char *lpath;
4303         HANDLE newfd = INVALID_HANDLE_VALUE;
4304
4305         if (env->me_flags & MDB_NOSUBDIR) {
4306                 lpath = (char *)path;
4307         } else {
4308                 len = strlen(path);
4309                 len += sizeof(DATANAME);
4310                 lpath = malloc(len);
4311                 if (!lpath)
4312                         return ENOMEM;
4313                 sprintf(lpath, "%s" DATANAME, path);
4314         }
4315
4316         /* The destination path must exist, but the destination file must not.
4317          * We don't want the OS to cache the writes, since the source data is
4318          * already in the OS cache.
4319          */
4320 #ifdef _WIN32
4321         newfd = CreateFile(lpath, GENERIC_WRITE, 0, NULL, CREATE_NEW,
4322                                 FILE_FLAG_NO_BUFFERING|FILE_FLAG_WRITE_THROUGH, NULL);
4323 #else
4324         newfd = open(lpath, O_WRONLY|O_CREAT|O_EXCL, 0666);
4325 #endif
4326         if (newfd == INVALID_HANDLE_VALUE) {
4327                 rc = ErrCode();
4328                 goto leave;
4329         }
4330
4331 #ifdef O_DIRECT
4332         /* Set O_DIRECT if the file system supports it */
4333         if ((rc = fcntl(newfd, F_GETFL)) != -1)
4334                 (void) fcntl(newfd, F_SETFL, rc | O_DIRECT);
4335 #endif
4336 #ifdef F_NOCACHE        /* __APPLE__ */
4337         rc = fcntl(newfd, F_NOCACHE, 1);
4338         if (rc) {
4339                 rc = ErrCode();
4340                 goto leave;
4341         }
4342 #endif
4343
4344         rc = mdb_env_copyfd(env, newfd);
4345
4346 leave:
4347         if (!(env->me_flags & MDB_NOSUBDIR))
4348                 free(lpath);
4349         if (newfd != INVALID_HANDLE_VALUE)
4350                 if (close(newfd) < 0 && rc == MDB_SUCCESS)
4351                         rc = ErrCode();
4352
4353         return rc;
4354 }
4355
4356 void
4357 mdb_env_close(MDB_env *env)
4358 {
4359         MDB_page *dp;
4360
4361         if (env == NULL)
4362                 return;
4363
4364         VGMEMP_DESTROY(env);
4365         while ((dp = env->me_dpages) != NULL) {
4366                 VGMEMP_DEFINED(&dp->mp_next, sizeof(dp->mp_next));
4367                 env->me_dpages = dp->mp_next;
4368                 free(dp);
4369         }
4370
4371         mdb_env_close0(env, 0);
4372         free(env);
4373 }
4374
4375 /** Compare two items pointing at aligned size_t's */
4376 static int
4377 mdb_cmp_long(const MDB_val *a, const MDB_val *b)
4378 {
4379         return (*(size_t *)a->mv_data < *(size_t *)b->mv_data) ? -1 :
4380                 *(size_t *)a->mv_data > *(size_t *)b->mv_data;
4381 }
4382
4383 /** Compare two items pointing at aligned unsigned int's */
4384 static int
4385 mdb_cmp_int(const MDB_val *a, const MDB_val *b)
4386 {
4387         return (*(unsigned int *)a->mv_data < *(unsigned int *)b->mv_data) ? -1 :
4388                 *(unsigned int *)a->mv_data > *(unsigned int *)b->mv_data;
4389 }
4390
4391 /** Compare two items pointing at unsigned ints of unknown alignment.
4392  *      Nodes and keys are guaranteed to be 2-byte aligned.
4393  */
4394 static int
4395 mdb_cmp_cint(const MDB_val *a, const MDB_val *b)
4396 {
4397 #if BYTE_ORDER == LITTLE_ENDIAN
4398         unsigned short *u, *c;
4399         int x;
4400
4401         u = (unsigned short *) ((char *) a->mv_data + a->mv_size);
4402         c = (unsigned short *) ((char *) b->mv_data + a->mv_size);
4403         do {
4404                 x = *--u - *--c;
4405         } while(!x && u > (unsigned short *)a->mv_data);
4406         return x;
4407 #else
4408         return memcmp(a->mv_data, b->mv_data, a->mv_size);
4409 #endif
4410 }
4411
4412 /** Compare two items lexically */
4413 static int
4414 mdb_cmp_memn(const MDB_val *a, const MDB_val *b)
4415 {
4416         int diff;
4417         ssize_t len_diff;
4418         unsigned int len;
4419
4420         len = a->mv_size;
4421         len_diff = (ssize_t) a->mv_size - (ssize_t) b->mv_size;
4422         if (len_diff > 0) {
4423                 len = b->mv_size;
4424                 len_diff = 1;
4425         }
4426
4427         diff = memcmp(a->mv_data, b->mv_data, len);
4428         return diff ? diff : len_diff<0 ? -1 : len_diff;
4429 }
4430
4431 /** Compare two items in reverse byte order */
4432 static int
4433 mdb_cmp_memnr(const MDB_val *a, const MDB_val *b)
4434 {
4435         const unsigned char     *p1, *p2, *p1_lim;
4436         ssize_t len_diff;
4437         int diff;
4438
4439         p1_lim = (const unsigned char *)a->mv_data;
4440         p1 = (const unsigned char *)a->mv_data + a->mv_size;
4441         p2 = (const unsigned char *)b->mv_data + b->mv_size;
4442
4443         len_diff = (ssize_t) a->mv_size - (ssize_t) b->mv_size;
4444         if (len_diff > 0) {
4445                 p1_lim += len_diff;
4446                 len_diff = 1;
4447         }
4448
4449         while (p1 > p1_lim) {
4450                 diff = *--p1 - *--p2;
4451                 if (diff)
4452                         return diff;
4453         }
4454         return len_diff<0 ? -1 : len_diff;
4455 }
4456
4457 /** Search for key within a page, using binary search.
4458  * Returns the smallest entry larger or equal to the key.
4459  * If exactp is non-null, stores whether the found entry was an exact match
4460  * in *exactp (1 or 0).
4461  * Updates the cursor index with the index of the found entry.
4462  * If no entry larger or equal to the key is found, returns NULL.
4463  */
4464 static MDB_node *
4465 mdb_node_search(MDB_cursor *mc, MDB_val *key, int *exactp)
4466 {
4467         unsigned int     i = 0, nkeys;
4468         int              low, high;
4469         int              rc = 0;
4470         MDB_page *mp = mc->mc_pg[mc->mc_top];
4471         MDB_node        *node = NULL;
4472         MDB_val  nodekey;
4473         MDB_cmp_func *cmp;
4474         DKBUF;
4475
4476         nkeys = NUMKEYS(mp);
4477
4478 #if MDB_DEBUG
4479         {
4480         pgno_t pgno;
4481         COPY_PGNO(pgno, mp->mp_pgno);
4482         DPRINTF(("searching %u keys in %s %spage %"Z"u",
4483             nkeys, IS_LEAF(mp) ? "leaf" : "branch", IS_SUBP(mp) ? "sub-" : "",
4484             pgno));
4485         }
4486 #endif
4487
4488         assert(nkeys > 0);
4489
4490         low = IS_LEAF(mp) ? 0 : 1;
4491         high = nkeys - 1;
4492         cmp = mc->mc_dbx->md_cmp;
4493
4494         /* Branch pages have no data, so if using integer keys,
4495          * alignment is guaranteed. Use faster mdb_cmp_int.
4496          */
4497         if (cmp == mdb_cmp_cint && IS_BRANCH(mp)) {
4498                 if (NODEPTR(mp, 1)->mn_ksize == sizeof(size_t))
4499                         cmp = mdb_cmp_long;
4500                 else
4501                         cmp = mdb_cmp_int;
4502         }
4503
4504         if (IS_LEAF2(mp)) {
4505                 nodekey.mv_size = mc->mc_db->md_pad;
4506                 node = NODEPTR(mp, 0);  /* fake */
4507                 while (low <= high) {
4508                         i = (low + high) >> 1;
4509                         nodekey.mv_data = LEAF2KEY(mp, i, nodekey.mv_size);
4510                         rc = cmp(key, &nodekey);
4511                         DPRINTF(("found leaf index %u [%s], rc = %i",
4512                             i, DKEY(&nodekey), rc));
4513                         if (rc == 0)
4514                                 break;
4515                         if (rc > 0)
4516                                 low = i + 1;
4517                         else
4518                                 high = i - 1;
4519                 }
4520         } else {
4521                 while (low <= high) {
4522                         i = (low + high) >> 1;
4523
4524                         node = NODEPTR(mp, i);
4525                         nodekey.mv_size = NODEKSZ(node);
4526                         nodekey.mv_data = NODEKEY(node);
4527
4528                         rc = cmp(key, &nodekey);
4529 #if MDB_DEBUG
4530                         if (IS_LEAF(mp))
4531                                 DPRINTF(("found leaf index %u [%s], rc = %i",
4532                                     i, DKEY(&nodekey), rc));
4533                         else
4534                                 DPRINTF(("found branch index %u [%s -> %"Z"u], rc = %i",
4535                                     i, DKEY(&nodekey), NODEPGNO(node), rc));
4536 #endif
4537                         if (rc == 0)
4538                                 break;
4539                         if (rc > 0)
4540                                 low = i + 1;
4541                         else
4542                                 high = i - 1;
4543                 }
4544         }
4545
4546         if (rc > 0) {   /* Found entry is less than the key. */
4547                 i++;    /* Skip to get the smallest entry larger than key. */
4548                 if (!IS_LEAF2(mp))
4549                         node = NODEPTR(mp, i);
4550         }
4551         if (exactp)
4552                 *exactp = (rc == 0);
4553         /* store the key index */
4554         mc->mc_ki[mc->mc_top] = i;
4555         if (i >= nkeys)
4556                 /* There is no entry larger or equal to the key. */
4557                 return NULL;
4558
4559         /* nodeptr is fake for LEAF2 */
4560         return node;
4561 }
4562
4563 #if 0
4564 static void
4565 mdb_cursor_adjust(MDB_cursor *mc, func)
4566 {
4567         MDB_cursor *m2;
4568
4569         for (m2 = mc->mc_txn->mt_cursors[mc->mc_dbi]; m2; m2=m2->mc_next) {
4570                 if (m2->mc_pg[m2->mc_top] == mc->mc_pg[mc->mc_top]) {
4571                         func(mc, m2);
4572                 }
4573         }
4574 }
4575 #endif
4576
4577 /** Pop a page off the top of the cursor's stack. */
4578 static void
4579 mdb_cursor_pop(MDB_cursor *mc)
4580 {
4581         if (mc->mc_snum) {
4582 #if MDB_DEBUG
4583                 MDB_page        *top = mc->mc_pg[mc->mc_top];
4584 #endif
4585                 mc->mc_snum--;
4586                 if (mc->mc_snum)
4587                         mc->mc_top--;
4588
4589                 DPRINTF(("popped page %"Z"u off db %d cursor %p", top->mp_pgno,
4590                         DDBI(mc), (void *) mc));
4591         }
4592 }
4593
4594 /** Push a page onto the top of the cursor's stack. */
4595 static int
4596 mdb_cursor_push(MDB_cursor *mc, MDB_page *mp)
4597 {
4598         DPRINTF(("pushing page %"Z"u on db %d cursor %p", mp->mp_pgno,
4599                 DDBI(mc), (void *) mc));
4600
4601         if (mc->mc_snum >= CURSOR_STACK) {
4602                 assert(mc->mc_snum < CURSOR_STACK);
4603                 return MDB_CURSOR_FULL;
4604         }
4605
4606         mc->mc_top = mc->mc_snum++;
4607         mc->mc_pg[mc->mc_top] = mp;
4608         mc->mc_ki[mc->mc_top] = 0;
4609
4610         return MDB_SUCCESS;
4611 }
4612
4613 /** Find the address of the page corresponding to a given page number.
4614  * @param[in] txn the transaction for this access.
4615  * @param[in] pgno the page number for the page to retrieve.
4616  * @param[out] ret address of a pointer where the page's address will be stored.
4617  * @param[out] lvl dirty_list inheritance level of found page. 1=current txn, 0=mapped page.
4618  * @return 0 on success, non-zero on failure.
4619  */
4620 static int
4621 mdb_page_get(MDB_txn *txn, pgno_t pgno, MDB_page **ret, int *lvl)
4622 {
4623         MDB_env *env = txn->mt_env;
4624         MDB_page *p = NULL;
4625         int level;
4626
4627         if (!((txn->mt_flags & MDB_TXN_RDONLY) | (env->me_flags & MDB_WRITEMAP))) {
4628                 MDB_txn *tx2 = txn;
4629                 level = 1;
4630                 do {
4631                         MDB_ID2L dl = tx2->mt_u.dirty_list;
4632                         unsigned x;
4633                         /* Spilled pages were dirtied in this txn and flushed
4634                          * because the dirty list got full. Bring this page
4635                          * back in from the map (but don't unspill it here,
4636                          * leave that unless page_touch happens again).
4637                          */
4638                         if (tx2->mt_spill_pgs) {
4639                                 MDB_ID pn = pgno << 1;
4640                                 x = mdb_midl_search(tx2->mt_spill_pgs, pn);
4641                                 if (x <= tx2->mt_spill_pgs[0] && tx2->mt_spill_pgs[x] == pn) {
4642                                         p = (MDB_page *)(env->me_map + env->me_psize * pgno);
4643                                         goto done;
4644                                 }
4645                         }
4646                         if (dl[0].mid) {
4647                                 unsigned x = mdb_mid2l_search(dl, pgno);
4648                                 if (x <= dl[0].mid && dl[x].mid == pgno) {
4649                                         p = dl[x].mptr;
4650                                         goto done;
4651                                 }
4652                         }
4653                         level++;
4654                 } while ((tx2 = tx2->mt_parent) != NULL);
4655         }
4656
4657         if (pgno < txn->mt_next_pgno) {
4658                 level = 0;
4659                 p = (MDB_page *)(env->me_map + env->me_psize * pgno);
4660         } else {
4661                 DPRINTF(("page %"Z"u not found", pgno));
4662                 assert(p != NULL);
4663                 return MDB_PAGE_NOTFOUND;
4664         }
4665
4666 done:
4667         *ret = p;
4668         if (lvl)
4669                 *lvl = level;
4670         return MDB_SUCCESS;
4671 }
4672
4673 /** Finish #mdb_page_search() / #mdb_page_search_lowest().
4674  *      The cursor is at the root page, set up the rest of it.
4675  */
4676 static int
4677 mdb_page_search_root(MDB_cursor *mc, MDB_val *key, int flags)
4678 {
4679         MDB_page        *mp = mc->mc_pg[mc->mc_top];
4680         int rc;
4681         DKBUF;
4682
4683         while (IS_BRANCH(mp)) {
4684                 MDB_node        *node;
4685                 indx_t          i;
4686
4687                 DPRINTF(("branch page %"Z"u has %u keys", mp->mp_pgno, NUMKEYS(mp)));
4688                 assert(NUMKEYS(mp) > 1);
4689                 DPRINTF(("found index 0 to page %"Z"u", NODEPGNO(NODEPTR(mp, 0))));
4690
4691                 if (flags & (MDB_PS_FIRST|MDB_PS_LAST)) {
4692                         i = 0;
4693                         if (flags & MDB_PS_LAST)
4694                                 i = NUMKEYS(mp) - 1;
4695                 } else {
4696                         int      exact;
4697                         node = mdb_node_search(mc, key, &exact);
4698                         if (node == NULL)
4699                                 i = NUMKEYS(mp) - 1;
4700                         else {
4701                                 i = mc->mc_ki[mc->mc_top];
4702                                 if (!exact) {
4703                                         assert(i > 0);
4704                                         i--;
4705                                 }
4706                         }
4707                         DPRINTF(("following index %u for key [%s]", i, DKEY(key)));
4708                 }
4709
4710                 assert(i < NUMKEYS(mp));
4711                 node = NODEPTR(mp, i);
4712
4713                 if ((rc = mdb_page_get(mc->mc_txn, NODEPGNO(node), &mp, NULL)) != 0)
4714                         return rc;
4715
4716                 mc->mc_ki[mc->mc_top] = i;
4717                 if ((rc = mdb_cursor_push(mc, mp)))
4718                         return rc;
4719
4720                 if (flags & MDB_PS_MODIFY) {
4721                         if ((rc = mdb_page_touch(mc)) != 0)
4722                                 return rc;
4723                         mp = mc->mc_pg[mc->mc_top];
4724                 }
4725         }
4726
4727         if (!IS_LEAF(mp)) {
4728                 DPRINTF(("internal error, index points to a %02X page!?",
4729                     mp->mp_flags));
4730                 return MDB_CORRUPTED;
4731         }
4732
4733         DPRINTF(("found leaf page %"Z"u for key [%s]", mp->mp_pgno,
4734             key ? DKEY(key) : "null"));
4735         mc->mc_flags |= C_INITIALIZED;
4736         mc->mc_flags &= ~C_EOF;
4737
4738         return MDB_SUCCESS;
4739 }
4740
4741 /** Search for the lowest key under the current branch page.
4742  * This just bypasses a NUMKEYS check in the current page
4743  * before calling mdb_page_search_root(), because the callers
4744  * are all in situations where the current page is known to
4745  * be underfilled.
4746  */
4747 static int
4748 mdb_page_search_lowest(MDB_cursor *mc)
4749 {
4750         MDB_page        *mp = mc->mc_pg[mc->mc_top];
4751         MDB_node        *node = NODEPTR(mp, 0);
4752         int rc;
4753
4754         if ((rc = mdb_page_get(mc->mc_txn, NODEPGNO(node), &mp, NULL)) != 0)
4755                 return rc;
4756
4757         mc->mc_ki[mc->mc_top] = 0;
4758         if ((rc = mdb_cursor_push(mc, mp)))
4759                 return rc;
4760         return mdb_page_search_root(mc, NULL, MDB_PS_FIRST);
4761 }
4762
4763 /** Search for the page a given key should be in.
4764  * Push it and its parent pages on the cursor stack.
4765  * @param[in,out] mc the cursor for this operation.
4766  * @param[in] key the key to search for, or NULL for first/last page.
4767  * @param[in] flags If MDB_PS_MODIFY is set, visited pages in the DB
4768  *   are touched (updated with new page numbers).
4769  *   If MDB_PS_FIRST or MDB_PS_LAST is set, find first or last leaf.
4770  *   This is used by #mdb_cursor_first() and #mdb_cursor_last().
4771  *   If MDB_PS_ROOTONLY set, just fetch root node, no further lookups.
4772  * @return 0 on success, non-zero on failure.
4773  */
4774 static int
4775 mdb_page_search(MDB_cursor *mc, MDB_val *key, int flags)
4776 {
4777         int              rc;
4778         pgno_t           root;
4779
4780         /* Make sure the txn is still viable, then find the root from
4781          * the txn's db table and set it as the root of the cursor's stack.
4782          */
4783         if (F_ISSET(mc->mc_txn->mt_flags, MDB_TXN_ERROR)) {
4784                 DPUTS("transaction has failed, must abort");
4785                 return MDB_BAD_TXN;
4786         } else {
4787                 /* Make sure we're using an up-to-date root */
4788                 if (*mc->mc_dbflag & DB_STALE) {
4789                                 MDB_cursor mc2;
4790                                 mdb_cursor_init(&mc2, mc->mc_txn, MAIN_DBI, NULL);
4791                                 rc = mdb_page_search(&mc2, &mc->mc_dbx->md_name, 0);
4792                                 if (rc)
4793                                         return rc;
4794                                 {
4795                                         MDB_val data;
4796                                         int exact = 0;
4797                                         uint16_t flags;
4798                                         MDB_node *leaf = mdb_node_search(&mc2,
4799                                                 &mc->mc_dbx->md_name, &exact);
4800                                         if (!exact)
4801                                                 return MDB_NOTFOUND;
4802                                         rc = mdb_node_read(mc->mc_txn, leaf, &data);
4803                                         if (rc)
4804                                                 return rc;
4805                                         memcpy(&flags, ((char *) data.mv_data + offsetof(MDB_db, md_flags)),
4806                                                 sizeof(uint16_t));
4807                                         /* The txn may not know this DBI, or another process may
4808                                          * have dropped and recreated the DB with other flags.
4809                                          */
4810                                         if ((mc->mc_db->md_flags & PERSISTENT_FLAGS) != flags)
4811                                                 return MDB_INCOMPATIBLE;
4812                                         memcpy(mc->mc_db, data.mv_data, sizeof(MDB_db));
4813                                 }
4814                                 *mc->mc_dbflag &= ~DB_STALE;
4815                 }
4816                 root = mc->mc_db->md_root;
4817
4818                 if (root == P_INVALID) {                /* Tree is empty. */
4819                         DPUTS("tree is empty");
4820                         return MDB_NOTFOUND;
4821                 }
4822         }
4823
4824         assert(root > 1);
4825         if (!mc->mc_pg[0] || mc->mc_pg[0]->mp_pgno != root)
4826                 if ((rc = mdb_page_get(mc->mc_txn, root, &mc->mc_pg[0], NULL)) != 0)
4827                         return rc;
4828
4829         mc->mc_snum = 1;
4830         mc->mc_top = 0;
4831
4832         DPRINTF(("db %d root page %"Z"u has flags 0x%X",
4833                 DDBI(mc), root, mc->mc_pg[0]->mp_flags));
4834
4835         if (flags & MDB_PS_MODIFY) {
4836                 if ((rc = mdb_page_touch(mc)))
4837                         return rc;
4838         }
4839
4840         if (flags & MDB_PS_ROOTONLY)
4841                 return MDB_SUCCESS;
4842
4843         return mdb_page_search_root(mc, key, flags);
4844 }
4845
4846 static int
4847 mdb_ovpage_free(MDB_cursor *mc, MDB_page *mp)
4848 {
4849         MDB_txn *txn = mc->mc_txn;
4850         pgno_t pg = mp->mp_pgno;
4851         unsigned x = 0, ovpages = mp->mp_pages;
4852         MDB_env *env = txn->mt_env;
4853         MDB_IDL sl = txn->mt_spill_pgs;
4854         MDB_ID pn = pg << 1;
4855         int rc;
4856
4857         DPRINTF(("free ov page %"Z"u (%d)", pg, ovpages));
4858         /* If the page is dirty or on the spill list we just acquired it,
4859          * so we should give it back to our current free list, if any.
4860          * Otherwise put it onto the list of pages we freed in this txn.
4861          *
4862          * Won't create me_pghead: me_pglast must be inited along with it.
4863          * Unsupported in nested txns: They would need to hide the page
4864          * range in ancestor txns' dirty and spilled lists.
4865          */
4866         if (env->me_pghead &&
4867                 !txn->mt_parent &&
4868                 ((mp->mp_flags & P_DIRTY) ||
4869                  (sl && (x = mdb_midl_search(sl, pn)) <= sl[0] && sl[x] == pn)))
4870         {
4871                 unsigned i, j;
4872                 pgno_t *mop;
4873                 MDB_ID2 *dl, ix, iy;
4874                 rc = mdb_midl_need(&env->me_pghead, ovpages);
4875                 if (rc)
4876                         return rc;
4877                 if (!(mp->mp_flags & P_DIRTY)) {
4878                         /* This page is no longer spilled */
4879                         if (x == sl[0])
4880                                 sl[0]--;
4881                         else
4882                                 sl[x] |= 1;
4883                         goto release;
4884                 }
4885                 /* Remove from dirty list */
4886                 dl = txn->mt_u.dirty_list;
4887                 x = dl[0].mid--;
4888                 for (ix = dl[x]; ix.mptr != mp; ix = iy) {
4889                         if (x > 1) {
4890                                 x--;
4891                                 iy = dl[x];
4892                                 dl[x] = ix;
4893                         } else {
4894                                 assert(x > 1);
4895                                 j = ++(dl[0].mid);
4896                                 dl[j] = ix;             /* Unsorted. OK when MDB_TXN_ERROR. */
4897                                 txn->mt_flags |= MDB_TXN_ERROR;
4898                                 return MDB_CORRUPTED;
4899                         }
4900                 }
4901                 if (!(env->me_flags & MDB_WRITEMAP))
4902                         mdb_dpage_free(env, mp);
4903 release:
4904                 /* Insert in me_pghead */
4905                 mop = env->me_pghead;
4906                 j = mop[0] + ovpages;
4907                 for (i = mop[0]; i && mop[i] < pg; i--)
4908                         mop[j--] = mop[i];
4909                 while (j>i)
4910                         mop[j--] = pg++;
4911                 mop[0] += ovpages;
4912         } else {
4913                 rc = mdb_midl_append_range(&txn->mt_free_pgs, pg, ovpages);
4914                 if (rc)
4915                         return rc;
4916         }
4917         mc->mc_db->md_overflow_pages -= ovpages;
4918         return 0;
4919 }
4920
4921 /** Return the data associated with a given node.
4922  * @param[in] txn The transaction for this operation.
4923  * @param[in] leaf The node being read.
4924  * @param[out] data Updated to point to the node's data.
4925  * @return 0 on success, non-zero on failure.
4926  */
4927 static int
4928 mdb_node_read(MDB_txn *txn, MDB_node *leaf, MDB_val *data)
4929 {
4930         MDB_page        *omp;           /* overflow page */
4931         pgno_t           pgno;
4932         int rc;
4933
4934         if (!F_ISSET(leaf->mn_flags, F_BIGDATA)) {
4935                 data->mv_size = NODEDSZ(leaf);
4936                 data->mv_data = NODEDATA(leaf);
4937                 return MDB_SUCCESS;
4938         }
4939
4940         /* Read overflow data.
4941          */
4942         data->mv_size = NODEDSZ(leaf);
4943         memcpy(&pgno, NODEDATA(leaf), sizeof(pgno));
4944         if ((rc = mdb_page_get(txn, pgno, &omp, NULL)) != 0) {
4945                 DPRINTF(("read overflow page %"Z"u failed", pgno));
4946                 return rc;
4947         }
4948         data->mv_data = METADATA(omp);
4949
4950         return MDB_SUCCESS;
4951 }
4952
4953 int
4954 mdb_get(MDB_txn *txn, MDB_dbi dbi,
4955     MDB_val *key, MDB_val *data)
4956 {
4957         MDB_cursor      mc;
4958         MDB_xcursor     mx;
4959         int exact = 0;
4960         DKBUF;
4961
4962         assert(key);
4963         assert(data);
4964         DPRINTF(("===> get db %u key [%s]", dbi, DKEY(key)));
4965
4966         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
4967                 return EINVAL;
4968
4969         if (txn->mt_flags & MDB_TXN_ERROR)
4970                 return MDB_BAD_TXN;
4971
4972         mdb_cursor_init(&mc, txn, dbi, &mx);
4973         return mdb_cursor_set(&mc, key, data, MDB_SET, &exact);
4974 }
4975
4976 /** Find a sibling for a page.
4977  * Replaces the page at the top of the cursor's stack with the
4978  * specified sibling, if one exists.
4979  * @param[in] mc The cursor for this operation.
4980  * @param[in] move_right Non-zero if the right sibling is requested,
4981  * otherwise the left sibling.
4982  * @return 0 on success, non-zero on failure.
4983  */
4984 static int
4985 mdb_cursor_sibling(MDB_cursor *mc, int move_right)
4986 {
4987         int              rc;
4988         MDB_node        *indx;
4989         MDB_page        *mp;
4990
4991         if (mc->mc_snum < 2) {
4992                 return MDB_NOTFOUND;            /* root has no siblings */
4993         }
4994
4995         mdb_cursor_pop(mc);
4996         DPRINTF(("parent page is page %"Z"u, index %u",
4997                 mc->mc_pg[mc->mc_top]->mp_pgno, mc->mc_ki[mc->mc_top]));
4998
4999         if (move_right ? (mc->mc_ki[mc->mc_top] + 1u >= NUMKEYS(mc->mc_pg[mc->mc_top]))
5000                        : (mc->mc_ki[mc->mc_top] == 0)) {
5001                 DPRINTF(("no more keys left, moving to %s sibling",
5002                     move_right ? "right" : "left"));
5003                 if ((rc = mdb_cursor_sibling(mc, move_right)) != MDB_SUCCESS) {
5004                         /* undo cursor_pop before returning */
5005                         mc->mc_top++;
5006                         mc->mc_snum++;
5007                         return rc;
5008                 }
5009         } else {
5010                 if (move_right)
5011                         mc->mc_ki[mc->mc_top]++;
5012                 else
5013                         mc->mc_ki[mc->mc_top]--;
5014                 DPRINTF(("just moving to %s index key %u",
5015                     move_right ? "right" : "left", mc->mc_ki[mc->mc_top]));
5016         }
5017         assert(IS_BRANCH(mc->mc_pg[mc->mc_top]));
5018
5019         indx = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
5020         if ((rc = mdb_page_get(mc->mc_txn, NODEPGNO(indx), &mp, NULL)) != 0) {
5021                 /* mc will be inconsistent if caller does mc_snum++ as above */
5022                 mc->mc_flags &= ~(C_INITIALIZED|C_EOF);
5023                 return rc;
5024         }
5025
5026         mdb_cursor_push(mc, mp);
5027         if (!move_right)
5028                 mc->mc_ki[mc->mc_top] = NUMKEYS(mp)-1;
5029
5030         return MDB_SUCCESS;
5031 }
5032
5033 /** Move the cursor to the next data item. */
5034 static int
5035 mdb_cursor_next(MDB_cursor *mc, MDB_val *key, MDB_val *data, MDB_cursor_op op)
5036 {
5037         MDB_page        *mp;
5038         MDB_node        *leaf;
5039         int rc;
5040
5041         if (mc->mc_flags & C_EOF) {
5042                 return MDB_NOTFOUND;
5043         }
5044
5045         assert(mc->mc_flags & C_INITIALIZED);
5046
5047         mp = mc->mc_pg[mc->mc_top];
5048
5049         if (mc->mc_db->md_flags & MDB_DUPSORT) {
5050                 leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
5051                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5052                         if (op == MDB_NEXT || op == MDB_NEXT_DUP) {
5053                                 rc = mdb_cursor_next(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_NEXT);
5054                                 if (op != MDB_NEXT || rc != MDB_NOTFOUND) {
5055                                         if (rc == MDB_SUCCESS)
5056                                                 MDB_GET_KEY(leaf, key);
5057                                         return rc;
5058                                 }
5059                         }
5060                 } else {
5061                         mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5062                         if (op == MDB_NEXT_DUP)
5063                                 return MDB_NOTFOUND;
5064                 }
5065         }
5066
5067         DPRINTF(("cursor_next: top page is %"Z"u in cursor %p", mp->mp_pgno, (void *) mc));
5068         if (mc->mc_flags & C_DEL)
5069                 goto skip;
5070
5071         if (mc->mc_ki[mc->mc_top] + 1u >= NUMKEYS(mp)) {
5072                 DPUTS("=====> move to next sibling page");
5073                 if ((rc = mdb_cursor_sibling(mc, 1)) != MDB_SUCCESS) {
5074                         mc->mc_flags |= C_EOF;
5075                         return rc;
5076                 }
5077                 mp = mc->mc_pg[mc->mc_top];
5078                 DPRINTF(("next page is %"Z"u, key index %u", mp->mp_pgno, mc->mc_ki[mc->mc_top]));
5079         } else
5080                 mc->mc_ki[mc->mc_top]++;
5081
5082 skip:
5083         DPRINTF(("==> cursor points to page %"Z"u with %u keys, key index %u",
5084             mp->mp_pgno, NUMKEYS(mp), mc->mc_ki[mc->mc_top]));
5085
5086         if (IS_LEAF2(mp)) {
5087                 key->mv_size = mc->mc_db->md_pad;
5088                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
5089                 return MDB_SUCCESS;
5090         }
5091
5092         assert(IS_LEAF(mp));
5093         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
5094
5095         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5096                 mdb_xcursor_init1(mc, leaf);
5097         }
5098         if (data) {
5099                 if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
5100                         return rc;
5101
5102                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5103                         rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
5104                         if (rc != MDB_SUCCESS)
5105                                 return rc;
5106                 }
5107         }
5108
5109         MDB_GET_KEY(leaf, key);
5110         return MDB_SUCCESS;
5111 }
5112
5113 /** Move the cursor to the previous data item. */
5114 static int
5115 mdb_cursor_prev(MDB_cursor *mc, MDB_val *key, MDB_val *data, MDB_cursor_op op)
5116 {
5117         MDB_page        *mp;
5118         MDB_node        *leaf;
5119         int rc;
5120
5121         assert(mc->mc_flags & C_INITIALIZED);
5122
5123         mp = mc->mc_pg[mc->mc_top];
5124
5125         if (mc->mc_db->md_flags & MDB_DUPSORT) {
5126                 leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
5127                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5128                         if (op == MDB_PREV || op == MDB_PREV_DUP) {
5129                                 rc = mdb_cursor_prev(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_PREV);
5130                                 if (op != MDB_PREV || rc != MDB_NOTFOUND) {
5131                                         if (rc == MDB_SUCCESS)
5132                                                 MDB_GET_KEY(leaf, key);
5133                                         return rc;
5134                                 }
5135                         } else {
5136                                 mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5137                                 if (op == MDB_PREV_DUP)
5138                                         return MDB_NOTFOUND;
5139                         }
5140                 }
5141         }
5142
5143         DPRINTF(("cursor_prev: top page is %"Z"u in cursor %p", mp->mp_pgno, (void *) mc));
5144
5145         if (mc->mc_ki[mc->mc_top] == 0)  {
5146                 DPUTS("=====> move to prev sibling page");
5147                 if ((rc = mdb_cursor_sibling(mc, 0)) != MDB_SUCCESS) {
5148                         return rc;
5149                 }
5150                 mp = mc->mc_pg[mc->mc_top];
5151                 mc->mc_ki[mc->mc_top] = NUMKEYS(mp) - 1;
5152                 DPRINTF(("prev page is %"Z"u, key index %u", mp->mp_pgno, mc->mc_ki[mc->mc_top]));
5153         } else
5154                 mc->mc_ki[mc->mc_top]--;
5155
5156         mc->mc_flags &= ~C_EOF;
5157
5158         DPRINTF(("==> cursor points to page %"Z"u with %u keys, key index %u",
5159             mp->mp_pgno, NUMKEYS(mp), mc->mc_ki[mc->mc_top]));
5160
5161         if (IS_LEAF2(mp)) {
5162                 key->mv_size = mc->mc_db->md_pad;
5163                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
5164                 return MDB_SUCCESS;
5165         }
5166
5167         assert(IS_LEAF(mp));
5168         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
5169
5170         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5171                 mdb_xcursor_init1(mc, leaf);
5172         }
5173         if (data) {
5174                 if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
5175                         return rc;
5176
5177                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5178                         rc = mdb_cursor_last(&mc->mc_xcursor->mx_cursor, data, NULL);
5179                         if (rc != MDB_SUCCESS)
5180                                 return rc;
5181                 }
5182         }
5183
5184         MDB_GET_KEY(leaf, key);
5185         return MDB_SUCCESS;
5186 }
5187
5188 /** Set the cursor on a specific data item. */
5189 static int
5190 mdb_cursor_set(MDB_cursor *mc, MDB_val *key, MDB_val *data,
5191     MDB_cursor_op op, int *exactp)
5192 {
5193         int              rc;
5194         MDB_page        *mp;
5195         MDB_node        *leaf = NULL;
5196         DKBUF;
5197
5198         assert(mc);
5199         assert(key);
5200         if (key->mv_size == 0)
5201                 return MDB_BAD_VALSIZE;
5202
5203         if (mc->mc_xcursor)
5204                 mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5205
5206         /* See if we're already on the right page */
5207         if (mc->mc_flags & C_INITIALIZED) {
5208                 MDB_val nodekey;
5209
5210                 mp = mc->mc_pg[mc->mc_top];
5211                 if (!NUMKEYS(mp)) {
5212                         mc->mc_ki[mc->mc_top] = 0;
5213                         return MDB_NOTFOUND;
5214                 }
5215                 if (mp->mp_flags & P_LEAF2) {
5216                         nodekey.mv_size = mc->mc_db->md_pad;
5217                         nodekey.mv_data = LEAF2KEY(mp, 0, nodekey.mv_size);
5218                 } else {
5219                         leaf = NODEPTR(mp, 0);
5220                         MDB_GET_KEY2(leaf, nodekey);
5221                 }
5222                 rc = mc->mc_dbx->md_cmp(key, &nodekey);
5223                 if (rc == 0) {
5224                         /* Probably happens rarely, but first node on the page
5225                          * was the one we wanted.
5226                          */
5227                         mc->mc_ki[mc->mc_top] = 0;
5228                         if (exactp)
5229                                 *exactp = 1;
5230                         goto set1;
5231                 }
5232                 if (rc > 0) {
5233                         unsigned int i;
5234                         unsigned int nkeys = NUMKEYS(mp);
5235                         if (nkeys > 1) {
5236                                 if (mp->mp_flags & P_LEAF2) {
5237                                         nodekey.mv_data = LEAF2KEY(mp,
5238                                                  nkeys-1, nodekey.mv_size);
5239                                 } else {
5240                                         leaf = NODEPTR(mp, nkeys-1);
5241                                         MDB_GET_KEY2(leaf, nodekey);
5242                                 }
5243                                 rc = mc->mc_dbx->md_cmp(key, &nodekey);
5244                                 if (rc == 0) {
5245                                         /* last node was the one we wanted */
5246                                         mc->mc_ki[mc->mc_top] = nkeys-1;
5247                                         if (exactp)
5248                                                 *exactp = 1;
5249                                         goto set1;
5250                                 }
5251                                 if (rc < 0) {
5252                                         if (mc->mc_ki[mc->mc_top] < NUMKEYS(mp)) {
5253                                                 /* This is definitely the right page, skip search_page */
5254                                                 if (mp->mp_flags & P_LEAF2) {
5255                                                         nodekey.mv_data = LEAF2KEY(mp,
5256                                                                  mc->mc_ki[mc->mc_top], nodekey.mv_size);
5257                                                 } else {
5258                                                         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
5259                                                         MDB_GET_KEY2(leaf, nodekey);
5260                                                 }
5261                                                 rc = mc->mc_dbx->md_cmp(key, &nodekey);
5262                                                 if (rc == 0) {
5263                                                         /* current node was the one we wanted */
5264                                                         if (exactp)
5265                                                                 *exactp = 1;
5266                                                         goto set1;
5267                                                 }
5268                                         }
5269                                         rc = 0;
5270                                         goto set2;
5271                                 }
5272                         }
5273                         /* If any parents have right-sibs, search.
5274                          * Otherwise, there's nothing further.
5275                          */
5276                         for (i=0; i<mc->mc_top; i++)
5277                                 if (mc->mc_ki[i] <
5278                                         NUMKEYS(mc->mc_pg[i])-1)
5279                                         break;
5280                         if (i == mc->mc_top) {
5281                                 /* There are no other pages */
5282                                 mc->mc_ki[mc->mc_top] = nkeys;
5283                                 return MDB_NOTFOUND;
5284                         }
5285                 }
5286                 if (!mc->mc_top) {
5287                         /* There are no other pages */
5288                         mc->mc_ki[mc->mc_top] = 0;
5289                         if (op == MDB_SET_RANGE) {
5290                                 rc = 0;
5291                                 goto set1;
5292                         } else
5293                                 return MDB_NOTFOUND;
5294                 }
5295         }
5296
5297         rc = mdb_page_search(mc, key, 0);
5298         if (rc != MDB_SUCCESS)
5299                 return rc;
5300
5301         mp = mc->mc_pg[mc->mc_top];
5302         assert(IS_LEAF(mp));
5303
5304 set2:
5305         leaf = mdb_node_search(mc, key, exactp);
5306         if (exactp != NULL && !*exactp) {
5307                 /* MDB_SET specified and not an exact match. */
5308                 return MDB_NOTFOUND;
5309         }
5310
5311         if (leaf == NULL) {
5312                 DPUTS("===> inexact leaf not found, goto sibling");
5313                 if ((rc = mdb_cursor_sibling(mc, 1)) != MDB_SUCCESS)
5314                         return rc;              /* no entries matched */
5315                 mp = mc->mc_pg[mc->mc_top];
5316                 assert(IS_LEAF(mp));
5317                 leaf = NODEPTR(mp, 0);
5318         }
5319
5320 set1:
5321         mc->mc_flags |= C_INITIALIZED;
5322         mc->mc_flags &= ~C_EOF;
5323
5324         if (IS_LEAF2(mp)) {
5325                 key->mv_size = mc->mc_db->md_pad;
5326                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
5327                 return MDB_SUCCESS;
5328         }
5329
5330         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5331                 mdb_xcursor_init1(mc, leaf);
5332         }
5333         if (data) {
5334                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5335                         if (op == MDB_SET || op == MDB_SET_KEY || op == MDB_SET_RANGE) {
5336                                 rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
5337                         } else {
5338                                 int ex2, *ex2p;
5339                                 if (op == MDB_GET_BOTH) {
5340                                         ex2p = &ex2;
5341                                         ex2 = 0;
5342                                 } else {
5343                                         ex2p = NULL;
5344                                 }
5345                                 rc = mdb_cursor_set(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_SET_RANGE, ex2p);
5346                                 if (rc != MDB_SUCCESS)
5347                                         return rc;
5348                         }
5349                 } else if (op == MDB_GET_BOTH || op == MDB_GET_BOTH_RANGE) {
5350                         MDB_val d2;
5351                         if ((rc = mdb_node_read(mc->mc_txn, leaf, &d2)) != MDB_SUCCESS)
5352                                 return rc;
5353                         rc = mc->mc_dbx->md_dcmp(data, &d2);
5354                         if (rc) {
5355                                 if (op == MDB_GET_BOTH || rc > 0)
5356                                         return MDB_NOTFOUND;
5357                                 rc = 0;
5358                                 *data = d2;
5359                         }
5360
5361                 } else {
5362                         if (mc->mc_xcursor)
5363                                 mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5364                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
5365                                 return rc;
5366                 }
5367         }
5368
5369         /* The key already matches in all other cases */
5370         if (op == MDB_SET_RANGE || op == MDB_SET_KEY)
5371                 MDB_GET_KEY(leaf, key);
5372         DPRINTF(("==> cursor placed on key [%s]", DKEY(key)));
5373
5374         return rc;
5375 }
5376
5377 /** Move the cursor to the first item in the database. */
5378 static int
5379 mdb_cursor_first(MDB_cursor *mc, MDB_val *key, MDB_val *data)
5380 {
5381         int              rc;
5382         MDB_node        *leaf;
5383
5384         if (mc->mc_xcursor)
5385                 mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5386
5387         if (!(mc->mc_flags & C_INITIALIZED) || mc->mc_top) {
5388                 rc = mdb_page_search(mc, NULL, MDB_PS_FIRST);
5389                 if (rc != MDB_SUCCESS)
5390                         return rc;
5391         }
5392         assert(IS_LEAF(mc->mc_pg[mc->mc_top]));
5393
5394         leaf = NODEPTR(mc->mc_pg[mc->mc_top], 0);
5395         mc->mc_flags |= C_INITIALIZED;
5396         mc->mc_flags &= ~C_EOF;
5397
5398         mc->mc_ki[mc->mc_top] = 0;
5399
5400         if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
5401                 key->mv_size = mc->mc_db->md_pad;
5402                 key->mv_data = LEAF2KEY(mc->mc_pg[mc->mc_top], 0, key->mv_size);
5403                 return MDB_SUCCESS;
5404         }
5405
5406         if (data) {
5407                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5408                         mdb_xcursor_init1(mc, leaf);
5409                         rc = mdb_cursor_first(&mc->mc_xcursor->mx_cursor, data, NULL);
5410                         if (rc)
5411                                 return rc;
5412                 } else {
5413                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
5414                                 return rc;
5415                 }
5416         }
5417         MDB_GET_KEY(leaf, key);
5418         return MDB_SUCCESS;
5419 }
5420
5421 /** Move the cursor to the last item in the database. */
5422 static int
5423 mdb_cursor_last(MDB_cursor *mc, MDB_val *key, MDB_val *data)
5424 {
5425         int              rc;
5426         MDB_node        *leaf;
5427
5428         if (mc->mc_xcursor)
5429                 mc->mc_xcursor->mx_cursor.mc_flags &= ~(C_INITIALIZED|C_EOF);
5430
5431         if (!(mc->mc_flags & C_EOF)) {
5432
5433                 if (!(mc->mc_flags & C_INITIALIZED) || mc->mc_top) {
5434                         rc = mdb_page_search(mc, NULL, MDB_PS_LAST);
5435                         if (rc != MDB_SUCCESS)
5436                                 return rc;
5437                 }
5438                 assert(IS_LEAF(mc->mc_pg[mc->mc_top]));
5439
5440         }
5441         mc->mc_ki[mc->mc_top] = NUMKEYS(mc->mc_pg[mc->mc_top]) - 1;
5442         mc->mc_flags |= C_INITIALIZED|C_EOF;
5443         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
5444
5445         if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
5446                 key->mv_size = mc->mc_db->md_pad;
5447                 key->mv_data = LEAF2KEY(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], key->mv_size);
5448                 return MDB_SUCCESS;
5449         }
5450
5451         if (data) {
5452                 if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5453                         mdb_xcursor_init1(mc, leaf);
5454                         rc = mdb_cursor_last(&mc->mc_xcursor->mx_cursor, data, NULL);
5455                         if (rc)
5456                                 return rc;
5457                 } else {
5458                         if ((rc = mdb_node_read(mc->mc_txn, leaf, data)) != MDB_SUCCESS)
5459                                 return rc;
5460                 }
5461         }
5462
5463         MDB_GET_KEY(leaf, key);
5464         return MDB_SUCCESS;
5465 }
5466
5467 int
5468 mdb_cursor_get(MDB_cursor *mc, MDB_val *key, MDB_val *data,
5469     MDB_cursor_op op)
5470 {
5471         int              rc;
5472         int              exact = 0;
5473         int              (*mfunc)(MDB_cursor *mc, MDB_val *key, MDB_val *data);
5474
5475         assert(mc);
5476
5477         if (mc->mc_txn->mt_flags & MDB_TXN_ERROR)
5478                 return MDB_BAD_TXN;
5479
5480         switch (op) {
5481         case MDB_GET_CURRENT:
5482                 if (!(mc->mc_flags & C_INITIALIZED)) {
5483                         rc = EINVAL;
5484                 } else {
5485                         MDB_page *mp = mc->mc_pg[mc->mc_top];
5486                         int nkeys = NUMKEYS(mp);
5487                         if (!nkeys || mc->mc_ki[mc->mc_top] >= nkeys) {
5488                                 mc->mc_ki[mc->mc_top] = nkeys;
5489                                 rc = MDB_NOTFOUND;
5490                                 break;
5491                         }
5492                         rc = MDB_SUCCESS;
5493                         if (IS_LEAF2(mp)) {
5494                                 key->mv_size = mc->mc_db->md_pad;
5495                                 key->mv_data = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], key->mv_size);
5496                         } else {
5497                                 MDB_node *leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
5498                                 MDB_GET_KEY(leaf, key);
5499                                 if (data) {
5500                                         if (F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5501                                                 if (mc->mc_flags & C_DEL)
5502                                                         mdb_xcursor_init1(mc, leaf);
5503                                                 rc = mdb_cursor_get(&mc->mc_xcursor->mx_cursor, data, NULL, MDB_GET_CURRENT);
5504                                         } else {
5505                                                 rc = mdb_node_read(mc->mc_txn, leaf, data);
5506                                         }
5507                                 }
5508                         }
5509                 }
5510                 break;
5511         case MDB_GET_BOTH:
5512         case MDB_GET_BOTH_RANGE:
5513                 if (data == NULL) {
5514                         rc = EINVAL;
5515                         break;
5516                 }
5517                 if (mc->mc_xcursor == NULL) {
5518                         rc = MDB_INCOMPATIBLE;
5519                         break;
5520                 }
5521                 /* FALLTHRU */
5522         case MDB_SET:
5523         case MDB_SET_KEY:
5524         case MDB_SET_RANGE:
5525                 if (key == NULL) {
5526                         rc = EINVAL;
5527                 } else {
5528                         rc = mdb_cursor_set(mc, key, data, op,
5529                                 op == MDB_SET_RANGE ? NULL : &exact);
5530                 }
5531                 break;
5532         case MDB_GET_MULTIPLE:
5533                 if (data == NULL || !(mc->mc_flags & C_INITIALIZED)) {
5534                         rc = EINVAL;
5535                         break;
5536                 }
5537                 if (!(mc->mc_db->md_flags & MDB_DUPFIXED)) {
5538                         rc = MDB_INCOMPATIBLE;
5539                         break;
5540                 }
5541                 rc = MDB_SUCCESS;
5542                 if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED) ||
5543                         (mc->mc_xcursor->mx_cursor.mc_flags & C_EOF))
5544                         break;
5545                 goto fetchm;
5546         case MDB_NEXT_MULTIPLE:
5547                 if (data == NULL) {
5548                         rc = EINVAL;
5549                         break;
5550                 }
5551                 if (!(mc->mc_db->md_flags & MDB_DUPFIXED)) {
5552                         rc = MDB_INCOMPATIBLE;
5553                         break;
5554                 }
5555                 if (!(mc->mc_flags & C_INITIALIZED))
5556                         rc = mdb_cursor_first(mc, key, data);
5557                 else
5558                         rc = mdb_cursor_next(mc, key, data, MDB_NEXT_DUP);
5559                 if (rc == MDB_SUCCESS) {
5560                         if (mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED) {
5561                                 MDB_cursor *mx;
5562 fetchm:
5563                                 mx = &mc->mc_xcursor->mx_cursor;
5564                                 data->mv_size = NUMKEYS(mx->mc_pg[mx->mc_top]) *
5565                                         mx->mc_db->md_pad;
5566                                 data->mv_data = METADATA(mx->mc_pg[mx->mc_top]);
5567                                 mx->mc_ki[mx->mc_top] = NUMKEYS(mx->mc_pg[mx->mc_top])-1;
5568                         } else {
5569                                 rc = MDB_NOTFOUND;
5570                         }
5571                 }
5572                 break;
5573         case MDB_NEXT:
5574         case MDB_NEXT_DUP:
5575         case MDB_NEXT_NODUP:
5576                 if (!(mc->mc_flags & C_INITIALIZED))
5577                         rc = mdb_cursor_first(mc, key, data);
5578                 else
5579                         rc = mdb_cursor_next(mc, key, data, op);
5580                 break;
5581         case MDB_PREV:
5582         case MDB_PREV_DUP:
5583         case MDB_PREV_NODUP:
5584                 if (!(mc->mc_flags & C_INITIALIZED)) {
5585                         rc = mdb_cursor_last(mc, key, data);
5586                         if (rc)
5587                                 break;
5588                         mc->mc_flags |= C_INITIALIZED;
5589                         mc->mc_ki[mc->mc_top]++;
5590                 }
5591                 rc = mdb_cursor_prev(mc, key, data, op);
5592                 break;
5593         case MDB_FIRST:
5594                 rc = mdb_cursor_first(mc, key, data);
5595                 break;
5596         case MDB_FIRST_DUP:
5597                 mfunc = mdb_cursor_first;
5598         mmove:
5599                 if (data == NULL || !(mc->mc_flags & C_INITIALIZED)) {
5600                         rc = EINVAL;
5601                         break;
5602                 }
5603                 if (mc->mc_xcursor == NULL) {
5604                         rc = MDB_INCOMPATIBLE;
5605                         break;
5606                 }
5607                 if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED)) {
5608                         rc = EINVAL;
5609                         break;
5610                 }
5611                 rc = mfunc(&mc->mc_xcursor->mx_cursor, data, NULL);
5612                 break;
5613         case MDB_LAST:
5614                 rc = mdb_cursor_last(mc, key, data);
5615                 break;
5616         case MDB_LAST_DUP:
5617                 mfunc = mdb_cursor_last;
5618                 goto mmove;
5619         default:
5620                 DPRINTF(("unhandled/unimplemented cursor operation %u", op));
5621                 rc = EINVAL;
5622                 break;
5623         }
5624
5625         if (mc->mc_flags & C_DEL)
5626                 mc->mc_flags ^= C_DEL;
5627
5628         return rc;
5629 }
5630
5631 /** Touch all the pages in the cursor stack. Set mc_top.
5632  *      Makes sure all the pages are writable, before attempting a write operation.
5633  * @param[in] mc The cursor to operate on.
5634  */
5635 static int
5636 mdb_cursor_touch(MDB_cursor *mc)
5637 {
5638         int rc = MDB_SUCCESS;
5639
5640         if (mc->mc_dbi > MAIN_DBI && !(*mc->mc_dbflag & DB_DIRTY)) {
5641                 MDB_cursor mc2;
5642                 MDB_xcursor mcx;
5643                 mdb_cursor_init(&mc2, mc->mc_txn, MAIN_DBI, &mcx);
5644                 rc = mdb_page_search(&mc2, &mc->mc_dbx->md_name, MDB_PS_MODIFY);
5645                 if (rc)
5646                          return rc;
5647                 *mc->mc_dbflag |= DB_DIRTY;
5648         }
5649         mc->mc_top = 0;
5650         if (mc->mc_snum) {
5651                 do {
5652                         rc = mdb_page_touch(mc);
5653                 } while (!rc && ++(mc->mc_top) < mc->mc_snum);
5654                 mc->mc_top = mc->mc_snum-1;
5655         }
5656         return rc;
5657 }
5658
5659 /** Do not spill pages to disk if txn is getting full, may fail instead */
5660 #define MDB_NOSPILL     0x8000
5661
5662 int
5663 mdb_cursor_put(MDB_cursor *mc, MDB_val *key, MDB_val *data,
5664     unsigned int flags)
5665 {
5666         enum { MDB_NO_ROOT = MDB_LAST_ERRCODE+10 }; /* internal code */
5667         MDB_env         *env = mc->mc_txn->mt_env;
5668         MDB_node        *leaf = NULL;
5669         MDB_val xdata, *rdata, dkey;
5670         MDB_db dummy;
5671         int do_sub = 0, insert = 0;
5672         unsigned int mcount = 0, dcount = 0, nospill;
5673         size_t nsize;
5674         int rc, rc2;
5675         unsigned int nflags;
5676         DKBUF;
5677
5678         /* Check this first so counter will always be zero on any
5679          * early failures.
5680          */
5681         if (flags & MDB_MULTIPLE) {
5682                 dcount = data[1].mv_size;
5683                 data[1].mv_size = 0;
5684                 if (!F_ISSET(mc->mc_db->md_flags, MDB_DUPFIXED))
5685                         return MDB_INCOMPATIBLE;
5686         }
5687
5688         nospill = flags & MDB_NOSPILL;
5689         flags &= ~MDB_NOSPILL;
5690
5691         if (mc->mc_txn->mt_flags & (MDB_TXN_RDONLY|MDB_TXN_ERROR))
5692                 return (mc->mc_txn->mt_flags & MDB_TXN_RDONLY) ? EACCES : MDB_BAD_TXN;
5693
5694         if (flags != MDB_CURRENT && (key->mv_size == 0 || key->mv_size > MDB_MAXKEYSIZE))
5695                 return MDB_BAD_VALSIZE;
5696
5697         if (F_ISSET(mc->mc_db->md_flags, MDB_DUPSORT) && data->mv_size > MDB_MAXKEYSIZE)
5698                 return MDB_BAD_VALSIZE;
5699
5700 #if SIZE_MAX > MAXDATASIZE
5701         if (data->mv_size > MAXDATASIZE)
5702                 return MDB_BAD_VALSIZE;
5703 #endif
5704
5705         DPRINTF(("==> put db %d key [%s], size %"Z"u, data size %"Z"u",
5706                 DDBI(mc), DKEY(key), key ? key->mv_size : 0, data->mv_size));
5707
5708         dkey.mv_size = 0;
5709
5710         if (flags == MDB_CURRENT) {
5711                 if (!(mc->mc_flags & C_INITIALIZED))
5712                         return EINVAL;
5713                 rc = MDB_SUCCESS;
5714         } else if (mc->mc_db->md_root == P_INVALID) {
5715                 /* new database, cursor has nothing to point to */
5716                 mc->mc_snum = 0;
5717                 mc->mc_top = 0;
5718                 mc->mc_flags &= ~C_INITIALIZED;
5719                 rc = MDB_NO_ROOT;
5720         } else {
5721                 int exact = 0;
5722                 MDB_val d2;
5723                 if (flags & MDB_APPEND) {
5724                         MDB_val k2;
5725                         rc = mdb_cursor_last(mc, &k2, &d2);
5726                         if (rc == 0) {
5727                                 rc = mc->mc_dbx->md_cmp(key, &k2);
5728                                 if (rc > 0) {
5729                                         rc = MDB_NOTFOUND;
5730                                         mc->mc_ki[mc->mc_top]++;
5731                                 } else {
5732                                         /* new key is <= last key */
5733                                         rc = MDB_KEYEXIST;
5734                                 }
5735                         }
5736                 } else {
5737                         rc = mdb_cursor_set(mc, key, &d2, MDB_SET, &exact);
5738                 }
5739                 if ((flags & MDB_NOOVERWRITE) && rc == 0) {
5740                         DPRINTF(("duplicate key [%s]", DKEY(key)));
5741                         *data = d2;
5742                         return MDB_KEYEXIST;
5743                 }
5744                 if (rc && rc != MDB_NOTFOUND)
5745                         return rc;
5746         }
5747
5748         if (mc->mc_flags & C_DEL)
5749                 mc->mc_flags ^= C_DEL;
5750
5751         /* Cursor is positioned, check for room in the dirty list */
5752         if (!nospill) {
5753                 if (flags & MDB_MULTIPLE) {
5754                         rdata = &xdata;
5755                         xdata.mv_size = data->mv_size * dcount;
5756                 } else {
5757                         rdata = data;
5758                 }
5759                 if ((rc2 = mdb_page_spill(mc, key, rdata)))
5760                         return rc2;
5761         }
5762
5763         if (rc == MDB_NO_ROOT) {
5764                 MDB_page *np;
5765                 /* new database, write a root leaf page */
5766                 DPUTS("allocating new root leaf page");
5767                 if ((rc2 = mdb_page_new(mc, P_LEAF, 1, &np))) {
5768                         return rc2;
5769                 }
5770                 mdb_cursor_push(mc, np);
5771                 mc->mc_db->md_root = np->mp_pgno;
5772                 mc->mc_db->md_depth++;
5773                 *mc->mc_dbflag |= DB_DIRTY;
5774                 if ((mc->mc_db->md_flags & (MDB_DUPSORT|MDB_DUPFIXED))
5775                         == MDB_DUPFIXED)
5776                         np->mp_flags |= P_LEAF2;
5777                 mc->mc_flags |= C_INITIALIZED;
5778         } else {
5779                 /* make sure all cursor pages are writable */
5780                 rc2 = mdb_cursor_touch(mc);
5781                 if (rc2)
5782                         return rc2;
5783         }
5784
5785         /* The key already exists */
5786         if (rc == MDB_SUCCESS) {
5787                 MDB_page        *fp, *mp;
5788                 MDB_val         olddata;
5789
5790                 /* there's only a key anyway, so this is a no-op */
5791                 if (IS_LEAF2(mc->mc_pg[mc->mc_top])) {
5792                         unsigned int ksize = mc->mc_db->md_pad;
5793                         if (key->mv_size != ksize)
5794                                 return MDB_BAD_VALSIZE;
5795                         if (flags == MDB_CURRENT) {
5796                                 char *ptr = LEAF2KEY(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], ksize);
5797                                 memcpy(ptr, key->mv_data, ksize);
5798                         }
5799                         return MDB_SUCCESS;
5800                 }
5801
5802 more:
5803                 leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
5804                 olddata.mv_size = NODEDSZ(leaf);
5805                 olddata.mv_data = NODEDATA(leaf);
5806
5807                 /* DB has dups? */
5808                 if (F_ISSET(mc->mc_db->md_flags, MDB_DUPSORT)) {
5809                         mp = fp = xdata.mv_data = env->me_pbuf;
5810                         mp->mp_pgno = mc->mc_pg[mc->mc_top]->mp_pgno;
5811
5812                         /* Was a single item before, must convert now */
5813                         if (!F_ISSET(leaf->mn_flags, F_DUPDATA)) {
5814                                 /* Just overwrite the current item */
5815                                 if (flags == MDB_CURRENT)
5816                                         goto current;
5817
5818 #if UINT_MAX < SIZE_MAX
5819                                 if (mc->mc_dbx->md_dcmp == mdb_cmp_int && olddata.mv_size == sizeof(size_t))
5820 #ifdef MISALIGNED_OK
5821                                         mc->mc_dbx->md_dcmp = mdb_cmp_long;
5822 #else
5823                                         mc->mc_dbx->md_dcmp = mdb_cmp_cint;
5824 #endif
5825 #endif
5826                                 /* if data matches, skip it */
5827                                 if (!mc->mc_dbx->md_dcmp(data, &olddata)) {
5828                                         if (flags & MDB_NODUPDATA)
5829                                                 rc = MDB_KEYEXIST;
5830                                         else if (flags & MDB_MULTIPLE)
5831                                                 goto next_mult;
5832                                         else
5833                                                 rc = MDB_SUCCESS;
5834                                         return rc;
5835                                 }
5836
5837                                 /* Back up original data item */
5838                                 dkey.mv_size = olddata.mv_size;
5839                                 dkey.mv_data = memcpy(fp+1, olddata.mv_data, olddata.mv_size);
5840
5841                                 /* Make sub-page header for the dup items, with dummy body */
5842                                 fp->mp_flags = P_LEAF|P_DIRTY|P_SUBP;
5843                                 fp->mp_lower = PAGEHDRSZ;
5844                                 xdata.mv_size = PAGEHDRSZ + dkey.mv_size + data->mv_size;
5845                                 if (mc->mc_db->md_flags & MDB_DUPFIXED) {
5846                                         fp->mp_flags |= P_LEAF2;
5847                                         fp->mp_pad = data->mv_size;
5848                                         xdata.mv_size += 2 * data->mv_size;     /* leave space for 2 more */
5849                                 } else {
5850                                         xdata.mv_size += 2 * (sizeof(indx_t) + NODESIZE) +
5851                                                 (dkey.mv_size & 1) + (data->mv_size & 1);
5852                                 }
5853                                 fp->mp_upper = xdata.mv_size;
5854                         } else if (leaf->mn_flags & F_SUBDATA) {
5855                                 /* Data is on sub-DB, just store it */
5856                                 flags |= F_DUPDATA|F_SUBDATA;
5857                                 goto put_sub;
5858                         } else {
5859                                 /* See if we need to convert from fake page to subDB */
5860                                 unsigned int offset;
5861                                 unsigned int i;
5862                                 uint16_t fp_flags;
5863
5864                                 fp = olddata.mv_data;
5865                                 switch (flags) {
5866                                 default:
5867                                         if (!(mc->mc_db->md_flags & MDB_DUPFIXED)) {
5868                                                 offset = EVEN(NODESIZE + sizeof(indx_t) +
5869                                                         data->mv_size);
5870                                                 break;
5871                                         }
5872                                         offset = fp->mp_pad;
5873                                         if (SIZELEFT(fp) < offset) {
5874                                                 offset *= 4; /* space for 4 more */
5875                                                 break;
5876                                         }
5877                                         /* FALLTHRU: Big enough MDB_DUPFIXED sub-page */
5878                                 case MDB_CURRENT:
5879                                         fp->mp_flags |= P_DIRTY;
5880                                         COPY_PGNO(fp->mp_pgno, mp->mp_pgno);
5881                                         mc->mc_xcursor->mx_cursor.mc_pg[0] = fp;
5882                                         flags |= F_DUPDATA;
5883                                         goto put_sub;
5884                                 }
5885                                 fp_flags = fp->mp_flags;
5886                                 xdata.mv_size = olddata.mv_size + offset;
5887                                 if (NODESIZE+NODEKSZ(leaf)+xdata.mv_size > env->me_nodemax) {
5888                                         /* yes, convert it */
5889                                         if (mc->mc_db->md_flags & MDB_DUPFIXED) {
5890                                                 dummy.md_pad = fp->mp_pad;
5891                                                 dummy.md_flags = MDB_DUPFIXED;
5892                                                 if (mc->mc_db->md_flags & MDB_INTEGERDUP)
5893                                                         dummy.md_flags |= MDB_INTEGERKEY;
5894                                         } else {
5895                                                 dummy.md_pad = 0;
5896                                                 dummy.md_flags = 0;
5897                                         }
5898                                         dummy.md_depth = 1;
5899                                         dummy.md_branch_pages = 0;
5900                                         dummy.md_leaf_pages = 1;
5901                                         dummy.md_overflow_pages = 0;
5902                                         dummy.md_entries = NUMKEYS(fp);
5903                                         xdata.mv_size = sizeof(MDB_db);
5904                                         xdata.mv_data = &dummy;
5905                                         if ((rc = mdb_page_alloc(mc, 1, &mp)))
5906                                                 return rc;
5907                                         offset = env->me_psize - olddata.mv_size;
5908                                         flags |= F_DUPDATA|F_SUBDATA;
5909                                         dummy.md_root = mp->mp_pgno;
5910                                         fp_flags &= ~P_SUBP;
5911                                 }
5912                                 mp->mp_flags = fp_flags | P_DIRTY;
5913                                 mp->mp_pad   = fp->mp_pad;
5914                                 mp->mp_lower = fp->mp_lower;
5915                                 mp->mp_upper = fp->mp_upper + offset;
5916                                 if (IS_LEAF2(fp)) {
5917                                         memcpy(METADATA(mp), METADATA(fp), NUMKEYS(fp) * fp->mp_pad);
5918                                 } else {
5919                                         memcpy((char *)mp + mp->mp_upper, (char *)fp + fp->mp_upper,
5920                                                 olddata.mv_size - fp->mp_upper);
5921                                         for (i=0; i<NUMKEYS(fp); i++)
5922                                                 mp->mp_ptrs[i] = fp->mp_ptrs[i] + offset;
5923                                 }
5924                         }
5925
5926                         rdata = &xdata;
5927                         flags |= F_DUPDATA;
5928                         do_sub = 1;
5929                         mdb_node_del(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], 0);
5930                         goto new_sub;
5931                 }
5932 current:
5933                 /* overflow page overwrites need special handling */
5934                 if (F_ISSET(leaf->mn_flags, F_BIGDATA)) {
5935                         MDB_page *omp;
5936                         pgno_t pg;
5937                         int level, ovpages, dpages = OVPAGES(data->mv_size, env->me_psize);
5938
5939                         memcpy(&pg, olddata.mv_data, sizeof(pg));
5940                         if ((rc2 = mdb_page_get(mc->mc_txn, pg, &omp, &level)) != 0)
5941                                 return rc2;
5942                         ovpages = omp->mp_pages;
5943
5944                         /* Is the ov page large enough? */
5945                         if (ovpages >= dpages) {
5946                           if (!(omp->mp_flags & P_DIRTY) &&
5947                                   (level || (env->me_flags & MDB_WRITEMAP)))
5948                           {
5949                                 rc = mdb_page_unspill(mc->mc_txn, omp, &omp);
5950                                 if (rc)
5951                                         return rc;
5952                                 level = 0;              /* dirty in this txn or clean */
5953                           }
5954                           /* Is it dirty? */
5955                           if (omp->mp_flags & P_DIRTY) {
5956                                 /* yes, overwrite it. Note in this case we don't
5957                                  * bother to try shrinking the page if the new data
5958                                  * is smaller than the overflow threshold.
5959                                  */
5960                                 if (level > 1) {
5961                                         /* It is writable only in a parent txn */
5962                                         size_t sz = (size_t) env->me_psize * ovpages, off;
5963                                         MDB_page *np = mdb_page_malloc(mc->mc_txn, ovpages);
5964                                         MDB_ID2 id2;
5965                                         if (!np)
5966                                                 return ENOMEM;
5967                                         id2.mid = pg;
5968                                         id2.mptr = np;
5969                                         mdb_mid2l_insert(mc->mc_txn->mt_u.dirty_list, &id2);
5970                                         if (!(flags & MDB_RESERVE)) {
5971                                                 /* Copy end of page, adjusting alignment so
5972                                                  * compiler may copy words instead of bytes.
5973                                                  */
5974                                                 off = (PAGEHDRSZ + data->mv_size) & -sizeof(size_t);
5975                                                 memcpy((size_t *)((char *)np + off),
5976                                                         (size_t *)((char *)omp + off), sz - off);
5977                                                 sz = PAGEHDRSZ;
5978                                         }
5979                                         memcpy(np, omp, sz); /* Copy beginning of page */
5980                                         omp = np;
5981                                 }
5982                                 SETDSZ(leaf, data->mv_size);
5983                                 if (F_ISSET(flags, MDB_RESERVE))
5984                                         data->mv_data = METADATA(omp);
5985                                 else
5986                                         memcpy(METADATA(omp), data->mv_data, data->mv_size);
5987                                 goto done;
5988                           }
5989                         }
5990                         if ((rc2 = mdb_ovpage_free(mc, omp)) != MDB_SUCCESS)
5991                                 return rc2;
5992                 } else if (data->mv_size == olddata.mv_size) {
5993                         /* same size, just replace it. Note that we could
5994                          * also reuse this node if the new data is smaller,
5995                          * but instead we opt to shrink the node in that case.
5996                          */
5997                         if (F_ISSET(flags, MDB_RESERVE))
5998                                 data->mv_data = olddata.mv_data;
5999                         else if (data->mv_size)
6000                                 memcpy(olddata.mv_data, data->mv_data, data->mv_size);
6001                         else
6002                                 memcpy(NODEKEY(leaf), key->mv_data, key->mv_size);
6003                         goto done;
6004                 }
6005                 mdb_node_del(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], 0);
6006                 mc->mc_db->md_entries--;
6007         } else {
6008                 DPRINTF(("inserting key at index %i", mc->mc_ki[mc->mc_top]));
6009                 insert = 1;
6010         }
6011
6012         rdata = data;
6013
6014 new_sub:
6015         nflags = flags & NODE_ADD_FLAGS;
6016         nsize = IS_LEAF2(mc->mc_pg[mc->mc_top]) ? key->mv_size : mdb_leaf_size(env, key, rdata);
6017         if (SIZELEFT(mc->mc_pg[mc->mc_top]) < nsize) {
6018                 if (( flags & (F_DUPDATA|F_SUBDATA)) == F_DUPDATA )
6019                         nflags &= ~MDB_APPEND;
6020                 if (!insert)
6021                         nflags |= MDB_SPLIT_REPLACE;
6022                 rc = mdb_page_split(mc, key, rdata, P_INVALID, nflags);
6023         } else {
6024                 /* There is room already in this leaf page. */
6025                 rc = mdb_node_add(mc, mc->mc_ki[mc->mc_top], key, rdata, 0, nflags);
6026                 if (rc == 0 && !do_sub && insert) {
6027                         /* Adjust other cursors pointing to mp */
6028                         MDB_cursor *m2, *m3;
6029                         MDB_dbi dbi = mc->mc_dbi;
6030                         unsigned i = mc->mc_top;
6031                         MDB_page *mp = mc->mc_pg[i];
6032
6033                         for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
6034                                 if (mc->mc_flags & C_SUB)
6035                                         m3 = &m2->mc_xcursor->mx_cursor;
6036                                 else
6037                                         m3 = m2;
6038                                 if (m3 == mc || m3->mc_snum < mc->mc_snum) continue;
6039                                 if (m3->mc_pg[i] == mp && m3->mc_ki[i] >= mc->mc_ki[i]) {
6040                                         m3->mc_ki[i]++;
6041                                 }
6042                         }
6043                 }
6044         }
6045
6046         if (rc != MDB_SUCCESS)
6047                 mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
6048         else {
6049                 /* Now store the actual data in the child DB. Note that we're
6050                  * storing the user data in the keys field, so there are strict
6051                  * size limits on dupdata. The actual data fields of the child
6052                  * DB are all zero size.
6053                  */
6054                 if (do_sub) {
6055                         int xflags;
6056 put_sub:
6057                         xdata.mv_size = 0;
6058                         xdata.mv_data = "";
6059                         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
6060                         if (flags & MDB_CURRENT) {
6061                                 xflags = MDB_CURRENT|MDB_NOSPILL;
6062                         } else {
6063                                 mdb_xcursor_init1(mc, leaf);
6064                                 xflags = (flags & MDB_NODUPDATA) ?
6065                                         MDB_NOOVERWRITE|MDB_NOSPILL : MDB_NOSPILL;
6066                         }
6067                         /* converted, write the original data first */
6068                         if (dkey.mv_size) {
6069                                 rc = mdb_cursor_put(&mc->mc_xcursor->mx_cursor, &dkey, &xdata, xflags);
6070                                 if (rc)
6071                                         return rc;
6072                                 {
6073                                         /* Adjust other cursors pointing to mp */
6074                                         MDB_cursor *m2;
6075                                         unsigned i = mc->mc_top;
6076                                         MDB_page *mp = mc->mc_pg[i];
6077
6078                                         for (m2 = mc->mc_txn->mt_cursors[mc->mc_dbi]; m2; m2=m2->mc_next) {
6079                                                 if (m2 == mc || m2->mc_snum < mc->mc_snum) continue;
6080                                                 if (!(m2->mc_flags & C_INITIALIZED)) continue;
6081                                                 if (m2->mc_pg[i] == mp && m2->mc_ki[i] == mc->mc_ki[i]) {
6082                                                         mdb_xcursor_init1(m2, leaf);
6083                                                 }
6084                                         }
6085                                 }
6086                                 /* we've done our job */
6087                                 dkey.mv_size = 0;
6088                         }
6089                         if (flags & MDB_APPENDDUP)
6090                                 xflags |= MDB_APPEND;
6091                         rc = mdb_cursor_put(&mc->mc_xcursor->mx_cursor, data, &xdata, xflags);
6092                         if (flags & F_SUBDATA) {
6093                                 void *db = NODEDATA(leaf);
6094                                 memcpy(db, &mc->mc_xcursor->mx_db, sizeof(MDB_db));
6095                         }
6096                 }
6097                 /* sub-writes might have failed so check rc again.
6098                  * Don't increment count if we just replaced an existing item.
6099                  */
6100                 if (!rc && !(flags & MDB_CURRENT))
6101                         mc->mc_db->md_entries++;
6102                 if (flags & MDB_MULTIPLE) {
6103                         if (!rc) {
6104 next_mult:
6105                                 mcount++;
6106                                 /* let caller know how many succeeded, if any */
6107                                 data[1].mv_size = mcount;
6108                                 if (mcount < dcount) {
6109                                         data[0].mv_data = (char *)data[0].mv_data + data[0].mv_size;
6110                                         goto more;
6111                                 }
6112                         }
6113                 }
6114         }
6115 done:
6116         /* If we succeeded and the key didn't exist before, make sure
6117          * the cursor is marked valid.
6118          */
6119         if (!rc && insert)
6120                 mc->mc_flags |= C_INITIALIZED;
6121         return rc;
6122 }
6123
6124 int
6125 mdb_cursor_del(MDB_cursor *mc, unsigned int flags)
6126 {
6127         MDB_node        *leaf;
6128         MDB_page        *mp;
6129         int rc;
6130
6131         if (mc->mc_txn->mt_flags & (MDB_TXN_RDONLY|MDB_TXN_ERROR))
6132                 return (mc->mc_txn->mt_flags & MDB_TXN_RDONLY) ? EACCES : MDB_BAD_TXN;
6133
6134         if (!(mc->mc_flags & C_INITIALIZED))
6135                 return EINVAL;
6136
6137         if (mc->mc_ki[mc->mc_top] >= NUMKEYS(mc->mc_pg[mc->mc_top]))
6138                 return MDB_NOTFOUND;
6139
6140         if (!(flags & MDB_NOSPILL) && (rc = mdb_page_spill(mc, NULL, NULL)))
6141                 return rc;
6142
6143         rc = mdb_cursor_touch(mc);
6144         if (rc)
6145                 return rc;
6146
6147         mp = mc->mc_pg[mc->mc_top];
6148         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
6149
6150         if (!IS_LEAF2(mp) && F_ISSET(leaf->mn_flags, F_DUPDATA)) {
6151                 if (!(flags & MDB_NODUPDATA)) {
6152                         if (!F_ISSET(leaf->mn_flags, F_SUBDATA)) {
6153                                 mc->mc_xcursor->mx_cursor.mc_pg[0] = NODEDATA(leaf);
6154                         }
6155                         rc = mdb_cursor_del(&mc->mc_xcursor->mx_cursor, MDB_NOSPILL);
6156                         /* If sub-DB still has entries, we're done */
6157                         if (mc->mc_xcursor->mx_db.md_entries) {
6158                                 if (leaf->mn_flags & F_SUBDATA) {
6159                                         /* update subDB info */
6160                                         void *db = NODEDATA(leaf);
6161                                         memcpy(db, &mc->mc_xcursor->mx_db, sizeof(MDB_db));
6162                                 } else {
6163                                         MDB_cursor *m2;
6164                                         /* shrink fake page */
6165                                         mdb_node_shrink(mp, mc->mc_ki[mc->mc_top]);
6166                                         leaf = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
6167                                         mc->mc_xcursor->mx_cursor.mc_pg[0] = NODEDATA(leaf);
6168                                         /* fix other sub-DB cursors pointed at this fake page */
6169                                         for (m2 = mc->mc_txn->mt_cursors[mc->mc_dbi]; m2; m2=m2->mc_next) {
6170                                                 if (m2 == mc || m2->mc_snum < mc->mc_snum) continue;
6171                                                 if (m2->mc_pg[mc->mc_top] == mp &&
6172                                                         m2->mc_ki[mc->mc_top] == mc->mc_ki[mc->mc_top])
6173                                                         m2->mc_xcursor->mx_cursor.mc_pg[0] = NODEDATA(leaf);
6174                                         }
6175                                 }
6176                                 mc->mc_db->md_entries--;
6177                                 mc->mc_flags |= C_DEL;
6178                                 return rc;
6179                         }
6180                         /* otherwise fall thru and delete the sub-DB */
6181                 }
6182
6183                 if (leaf->mn_flags & F_SUBDATA) {
6184                         /* add all the child DB's pages to the free list */
6185                         rc = mdb_drop0(&mc->mc_xcursor->mx_cursor, 0);
6186                         if (rc == MDB_SUCCESS) {
6187                                 mc->mc_db->md_entries -=
6188                                         mc->mc_xcursor->mx_db.md_entries;
6189                         }
6190                 }
6191         }
6192
6193         return mdb_cursor_del0(mc, leaf);
6194 }
6195
6196 /** Allocate and initialize new pages for a database.
6197  * @param[in] mc a cursor on the database being added to.
6198  * @param[in] flags flags defining what type of page is being allocated.
6199  * @param[in] num the number of pages to allocate. This is usually 1,
6200  * unless allocating overflow pages for a large record.
6201  * @param[out] mp Address of a page, or NULL on failure.
6202  * @return 0 on success, non-zero on failure.
6203  */
6204 static int
6205 mdb_page_new(MDB_cursor *mc, uint32_t flags, int num, MDB_page **mp)
6206 {
6207         MDB_page        *np;
6208         int rc;
6209
6210         if ((rc = mdb_page_alloc(mc, num, &np)))
6211                 return rc;
6212         DPRINTF(("allocated new mpage %"Z"u, page size %u",
6213             np->mp_pgno, mc->mc_txn->mt_env->me_psize));
6214         np->mp_flags = flags | P_DIRTY;
6215         np->mp_lower = PAGEHDRSZ;
6216         np->mp_upper = mc->mc_txn->mt_env->me_psize;
6217
6218         if (IS_BRANCH(np))
6219                 mc->mc_db->md_branch_pages++;
6220         else if (IS_LEAF(np))
6221                 mc->mc_db->md_leaf_pages++;
6222         else if (IS_OVERFLOW(np)) {
6223                 mc->mc_db->md_overflow_pages += num;
6224                 np->mp_pages = num;
6225         }
6226         *mp = np;
6227
6228         return 0;
6229 }
6230
6231 /** Calculate the size of a leaf node.
6232  * The size depends on the environment's page size; if a data item
6233  * is too large it will be put onto an overflow page and the node
6234  * size will only include the key and not the data. Sizes are always
6235  * rounded up to an even number of bytes, to guarantee 2-byte alignment
6236  * of the #MDB_node headers.
6237  * @param[in] env The environment handle.
6238  * @param[in] key The key for the node.
6239  * @param[in] data The data for the node.
6240  * @return The number of bytes needed to store the node.
6241  */
6242 static size_t
6243 mdb_leaf_size(MDB_env *env, MDB_val *key, MDB_val *data)
6244 {
6245         size_t           sz;
6246
6247         sz = LEAFSIZE(key, data);
6248         if (sz > env->me_nodemax) {
6249                 /* put on overflow page */
6250                 sz -= data->mv_size - sizeof(pgno_t);
6251         }
6252
6253         return EVEN(sz + sizeof(indx_t));
6254 }
6255
6256 /** Calculate the size of a branch node.
6257  * The size should depend on the environment's page size but since
6258  * we currently don't support spilling large keys onto overflow
6259  * pages, it's simply the size of the #MDB_node header plus the
6260  * size of the key. Sizes are always rounded up to an even number
6261  * of bytes, to guarantee 2-byte alignment of the #MDB_node headers.
6262  * @param[in] env The environment handle.
6263  * @param[in] key The key for the node.
6264  * @return The number of bytes needed to store the node.
6265  */
6266 static size_t
6267 mdb_branch_size(MDB_env *env, MDB_val *key)
6268 {
6269         size_t           sz;
6270
6271         sz = INDXSIZE(key);
6272         if (sz > env->me_nodemax) {
6273                 /* put on overflow page */
6274                 /* not implemented */
6275                 /* sz -= key->size - sizeof(pgno_t); */
6276         }
6277
6278         return sz + sizeof(indx_t);
6279 }
6280
6281 /** Add a node to the page pointed to by the cursor.
6282  * @param[in] mc The cursor for this operation.
6283  * @param[in] indx The index on the page where the new node should be added.
6284  * @param[in] key The key for the new node.
6285  * @param[in] data The data for the new node, if any.
6286  * @param[in] pgno The page number, if adding a branch node.
6287  * @param[in] flags Flags for the node.
6288  * @return 0 on success, non-zero on failure. Possible errors are:
6289  * <ul>
6290  *      <li>ENOMEM - failed to allocate overflow pages for the node.
6291  *      <li>MDB_PAGE_FULL - there is insufficient room in the page. This error
6292  *      should never happen since all callers already calculate the
6293  *      page's free space before calling this function.
6294  * </ul>
6295  */
6296 static int
6297 mdb_node_add(MDB_cursor *mc, indx_t indx,
6298     MDB_val *key, MDB_val *data, pgno_t pgno, unsigned int flags)
6299 {
6300         unsigned int     i;
6301         size_t           node_size = NODESIZE;
6302         ssize_t          room;
6303         indx_t           ofs;
6304         MDB_node        *node;
6305         MDB_page        *mp = mc->mc_pg[mc->mc_top];
6306         MDB_page        *ofp = NULL;            /* overflow page */
6307         DKBUF;
6308
6309         assert(mp->mp_upper >= mp->mp_lower);
6310
6311         DPRINTF(("add to %s %spage %"Z"u index %i, data size %"Z"u key size %"Z"u [%s]",
6312             IS_LEAF(mp) ? "leaf" : "branch",
6313                 IS_SUBP(mp) ? "sub-" : "",
6314             mp->mp_pgno, indx, data ? data->mv_size : 0,
6315                 key ? key->mv_size : 0, key ? DKEY(key) : "null"));
6316
6317         if (IS_LEAF2(mp)) {
6318                 /* Move higher keys up one slot. */
6319                 int ksize = mc->mc_db->md_pad, dif;
6320                 char *ptr = LEAF2KEY(mp, indx, ksize);
6321                 dif = NUMKEYS(mp) - indx;
6322                 if (dif > 0)
6323                         memmove(ptr+ksize, ptr, dif*ksize);
6324                 /* insert new key */
6325                 memcpy(ptr, key->mv_data, ksize);
6326
6327                 /* Just using these for counting */
6328                 mp->mp_lower += sizeof(indx_t);
6329                 mp->mp_upper -= ksize - sizeof(indx_t);
6330                 return MDB_SUCCESS;
6331         }
6332
6333         room = (ssize_t)SIZELEFT(mp) - (ssize_t)sizeof(indx_t);
6334         if (key != NULL)
6335                 node_size += key->mv_size;
6336         if (IS_LEAF(mp)) {
6337                 assert(data);
6338                 if (F_ISSET(flags, F_BIGDATA)) {
6339                         /* Data already on overflow page. */
6340                         node_size += sizeof(pgno_t);
6341                 } else if (node_size + data->mv_size > mc->mc_txn->mt_env->me_nodemax) {
6342                         int ovpages = OVPAGES(data->mv_size, mc->mc_txn->mt_env->me_psize);
6343                         int rc;
6344                         /* Put data on overflow page. */
6345                         DPRINTF(("data size is %"Z"u, node would be %"Z"u, put data on overflow page",
6346                             data->mv_size, node_size+data->mv_size));
6347                         node_size = EVEN(node_size + sizeof(pgno_t));
6348                         if ((ssize_t)node_size > room)
6349                                 goto full;
6350                         if ((rc = mdb_page_new(mc, P_OVERFLOW, ovpages, &ofp)))
6351                                 return rc;
6352                         DPRINTF(("allocated overflow page %"Z"u", ofp->mp_pgno));
6353                         flags |= F_BIGDATA;
6354                         goto update;
6355                 } else {
6356                         node_size += data->mv_size;
6357                 }
6358         }
6359         node_size = EVEN(node_size);
6360         if ((ssize_t)node_size > room)
6361                 goto full;
6362
6363 update:
6364         /* Move higher pointers up one slot. */
6365         for (i = NUMKEYS(mp); i > indx; i--)
6366                 mp->mp_ptrs[i] = mp->mp_ptrs[i - 1];
6367
6368         /* Adjust free space offsets. */
6369         ofs = mp->mp_upper - node_size;
6370         assert(ofs >= mp->mp_lower + sizeof(indx_t));
6371         mp->mp_ptrs[indx] = ofs;
6372         mp->mp_upper = ofs;
6373         mp->mp_lower += sizeof(indx_t);
6374
6375         /* Write the node data. */
6376         node = NODEPTR(mp, indx);
6377         node->mn_ksize = (key == NULL) ? 0 : key->mv_size;
6378         node->mn_flags = flags;
6379         if (IS_LEAF(mp))
6380                 SETDSZ(node,data->mv_size);
6381         else
6382                 SETPGNO(node,pgno);
6383
6384         if (key)
6385                 memcpy(NODEKEY(node), key->mv_data, key->mv_size);
6386
6387         if (IS_LEAF(mp)) {
6388                 assert(key);
6389                 if (ofp == NULL) {
6390                         if (F_ISSET(flags, F_BIGDATA))
6391                                 memcpy(node->mn_data + key->mv_size, data->mv_data,
6392                                     sizeof(pgno_t));
6393                         else if (F_ISSET(flags, MDB_RESERVE))
6394                                 data->mv_data = node->mn_data + key->mv_size;
6395                         else
6396                                 memcpy(node->mn_data + key->mv_size, data->mv_data,
6397                                     data->mv_size);
6398                 } else {
6399                         memcpy(node->mn_data + key->mv_size, &ofp->mp_pgno,
6400                             sizeof(pgno_t));
6401                         if (F_ISSET(flags, MDB_RESERVE))
6402                                 data->mv_data = METADATA(ofp);
6403                         else
6404                                 memcpy(METADATA(ofp), data->mv_data, data->mv_size);
6405                 }
6406         }
6407
6408         return MDB_SUCCESS;
6409
6410 full:
6411         DPRINTF(("not enough room in page %"Z"u, got %u ptrs",
6412                 mp->mp_pgno, NUMKEYS(mp)));
6413         DPRINTF(("upper-lower = %u - %u = %"Z"d", mp->mp_upper,mp->mp_lower,room));
6414         DPRINTF(("node size = %"Z"u", node_size));
6415         return MDB_PAGE_FULL;
6416 }
6417
6418 /** Delete the specified node from a page.
6419  * @param[in] mp The page to operate on.
6420  * @param[in] indx The index of the node to delete.
6421  * @param[in] ksize The size of a node. Only used if the page is
6422  * part of a #MDB_DUPFIXED database.
6423  */
6424 static void
6425 mdb_node_del(MDB_page *mp, indx_t indx, int ksize)
6426 {
6427         unsigned int     sz;
6428         indx_t           i, j, numkeys, ptr;
6429         MDB_node        *node;
6430         char            *base;
6431
6432 #if MDB_DEBUG
6433         {
6434         pgno_t pgno;
6435         COPY_PGNO(pgno, mp->mp_pgno);
6436         DPRINTF(("delete node %u on %s page %"Z"u", indx,
6437             IS_LEAF(mp) ? "leaf" : "branch", pgno));
6438         }
6439 #endif
6440         assert(indx < NUMKEYS(mp));
6441
6442         if (IS_LEAF2(mp)) {
6443                 int x = NUMKEYS(mp) - 1 - indx;
6444                 base = LEAF2KEY(mp, indx, ksize);
6445                 if (x)
6446                         memmove(base, base + ksize, x * ksize);
6447                 mp->mp_lower -= sizeof(indx_t);
6448                 mp->mp_upper += ksize - sizeof(indx_t);
6449                 return;
6450         }
6451
6452         node = NODEPTR(mp, indx);
6453         sz = NODESIZE + node->mn_ksize;
6454         if (IS_LEAF(mp)) {
6455                 if (F_ISSET(node->mn_flags, F_BIGDATA))
6456                         sz += sizeof(pgno_t);
6457                 else
6458                         sz += NODEDSZ(node);
6459         }
6460         sz = EVEN(sz);
6461
6462         ptr = mp->mp_ptrs[indx];
6463         numkeys = NUMKEYS(mp);
6464         for (i = j = 0; i < numkeys; i++) {
6465                 if (i != indx) {
6466                         mp->mp_ptrs[j] = mp->mp_ptrs[i];
6467                         if (mp->mp_ptrs[i] < ptr)
6468                                 mp->mp_ptrs[j] += sz;
6469                         j++;
6470                 }
6471         }
6472
6473         base = (char *)mp + mp->mp_upper;
6474         memmove(base + sz, base, ptr - mp->mp_upper);
6475
6476         mp->mp_lower -= sizeof(indx_t);
6477         mp->mp_upper += sz;
6478 }
6479
6480 /** Compact the main page after deleting a node on a subpage.
6481  * @param[in] mp The main page to operate on.
6482  * @param[in] indx The index of the subpage on the main page.
6483  */
6484 static void
6485 mdb_node_shrink(MDB_page *mp, indx_t indx)
6486 {
6487         MDB_node *node;
6488         MDB_page *sp, *xp;
6489         char *base;
6490         int nsize, delta;
6491         indx_t           i, numkeys, ptr;
6492
6493         node = NODEPTR(mp, indx);
6494         sp = (MDB_page *)NODEDATA(node);
6495         delta = SIZELEFT(sp);
6496         xp = (MDB_page *)((char *)sp + delta);
6497
6498         /* shift subpage upward */
6499         if (IS_LEAF2(sp)) {
6500                 nsize = NUMKEYS(sp) * sp->mp_pad;
6501                 if (nsize & 1)
6502                         return;         /* do not make the node uneven-sized */
6503                 memmove(METADATA(xp), METADATA(sp), nsize);
6504         } else {
6505                 int i;
6506                 numkeys = NUMKEYS(sp);
6507                 for (i=numkeys-1; i>=0; i--)
6508                         xp->mp_ptrs[i] = sp->mp_ptrs[i] - delta;
6509         }
6510         xp->mp_upper = sp->mp_lower;
6511         xp->mp_lower = sp->mp_lower;
6512         xp->mp_flags = sp->mp_flags;
6513         xp->mp_pad = sp->mp_pad;
6514         COPY_PGNO(xp->mp_pgno, mp->mp_pgno);
6515
6516         nsize = NODEDSZ(node) - delta;
6517         SETDSZ(node, nsize);
6518
6519         /* shift lower nodes upward */
6520         ptr = mp->mp_ptrs[indx];
6521         numkeys = NUMKEYS(mp);
6522         for (i = 0; i < numkeys; i++) {
6523                 if (mp->mp_ptrs[i] <= ptr)
6524                         mp->mp_ptrs[i] += delta;
6525         }
6526
6527         base = (char *)mp + mp->mp_upper;
6528         memmove(base + delta, base, ptr - mp->mp_upper + NODESIZE + NODEKSZ(node));
6529         mp->mp_upper += delta;
6530 }
6531
6532 /** Initial setup of a sorted-dups cursor.
6533  * Sorted duplicates are implemented as a sub-database for the given key.
6534  * The duplicate data items are actually keys of the sub-database.
6535  * Operations on the duplicate data items are performed using a sub-cursor
6536  * initialized when the sub-database is first accessed. This function does
6537  * the preliminary setup of the sub-cursor, filling in the fields that
6538  * depend only on the parent DB.
6539  * @param[in] mc The main cursor whose sorted-dups cursor is to be initialized.
6540  */
6541 static void
6542 mdb_xcursor_init0(MDB_cursor *mc)
6543 {
6544         MDB_xcursor *mx = mc->mc_xcursor;
6545
6546         mx->mx_cursor.mc_xcursor = NULL;
6547         mx->mx_cursor.mc_txn = mc->mc_txn;
6548         mx->mx_cursor.mc_db = &mx->mx_db;
6549         mx->mx_cursor.mc_dbx = &mx->mx_dbx;
6550         mx->mx_cursor.mc_dbi = mc->mc_dbi;
6551         mx->mx_cursor.mc_dbflag = &mx->mx_dbflag;
6552         mx->mx_cursor.mc_snum = 0;
6553         mx->mx_cursor.mc_top = 0;
6554         mx->mx_cursor.mc_flags = C_SUB;
6555         mx->mx_dbx.md_name.mv_size = 0;
6556         mx->mx_dbx.md_name.mv_data = NULL;
6557         mx->mx_dbx.md_cmp = mc->mc_dbx->md_dcmp;
6558         mx->mx_dbx.md_dcmp = NULL;
6559         mx->mx_dbx.md_rel = mc->mc_dbx->md_rel;
6560 }
6561
6562 /** Final setup of a sorted-dups cursor.
6563  *      Sets up the fields that depend on the data from the main cursor.
6564  * @param[in] mc The main cursor whose sorted-dups cursor is to be initialized.
6565  * @param[in] node The data containing the #MDB_db record for the
6566  * sorted-dup database.
6567  */
6568 static void
6569 mdb_xcursor_init1(MDB_cursor *mc, MDB_node *node)
6570 {
6571         MDB_xcursor *mx = mc->mc_xcursor;
6572
6573         if (node->mn_flags & F_SUBDATA) {
6574                 memcpy(&mx->mx_db, NODEDATA(node), sizeof(MDB_db));
6575                 mx->mx_cursor.mc_pg[0] = 0;
6576                 mx->mx_cursor.mc_snum = 0;
6577                 mx->mx_cursor.mc_top = 0;
6578                 mx->mx_cursor.mc_flags = C_SUB;
6579         } else {
6580                 MDB_page *fp = NODEDATA(node);
6581                 mx->mx_db.md_pad = mc->mc_pg[mc->mc_top]->mp_pad;
6582                 mx->mx_db.md_flags = 0;
6583                 mx->mx_db.md_depth = 1;
6584                 mx->mx_db.md_branch_pages = 0;
6585                 mx->mx_db.md_leaf_pages = 1;
6586                 mx->mx_db.md_overflow_pages = 0;
6587                 mx->mx_db.md_entries = NUMKEYS(fp);
6588                 COPY_PGNO(mx->mx_db.md_root, fp->mp_pgno);
6589                 mx->mx_cursor.mc_snum = 1;
6590                 mx->mx_cursor.mc_top = 0;
6591                 mx->mx_cursor.mc_flags = C_INITIALIZED|C_SUB;
6592                 mx->mx_cursor.mc_pg[0] = fp;
6593                 mx->mx_cursor.mc_ki[0] = 0;
6594                 if (mc->mc_db->md_flags & MDB_DUPFIXED) {
6595                         mx->mx_db.md_flags = MDB_DUPFIXED;
6596                         mx->mx_db.md_pad = fp->mp_pad;
6597                         if (mc->mc_db->md_flags & MDB_INTEGERDUP)
6598                                 mx->mx_db.md_flags |= MDB_INTEGERKEY;
6599                 }
6600         }
6601         DPRINTF(("Sub-db -%u root page %"Z"u", mx->mx_cursor.mc_dbi,
6602                 mx->mx_db.md_root));
6603         mx->mx_dbflag = DB_VALID|DB_DIRTY; /* DB_DIRTY guides mdb_cursor_touch */
6604 #if UINT_MAX < SIZE_MAX
6605         if (mx->mx_dbx.md_cmp == mdb_cmp_int && mx->mx_db.md_pad == sizeof(size_t))
6606 #ifdef MISALIGNED_OK
6607                 mx->mx_dbx.md_cmp = mdb_cmp_long;
6608 #else
6609                 mx->mx_dbx.md_cmp = mdb_cmp_cint;
6610 #endif
6611 #endif
6612 }
6613
6614 /** Initialize a cursor for a given transaction and database. */
6615 static void
6616 mdb_cursor_init(MDB_cursor *mc, MDB_txn *txn, MDB_dbi dbi, MDB_xcursor *mx)
6617 {
6618         mc->mc_next = NULL;
6619         mc->mc_backup = NULL;
6620         mc->mc_dbi = dbi;
6621         mc->mc_txn = txn;
6622         mc->mc_db = &txn->mt_dbs[dbi];
6623         mc->mc_dbx = &txn->mt_dbxs[dbi];
6624         mc->mc_dbflag = &txn->mt_dbflags[dbi];
6625         mc->mc_snum = 0;
6626         mc->mc_top = 0;
6627         mc->mc_pg[0] = 0;
6628         mc->mc_flags = 0;
6629         if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT) {
6630                 assert(mx != NULL);
6631                 mc->mc_xcursor = mx;
6632                 mdb_xcursor_init0(mc);
6633         } else {
6634                 mc->mc_xcursor = NULL;
6635         }
6636         if (*mc->mc_dbflag & DB_STALE) {
6637                 mdb_page_search(mc, NULL, MDB_PS_ROOTONLY);
6638         }
6639 }
6640
6641 int
6642 mdb_cursor_open(MDB_txn *txn, MDB_dbi dbi, MDB_cursor **ret)
6643 {
6644         MDB_cursor      *mc;
6645         size_t size = sizeof(MDB_cursor);
6646
6647         if (txn == NULL || ret == NULL || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
6648                 return EINVAL;
6649
6650         if (txn->mt_flags & MDB_TXN_ERROR)
6651                 return MDB_BAD_TXN;
6652
6653         /* Allow read access to the freelist */
6654         if (!dbi && !F_ISSET(txn->mt_flags, MDB_TXN_RDONLY))
6655                 return EINVAL;
6656
6657         if (txn->mt_dbs[dbi].md_flags & MDB_DUPSORT)
6658                 size += sizeof(MDB_xcursor);
6659
6660         if ((mc = malloc(size)) != NULL) {
6661                 mdb_cursor_init(mc, txn, dbi, (MDB_xcursor *)(mc + 1));
6662                 if (txn->mt_cursors) {
6663                         mc->mc_next = txn->mt_cursors[dbi];
6664                         txn->mt_cursors[dbi] = mc;
6665                         mc->mc_flags |= C_UNTRACK;
6666                 }
6667         } else {
6668                 return ENOMEM;
6669         }
6670
6671         *ret = mc;
6672
6673         return MDB_SUCCESS;
6674 }
6675
6676 int
6677 mdb_cursor_renew(MDB_txn *txn, MDB_cursor *mc)
6678 {
6679         if (txn == NULL || mc == NULL || mc->mc_dbi >= txn->mt_numdbs)
6680                 return EINVAL;
6681
6682         if ((mc->mc_flags & C_UNTRACK) || txn->mt_cursors)
6683                 return EINVAL;
6684
6685         mdb_cursor_init(mc, txn, mc->mc_dbi, mc->mc_xcursor);
6686         return MDB_SUCCESS;
6687 }
6688
6689 /* Return the count of duplicate data items for the current key */
6690 int
6691 mdb_cursor_count(MDB_cursor *mc, size_t *countp)
6692 {
6693         MDB_node        *leaf;
6694
6695         if (mc == NULL || countp == NULL)
6696                 return EINVAL;
6697
6698         if (mc->mc_xcursor == NULL)
6699                 return MDB_INCOMPATIBLE;
6700
6701         leaf = NODEPTR(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top]);
6702         if (!F_ISSET(leaf->mn_flags, F_DUPDATA)) {
6703                 *countp = 1;
6704         } else {
6705                 if (!(mc->mc_xcursor->mx_cursor.mc_flags & C_INITIALIZED))
6706                         return EINVAL;
6707
6708                 *countp = mc->mc_xcursor->mx_db.md_entries;
6709         }
6710         return MDB_SUCCESS;
6711 }
6712
6713 void
6714 mdb_cursor_close(MDB_cursor *mc)
6715 {
6716         if (mc && !mc->mc_backup) {
6717                 /* remove from txn, if tracked */
6718                 if ((mc->mc_flags & C_UNTRACK) && mc->mc_txn->mt_cursors) {
6719                         MDB_cursor **prev = &mc->mc_txn->mt_cursors[mc->mc_dbi];
6720                         while (*prev && *prev != mc) prev = &(*prev)->mc_next;
6721                         if (*prev == mc)
6722                                 *prev = mc->mc_next;
6723                 }
6724                 free(mc);
6725         }
6726 }
6727
6728 MDB_txn *
6729 mdb_cursor_txn(MDB_cursor *mc)
6730 {
6731         if (!mc) return NULL;
6732         return mc->mc_txn;
6733 }
6734
6735 MDB_dbi
6736 mdb_cursor_dbi(MDB_cursor *mc)
6737 {
6738         assert(mc != NULL);
6739         return mc->mc_dbi;
6740 }
6741
6742 /** Replace the key for a node with a new key.
6743  * @param[in] mc Cursor pointing to the node to operate on.
6744  * @param[in] key The new key to use.
6745  * @return 0 on success, non-zero on failure.
6746  */
6747 static int
6748 mdb_update_key(MDB_cursor *mc, MDB_val *key)
6749 {
6750         MDB_page                *mp;
6751         MDB_node                *node;
6752         char                    *base;
6753         size_t                   len;
6754         int                              delta, ksize, oksize;
6755         indx_t                   ptr, i, numkeys, indx;
6756         DKBUF;
6757
6758         indx = mc->mc_ki[mc->mc_top];
6759         mp = mc->mc_pg[mc->mc_top];
6760         node = NODEPTR(mp, indx);
6761         ptr = mp->mp_ptrs[indx];
6762 #if MDB_DEBUG
6763         {
6764                 MDB_val k2;
6765                 char kbuf2[(MDB_MAXKEYSIZE*2+1)];
6766                 k2.mv_data = NODEKEY(node);
6767                 k2.mv_size = node->mn_ksize;
6768                 DPRINTF(("update key %u (ofs %u) [%s] to [%s] on page %"Z"u",
6769                         indx, ptr,
6770                         mdb_dkey(&k2, kbuf2),
6771                         DKEY(key),
6772                         mp->mp_pgno));
6773         }
6774 #endif
6775
6776         /* Sizes must be 2-byte aligned. */
6777         ksize = EVEN(key->mv_size);
6778         oksize = EVEN(node->mn_ksize);
6779         delta = ksize - oksize;
6780
6781         /* Shift node contents if EVEN(key length) changed. */
6782         if (delta) {
6783                 if (delta > 0 && SIZELEFT(mp) < delta) {
6784                         pgno_t pgno;
6785                         /* not enough space left, do a delete and split */
6786                         DPRINTF(("Not enough room, delta = %d, splitting...", delta));
6787                         pgno = NODEPGNO(node);
6788                         mdb_node_del(mc->mc_pg[mc->mc_top], mc->mc_ki[mc->mc_top], 0);
6789                         return mdb_page_split(mc, key, NULL, pgno, MDB_SPLIT_REPLACE);
6790                 }
6791
6792                 numkeys = NUMKEYS(mp);
6793                 for (i = 0; i < numkeys; i++) {
6794                         if (mp->mp_ptrs[i] <= ptr)
6795                                 mp->mp_ptrs[i] -= delta;
6796                 }
6797
6798                 base = (char *)mp + mp->mp_upper;
6799                 len = ptr - mp->mp_upper + NODESIZE;
6800                 memmove(base - delta, base, len);
6801                 mp->mp_upper -= delta;
6802
6803                 node = NODEPTR(mp, indx);
6804         }
6805
6806         /* But even if no shift was needed, update ksize */
6807         if (node->mn_ksize != key->mv_size)
6808                 node->mn_ksize = key->mv_size;
6809
6810         if (key->mv_size)
6811                 memcpy(NODEKEY(node), key->mv_data, key->mv_size);
6812
6813         return MDB_SUCCESS;
6814 }
6815
6816 static void
6817 mdb_cursor_copy(const MDB_cursor *csrc, MDB_cursor *cdst);
6818
6819 /** Move a node from csrc to cdst.
6820  */
6821 static int
6822 mdb_node_move(MDB_cursor *csrc, MDB_cursor *cdst)
6823 {
6824         MDB_node                *srcnode;
6825         MDB_val          key, data;
6826         pgno_t  srcpg;
6827         MDB_cursor mn;
6828         int                      rc;
6829         unsigned short flags;
6830
6831         DKBUF;
6832
6833         /* Mark src and dst as dirty. */
6834         if ((rc = mdb_page_touch(csrc)) ||
6835             (rc = mdb_page_touch(cdst)))
6836                 return rc;
6837
6838         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
6839                 key.mv_size = csrc->mc_db->md_pad;
6840                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], csrc->mc_ki[csrc->mc_top], key.mv_size);
6841                 data.mv_size = 0;
6842                 data.mv_data = NULL;
6843                 srcpg = 0;
6844                 flags = 0;
6845         } else {
6846                 srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], csrc->mc_ki[csrc->mc_top]);
6847                 assert(!((size_t)srcnode&1));
6848                 srcpg = NODEPGNO(srcnode);
6849                 flags = srcnode->mn_flags;
6850                 if (csrc->mc_ki[csrc->mc_top] == 0 && IS_BRANCH(csrc->mc_pg[csrc->mc_top])) {
6851                         unsigned int snum = csrc->mc_snum;
6852                         MDB_node *s2;
6853                         /* must find the lowest key below src */
6854                         mdb_page_search_lowest(csrc);
6855                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
6856                                 key.mv_size = csrc->mc_db->md_pad;
6857                                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], 0, key.mv_size);
6858                         } else {
6859                                 s2 = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);
6860                                 key.mv_size = NODEKSZ(s2);
6861                                 key.mv_data = NODEKEY(s2);
6862                         }
6863                         csrc->mc_snum = snum--;
6864                         csrc->mc_top = snum;
6865                 } else {
6866                         key.mv_size = NODEKSZ(srcnode);
6867                         key.mv_data = NODEKEY(srcnode);
6868                 }
6869                 data.mv_size = NODEDSZ(srcnode);
6870                 data.mv_data = NODEDATA(srcnode);
6871         }
6872         if (IS_BRANCH(cdst->mc_pg[cdst->mc_top]) && cdst->mc_ki[cdst->mc_top] == 0) {
6873                 unsigned int snum = cdst->mc_snum;
6874                 MDB_node *s2;
6875                 MDB_val bkey;
6876                 /* must find the lowest key below dst */
6877                 mdb_page_search_lowest(cdst);
6878                 if (IS_LEAF2(cdst->mc_pg[cdst->mc_top])) {
6879                         bkey.mv_size = cdst->mc_db->md_pad;
6880                         bkey.mv_data = LEAF2KEY(cdst->mc_pg[cdst->mc_top], 0, bkey.mv_size);
6881                 } else {
6882                         s2 = NODEPTR(cdst->mc_pg[cdst->mc_top], 0);
6883                         bkey.mv_size = NODEKSZ(s2);
6884                         bkey.mv_data = NODEKEY(s2);
6885                 }
6886                 cdst->mc_snum = snum--;
6887                 cdst->mc_top = snum;
6888                 mdb_cursor_copy(cdst, &mn);
6889                 mn.mc_ki[snum] = 0;
6890                 rc = mdb_update_key(&mn, &bkey);
6891                 if (rc)
6892                         return rc;
6893         }
6894
6895         DPRINTF(("moving %s node %u [%s] on page %"Z"u to node %u on page %"Z"u",
6896             IS_LEAF(csrc->mc_pg[csrc->mc_top]) ? "leaf" : "branch",
6897             csrc->mc_ki[csrc->mc_top],
6898                 DKEY(&key),
6899             csrc->mc_pg[csrc->mc_top]->mp_pgno,
6900             cdst->mc_ki[cdst->mc_top], cdst->mc_pg[cdst->mc_top]->mp_pgno));
6901
6902         /* Add the node to the destination page.
6903          */
6904         rc = mdb_node_add(cdst, cdst->mc_ki[cdst->mc_top], &key, &data, srcpg, flags);
6905         if (rc != MDB_SUCCESS)
6906                 return rc;
6907
6908         /* Delete the node from the source page.
6909          */
6910         mdb_node_del(csrc->mc_pg[csrc->mc_top], csrc->mc_ki[csrc->mc_top], key.mv_size);
6911
6912         {
6913                 /* Adjust other cursors pointing to mp */
6914                 MDB_cursor *m2, *m3;
6915                 MDB_dbi dbi = csrc->mc_dbi;
6916                 MDB_page *mp = csrc->mc_pg[csrc->mc_top];
6917
6918                 for (m2 = csrc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
6919                         if (csrc->mc_flags & C_SUB)
6920                                 m3 = &m2->mc_xcursor->mx_cursor;
6921                         else
6922                                 m3 = m2;
6923                         if (m3 == csrc) continue;
6924                         if (m3->mc_pg[csrc->mc_top] == mp && m3->mc_ki[csrc->mc_top] ==
6925                                 csrc->mc_ki[csrc->mc_top]) {
6926                                 m3->mc_pg[csrc->mc_top] = cdst->mc_pg[cdst->mc_top];
6927                                 m3->mc_ki[csrc->mc_top] = cdst->mc_ki[cdst->mc_top];
6928                         }
6929                 }
6930         }
6931
6932         /* Update the parent separators.
6933          */
6934         if (csrc->mc_ki[csrc->mc_top] == 0) {
6935                 if (csrc->mc_ki[csrc->mc_top-1] != 0) {
6936                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
6937                                 key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], 0, key.mv_size);
6938                         } else {
6939                                 srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);
6940                                 key.mv_size = NODEKSZ(srcnode);
6941                                 key.mv_data = NODEKEY(srcnode);
6942                         }
6943                         DPRINTF(("update separator for source page %"Z"u to [%s]",
6944                                 csrc->mc_pg[csrc->mc_top]->mp_pgno, DKEY(&key)));
6945                         mdb_cursor_copy(csrc, &mn);
6946                         mn.mc_snum--;
6947                         mn.mc_top--;
6948                         if ((rc = mdb_update_key(&mn, &key)) != MDB_SUCCESS)
6949                                 return rc;
6950                 }
6951                 if (IS_BRANCH(csrc->mc_pg[csrc->mc_top])) {
6952                         MDB_val  nullkey;
6953                         indx_t  ix = csrc->mc_ki[csrc->mc_top];
6954                         nullkey.mv_size = 0;
6955                         csrc->mc_ki[csrc->mc_top] = 0;
6956                         rc = mdb_update_key(csrc, &nullkey);
6957                         csrc->mc_ki[csrc->mc_top] = ix;
6958                         assert(rc == MDB_SUCCESS);
6959                 }
6960         }
6961
6962         if (cdst->mc_ki[cdst->mc_top] == 0) {
6963                 if (cdst->mc_ki[cdst->mc_top-1] != 0) {
6964                         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
6965                                 key.mv_data = LEAF2KEY(cdst->mc_pg[cdst->mc_top], 0, key.mv_size);
6966                         } else {
6967                                 srcnode = NODEPTR(cdst->mc_pg[cdst->mc_top], 0);
6968                                 key.mv_size = NODEKSZ(srcnode);
6969                                 key.mv_data = NODEKEY(srcnode);
6970                         }
6971                         DPRINTF(("update separator for destination page %"Z"u to [%s]",
6972                                 cdst->mc_pg[cdst->mc_top]->mp_pgno, DKEY(&key)));
6973                         mdb_cursor_copy(cdst, &mn);
6974                         mn.mc_snum--;
6975                         mn.mc_top--;
6976                         if ((rc = mdb_update_key(&mn, &key)) != MDB_SUCCESS)
6977                                 return rc;
6978                 }
6979                 if (IS_BRANCH(cdst->mc_pg[cdst->mc_top])) {
6980                         MDB_val  nullkey;
6981                         indx_t  ix = cdst->mc_ki[cdst->mc_top];
6982                         nullkey.mv_size = 0;
6983                         cdst->mc_ki[cdst->mc_top] = 0;
6984                         rc = mdb_update_key(cdst, &nullkey);
6985                         cdst->mc_ki[cdst->mc_top] = ix;
6986                         assert(rc == MDB_SUCCESS);
6987                 }
6988         }
6989
6990         return MDB_SUCCESS;
6991 }
6992
6993 /** Merge one page into another.
6994  *  The nodes from the page pointed to by \b csrc will
6995  *      be copied to the page pointed to by \b cdst and then
6996  *      the \b csrc page will be freed.
6997  * @param[in] csrc Cursor pointing to the source page.
6998  * @param[in] cdst Cursor pointing to the destination page.
6999  */
7000 static int
7001 mdb_page_merge(MDB_cursor *csrc, MDB_cursor *cdst)
7002 {
7003         int                      rc;
7004         indx_t                   i, j;
7005         MDB_node                *srcnode;
7006         MDB_val          key, data;
7007         unsigned        nkeys;
7008
7009         DPRINTF(("merging page %"Z"u into %"Z"u", csrc->mc_pg[csrc->mc_top]->mp_pgno,
7010                 cdst->mc_pg[cdst->mc_top]->mp_pgno));
7011
7012         assert(csrc->mc_snum > 1);      /* can't merge root page */
7013         assert(cdst->mc_snum > 1);
7014
7015         /* Mark dst as dirty. */
7016         if ((rc = mdb_page_touch(cdst)))
7017                 return rc;
7018
7019         /* Move all nodes from src to dst.
7020          */
7021         j = nkeys = NUMKEYS(cdst->mc_pg[cdst->mc_top]);
7022         if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
7023                 key.mv_size = csrc->mc_db->md_pad;
7024                 key.mv_data = METADATA(csrc->mc_pg[csrc->mc_top]);
7025                 for (i = 0; i < NUMKEYS(csrc->mc_pg[csrc->mc_top]); i++, j++) {
7026                         rc = mdb_node_add(cdst, j, &key, NULL, 0, 0);
7027                         if (rc != MDB_SUCCESS)
7028                                 return rc;
7029                         key.mv_data = (char *)key.mv_data + key.mv_size;
7030                 }
7031         } else {
7032                 for (i = 0; i < NUMKEYS(csrc->mc_pg[csrc->mc_top]); i++, j++) {
7033                         srcnode = NODEPTR(csrc->mc_pg[csrc->mc_top], i);
7034                         if (i == 0 && IS_BRANCH(csrc->mc_pg[csrc->mc_top])) {
7035                                 unsigned int snum = csrc->mc_snum;
7036                                 MDB_node *s2;
7037                                 /* must find the lowest key below src */
7038                                 mdb_page_search_lowest(csrc);
7039                                 if (IS_LEAF2(csrc->mc_pg[csrc->mc_top])) {
7040                                         key.mv_size = csrc->mc_db->md_pad;
7041                                         key.mv_data = LEAF2KEY(csrc->mc_pg[csrc->mc_top], 0, key.mv_size);
7042                                 } else {
7043                                         s2 = NODEPTR(csrc->mc_pg[csrc->mc_top], 0);
7044                                         key.mv_size = NODEKSZ(s2);
7045                                         key.mv_data = NODEKEY(s2);
7046                                 }
7047                                 csrc->mc_snum = snum--;
7048                                 csrc->mc_top = snum;
7049                         } else {
7050                                 key.mv_size = srcnode->mn_ksize;
7051                                 key.mv_data = NODEKEY(srcnode);
7052                         }
7053
7054                         data.mv_size = NODEDSZ(srcnode);
7055                         data.mv_data = NODEDATA(srcnode);
7056                         rc = mdb_node_add(cdst, j, &key, &data, NODEPGNO(srcnode), srcnode->mn_flags);
7057                         if (rc != MDB_SUCCESS)
7058                                 return rc;
7059                 }
7060         }
7061
7062         DPRINTF(("dst page %"Z"u now has %u keys (%.1f%% filled)",
7063             cdst->mc_pg[cdst->mc_top]->mp_pgno, NUMKEYS(cdst->mc_pg[cdst->mc_top]),
7064                 (float)PAGEFILL(cdst->mc_txn->mt_env, cdst->mc_pg[cdst->mc_top]) / 10));
7065
7066         /* Unlink the src page from parent and add to free list.
7067          */
7068         mdb_node_del(csrc->mc_pg[csrc->mc_top-1], csrc->mc_ki[csrc->mc_top-1], 0);
7069         if (csrc->mc_ki[csrc->mc_top-1] == 0) {
7070                 key.mv_size = 0;
7071                 csrc->mc_top--;
7072                 rc = mdb_update_key(csrc, &key);
7073                 csrc->mc_top++;
7074                 if (rc)
7075                         return rc;
7076         }
7077
7078         rc = mdb_midl_append(&csrc->mc_txn->mt_free_pgs,
7079                 csrc->mc_pg[csrc->mc_top]->mp_pgno);
7080         if (rc)
7081                 return rc;
7082         if (IS_LEAF(csrc->mc_pg[csrc->mc_top]))
7083                 csrc->mc_db->md_leaf_pages--;
7084         else
7085                 csrc->mc_db->md_branch_pages--;
7086         {
7087                 /* Adjust other cursors pointing to mp */
7088                 MDB_cursor *m2, *m3;
7089                 MDB_dbi dbi = csrc->mc_dbi;
7090                 MDB_page *mp = cdst->mc_pg[cdst->mc_top];
7091
7092                 for (m2 = csrc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
7093                         if (csrc->mc_flags & C_SUB)
7094                                 m3 = &m2->mc_xcursor->mx_cursor;
7095                         else
7096                                 m3 = m2;
7097                         if (m3 == csrc) continue;
7098                         if (m3->mc_snum < csrc->mc_snum) continue;
7099                         if (m3->mc_pg[csrc->mc_top] == csrc->mc_pg[csrc->mc_top]) {
7100                                 m3->mc_pg[csrc->mc_top] = mp;
7101                                 m3->mc_ki[csrc->mc_top] += nkeys;
7102                         }
7103                 }
7104         }
7105         mdb_cursor_pop(csrc);
7106
7107         return mdb_rebalance(csrc);
7108 }
7109
7110 /** Copy the contents of a cursor.
7111  * @param[in] csrc The cursor to copy from.
7112  * @param[out] cdst The cursor to copy to.
7113  */
7114 static void
7115 mdb_cursor_copy(const MDB_cursor *csrc, MDB_cursor *cdst)
7116 {
7117         unsigned int i;
7118
7119         cdst->mc_txn = csrc->mc_txn;
7120         cdst->mc_dbi = csrc->mc_dbi;
7121         cdst->mc_db  = csrc->mc_db;
7122         cdst->mc_dbx = csrc->mc_dbx;
7123         cdst->mc_snum = csrc->mc_snum;
7124         cdst->mc_top = csrc->mc_top;
7125         cdst->mc_flags = csrc->mc_flags;
7126
7127         for (i=0; i<csrc->mc_snum; i++) {
7128                 cdst->mc_pg[i] = csrc->mc_pg[i];
7129                 cdst->mc_ki[i] = csrc->mc_ki[i];
7130         }
7131 }
7132
7133 /** Rebalance the tree after a delete operation.
7134  * @param[in] mc Cursor pointing to the page where rebalancing
7135  * should begin.
7136  * @return 0 on success, non-zero on failure.
7137  */
7138 static int
7139 mdb_rebalance(MDB_cursor *mc)
7140 {
7141         MDB_node        *node;
7142         int rc;
7143         unsigned int ptop, minkeys;
7144         MDB_cursor      mn;
7145
7146         minkeys = 1 + (IS_BRANCH(mc->mc_pg[mc->mc_top]));
7147 #if MDB_DEBUG
7148         {
7149         pgno_t pgno;
7150         COPY_PGNO(pgno, mc->mc_pg[mc->mc_top]->mp_pgno);
7151         DPRINTF(("rebalancing %s page %"Z"u (has %u keys, %.1f%% full)",
7152             IS_LEAF(mc->mc_pg[mc->mc_top]) ? "leaf" : "branch",
7153             pgno, NUMKEYS(mc->mc_pg[mc->mc_top]),
7154                 (float)PAGEFILL(mc->mc_txn->mt_env, mc->mc_pg[mc->mc_top]) / 10));
7155         }
7156 #endif
7157
7158         if (PAGEFILL(mc->mc_txn->mt_env, mc->mc_pg[mc->mc_top]) >= FILL_THRESHOLD &&
7159                 NUMKEYS(mc->mc_pg[mc->mc_top]) >= minkeys) {
7160 #if MDB_DEBUG
7161                 pgno_t pgno;
7162                 COPY_PGNO(pgno, mc->mc_pg[mc->mc_top]->mp_pgno);
7163                 DPRINTF(("no need to rebalance page %"Z"u, above fill threshold",
7164                     pgno));
7165 #endif
7166                 return MDB_SUCCESS;
7167         }
7168
7169         if (mc->mc_snum < 2) {
7170                 MDB_page *mp = mc->mc_pg[0];
7171                 if (IS_SUBP(mp)) {
7172                         DPUTS("Can't rebalance a subpage, ignoring");
7173                         return MDB_SUCCESS;
7174                 }
7175                 if (NUMKEYS(mp) == 0) {
7176                         DPUTS("tree is completely empty");
7177                         mc->mc_db->md_root = P_INVALID;
7178                         mc->mc_db->md_depth = 0;
7179                         mc->mc_db->md_leaf_pages = 0;
7180                         rc = mdb_midl_append(&mc->mc_txn->mt_free_pgs, mp->mp_pgno);
7181                         if (rc)
7182                                 return rc;
7183                         /* Adjust cursors pointing to mp */
7184                         mc->mc_snum = 0;
7185                         mc->mc_top = 0;
7186                         mc->mc_flags &= ~C_INITIALIZED;
7187                         {
7188                                 MDB_cursor *m2, *m3;
7189                                 MDB_dbi dbi = mc->mc_dbi;
7190
7191                                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
7192                                         if (mc->mc_flags & C_SUB)
7193                                                 m3 = &m2->mc_xcursor->mx_cursor;
7194                                         else
7195                                                 m3 = m2;
7196                                         if (m3->mc_snum < mc->mc_snum) continue;
7197                                         if (m3->mc_pg[0] == mp) {
7198                                                 m3->mc_snum = 0;
7199                                                 m3->mc_top = 0;
7200                                                 m3->mc_flags &= ~C_INITIALIZED;
7201                                         }
7202                                 }
7203                         }
7204                 } else if (IS_BRANCH(mp) && NUMKEYS(mp) == 1) {
7205                         DPUTS("collapsing root page!");
7206                         rc = mdb_midl_append(&mc->mc_txn->mt_free_pgs, mp->mp_pgno);
7207                         if (rc)
7208                                 return rc;
7209                         mc->mc_db->md_root = NODEPGNO(NODEPTR(mp, 0));
7210                         rc = mdb_page_get(mc->mc_txn,mc->mc_db->md_root,&mc->mc_pg[0],NULL);
7211                         if (rc)
7212                                 return rc;
7213                         mc->mc_db->md_depth--;
7214                         mc->mc_db->md_branch_pages--;
7215                         mc->mc_ki[0] = mc->mc_ki[1];
7216                         {
7217                                 /* Adjust other cursors pointing to mp */
7218                                 MDB_cursor *m2, *m3;
7219                                 MDB_dbi dbi = mc->mc_dbi;
7220
7221                                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
7222                                         if (mc->mc_flags & C_SUB)
7223                                                 m3 = &m2->mc_xcursor->mx_cursor;
7224                                         else
7225                                                 m3 = m2;
7226                                         if (m3 == mc || m3->mc_snum < mc->mc_snum) continue;
7227                                         if (m3->mc_pg[0] == mp) {
7228                                                 int i;
7229                                                 m3->mc_snum--;
7230                                                 m3->mc_top--;
7231                                                 for (i=0; i<m3->mc_snum; i++) {
7232                                                         m3->mc_pg[i] = m3->mc_pg[i+1];
7233                                                         m3->mc_ki[i] = m3->mc_ki[i+1];
7234                                                 }
7235                                         }
7236                                 }
7237                         }
7238                 } else
7239                         DPUTS("root page doesn't need rebalancing");
7240                 return MDB_SUCCESS;
7241         }
7242
7243         /* The parent (branch page) must have at least 2 pointers,
7244          * otherwise the tree is invalid.
7245          */
7246         ptop = mc->mc_top-1;
7247         assert(NUMKEYS(mc->mc_pg[ptop]) > 1);
7248
7249         /* Leaf page fill factor is below the threshold.
7250          * Try to move keys from left or right neighbor, or
7251          * merge with a neighbor page.
7252          */
7253
7254         /* Find neighbors.
7255          */
7256         mdb_cursor_copy(mc, &mn);
7257         mn.mc_xcursor = NULL;
7258
7259         if (mc->mc_ki[ptop] == 0) {
7260                 /* We're the leftmost leaf in our parent.
7261                  */
7262                 DPUTS("reading right neighbor");
7263                 mn.mc_ki[ptop]++;
7264                 node = NODEPTR(mc->mc_pg[ptop], mn.mc_ki[ptop]);
7265                 rc = mdb_page_get(mc->mc_txn,NODEPGNO(node),&mn.mc_pg[mn.mc_top],NULL);
7266                 if (rc)
7267                         return rc;
7268                 mn.mc_ki[mn.mc_top] = 0;
7269                 mc->mc_ki[mc->mc_top] = NUMKEYS(mc->mc_pg[mc->mc_top]);
7270         } else {
7271                 /* There is at least one neighbor to the left.
7272                  */
7273                 DPUTS("reading left 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] = NUMKEYS(mn.mc_pg[mn.mc_top]) - 1;
7280                 mc->mc_ki[mc->mc_top] = 0;
7281         }
7282
7283         DPRINTF(("found neighbor page %"Z"u (%u keys, %.1f%% full)",
7284             mn.mc_pg[mn.mc_top]->mp_pgno, NUMKEYS(mn.mc_pg[mn.mc_top]),
7285                 (float)PAGEFILL(mc->mc_txn->mt_env, mn.mc_pg[mn.mc_top]) / 10));
7286
7287         /* If the neighbor page is above threshold and has enough keys,
7288          * move one key from it. Otherwise we should try to merge them.
7289          * (A branch page must never have less than 2 keys.)
7290          */
7291         minkeys = 1 + (IS_BRANCH(mn.mc_pg[mn.mc_top]));
7292         if (PAGEFILL(mc->mc_txn->mt_env, mn.mc_pg[mn.mc_top]) >= FILL_THRESHOLD && NUMKEYS(mn.mc_pg[mn.mc_top]) > minkeys)
7293                 return mdb_node_move(&mn, mc);
7294         else {
7295                 if (mc->mc_ki[ptop] == 0)
7296                         rc = mdb_page_merge(&mn, mc);
7297                 else {
7298                         mn.mc_ki[mn.mc_top] += mc->mc_ki[mn.mc_top] + 1;
7299                         rc = mdb_page_merge(mc, &mn);
7300                         mdb_cursor_copy(&mn, mc);
7301                 }
7302                 mc->mc_flags &= ~(C_INITIALIZED|C_EOF);
7303         }
7304         return rc;
7305 }
7306
7307 /** Complete a delete operation started by #mdb_cursor_del(). */
7308 static int
7309 mdb_cursor_del0(MDB_cursor *mc, MDB_node *leaf)
7310 {
7311         int rc;
7312         MDB_page *mp;
7313         indx_t ki;
7314         unsigned int nkeys;
7315
7316         mp = mc->mc_pg[mc->mc_top];
7317         ki = mc->mc_ki[mc->mc_top];
7318
7319         /* add overflow pages to free list */
7320         if (!IS_LEAF2(mp) && F_ISSET(leaf->mn_flags, F_BIGDATA)) {
7321                 MDB_page *omp;
7322                 pgno_t pg;
7323
7324                 memcpy(&pg, NODEDATA(leaf), sizeof(pg));
7325                 if ((rc = mdb_page_get(mc->mc_txn, pg, &omp, NULL)) ||
7326                         (rc = mdb_ovpage_free(mc, omp)))
7327                         return rc;
7328         }
7329         mdb_node_del(mp, ki, mc->mc_db->md_pad);
7330         mc->mc_db->md_entries--;
7331         rc = mdb_rebalance(mc);
7332         if (rc != MDB_SUCCESS)
7333                 mc->mc_txn->mt_flags |= MDB_TXN_ERROR;
7334         else {
7335                 MDB_cursor *m2;
7336                 MDB_dbi dbi = mc->mc_dbi;
7337
7338                 mp = mc->mc_pg[mc->mc_top];
7339                 nkeys = NUMKEYS(mp);
7340
7341                 /* if mc points past last node in page, find next sibling */
7342                 if (mc->mc_ki[mc->mc_top] >= nkeys)
7343                         mdb_cursor_sibling(mc, 1);
7344
7345                 /* Adjust other cursors pointing to mp */
7346                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
7347                         if (m2 == mc || m2->mc_snum < mc->mc_snum)
7348                                 continue;
7349                         if (!(m2->mc_flags & C_INITIALIZED))
7350                                 continue;
7351                         if (m2->mc_pg[mc->mc_top] == mp) {
7352                                 if (m2->mc_ki[mc->mc_top] >= ki) {
7353                                         m2->mc_flags |= C_DEL;
7354                                         if (m2->mc_ki[mc->mc_top] > ki)
7355                                                 m2->mc_ki[mc->mc_top]--;
7356                                 }
7357                                 if (m2->mc_ki[mc->mc_top] >= nkeys)
7358                                         mdb_cursor_sibling(m2, 1);
7359                         }
7360                 }
7361                 mc->mc_flags |= C_DEL;
7362         }
7363
7364         return rc;
7365 }
7366
7367 int
7368 mdb_del(MDB_txn *txn, MDB_dbi dbi,
7369     MDB_val *key, MDB_val *data)
7370 {
7371         MDB_cursor mc;
7372         MDB_xcursor mx;
7373         MDB_cursor_op op;
7374         MDB_val rdata, *xdata;
7375         int              rc, exact;
7376         DKBUF;
7377
7378         assert(key != NULL);
7379
7380         DPRINTF(("====> delete db %u key [%s]", dbi, DKEY(key)));
7381
7382         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
7383                 return EINVAL;
7384
7385         if (txn->mt_flags & (MDB_TXN_RDONLY|MDB_TXN_ERROR))
7386                 return (txn->mt_flags & MDB_TXN_RDONLY) ? EACCES : MDB_BAD_TXN;
7387
7388         mdb_cursor_init(&mc, txn, dbi, &mx);
7389
7390         exact = 0;
7391         if (!F_ISSET(txn->mt_dbs[dbi].md_flags, MDB_DUPSORT)) {
7392                 /* must ignore any data */
7393                 data = NULL;
7394         }
7395         if (data) {
7396                 op = MDB_GET_BOTH;
7397                 rdata = *data;
7398                 xdata = &rdata;
7399         } else {
7400                 op = MDB_SET;
7401                 xdata = NULL;
7402         }
7403         rc = mdb_cursor_set(&mc, key, xdata, op, &exact);
7404         if (rc == 0) {
7405                 /* let mdb_page_split know about this cursor if needed:
7406                  * delete will trigger a rebalance; if it needs to move
7407                  * a node from one page to another, it will have to
7408                  * update the parent's separator key(s). If the new sepkey
7409                  * is larger than the current one, the parent page may
7410                  * run out of space, triggering a split. We need this
7411                  * cursor to be consistent until the end of the rebalance.
7412                  */
7413                 mc.mc_flags |= C_UNTRACK;
7414                 mc.mc_next = txn->mt_cursors[dbi];
7415                 txn->mt_cursors[dbi] = &mc;
7416                 rc = mdb_cursor_del(&mc, data ? 0 : MDB_NODUPDATA);
7417                 txn->mt_cursors[dbi] = mc.mc_next;
7418         }
7419         return rc;
7420 }
7421
7422 /** Split a page and insert a new node.
7423  * @param[in,out] mc Cursor pointing to the page and desired insertion index.
7424  * The cursor will be updated to point to the actual page and index where
7425  * the node got inserted after the split.
7426  * @param[in] newkey The key for the newly inserted node.
7427  * @param[in] newdata The data for the newly inserted node.
7428  * @param[in] newpgno The page number, if the new node is a branch node.
7429  * @param[in] nflags The #NODE_ADD_FLAGS for the new node.
7430  * @return 0 on success, non-zero on failure.
7431  */
7432 static int
7433 mdb_page_split(MDB_cursor *mc, MDB_val *newkey, MDB_val *newdata, pgno_t newpgno,
7434         unsigned int nflags)
7435 {
7436         unsigned int flags;
7437         int              rc = MDB_SUCCESS, new_root = 0, did_split = 0;
7438         indx_t           newindx;
7439         pgno_t           pgno = 0;
7440         int      i, j, split_indx, nkeys, pmax;
7441         MDB_env         *env = mc->mc_txn->mt_env;
7442         MDB_node        *node;
7443         MDB_val  sepkey, rkey, xdata, *rdata = &xdata;
7444         MDB_page        *copy = NULL;
7445         MDB_page        *mp, *rp, *pp;
7446         int ptop;
7447         MDB_cursor      mn;
7448         DKBUF;
7449
7450         mp = mc->mc_pg[mc->mc_top];
7451         newindx = mc->mc_ki[mc->mc_top];
7452         nkeys = NUMKEYS(mp);
7453
7454         DPRINTF(("-----> splitting %s page %"Z"u and adding [%s] at index %i/%i",
7455             IS_LEAF(mp) ? "leaf" : "branch", mp->mp_pgno,
7456             DKEY(newkey), mc->mc_ki[mc->mc_top], nkeys));
7457
7458         /* Create a right sibling. */
7459         if ((rc = mdb_page_new(mc, mp->mp_flags, 1, &rp)))
7460                 return rc;
7461         DPRINTF(("new right sibling: page %"Z"u", rp->mp_pgno));
7462
7463         if (mc->mc_snum < 2) {
7464                 if ((rc = mdb_page_new(mc, P_BRANCH, 1, &pp)))
7465                         return rc;
7466                 /* shift current top to make room for new parent */
7467                 mc->mc_pg[1] = mc->mc_pg[0];
7468                 mc->mc_ki[1] = mc->mc_ki[0];
7469                 mc->mc_pg[0] = pp;
7470                 mc->mc_ki[0] = 0;
7471                 mc->mc_db->md_root = pp->mp_pgno;
7472                 DPRINTF(("root split! new root = %"Z"u", pp->mp_pgno));
7473                 mc->mc_db->md_depth++;
7474                 new_root = 1;
7475
7476                 /* Add left (implicit) pointer. */
7477                 if ((rc = mdb_node_add(mc, 0, NULL, NULL, mp->mp_pgno, 0)) != MDB_SUCCESS) {
7478                         /* undo the pre-push */
7479                         mc->mc_pg[0] = mc->mc_pg[1];
7480                         mc->mc_ki[0] = mc->mc_ki[1];
7481                         mc->mc_db->md_root = mp->mp_pgno;
7482                         mc->mc_db->md_depth--;
7483                         return rc;
7484                 }
7485                 mc->mc_snum = 2;
7486                 mc->mc_top = 1;
7487                 ptop = 0;
7488         } else {
7489                 ptop = mc->mc_top-1;
7490                 DPRINTF(("parent branch page is %"Z"u", mc->mc_pg[ptop]->mp_pgno));
7491         }
7492
7493         mc->mc_flags |= C_SPLITTING;
7494         mdb_cursor_copy(mc, &mn);
7495         mn.mc_pg[mn.mc_top] = rp;
7496         mn.mc_ki[ptop] = mc->mc_ki[ptop]+1;
7497
7498         if (nflags & MDB_APPEND) {
7499                 mn.mc_ki[mn.mc_top] = 0;
7500                 sepkey = *newkey;
7501                 split_indx = newindx;
7502                 nkeys = 0;
7503         } else {
7504
7505                 split_indx = (nkeys+1) / 2;
7506
7507                 if (IS_LEAF2(rp)) {
7508                         char *split, *ins;
7509                         int x;
7510                         unsigned int lsize, rsize, ksize;
7511                         /* Move half of the keys to the right sibling */
7512                         copy = NULL;
7513                         x = mc->mc_ki[mc->mc_top] - split_indx;
7514                         ksize = mc->mc_db->md_pad;
7515                         split = LEAF2KEY(mp, split_indx, ksize);
7516                         rsize = (nkeys - split_indx) * ksize;
7517                         lsize = (nkeys - split_indx) * sizeof(indx_t);
7518                         mp->mp_lower -= lsize;
7519                         rp->mp_lower += lsize;
7520                         mp->mp_upper += rsize - lsize;
7521                         rp->mp_upper -= rsize - lsize;
7522                         sepkey.mv_size = ksize;
7523                         if (newindx == split_indx) {
7524                                 sepkey.mv_data = newkey->mv_data;
7525                         } else {
7526                                 sepkey.mv_data = split;
7527                         }
7528                         if (x<0) {
7529                                 ins = LEAF2KEY(mp, mc->mc_ki[mc->mc_top], ksize);
7530                                 memcpy(rp->mp_ptrs, split, rsize);
7531                                 sepkey.mv_data = rp->mp_ptrs;
7532                                 memmove(ins+ksize, ins, (split_indx - mc->mc_ki[mc->mc_top]) * ksize);
7533                                 memcpy(ins, newkey->mv_data, ksize);
7534                                 mp->mp_lower += sizeof(indx_t);
7535                                 mp->mp_upper -= ksize - sizeof(indx_t);
7536                         } else {
7537                                 if (x)
7538                                         memcpy(rp->mp_ptrs, split, x * ksize);
7539                                 ins = LEAF2KEY(rp, x, ksize);
7540                                 memcpy(ins, newkey->mv_data, ksize);
7541                                 memcpy(ins+ksize, split + x * ksize, rsize - x * ksize);
7542                                 rp->mp_lower += sizeof(indx_t);
7543                                 rp->mp_upper -= ksize - sizeof(indx_t);
7544                                 mc->mc_ki[mc->mc_top] = x;
7545                                 mc->mc_pg[mc->mc_top] = rp;
7546                         }
7547                 } else {
7548                         int psize, nsize, k;
7549                         /* Maximum free space in an empty page */
7550                         pmax = env->me_psize - PAGEHDRSZ;
7551                         if (IS_LEAF(mp))
7552                                 nsize = mdb_leaf_size(env, newkey, newdata);
7553                         else
7554                                 nsize = mdb_branch_size(env, newkey);
7555                         nsize = EVEN(nsize);
7556
7557                         /* grab a page to hold a temporary copy */
7558                         copy = mdb_page_malloc(mc->mc_txn, 1);
7559                         if (copy == NULL)
7560                                 return ENOMEM;
7561                         copy->mp_pgno  = mp->mp_pgno;
7562                         copy->mp_flags = mp->mp_flags;
7563                         copy->mp_lower = PAGEHDRSZ;
7564                         copy->mp_upper = env->me_psize;
7565
7566                         /* prepare to insert */
7567                         for (i=0, j=0; i<nkeys; i++) {
7568                                 if (i == newindx) {
7569                                         copy->mp_ptrs[j++] = 0;
7570                                 }
7571                                 copy->mp_ptrs[j++] = mp->mp_ptrs[i];
7572                         }
7573
7574                         /* When items are relatively large the split point needs
7575                          * to be checked, because being off-by-one will make the
7576                          * difference between success or failure in mdb_node_add.
7577                          *
7578                          * It's also relevant if a page happens to be laid out
7579                          * such that one half of its nodes are all "small" and
7580                          * the other half of its nodes are "large." If the new
7581                          * item is also "large" and falls on the half with
7582                          * "large" nodes, it also may not fit.
7583                          *
7584                          * As a final tweak, if the new item goes on the last
7585                          * spot on the page (and thus, onto the new page), bias
7586                          * the split so the new page is emptier than the old page.
7587                          * This yields better packing during sequential inserts.
7588                          */
7589                         if (nkeys < 20 || nsize > pmax/16 || newindx >= nkeys) {
7590                                 /* Find split point */
7591                                 psize = 0;
7592                                 if (newindx <= split_indx || newindx >= nkeys) {
7593                                         i = 0; j = 1;
7594                                         k = newindx >= nkeys ? nkeys : split_indx+2;
7595                                 } else {
7596                                         i = nkeys; j = -1;
7597                                         k = split_indx-1;
7598                                 }
7599                                 for (; i!=k; i+=j) {
7600                                         if (i == newindx) {
7601                                                 psize += nsize;
7602                                                 node = NULL;
7603                                         } else {
7604                                                 node = (MDB_node *)((char *)mp + copy->mp_ptrs[i]);
7605                                                 psize += NODESIZE + NODEKSZ(node) + sizeof(indx_t);
7606                                                 if (IS_LEAF(mp)) {
7607                                                         if (F_ISSET(node->mn_flags, F_BIGDATA))
7608                                                                 psize += sizeof(pgno_t);
7609                                                         else
7610                                                                 psize += NODEDSZ(node);
7611                                                 }
7612                                                 psize = EVEN(psize);
7613                                         }
7614                                         if (psize > pmax || i == k-j) {
7615                                                 split_indx = i + (j<0);
7616                                                 break;
7617                                         }
7618                                 }
7619                         }
7620                         if (split_indx == newindx) {
7621                                 sepkey.mv_size = newkey->mv_size;
7622                                 sepkey.mv_data = newkey->mv_data;
7623                         } else {
7624                                 node = (MDB_node *)((char *)mp + copy->mp_ptrs[split_indx]);
7625                                 sepkey.mv_size = node->mn_ksize;
7626                                 sepkey.mv_data = NODEKEY(node);
7627                         }
7628                 }
7629         }
7630
7631         DPRINTF(("separator is %d [%s]", split_indx, DKEY(&sepkey)));
7632
7633         /* Copy separator key to the parent.
7634          */
7635         if (SIZELEFT(mn.mc_pg[ptop]) < mdb_branch_size(env, &sepkey)) {
7636                 mn.mc_snum--;
7637                 mn.mc_top--;
7638                 did_split = 1;
7639                 rc = mdb_page_split(&mn, &sepkey, NULL, rp->mp_pgno, 0);
7640
7641                 /* root split? */
7642                 if (mn.mc_snum == mc->mc_snum) {
7643                         mc->mc_pg[mc->mc_snum] = mc->mc_pg[mc->mc_top];
7644                         mc->mc_ki[mc->mc_snum] = mc->mc_ki[mc->mc_top];
7645                         mc->mc_pg[mc->mc_top] = mc->mc_pg[ptop];
7646                         mc->mc_ki[mc->mc_top] = mc->mc_ki[ptop];
7647                         mc->mc_snum++;
7648                         mc->mc_top++;
7649                         ptop++;
7650                 }
7651                 /* Right page might now have changed parent.
7652                  * Check if left page also changed parent.
7653                  */
7654                 if (mn.mc_pg[ptop] != mc->mc_pg[ptop] &&
7655                     mc->mc_ki[ptop] >= NUMKEYS(mc->mc_pg[ptop])) {
7656                         for (i=0; i<ptop; i++) {
7657                                 mc->mc_pg[i] = mn.mc_pg[i];
7658                                 mc->mc_ki[i] = mn.mc_ki[i];
7659                         }
7660                         mc->mc_pg[ptop] = mn.mc_pg[ptop];
7661                         mc->mc_ki[ptop] = mn.mc_ki[ptop] - 1;
7662                 }
7663         } else {
7664                 mn.mc_top--;
7665                 rc = mdb_node_add(&mn, mn.mc_ki[ptop], &sepkey, NULL, rp->mp_pgno, 0);
7666                 mn.mc_top++;
7667         }
7668         mc->mc_flags ^= C_SPLITTING;
7669         if (rc != MDB_SUCCESS) {
7670                 return rc;
7671         }
7672         if (nflags & MDB_APPEND) {
7673                 mc->mc_pg[mc->mc_top] = rp;
7674                 mc->mc_ki[mc->mc_top] = 0;
7675                 rc = mdb_node_add(mc, 0, newkey, newdata, newpgno, nflags);
7676                 if (rc)
7677                         return rc;
7678                 for (i=0; i<mc->mc_top; i++)
7679                         mc->mc_ki[i] = mn.mc_ki[i];
7680         } else if (!IS_LEAF2(mp)) {
7681                 /* Move nodes */
7682                 mc->mc_pg[mc->mc_top] = rp;
7683                 i = split_indx;
7684                 j = 0;
7685                 do {
7686                         if (i == newindx) {
7687                                 rkey.mv_data = newkey->mv_data;
7688                                 rkey.mv_size = newkey->mv_size;
7689                                 if (IS_LEAF(mp)) {
7690                                         rdata = newdata;
7691                                 } else
7692                                         pgno = newpgno;
7693                                 flags = nflags;
7694                                 /* Update index for the new key. */
7695                                 mc->mc_ki[mc->mc_top] = j;
7696                         } else {
7697                                 node = (MDB_node *)((char *)mp + copy->mp_ptrs[i]);
7698                                 rkey.mv_data = NODEKEY(node);
7699                                 rkey.mv_size = node->mn_ksize;
7700                                 if (IS_LEAF(mp)) {
7701                                         xdata.mv_data = NODEDATA(node);
7702                                         xdata.mv_size = NODEDSZ(node);
7703                                         rdata = &xdata;
7704                                 } else
7705                                         pgno = NODEPGNO(node);
7706                                 flags = node->mn_flags;
7707                         }
7708
7709                         if (!IS_LEAF(mp) && j == 0) {
7710                                 /* First branch index doesn't need key data. */
7711                                 rkey.mv_size = 0;
7712                         }
7713
7714                         rc = mdb_node_add(mc, j, &rkey, rdata, pgno, flags);
7715                         if (rc) {
7716                                 /* return tmp page to freelist */
7717                                 mdb_page_free(env, copy);
7718                                 return rc;
7719                         }
7720                         if (i == nkeys) {
7721                                 i = 0;
7722                                 j = 0;
7723                                 mc->mc_pg[mc->mc_top] = copy;
7724                         } else {
7725                                 i++;
7726                                 j++;
7727                         }
7728                 } while (i != split_indx);
7729
7730                 nkeys = NUMKEYS(copy);
7731                 for (i=0; i<nkeys; i++)
7732                         mp->mp_ptrs[i] = copy->mp_ptrs[i];
7733                 mp->mp_lower = copy->mp_lower;
7734                 mp->mp_upper = copy->mp_upper;
7735                 memcpy(NODEPTR(mp, nkeys-1), NODEPTR(copy, nkeys-1),
7736                         env->me_psize - copy->mp_upper);
7737
7738                 /* reset back to original page */
7739                 if (newindx < split_indx) {
7740                         mc->mc_pg[mc->mc_top] = mp;
7741                         if (nflags & MDB_RESERVE) {
7742                                 node = NODEPTR(mp, mc->mc_ki[mc->mc_top]);
7743                                 if (!(node->mn_flags & F_BIGDATA))
7744                                         newdata->mv_data = NODEDATA(node);
7745                         }
7746                 } else {
7747                         mc->mc_pg[mc->mc_top] = rp;
7748                         mc->mc_ki[ptop]++;
7749                         /* Make sure mc_ki is still valid.
7750                          */
7751                         if (mn.mc_pg[ptop] != mc->mc_pg[ptop] &&
7752                                 mc->mc_ki[ptop] >= NUMKEYS(mc->mc_pg[ptop])) {
7753                                 for (i=0; i<ptop; i++) {
7754                                         mc->mc_pg[i] = mn.mc_pg[i];
7755                                         mc->mc_ki[i] = mn.mc_ki[i];
7756                                 }
7757                                 mc->mc_pg[ptop] = mn.mc_pg[ptop];
7758                                 mc->mc_ki[ptop] = mn.mc_ki[ptop] - 1;
7759                         }
7760                 }
7761                 /* return tmp page to freelist */
7762                 mdb_page_free(env, copy);
7763         }
7764
7765         {
7766                 /* Adjust other cursors pointing to mp */
7767                 MDB_cursor *m2, *m3;
7768                 MDB_dbi dbi = mc->mc_dbi;
7769                 int fixup = NUMKEYS(mp);
7770
7771                 for (m2 = mc->mc_txn->mt_cursors[dbi]; m2; m2=m2->mc_next) {
7772                         if (mc->mc_flags & C_SUB)
7773                                 m3 = &m2->mc_xcursor->mx_cursor;
7774                         else
7775                                 m3 = m2;
7776                         if (m3 == mc)
7777                                 continue;
7778                         if (!(m2->mc_flags & m3->mc_flags & C_INITIALIZED))
7779                                 continue;
7780                         if (m3->mc_flags & C_SPLITTING)
7781                                 continue;
7782                         if (new_root) {
7783                                 int k;
7784                                 /* root split */
7785                                 for (k=m3->mc_top; k>=0; k--) {
7786                                         m3->mc_ki[k+1] = m3->mc_ki[k];
7787                                         m3->mc_pg[k+1] = m3->mc_pg[k];
7788                                 }
7789                                 if (m3->mc_ki[0] >= split_indx) {
7790                                         m3->mc_ki[0] = 1;
7791                                 } else {
7792                                         m3->mc_ki[0] = 0;
7793                                 }
7794                                 m3->mc_pg[0] = mc->mc_pg[0];
7795                                 m3->mc_snum++;
7796                                 m3->mc_top++;
7797                         }
7798                         if (m3->mc_top >= mc->mc_top && m3->mc_pg[mc->mc_top] == mp) {
7799                                 if (m3->mc_ki[mc->mc_top] >= newindx && !(nflags & MDB_SPLIT_REPLACE))
7800                                         m3->mc_ki[mc->mc_top]++;
7801                                 if (m3->mc_ki[mc->mc_top] >= fixup) {
7802                                         m3->mc_pg[mc->mc_top] = rp;
7803                                         m3->mc_ki[mc->mc_top] -= fixup;
7804                                         m3->mc_ki[ptop] = mn.mc_ki[ptop];
7805                                 }
7806                         } else if (!did_split && m3->mc_top >= ptop && m3->mc_pg[ptop] == mc->mc_pg[ptop] &&
7807                                 m3->mc_ki[ptop] >= mc->mc_ki[ptop]) {
7808                                 m3->mc_ki[ptop]++;
7809                         }
7810                 }
7811         }
7812         DPRINTF(("mp left: %d, rp left: %d", SIZELEFT(mp), SIZELEFT(rp)));
7813         return rc;
7814 }
7815
7816 int
7817 mdb_put(MDB_txn *txn, MDB_dbi dbi,
7818     MDB_val *key, MDB_val *data, unsigned int flags)
7819 {
7820         MDB_cursor mc;
7821         MDB_xcursor mx;
7822
7823         assert(key != NULL);
7824         assert(data != NULL);
7825
7826         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
7827                 return EINVAL;
7828
7829         if ((flags & (MDB_NOOVERWRITE|MDB_NODUPDATA|MDB_RESERVE|MDB_APPEND|MDB_APPENDDUP)) != flags)
7830                 return EINVAL;
7831
7832         mdb_cursor_init(&mc, txn, dbi, &mx);
7833         return mdb_cursor_put(&mc, key, data, flags);
7834 }
7835
7836 int
7837 mdb_env_set_flags(MDB_env *env, unsigned int flag, int onoff)
7838 {
7839         if ((flag & CHANGEABLE) != flag)
7840                 return EINVAL;
7841         if (onoff)
7842                 env->me_flags |= flag;
7843         else
7844                 env->me_flags &= ~flag;
7845         return MDB_SUCCESS;
7846 }
7847
7848 int
7849 mdb_env_get_flags(MDB_env *env, unsigned int *arg)
7850 {
7851         if (!env || !arg)
7852                 return EINVAL;
7853
7854         *arg = env->me_flags;
7855         return MDB_SUCCESS;
7856 }
7857
7858 int
7859 mdb_env_get_path(MDB_env *env, const char **arg)
7860 {
7861         if (!env || !arg)
7862                 return EINVAL;
7863
7864         *arg = env->me_path;
7865         return MDB_SUCCESS;
7866 }
7867
7868 int
7869 mdb_env_get_fd(MDB_env *env, mdb_filehandle_t *arg)
7870 {
7871         if (!env || !arg)
7872                 return EINVAL;
7873
7874         *arg = env->me_fd;
7875         return MDB_SUCCESS;
7876 }
7877
7878 /** Common code for #mdb_stat() and #mdb_env_stat().
7879  * @param[in] env the environment to operate in.
7880  * @param[in] db the #MDB_db record containing the stats to return.
7881  * @param[out] arg the address of an #MDB_stat structure to receive the stats.
7882  * @return 0, this function always succeeds.
7883  */
7884 static int
7885 mdb_stat0(MDB_env *env, MDB_db *db, MDB_stat *arg)
7886 {
7887         arg->ms_psize = env->me_psize;
7888         arg->ms_depth = db->md_depth;
7889         arg->ms_branch_pages = db->md_branch_pages;
7890         arg->ms_leaf_pages = db->md_leaf_pages;
7891         arg->ms_overflow_pages = db->md_overflow_pages;
7892         arg->ms_entries = db->md_entries;
7893
7894         return MDB_SUCCESS;
7895 }
7896 int
7897 mdb_env_stat(MDB_env *env, MDB_stat *arg)
7898 {
7899         int toggle;
7900
7901         if (env == NULL || arg == NULL)
7902                 return EINVAL;
7903
7904         toggle = mdb_env_pick_meta(env);
7905
7906         return mdb_stat0(env, &env->me_metas[toggle]->mm_dbs[MAIN_DBI], arg);
7907 }
7908
7909 int
7910 mdb_env_info(MDB_env *env, MDB_envinfo *arg)
7911 {
7912         int toggle;
7913
7914         if (env == NULL || arg == NULL)
7915                 return EINVAL;
7916
7917         toggle = mdb_env_pick_meta(env);
7918         arg->me_mapaddr = (env->me_flags & MDB_FIXEDMAP) ? env->me_map : 0;
7919         arg->me_mapsize = env->me_mapsize;
7920         arg->me_maxreaders = env->me_maxreaders;
7921
7922         /* me_numreaders may be zero if this process never used any readers. Use
7923          * the shared numreader count if it exists.
7924          */
7925         arg->me_numreaders = env->me_txns ? env->me_txns->mti_numreaders : env->me_numreaders;
7926
7927         arg->me_last_pgno = env->me_metas[toggle]->mm_last_pg;
7928         arg->me_last_txnid = env->me_metas[toggle]->mm_txnid;
7929         return MDB_SUCCESS;
7930 }
7931
7932 /** Set the default comparison functions for a database.
7933  * Called immediately after a database is opened to set the defaults.
7934  * The user can then override them with #mdb_set_compare() or
7935  * #mdb_set_dupsort().
7936  * @param[in] txn A transaction handle returned by #mdb_txn_begin()
7937  * @param[in] dbi A database handle returned by #mdb_dbi_open()
7938  */
7939 static void
7940 mdb_default_cmp(MDB_txn *txn, MDB_dbi dbi)
7941 {
7942         uint16_t f = txn->mt_dbs[dbi].md_flags;
7943
7944         txn->mt_dbxs[dbi].md_cmp =
7945                 (f & MDB_REVERSEKEY) ? mdb_cmp_memnr :
7946                 (f & MDB_INTEGERKEY) ? mdb_cmp_cint  : mdb_cmp_memn;
7947
7948         txn->mt_dbxs[dbi].md_dcmp =
7949                 !(f & MDB_DUPSORT) ? 0 :
7950                 ((f & MDB_INTEGERDUP)
7951                  ? ((f & MDB_DUPFIXED)   ? mdb_cmp_int   : mdb_cmp_cint)
7952                  : ((f & MDB_REVERSEDUP) ? mdb_cmp_memnr : mdb_cmp_memn));
7953 }
7954
7955 int mdb_dbi_open(MDB_txn *txn, const char *name, unsigned int flags, MDB_dbi *dbi)
7956 {
7957         MDB_val key, data;
7958         MDB_dbi i;
7959         MDB_cursor mc;
7960         int rc, dbflag, exact;
7961         unsigned int unused = 0;
7962         size_t len;
7963
7964         if (txn->mt_dbxs[FREE_DBI].md_cmp == NULL) {
7965                 mdb_default_cmp(txn, FREE_DBI);
7966         }
7967
7968         if ((flags & VALID_FLAGS) != flags)
7969                 return EINVAL;
7970         if (txn->mt_flags & MDB_TXN_ERROR)
7971                 return MDB_BAD_TXN;
7972
7973         /* main DB? */
7974         if (!name) {
7975                 *dbi = MAIN_DBI;
7976                 if (flags & PERSISTENT_FLAGS) {
7977                         uint16_t f2 = flags & PERSISTENT_FLAGS;
7978                         /* make sure flag changes get committed */
7979                         if ((txn->mt_dbs[MAIN_DBI].md_flags | f2) != txn->mt_dbs[MAIN_DBI].md_flags) {
7980                                 txn->mt_dbs[MAIN_DBI].md_flags |= f2;
7981                                 txn->mt_flags |= MDB_TXN_DIRTY;
7982                         }
7983                 }
7984                 mdb_default_cmp(txn, MAIN_DBI);
7985                 return MDB_SUCCESS;
7986         }
7987
7988         if (txn->mt_dbxs[MAIN_DBI].md_cmp == NULL) {
7989                 mdb_default_cmp(txn, MAIN_DBI);
7990         }
7991
7992         /* Is the DB already open? */
7993         len = strlen(name);
7994         for (i=2; i<txn->mt_numdbs; i++) {
7995                 if (!txn->mt_dbxs[i].md_name.mv_size) {
7996                         /* Remember this free slot */
7997                         if (!unused) unused = i;
7998                         continue;
7999                 }
8000                 if (len == txn->mt_dbxs[i].md_name.mv_size &&
8001                         !strncmp(name, txn->mt_dbxs[i].md_name.mv_data, len)) {
8002                         *dbi = i;
8003                         return MDB_SUCCESS;
8004                 }
8005         }
8006
8007         /* If no free slot and max hit, fail */
8008         if (!unused && txn->mt_numdbs >= txn->mt_env->me_maxdbs)
8009                 return MDB_DBS_FULL;
8010
8011         /* Cannot mix named databases with some mainDB flags */
8012         if (txn->mt_dbs[MAIN_DBI].md_flags & (MDB_DUPSORT|MDB_INTEGERKEY))
8013                 return (flags & MDB_CREATE) ? MDB_INCOMPATIBLE : MDB_NOTFOUND;
8014
8015         /* Find the DB info */
8016         dbflag = DB_NEW|DB_VALID;
8017         exact = 0;
8018         key.mv_size = len;
8019         key.mv_data = (void *)name;
8020         mdb_cursor_init(&mc, txn, MAIN_DBI, NULL);
8021         rc = mdb_cursor_set(&mc, &key, &data, MDB_SET, &exact);
8022         if (rc == MDB_SUCCESS) {
8023                 /* make sure this is actually a DB */
8024                 MDB_node *node = NODEPTR(mc.mc_pg[mc.mc_top], mc.mc_ki[mc.mc_top]);
8025                 if (!(node->mn_flags & F_SUBDATA))
8026                         return MDB_INCOMPATIBLE;
8027         } else if (rc == MDB_NOTFOUND && (flags & MDB_CREATE)) {
8028                 /* Create if requested */
8029                 MDB_db dummy;
8030                 data.mv_size = sizeof(MDB_db);
8031                 data.mv_data = &dummy;
8032                 memset(&dummy, 0, sizeof(dummy));
8033                 dummy.md_root = P_INVALID;
8034                 dummy.md_flags = flags & PERSISTENT_FLAGS;
8035                 rc = mdb_cursor_put(&mc, &key, &data, F_SUBDATA);
8036                 dbflag |= DB_DIRTY;
8037         }
8038
8039         /* OK, got info, add to table */
8040         if (rc == MDB_SUCCESS) {
8041                 unsigned int slot = unused ? unused : txn->mt_numdbs;
8042                 txn->mt_dbxs[slot].md_name.mv_data = strdup(name);
8043                 txn->mt_dbxs[slot].md_name.mv_size = len;
8044                 txn->mt_dbxs[slot].md_rel = NULL;
8045                 txn->mt_dbflags[slot] = dbflag;
8046                 memcpy(&txn->mt_dbs[slot], data.mv_data, sizeof(MDB_db));
8047                 *dbi = slot;
8048                 mdb_default_cmp(txn, slot);
8049                 if (!unused) {
8050                         txn->mt_numdbs++;
8051                 }
8052         }
8053
8054         return rc;
8055 }
8056
8057 int mdb_stat(MDB_txn *txn, MDB_dbi dbi, MDB_stat *arg)
8058 {
8059         if (txn == NULL || arg == NULL || dbi >= txn->mt_numdbs)
8060                 return EINVAL;
8061
8062         if (txn->mt_dbflags[dbi] & DB_STALE) {
8063                 MDB_cursor mc;
8064                 MDB_xcursor mx;
8065                 /* Stale, must read the DB's root. cursor_init does it for us. */
8066                 mdb_cursor_init(&mc, txn, dbi, &mx);
8067         }
8068         return mdb_stat0(txn->mt_env, &txn->mt_dbs[dbi], arg);
8069 }
8070
8071 void mdb_dbi_close(MDB_env *env, MDB_dbi dbi)
8072 {
8073         char *ptr;
8074         if (dbi <= MAIN_DBI || dbi >= env->me_maxdbs)
8075                 return;
8076         ptr = env->me_dbxs[dbi].md_name.mv_data;
8077         env->me_dbxs[dbi].md_name.mv_data = NULL;
8078         env->me_dbxs[dbi].md_name.mv_size = 0;
8079         env->me_dbflags[dbi] = 0;
8080         free(ptr);
8081 }
8082
8083 int mdb_dbi_flags(MDB_txn *txn, MDB_dbi dbi, unsigned int *flags)
8084 {
8085         /* We could return the flags for the FREE_DBI too but what's the point? */
8086         if (txn == NULL || dbi < MAIN_DBI || dbi >= txn->mt_numdbs)
8087                 return EINVAL;
8088         *flags = txn->mt_dbs[dbi].md_flags & PERSISTENT_FLAGS;
8089         return MDB_SUCCESS;
8090 }
8091
8092 /** Add all the DB's pages to the free list.
8093  * @param[in] mc Cursor on the DB to free.
8094  * @param[in] subs non-Zero to check for sub-DBs in this DB.
8095  * @return 0 on success, non-zero on failure.
8096  */
8097 static int
8098 mdb_drop0(MDB_cursor *mc, int subs)
8099 {
8100         int rc;
8101
8102         rc = mdb_page_search(mc, NULL, MDB_PS_FIRST);
8103         if (rc == MDB_SUCCESS) {
8104                 MDB_txn *txn = mc->mc_txn;
8105                 MDB_node *ni;
8106                 MDB_cursor mx;
8107                 unsigned int i;
8108
8109                 /* LEAF2 pages have no nodes, cannot have sub-DBs */
8110                 if (IS_LEAF2(mc->mc_pg[mc->mc_top]))
8111                         mdb_cursor_pop(mc);
8112
8113                 mdb_cursor_copy(mc, &mx);
8114                 while (mc->mc_snum > 0) {
8115                         MDB_page *mp = mc->mc_pg[mc->mc_top];
8116                         unsigned n = NUMKEYS(mp);
8117                         if (IS_LEAF(mp)) {
8118                                 for (i=0; i<n; i++) {
8119                                         ni = NODEPTR(mp, i);
8120                                         if (ni->mn_flags & F_BIGDATA) {
8121                                                 MDB_page *omp;
8122                                                 pgno_t pg;
8123                                                 memcpy(&pg, NODEDATA(ni), sizeof(pg));
8124                                                 rc = mdb_page_get(txn, pg, &omp, NULL);
8125                                                 if (rc != 0)
8126                                                         return rc;
8127                                                 assert(IS_OVERFLOW(omp));
8128                                                 rc = mdb_midl_append_range(&txn->mt_free_pgs,
8129                                                         pg, omp->mp_pages);
8130                                                 if (rc)
8131                                                         return rc;
8132                                         } else if (subs && (ni->mn_flags & F_SUBDATA)) {
8133                                                 mdb_xcursor_init1(mc, ni);
8134                                                 rc = mdb_drop0(&mc->mc_xcursor->mx_cursor, 0);
8135                                                 if (rc)
8136                                                         return rc;
8137                                         }
8138                                 }
8139                         } else {
8140                                 if ((rc = mdb_midl_need(&txn->mt_free_pgs, n)) != 0)
8141                                         return rc;
8142                                 for (i=0; i<n; i++) {
8143                                         pgno_t pg;
8144                                         ni = NODEPTR(mp, i);
8145                                         pg = NODEPGNO(ni);
8146                                         /* free it */
8147                                         mdb_midl_xappend(txn->mt_free_pgs, pg);
8148                                 }
8149                         }
8150                         if (!mc->mc_top)
8151                                 break;
8152                         mc->mc_ki[mc->mc_top] = i;
8153                         rc = mdb_cursor_sibling(mc, 1);
8154                         if (rc) {
8155                                 /* no more siblings, go back to beginning
8156                                  * of previous level.
8157                                  */
8158                                 mdb_cursor_pop(mc);
8159                                 mc->mc_ki[0] = 0;
8160                                 for (i=1; i<mc->mc_snum; i++) {
8161                                         mc->mc_ki[i] = 0;
8162                                         mc->mc_pg[i] = mx.mc_pg[i];
8163                                 }
8164                         }
8165                 }
8166                 /* free it */
8167                 rc = mdb_midl_append(&txn->mt_free_pgs, mc->mc_db->md_root);
8168         } else if (rc == MDB_NOTFOUND) {
8169                 rc = MDB_SUCCESS;
8170         }
8171         return rc;
8172 }
8173
8174 int mdb_drop(MDB_txn *txn, MDB_dbi dbi, int del)
8175 {
8176         MDB_cursor *mc, *m2;
8177         int rc;
8178
8179         if (!txn || !dbi || dbi >= txn->mt_numdbs || (unsigned)del > 1 || !(txn->mt_dbflags[dbi] & DB_VALID))
8180                 return EINVAL;
8181
8182         if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY))
8183                 return EACCES;
8184
8185         rc = mdb_cursor_open(txn, dbi, &mc);
8186         if (rc)
8187                 return rc;
8188
8189         rc = mdb_drop0(mc, mc->mc_db->md_flags & MDB_DUPSORT);
8190         /* Invalidate the dropped DB's cursors */
8191         for (m2 = txn->mt_cursors[dbi]; m2; m2 = m2->mc_next)
8192                 m2->mc_flags &= ~(C_INITIALIZED|C_EOF);
8193         if (rc)
8194                 goto leave;
8195
8196         /* Can't delete the main DB */
8197         if (del && dbi > MAIN_DBI) {
8198                 rc = mdb_del(txn, MAIN_DBI, &mc->mc_dbx->md_name, NULL);
8199                 if (!rc) {
8200                         txn->mt_dbflags[dbi] = DB_STALE;
8201                         mdb_dbi_close(txn->mt_env, dbi);
8202                 }
8203         } else {
8204                 /* reset the DB record, mark it dirty */
8205                 txn->mt_dbflags[dbi] |= DB_DIRTY;
8206                 txn->mt_dbs[dbi].md_depth = 0;
8207                 txn->mt_dbs[dbi].md_branch_pages = 0;
8208                 txn->mt_dbs[dbi].md_leaf_pages = 0;
8209                 txn->mt_dbs[dbi].md_overflow_pages = 0;
8210                 txn->mt_dbs[dbi].md_entries = 0;
8211                 txn->mt_dbs[dbi].md_root = P_INVALID;
8212
8213                 txn->mt_flags |= MDB_TXN_DIRTY;
8214         }
8215 leave:
8216         mdb_cursor_close(mc);
8217         return rc;
8218 }
8219
8220 int mdb_set_compare(MDB_txn *txn, MDB_dbi dbi, MDB_cmp_func *cmp)
8221 {
8222         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
8223                 return EINVAL;
8224
8225         txn->mt_dbxs[dbi].md_cmp = cmp;
8226         return MDB_SUCCESS;
8227 }
8228
8229 int mdb_set_dupsort(MDB_txn *txn, MDB_dbi dbi, MDB_cmp_func *cmp)
8230 {
8231         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
8232                 return EINVAL;
8233
8234         txn->mt_dbxs[dbi].md_dcmp = cmp;
8235         return MDB_SUCCESS;
8236 }
8237
8238 int mdb_set_relfunc(MDB_txn *txn, MDB_dbi dbi, MDB_rel_func *rel)
8239 {
8240         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
8241                 return EINVAL;
8242
8243         txn->mt_dbxs[dbi].md_rel = rel;
8244         return MDB_SUCCESS;
8245 }
8246
8247 int mdb_set_relctx(MDB_txn *txn, MDB_dbi dbi, void *ctx)
8248 {
8249         if (txn == NULL || !dbi || dbi >= txn->mt_numdbs || !(txn->mt_dbflags[dbi] & DB_VALID))
8250                 return EINVAL;
8251
8252         txn->mt_dbxs[dbi].md_relctx = ctx;
8253         return MDB_SUCCESS;
8254 }
8255
8256 int mdb_env_get_maxkeysize(MDB_env *env)
8257 {
8258         return MDB_MAXKEYSIZE;
8259 }
8260
8261 int mdb_reader_list(MDB_env *env, MDB_msg_func *func, void *ctx)
8262 {
8263         unsigned int i, rdrs;
8264         MDB_reader *mr;
8265         char buf[64];
8266         int first = 1;
8267
8268         if (!env || !func)
8269                 return -1;
8270         if (!env->me_txns) {
8271                 return func("(no reader locks)\n", ctx);
8272         }
8273         rdrs = env->me_txns->mti_numreaders;
8274         mr = env->me_txns->mti_readers;
8275         for (i=0; i<rdrs; i++) {
8276                 if (mr[i].mr_pid) {
8277                         size_t tid;
8278                         int rc;
8279                         tid = mr[i].mr_tid;
8280                         if (mr[i].mr_txnid == (txnid_t)-1) {
8281                                 sprintf(buf, "%10d %"Z"x -\n", mr[i].mr_pid, tid);
8282                         } else {
8283                                 sprintf(buf, "%10d %"Z"x %"Z"u\n", mr[i].mr_pid, tid, mr[i].mr_txnid);
8284                         }
8285                         if (first) {
8286                                 first = 0;
8287                                 func("    pid     thread     txnid\n", ctx);
8288                         }
8289                         rc = func(buf, ctx);
8290                         if (rc < 0)
8291                                 return rc;
8292                 }
8293         }
8294         if (first) {
8295                 func("(no active readers)\n", ctx);
8296         }
8297         return 0;
8298 }
8299
8300 /** Insert pid into list if not already present.
8301  * return -1 if already present.
8302  */
8303 static int mdb_pid_insert(MDB_PID_T *ids, MDB_PID_T pid)
8304 {
8305         /* binary search of pid in list */
8306         unsigned base = 0;
8307         unsigned cursor = 1;
8308         int val = 0;
8309         unsigned n = ids[0];
8310
8311         while( 0 < n ) {
8312                 unsigned pivot = n >> 1;
8313                 cursor = base + pivot + 1;
8314                 val = pid - ids[cursor];
8315
8316                 if( val < 0 ) {
8317                         n = pivot;
8318
8319                 } else if ( val > 0 ) {
8320                         base = cursor;
8321                         n -= pivot + 1;
8322
8323                 } else {
8324                         /* found, so it's a duplicate */
8325                         return -1;
8326                 }
8327         }
8328
8329         if( val > 0 ) {
8330                 ++cursor;
8331         }
8332         ids[0]++;
8333         for (n = ids[0]; n > cursor; n--)
8334                 ids[n] = ids[n-1];
8335         ids[n] = pid;
8336         return 0;
8337 }
8338
8339 int mdb_reader_check(MDB_env *env, int *dead)
8340 {
8341         unsigned int i, j, rdrs;
8342         MDB_reader *mr;
8343         MDB_PID_T *pids, pid;
8344         int count = 0;
8345
8346         if (!env)
8347                 return EINVAL;
8348         if (dead)
8349                 *dead = 0;
8350         if (!env->me_txns)
8351                 return MDB_SUCCESS;
8352         rdrs = env->me_txns->mti_numreaders;
8353         pids = malloc((rdrs+1) * sizeof(MDB_PID_T));
8354         if (!pids)
8355                 return ENOMEM;
8356         pids[0] = 0;
8357         mr = env->me_txns->mti_readers;
8358         for (i=0; i<rdrs; i++) {
8359                 if (mr[i].mr_pid && mr[i].mr_pid != env->me_pid) {
8360                         pid = mr[i].mr_pid;
8361                         if (mdb_pid_insert(pids, pid) == 0) {
8362                                 if (!mdb_reader_pid(env, Pidcheck, pid)) {
8363                                         LOCK_MUTEX_R(env);
8364                                         /* Recheck, a new process may have reused pid */
8365                                         if (!mdb_reader_pid(env, Pidcheck, pid)) {
8366                                                 for (j=i; j<rdrs; j++)
8367                                                         if (mr[j].mr_pid == pid) {
8368                                                                 DPRINTF(("clear stale reader pid %u txn %"Z"d",
8369                                                                         (unsigned) pid, mr[j].mr_txnid));
8370                                                                 mr[j].mr_pid = 0;
8371                                                                 count++;
8372                                                         }
8373                                         }
8374                                         UNLOCK_MUTEX_R(env);
8375                                 }
8376                         }
8377                 }
8378         }
8379         free(pids);
8380         if (dead)
8381                 *dead = count;
8382         return MDB_SUCCESS;
8383 }
8384 /** @} */