]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/back-bdb.h
Import LDAP_DEVEL bit
[openldap] / servers / slapd / back-bdb / back-bdb.h
1 /* back-bdb.h - bdb back-end header file */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2000-2007 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16
17 #ifndef _BACK_BDB_H_
18 #define _BACK_BDB_H_
19
20 #include <portable.h>
21 #include "slap.h"
22 #include <db.h>
23 #include "alock.h"
24
25 LDAP_BEGIN_DECL
26
27 #define DB_VERSION_FULL ((DB_VERSION_MAJOR << 24) | (DB_VERSION_MINOR << 16) | DB_VERSION_PATCH)
28
29 #define DN_BASE_PREFIX          SLAP_INDEX_EQUALITY_PREFIX
30 #define DN_ONE_PREFIX           '%'
31 #define DN_SUBTREE_PREFIX       '@'
32
33 #define DBTzero(t)                      (memset((t), 0, sizeof(DBT)))
34 #define DBT2bv(t,bv)            ((bv)->bv_val = (t)->data, \
35                                                                 (bv)->bv_len = (t)->size)
36 #define bv2DBT(bv,t)            ((t)->data = (bv)->bv_val, \
37                                                                 (t)->size = (bv)->bv_len )
38
39 #define BDB_TXN_RETRIES         16
40
41 #define BDB_MAX_ADD_LOOP        30
42
43 #define BDB_SUFFIX              ".bdb"
44 #define BDB_ID2ENTRY    0
45 #define BDB_DN2ID               1
46 #define BDB_NDB                 2
47
48 /* The bdb on-disk entry format is pretty space-inefficient. Average
49  * sized user entries are 3-4K each. You need at least two entries to
50  * fit into a single database page, more is better. 64K is BDB's
51  * upper bound. Smaller pages are better for concurrency.
52  */
53 #ifndef BDB_ID2ENTRY_PAGESIZE
54 #define BDB_ID2ENTRY_PAGESIZE   16384
55 #endif
56
57 #ifndef BDB_PAGESIZE
58 #define BDB_PAGESIZE    4096    /* BDB's original default */
59 #endif
60
61 /* 4.6.18 redefines cursor->locker */
62 #if DB_VERSION_FULL >= 0x04060012
63
64 struct __db_locker {
65         u_int32_t       id;
66 };
67
68 typedef struct __db_locker * BDB_LOCKER;
69
70 extern int __lock_getlocker(DB_LOCKTAB *lt, u_int32_t locker, int create, DB_LOCKER **ret);
71
72 #define CURSOR_SETLOCKER(cursor, id)    cursor->locker = id
73 #define CURSOR_GETLOCKER(cursor)        cursor->locker
74 #else
75
76 typedef u_int32_t BDB_LOCKER;
77
78 #define CURSOR_SETLOCKER(cursor, id)    cursor->locker = id
79 #define CURSOR_GETLOCKER(cursor)        cursor->locker
80
81 #endif
82
83 #define DEFAULT_CACHE_SIZE     1000
84
85 /* The default search IDL stack cache depth */
86 #define DEFAULT_SEARCH_STACK_DEPTH      16
87
88 /* The minimum we can function with */
89 #define MINIMUM_SEARCH_STACK_DEPTH      8
90
91 typedef struct bdb_idl_cache_entry_s {
92         struct berval kstr;
93         ID      *idl;
94         DB      *db;
95         int             idl_flags;
96         struct bdb_idl_cache_entry_s* idl_lru_prev;
97         struct bdb_idl_cache_entry_s* idl_lru_next;
98 } bdb_idl_cache_entry_t;
99
100 /* BDB backend specific entry info */
101 typedef struct bdb_entry_info {
102         struct bdb_entry_info *bei_parent;
103         ID bei_id;
104
105         /* we use the bei_id as a lockobj, but we need to make the size != 4
106          * to avoid conflicting with BDB's internal locks. So add a byte here
107          * that is always zero.
108          */
109         char bei_lockpad;
110
111         short bei_state;
112 #define CACHE_ENTRY_DELETED     1
113 #define CACHE_ENTRY_NO_KIDS     2
114 #define CACHE_ENTRY_NOT_LINKED  4
115 #define CACHE_ENTRY_NO_GRANDKIDS        8
116 #define CACHE_ENTRY_LOADING     0x10
117 #define CACHE_ENTRY_WALKING     0x20
118 #define CACHE_ENTRY_ONELEVEL    0x40
119 #define CACHE_ENTRY_REFERENCED  0x80
120 #define CACHE_ENTRY_NOT_CACHED  0x100
121         int bei_finders;
122
123         /*
124          * remaining fields require backend cache lock to access
125          */
126         struct berval bei_nrdn;
127 #ifdef BDB_HIER
128         struct berval bei_rdn;
129         int     bei_modrdns;    /* track renames */
130         int     bei_ckids;      /* number of kids cached */
131         int     bei_dkids;      /* number of kids on-disk, plus 1 */
132 #endif
133         Entry   *bei_e;
134         Avlnode *bei_kids;
135 #ifdef SLAP_ZONE_ALLOC
136         struct bdb_info *bei_bdb;
137         int bei_zseq;   
138 #endif
139         ldap_pvt_thread_mutex_t bei_kids_mutex;
140         
141         struct bdb_entry_info   *bei_lrunext;   /* for cache lru list */
142         struct bdb_entry_info   *bei_lruprev;
143 } EntryInfo;
144 #undef BEI
145 #define BEI(e)  ((EntryInfo *) ((e)->e_private))
146
147 /* for the in-core cache of entries */
148 typedef struct bdb_cache {
149         EntryInfo       *c_eifree;      /* free list */
150         Avlnode         *c_idtree;
151         EntryInfo       *c_lruhead;     /* lru - add accessed entries here */
152         EntryInfo       *c_lrutail;     /* lru - rem lru entries from here */
153         EntryInfo       c_dntree;
154         unsigned        c_maxsize;
155         int             c_cursize;
156         unsigned        c_minfree;
157         unsigned        c_eimax;
158         int             c_eiused;       /* EntryInfo's in use */
159         int             c_leaves;       /* EntryInfo leaf nodes */
160         int             c_purging;
161         BDB_LOCKER      c_locker;       /* used by lru cleaner */
162         ldap_pvt_thread_rdwr_t c_rwlock;
163         ldap_pvt_thread_mutex_t c_lru_mutex;
164         ldap_pvt_thread_mutex_t c_count_mutex;
165         ldap_pvt_thread_mutex_t c_eifree_mutex;
166 #ifdef SLAP_ZONE_ALLOC
167         void *c_zctx;
168 #endif
169 } Cache;
170  
171 #define CACHE_READ_LOCK                0
172 #define CACHE_WRITE_LOCK       1
173  
174 #define BDB_INDICES             128
175
176 struct bdb_db_info {
177         struct berval   bdi_name;
178         DB                      *bdi_db;
179 };
180
181 #ifdef LDAP_DEVEL
182 #define BDB_MONITOR_IDX
183 #endif /* LDAP_DEVEL */
184
185 typedef struct bdb_monitor_t {
186         void            *bdm_cb;
187         struct berval   bdm_ndn;
188 } bdb_monitor_t;
189
190 /* From ldap_rq.h */
191 struct re_s;
192
193 struct bdb_info {
194         DB_ENV          *bi_dbenv;
195
196         /* DB_ENV parameters */
197         /* The DB_ENV can be tuned via DB_CONFIG */
198         char            *bi_dbenv_home;
199         u_int32_t       bi_dbenv_xflags; /* extra flags */
200         int                     bi_dbenv_mode;
201
202         int                     bi_ndatabases;
203         struct bdb_db_info **bi_databases;
204         ldap_pvt_thread_mutex_t bi_database_mutex;
205         int             bi_db_opflags;  /* db-specific flags */
206
207         slap_mask_t     bi_defaultmask;
208         Cache           bi_cache;
209         struct bdb_attrinfo             **bi_attrs;
210         int                     bi_nattrs;
211         void            *bi_search_stack;
212         int             bi_search_stack_depth;
213         int             bi_linear_index;
214
215         int                     bi_txn_cp;
216         u_int32_t       bi_txn_cp_min;
217         u_int32_t       bi_txn_cp_kbyte;
218         struct re_s             *bi_txn_cp_task;
219         struct re_s             *bi_index_task;
220
221         int                     bi_lock_detect;
222         long            bi_shm_key;
223
224         ID                      bi_lastid;
225         ldap_pvt_thread_mutex_t bi_lastid_mutex;
226         unsigned        bi_idl_cache_max_size;
227         int             bi_idl_cache_size;
228         Avlnode         *bi_idl_tree;
229         bdb_idl_cache_entry_t   *bi_idl_lru_head;
230         bdb_idl_cache_entry_t   *bi_idl_lru_tail;
231         ldap_pvt_thread_rdwr_t bi_idl_tree_rwlock;
232         ldap_pvt_thread_mutex_t bi_idl_tree_lrulock;
233         alock_info_t    bi_alock_info;
234         char            *bi_db_config_path;
235         BerVarray       bi_db_config;
236         bdb_monitor_t   bi_monitor;
237
238 #ifdef BDB_MONITOR_IDX
239         ldap_pvt_thread_mutex_t bi_idx_mutex;
240         Avlnode         *bi_idx;
241 #endif /* BDB_MONITOR_IDX */
242
243         int             bi_flags;
244 #define BDB_IS_OPEN             0x01
245 #define BDB_HAS_CONFIG  0x02
246 #define BDB_UPD_CONFIG  0x04
247 #define BDB_DEL_INDEX   0x08
248 #define BDB_RE_OPEN             0x10
249 #ifdef BDB_HIER
250         int             bi_modrdns;             /* number of modrdns completed */
251         ldap_pvt_thread_mutex_t bi_modrdns_mutex;
252 #endif
253 };
254
255 #define bi_id2entry     bi_databases[BDB_ID2ENTRY]
256 #define bi_dn2id        bi_databases[BDB_DN2ID]
257
258
259 struct bdb_lock_info {
260         struct bdb_lock_info *bli_next;
261         ID              bli_id;
262         DB_LOCK bli_lock;
263 };
264
265 struct bdb_op_info {
266         BackendDB*      boi_bdb;
267         DB_TXN*         boi_txn;
268         BDB_LOCKER      boi_locker;
269         u_int32_t       boi_err;
270         int             boi_acl_cache;
271         struct bdb_lock_info *boi_locks;        /* used when no txn */
272 };
273
274 #define DB_OPEN(db, file, name, type, flags, mode) \
275         ((db)->open)(db, file, name, type, flags, mode)
276
277 #if DB_VERSION_MAJOR < 4
278 #define LOCK_DETECT(env,f,t,a)          lock_detect(env, f, t, a)
279 #define LOCK_GET(env,i,f,o,m,l)         lock_get(env, i, f, o, m, l)
280 #define LOCK_PUT(env,l)                 lock_put(env, l)
281 #define TXN_CHECKPOINT(env,k,m,f)       txn_checkpoint(env, k, m, f)
282 #define TXN_BEGIN(env,p,t,f)            txn_begin((env), p, t, f)
283 #define TXN_PREPARE(txn,gid)            txn_prepare((txn), (gid))
284 #define TXN_COMMIT(txn,f)                       txn_commit((txn), (f))
285 #define TXN_ABORT(txn)                          txn_abort((txn))
286 #define TXN_ID(txn)                                     txn_id(txn)
287 #define XLOCK_ID(env, locker)           lock_id(env, locker)
288 #define XLOCK_ID_FREE(env, locker)      lock_id_free(env, locker)
289 #else
290 #define LOCK_DETECT(env,f,t,a)          (env)->lock_detect(env, f, t, a)
291 #define LOCK_GET(env,i,f,o,m,l)         (env)->lock_get(env, i, f, o, m, l)
292 #define LOCK_PUT(env,l)                 (env)->lock_put(env, l)
293 #define TXN_CHECKPOINT(env,k,m,f)       (env)->txn_checkpoint(env, k, m, f)
294 #define TXN_BEGIN(env,p,t,f)            (env)->txn_begin((env), p, t, f)
295 #define TXN_PREPARE(txn,g)                      (txn)->prepare((txn), (g))
296 #define TXN_COMMIT(txn,f)                       (txn)->commit((txn), (f))
297 #define TXN_ABORT(txn)                          (txn)->abort((txn))
298 #define TXN_ID(txn)                                     (txn)->id(txn)
299 #define XLOCK_ID(env, locker)           (env)->lock_id(env, locker)
300 #define XLOCK_ID_FREE(env, locker)      (env)->lock_id_free(env, locker)
301
302 /* BDB 4.1.17 adds txn arg to db->open */
303 #if DB_VERSION_FULL >= 0x04010011
304 #undef DB_OPEN
305 #define DB_OPEN(db, file, name, type, flags, mode) \
306         ((db)->open)(db, NULL, file, name, type, flags, mode)
307 #endif
308
309 /* BDB 4.6.18 makes locker a struct instead of an int */
310 #if DB_VERSION_FULL >= 0x04060012
311 #undef TXN_ID
312 #define TXN_ID(txn)     (txn)->locker
313 #endif
314
315 #endif
316
317 #ifndef DB_BUFFER_SMALL
318 #define DB_BUFFER_SMALL                 ENOMEM
319 #endif
320
321 #define BDB_REUSE_LOCKERS
322
323 #define BDB_CSN_COMMIT  0
324 #define BDB_CSN_ABORT   1
325 #define BDB_CSN_RETRY   2
326
327 /* Copy an ID "src" to pointer "dst" in big-endian byte order */
328 #define BDB_ID2DISK( src, dst ) \
329         do { int i0; ID tmp; unsigned char *_p; \
330                 tmp = (src); _p = (unsigned char *)(dst);       \
331                 for ( i0=sizeof(ID)-1; i0>=0; i0-- ) {  \
332                         _p[i0] = tmp & 0xff; tmp >>= 8; \
333                 } \
334         } while(0)
335
336 /* Copy a pointer "src" to a pointer "dst" from big-endian to native order */
337 #define BDB_DISK2ID( src, dst ) \
338         do { int i0; ID tmp = 0; unsigned char *_p;     \
339                 _p = (unsigned char *)(src);    \
340                 for ( i0=0; i0<sizeof(ID); i0++ ) {     \
341                         tmp <<= 8; tmp |= *_p++;        \
342                 } *(dst) = tmp; \
343         } while (0)
344
345 LDAP_END_DECL
346
347 /* for the cache of attribute information (which are indexed, etc.) */
348 typedef struct bdb_attrinfo {
349         AttributeDescription *ai_desc; /* attribute description cn;lang-en */
350         slap_mask_t ai_indexmask;       /* how the attr is indexed      */
351         slap_mask_t ai_newmask; /* new settings to replace old mask */
352 #ifdef LDAP_COMP_MATCH
353         ComponentReference* ai_cr; /*component indexing*/
354 #endif
355 } AttrInfo;
356
357 /* These flags must not clash with SLAP_INDEX flags or ops in slap.h! */
358 #define BDB_INDEX_DELETING      0x8000U /* index is being modified */
359 #define BDB_INDEX_UPDATE_OP     0x03    /* performing an index update */
360
361 /* For slapindex to record which attrs in an entry belong to which
362  * index database 
363  */
364 typedef struct AttrList {
365         struct AttrList *next;
366         Attribute *attr;
367 } AttrList;
368
369 typedef struct IndexRec {
370         AttrInfo *ai;
371         AttrList *attrs;
372 } IndexRec;
373
374 #include "proto-bdb.h"
375
376 #endif /* _BACK_BDB_H_ */