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