2001-10-05 06:29:34 +08:00
|
|
|
/* back-bdb.h - bdb back-end header file */
|
2000-09-19 02:51:07 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2002-01-05 05:17:25 +08:00
|
|
|
* Copyright 2000-2002 The OpenLDAP Foundation, All Rights Reserved.
|
2000-09-19 02:51:07 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BACK_BDB_H_
|
|
|
|
#define _BACK_BDB_H_
|
|
|
|
|
|
|
|
#include <portable.h>
|
|
|
|
#include <db.h>
|
|
|
|
|
2000-09-20 02:08:04 +08:00
|
|
|
#include "slap.h"
|
|
|
|
|
2000-09-19 02:51:07 +08:00
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
2001-11-24 11:46:02 +08:00
|
|
|
#define BDB_FILTER_INDICES 1
|
2002-01-14 06:26:29 +08:00
|
|
|
#define BDB_IDL_MULTI 1
|
2001-12-10 20:25:24 +08:00
|
|
|
/* #define BDB_HIER 1 */
|
2000-09-22 09:40:57 +08:00
|
|
|
|
2000-09-20 15:21:09 +08:00
|
|
|
#define DN_BASE_PREFIX SLAP_INDEX_EQUALITY_PREFIX
|
|
|
|
#define DN_ONE_PREFIX '%'
|
|
|
|
#define DN_SUBTREE_PREFIX '@'
|
|
|
|
|
2000-09-20 02:08:04 +08:00
|
|
|
#define DBTzero(t) (memset((t), 0, sizeof(DBT)))
|
|
|
|
#define DBT2bv(t,bv) ((bv)->bv_val = (t)->data, \
|
|
|
|
(bv)->bv_len = (t)->size)
|
|
|
|
#define bv2DBT(bv,t) ((t)->data = (bv)->bv_val, \
|
|
|
|
(t)->size = (bv)->bv_len )
|
|
|
|
|
2000-09-19 04:03:41 +08:00
|
|
|
#define DEFAULT_MODE 0600
|
2000-09-19 02:51:07 +08:00
|
|
|
|
2000-09-24 14:04:58 +08:00
|
|
|
#define BDB_TXN_RETRIES 16
|
|
|
|
|
2001-12-07 20:38:25 +08:00
|
|
|
#ifdef BDB_HIER
|
|
|
|
#define BDB_DBENV_HOME LDAP_RUNDIR LDAP_DIRSEP "openldap-hdb"
|
|
|
|
#else
|
2000-09-20 10:01:05 +08:00
|
|
|
#define BDB_DBENV_HOME LDAP_RUNDIR LDAP_DIRSEP "openldap-bdb"
|
2001-12-07 20:38:25 +08:00
|
|
|
#endif
|
2000-09-19 02:51:07 +08:00
|
|
|
|
2000-09-26 05:30:15 +08:00
|
|
|
#ifdef BDB_SUBDIRS
|
2000-09-20 10:01:05 +08:00
|
|
|
#define BDB_TMP_SUBDIR LDAP_DIRSEP "tmp"
|
|
|
|
#define BDB_LG_SUBDIR LDAP_DIRSEP "log"
|
|
|
|
#define BDB_DATA_SUBDIR LDAP_DIRSEP "data"
|
2000-09-26 05:30:15 +08:00
|
|
|
#endif
|
2000-09-19 02:51:07 +08:00
|
|
|
|
2000-09-26 07:41:16 +08:00
|
|
|
#define BDB_SUFFIX ".bdb"
|
2001-11-27 18:15:23 +08:00
|
|
|
#define BDB_ID2ENTRY 0
|
2001-12-07 20:38:25 +08:00
|
|
|
#ifdef BDB_HIER
|
|
|
|
#define BDB_ID2PARENT 1
|
|
|
|
#else
|
2001-11-27 18:15:23 +08:00
|
|
|
#define BDB_DN2ID 1
|
2001-12-07 20:38:25 +08:00
|
|
|
#endif
|
2001-11-27 18:15:23 +08:00
|
|
|
#define BDB_NDB 2
|
2001-10-06 01:00:21 +08:00
|
|
|
|
2001-11-27 20:36:52 +08:00
|
|
|
/* The bdb on-disk entry format is pretty space-inefficient. Average
|
|
|
|
* sized user entries are 3-4K each. You need at least two entries to
|
|
|
|
* fit into a single database page, more is better. 64K is BDB's
|
2001-11-29 04:48:06 +08:00
|
|
|
* upper bound. The same issues arise with IDLs in the index databases,
|
|
|
|
* but it's nearly impossible to avoid overflows there.
|
2001-12-07 20:38:25 +08:00
|
|
|
*
|
2001-12-07 09:40:08 +08:00
|
|
|
* When using BDB_IDL_MULTI, the IDL size is no longer an issue. Smaller
|
|
|
|
* pages are better for concurrency.
|
2001-11-27 20:36:52 +08:00
|
|
|
*/
|
2001-12-07 15:07:55 +08:00
|
|
|
#ifndef BDB_ID2ENTRY_PAGESIZE
|
|
|
|
#define BDB_ID2ENTRY_PAGESIZE 16384
|
|
|
|
#endif
|
|
|
|
|
2001-11-29 04:48:06 +08:00
|
|
|
#ifndef BDB_PAGESIZE
|
2001-12-07 09:40:08 +08:00
|
|
|
#ifdef BDB_IDL_MULTI
|
|
|
|
#define BDB_PAGESIZE 4096 /* BDB's original default */
|
|
|
|
#else
|
2001-11-29 04:48:06 +08:00
|
|
|
#define BDB_PAGESIZE 16384
|
2001-11-27 20:36:52 +08:00
|
|
|
#endif
|
2001-12-07 09:40:08 +08:00
|
|
|
#endif
|
2001-11-27 20:36:52 +08:00
|
|
|
|
2001-10-06 01:00:21 +08:00
|
|
|
#define BDB_INDICES 128
|
2000-09-20 02:08:04 +08:00
|
|
|
|
|
|
|
struct bdb_db_info {
|
2001-10-06 01:00:21 +08:00
|
|
|
char *bdi_name;
|
2000-09-20 02:08:04 +08:00
|
|
|
DB *bdi_db;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct bdb_info {
|
|
|
|
DB_ENV *bi_dbenv;
|
|
|
|
|
2000-09-20 10:01:05 +08:00
|
|
|
/* DB_ENV parameters */
|
|
|
|
/* The DB_ENV can be tuned via DB_CONFIG */
|
2000-09-20 02:08:04 +08:00
|
|
|
char *bi_dbenv_home;
|
|
|
|
u_int32_t bi_dbenv_xflags; /* extra flags */
|
|
|
|
int bi_dbenv_mode;
|
|
|
|
|
|
|
|
int bi_ndatabases;
|
2000-09-20 15:21:09 +08:00
|
|
|
struct bdb_db_info **bi_databases;
|
2001-10-06 04:12:16 +08:00
|
|
|
ldap_pvt_thread_mutex_t bi_database_mutex;
|
2001-11-28 11:11:04 +08:00
|
|
|
int bi_db_opflags; /* db-specific flags */
|
2001-10-06 04:12:16 +08:00
|
|
|
|
|
|
|
slap_mask_t bi_defaultmask;
|
|
|
|
Avlnode *bi_attrs;
|
2001-12-07 20:38:25 +08:00
|
|
|
#ifdef BDB_HIER
|
|
|
|
Avlnode *bi_tree;
|
|
|
|
ldap_pvt_thread_rdwr_t bi_tree_rdwr;
|
|
|
|
void *bi_troot;
|
|
|
|
int bi_nrdns;
|
|
|
|
#endif
|
2000-09-28 12:09:13 +08:00
|
|
|
|
2001-11-27 10:35:20 +08:00
|
|
|
int bi_txn;
|
2000-09-28 12:09:13 +08:00
|
|
|
int bi_txn_cp;
|
|
|
|
u_int32_t bi_txn_cp_min;
|
|
|
|
u_int32_t bi_txn_cp_kbyte;
|
2000-09-29 08:18:29 +08:00
|
|
|
|
|
|
|
#ifndef NO_THREADS
|
|
|
|
int bi_lock_detect;
|
|
|
|
int bi_lock_detect_seconds;
|
|
|
|
ldap_pvt_thread_t bi_lock_detect_tid;
|
|
|
|
#endif
|
2001-06-15 15:08:37 +08:00
|
|
|
|
|
|
|
ID bi_lastid;
|
2001-11-27 18:15:23 +08:00
|
|
|
ldap_pvt_thread_mutex_t bi_lastid_mutex;
|
2000-09-19 02:51:07 +08:00
|
|
|
};
|
2001-06-15 15:08:37 +08:00
|
|
|
|
2000-09-22 14:46:32 +08:00
|
|
|
#define bi_id2entry bi_databases[BDB_ID2ENTRY]
|
2001-12-07 20:38:25 +08:00
|
|
|
#ifdef BDB_HIER
|
|
|
|
#define bi_id2parent bi_databases[BDB_ID2PARENT]
|
|
|
|
#else
|
2000-09-20 15:21:09 +08:00
|
|
|
#define bi_dn2id bi_databases[BDB_DN2ID]
|
2001-12-07 20:38:25 +08:00
|
|
|
#endif
|
2000-09-19 02:51:07 +08:00
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
struct bdb_op_info {
|
|
|
|
BackendDB* boi_bdb;
|
|
|
|
DB_TXN* boi_txn;
|
|
|
|
int boi_err;
|
|
|
|
};
|
|
|
|
|
2001-12-07 13:05:00 +08:00
|
|
|
#if DB_VERSION_MAJOR < 4
|
|
|
|
#define TXN_CHECKPOINT(env, k, m, f) txn_checkpoint(env, k, m, f)
|
|
|
|
#define LOCK_DETECT(env, f, t, a) lock_detect(env, f, t, a)
|
|
|
|
#else
|
|
|
|
#define TXN_CHECKPOINT(env, k, m, f) (env)->txn_checkpoint(env, k, m, f)
|
|
|
|
#define LOCK_DETECT(env, f, t, a) (env)->lock_detect(env, f, t, a)
|
|
|
|
#endif
|
|
|
|
|
2000-09-19 02:51:07 +08:00
|
|
|
LDAP_END_DECL
|
|
|
|
|
2000-09-19 05:35:08 +08:00
|
|
|
#include "proto-bdb.h"
|
|
|
|
|
2000-09-19 02:51:07 +08:00
|
|
|
#endif /* _BACK_BDB_H_ */
|