2001-10-04 18:29:34 -04:00
|
|
|
/* back-bdb.h - bdb back-end header file */
|
2000-09-18 14:51:07 -04:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-28 16:08:20 -05:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
*
|
2007-01-02 15:00:42 -05:00
|
|
|
* Copyright 2000-2007 The OpenLDAP Foundation.
|
2003-11-28 16:08:20 -05:00
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
|
* Public License.
|
|
|
|
|
*
|
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
2000-09-18 14:51:07 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _BACK_BDB_H_
|
|
|
|
|
#define _BACK_BDB_H_
|
|
|
|
|
|
|
|
|
|
#include <portable.h>
|
2000-09-19 14:08:04 -04:00
|
|
|
#include "slap.h"
|
2002-11-26 15:22:24 -05:00
|
|
|
#include <db.h>
|
2005-03-26 04:52:04 -05:00
|
|
|
#include "alock.h"
|
2000-09-19 14:08:04 -04:00
|
|
|
|
2000-09-18 14:51:07 -04:00
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
|
2004-10-16 17:59:58 -04:00
|
|
|
#define DB_VERSION_FULL ((DB_VERSION_MAJOR << 24) | (DB_VERSION_MINOR << 16) | DB_VERSION_PATCH)
|
|
|
|
|
|
2000-09-20 03:21:09 -04:00
|
|
|
#define DN_BASE_PREFIX SLAP_INDEX_EQUALITY_PREFIX
|
|
|
|
|
#define DN_ONE_PREFIX '%'
|
|
|
|
|
#define DN_SUBTREE_PREFIX '@'
|
|
|
|
|
|
2000-09-19 14:08:04 -04: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-19 17:41:32 -04:00
|
|
|
#define BDB_TXN_RETRIES 16
|
|
|
|
|
|
|
|
|
|
#define BDB_MAX_ADD_LOOP 30
|
2000-09-24 02:04:58 -04:00
|
|
|
|
2000-09-25 19:41:16 -04:00
|
|
|
#define BDB_SUFFIX ".bdb"
|
2001-11-27 05:15:23 -05:00
|
|
|
#define BDB_ID2ENTRY 0
|
|
|
|
|
#define BDB_DN2ID 1
|
|
|
|
|
#define BDB_NDB 2
|
2001-10-05 13:00:21 -04:00
|
|
|
|
2001-11-27 07:36:52 -05: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 00:20:45 -04:00
|
|
|
* upper bound. Smaller pages are better for concurrency.
|
2001-11-27 07:36:52 -05:00
|
|
|
*/
|
2001-12-07 02:07:55 -05:00
|
|
|
#ifndef BDB_ID2ENTRY_PAGESIZE
|
|
|
|
|
#define BDB_ID2ENTRY_PAGESIZE 16384
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-11-28 15:48:06 -05:00
|
|
|
#ifndef BDB_PAGESIZE
|
2001-12-06 20:40:08 -05:00
|
|
|
#define BDB_PAGESIZE 4096 /* BDB's original default */
|
|
|
|
|
#endif
|
2001-11-27 07:36:52 -05:00
|
|
|
|
2002-01-25 02:19:01 -05:00
|
|
|
#define DEFAULT_CACHE_SIZE 1000
|
|
|
|
|
|
2002-12-10 15:33:49 -05:00
|
|
|
/* The default search IDL stack cache depth */
|
|
|
|
|
#define DEFAULT_SEARCH_STACK_DEPTH 16
|
|
|
|
|
|
2003-04-05 05:05:27 -05:00
|
|
|
/* The minimum we can function with */
|
|
|
|
|
#define MINIMUM_SEARCH_STACK_DEPTH 8
|
|
|
|
|
|
2002-12-10 15:33:49 -05:00
|
|
|
typedef struct bdb_idl_cache_entry_s {
|
|
|
|
|
struct berval kstr;
|
|
|
|
|
ID *idl;
|
|
|
|
|
DB *db;
|
2007-01-03 14:00:07 -05:00
|
|
|
int idl_flags;
|
2002-12-10 15:33:49 -05:00
|
|
|
struct bdb_idl_cache_entry_s* idl_lru_prev;
|
|
|
|
|
struct bdb_idl_cache_entry_s* idl_lru_next;
|
|
|
|
|
} bdb_idl_cache_entry_t;
|
|
|
|
|
|
2003-04-16 12:23:36 -04:00
|
|
|
/* BDB backend specific entry info */
|
|
|
|
|
typedef struct bdb_entry_info {
|
|
|
|
|
struct bdb_entry_info *bei_parent;
|
|
|
|
|
ID bei_id;
|
|
|
|
|
|
2004-06-24 19:50:10 -04:00
|
|
|
/* we use the bei_id as a lockobj, but we need to make the size != 4
|
|
|
|
|
* to avoid conflicting with BDB's internal locks. So add a byte here
|
|
|
|
|
* that is always zero.
|
|
|
|
|
*/
|
|
|
|
|
char bei_lockpad;
|
2005-09-26 03:30:36 -04:00
|
|
|
|
2004-06-24 19:50:10 -04:00
|
|
|
short bei_state;
|
2003-04-16 12:23:36 -04:00
|
|
|
#define CACHE_ENTRY_DELETED 1
|
2003-04-16 20:52:31 -04:00
|
|
|
#define CACHE_ENTRY_NO_KIDS 2
|
2003-04-22 13:06:35 -04:00
|
|
|
#define CACHE_ENTRY_NOT_LINKED 4
|
2003-10-02 22:19:09 -04:00
|
|
|
#define CACHE_ENTRY_NO_GRANDKIDS 8
|
2004-07-09 13:00:07 -04:00
|
|
|
#define CACHE_ENTRY_LOADING 0x10
|
2005-09-26 03:30:36 -04:00
|
|
|
#define CACHE_ENTRY_WALKING 0x20
|
|
|
|
|
#define CACHE_ENTRY_ONELEVEL 0x40
|
2006-12-31 11:16:48 -05:00
|
|
|
#define CACHE_ENTRY_REFERENCED 0x80
|
2007-01-04 06:01:59 -05:00
|
|
|
int bei_finders;
|
2003-04-16 12:23:36 -04:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* remaining fields require backend cache lock to access
|
|
|
|
|
*/
|
|
|
|
|
struct berval bei_nrdn;
|
2003-04-22 14:59:37 -04:00
|
|
|
#ifdef BDB_HIER
|
2003-04-16 12:23:36 -04:00
|
|
|
struct berval bei_rdn;
|
2003-09-22 04:37:32 -04:00
|
|
|
int bei_modrdns; /* track renames */
|
|
|
|
|
int bei_ckids; /* number of kids cached */
|
|
|
|
|
int bei_dkids; /* number of kids on-disk, plus 1 */
|
2003-04-22 14:59:37 -04:00
|
|
|
#endif
|
2003-04-16 12:23:36 -04:00
|
|
|
Entry *bei_e;
|
|
|
|
|
Avlnode *bei_kids;
|
2004-12-14 12:22:22 -05:00
|
|
|
#ifdef SLAP_ZONE_ALLOC
|
|
|
|
|
struct bdb_info *bei_bdb;
|
|
|
|
|
int bei_zseq;
|
|
|
|
|
#endif
|
2003-04-16 12:23:36 -04:00
|
|
|
ldap_pvt_thread_mutex_t bei_kids_mutex;
|
|
|
|
|
|
|
|
|
|
struct bdb_entry_info *bei_lrunext; /* for cache lru list */
|
|
|
|
|
struct bdb_entry_info *bei_lruprev;
|
|
|
|
|
} EntryInfo;
|
|
|
|
|
#undef BEI
|
|
|
|
|
#define BEI(e) ((EntryInfo *) ((e)->e_private))
|
|
|
|
|
|
2002-01-25 02:19:01 -05:00
|
|
|
/* for the in-core cache of entries */
|
|
|
|
|
typedef struct bdb_cache {
|
2007-01-04 03:36:59 -05:00
|
|
|
EntryInfo *c_eifree; /* free list */
|
|
|
|
|
Avlnode *c_idtree;
|
|
|
|
|
EntryInfo *c_lruhead; /* lru - add accessed entries here */
|
|
|
|
|
EntryInfo *c_lrutail; /* lru - rem lru entries from here */
|
|
|
|
|
EntryInfo c_dntree;
|
2006-12-31 11:16:48 -05:00
|
|
|
int c_maxsize;
|
|
|
|
|
int c_cursize;
|
2005-12-08 19:20:18 -05:00
|
|
|
int c_minfree;
|
2004-11-09 20:29:51 -05:00
|
|
|
int c_eiused; /* EntryInfo's in use */
|
2005-09-08 11:28:36 -04:00
|
|
|
int c_leaves; /* EntryInfo leaf nodes */
|
2007-01-05 01:49:25 -05:00
|
|
|
int c_purging;
|
2007-01-04 06:01:59 -05:00
|
|
|
u_int32_t c_locker; /* used by lru cleaner */
|
2003-04-16 12:23:36 -04:00
|
|
|
ldap_pvt_thread_rdwr_t c_rwlock;
|
2007-01-04 06:01:59 -05:00
|
|
|
ldap_pvt_thread_mutex_t c_lru_mutex;
|
2006-12-31 11:16:48 -05:00
|
|
|
ldap_pvt_thread_mutex_t c_count_mutex;
|
|
|
|
|
ldap_pvt_thread_mutex_t c_eifree_mutex;
|
2004-12-14 12:22:22 -05:00
|
|
|
#ifdef SLAP_ZONE_ALLOC
|
|
|
|
|
void *c_zctx;
|
|
|
|
|
#endif
|
2002-01-25 02:19:01 -05:00
|
|
|
} Cache;
|
|
|
|
|
|
|
|
|
|
#define CACHE_READ_LOCK 0
|
|
|
|
|
#define CACHE_WRITE_LOCK 1
|
|
|
|
|
|
2001-10-05 13:00:21 -04:00
|
|
|
#define BDB_INDICES 128
|
2000-09-19 14:08:04 -04:00
|
|
|
|
|
|
|
|
struct bdb_db_info {
|
2001-10-05 13:00:21 -04:00
|
|
|
char *bdi_name;
|
2000-09-19 14:08:04 -04:00
|
|
|
DB *bdi_db;
|
|
|
|
|
};
|
|
|
|
|
|
2006-09-08 18:10:49 -04:00
|
|
|
typedef struct bdb_monitor_t {
|
2006-09-06 08:07:03 -04:00
|
|
|
void *bdm_cb;
|
2006-09-08 18:10:49 -04:00
|
|
|
struct berval bdm_nbase;
|
2006-09-06 08:07:03 -04:00
|
|
|
int bdm_scope;
|
|
|
|
|
struct berval bdm_filter;
|
2006-09-08 18:10:49 -04:00
|
|
|
} bdb_monitor_t;
|
2006-09-06 08:07:03 -04:00
|
|
|
|
2006-01-05 23:06:18 -05:00
|
|
|
/* From ldap_rq.h */
|
|
|
|
|
struct re_s;
|
|
|
|
|
|
2000-09-19 14:08:04 -04:00
|
|
|
struct bdb_info {
|
|
|
|
|
DB_ENV *bi_dbenv;
|
|
|
|
|
|
2000-09-19 22:01:05 -04:00
|
|
|
/* DB_ENV parameters */
|
|
|
|
|
/* The DB_ENV can be tuned via DB_CONFIG */
|
2000-09-19 14:08:04 -04:00
|
|
|
char *bi_dbenv_home;
|
|
|
|
|
u_int32_t bi_dbenv_xflags; /* extra flags */
|
|
|
|
|
int bi_dbenv_mode;
|
|
|
|
|
|
|
|
|
|
int bi_ndatabases;
|
2000-09-20 03:21:09 -04:00
|
|
|
struct bdb_db_info **bi_databases;
|
2003-09-24 20:27:22 -04:00
|
|
|
ldap_pvt_thread_mutex_t bi_database_mutex;
|
2001-11-27 22:11:04 -05:00
|
|
|
int bi_db_opflags; /* db-specific flags */
|
2001-10-05 16:12:16 -04:00
|
|
|
|
|
|
|
|
slap_mask_t bi_defaultmask;
|
2002-01-25 02:19:01 -05:00
|
|
|
Cache bi_cache;
|
2005-10-26 04:31:38 -04:00
|
|
|
struct bdb_attrinfo **bi_attrs;
|
|
|
|
|
int bi_nattrs;
|
2002-12-10 12:59:21 -05:00
|
|
|
void *bi_search_stack;
|
2002-12-10 15:33:49 -05:00
|
|
|
int bi_search_stack_depth;
|
2004-07-22 18:32:37 -04:00
|
|
|
int bi_linear_index;
|
2000-09-28 00:09:13 -04:00
|
|
|
|
|
|
|
|
int bi_txn_cp;
|
|
|
|
|
u_int32_t bi_txn_cp_min;
|
|
|
|
|
u_int32_t bi_txn_cp_kbyte;
|
2006-01-05 23:06:18 -05:00
|
|
|
struct re_s *bi_txn_cp_task;
|
|
|
|
|
struct re_s *bi_index_task;
|
2000-09-28 20:18:29 -04:00
|
|
|
|
|
|
|
|
int bi_lock_detect;
|
2003-04-18 05:43:22 -04:00
|
|
|
long bi_shm_key;
|
2001-06-15 03:08:37 -04:00
|
|
|
|
|
|
|
|
ID bi_lastid;
|
2001-11-27 05:15:23 -05:00
|
|
|
ldap_pvt_thread_mutex_t bi_lastid_mutex;
|
2002-12-10 15:33:49 -05:00
|
|
|
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;
|
2003-04-08 02:57:07 -04:00
|
|
|
ldap_pvt_thread_rdwr_t bi_idl_tree_rwlock;
|
|
|
|
|
ldap_pvt_thread_mutex_t bi_idl_tree_lrulock;
|
2005-03-26 04:52:04 -05:00
|
|
|
alock_info_t bi_alock_info;
|
2005-04-01 06:26:43 -05:00
|
|
|
char *bi_db_config_path;
|
|
|
|
|
BerVarray bi_db_config;
|
2006-09-08 18:10:49 -04:00
|
|
|
bdb_monitor_t bi_monitor;
|
2005-04-21 15:04:31 -04:00
|
|
|
int bi_flags;
|
|
|
|
|
#define BDB_IS_OPEN 0x01
|
|
|
|
|
#define BDB_HAS_CONFIG 0x02
|
|
|
|
|
#define BDB_UPD_CONFIG 0x04
|
|
|
|
|
#define BDB_DEL_INDEX 0x08
|
2005-04-22 17:35:45 -04:00
|
|
|
#define BDB_RE_OPEN 0x10
|
2005-07-12 09:17:56 -04:00
|
|
|
#ifdef BDB_HIER
|
|
|
|
|
int bi_modrdns; /* number of modrdns completed */
|
|
|
|
|
ldap_pvt_thread_mutex_t bi_modrdns_mutex;
|
|
|
|
|
#endif
|
2000-09-18 14:51:07 -04:00
|
|
|
};
|
2001-06-15 03:08:37 -04:00
|
|
|
|
2000-09-22 02:46:32 -04:00
|
|
|
#define bi_id2entry bi_databases[BDB_ID2ENTRY]
|
2000-09-20 03:21:09 -04:00
|
|
|
#define bi_dn2id bi_databases[BDB_DN2ID]
|
2000-09-18 14:51:07 -04:00
|
|
|
|
2004-12-04 21:00:19 -05:00
|
|
|
struct bdb_lock_info {
|
|
|
|
|
struct bdb_lock_info *bli_next;
|
|
|
|
|
ID bli_id;
|
|
|
|
|
DB_LOCK bli_lock;
|
|
|
|
|
};
|
|
|
|
|
|
2000-09-27 18:28:59 -04:00
|
|
|
struct bdb_op_info {
|
|
|
|
|
BackendDB* boi_bdb;
|
|
|
|
|
DB_TXN* boi_txn;
|
2003-02-07 10:47:32 -05:00
|
|
|
u_int32_t boi_err;
|
|
|
|
|
u_int32_t boi_locker;
|
2003-02-26 07:09:10 -05:00
|
|
|
int boi_acl_cache;
|
2004-12-04 21:00:19 -05:00
|
|
|
struct bdb_lock_info *boi_locks; /* used when no txn */
|
2000-09-27 18:28:59 -04:00
|
|
|
};
|
|
|
|
|
|
2003-09-24 20:27:22 -04:00
|
|
|
#define DB_OPEN(db, file, name, type, flags, mode) \
|
2002-08-22 00:00:06 -04:00
|
|
|
(db)->open(db, file, name, type, flags, mode)
|
|
|
|
|
|
2001-12-07 00:05:00 -05:00
|
|
|
#if DB_VERSION_MAJOR < 4
|
2002-02-01 22:28:32 -05: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-05-31 16:49:19 -04:00
|
|
|
#define LOCK_PUT(env,l) lock_put(env, l)
|
2002-02-01 22:28:32 -05: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 04:11:08 -04:00
|
|
|
#define XLOCK_ID(env, locker) lock_id(env, locker)
|
|
|
|
|
#define XLOCK_ID_FREE(env, locker) lock_id_free(env, locker)
|
2001-12-07 00:05:00 -05:00
|
|
|
#else
|
2002-02-01 22:28:32 -05: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-05-31 16:49:19 -04:00
|
|
|
#define LOCK_PUT(env,l) (env)->lock_put(env, l)
|
2002-02-01 22:28:32 -05: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 04:11:08 -04: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 07:06:35 -04:00
|
|
|
/* BDB 4.1.17 adds txn arg to db->open */
|
2004-10-16 17:59:58 -04:00
|
|
|
#if DB_VERSION_FULL >= 0x04010011
|
2002-08-25 07:06:35 -04:00
|
|
|
#undef DB_OPEN
|
2003-09-24 20:27:22 -04:00
|
|
|
#define DB_OPEN(db, file, name, type, flags, mode) \
|
2005-01-23 20:37:38 -05:00
|
|
|
(db)->open(db, NULL, file, name, type, flags, mode)
|
2002-08-25 07:06:35 -04:00
|
|
|
#endif
|
|
|
|
|
|
2002-08-24 04:11:08 -04:00
|
|
|
#endif
|
2002-08-22 00:00:06 -04:00
|
|
|
|
2007-07-24 10:02:37 -04:00
|
|
|
/* 4.6.18 redefines cursor->locker */
|
|
|
|
|
#if DB_VERSION_FULL >= 0x04060012
|
|
|
|
|
|
|
|
|
|
struct __db_locker {
|
|
|
|
|
u_int32_t id;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define CURSOR_SETLOCKER(cursor, id) \
|
|
|
|
|
__lock_getlocker(cursor->dbp->dbenv->lk_handle, id, 0, &cursor->locker)
|
|
|
|
|
#define CURSOR_GETLOCKER(cursor) cursor->locker->id
|
|
|
|
|
#else
|
|
|
|
|
#define CURSOR_SETLOCKER(cursor, id) cursor->locker = id
|
|
|
|
|
#define CURSOR_GETLOCKER(cursor) cursor->locker
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-09-27 08:34:00 -04:00
|
|
|
#ifndef DB_BUFFER_SMALL
|
|
|
|
|
#define DB_BUFFER_SMALL ENOMEM
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-04-23 02:34:55 -04:00
|
|
|
#define BDB_REUSE_LOCKERS
|
2001-12-07 00:05:00 -05:00
|
|
|
|
2003-08-25 15:15:04 -04:00
|
|
|
#define BDB_CSN_COMMIT 0
|
|
|
|
|
#define BDB_CSN_ABORT 1
|
|
|
|
|
#define BDB_CSN_RETRY 2
|
|
|
|
|
|
2004-12-06 02:28:47 -05:00
|
|
|
/* Copy an ID "src" to pointer "dst" in big-endian byte order */
|
|
|
|
|
#define BDB_ID2DISK( src, dst ) \
|
2005-01-11 17:25:52 -05:00
|
|
|
do { int i0; ID tmp; unsigned char *_p; \
|
2005-07-18 01:58:43 -04:00
|
|
|
tmp = (src); _p = (unsigned char *)(dst); \
|
2004-12-06 02:28:47 -05:00
|
|
|
for ( i0=sizeof(ID)-1; i0>=0; i0-- ) { \
|
2005-01-11 17:25:52 -05:00
|
|
|
_p[i0] = tmp & 0xff; tmp >>= 8; \
|
2004-12-06 02:28:47 -05:00
|
|
|
} \
|
2005-07-30 19:36:38 -04:00
|
|
|
} while(0)
|
2004-12-06 02:28:47 -05:00
|
|
|
|
|
|
|
|
/* Copy a pointer "src" to a pointer "dst" from big-endian to native order */
|
|
|
|
|
#define BDB_DISK2ID( src, dst ) \
|
2005-01-11 17:25:52 -05:00
|
|
|
do { int i0; ID tmp = 0; unsigned char *_p; \
|
|
|
|
|
_p = (unsigned char *)(src); \
|
2004-12-06 02:28:47 -05:00
|
|
|
for ( i0=0; i0<sizeof(ID); i0++ ) { \
|
2005-01-11 17:25:52 -05:00
|
|
|
tmp <<= 8; tmp |= *_p++; \
|
2004-12-06 02:28:47 -05:00
|
|
|
} *(dst) = tmp; \
|
2005-07-30 19:36:38 -04:00
|
|
|
} while (0)
|
2004-12-06 02:28:47 -05:00
|
|
|
|
2000-09-18 14:51:07 -04:00
|
|
|
LDAP_END_DECL
|
|
|
|
|
|
2005-04-21 15:04:31 -04:00
|
|
|
/* for the cache of attribute information (which are indexed, etc.) */
|
|
|
|
|
typedef struct bdb_attrinfo {
|
|
|
|
|
AttributeDescription *ai_desc; /* attribute description cn;lang-en */
|
|
|
|
|
slap_mask_t ai_indexmask; /* how the attr is indexed */
|
|
|
|
|
slap_mask_t ai_newmask; /* new settings to replace old mask */
|
|
|
|
|
#ifdef LDAP_COMP_MATCH
|
|
|
|
|
ComponentReference* ai_cr; /*component indexing*/
|
|
|
|
|
#endif
|
|
|
|
|
} AttrInfo;
|
|
|
|
|
|
|
|
|
|
/* These flags must not clash with SLAP_INDEX flags or ops in slap.h! */
|
|
|
|
|
#define BDB_INDEX_DELETING 0x8000U /* index is being modified */
|
|
|
|
|
#define BDB_INDEX_UPDATE_OP 0x03 /* performing an index update */
|
|
|
|
|
|
2005-10-27 06:34:33 -04:00
|
|
|
/* For slapindex to record which attrs in an entry belong to which
|
|
|
|
|
* index database
|
|
|
|
|
*/
|
|
|
|
|
typedef struct AttrList {
|
|
|
|
|
struct AttrList *next;
|
|
|
|
|
Attribute *attr;
|
|
|
|
|
} AttrList;
|
|
|
|
|
|
|
|
|
|
typedef struct IndexRec {
|
|
|
|
|
AttrInfo *ai;
|
|
|
|
|
AttrList *attrs;
|
|
|
|
|
} IndexRec;
|
|
|
|
|
|
2000-09-18 17:35:08 -04:00
|
|
|
#include "proto-bdb.h"
|
|
|
|
|
|
2000-09-18 14:51:07 -04:00
|
|
|
#endif /* _BACK_BDB_H_ */
|