db.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:74k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  *
  7.  * $Id: db.in,v 11.323 2002/09/03 17:27:16 bostic Exp $
  8.  *
  9.  * db.h include file layout:
  10.  * General.
  11.  * Database Environment.
  12.  * Locking subsystem.
  13.  * Logging subsystem.
  14.  * Shared buffer cache (mpool) subsystem.
  15.  * Transaction subsystem.
  16.  * Access methods.
  17.  * Access method cursors.
  18.  * Dbm/Ndbm, Hsearch historic interfaces.
  19.  */
  20. #ifndef _DB_H_
  21. #define _DB_H_
  22. #ifndef __NO_SYSTEM_INCLUDES
  23. #include <sys/types.h>
  24. #include <stdio.h>
  25. #endif
  26. #if defined(__cplusplus)
  27. extern "C" {
  28. #endif
  29. /*
  30.  * XXX
  31.  * Handle function prototypes and the keyword "const".  This steps on name
  32.  * space that DB doesn't control, but all of the other solutions are worse.
  33.  *
  34.  * XXX
  35.  * While Microsoft's compiler is ANSI C compliant, it doesn't have _STDC_
  36.  * defined by default, you specify a command line flag or #pragma to turn
  37.  * it on.  Don't do that, however, because some of Microsoft's own header
  38.  * files won't compile.
  39.  */
  40. #undef __P
  41. #if defined(__STDC__) || defined(__cplusplus) || defined(_MSC_VER)
  42. #define __P(protos) protos /* ANSI C prototypes */
  43. #else
  44. #define const
  45. #define __P(protos) () /* K&R C preprocessor */
  46. #endif
  47. /*
  48.  * Berkeley DB version information.
  49.  */
  50. #define DB_VERSION_MAJOR 4
  51. #define DB_VERSION_MINOR 1
  52. #define DB_VERSION_PATCH 24
  53. #define DB_VERSION_STRING "Sleepycat Software: Berkeley DB 4.1.24: (November 30, 2005)"
  54. /*
  55.  * !!!
  56.  * Berkeley DB uses specifically sized types.  If they're not provided by
  57.  * the system, typedef them here.
  58.  *
  59.  * We protect them against multiple inclusion using __BIT_TYPES_DEFINED__,
  60.  * as does BIND and Kerberos, since we don't know for sure what #include
  61.  * files the user is using.
  62.  *
  63.  * !!!
  64.  * We also provide the standard u_int, u_long etc., if they're not provided
  65.  * by the system.
  66.  */
  67. #ifndef __BIT_TYPES_DEFINED__
  68. #define __BIT_TYPES_DEFINED__
  69. #endif
  70. /* Basic types that are exported or quasi-exported. */
  71. typedef u_int32_t db_pgno_t; /* Page number type. */
  72. typedef u_int16_t db_indx_t; /* Page offset type. */
  73. #define DB_MAX_PAGES 0xffffffff /* >= # of pages in a file */
  74. typedef u_int32_t db_recno_t; /* Record number type. */
  75. #define DB_MAX_RECORDS 0xffffffff /* >= # of records in a tree */
  76. typedef u_int32_t db_timeout_t; /* Type of a timeout. */
  77. /*
  78.  * Region offsets are currently limited to 32-bits.  I expect that's going
  79.  * to have to be fixed in the not-too-distant future, since we won't want to
  80.  * split 100Gb memory pools into that many different regions.
  81.  */
  82. typedef u_int32_t roff_t;
  83. /*
  84.  * Forward structure declarations, so we can declare pointers and
  85.  * applications can get type checking.
  86.  */
  87. struct __db; typedef struct __db DB;
  88. struct __db_bt_stat; typedef struct __db_bt_stat DB_BTREE_STAT;
  89. struct __db_cipher; typedef struct __db_cipher DB_CIPHER;
  90. struct __db_dbt; typedef struct __db_dbt DBT;
  91. struct __db_env; typedef struct __db_env DB_ENV;
  92. struct __db_h_stat; typedef struct __db_h_stat DB_HASH_STAT;
  93. struct __db_ilock; typedef struct __db_ilock DB_LOCK_ILOCK;
  94. struct __db_lock_stat; typedef struct __db_lock_stat DB_LOCK_STAT;
  95. struct __db_lock_u; typedef struct __db_lock_u DB_LOCK;
  96. struct __db_lockreq; typedef struct __db_lockreq DB_LOCKREQ;
  97. struct __db_log_cursor; typedef struct __db_log_cursor DB_LOGC;
  98. struct __db_log_stat; typedef struct __db_log_stat DB_LOG_STAT;
  99. struct __db_lsn; typedef struct __db_lsn DB_LSN;
  100. struct __db_mpool; typedef struct __db_mpool DB_MPOOL;
  101. struct __db_mpool_fstat;typedef struct __db_mpool_fstat DB_MPOOL_FSTAT;
  102. struct __db_mpool_stat; typedef struct __db_mpool_stat DB_MPOOL_STAT;
  103. struct __db_mpoolfile; typedef struct __db_mpoolfile DB_MPOOLFILE;
  104. struct __db_preplist; typedef struct __db_preplist DB_PREPLIST;
  105. struct __db_qam_stat; typedef struct __db_qam_stat DB_QUEUE_STAT;
  106. struct __db_rep; typedef struct __db_rep DB_REP;
  107. struct __db_rep_stat; typedef struct __db_rep_stat DB_REP_STAT;
  108. struct __db_txn; typedef struct __db_txn DB_TXN;
  109. struct __db_txn_active; typedef struct __db_txn_active DB_TXN_ACTIVE;
  110. struct __db_txn_stat; typedef struct __db_txn_stat DB_TXN_STAT;
  111. struct __db_txnmgr; typedef struct __db_txnmgr DB_TXNMGR;
  112. struct __dbc; typedef struct __dbc DBC;
  113. struct __dbc_internal; typedef struct __dbc_internal DBC_INTERNAL;
  114. struct __fh_t; typedef struct __fh_t DB_FH;
  115. struct __fname; typedef struct __fname FNAME;
  116. struct __key_range; typedef struct __key_range DB_KEY_RANGE;
  117. struct __mpoolfile; typedef struct __mpoolfile MPOOLFILE;
  118. struct __mutex_t; typedef struct __mutex_t DB_MUTEX;
  119. /* Key/data structure -- a Data-Base Thang. */
  120. struct __db_dbt {
  121. /*
  122.  * data/size must be fields 1 and 2 for DB 1.85 compatibility.
  123.  */
  124. void  *data; /* Key/data */
  125. u_int32_t size; /* key/data length */
  126. u_int32_t ulen; /* RO: length of user buffer. */
  127. u_int32_t dlen; /* RO: get/put record length. */
  128. u_int32_t doff; /* RO: get/put record offset. */
  129. void *app_private; /* Application-private handle. */
  130. #define DB_DBT_APPMALLOC 0x001 /* Callback allocated memory. */
  131. #define DB_DBT_ISSET 0x002 /* Lower level calls set value. */
  132. #define DB_DBT_MALLOC 0x004 /* Return in malloc'd memory. */
  133. #define DB_DBT_PARTIAL 0x008 /* Partial put/get. */
  134. #define DB_DBT_REALLOC 0x010 /* Return in realloc'd memory. */
  135. #define DB_DBT_USERMEM 0x020 /* Return in user's memory. */
  136. #define DB_DBT_DUPOK 0x040 /* Insert if duplicate. */
  137. u_int32_t flags;
  138. };
  139. /*
  140.  * Common flags --
  141.  * Interfaces which use any of these common flags should never have
  142.  * interface specific flags in this range.
  143.  */
  144. #define DB_CREATE       0x000001 /* Create file as necessary. */
  145. #define DB_CXX_NO_EXCEPTIONS  0x000002 /* C++: return error values. */
  146. #define DB_FORCE       0x000004 /* Force (anything). */
  147. #define DB_NOMMAP       0x000008 /* Don't mmap underlying file. */
  148. #define DB_RDONLY       0x000010 /* Read-only (O_RDONLY). */
  149. #define DB_RECOVER       0x000020 /* Run normal recovery. */
  150. #define DB_THREAD       0x000040 /* Applications are threaded. */
  151. #define DB_TRUNCATE       0x000080 /* Discard existing DB (O_TRUNC). */
  152. #define DB_TXN_NOSYNC       0x000100 /* Do not sync log on commit. */
  153. #define DB_USE_ENVIRON       0x000200 /* Use the environment. */
  154. #define DB_USE_ENVIRON_ROOT   0x000400 /* Use the environment if root. */
  155. /*
  156.  * Common flags --
  157.  * Interfaces which use any of these common flags should never have
  158.  * interface specific flags in this range.
  159.  *
  160.  * DB_AUTO_COMMIT:
  161.  * DB_ENV->set_flags, DB->associate, DB->del, DB->put, DB->open,
  162.  * DB->remove, DB->rename, DB->truncate
  163.  * DB_DIRTY_READ:
  164.  * DB->cursor, DB->get, DB->join, DB->open, DBcursor->c_get,
  165.  * DB_ENV->txn_begin
  166.  *
  167.  *    Shared flags up to 0x000400 */
  168. #define DB_AUTO_COMMIT     0x00800000 /* Implied transaction. */
  169. #define DB_DIRTY_READ     0x01000000 /* Dirty Read. */
  170. /*
  171.  * Flags private to db_env_create.
  172.  */
  173. #define DB_CLIENT       0x000001 /* Open for a client environment. */
  174. /*
  175.  * Flags private to db_create.
  176.  */
  177. #define DB_XA_CREATE       0x000001 /* Open in an XA environment. */
  178. /*
  179.  * Flags private to DB_ENV->open.
  180.  *    Shared flags up to 0x000400 */
  181. #define DB_INIT_CDB       0x000800 /* Concurrent Access Methods. */
  182. #define DB_INIT_LOCK       0x001000 /* Initialize locking. */
  183. #define DB_INIT_LOG       0x002000 /* Initialize logging. */
  184. #define DB_INIT_MPOOL       0x004000 /* Initialize mpool. */
  185. #define DB_INIT_TXN       0x008000 /* Initialize transactions. */
  186. #define DB_JOINENV       0x010000 /* Initialize all subsystems present. */
  187. #define DB_LOCKDOWN       0x020000 /* Lock memory into physical core. */
  188. #define DB_PRIVATE       0x040000 /* DB_ENV is process local. */
  189. #define DB_RECOVER_FATAL      0x080000 /* Run catastrophic recovery. */
  190. #define DB_SYSTEM_MEM       0x100000 /* Use system-backed memory. */
  191. /*
  192.  * Flags private to DB->open.
  193.  *    Shared flags up to 0x000400 */
  194. #define DB_EXCL       0x000800 /* Exclusive open (O_EXCL). */
  195. #define DB_FCNTL_LOCKING      0x001000 /* UNDOC: fcntl(2) locking. */
  196. #define DB_RDWRMASTER       0x002000 /* UNDOC: allow subdb master open R/W */
  197. #define DB_WRITEOPEN       0x004000 /* UNDOC: open with write lock. */
  198. /*
  199.  * Flags private to DB_ENV->txn_begin.
  200.  *    Shared flags up to 0x000400 */
  201. #define DB_TXN_NOWAIT       0x000800 /* Do not wait for locks in this TXN. */
  202. #define DB_TXN_SYNC       0x001000 /* Always sync log on commit. */
  203. /*
  204.  * Flags private to DB_ENV->set_encrypt.
  205.  */
  206. #define DB_ENCRYPT_AES       0x000001 /* AES, assumes SHA1 checksum */
  207. /*
  208.  * Flags private to DB_ENV->set_flags.
  209.  *    Shared flags up to 0x000400 */
  210. #define DB_CDB_ALLDB       0x000800 /* Set CDB locking per environment. */
  211. #define DB_DIRECT_DB       0x001000 /* Don't buffer databases in the OS. */
  212. #define DB_DIRECT_LOG       0x002000 /* Don't buffer log files in the OS. */
  213. #define DB_NOLOCKING       0x004000 /* Set locking/mutex behavior. */
  214. #define DB_NOPANIC       0x008000 /* Set panic state per DB_ENV. */
  215. #define DB_OVERWRITE       0x010000 /* Overwrite unlinked region files. */
  216. #define DB_PANIC_ENVIRONMENT  0x020000 /* Set panic state per environment. */
  217. #define DB_REGION_INIT       0x040000 /* Page-fault regions on open. */
  218. #define DB_TXN_WRITE_NOSYNC   0x080000 /* Write, don't sync, on txn commit. */
  219. #define DB_YIELDCPU       0x100000 /* Yield the CPU (a lot). */
  220. /*
  221.  * Flags private to DB->set_feedback's callback.
  222.  */
  223. #define DB_UPGRADE       0x000001 /* Upgrading. */
  224. #define DB_VERIFY       0x000002 /* Verifying. */
  225. /*
  226.  * Flags private to DB_MPOOLFILE->open.
  227.  *    Shared flags up to 0x000400 */
  228. #define DB_DIRECT       0x000800 /* Don't buffer the file in the OS. */
  229. #define DB_EXTENT       0x001000 /* UNDOC: dealing with an extent. */
  230. #define DB_ODDFILESIZE       0x002000 /* Truncate file to N * pgsize. */
  231. /*
  232.  * Flags private to DB->set_flags.
  233.  */
  234. #define DB_CHKSUM_SHA1       0x000001 /* Use SHA1 checksumming */
  235. #define DB_DUP       0x000002 /* Btree, Hash: duplicate keys. */
  236. #define DB_DUPSORT       0x000004 /* Btree, Hash: duplicate keys. */
  237. #define DB_ENCRYPT       0x000008 /* Btree, Hash: duplicate keys. */
  238. #define DB_RECNUM       0x000010 /* Btree: record numbers. */
  239. #define DB_RENUMBER       0x000020 /* Recno: renumber on insert/delete. */
  240. #define DB_REVSPLITOFF       0x000040 /* Btree: turn off reverse splits. */
  241. #define DB_SNAPSHOT       0x000080 /* Recno: snapshot the input. */
  242. /*
  243.  * Flags private to the DB->stat methods.
  244.  */
  245. #define DB_STAT_CLEAR       0x000001 /* Clear stat after returning values. */
  246. /*
  247.  * Flags private to DB->join.
  248.  */
  249. #define DB_JOIN_NOSORT       0x000001 /* Don't try to optimize join. */
  250. /*
  251.  * Flags private to DB->verify.
  252.  */
  253. #define DB_AGGRESSIVE       0x000001 /* Salvage whatever could be data.*/
  254. #define DB_NOORDERCHK       0x000002 /* Skip sort order/hashing check. */
  255. #define DB_ORDERCHKONLY       0x000004 /* Only perform the order check. */
  256. #define DB_PR_PAGE       0x000008 /* Show page contents (-da). */
  257. #define DB_PR_RECOVERYTEST    0x000010 /* Recovery test (-dr). */
  258. #define DB_PRINTABLE       0x000020 /* Use printable format for salvage. */
  259. #define DB_SALVAGE       0x000040 /* Salvage what looks like data. */
  260. /*
  261.  * !!!
  262.  * These must not go over 0x8000, or they will collide with the flags
  263.  * used by __bam_vrfy_subtree.
  264.  */
  265. /*
  266.  * Flags private to DB->set_rep_transport's send callback.
  267.  */
  268. #define DB_REP_PERMANENT 0x0001 /* Important--app. may want to flush. */
  269. /*******************************************************
  270.  * Locking.
  271.  *******************************************************/
  272. #define DB_LOCKVERSION 1
  273. #define DB_FILE_ID_LEN 20 /* Unique file ID length. */
  274. /*
  275.  * Deadlock detector modes; used in the DB_ENV structure to configure the
  276.  * locking subsystem.
  277.  */
  278. #define DB_LOCK_NORUN 0
  279. #define DB_LOCK_DEFAULT 1 /* Default policy. */
  280. #define DB_LOCK_EXPIRE 2 /* Only expire locks, no detection. */
  281. #define DB_LOCK_MAXLOCKS 3 /* Abort txn with maximum # of locks. */
  282. #define DB_LOCK_MINLOCKS 4 /* Abort txn with minimum # of locks. */
  283. #define DB_LOCK_MINWRITE 5 /* Abort txn with minimum writelocks. */
  284. #define DB_LOCK_OLDEST 6 /* Abort oldest transaction. */
  285. #define DB_LOCK_RANDOM 7 /* Abort random transaction. */
  286. #define DB_LOCK_YOUNGEST 8 /* Abort youngest transaction. */
  287. /* Flag values for lock_vec(), lock_get(). */
  288. #define DB_LOCK_FREE_LOCKER 0x001 /* Internal: Free locker as well. */
  289. #define DB_LOCK_NOWAIT 0x002 /* Don't wait on unavailable lock. */
  290. #define DB_LOCK_RECORD 0x004 /* Internal: record lock. */
  291. #define DB_LOCK_REMOVE 0x008 /* Internal: flag object removed. */
  292. #define DB_LOCK_SET_TIMEOUT 0x010 /* Internal: set lock timeout. */
  293. #define DB_LOCK_SWITCH 0x020 /* Internal: switch existing lock. */
  294. #define DB_LOCK_UPGRADE 0x040 /* Internal: upgrade existing lock. */
  295. /*
  296.  * Simple R/W lock modes and for multi-granularity intention locking.
  297.  *
  298.  * !!!
  299.  * These values are NOT random, as they are used as an index into the lock
  300.  * conflicts arrays, i.e., DB_LOCK_IWRITE must be == 3, and DB_LOCK_IREAD
  301.  * must be == 4.
  302.  */
  303. typedef enum {
  304. DB_LOCK_NG=0, /* Not granted. */
  305. DB_LOCK_READ=1, /* Shared/read. */
  306. DB_LOCK_WRITE=2, /* Exclusive/write. */
  307. DB_LOCK_WAIT=3, /* Wait for event */
  308. DB_LOCK_IWRITE=4, /* Intent exclusive/write. */
  309. DB_LOCK_IREAD=5, /* Intent to share/read. */
  310. DB_LOCK_IWR=6, /* Intent to read and write. */
  311. DB_LOCK_DIRTY=7, /* Dirty Read. */
  312. DB_LOCK_WWRITE=8 /* Was Written. */
  313. } db_lockmode_t;
  314. /*
  315.  * Request types.
  316.  */
  317. typedef enum {
  318. DB_LOCK_DUMP=0, /* Display held locks. */
  319. DB_LOCK_GET=1, /* Get the lock. */
  320. DB_LOCK_GET_TIMEOUT=2, /* Get lock with a timeout. */
  321. DB_LOCK_INHERIT=3, /* Pass locks to parent. */
  322. DB_LOCK_PUT=4, /* Release the lock. */
  323. DB_LOCK_PUT_ALL=5, /* Release locker's locks. */
  324. DB_LOCK_PUT_OBJ=6, /* Release locker's locks on obj. */
  325. DB_LOCK_PUT_READ=7, /* Release locker's read locks. */
  326. DB_LOCK_TIMEOUT=8, /* Force a txn to timeout. */
  327. DB_LOCK_TRADE=9, /* Trade locker ids on a lock. */
  328. DB_LOCK_UPGRADE_WRITE=10 /* Upgrade writes for dirty reads. */
  329. } db_lockop_t;
  330. /*
  331.  * Status of a lock.
  332.  */
  333. typedef enum  {
  334. DB_LSTAT_ABORTED=1, /* Lock belongs to an aborted txn. */
  335. DB_LSTAT_ERR=2, /* Lock is bad. */
  336. DB_LSTAT_EXPIRED=3, /* Lock has expired. */
  337. DB_LSTAT_FREE=4, /* Lock is unallocated. */
  338. DB_LSTAT_HELD=5, /* Lock is currently held. */
  339. DB_LSTAT_NOTEXIST=6, /* Object on which lock was waiting
  340.  * was removed */
  341. DB_LSTAT_PENDING=7, /* Lock was waiting and has been
  342.  * promoted; waiting for the owner
  343.  * to run and upgrade it to held. */
  344. DB_LSTAT_WAITING=8 /* Lock is on the wait queue. */
  345. }db_status_t;
  346. /* Lock statistics structure. */
  347. struct __db_lock_stat {
  348. u_int32_t st_id; /* Last allocated locker ID. */
  349. u_int32_t st_cur_maxid; /* Current maximum unused ID. */
  350. u_int32_t st_maxlocks; /* Maximum number of locks in table. */
  351. u_int32_t st_maxlockers; /* Maximum num of lockers in table. */
  352. u_int32_t st_maxobjects; /* Maximum num of objects in table. */
  353. u_int32_t st_nmodes; /* Number of lock modes. */
  354. u_int32_t st_nlocks; /* Current number of locks. */
  355. u_int32_t st_maxnlocks; /* Maximum number of locks so far. */
  356. u_int32_t st_nlockers; /* Current number of lockers. */
  357. u_int32_t st_maxnlockers; /* Maximum number of lockers so far. */
  358. u_int32_t st_nobjects; /* Current number of objects. */
  359. u_int32_t st_maxnobjects; /* Maximum number of objects so far. */
  360. u_int32_t st_nconflicts; /* Number of lock conflicts. */
  361. u_int32_t st_nrequests; /* Number of lock gets. */
  362. u_int32_t st_nreleases; /* Number of lock puts. */
  363. u_int32_t st_nnowaits; /* Number of requests that would have
  364.    waited, but NOWAIT was set. */
  365. u_int32_t st_ndeadlocks; /* Number of lock deadlocks. */
  366. db_timeout_t st_locktimeout; /* Lock timeout. */
  367. u_int32_t st_nlocktimeouts; /* Number of lock timeouts. */
  368. db_timeout_t st_txntimeout; /* Transaction timeout. */
  369. u_int32_t st_ntxntimeouts; /* Number of transaction timeouts. */
  370. u_int32_t st_region_wait; /* Region lock granted after wait. */
  371. u_int32_t st_region_nowait; /* Region lock granted without wait. */
  372. u_int32_t st_regsize; /* Region size. */
  373. };
  374. /*
  375.  * DB_LOCK_ILOCK --
  376.  * Internal DB access method lock.
  377.  */
  378. struct __db_ilock {
  379. db_pgno_t pgno; /* Page being locked. */
  380. u_int8_t fileid[DB_FILE_ID_LEN];/* File id. */
  381. #define DB_HANDLE_LOCK 1
  382. #define DB_RECORD_LOCK 2
  383. #define DB_PAGE_LOCK 3
  384. #define DB_TXN_LOCK 4
  385. u_int32_t type; /* Type of lock. */
  386. };
  387. /*
  388.  * DB_LOCK --
  389.  * The structure is allocated by the caller and filled in during a
  390.  * lock_get request (or a lock_vec/DB_LOCK_GET).
  391.  */
  392. struct __db_lock_u {
  393. size_t off; /* Offset of the lock in the region */
  394. u_int32_t ndx; /* Index of the object referenced by
  395.  * this lock; used for locking. */
  396. u_int32_t gen; /* Generation number of this lock. */
  397. db_lockmode_t mode; /* mode of this lock. */
  398. };
  399. /* Lock request structure. */
  400. struct __db_lockreq {
  401. db_lockop_t  op; /* Operation. */
  402. db_lockmode_t  mode; /* Requested mode. */
  403. db_timeout_t  timeout; /* Time to expire lock. */
  404. DBT *obj; /* Object being locked. */
  405. DB_LOCK  lock; /* Lock returned. */
  406. };
  407. /*******************************************************
  408.  * Logging.
  409.  *******************************************************/
  410. #define DB_LOGVERSION 7 /* Current log version. */
  411. #define DB_LOGOLDVER 7 /* Oldest log version supported. */
  412. #define DB_LOGMAGIC 0x040988
  413. /* Flag values for log_archive(). */
  414. #define DB_ARCH_ABS 0x001 /* Absolute pathnames. */
  415. #define DB_ARCH_DATA 0x002 /* Data files. */
  416. #define DB_ARCH_LOG 0x004 /* Log files. */
  417. /*
  418.  * A DB_LSN has two parts, a fileid which identifies a specific file, and an
  419.  * offset within that file.  The fileid is an unsigned 4-byte quantity that
  420.  * uniquely identifies a file within the log directory -- currently a simple
  421.  * counter inside the log.  The offset is also an unsigned 4-byte value.  The
  422.  * log manager guarantees the offset is never more than 4 bytes by switching
  423.  * to a new log file before the maximum length imposed by an unsigned 4-byte
  424.  * offset is reached.
  425.  */
  426. struct __db_lsn {
  427. u_int32_t file; /* File ID. */
  428. u_int32_t offset; /* File offset. */
  429. };
  430. /*
  431.  * DB_LOGC --
  432.  * Log cursor.
  433.  */
  434. struct __db_log_cursor {
  435. DB_ENV  *dbenv; /* Enclosing dbenv. */
  436. DB_FH  *c_fh; /* File handle. */
  437. DB_LSN   c_lsn; /* Cursor: LSN */
  438. u_int32_t c_len; /* Cursor: record length */
  439. u_int32_t c_prev; /* Cursor: previous record's offset */
  440. DBT   c_dbt; /* Return DBT. */
  441. #define DB_LOGC_BUF_SIZE (32 * 1024)
  442. u_int8_t *bp; /* Allocated read buffer. */
  443. u_int32_t bp_size; /* Read buffer length in bytes. */
  444. u_int32_t bp_rlen; /* Read buffer valid data length. */
  445. DB_LSN   bp_lsn; /* Read buffer first byte LSN. */
  446. u_int32_t bp_maxrec; /* Max record length in the log file. */
  447. /* Methods. */
  448. int (*close) __P((DB_LOGC *, u_int32_t));
  449. int (*get) __P((DB_LOGC *, DB_LSN *, DBT *, u_int32_t));
  450. #define DB_LOG_DISK 0x01 /* Log record came from disk. */
  451. #define DB_LOG_LOCKED 0x02 /* Log region already locked */
  452. #define DB_LOG_SILENT_ERR 0x04 /* Turn-off error messages. */
  453. u_int32_t flags;
  454. };
  455. /* Log statistics structure. */
  456. struct __db_log_stat {
  457. u_int32_t st_magic; /* Log file magic number. */
  458. u_int32_t st_version; /* Log file version number. */
  459. int st_mode; /* Log file mode. */
  460. u_int32_t st_lg_bsize; /* Log buffer size. */
  461. u_int32_t st_lg_size; /* Log file size. */
  462. u_int32_t st_w_bytes; /* Bytes to log. */
  463. u_int32_t st_w_mbytes; /* Megabytes to log. */
  464. u_int32_t st_wc_bytes; /* Bytes to log since checkpoint. */
  465. u_int32_t st_wc_mbytes; /* Megabytes to log since checkpoint. */
  466. u_int32_t st_wcount; /* Total writes to the log. */
  467. u_int32_t st_wcount_fill; /* Overflow writes to the log. */
  468. u_int32_t st_scount; /* Total syncs to the log. */
  469. u_int32_t st_region_wait; /* Region lock granted after wait. */
  470. u_int32_t st_region_nowait; /* Region lock granted without wait. */
  471. u_int32_t st_cur_file; /* Current log file number. */
  472. u_int32_t st_cur_offset; /* Current log file offset. */
  473. u_int32_t st_disk_file; /* Known on disk log file number. */
  474. u_int32_t st_disk_offset; /* Known on disk log file offset. */
  475. u_int32_t st_regsize; /* Region size. */
  476. u_int32_t st_maxcommitperflush; /* Max number of commits in a flush. */
  477. u_int32_t st_mincommitperflush; /* Min number of commits in a flush. */
  478. };
  479. /*******************************************************
  480.  * Shared buffer cache (mpool).
  481.  *******************************************************/
  482. /* Flag values for DB_MPOOLFILE->get. */
  483. #define DB_MPOOL_CREATE 0x001 /* Create a page. */
  484. #define DB_MPOOL_LAST 0x002 /* Return the last page. */
  485. #define DB_MPOOL_NEW 0x004 /* Create a new page. */
  486. /* Flag values for DB_MPOOLFILE->put, DB_MPOOLFILE->set. */
  487. #define DB_MPOOL_CLEAN 0x001 /* Page is not modified. */
  488. #define DB_MPOOL_DIRTY 0x002 /* Page is modified. */
  489. #define DB_MPOOL_DISCARD 0x004 /* Don't cache the page. */
  490. /* Priority values for DB_MPOOLFILE->set_priority. */
  491. typedef enum {
  492. DB_PRIORITY_VERY_LOW=1,
  493. DB_PRIORITY_LOW=2,
  494. DB_PRIORITY_DEFAULT=3,
  495. DB_PRIORITY_HIGH=4,
  496. DB_PRIORITY_VERY_HIGH=5
  497. } DB_CACHE_PRIORITY;
  498. /* Per-process DB_MPOOLFILE information. */
  499. struct __db_mpoolfile {
  500. /* These fields need to be protected for multi-threaded support. */
  501. DB_MUTEX *mutexp; /* Structure thread lock. */
  502. DB_FH   *fhp; /* Underlying file handle. */
  503. u_int32_t  ref; /* Reference count. */
  504. /*
  505.  * !!!
  506.  * The pinref and q fields are protected by the region lock, not the
  507.  * DB_MPOOLFILE structure mutex.  We don't use the structure mutex
  508.  * because then I/O (which holds the structure lock held because of
  509.  * the race between the seek and write of the file descriptor) would
  510.  * block any other put/get calls using this DB_MPOOLFILE structure.
  511.  */
  512. u_int32_t pinref; /* Pinned block reference count. */
  513. /*
  514.  * !!!
  515.  * Explicit representations of structures from queue.h.
  516.  * TAILQ_ENTRY(__db_mpoolfile) q;
  517.  */
  518. struct {
  519. struct __db_mpoolfile *tqe_next;
  520. struct __db_mpoolfile **tqe_prev;
  521. } q; /* Linked list of DB_MPOOLFILE's. */
  522. /*
  523.  * These fields are not thread-protected because they are initialized
  524.  * when the file is opened and never modified.
  525.  */
  526. int   ftype; /* File type. */
  527. DBT  *pgcookie; /* Byte-string passed to pgin/pgout. */
  528. u_int8_t *fileid; /* Unique file ID. */
  529. int32_t   lsn_offset; /* LSN offset in page. */
  530. u_int32_t clear_len; /* Cleared length on created pages. */
  531. DB_MPOOL  *dbmp; /* Overlying DB_MPOOL. */
  532. MPOOLFILE *mfp; /* Underlying MPOOLFILE. */
  533. void   *addr; /* Address of mmap'd region. */
  534. size_t    len; /* Length of mmap'd region. */
  535. /* Methods. */
  536. int  (*close) __P((DB_MPOOLFILE *, u_int32_t));
  537. int  (*get) __P((DB_MPOOLFILE *, db_pgno_t *, u_int32_t, void *));
  538. void (*get_fileid) __P((DB_MPOOLFILE *, u_int8_t *));
  539. void (*last_pgno) __P((DB_MPOOLFILE *, db_pgno_t *));
  540. int  (*open)__P((DB_MPOOLFILE *, const char *, u_int32_t, int, size_t));
  541. int  (*put) __P((DB_MPOOLFILE *, void *, u_int32_t));
  542. void (*refcnt) __P((DB_MPOOLFILE *, db_pgno_t *));
  543. int  (*set) __P((DB_MPOOLFILE *, void *, u_int32_t));
  544. int  (*set_clear_len) __P((DB_MPOOLFILE *, u_int32_t));
  545. int  (*set_fileid) __P((DB_MPOOLFILE *, u_int8_t *));
  546. int  (*set_ftype) __P((DB_MPOOLFILE *, int));
  547. int  (*set_lsn_offset) __P((DB_MPOOLFILE *, int32_t));
  548. int  (*set_pgcookie) __P((DB_MPOOLFILE *, DBT *));
  549. int  (*set_priority) __P((DB_MPOOLFILE *, DB_CACHE_PRIORITY));
  550. void (*set_unlink) __P((DB_MPOOLFILE *, int));
  551. int  (*sync) __P((DB_MPOOLFILE *));
  552. /*
  553.  * MP_OPEN_CALLED and MP_READONLY do not need to be thread protected
  554.  * because they are initialized when the file is opened, and never
  555.  * modified.
  556.  *
  557.  * MP_FLUSH, MP_UPGRADE and MP_UPGRADE_FAIL are thread protected
  558.  * becase they are potentially read by multiple threads of control.
  559.  */
  560. #define MP_FLUSH 0x001 /* Was opened to flush a buffer. */
  561. #define MP_OPEN_CALLED 0x002 /* File opened. */
  562. #define MP_READONLY 0x004 /* File is readonly. */
  563. #define MP_UPGRADE 0x008 /* File descriptor is readwrite. */
  564. #define MP_UPGRADE_FAIL 0x010 /* Upgrade wasn't possible. */
  565. u_int32_t  flags;
  566. };
  567. /*
  568.  * Mpool statistics structure.
  569.  */
  570. struct __db_mpool_stat {
  571. u_int32_t st_gbytes; /* Total cache size: GB. */
  572. u_int32_t st_bytes; /* Total cache size: B. */
  573. u_int32_t st_ncache; /* Number of caches. */
  574. u_int32_t st_regsize; /* Cache size. */
  575. u_int32_t st_map; /* Pages from mapped files. */
  576. u_int32_t st_cache_hit; /* Pages found in the cache. */
  577. u_int32_t st_cache_miss; /* Pages not found in the cache. */
  578. u_int32_t st_page_create; /* Pages created in the cache. */
  579. u_int32_t st_page_in; /* Pages read in. */
  580. u_int32_t st_page_out; /* Pages written out. */
  581. u_int32_t st_ro_evict; /* Clean pages forced from the cache. */
  582. u_int32_t st_rw_evict; /* Dirty pages forced from the cache. */
  583. u_int32_t st_page_trickle; /* Pages written by memp_trickle. */
  584. u_int32_t st_pages; /* Total number of pages. */
  585. u_int32_t st_page_clean; /* Clean pages. */
  586. u_int32_t st_page_dirty; /* Dirty pages. */
  587. u_int32_t st_hash_buckets; /* Number of hash buckets. */
  588. u_int32_t st_hash_searches; /* Total hash chain searches. */
  589. u_int32_t st_hash_longest; /* Longest hash chain searched. */
  590. u_int32_t st_hash_examined; /* Total hash entries searched. */
  591. u_int32_t st_hash_nowait; /* Hash lock granted with nowait. */
  592. u_int32_t st_hash_wait; /* Hash lock granted after wait. */
  593. u_int32_t st_hash_max_wait; /* Max hash lock granted after wait. */
  594. u_int32_t st_region_nowait; /* Region lock granted with nowait. */
  595. u_int32_t st_region_wait; /* Region lock granted after wait. */
  596. u_int32_t st_alloc; /* Number of page allocations. */
  597. u_int32_t st_alloc_buckets; /* Buckets checked during allocation. */
  598. u_int32_t st_alloc_max_buckets; /* Max checked during allocation. */
  599. u_int32_t st_alloc_pages; /* Pages checked during allocation. */
  600. u_int32_t st_alloc_max_pages; /* Max checked during allocation. */
  601. };
  602. /* Mpool file statistics structure. */
  603. struct __db_mpool_fstat {
  604. char *file_name; /* File name. */
  605. size_t st_pagesize; /* Page size. */
  606. u_int32_t st_map; /* Pages from mapped files. */
  607. u_int32_t st_cache_hit; /* Pages found in the cache. */
  608. u_int32_t st_cache_miss; /* Pages not found in the cache. */
  609. u_int32_t st_page_create; /* Pages created in the cache. */
  610. u_int32_t st_page_in; /* Pages read in. */
  611. u_int32_t st_page_out; /* Pages written out. */
  612. };
  613. /*******************************************************
  614.  * Transactions and recovery.
  615.  *******************************************************/
  616. #define DB_TXNVERSION 1
  617. typedef enum {
  618. DB_TXN_ABORT=0, /* Public. */
  619. DB_TXN_APPLY=1, /* Public. */
  620. DB_TXN_BACKWARD_ALLOC=2, /* Internal. */
  621. DB_TXN_BACKWARD_ROLL=3, /* Public. */
  622. DB_TXN_FORWARD_ROLL=4, /* Public. */
  623. DB_TXN_GETPGNOS=5, /* Internal. */
  624. DB_TXN_OPENFILES=6, /* Internal. */
  625. DB_TXN_POPENFILES=7, /* Internal. */
  626. DB_TXN_PRINT=8 /* Public. */
  627. } db_recops;
  628. /*
  629.  * BACKWARD_ALLOC is used during the forward pass to pick up any aborted
  630.  * allocations for files that were created during the forward pass.
  631.  * The main difference between _ALLOC and _ROLL is that the entry for
  632.  * the file not exist during the rollforward pass.
  633.  */
  634. #define DB_UNDO(op) ((op) == DB_TXN_ABORT ||
  635. (op) == DB_TXN_BACKWARD_ROLL || (op) == DB_TXN_BACKWARD_ALLOC)
  636. #define DB_REDO(op) ((op) == DB_TXN_FORWARD_ROLL || (op) == DB_TXN_APPLY)
  637. struct __db_txn {
  638. DB_TXNMGR *mgrp; /* Pointer to transaction manager. */
  639. DB_TXN *parent; /* Pointer to transaction's parent. */
  640. DB_LSN last_lsn; /* Lsn of last log write. */
  641. u_int32_t txnid; /* Unique transaction id. */
  642. roff_t off; /* Detail structure within region. */
  643. db_timeout_t lock_timeout; /* Timeout for locks for this txn. */
  644. db_timeout_t expire; /* Time this txn expires. */
  645. void *txn_list; /* Undo information for parent. */
  646. /*
  647.  * !!!
  648.  * Explicit representations of structures from queue.h.
  649.  * TAILQ_ENTRY(__db_txn) links;
  650.  */
  651. struct {
  652. struct __db_txn *tqe_next;
  653. struct __db_txn **tqe_prev;
  654. } links; /* Links transactions off manager. */
  655. /*
  656.  * !!!
  657.  * Explicit representations of structures from queue.h.
  658.  * TAILQ_HEAD(__events, __txn_event) events;
  659.  */
  660. struct {
  661. struct __txn_event *tqh_first;
  662. struct __txn_event **tqh_last;
  663. } events;
  664. /*
  665.  * !!!
  666.  * Explicit representations of structures from queue.h.
  667.  * TAILQ_HEAD(__kids, __db_txn) kids;
  668.  */
  669. struct __kids {
  670. struct __db_txn *tqh_first;
  671. struct __db_txn **tqh_last;
  672. } kids;
  673. /*
  674.  * !!!
  675.  * Explicit representations of structures from queue.h.
  676.  * TAILQ_ENTRY(__db_txn) klinks;
  677.  */
  678. struct {
  679. struct __db_txn *tqe_next;
  680. struct __db_txn **tqe_prev;
  681. } klinks;
  682. /* API-private structure: used by C++ */
  683. void *api_internal;
  684. u_int32_t cursors; /* Number of cursors open for txn */
  685. /* Methods. */
  686. int   (*abort) __P((DB_TXN *));
  687. int   (*commit) __P((DB_TXN *, u_int32_t));
  688. int   (*discard) __P((DB_TXN *, u_int32_t));
  689. u_int32_t (*id) __P((DB_TXN *));
  690. int   (*prepare) __P((DB_TXN *, u_int8_t *));
  691. int   (*set_timeout) __P((DB_TXN *, db_timeout_t, u_int32_t));
  692. #define TXN_CHILDCOMMIT 0x01 /* Transaction that has committed. */
  693. #define TXN_COMPENSATE 0x02 /* Compensating transaction. */
  694. #define TXN_DIRTY_READ 0x04 /* Transaction does dirty reads. */
  695. #define TXN_LOCKTIMEOUT 0x08 /* Transaction has a lock timeout. */
  696. #define TXN_MALLOC 0x10 /* Structure allocated by TXN system. */
  697. #define TXN_NOSYNC 0x20 /* Do not sync on prepare and commit. */
  698. #define TXN_NOWAIT 0x40 /* Do not wait on locks. */
  699. #define TXN_SYNC 0x80 /* Sync on prepare and commit. */
  700. u_int32_t flags;
  701. };
  702. /* Transaction statistics structure. */
  703. struct __db_txn_active {
  704. u_int32_t txnid; /* Transaction ID */
  705. u_int32_t parentid; /* Transaction ID of parent */
  706. DB_LSN lsn; /* LSN when transaction began */
  707. };
  708. struct __db_txn_stat {
  709. DB_LSN   st_last_ckp; /* lsn of the last checkpoint */
  710. time_t   st_time_ckp; /* time of last checkpoint */
  711. u_int32_t st_last_txnid; /* last transaction id given out */
  712. u_int32_t st_maxtxns; /* maximum txns possible */
  713. u_int32_t st_naborts; /* number of aborted transactions */
  714. u_int32_t st_nbegins; /* number of begun transactions */
  715. u_int32_t st_ncommits; /* number of committed transactions */
  716. u_int32_t st_nactive; /* number of active transactions */
  717. u_int32_t st_nrestores; /* number of restored transactions
  718.    after recovery. */
  719. u_int32_t st_maxnactive; /* maximum active transactions */
  720. DB_TXN_ACTIVE *st_txnarray; /* array of active transactions */
  721. u_int32_t st_region_wait; /* Region lock granted after wait. */
  722. u_int32_t st_region_nowait; /* Region lock granted without wait. */
  723. u_int32_t st_regsize; /* Region size. */
  724. };
  725. /*
  726.  * Structure used for two phase commit interface.  Berkeley DB support for two
  727.  * phase commit is compatible with the X/open XA interface.  The xa #define
  728.  * XIDDATASIZE defines the size of a global transaction ID.  We have our own
  729.  * version here which must have the same value.
  730.  */
  731. #define DB_XIDDATASIZE 128
  732. struct __db_preplist {
  733. DB_TXN *txn;
  734. u_int8_t gid[DB_XIDDATASIZE];
  735. };
  736. /*******************************************************
  737.  * Replication.
  738.  *******************************************************/
  739. /* Special, out-of-band environment IDs. */
  740. #define DB_EID_BROADCAST -1
  741. #define DB_EID_INVALID -2
  742. /* rep_start flags values */
  743. #define DB_REP_CLIENT 0x001
  744. #define DB_REP_LOGSONLY 0x002
  745. #define DB_REP_MASTER 0x004
  746. /* Replication statistics. */
  747. struct __db_rep_stat {
  748. /* !!!
  749.  * Many replication statistics fields cannot be protected by a mutex
  750.  * without an unacceptable performance penalty, since most message
  751.  * processing is done without the need to hold a region-wide lock.
  752.  * Fields whose comments end with a '+' may be updated without holding
  753.  * the replication or log mutexes (as appropriate), and thus may be
  754.  * off somewhat (or, on unreasonable architectures under unlucky
  755.  * circumstances, garbaged).
  756.  */
  757. u_int32_t st_status; /* Current replication status. */
  758. DB_LSN st_next_lsn; /* Next LSN to use or expect. */
  759. DB_LSN st_waiting_lsn; /* LSN we're awaiting, if any. */
  760. u_int32_t st_dupmasters; /* # of times a duplicate master
  761.    condition was detected.+ */
  762. int st_env_id; /* Current environment ID. */
  763. int st_env_priority; /* Current environment priority. */
  764. u_int32_t st_gen; /* Current generation number. */
  765. u_int32_t st_log_duplicated; /* Log records received multiply.+ */
  766. u_int32_t st_log_queued; /* Log records currently queued.+ */
  767. u_int32_t st_log_queued_max; /* Max. log records queued at once.+ */
  768. u_int32_t st_log_queued_total; /* Total # of log recs. ever queued.+ */
  769. u_int32_t st_log_records; /* Log records received and put.+ */
  770. u_int32_t st_log_requested; /* Log recs. missed and requested.+ */
  771. int st_master; /* Env. ID of the current master. */
  772. u_int32_t st_master_changes; /* # of times we've switched masters. */
  773. u_int32_t st_msgs_badgen; /* Messages with a bad generation #.+ */
  774. u_int32_t st_msgs_processed; /* Messages received and processed.+ */
  775. u_int32_t st_msgs_recover; /* Messages ignored because this site
  776.    was a client in recovery.+ */
  777. u_int32_t st_msgs_send_failures;/* # of failed message sends.+ */
  778. u_int32_t st_msgs_sent; /* # of successful message sends.+ */
  779. u_int32_t st_newsites; /* # of NEWSITE msgs. received.+ */
  780. int st_nsites; /* Current number of sites we will
  781.    assume during elections. */
  782. u_int32_t st_nthrottles; /* # of times we were throttled. */
  783. u_int32_t st_outdated; /* # of times we detected and returned
  784.    an OUTDATED condition.+ */
  785. u_int32_t st_txns_applied; /* # of transactions applied.+ */
  786. /* Elections generally. */
  787. u_int32_t st_elections; /* # of elections held.+ */
  788. u_int32_t st_elections_won; /* # of elections won by this site.+ */
  789. /* Statistics about an in-progress election. */
  790. int st_election_cur_winner; /* Current front-runner. */
  791. u_int32_t st_election_gen; /* Election generation number. */
  792. DB_LSN st_election_lsn; /* Max. LSN of current winner. */
  793. int st_election_nsites; /* # of "registered voters". */
  794. int st_election_priority; /* Current election priority. */
  795. int st_election_status; /* Current election status. */
  796. int st_election_tiebreaker; /* Election tiebreaker value. */
  797. int st_election_votes; /* Votes received in this round. */
  798. };
  799. /*******************************************************
  800.  * Access methods.
  801.  *******************************************************/
  802. typedef enum {
  803. DB_BTREE=1,
  804. DB_HASH=2,
  805. DB_RECNO=3,
  806. DB_QUEUE=4,
  807. DB_UNKNOWN=5 /* Figure it out on open. */
  808. } DBTYPE;
  809. #define DB_RENAMEMAGIC 0x030800 /* File has been renamed. */
  810. #define DB_BTREEVERSION 9 /* Current btree version. */
  811. #define DB_BTREEOLDVER 8 /* Oldest btree version supported. */
  812. #define DB_BTREEMAGIC 0x053162
  813. #define DB_HASHVERSION 8 /* Current hash version. */
  814. #define DB_HASHOLDVER 7 /* Oldest hash version supported. */
  815. #define DB_HASHMAGIC 0x061561
  816. #define DB_QAMVERSION 4 /* Current queue version. */
  817. #define DB_QAMOLDVER 3 /* Oldest queue version supported. */
  818. #define DB_QAMMAGIC 0x042253
  819. /*
  820.  * DB access method and cursor operation values.  Each value is an operation
  821.  * code to which additional bit flags are added.
  822.  */
  823. #define DB_AFTER  1 /* c_put() */
  824. #define DB_APPEND  2 /* put() */
  825. #define DB_BEFORE  3 /* c_put() */
  826. #define DB_CACHED_COUNTS  4 /* stat() */
  827. #define DB_COMMIT  5 /* log_put() (internal) */
  828. #define DB_CONSUME  6 /* get() */
  829. #define DB_CONSUME_WAIT  7 /* get() */
  830. #define DB_CURRENT  8 /* c_get(), c_put(), DB_LOGC->get() */
  831. #define DB_FAST_STAT  9 /* stat() */
  832. #define DB_FIRST 10 /* c_get(), DB_LOGC->get() */
  833. #define DB_GET_BOTH 11 /* get(), c_get() */
  834. #define DB_GET_BOTHC 12 /* c_get() (internal) */
  835. #define DB_GET_BOTH_RANGE 13 /* get(), c_get() */
  836. #define DB_GET_RECNO 14 /* c_get() */
  837. #define DB_JOIN_ITEM 15 /* c_get(); do not do primary lookup */
  838. #define DB_KEYFIRST 16 /* c_put() */
  839. #define DB_KEYLAST 17 /* c_put() */
  840. #define DB_LAST 18 /* c_get(), DB_LOGC->get() */
  841. #define DB_NEXT 19 /* c_get(), DB_LOGC->get() */
  842. #define DB_NEXT_DUP 20 /* c_get() */
  843. #define DB_NEXT_NODUP 21 /* c_get() */
  844. #define DB_NODUPDATA 22 /* put(), c_put() */
  845. #define DB_NOOVERWRITE 23 /* put() */
  846. #define DB_NOSYNC 24 /* close() */
  847. #define DB_POSITION 25 /* c_dup() */
  848. #define DB_POSITIONI 26 /* c_dup() (internal) */
  849. #define DB_PREV 27 /* c_get(), DB_LOGC->get() */
  850. #define DB_PREV_NODUP 28 /* c_get(), DB_LOGC->get() */
  851. #define DB_RECORDCOUNT 29 /* stat() */
  852. #define DB_SET 30 /* c_get(), DB_LOGC->get() */
  853. #define DB_SET_LOCK_TIMEOUT 31 /* set_timout() */
  854. #define DB_SET_RANGE 32 /* c_get() */
  855. #define DB_SET_RECNO 33 /* get(), c_get() */
  856. #define DB_SET_TXN_NOW 34 /* set_timout() (internal) */
  857. #define DB_SET_TXN_TIMEOUT 35 /* set_timout() */
  858. #define DB_UPDATE_SECONDARY 36 /* c_get(), c_del() (internal) */
  859. #define DB_WRITECURSOR 37 /* cursor() */
  860. #define DB_WRITELOCK 38 /* cursor() (internal) */
  861. /* This has to change when the max opcode hits 255. */
  862. #define DB_OPFLAGS_MASK 0x000000ff /* Mask for operations flags. */
  863. /* DB_DIRTY_READ 0x01000000    Dirty Read. */
  864. #define DB_FLUSH 0x02000000 /* Flush data to disk. */
  865. #define DB_MULTIPLE 0x04000000 /* Return multiple data values. */
  866. #define DB_MULTIPLE_KEY 0x08000000 /* Return multiple data/key pairs. */
  867. #define DB_NOCOPY 0x10000000 /* Don't copy data */
  868. #define DB_PERMANENT 0x20000000 /* Flag record with REP_PERMANENT. */
  869. #define DB_RMW 0x40000000 /* Acquire write flag immediately. */
  870. #define DB_WRNOSYNC 0x80000000 /* Private: write, don't sync log_put */
  871. /*
  872.  * DB (user visible) error return codes.
  873.  *
  874.  * !!!
  875.  * For source compatibility with DB 2.X deadlock return (EAGAIN), use the
  876.  * following:
  877.  * #include <errno.h>
  878.  * #define DB_LOCK_DEADLOCK EAGAIN
  879.  *
  880.  * !!!
  881.  * We don't want our error returns to conflict with other packages where
  882.  * possible, so pick a base error value that's hopefully not common.  We
  883.  * document that we own the error name space from -30,800 to -30,999.
  884.  */
  885. /* DB (public) error return codes. */
  886. #define DB_DONOTINDEX (-30999)/* "Null" return from 2ndary callbk. */
  887. #define DB_KEYEMPTY (-30998)/* Key/data deleted or never created. */
  888. #define DB_KEYEXIST (-30997)/* The key/data pair already exists. */
  889. #define DB_LOCK_DEADLOCK (-30996)/* Deadlock. */
  890. #define DB_LOCK_NOTGRANTED (-30995)/* Lock unavailable. */
  891. #define DB_NOSERVER (-30994)/* Server panic return. */
  892. #define DB_NOSERVER_HOME (-30993)/* Bad home sent to server. */
  893. #define DB_NOSERVER_ID (-30992)/* Bad ID sent to server. */
  894. #define DB_NOTFOUND (-30991)/* Key/data pair not found (EOF). */
  895. #define DB_OLD_VERSION (-30990)/* Out-of-date version. */
  896. #define DB_PAGE_NOTFOUND (-30989)/* Requested page not found. */
  897. #define DB_REP_DUPMASTER (-30988)/* There are two masters. */
  898. #define DB_REP_HOLDELECTION (-30987)/* Time to hold an election. */
  899. #define DB_REP_NEWMASTER (-30986)/* We have learned of a new master. */
  900. #define DB_REP_NEWSITE (-30985)/* New site entered system. */
  901. #define DB_REP_OUTDATED (-30984)/* Site is too far behind master. */
  902. #define DB_REP_UNAVAIL (-30983)/* Site cannot currently be reached. */
  903. #define DB_RUNRECOVERY (-30982)/* Panic return. */
  904. #define DB_SECONDARY_BAD (-30981)/* Secondary index corrupt. */
  905. #define DB_VERIFY_BAD (-30980)/* Verify failed; bad format. */
  906. /* DB (private) error return codes. */
  907. #define DB_ALREADY_ABORTED (-30899)
  908. #define DB_DELETED (-30898)/* Recovery file marked deleted. */
  909. #define DB_JAVA_CALLBACK (-30897)/* Exception during a java callback. */
  910. #define DB_LOCK_NOTEXIST (-30896)/* Object to lock is gone. */
  911. #define DB_NEEDSPLIT (-30895)/* Page needs to be split. */
  912. #define DB_SURPRISE_KID (-30894)/* Child commit where parent
  913.    didn't know it was a parent. */
  914. #define DB_SWAPBYTES (-30893)/* Database needs byte swapping. */
  915. #define DB_TIMEOUT (-30892)/* Timed out waiting for election. */
  916. #define DB_TXN_CKP (-30891)/* Encountered ckp record in log. */
  917. #define DB_VERIFY_FATAL (-30890)/* DB->verify cannot proceed. */
  918. /* Database handle. */
  919. struct __db {
  920. /*******************************************************
  921.  * Public: owned by the application.
  922.  *******************************************************/
  923. u_int32_t pgsize; /* Database logical page size. */
  924. /* Callbacks. */
  925. int (*db_append_recno) __P((DB *, DBT *, db_recno_t));
  926. void (*db_feedback) __P((DB *, int, int));
  927. int (*dup_compare) __P((DB *, const DBT *, const DBT *));
  928. void *app_private; /* Application-private handle. */
  929. /*******************************************************
  930.  * Private: owned by DB.
  931.  *******************************************************/
  932. DB_ENV *dbenv; /* Backing environment. */
  933. DBTYPE  type; /* DB access method type. */
  934. DB_MPOOLFILE *mpf; /* Backing buffer pool. */
  935. DB_CACHE_PRIORITY priority; /* Priority in the buffer pool. */
  936. DB_MUTEX *mutexp; /* Synchronization for free threading */
  937. u_int8_t fileid[DB_FILE_ID_LEN];/* File's unique ID for locking. */
  938. u_int32_t adj_fileid; /* File's unique ID for curs. adj. */
  939. #define DB_LOGFILEID_INVALID -1
  940. FNAME *log_filename; /* File's naming info for logging. */
  941. db_pgno_t meta_pgno; /* Meta page number */
  942. u_int32_t lid; /* Locker id for handle locking. */
  943. u_int32_t cur_lid; /* Current handle lock holder. */
  944. u_int32_t associate_lid; /* Locker id for DB->associate call. */
  945. DB_LOCK handle_lock; /* Lock held on this handle. */
  946. long  cl_id; /* RPC: remote client id. */
  947. /*
  948.  * Returned data memory for DB->get() and friends.
  949.  */
  950. DBT  my_rskey; /* Secondary key. */
  951. DBT  my_rkey; /* [Primary] key. */
  952. DBT  my_rdata; /* Data. */
  953. /*
  954.  * !!!
  955.  * Some applications use DB but implement their own locking outside of
  956.  * DB.  If they're using fcntl(2) locking on the underlying database
  957.  * file, and we open and close a file descriptor for that file, we will
  958.  * discard their locks.  The DB_FCNTL_LOCKING flag to DB->open is an
  959.  * undocumented interface to support this usage which leaves any file
  960.  * descriptors we open until DB->close.  This will only work with the
  961.  * DB->open interface and simple caches, e.g., creating a transaction
  962.  * thread may open/close file descriptors this flag doesn't protect.
  963.  * Locking with fcntl(2) on a file that you don't own is a very, very
  964.  * unsafe thing to do.  'Nuff said.
  965.  */
  966. DB_FH *saved_open_fhp; /* Saved file handle. */
  967. /*
  968.  * Linked list of DBP's, linked from the DB_ENV, used to keep track
  969.  * of all open db handles for cursor adjustment.
  970.  *
  971.  * !!!
  972.  * Explicit representations of structures from queue.h.
  973.  * LIST_ENTRY(__db) dblistlinks;
  974.  */
  975. struct {
  976. struct __db *le_next;
  977. struct __db **le_prev;
  978. } dblistlinks;
  979. /*
  980.  * Cursor queues.
  981.  *
  982.  * !!!
  983.  * Explicit representations of structures from queue.h.
  984.  * TAILQ_HEAD(__cq_fq, __dbc) free_queue;
  985.  * TAILQ_HEAD(__cq_aq, __dbc) active_queue;
  986.  * TAILQ_HEAD(__cq_jq, __dbc) join_queue;
  987.  */
  988. struct __cq_fq {
  989. struct __dbc *tqh_first;
  990. struct __dbc **tqh_last;
  991. } free_queue;
  992. struct __cq_aq {
  993. struct __dbc *tqh_first;
  994. struct __dbc **tqh_last;
  995. } active_queue;
  996. struct __cq_jq {
  997. struct __dbc *tqh_first;
  998. struct __dbc **tqh_last;
  999. } join_queue;
  1000. /*
  1001.  * Secondary index support.
  1002.  *
  1003.  * Linked list of secondary indices -- set in the primary.
  1004.  *
  1005.  * !!!
  1006.  * Explicit representations of structures from queue.h.
  1007.  * LIST_HEAD(s_secondaries, __db);
  1008.  */
  1009. struct {
  1010. struct __db *lh_first;
  1011. } s_secondaries;
  1012. /*
  1013.  * List entries for secondaries, and reference count of how
  1014.  * many threads are updating this secondary (see __db_c_put).
  1015.  *
  1016.  * !!!
  1017.  * Note that these are synchronized by the primary's mutex, but
  1018.  * filled in in the secondaries.
  1019.  *
  1020.  * !!!
  1021.  * Explicit representations of structures from queue.h.
  1022.  * LIST_ENTRY(__db) s_links;
  1023.  */
  1024. struct {
  1025. struct __db *le_next;
  1026. struct __db **le_prev;
  1027. } s_links;
  1028. u_int32_t s_refcnt;
  1029. /* Secondary callback and free functions -- set in the secondary. */
  1030. int (*s_callback) __P((DB *, const DBT *, const DBT *, DBT *));
  1031. /* Reference to primary -- set in the secondary. */
  1032. DB *s_primary;
  1033. /* API-private structure: used by DB 1.85, C++, Java, Perl and Tcl */
  1034. void *api_internal;
  1035. /* Subsystem-private structure. */
  1036. void *bt_internal; /* Btree/Recno access method. */
  1037. void *h_internal; /* Hash access method. */
  1038. void *q_internal; /* Queue access method. */
  1039. void *xa_internal; /* XA. */
  1040. /* Methods. */
  1041. int  (*associate) __P((DB *, DB_TXN *, DB *, int (*)(DB *, const DBT *,
  1042. const DBT *, DBT *), u_int32_t));
  1043. int  (*close) __P((DB *, u_int32_t));
  1044. int  (*cursor) __P((DB *, DB_TXN *, DBC **, u_int32_t));
  1045. int  (*del) __P((DB *, DB_TXN *, DBT *, u_int32_t));
  1046. void (*err) __P((DB *, int, const char *, ...));
  1047. void (*errx) __P((DB *, const char *, ...));
  1048. int  (*fd) __P((DB *, int *));
  1049. int  (*get) __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
  1050. int  (*pget) __P((DB *, DB_TXN *, DBT *, DBT *, DBT *, u_int32_t));
  1051. int  (*get_byteswapped) __P((DB *, int *));
  1052. int  (*get_type) __P((DB *, DBTYPE *));
  1053. int  (*join) __P((DB *, DBC **, DBC **, u_int32_t));
  1054. int  (*key_range) __P((DB *,
  1055. DB_TXN *, DBT *, DB_KEY_RANGE *, u_int32_t));
  1056. int  (*open) __P((DB *, DB_TXN *,
  1057. const char *, const char *, DBTYPE, u_int32_t, int));
  1058. int  (*put) __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
  1059. int  (*remove) __P((DB *, const char *, const char *, u_int32_t));
  1060. int  (*rename) __P((DB *,
  1061.     const char *, const char *, const char *, u_int32_t));
  1062. int  (*truncate) __P((DB *, DB_TXN *, u_int32_t *, u_int32_t));
  1063. int  (*set_append_recno) __P((DB *, int (*)(DB *, DBT *, db_recno_t)));
  1064. int  (*set_alloc) __P((DB *, void *(*)(size_t),
  1065. void *(*)(void *, size_t), void (*)(void *)));
  1066. int  (*set_cachesize) __P((DB *, u_int32_t, u_int32_t, int));
  1067. int  (*set_cache_priority) __P((DB *, DB_CACHE_PRIORITY));
  1068. int  (*set_dup_compare) __P((DB *,
  1069.     int (*)(DB *, const DBT *, const DBT *)));
  1070. int  (*set_encrypt) __P((DB *, const char *, u_int32_t));
  1071. void (*set_errcall) __P((DB *, void (*)(const char *, char *)));
  1072. void (*set_errfile) __P((DB *, FILE *));
  1073. void (*set_errpfx) __P((DB *, const char *));
  1074. int  (*set_feedback) __P((DB *, void (*)(DB *, int, int)));
  1075. int  (*set_flags) __P((DB *, u_int32_t));
  1076. int  (*set_lorder) __P((DB *, int));
  1077. int  (*set_pagesize) __P((DB *, u_int32_t));
  1078. int  (*set_paniccall) __P((DB *, void (*)(DB_ENV *, int)));
  1079. int  (*stat) __P((DB *, void *, u_int32_t));
  1080. int  (*sync) __P((DB *, u_int32_t));
  1081. int  (*upgrade) __P((DB *, const char *, u_int32_t));
  1082. int  (*verify) __P((DB *,
  1083.     const char *, const char *, FILE *, u_int32_t));
  1084. int  (*set_bt_compare) __P((DB *,
  1085.     int (*)(DB *, const DBT *, const DBT *)));
  1086. int  (*set_bt_maxkey) __P((DB *, u_int32_t));
  1087. int  (*set_bt_minkey) __P((DB *, u_int32_t));
  1088. int  (*set_bt_prefix) __P((DB *,
  1089.     size_t (*)(DB *, const DBT *, const DBT *)));
  1090. int  (*set_h_ffactor) __P((DB *, u_int32_t));
  1091. int  (*set_h_hash) __P((DB *,
  1092.     u_int32_t (*)(DB *, const void *, u_int32_t)));
  1093. int  (*set_h_nelem) __P((DB *, u_int32_t));
  1094. int  (*set_re_delim) __P((DB *, int));
  1095. int  (*set_re_len) __P((DB *, u_int32_t));
  1096. int  (*set_re_pad) __P((DB *, int));
  1097. int  (*set_re_source) __P((DB *, const char *));
  1098. int  (*set_q_extentsize) __P((DB *, u_int32_t));
  1099. int  (*db_am_remove) __P((DB *,
  1100.     DB_TXN *, const char *, const char *, DB_LSN *));
  1101. int  (*db_am_rename) __P((DB *, DB_TXN *,
  1102.     const char *, const char *, const char *));
  1103. /*
  1104.  * Never called; these are a place to save function pointers
  1105.  * so that we can undo an associate.
  1106.  */
  1107. int  (*stored_get) __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
  1108. int  (*stored_close) __P((DB *, u_int32_t));
  1109. #define DB_OK_BTREE 0x01
  1110. #define DB_OK_HASH 0x02
  1111. #define DB_OK_QUEUE 0x04
  1112. #define DB_OK_RECNO 0x08
  1113. u_int32_t am_ok; /* Legal AM choices. */
  1114. #define DB_AM_CHKSUM 0x00000001 /* Checksumming. */
  1115. #define DB_AM_CL_WRITER 0x00000002 /* Allow writes in client replica. */
  1116. #define DB_AM_COMPENSATE 0x00000004 /* Created by compensating txn. */
  1117. #define DB_AM_CREATED 0x00000008 /* Database was created upon open. */
  1118. #define DB_AM_CREATED_MSTR 0x00000010 /* Encompassing file was created. */
  1119. #define DB_AM_DBM_ERROR 0x00000020 /* Error in DBM/NDBM database. */
  1120. #define DB_AM_DELIMITER 0x00000040 /* Variable length delimiter set. */
  1121. #define DB_AM_DIRTY 0x00000080 /* Support Dirty Reads. */
  1122. #define DB_AM_DISCARD 0x00000100 /* Discard any cached pages. */
  1123. #define DB_AM_DUP 0x00000200 /* DB_DUP. */
  1124. #define DB_AM_DUPSORT 0x00000400 /* DB_DUPSORT. */
  1125. #define DB_AM_ENCRYPT 0x00000800 /* Encryption. */
  1126. #define DB_AM_FIXEDLEN 0x00001000 /* Fixed-length records. */
  1127. #define DB_AM_INMEM 0x00002000 /* In-memory; no sync on close. */
  1128. #define DB_AM_IN_RENAME 0x00004000 /* File is being renamed. */
  1129. #define DB_AM_OPEN_CALLED 0x00008000 /* DB->open called. */
  1130. #define DB_AM_PAD 0x00010000 /* Fixed-length record pad. */
  1131. #define DB_AM_PGDEF 0x00020000 /* Page size was defaulted. */
  1132. #define DB_AM_RDONLY 0x00040000 /* Database is readonly. */
  1133. #define DB_AM_RECNUM 0x00080000 /* DB_RECNUM. */
  1134. #define DB_AM_RECOVER 0x00100000 /* DB opened by recovery routine. */
  1135. #define DB_AM_RENUMBER 0x00200000 /* DB_RENUMBER. */
  1136. #define DB_AM_REVSPLITOFF 0x00400000 /* DB_REVSPLITOFF. */
  1137. #define DB_AM_SECONDARY 0x00800000 /* Database is a secondary index. */
  1138. #define DB_AM_SNAPSHOT 0x01000000 /* DB_SNAPSHOT. */
  1139. #define DB_AM_SUBDB 0x02000000 /* Subdatabases supported. */
  1140. #define DB_AM_SWAP 0x04000000 /* Pages need to be byte-swapped. */
  1141. #define DB_AM_TXN 0x08000000 /* Opened in a transaction. */
  1142. #define DB_AM_VERIFYING 0x10000000 /* DB handle is in the verifier. */
  1143. u_int32_t flags;
  1144. };
  1145. /*
  1146.  * Macros for bulk get.  Note that wherever we use a DBT *, we explicitly
  1147.  * cast it; this allows the same macros to work with C++ Dbt *'s, as Dbt
  1148.  * is a subclass of struct DBT in C++.
  1149.  */
  1150. #define DB_MULTIPLE_INIT(pointer, dbt)
  1151. (pointer = (u_int8_t *)((DBT *)(dbt))->data +
  1152.     ((DBT *)(dbt))->ulen - sizeof(u_int32_t))
  1153. #define DB_MULTIPLE_NEXT(pointer, dbt, retdata, retdlen)
  1154. do {
  1155. if (*((u_int32_t *)(pointer)) == (u_int32_t)-1) {
  1156. retdata = NULL;
  1157. pointer = NULL;
  1158. break;
  1159. }
  1160. retdata = (u_int8_t *)
  1161.     ((DBT *)(dbt))->data + *(u_int32_t *)(pointer);
  1162. (pointer) = (u_int32_t *)(pointer) - 1;
  1163. retdlen = *(u_int32_t *)(pointer);
  1164. (pointer) = (u_int32_t *)(pointer) - 1;
  1165. if (retdlen == 0 &&
  1166.     retdata == (u_int8_t *)((DBT *)(dbt))->data)
  1167. retdata = NULL;
  1168. } while (0)
  1169. #define DB_MULTIPLE_KEY_NEXT(pointer, dbt, retkey, retklen, retdata, retdlen) 
  1170. do {
  1171. if (*((u_int32_t *)(pointer)) == (u_int32_t)-1) {
  1172. retdata = NULL;
  1173. retkey = NULL;
  1174. pointer = NULL;
  1175. break;
  1176. }
  1177. retkey = (u_int8_t *)
  1178.     ((DBT *)(dbt))->data + *(u_int32_t *)(pointer);
  1179. (pointer) = (u_int32_t *)(pointer) - 1;
  1180. retklen = *(u_int32_t *)(pointer);
  1181. (pointer) = (u_int32_t *)(pointer) - 1;
  1182. retdata = (u_int8_t *)
  1183.     ((DBT *)(dbt))->data + *(u_int32_t *)(pointer);
  1184. (pointer) = (u_int32_t *)(pointer) - 1;
  1185. retdlen = *(u_int32_t *)(pointer);
  1186. (pointer) = (u_int32_t *)(pointer) - 1;
  1187. } while (0)
  1188. #define DB_MULTIPLE_RECNO_NEXT(pointer, dbt, recno, retdata, retdlen)   
  1189. do {
  1190. if (*((u_int32_t *)(pointer)) == (u_int32_t)0) {
  1191. recno = 0;
  1192. retdata = NULL;
  1193. pointer = NULL;
  1194. break;
  1195. }
  1196. recno = *(u_int32_t *)(pointer);
  1197. (pointer) = (u_int32_t *)(pointer) - 1;
  1198. retdata = (u_int8_t *)
  1199.     ((DBT *)(dbt))->data + *(u_int32_t *)(pointer);
  1200. (pointer) = (u_int32_t *)(pointer) - 1;
  1201. retdlen = *(u_int32_t *)(pointer);
  1202. (pointer) = (u_int32_t *)(pointer) - 1;
  1203. } while (0)
  1204. /*******************************************************
  1205.  * Access method cursors.
  1206.  *******************************************************/
  1207. struct __dbc {
  1208. DB *dbp; /* Related DB access method. */
  1209. DB_TXN  *txn; /* Associated transaction. */
  1210. /*
  1211.  * Active/free cursor queues.
  1212.  *
  1213.  * !!!
  1214.  * Explicit representations of structures from queue.h.
  1215.  * TAILQ_ENTRY(__dbc) links;
  1216.  */
  1217. struct {
  1218. DBC *tqe_next;
  1219. DBC **tqe_prev;
  1220. } links;
  1221. /*
  1222.  * The DBT *'s below are used by the cursor routines to return
  1223.  * data to the user when DBT flags indicate that DB should manage
  1224.  * the returned memory.  They point at a DBT containing the buffer
  1225.  * and length that will be used, and "belonging" to the handle that
  1226.  * should "own" this memory.  This may be a "my_*" field of this
  1227.  * cursor--the default--or it may be the corresponding field of
  1228.  * another cursor, a DB handle, a join cursor, etc.  In general, it
  1229.  * will be whatever handle the user originally used for the current
  1230.  * DB interface call.
  1231.  */
  1232. DBT  *rskey; /* Returned secondary key. */
  1233. DBT  *rkey; /* Returned [primary] key. */
  1234. DBT  *rdata; /* Returned data. */
  1235. DBT   my_rskey; /* Space for returned secondary key. */
  1236. DBT   my_rkey; /* Space for returned [primary] key. */
  1237. DBT   my_rdata; /* Space for returned data. */
  1238. u_int32_t lid; /* Default process' locker id. */
  1239. u_int32_t locker; /* Locker for this operation. */
  1240. DBT   lock_dbt; /* DBT referencing lock. */
  1241. DB_LOCK_ILOCK lock; /* Object to be locked. */
  1242. DB_LOCK   mylock; /* Lock held on this cursor. */
  1243. long   cl_id; /* Remote client id. */
  1244. DBTYPE   dbtype; /* Cursor type. */
  1245. DBC_INTERNAL *internal; /* Access method private. */
  1246. int (*c_close) __P((DBC *)); /* Methods: public. */
  1247. int (*c_count) __P((DBC *, db_recno_t *, u_int32_t));
  1248. int (*c_del) __P((DBC *, u_int32_t));
  1249. int (*c_dup) __P((DBC *, DBC **, u_int32_t));
  1250. int (*c_get) __P((DBC *, DBT *, DBT *, u_int32_t));
  1251. int (*c_pget) __P((DBC *, DBT *, DBT *, DBT *, u_int32_t));
  1252. int (*c_put) __P((DBC *, DBT *, DBT *, u_int32_t));
  1253. /* Methods: private. */
  1254. int (*c_am_bulk) __P((DBC *, DBT *, u_int32_t));
  1255. int (*c_am_close) __P((DBC *, db_pgno_t, int *));
  1256. int (*c_am_del) __P((DBC *));
  1257. int (*c_am_destroy) __P((DBC *));
  1258. int (*c_am_get) __P((DBC *, DBT *, DBT *, u_int32_t, db_pgno_t *));
  1259. int (*c_am_put) __P((DBC *, DBT *, DBT *, u_int32_t, db_pgno_t *));
  1260. int (*c_am_writelock) __P((DBC *));
  1261. /* Private: for secondary indices. */
  1262. int (*c_real_get) __P((DBC *, DBT *, DBT *, u_int32_t));
  1263. #define DBC_ACTIVE  0x0001 /* Cursor in use. */
  1264. #define DBC_COMPENSATE  0x0002 /* Cursor compensating, don't lock. */
  1265. #define DBC_DIRTY_READ  0x0004 /* Cursor supports dirty reads. */
  1266. #define DBC_OPD  0x0008 /* Cursor references off-page dups. */
  1267. #define DBC_RECOVER  0x0010 /* Recovery cursor; don't log/lock. */
  1268. #define DBC_RMW  0x0020 /* Acquire write flag in read op. */
  1269. #define DBC_TRANSIENT  0x0040 /* Cursor is transient. */
  1270. #define DBC_WRITECURSOR  0x0080 /* Cursor may be used to write (CDB). */
  1271. #define DBC_WRITEDUP  0x0100 /* idup'ed DBC_WRITECURSOR (CDB). */
  1272. #define DBC_WRITER  0x0200 /* Cursor immediately writing (CDB). */
  1273. #define DBC_MULTIPLE  0x0400 /* Return Multiple data. */
  1274. #define DBC_MULTIPLE_KEY 0x0800 /* Return Multiple keys and data. */
  1275. #define DBC_OWN_LID  0x1000 /* Free lock id on destroy. */
  1276. u_int32_t flags;
  1277. };
  1278. /* Key range statistics structure */
  1279. struct __key_range {
  1280. double less;
  1281. double equal;
  1282. double greater;
  1283. };
  1284. /* Btree/Recno statistics structure. */
  1285. struct __db_bt_stat {
  1286. u_int32_t bt_magic; /* Magic number. */
  1287. u_int32_t bt_version; /* Version number. */
  1288. u_int32_t bt_metaflags; /* Metadata flags. */
  1289. u_int32_t bt_nkeys; /* Number of unique keys. */
  1290. u_int32_t bt_ndata; /* Number of data items. */
  1291. u_int32_t bt_pagesize; /* Page size. */
  1292. u_int32_t bt_maxkey; /* Maxkey value. */
  1293. u_int32_t bt_minkey; /* Minkey value. */
  1294. u_int32_t bt_re_len; /* Fixed-length record length. */
  1295. u_int32_t bt_re_pad; /* Fixed-length record pad. */
  1296. u_int32_t bt_levels; /* Tree levels. */
  1297. u_int32_t bt_int_pg; /* Internal pages. */
  1298. u_int32_t bt_leaf_pg; /* Leaf pages. */
  1299. u_int32_t bt_dup_pg; /* Duplicate pages. */
  1300. u_int32_t bt_over_pg; /* Overflow pages. */
  1301. u_int32_t bt_free; /* Pages on the free list. */
  1302. u_int32_t bt_int_pgfree; /* Bytes free in internal pages. */
  1303. u_int32_t bt_leaf_pgfree; /* Bytes free in leaf pages. */
  1304. u_int32_t bt_dup_pgfree; /* Bytes free in duplicate pages. */
  1305. u_int32_t bt_over_pgfree; /* Bytes free in overflow pages. */
  1306. };
  1307. /* Hash statistics structure. */
  1308. struct __db_h_stat {
  1309. u_int32_t hash_magic; /* Magic number. */
  1310. u_int32_t hash_version; /* Version number. */
  1311. u_int32_t hash_metaflags; /* Metadata flags. */
  1312. u_int32_t hash_nkeys; /* Number of unique keys. */
  1313. u_int32_t hash_ndata; /* Number of data items. */
  1314. u_int32_t hash_pagesize; /* Page size. */
  1315. u_int32_t hash_ffactor; /* Fill factor specified at create. */
  1316. u_int32_t hash_buckets; /* Number of hash buckets. */
  1317. u_int32_t hash_free; /* Pages on the free list. */
  1318. u_int32_t hash_bfree; /* Bytes free on bucket pages. */
  1319. u_int32_t hash_bigpages; /* Number of big key/data pages. */
  1320. u_int32_t hash_big_bfree; /* Bytes free on big item pages. */
  1321. u_int32_t hash_overflows; /* Number of overflow pages. */
  1322. u_int32_t hash_ovfl_free; /* Bytes free on ovfl pages. */
  1323. u_int32_t hash_dup; /* Number of dup pages. */
  1324. u_int32_t hash_dup_free; /* Bytes free on duplicate pages. */
  1325. };
  1326. /* Queue statistics structure. */
  1327. struct __db_qam_stat {
  1328. u_int32_t qs_magic; /* Magic number. */
  1329. u_int32_t qs_version; /* Version number. */
  1330. u_int32_t qs_metaflags; /* Metadata flags. */
  1331. u_int32_t qs_nkeys; /* Number of unique keys. */
  1332. u_int32_t qs_ndata; /* Number of data items. */
  1333. u_int32_t qs_pagesize; /* Page size. */
  1334. u_int32_t qs_extentsize; /* Pages per extent. */
  1335. u_int32_t qs_pages; /* Data pages. */
  1336. u_int32_t qs_re_len; /* Fixed-length record length. */
  1337. u_int32_t qs_re_pad; /* Fixed-length record pad. */
  1338. u_int32_t qs_pgfree; /* Bytes free in data pages. */
  1339. u_int32_t qs_first_recno; /* First not deleted record. */
  1340. u_int32_t qs_cur_recno; /* Next available record number. */
  1341. };
  1342. /*******************************************************
  1343.  * Environment.
  1344.  *******************************************************/
  1345. #define DB_REGION_MAGIC 0x120897 /* Environment magic number. */
  1346. typedef enum {
  1347. DB_NOTICE_LOGFILE_CHANGED
  1348. } db_notices;
  1349. /* Database Environment handle. */
  1350. struct __db_env {
  1351. /*******************************************************
  1352.  * Public: owned by the application.
  1353.  *******************************************************/
  1354. FILE *db_errfile; /* Error message file stream. */
  1355. const char *db_errpfx; /* Error message prefix. */
  1356. /* Callbacks. */
  1357. void (*db_errcall) __P((const char *, char *));
  1358. void (*db_feedback) __P((DB_ENV *, int, int));
  1359. void (*db_paniccall) __P((DB_ENV *, int));
  1360. void (*db_noticecall) __P((DB_ENV *, db_notices));
  1361. /* App-specified alloc functions. */
  1362. void *(*db_malloc) __P((size_t));
  1363. void *(*db_realloc) __P((void *, size_t));
  1364. void (*db_free) __P((void *));
  1365. /*
  1366.  * Currently, the verbose list is a bit field with room for 32
  1367.  * entries.  There's no reason that it needs to be limited, if
  1368.  * there are ever more than 32 entries, convert to a bit array.
  1369.  */
  1370. #define DB_VERB_CHKPOINT 0x0001 /* List checkpoints. */
  1371. #define DB_VERB_DEADLOCK 0x0002 /* Deadlock detection information. */
  1372. #define DB_VERB_RECOVERY 0x0004 /* Recovery information. */
  1373. #define DB_VERB_REPLICATION 0x0008 /* Replication information. */
  1374. #define DB_VERB_WAITSFOR 0x0010 /* Dump waits-for table. */
  1375. u_int32_t  verbose; /* Verbose output. */
  1376. void *app_private; /* Application-private handle. */
  1377. int (*app_dispatch) /* User-specified recovery dispatch. */
  1378.     __P((DB_ENV *, DBT *, DB_LSN *, db_recops));
  1379. /* Locking. */
  1380. u_int8_t *lk_conflicts; /* Two dimensional conflict matrix. */
  1381. u_int32_t  lk_modes; /* Number of lock modes in table. */
  1382. u_int32_t  lk_max; /* Maximum number of locks. */
  1383. u_int32_t  lk_max_lockers;/* Maximum number of lockers. */
  1384. u_int32_t  lk_max_objects;/* Maximum number of locked objects. */
  1385. u_int32_t  lk_detect; /* Deadlock detect on all conflicts. */
  1386. db_timeout_t  lk_timeout; /* Lock timeout period. */
  1387. /* Logging. */
  1388. u_int32_t  lg_bsize; /* Buffer size. */
  1389. u_int32_t  lg_size; /* Log file size. */
  1390. u_int32_t  lg_regionmax; /* Region size. */
  1391. /* Memory pool. */
  1392. u_int32_t  mp_gbytes; /* Cachesize: GB. */
  1393. u_int32_t  mp_bytes; /* Cachesize: Bytes. */
  1394. size_t  mp_size; /* DEPRECATED: Cachesize: bytes. */
  1395. int  mp_ncache; /* Number of cache regions. */
  1396. size_t  mp_mmapsize; /* Maximum file size for mmap. */
  1397. int  rep_eid; /* environment id. */
  1398. /* Transactions. */
  1399. u_int32_t  tx_max; /* Maximum number of transactions. */
  1400. time_t  tx_timestamp; /* Recover to specific timestamp. */
  1401. db_timeout_t  tx_timeout; /* Timeout for transactions. */
  1402. /*******************************************************
  1403.  * Private: owned by DB.
  1404.  *******************************************************/
  1405. int  panic_errval; /* Panic causing errno. */
  1406. /* User files, paths. */
  1407. char *db_home; /* Database home. */
  1408. char *db_log_dir; /* Database log file directory. */
  1409. char *db_tmp_dir; /* Database tmp file directory. */
  1410. char        **db_data_dir; /* Database data file directories. */
  1411. int  data_cnt; /* Database data file slots. */
  1412. int  data_next; /* Next Database data file slot. */
  1413. int  db_mode; /* Default open permissions. */
  1414. void *reginfo; /* REGINFO structure reference. */
  1415. DB_FH *lockfhp; /* fcntl(2) locking file handle. */
  1416. int       (**recover_dtab) /* Dispatch table for recover funcs. */
  1417.     __P((DB_ENV *, DBT *, DB_LSN *, db_recops, void *));
  1418. size_t  recover_dtab_size;
  1419. /* Slots in the dispatch table. */
  1420. void *cl_handle; /* RPC: remote client handle. */
  1421. long  cl_id; /* RPC: remote client env id. */
  1422. int  db_ref; /* DB reference count. */
  1423. long  shm_key; /* shmget(2) key. */
  1424. u_int32_t  tas_spins; /* test-and-set spins. */
  1425. /*
  1426.  * List of open DB handles for this DB_ENV, used for cursor
  1427.  * adjustment.  Must be protected for multi-threaded support.
  1428.  *
  1429.  * !!!
  1430.  * As this structure is allocated in per-process memory, the
  1431.  * mutex may need to be stored elsewhere on architectures unable
  1432.  * to support mutexes in heap memory, e.g. HP/UX 9.
  1433.  *
  1434.  * !!!
  1435.  * Explicit representation of structure in queue.h.
  1436.  * LIST_HEAD(dblist, __db);
  1437.  */
  1438. DB_MUTEX *dblist_mutexp; /* Mutex. */
  1439. struct {
  1440. struct __db *lh_first;
  1441. } dblist;
  1442. /*
  1443.  * XA support.
  1444.  *
  1445.  * !!!
  1446.  * Explicit representations of structures from queue.h.
  1447.  * TAILQ_ENTRY(__db_env) links;
  1448.  */
  1449. struct {
  1450. struct __db_env *tqe_next;
  1451. struct __db_env **tqe_prev;
  1452. } links;
  1453. int  xa_rmid; /* XA Resource Manager ID. */
  1454. DB_TXN *xa_txn; /* XA Current transaction. */
  1455. /* API-private structure. */
  1456. void *api1_internal; /* C++, Perl API private */
  1457. void *api2_internal; /* Java API private */
  1458. char *passwd; /* Cryptography support. */
  1459. size_t  passwd_len;
  1460. void *crypto_handle; /* Primary handle. */
  1461. DB_MUTEX *mt_mutexp; /* Mersenne Twister mutex. */
  1462. int  mti; /* Mersenne Twister index. */
  1463. u_long *mt; /* Mersenne Twister state vector. */
  1464. /* DB_ENV Methods. */
  1465. int  (*close) __P((DB_ENV *, u_int32_t));
  1466. int  (*dbremove) __P((DB_ENV *,
  1467.     DB_TXN *, const char *, const char *, u_int32_t));
  1468. int  (*dbrename) __P((DB_ENV *, DB_TXN *,
  1469.     const char *, const char *, const char *, u_int32_t));
  1470. void (*err) __P((const DB_ENV *, int, const char *, ...));
  1471. void (*errx) __P((const DB_ENV *, const char *, ...));
  1472. int  (*open) __P((DB_ENV *, const char *, u_int32_t, int));
  1473. int  (*remove) __P((DB_ENV *, const char *, u_int32_t));
  1474. int  (*set_data_dir) __P((DB_ENV *, const char *));
  1475. int  (*set_alloc) __P((DB_ENV *, void *(*)(size_t),
  1476. void *(*)(void *, size_t), void (*)(void *)));
  1477. int  (*set_app_dispatch) __P((DB_ENV *,
  1478. int (*)(DB_ENV *, DBT *, DB_LSN *, db_recops)));
  1479. int  (*set_encrypt) __P((DB_ENV *, const char *, u_int32_t));
  1480. void (*set_errcall) __P((DB_ENV *, void (*)(const char *, char *)));
  1481. void (*set_errfile) __P((DB_ENV *, FILE *));
  1482. void (*set_errpfx) __P((DB_ENV *, const char *));
  1483. int  (*set_feedback) __P((DB_ENV *, void (*)(DB_ENV *, int, int)));
  1484. int  (*set_flags) __P((DB_ENV *, u_int32_t, int));
  1485. void (*set_noticecall) __P((DB_ENV *, void (*)(DB_ENV *, db_notices)));
  1486. int  (*set_paniccall) __P((DB_ENV *, void (*)(DB_ENV *, int)));
  1487. int  (*set_rpc_server) __P((DB_ENV *,
  1488. void *, const char *, long, long, u_int32_t));
  1489. int  (*set_shm_key) __P((DB_ENV *, long));
  1490. int  (*set_tas_spins) __P((DB_ENV *, u_int32_t));
  1491. int  (*set_tmp_dir) __P((DB_ENV *, const char *));
  1492. int  (*set_verbose) __P((DB_ENV *, u_int32_t, int));
  1493. void *lg_handle; /* Log handle and methods. */
  1494. int  (*set_lg_bsize) __P((DB_ENV *, u_int32_t));
  1495. int  (*set_lg_dir) __P((DB_ENV *, const char *));
  1496. int  (*set_lg_max) __P((DB_ENV *, u_int32_t));
  1497. int  (*set_lg_regionmax) __P((DB_ENV *, u_int32_t));
  1498. int  (*log_archive) __P((DB_ENV *, char **[], u_int32_t));
  1499. int  (*log_cursor) __P((DB_ENV *, DB_LOGC **, u_int32_t));
  1500. int  (*log_file) __P((DB_ENV *, const DB_LSN *, char *, size_t));
  1501. int  (*log_flush) __P((DB_ENV *, const DB_LSN *));
  1502. int  (*log_put) __P((DB_ENV *, DB_LSN *, const DBT *, u_int32_t));
  1503. int  (*log_stat) __P((DB_ENV *, DB_LOG_STAT **, u_int32_t));
  1504. void *lk_handle; /* Lock handle and methods. */
  1505. int  (*set_lk_conflicts) __P((DB_ENV *, u_int8_t *, int));
  1506. int  (*set_lk_detect) __P((DB_ENV *, u_int32_t));
  1507. int  (*set_lk_max) __P((DB_ENV *, u_int32_t));
  1508. int  (*set_lk_max_locks) __P((DB_ENV *, u_int32_t));
  1509. int  (*set_lk_max_lockers) __P((DB_ENV *, u_int32_t));
  1510. int  (*set_lk_max_objects) __P((DB_ENV *, u_int32_t));
  1511. int  (*lock_detect) __P((DB_ENV *, u_int32_t, u_int32_t, int *));
  1512. int  (*lock_dump_region) __P((DB_ENV *, char *, FILE *));
  1513. int  (*lock_get) __P((DB_ENV *,
  1514. u_int32_t, u_int32_t, const DBT *, db_lockmode_t, DB_LOCK *));
  1515. int  (*lock_put) __P((DB_ENV *, DB_LOCK *));
  1516. int  (*lock_id) __P((DB_ENV *, u_int32_t *));
  1517. int  (*lock_id_free) __P((DB_ENV *, u_int32_t));
  1518. int  (*lock_id_set) __P((DB_ENV *, u_int32_t, u_int32_t));
  1519. int  (*lock_stat) __P((DB_ENV *, DB_LOCK_STAT **, u_int32_t));
  1520. int  (*lock_vec) __P((DB_ENV *,
  1521. u_int32_t, u_int32_t, DB_LOCKREQ *, int, DB_LOCKREQ **));
  1522. int  (*lock_downgrade) __P((DB_ENV *,
  1523. DB_LOCK *, db_lockmode_t, u_int32_t));
  1524. void *mp_handle; /* Mpool handle and methods. */
  1525. int  (*set_mp_mmapsize) __P((DB_ENV *, size_t));
  1526. int  (*set_cachesize) __P((DB_ENV *, u_int32_t, u_int32_t, int));
  1527. int  (*memp_dump_region) __P((DB_ENV *, char *, FILE *));
  1528. int  (*memp_fcreate) __P((DB_ENV *, DB_MPOOLFILE **, u_int32_t));
  1529. int  (*memp_nameop) __P((DB_ENV *,
  1530. u_int8_t *, const char *, const char *, const char *));
  1531. int  (*memp_register) __P((DB_ENV *, int,
  1532. int (*)(DB_ENV *, db_pgno_t, void *, DBT *),
  1533. int (*)(DB_ENV *, db_pgno_t, void *, DBT *)));
  1534. int  (*memp_stat) __P((DB_ENV *,
  1535. DB_MPOOL_STAT **, DB_MPOOL_FSTAT ***, u_int32_t));
  1536. int  (*memp_sync) __P((DB_ENV *, DB_LSN *));
  1537. int  (*memp_trickle) __P((DB_ENV *, int, int *));
  1538. void *rep_handle; /* Replication handle and methods. */
  1539. int  (*rep_elect) __P((DB_ENV *, int, int, u_int32_t, int *));
  1540. int  (*rep_flush) __P((DB_ENV *));
  1541. int  (*rep_process_message) __P((DB_ENV *, DBT *, DBT *, int *));
  1542. int  (*rep_start) __P((DB_ENV *, DBT *, u_int32_t));
  1543. int  (*rep_stat) __P((DB_ENV *, DB_REP_STAT **, u_int32_t));
  1544. int  (*set_rep_election) __P((DB_ENV *,
  1545. u_int32_t, u_int32_t, u_int32_t, u_int32_t));
  1546. int  (*set_rep_limit) __P((DB_ENV *, u_int32_t, u_int32_t));
  1547. int  (*set_rep_request) __P((DB_ENV *, u_int32_t, u_int32_t));
  1548. int  (*set_rep_timeout) __P((DB_ENV *, u_int32_t, u_int32_t));
  1549. int  (*set_rep_transport) __P((DB_ENV *, int,
  1550. int (*) (DB_ENV *, const DBT *, const DBT *, int, u_int32_t)));
  1551. void *tx_handle; /* Txn handle and methods. */
  1552. int  (*set_tx_max) __P((DB_ENV *, u_int32_t));
  1553. int  (*set_tx_timestamp) __P((DB_ENV *, time_t *));
  1554. int  (*txn_begin) __P((DB_ENV *, DB_TXN *, DB_TXN **, u_int32_t));
  1555. int  (*txn_checkpoint) __P((DB_ENV *, u_int32_t, u_int32_t, u_int32_t));
  1556. int  (*txn_id_set) __P((DB_ENV *, u_int32_t, u_int32_t));
  1557. int  (*txn_recover) __P((DB_ENV *,
  1558. DB_PREPLIST *, long, long *, u_int32_t));
  1559. int  (*txn_stat) __P((DB_ENV *, DB_TXN_STAT **, u_int32_t));
  1560. int  (*set_timeout) __P((DB_ENV *, db_timeout_t, u_int32_t));
  1561. #define DB_TEST_ELECTINIT  1 /* after __rep_elect_init */
  1562. #define DB_TEST_ELECTSEND  2 /* after REP_ELECT msgnit */
  1563. #define DB_TEST_ELECTVOTE1  3 /* after __rep_send_vote 1 */
  1564. #define DB_TEST_ELECTVOTE2  4 /* after __rep_wait */
  1565. #define DB_TEST_ELECTWAIT1  5 /* after REP_VOTE2 */
  1566. #define DB_TEST_ELECTWAIT2  6 /* after __rep_wait 2 */
  1567. #define DB_TEST_PREDESTROY  7 /* before destroy op */
  1568. #define DB_TEST_PREOPEN  8 /* before __os_open */
  1569. #define DB_TEST_POSTDESTROY  9 /* after destroy op */
  1570. #define DB_TEST_POSTLOG  10 /* after logging all pages */
  1571. #define DB_TEST_POSTLOGMETA  11 /* after logging meta in btree */
  1572. #define DB_TEST_POSTOPEN  12 /* after __os_open */
  1573. #define DB_TEST_POSTSYNC  13 /* after syncing the log */
  1574. #define DB_TEST_SUBDB_LOCKS  14 /* subdb locking tests */
  1575. int  test_abort; /* Abort value for testing. */
  1576. int  test_copy; /* Copy value for testing. */
  1577. #define DB_ENV_AUTO_COMMIT 0x0000001 /* DB_AUTO_COMMIT. */
  1578. #define DB_ENV_CDB 0x0000002 /* DB_INIT_CDB. */
  1579. #define DB_ENV_CDB_ALLDB 0x0000004 /* CDB environment wide locking. */
  1580. #define DB_ENV_CREATE 0x0000008 /* DB_CREATE set. */
  1581. #define DB_ENV_DBLOCAL 0x0000010 /* DB_ENV allocated for private DB. */
  1582. #define DB_ENV_DIRECT_DB 0x0000020 /* DB_DIRECT_DB set. */
  1583. #define DB_ENV_DIRECT_LOG 0x0000040 /* DB_DIRECT_LOG set. */
  1584. #define DB_ENV_FATAL 0x0000080 /* Doing fatal recovery in env. */
  1585. #define DB_ENV_LOCKDOWN 0x0000100 /* DB_LOCKDOWN set. */
  1586. #define DB_ENV_NOLOCKING 0x0000200 /* DB_NOLOCKING set. */
  1587. #define DB_ENV_NOMMAP 0x0000400 /* DB_NOMMAP set. */
  1588. #define DB_ENV_NOPANIC 0x0000800 /* Okay if panic set. */
  1589. #define DB_ENV_OPEN_CALLED 0x0001000 /* DB_ENV->open called. */
  1590. #define DB_ENV_OVERWRITE 0x0002000 /* DB_OVERWRITE set. */
  1591. #define DB_ENV_PRIVATE 0x0004000 /* DB_PRIVATE set. */
  1592. #define DB_ENV_REGION_INIT 0x0008000 /* DB_REGION_INIT set. */
  1593. #define DB_ENV_REP_CLIENT 0x0010000 /* Replication client. */
  1594. #define DB_ENV_REP_LOGSONLY 0x0020000 /* Log files only replication site. */
  1595. #define DB_ENV_REP_MASTER 0x0040000 /* Replication master. */
  1596. #define DB_ENV_RPCCLIENT 0x0080000 /* DB_CLIENT set. */
  1597. #define DB_ENV_RPCCLIENT_GIVEN 0x0100000 /* User-supplied RPC client struct */
  1598. #define DB_ENV_SYSTEM_MEM 0x0200000 /* DB_SYSTEM_MEM set. */
  1599. #define DB_ENV_THREAD 0x0400000 /* DB_THREAD set. */
  1600. #define DB_ENV_TXN_NOSYNC 0x0800000 /* DB_TXN_NOSYNC set. */
  1601. #define DB_ENV_TXN_WRITE_NOSYNC 0x1000000 /* DB_TXN_WRITE_NOSYNC set. */
  1602. #define DB_ENV_YIELDCPU 0x2000000 /* DB_YIELDCPU set. */
  1603. u_int32_t flags;
  1604. };
  1605. #ifndef DB_DBM_HSEARCH
  1606. #define DB_DBM_HSEARCH 0 /* No historic interfaces by default. */
  1607. #endif
  1608. #if DB_DBM_HSEARCH != 0
  1609. /*******************************************************
  1610.  * Dbm/Ndbm historic interfaces.
  1611.  *******************************************************/
  1612. typedef struct __db DBM;
  1613. #define DBM_INSERT 0 /* Flags to dbm_store(). */
  1614. #define DBM_REPLACE 1
  1615. /*
  1616.  * The DB support for ndbm(3) always appends this suffix to the
  1617.  * file name to avoid overwriting the user's original database.
  1618.  */
  1619. #define DBM_SUFFIX ".db"
  1620. #if defined(_XPG4_2)
  1621. typedef struct {
  1622. char *dptr;
  1623. size_t dsize;
  1624. } datum;
  1625. #else
  1626. typedef struct {
  1627. char *dptr;
  1628. int dsize;
  1629. } datum;
  1630. #endif
  1631. /*
  1632.  * Translate NDBM calls into DB calls so that DB doesn't step on the
  1633.  * application's name space.
  1634.  */
  1635. #define dbm_clearerr(a) __db_ndbm_clearerr(a)
  1636. #define dbm_close(a) __db_ndbm_close(a)
  1637. #define dbm_delete(a, b) __db_ndbm_delete(a, b)
  1638. #define dbm_dirfno(a) __db_ndbm_dirfno(a)
  1639. #define dbm_error(a) __db_ndbm_error(a)
  1640. #define dbm_fetch(a, b) __db_ndbm_fetch(a, b)
  1641. #define dbm_firstkey(a) __db_ndbm_firstkey(a)
  1642. #define dbm_nextkey(a) __db_ndbm_nextkey(a)
  1643. #define dbm_open(a, b, c) __db_ndbm_open(a, b, c)
  1644. #define dbm_pagfno(a) __db_ndbm_pagfno(a)
  1645. #define dbm_rdonly(a) __db_ndbm_rdonly(a)
  1646. #define dbm_store(a, b, c, d) 
  1647. __db_ndbm_store(a, b, c, d)
  1648. /*
  1649.  * Translate DBM calls into DB calls so that DB doesn't step on the
  1650.  * application's name space.
  1651.  *
  1652.  * The global variables dbrdonly, dirf and pagf were not retained when 4BSD
  1653.  * replaced the dbm interface with ndbm, and are not supported here.
  1654.  */
  1655. #define dbminit(a) __db_dbm_init(a)
  1656. #define dbmclose __db_dbm_close
  1657. #if !defined(__cplusplus)
  1658. #define delete(a) __db_dbm_delete(a)
  1659. #endif
  1660. #define fetch(a) __db_dbm_fetch(a)
  1661. #define firstkey __db_dbm_firstkey
  1662. #define nextkey(a) __db_dbm_nextkey(a)
  1663. #define store(a, b) __db_dbm_store(a, b)
  1664. /*******************************************************
  1665.  * Hsearch historic interface.
  1666.  *******************************************************/
  1667. typedef enum {
  1668. FIND, ENTER
  1669. } ACTION;
  1670. typedef struct entry {
  1671. char *key;
  1672. char *data;
  1673. } ENTRY;
  1674. #define hcreate(a) __db_hcreate(a)
  1675. #define hdestroy __db_hdestroy
  1676. #define hsearch(a, b) __db_hsearch(a, b)
  1677. #endif /* DB_DBM_HSEARCH */
  1678. #if defined(__cplusplus)
  1679. }
  1680. #endif
  1681. #endif /* !_DB_H_ */
  1682. /* DO NOT EDIT: automatically built by dist/s_rpc. */
  1683. #define DB_RPC_SERVERPROG 351457
  1684. #define DB_RPC_SERVERVERS 4001
  1685. /* DO NOT EDIT: automatically built by dist/s_include. */
  1686. #ifndef _DB_EXT_PROT_IN_
  1687. #define _DB_EXT_PROT_IN_
  1688. #if defined(__cplusplus)
  1689. extern "C" {
  1690. #endif
  1691. int db_create __P((DB **, DB_ENV *, u_int32_t));
  1692. char *db_strerror __P((int));
  1693. int db_env_create __P((DB_ENV **, u_int32_t));
  1694. char *db_version __P((int *, int *, int *));
  1695. int log_compare __P((const DB_LSN *, const DB_LSN *));
  1696. int db_env_set_func_close __P((int (*)(int)));
  1697. int db_env_set_func_dirfree __P((void (*)(char **, int)));
  1698. int db_env_set_func_dirlist __P((int (*)(const char *, char ***, int *)));
  1699. int db_env_set_func_exists __P((int (*)(const char *, int *)));
  1700. int db_env_set_func_free __P((void (*)(void *)));
  1701. int db_env_set_func_fsync __P((int (*)(int)));
  1702. int db_env_set_func_ioinfo __P((int (*)(const char *, int, u_int32_t *, u_int32_t *, u_int32_t *)));
  1703. int db_env_set_func_malloc __P((void *(*)(size_t)));
  1704. int db_env_set_func_map __P((int (*)(char *, size_t, int, int, void **)));
  1705. int db_env_set_func_open __P((int (*)(const char *, int, ...)));
  1706. int db_env_set_func_read __P((ssize_t (*)(int, void *, size_t)));
  1707. int db_env_set_func_realloc __P((void *(*)(void *, size_t)));
  1708. int db_env_set_func_rename __P((int (*)(const char *, const char *)));
  1709. int db_env_set_func_seek __P((int (*)(int, size_t, db_pgno_t, u_int32_t, int, int)));
  1710. int db_env_set_func_sleep __P((int (*)(u_long, u_long)));
  1711. int db_env_set_func_unlink __P((int (*)(const char *)));
  1712. int db_env_set_func_unmap __P((int (*)(void *, size_t)));
  1713. int db_env_set_func_write __P((ssize_t (*)(int, const void *, size_t)));
  1714. int db_env_set_func_yield __P((int (*)(void)));
  1715. int txn_abort __P((DB_TXN *));
  1716. int txn_begin __P((DB_ENV *, DB_TXN *, DB_TXN **, u_int32_t));
  1717. int txn_commit __P((DB_TXN *, u_int32_t));
  1718. #if DB_DBM_HSEARCH != 0
  1719. int  __db_ndbm_clearerr __P((DBM *));
  1720. void  __db_ndbm_close __P((DBM *));
  1721. int  __db_ndbm_delete __P((DBM *, datum));
  1722. int  __db_ndbm_dirfno __P((DBM *));
  1723. int  __db_ndbm_error __P((DBM *));
  1724. datum __db_ndbm_fetch __P((DBM *, datum));
  1725. datum __db_ndbm_firstkey __P((DBM *));
  1726. datum __db_ndbm_nextkey __P((DBM *));
  1727. DBM *__db_ndbm_open __P((const char *, int, int));
  1728. int  __db_ndbm_pagfno __P((DBM *));
  1729. int  __db_ndbm_rdonly __P((DBM *));
  1730. int  __db_ndbm_store __P((DBM *, datum, datum, int));
  1731. int  __db_dbm_close __P((void));
  1732. int  __db_dbm_dbrdonly __P((void));
  1733. int  __db_dbm_delete __P((datum));
  1734. int  __db_dbm_dirf __P((void));
  1735. datum __db_dbm_fetch __P((datum));
  1736. datum __db_dbm_firstkey __P((void));
  1737. int  __db_dbm_init __P((char *));
  1738. datum __db_dbm_nextkey __P((datum));
  1739. int  __db_dbm_pagf __P((void));
  1740. int  __db_dbm_store __P((datum, datum));
  1741. #endif
  1742. #if DB_DBM_HSEARCH != 0
  1743. int __db_hcreate __P((size_t));
  1744. ENTRY *__db_hsearch __P((ENTRY, ACTION));
  1745. void __db_hdestroy __P((void));
  1746. #endif
  1747. #if defined(__cplusplus)
  1748. }
  1749. #endif
  1750. #endif /* !_DB_EXT_PROT_IN_ */