db.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:76k
源码类别:

模拟服务器

开发平台:

C/C++

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