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$ */
|
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 2000-2003 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>
|
2000-09-20 02:08:04 +08:00
|
|
|
#include "slap.h"
|
2002-11-27 04:22:24 +08:00
|
|
|
#include <db.h>
|
2000-09-20 02:08:04 +08:00
|
|
|
|
2000-09-19 02:51:07 +08:00
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
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 )
|
|
|
|
|
2002-04-20 05:41:32 +08:00
|
|
|
#define BDB_TXN_RETRIES 16
|
|
|
|
|
|
|
|
#define BDB_MAX_ADD_LOOP 30
|
2000-09-24 14:04:58 +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
|
2002-09-10 12:20:45 +08:00
|
|
|
* upper bound. 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
|
|
|
#define BDB_PAGESIZE 4096 /* BDB's original default */
|
|
|
|
#endif
|
2001-11-27 20:36:52 +08:00
|
|
|
|
2002-01-25 15:19:01 +08:00
|
|
|
#define DEFAULT_CACHE_SIZE 1000
|
|
|
|
|
2002-12-11 04:33:49 +08:00
|
|
|
/* The default search IDL stack cache depth */
|
|
|
|
#define DEFAULT_SEARCH_STACK_DEPTH 16
|
|
|
|
|
|
|
|
/* for the IDL cache */
|
|
|
|
#define SLAP_IDL_CACHE 1
|
|
|
|
|
|
|
|
#ifdef SLAP_IDL_CACHE
|
|
|
|
typedef struct bdb_idl_cache_entry_s {
|
|
|
|
struct berval kstr;
|
|
|
|
ldap_pvt_thread_rdwr_t idl_entry_rwlock;
|
|
|
|
ID *idl;
|
|
|
|
DB *db;
|
|
|
|
struct bdb_idl_cache_entry_s* idl_lru_prev;
|
|
|
|
struct bdb_idl_cache_entry_s* idl_lru_next;
|
|
|
|
} bdb_idl_cache_entry_t;
|
|
|
|
#endif
|
|
|
|
|
2002-01-25 15:19:01 +08:00
|
|
|
/* 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 */
|
2002-04-16 00:40:04 +08:00
|
|
|
ldap_pvt_thread_rdwr_t c_rwlock;
|
|
|
|
ldap_pvt_thread_mutex_t lru_mutex;
|
2002-01-25 15:19:01 +08:00
|
|
|
} 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;
|
2002-12-11 01:59:21 +08:00
|
|
|
void *bi_search_stack;
|
2002-12-11 04:33:49 +08:00
|
|
|
int bi_search_stack_depth;
|
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;
|
|
|
|
#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
|
|
|
|
|
|
|
int bi_lock_detect;
|
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;
|
2002-10-26 01:51:30 +08:00
|
|
|
#ifdef LDAP_CLIENT_UPDATE
|
|
|
|
LDAP_LIST_HEAD(pl, slap_op) psearch_list;
|
|
|
|
#endif
|
2002-12-11 04:33:49 +08:00
|
|
|
#ifdef SLAP_IDL_CACHE
|
|
|
|
int bi_idl_cache_max_size;
|
|
|
|
int bi_idl_cache_size;
|
|
|
|
Avlnode *bi_idl_tree;
|
|
|
|
bdb_idl_cache_entry_t *bi_idl_lru_head;
|
|
|
|
bdb_idl_cache_entry_t *bi_idl_lru_tail;
|
|
|
|
ldap_pvt_thread_mutex_t bi_idl_tree_mutex;
|
|
|
|
#endif
|
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;
|
|
|
|
};
|
|
|
|
|
2002-08-22 12:00:06 +08:00
|
|
|
#define DB_OPEN(db, file, name, type, flags, mode) \
|
|
|
|
(db)->open(db, file, name, type, flags, mode)
|
|
|
|
|
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)
|
2002-06-01 04:49:19 +08:00
|
|
|
#define LOCK_PUT(env,l) lock_put(env, l)
|
2002-02-02 11:28:32 +08:00
|
|
|
#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)
|
2002-08-24 16:11:08 +08:00
|
|
|
#define XLOCK_ID(env, locker) lock_id(env, locker)
|
|
|
|
#define XLOCK_ID_FREE(env, locker) lock_id_free(env, locker)
|
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)
|
2002-06-01 04:49:19 +08:00
|
|
|
#define LOCK_PUT(env,l) (env)->lock_put(env, l)
|
2002-02-02 11:28:32 +08:00
|
|
|
#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)
|
2002-08-24 16:11:08 +08:00
|
|
|
#define XLOCK_ID(env, locker) (env)->lock_id(env, locker)
|
|
|
|
#define XLOCK_ID_FREE(env, locker) (env)->lock_id_free(env, locker)
|
|
|
|
|
2002-08-25 19:06:35 +08:00
|
|
|
/* BDB 4.1.17 adds txn arg to db->open */
|
|
|
|
#if DB_VERSION_MINOR > 1 || DB_VERSION_PATCH >= 17
|
|
|
|
#undef DB_OPEN
|
|
|
|
#define DB_OPEN(db, file, name, type, flags, mode) \
|
|
|
|
(db)->open(db, NULL, file, name, type, (flags)|DB_AUTO_COMMIT, mode)
|
|
|
|
#endif
|
|
|
|
|
2002-08-24 16:11:08 +08:00
|
|
|
#define BDB_REUSE_LOCKERS
|
|
|
|
|
|
|
|
#ifdef BDB_REUSE_LOCKERS
|
|
|
|
#define LOCK_ID_FREE(env, locker)
|
2002-09-19 14:34:53 +08:00
|
|
|
#define LOCK_ID(env, locker) bdb_locker_id(op, env, locker)
|
2002-08-24 16:11:08 +08:00
|
|
|
#else
|
|
|
|
#define LOCK_ID_FREE(env, locker) XLOCK_ID_FREE(env, locker)
|
|
|
|
#define LOCK_ID(env, locker) XLOCK_ID(env, locker)
|
|
|
|
#endif
|
2002-08-22 12:00:06 +08:00
|
|
|
|
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_ */
|