]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/back-bdb.h
8a8417a327067c4ea7ff508094de797836f62f5e
[openldap] / servers / slapd / back-bdb / back-bdb.h
1 /* back-bdb.h - bdb back-end header file */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 2000-2002 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #ifndef _BACK_BDB_H_
9 #define _BACK_BDB_H_
10
11 #include <portable.h>
12 #include <db.h>
13
14 #include "slap.h"
15
16 LDAP_BEGIN_DECL
17
18 #define BDB_IDL_MULTI           1
19 /* #define BDB_HIER             1 */
20
21 #define DN_BASE_PREFIX          SLAP_INDEX_EQUALITY_PREFIX
22 #define DN_ONE_PREFIX           '%'
23 #define DN_SUBTREE_PREFIX       '@'
24
25 #define DBTzero(t)                      (memset((t), 0, sizeof(DBT)))
26 #define DBT2bv(t,bv)            ((bv)->bv_val = (t)->data, \
27                                                                 (bv)->bv_len = (t)->size)
28 #define bv2DBT(bv,t)            ((t)->data = (bv)->bv_val, \
29                                                                 (t)->size = (bv)->bv_len )
30
31 #define DEFAULT_MODE            0600
32
33 #define BDB_TXN_RETRIES 16
34
35 #ifdef BDB_HIER
36 #define BDB_DBENV_HOME  LDAP_RUNDIR LDAP_DIRSEP "openldap-hdb"
37 #else
38 #define BDB_DBENV_HOME  LDAP_RUNDIR LDAP_DIRSEP "openldap-bdb"
39 #endif
40
41 #ifdef BDB_SUBDIRS
42 #define BDB_TMP_SUBDIR  LDAP_DIRSEP "tmp"
43 #define BDB_LG_SUBDIR   LDAP_DIRSEP "log"
44 #define BDB_DATA_SUBDIR LDAP_DIRSEP "data"
45 #endif
46
47 #define BDB_SUFFIX              ".bdb"
48 #define BDB_ID2ENTRY    0
49 #ifdef BDB_HIER
50 #define BDB_ID2PARENT           1
51 #else
52 #define BDB_DN2ID               1
53 #endif
54 #define BDB_NDB                 2
55
56 /* The bdb on-disk entry format is pretty space-inefficient. Average
57  * sized user entries are 3-4K each. You need at least two entries to
58  * fit into a single database page, more is better. 64K is BDB's
59  * upper bound. The same issues arise with IDLs in the index databases,
60  * but it's nearly impossible to avoid overflows there.
61  *
62  * When using BDB_IDL_MULTI, the IDL size is no longer an issue. Smaller
63  * pages are better for concurrency.
64  */
65 #ifndef BDB_ID2ENTRY_PAGESIZE
66 #define BDB_ID2ENTRY_PAGESIZE   16384
67 #endif
68
69 #ifndef BDB_PAGESIZE
70 #ifdef BDB_IDL_MULTI
71 #define BDB_PAGESIZE    4096    /* BDB's original default */
72 #else
73 #define BDB_PAGESIZE    16384
74 #endif
75 #endif
76
77 #define DEFAULT_CACHE_SIZE     1000
78
79 /* for the in-core cache of entries */
80 typedef struct bdb_cache {
81         int             c_maxsize;
82         int             c_cursize;
83         Avlnode         *c_dntree;
84         Avlnode         *c_idtree;
85         Entry           *c_lruhead;     /* lru - add accessed entries here */
86         Entry           *c_lrutail;     /* lru - rem lru entries from here */
87         ldap_pvt_thread_mutex_t c_mutex;
88 } Cache;
89  
90 #define CACHE_READ_LOCK                0
91 #define CACHE_WRITE_LOCK       1
92  
93 #define BDB_INDICES             128
94
95 struct bdb_db_info {
96         char            *bdi_name;
97         DB                      *bdi_db;
98 };
99
100 struct bdb_info {
101         DB_ENV          *bi_dbenv;
102
103         /* DB_ENV parameters */
104         /* The DB_ENV can be tuned via DB_CONFIG */
105         char            *bi_dbenv_home;
106         u_int32_t       bi_dbenv_xflags; /* extra flags */
107         int                     bi_dbenv_mode;
108
109         int                     bi_ndatabases;
110         struct bdb_db_info **bi_databases;
111         ldap_pvt_thread_mutex_t bi_database_mutex;
112         int             bi_db_opflags;  /* db-specific flags */
113
114         slap_mask_t     bi_defaultmask;
115         Cache           bi_cache;
116         Avlnode         *bi_attrs;
117 #ifdef BDB_HIER
118         Avlnode         *bi_tree;
119         ldap_pvt_thread_rdwr_t  bi_tree_rdwr;
120         void            *bi_troot;
121         int             bi_nrdns;
122 #endif
123
124         int                     bi_txn_cp;
125         u_int32_t       bi_txn_cp_min;
126         u_int32_t       bi_txn_cp_kbyte;
127
128 #ifndef NO_THREADS
129         int                     bi_lock_detect;
130         int                     bi_lock_detect_seconds;
131         ldap_pvt_thread_t       bi_lock_detect_tid;
132 #endif
133
134         ID                      bi_lastid;
135         ldap_pvt_thread_mutex_t bi_lastid_mutex;
136 };
137
138 #define bi_id2entry     bi_databases[BDB_ID2ENTRY]
139 #ifdef BDB_HIER
140 #define bi_id2parent    bi_databases[BDB_ID2PARENT]
141 #else
142 #define bi_dn2id        bi_databases[BDB_DN2ID]
143 #endif
144
145 struct bdb_op_info {
146         BackendDB*      boi_bdb;
147         DB_TXN*         boi_txn;
148         int                     boi_err;
149 };
150
151 #if DB_VERSION_MAJOR < 4
152 #define LOCK_DETECT(env,f,t,a)          lock_detect(env, f, t, a)
153 #define LOCK_GET(env,i,f,o,m,l)         lock_get(env, i, f, o, m, l)
154 #define TXN_CHECKPOINT(env,k,m,f)       txn_checkpoint(env, k, m, f)
155 #define TXN_BEGIN(env,p,t,f)            txn_begin((env), p, t, f)
156 #define TXN_PREPARE(txn,gid)            txn_prepare((txn), (gid))
157 #define TXN_COMMIT(txn,f)                       txn_commit((txn), (f))
158 #define TXN_ABORT(txn)                          txn_abort((txn))
159 #define TXN_ID(txn)                                     txn_id(txn)
160 #else
161 #define LOCK_DETECT(env,f,t,a)          (env)->lock_detect(env, f, t, a)
162 #define LOCK_GET(env,i,f,o,m,l)         (env)->lock_get(env, i, f, o, m, l)
163 #define TXN_CHECKPOINT(env,k,m,f)       (env)->txn_checkpoint(env, k, m, f)
164 #define TXN_BEGIN(env,p,t,f)            (env)->txn_begin((env), p, t, f)
165 #define TXN_PREPARE(txn,g)                      (txn)->prepare((txn), (g))
166 #define TXN_COMMIT(txn,f)                       (txn)->commit((txn), (f))
167 #define TXN_ABORT(txn)                          (txn)->abort((txn))
168 #define TXN_ID(txn)                                     (txn)->id(txn)
169 #endif
170
171 LDAP_END_DECL
172
173 #include "proto-bdb.h"
174
175 #endif /* _BACK_BDB_H_ */