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