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