openldap/servers/slapd/back-bdb/init.c

311 lines
6.6 KiB
C
Raw Normal View History

2000-09-18 14:51:07 -04:00
/* init.c - initialize bdb backend */
/* $OpenLDAP$ */
/*
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#include "portable.h"
#include <stdio.h>
#include <ac/string.h>
#include <ac/socket.h>
#include "back-bdb.h"
2000-09-20 03:21:09 -04:00
static char *bdbi_dbnames[BDB_INDICES] = {
"nextid", "id2entry", "dn2entry"
};
2000-09-18 21:59:08 -04:00
static int
bi_back_destroy( BackendInfo *bi )
2000-09-18 14:51:07 -04:00
{
return 0;
}
2000-09-18 21:59:08 -04:00
static int
bi_back_open( BackendInfo *bi )
2000-09-18 14:51:07 -04:00
{
/* initialize the underlying database system */
return 0;
}
2000-09-18 21:59:08 -04:00
static int
bi_back_close( BackendInfo *bi )
2000-09-18 14:51:07 -04:00
{
/* terminate the underlying database system */
return 0;
}
2000-09-18 21:59:08 -04:00
static int
bi_back_db_init( Backend *be )
2000-09-18 14:51:07 -04:00
{
struct bdb_info *bdb;
2000-09-18 14:51:07 -04:00
/* allocate backend-database-specific stuff */
bdb = (struct bdb_info *) ch_calloc( 1, sizeof(struct bdb_info) );
2000-09-18 14:51:07 -04:00
/* DBEnv parameters */
2000-09-19 22:01:05 -04:00
bdb->bi_dbenv_home = ch_strdup( BDB_DBENV_HOME );
bdb->bi_dbenv_xflags = 0;
bdb->bi_dbenv_mode = DEFAULT_MODE;
2000-09-18 14:51:07 -04:00
be->be_private = bdb;
2000-09-18 14:51:07 -04:00
return 0;
}
2000-09-18 21:59:08 -04:00
static int
bi_back_db_open( BackendDB *be )
2000-09-18 14:51:07 -04:00
{
2000-09-20 03:21:09 -04:00
int rc, i;
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
2000-09-18 14:51:07 -04:00
u_int32_t flags;
/* we should check existance of dbenv_home and db_directory */
rc = db_env_create( &bdb->bi_dbenv, 0 );
2000-09-18 14:51:07 -04:00
if( rc != 0 ) {
Debug( LDAP_DEBUG_ANY,
"bi_back_db_open: db_env_create failed: %s (%d)\n",
2000-09-18 14:51:07 -04:00
db_strerror(rc), rc, 0 );
return rc;
}
2000-09-18 17:19:19 -04:00
flags = DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_TXN |
DB_CREATE | DB_RECOVER | DB_THREAD;
2000-09-18 16:03:41 -04:00
#ifdef SLAPD_BDB_PRIVATE
2000-09-18 17:19:19 -04:00
flags |= DB_PRIVATE;
2000-09-18 16:03:41 -04:00
#else
2000-09-18 17:19:19 -04:00
flags |= DB_INIT_MPOOL;
2000-09-18 16:03:41 -04:00
#endif
2000-09-18 14:51:07 -04:00
bdb->bi_dbenv->set_errpfx( bdb->bi_dbenv, be->be_suffix[0] );
bdb->bi_dbenv->set_errcall( bdb->bi_dbenv, bdb_errcall );
2000-09-19 22:01:05 -04:00
{
char dir[MAXPATHLEN];
size_t len = strlen( bdb->bi_dbenv_home );
strcpy( dir, bdb->bi_dbenv_home );
strcat( &dir[len], BDB_TMP_SUBDIR );
rc = bdb->bi_dbenv->set_tmp_dir( bdb->bi_dbenv, dir );
if( rc != 0 ) {
Debug( LDAP_DEBUG_ANY,
2000-09-19 22:01:05 -04:00
"bi_back_db_open: set_tmp_dir(%s) failed: %s (%d)\n",
dir, db_strerror(rc), rc );
return rc;
}
2000-09-18 17:35:08 -04:00
2000-09-19 22:01:05 -04:00
strcat( &dir[len], BDB_LG_SUBDIR );
2000-09-18 17:19:19 -04:00
2000-09-19 22:01:05 -04:00
rc = bdb->bi_dbenv->set_lg_dir( bdb->bi_dbenv, dir );
if( rc != 0 ) {
Debug( LDAP_DEBUG_ANY,
"bi_back_db_open: set_lg_dir(%s) failed: %s (%d)\n",
dir, db_strerror(rc), rc );
return rc;
}
2000-09-18 17:19:19 -04:00
2000-09-19 22:01:05 -04:00
strcat( &dir[len], BDB_DATA_SUBDIR );
rc = bdb->bi_dbenv->set_data_dir( bdb->bi_dbenv, dir );
if( rc != 0 ) {
Debug( LDAP_DEBUG_ANY,
"bi_back_db_open: set_data_dir(%s) failed: %s (%d)\n",
dir, db_strerror(rc), rc );
return rc;
}
2000-09-18 17:19:19 -04:00
}
rc = bdb->bi_dbenv->open( bdb->bi_dbenv,
bdb->bi_dbenv_home,
flags | bdb->bi_dbenv_xflags,
bdb->bi_dbenv_mode );
2000-09-18 14:51:07 -04:00
if( rc != 0 ) {
Debug( LDAP_DEBUG_ANY,
2000-09-20 03:21:09 -04:00
"bi_back_db_open: dbenv_open(%s) failed: %s (%d)\n",
bdb->bi_dbenv_home, db_strerror(rc), rc );
2000-09-18 14:51:07 -04:00
return rc;
}
2000-09-20 03:21:09 -04:00
flags = DB_THREAD;
#if 0
if( be->be_read_only ) {
flags |= DB_RDONLY;
} else
#endif
{
flags |= DB_CREATE;
}
/* open (and create) main database */
for( i = 0; i < BDB_INDICES; i++ ) {
struct bdb_db_info *db;
db = (struct bdb_db_info *) ch_calloc(1, sizeof(struct bdb_db_info));
rc = db_create( &db->bdi_db, bdb->bi_dbenv, 0 );
if( rc != 0 ) {
Debug( LDAP_DEBUG_ANY,
"bi_back_db_open: db_create(%s) failed: %s (%d)\n",
bdb->bi_dbenv_home, db_strerror(rc), rc );
return rc;
}
rc = db->bdi_db->open( db->bdi_db,
bdbi_dbnames[i],
bdbi_dbnames[i],
DB_BTREE,
flags,
bdb->bi_dbenv_mode );
if( rc != 0 ) {
Debug( LDAP_DEBUG_ANY,
"bi_back_db_open: db_open(%s) failed: %s (%d)\n",
bdb->bi_dbenv_home, db_strerror(rc), rc );
return rc;
}
}
/* <insert> open (and create) index databases */
2000-09-19 22:01:05 -04:00
2000-09-18 14:51:07 -04:00
return 0;
}
2000-09-18 21:59:08 -04:00
static int
2000-09-20 03:21:09 -04:00
bi_back_db_close( BackendDB *be )
2000-09-18 14:51:07 -04:00
{
int rc;
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
2000-09-18 14:51:07 -04:00
/* force a checkpoint */
rc = txn_checkpoint( bdb->bi_dbenv, 0, 0, DB_FORCE );
if( rc != 0 ) {
Debug( LDAP_DEBUG_ANY,
"bi_back_db_destroy: txn_checkpoint failed: %s (%d)\n",
db_strerror(rc), rc, 0 );
return rc;
}
2000-09-18 14:51:07 -04:00
2000-09-20 03:21:09 -04:00
while( bdb->bi_ndatabases-- ) {
rc = bdb->bi_databases[bdb->bi_ndatabases]->bdi_db->close(
bdb->bi_databases[bdb->bi_ndatabases]->bdi_db, 0 );
}
return 0;
}
static int
bi_back_db_destroy( BackendDB *be )
{
int rc;
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
/* close db environment */
rc = bdb->bi_dbenv->close( bdb->bi_dbenv, 0 );
bdb->bi_dbenv = NULL;
2000-09-18 14:51:07 -04:00
if( rc != 0 ) {
Debug( LDAP_DEBUG_ANY,
"bi_back_db_destroy: close failed: %s (%d)\n",
2000-09-18 14:51:07 -04:00
db_strerror(rc), rc, 0 );
return rc;
}
return 0;
}
2000-09-18 21:59:08 -04:00
#ifdef SLAPD_BDB_DYNAMIC
2000-09-19 16:13:41 -04:00
int back_bdb_LTX_init_module( int argc, char *argv[] ) {
2000-09-18 21:59:08 -04:00
BackendInfo bi;
memset( &bi, '\0', sizeof(bi) );
bi.bi_type = "bdb";
bi.bi_init = bi_back_initialize;
2000-09-18 21:59:08 -04:00
backend_add( &bi );
return 0;
}
#endif /* SLAPD_BDB_DYNAMIC */
int
2000-09-19 16:13:41 -04:00
bdb_back_initialize(
2000-09-18 21:59:08 -04:00
BackendInfo *bi
)
{
static char *controls[] = {
LDAP_CONTROL_MANAGEDSAIT,
NULL
};
{ /* version check */
int major, minor, patch;
char *version = db_version( &major, &minor, &patch );
if( major != DB_VERSION_MAJOR ||
minor != DB_VERSION_MINOR ||
patch < DB_VERSION_PATCH )
{
Debug( LDAP_DEBUG_ANY,
"bi_back_initialize: version mismatch\n"
2000-09-18 21:59:08 -04:00
"\texpected: " DB_VERSION_STRING "\n"
"\tgot: %s \n", version, 0, 0 );
}
Debug( LDAP_DEBUG_ANY, "bi_back_initialize: %s\n",
2000-09-18 21:59:08 -04:00
version, 0, 0 );
}
bi->bi_controls = controls;
bi->bi_open = bi_back_open;
bi->bi_close = bi_back_close;
2000-09-18 21:59:08 -04:00
bi->bi_config = 0;
bi->bi_destroy = bi_back_destroy;
2000-09-18 21:59:08 -04:00
bi->bi_db_init = bi_back_db_init;
2000-09-20 03:21:09 -04:00
bi->bi_db_config = 0;
bi->bi_db_open = bi_back_db_open;
bi->bi_db_close = bi_back_db_close;
bi->bi_db_destroy = bi_back_db_destroy;
2000-09-20 03:21:09 -04:00
#if 0
bi->bi_op_bind = bi_back_bind;
bi->bi_op_unbind = bi_back_unbind;
bi->bi_op_search = bi_back_search;
bi->bi_op_compare = bi_back_compare;
bi->bi_op_modify = bi_back_modify;
bi->bi_op_modrdn = bi_back_modrdn;
bi->bi_op_add = bi_back_add;
bi->bi_op_delete = bi_back_delete;
bi->bi_op_abandon = bi_back_abandon;
bi->bi_extended = bi_back_extended;
bi->bi_entry_release_rw = bi_back_entry_release_rw;
bi->bi_acl_group = bi_back_group;
bi->bi_acl_attribute = bi_back_attribute;
bi->bi_chk_referrals = bi_back_referrals;
2000-09-20 03:21:09 -04:00
#endif
2000-09-18 21:59:08 -04:00
/*
* hooks for slap tools
*/
2000-09-20 03:21:09 -04:00
bi->bi_tool_entry_open = bdb_tool_entry_open;
bi->bi_tool_entry_close = bdb_tool_entry_close;
bi->bi_tool_entry_first = bdb_tool_entry_next;
bi->bi_tool_entry_next = bdb_tool_entry_next;
bi->bi_tool_entry_get = bdb_tool_entry_get;
bi->bi_tool_entry_put = bdb_tool_entry_put;
bi->bi_tool_entry_reindex = 0;
bi->bi_tool_sync = 0;
2000-09-18 21:59:08 -04:00
bi->bi_connection_init = 0;
bi->bi_connection_destroy = 0;
return 0;
}