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