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
|
|
|
|
|
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-24 14:04:58 +08:00
|
|
|
#define BDB_TXN_RETRIES 16
|
|
|
|
|
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
|
|
|
|
2002-01-25 15:19:01 +08:00
|
|
|
#define DEFAULT_CACHE_SIZE 1000
|
|
|
|
|
|
|
|
/* for the in-core cache of entries */
|
|
|
|
typedef struct bdb_cache {
|
|
|
|
int c_maxsize;
|
|
|
|
int c_cursize;
|
|
|
|
Avlnode *c_dntree;
|
|
|
|
Avlnode *c_idtree;
|
|
|
|
Entry *c_lruhead; /* lru - add accessed entries here */
|
|
|
|
Entry *c_lrutail; /* lru - rem lru entries from here */
|
|
|
|
ldap_pvt_thread_mutex_t c_mutex;
|
|
|
|
} Cache;
|
|
|
|
|
|
|
|
#define CACHE_READ_LOCK 0
|
|
|
|
#define CACHE_WRITE_LOCK 1
|
|
|
|
|
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;
|
2002-01-25 15:19:01 +08:00
|
|
|
Cache bi_cache;
|
2001-10-06 04:12:16 +08:00
|
|
|
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
|
|
|
|
|
|
|
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
|
2002-02-02 11:28:32 +08:00
|
|
|
#define LOCK_DETECT(env,f,t,a) lock_detect(env, f, t, a)
|
|
|
|
#define LOCK_GET(env,i,f,o,m,l) lock_get(env, i, f, o, m, l)
|
|
|
|
#define TXN_CHECKPOINT(env,k,m,f) txn_checkpoint(env, k, m, f)
|
|
|
|
#define TXN_BEGIN(env,p,t,f) txn_begin((env), p, t, f)
|
|
|
|
#define TXN_PREPARE(txn,gid) txn_prepare((txn), (gid))
|
|
|
|
#define TXN_COMMIT(txn,f) txn_commit((txn), (f))
|
|
|
|
#define TXN_ABORT(txn) txn_abort((txn))
|
|
|
|
#define TXN_ID(txn) txn_id(txn)
|
2001-12-07 13:05:00 +08:00
|
|
|
#else
|
2002-02-02 11:28:32 +08:00
|
|
|
#define LOCK_DETECT(env,f,t,a) (env)->lock_detect(env, f, t, a)
|
|
|
|
#define LOCK_GET(env,i,f,o,m,l) (env)->lock_get(env, i, f, o, m, l)
|
|
|
|
#define TXN_CHECKPOINT(env,k,m,f) (env)->txn_checkpoint(env, k, m, f)
|
|
|
|
#define TXN_BEGIN(env,p,t,f) (env)->txn_begin((env), p, t, f)
|
|
|
|
#define TXN_PREPARE(txn,g) (txn)->prepare((txn), (g))
|
|
|
|
#define TXN_COMMIT(txn,f) (txn)->commit((txn), (f))
|
|
|
|
#define TXN_ABORT(txn) (txn)->abort((txn))
|
|
|
|
#define TXN_ID(txn) (txn)->id(txn)
|
2001-12-07 13:05:00 +08:00
|
|
|
#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_ */
|