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