1998-08-09 08:43:13 +08:00
|
|
|
/* init.c - initialize ldbm backend */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-29 05:08:20 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2005-01-02 04:49:32 +08:00
|
|
|
* Copyright 1998-2005 The OpenLDAP Foundation.
|
2003-11-29 05:08:20 +08: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>.
|
1999-08-07 07:07:46 +08:00
|
|
|
*/
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include "slap.h"
|
|
|
|
#include "back-ldbm.h"
|
2005-04-12 20:35:00 +08:00
|
|
|
#include <ldap_rq.h>
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
int
|
|
|
|
ldbm_back_initialize(
|
|
|
|
BackendInfo *bi
|
|
|
|
)
|
|
|
|
{
|
1999-12-08 12:37:59 +08:00
|
|
|
static char *controls[] = {
|
|
|
|
LDAP_CONTROL_MANAGEDSAIT,
|
2004-12-28 18:54:49 +08:00
|
|
|
#ifdef LDAP_CONTROL_X_PERMISSIVE_MODIFY
|
|
|
|
LDAP_CONTROL_X_PERMISSIVE_MODIFY,
|
|
|
|
#endif
|
1999-12-08 12:37:59 +08:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
bi->bi_controls = controls;
|
|
|
|
|
2004-04-06 05:00:16 +08:00
|
|
|
bi->bi_flags |=
|
|
|
|
SLAP_BFLAG_INCREMENT |
|
|
|
|
#ifdef LDBM_SUBENTRIES
|
|
|
|
SLAP_BFLAG_SUBENTRIES |
|
|
|
|
#endif
|
|
|
|
SLAP_BFLAG_ALIASES |
|
|
|
|
SLAP_BFLAG_REFERRALS;
|
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
bi->bi_open = ldbm_back_open;
|
2001-06-23 05:00:24 +08:00
|
|
|
bi->bi_config = NULL;
|
1999-02-05 17:03:47 +08:00
|
|
|
bi->bi_close = ldbm_back_close;
|
|
|
|
bi->bi_destroy = ldbm_back_destroy;
|
|
|
|
|
|
|
|
bi->bi_db_init = ldbm_back_db_init;
|
|
|
|
bi->bi_db_config = ldbm_back_db_config;
|
|
|
|
bi->bi_db_open = ldbm_back_db_open;
|
|
|
|
bi->bi_db_close = ldbm_back_db_close;
|
|
|
|
bi->bi_db_destroy = ldbm_back_db_destroy;
|
|
|
|
|
|
|
|
bi->bi_op_bind = ldbm_back_bind;
|
2002-01-02 12:32:34 +08:00
|
|
|
bi->bi_op_unbind = 0;
|
1999-02-05 17:03:47 +08:00
|
|
|
bi->bi_op_search = ldbm_back_search;
|
|
|
|
bi->bi_op_compare = ldbm_back_compare;
|
|
|
|
bi->bi_op_modify = ldbm_back_modify;
|
|
|
|
bi->bi_op_modrdn = ldbm_back_modrdn;
|
|
|
|
bi->bi_op_add = ldbm_back_add;
|
|
|
|
bi->bi_op_delete = ldbm_back_delete;
|
2002-01-01 19:38:30 +08:00
|
|
|
bi->bi_op_abandon = 0;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
bi->bi_extended = ldbm_back_extended;
|
|
|
|
|
1999-04-13 14:08:28 +08:00
|
|
|
bi->bi_entry_release_rw = ldbm_back_entry_release_rw;
|
2003-03-26 19:50:03 +08:00
|
|
|
bi->bi_entry_get_rw = ldbm_back_entry_get;
|
2000-06-17 15:45:40 +08:00
|
|
|
bi->bi_chk_referrals = ldbm_back_referrals;
|
2001-12-22 19:50:16 +08:00
|
|
|
bi->bi_operational = ldbm_back_operational;
|
2002-10-27 00:18:31 +08:00
|
|
|
bi->bi_has_subordinates = ldbm_back_hasSubordinates;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
1999-08-18 03:00:59 +08:00
|
|
|
/*
|
|
|
|
* hooks for slap tools
|
|
|
|
*/
|
|
|
|
bi->bi_tool_entry_open = ldbm_tool_entry_open;
|
|
|
|
bi->bi_tool_entry_close = ldbm_tool_entry_close;
|
|
|
|
bi->bi_tool_entry_first = ldbm_tool_entry_first;
|
|
|
|
bi->bi_tool_entry_next = ldbm_tool_entry_next;
|
|
|
|
bi->bi_tool_entry_get = ldbm_tool_entry_get;
|
|
|
|
bi->bi_tool_entry_put = ldbm_tool_entry_put;
|
2000-07-19 10:24:08 +08:00
|
|
|
bi->bi_tool_entry_reindex = ldbm_tool_entry_reindex;
|
1999-08-18 03:00:59 +08:00
|
|
|
bi->bi_tool_sync = ldbm_tool_sync;
|
|
|
|
|
2003-08-30 23:19:35 +08:00
|
|
|
bi->bi_tool_dn2id_get = 0;
|
|
|
|
bi->bi_tool_id2entry_get = 0;
|
|
|
|
bi->bi_tool_entry_modify = 0;
|
|
|
|
|
1999-06-23 20:31:35 +08:00
|
|
|
bi->bi_connection_init = 0;
|
|
|
|
bi->bi_connection_destroy = 0;
|
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_back_destroy(
|
|
|
|
BackendInfo *bi
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_back_open(
|
|
|
|
BackendInfo *bi
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
/* initialize the underlying database system */
|
2001-06-23 05:00:24 +08:00
|
|
|
rc = ldbm_initialize( NULL );
|
1999-02-05 17:03:47 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_back_close(
|
|
|
|
BackendInfo *bi
|
|
|
|
)
|
|
|
|
{
|
1999-04-05 05:39:24 +08:00
|
|
|
/* terminate the underlying database system */
|
1999-02-05 17:03:47 +08:00
|
|
|
ldbm_shutdown();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_back_db_init(
|
1998-08-09 08:43:13 +08:00
|
|
|
Backend *be
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct ldbminfo *li;
|
|
|
|
|
1999-02-08 19:42:14 +08:00
|
|
|
/* allocate backend-database-specific stuff */
|
1998-08-09 08:43:13 +08:00
|
|
|
li = (struct ldbminfo *) ch_calloc( 1, sizeof(struct ldbminfo) );
|
|
|
|
|
|
|
|
/* arrange to read nextid later (on first request for it) */
|
1999-02-03 03:26:00 +08:00
|
|
|
li->li_nextid = NOID;
|
1999-02-05 01:28:49 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/* default cache size */
|
|
|
|
li->li_cache.c_maxsize = DEFAULT_CACHE_SIZE;
|
|
|
|
|
|
|
|
/* default database cache size */
|
|
|
|
li->li_dbcachesize = DEFAULT_DBCACHE_SIZE;
|
|
|
|
|
1999-09-24 03:49:20 +08:00
|
|
|
/* default db mode is with locking */
|
|
|
|
li->li_dblocking = 1;
|
|
|
|
|
|
|
|
/* default db mode is with write synchronization */
|
|
|
|
li->li_dbwritesync = 1;
|
1998-11-07 10:25:32 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/* default file creation mode */
|
2002-02-02 14:24:47 +08:00
|
|
|
li->li_mode = SLAPD_DEFAULT_DB_MODE;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
/* default database directory */
|
2002-02-02 14:24:47 +08:00
|
|
|
li->li_directory = ch_strdup( SLAPD_DEFAULT_DB_DIR );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2001-06-22 02:54:56 +08:00
|
|
|
/* DB_ENV environment pointer for DB3 */
|
|
|
|
li->li_dbenv = 0;
|
|
|
|
|
|
|
|
/* envdirok is turned on by ldbm_initialize_env if DB3 */
|
|
|
|
li->li_envdirok = 0;
|
|
|
|
|
2001-06-28 17:20:33 +08:00
|
|
|
/* syncfreq is 0 if disabled, or # seconds */
|
|
|
|
li->li_dbsyncfreq = 0;
|
|
|
|
|
|
|
|
/* wait up to dbsyncwaitn times if server is busy */
|
|
|
|
li->li_dbsyncwaitn = 12;
|
|
|
|
|
|
|
|
/* delay interval */
|
|
|
|
li->li_dbsyncwaitinterval = 5;
|
|
|
|
|
2005-04-12 20:35:00 +08:00
|
|
|
/* current wait counter */
|
|
|
|
li->li_dbsyncwaitcount = 0;
|
2001-06-28 17:20:33 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/* initialize various mutex locks & condition variables */
|
2002-01-30 01:58:36 +08:00
|
|
|
ldap_pvt_thread_rdwr_init( &li->li_giant_rwlock );
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_init( &li->li_cache.c_mutex );
|
|
|
|
ldap_pvt_thread_mutex_init( &li->li_dbcache_mutex );
|
|
|
|
ldap_pvt_thread_cond_init( &li->li_dbcache_cv );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
be->be_private = li;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_back_db_open(
|
|
|
|
BackendDB *be
|
|
|
|
)
|
|
|
|
{
|
2001-06-22 02:54:56 +08:00
|
|
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
2005-09-04 23:48:44 +08:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = alock_open( &li->li_alock_info, "slapd",
|
|
|
|
li->li_directory, ALOCK_UNIQUE );
|
|
|
|
if ( rc == ALOCK_BUSY ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"ldbm_back_db_open: database already in use\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
return -1;
|
|
|
|
} else if ( rc == ALOCK_RECOVER ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"ldbm_back_db_open: unclean shutdown detected;"
|
|
|
|
" database may be inconsistent!\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
rc = alock_recover( &li->li_alock_info );
|
|
|
|
}
|
|
|
|
if ( rc != ALOCK_CLEAN ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"ldbm_back_db_open: alock package is unstable;"
|
|
|
|
" database may be inconsistent!\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
}
|
2001-06-23 05:00:24 +08:00
|
|
|
li->li_dbenv = ldbm_initialize_env( li->li_directory,
|
|
|
|
li->li_dbcachesize, &li->li_envdirok );
|
2001-06-28 17:20:33 +08:00
|
|
|
|
2005-04-12 20:35:00 +08:00
|
|
|
/* If we're in server mode and a sync frequency was set,
|
|
|
|
* submit a task to perform periodic db syncs.
|
|
|
|
*/
|
|
|
|
if (( slapMode & SLAP_SERVER_MODE ) && li->li_dbsyncfreq > 0 )
|
2001-06-28 17:20:33 +08:00
|
|
|
{
|
2005-04-12 20:35:00 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
|
|
|
|
ldap_pvt_runqueue_insert( &slapd_rq, li->li_dbsyncfreq,
|
2005-04-23 08:28:43 +08:00
|
|
|
ldbm_cache_sync_daemon, be,
|
|
|
|
"ldbm_cache_sync", be->be_suffix[0].bv_val );
|
2005-04-12 20:35:00 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
|
2001-06-28 17:20:33 +08:00
|
|
|
}
|
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_back_db_destroy(
|
|
|
|
BackendDB *be
|
|
|
|
)
|
|
|
|
{
|
|
|
|
/* should free/destroy every in be_private */
|
1999-04-06 09:55:11 +08:00
|
|
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
2001-06-22 02:54:56 +08:00
|
|
|
|
2001-07-17 06:16:24 +08:00
|
|
|
if (li->li_dbenv)
|
|
|
|
ldbm_shutdown_env(li->li_dbenv);
|
2001-06-22 02:54:56 +08:00
|
|
|
|
1999-04-06 09:55:11 +08:00
|
|
|
free( li->li_directory );
|
|
|
|
attr_index_destroy( li->li_attrs );
|
|
|
|
|
2002-01-30 01:58:36 +08:00
|
|
|
ldap_pvt_thread_rdwr_destroy( &li->li_giant_rwlock );
|
1999-04-06 09:55:11 +08:00
|
|
|
ldap_pvt_thread_mutex_destroy( &li->li_cache.c_mutex );
|
|
|
|
ldap_pvt_thread_mutex_destroy( &li->li_dbcache_mutex );
|
|
|
|
ldap_pvt_thread_cond_destroy( &li->li_dbcache_cv );
|
1999-08-20 02:55:01 +08:00
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
free( be->be_private );
|
|
|
|
be->be_private = NULL;
|
1999-08-20 02:55:01 +08:00
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
return 0;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
2004-11-14 02:52:44 +08:00
|
|
|
|
|
|
|
#if SLAPD_LDBM == SLAPD_MOD_DYNAMIC
|
|
|
|
|
2004-11-16 03:45:49 +08:00
|
|
|
/* conditionally define the init_module() function */
|
|
|
|
SLAP_BACKEND_INIT_MODULE( ldbm )
|
2004-11-14 02:52:44 +08:00
|
|
|
|
2004-11-16 03:45:49 +08:00
|
|
|
#endif /* SLAPD_LDBM == SLAPD_MOD_DYNAMIC */
|
2004-11-14 02:52:44 +08:00
|
|
|
|
|
|
|
|