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