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