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