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