1998-08-08 20:43:13 -04:00
|
|
|
/* init.c - initialize ldbm backend */
|
1999-09-08 15:06:24 -04:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-28 16:08:20 -05:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
*
|
2004-01-01 14:15:16 -05:00
|
|
|
* Copyright 1998-2004 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>.
|
1999-08-06 19:07:46 -04:00
|
|
|
*/
|
1998-08-08 20:43:13 -04:00
|
|
|
|
1998-10-24 21:41:42 -04:00
|
|
|
#include "portable.h"
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
#include <stdio.h>
|
1998-10-24 21:41:42 -04:00
|
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
#include "slap.h"
|
|
|
|
|
#include "back-ldbm.h"
|
|
|
|
|
|
1999-06-24 13:06:34 -04:00
|
|
|
#ifdef SLAPD_LDBM_DYNAMIC
|
|
|
|
|
|
2003-06-12 18:25:20 -04:00
|
|
|
int init_module(int argc, char *argv[]) {
|
1999-08-16 20:28:01 -04:00
|
|
|
BackendInfo bi;
|
1999-06-24 13:06:34 -04:00
|
|
|
|
2000-06-10 18:39:30 -04:00
|
|
|
memset( &bi, '\0', sizeof(bi) );
|
1999-08-16 20:28:01 -04:00
|
|
|
bi.bi_type = "ldbm";
|
|
|
|
|
bi.bi_init = ldbm_back_initialize;
|
1999-06-24 13:06:34 -04:00
|
|
|
|
1999-08-16 20:28:01 -04:00
|
|
|
backend_add(&bi);
|
|
|
|
|
return 0;
|
1999-06-24 13:06:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* SLAPD_LDBM_DYNAMIC */
|
|
|
|
|
|
1999-02-05 04:03:47 -05:00
|
|
|
int
|
|
|
|
|
ldbm_back_initialize(
|
|
|
|
|
BackendInfo *bi
|
|
|
|
|
)
|
|
|
|
|
{
|
1999-12-07 23:37:59 -05:00
|
|
|
static char *controls[] = {
|
|
|
|
|
LDAP_CONTROL_MANAGEDSAIT,
|
2002-05-02 14:56:56 -04:00
|
|
|
LDAP_CONTROL_VALUESRETURNFILTER,
|
1999-12-07 23:37:59 -05:00
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
bi->bi_controls = controls;
|
|
|
|
|
|
1999-02-05 04:03:47 -05:00
|
|
|
bi->bi_open = ldbm_back_open;
|
2001-06-22 17:00:24 -04:00
|
|
|
bi->bi_config = NULL;
|
1999-02-05 04:03:47 -05: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-01 23:32:34 -05:00
|
|
|
bi->bi_op_unbind = 0;
|
1999-02-05 04:03:47 -05: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 06:38:30 -05:00
|
|
|
bi->bi_op_abandon = 0;
|
1999-02-05 04:03:47 -05:00
|
|
|
|
1999-12-07 23:37:59 -05:00
|
|
|
bi->bi_extended = ldbm_back_extended;
|
|
|
|
|
|
1999-04-13 02:08:28 -04:00
|
|
|
bi->bi_entry_release_rw = ldbm_back_entry_release_rw;
|
2003-03-26 06:50:03 -05:00
|
|
|
bi->bi_entry_get_rw = ldbm_back_entry_get;
|
2000-06-17 03:45:40 -04:00
|
|
|
bi->bi_chk_referrals = ldbm_back_referrals;
|
2001-12-22 06:50:16 -05:00
|
|
|
bi->bi_operational = ldbm_back_operational;
|
2002-10-26 12:18:31 -04:00
|
|
|
bi->bi_has_subordinates = ldbm_back_hasSubordinates;
|
1999-02-05 04:03:47 -05:00
|
|
|
|
1999-08-17 15:00:59 -04: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-18 22:24:08 -04:00
|
|
|
bi->bi_tool_entry_reindex = ldbm_tool_entry_reindex;
|
1999-08-17 15:00:59 -04:00
|
|
|
bi->bi_tool_sync = ldbm_tool_sync;
|
|
|
|
|
|
2003-08-30 11:19:35 -04:00
|
|
|
bi->bi_tool_dn2id_get = 0;
|
|
|
|
|
bi->bi_tool_id2entry_get = 0;
|
|
|
|
|
bi->bi_tool_entry_modify = 0;
|
|
|
|
|
|
1999-06-23 08:31:35 -04:00
|
|
|
bi->bi_connection_init = 0;
|
|
|
|
|
bi->bi_connection_destroy = 0;
|
|
|
|
|
|
1999-02-05 04:03:47 -05: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-22 17:00:24 -04:00
|
|
|
rc = ldbm_initialize( NULL );
|
1999-02-05 04:03:47 -05:00
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
ldbm_back_close(
|
|
|
|
|
BackendInfo *bi
|
|
|
|
|
)
|
|
|
|
|
{
|
1999-04-04 17:39:24 -04:00
|
|
|
/* terminate the underlying database system */
|
1999-02-05 04:03:47 -05:00
|
|
|
ldbm_shutdown();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
ldbm_back_db_init(
|
1998-08-08 20:43:13 -04:00
|
|
|
Backend *be
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
struct ldbminfo *li;
|
|
|
|
|
|
2002-01-11 13:26:17 -05:00
|
|
|
/* indicate system schema supported */
|
2002-11-25 18:37:54 -05:00
|
|
|
be->be_flags |=
|
2003-08-07 12:42:40 -04:00
|
|
|
SLAP_BFLAG_INCREMENT |
|
2003-07-14 20:55:58 -04:00
|
|
|
#ifdef LDBM_SUBENTRIES
|
|
|
|
|
SLAP_BFLAG_SUBENTRIES |
|
|
|
|
|
#endif
|
2002-11-25 18:37:54 -05:00
|
|
|
SLAP_BFLAG_ALIASES |
|
|
|
|
|
SLAP_BFLAG_REFERRALS;
|
2002-01-11 13:26:17 -05:00
|
|
|
|
1999-02-08 06:42:14 -05:00
|
|
|
/* allocate backend-database-specific stuff */
|
1998-08-08 20:43:13 -04:00
|
|
|
li = (struct ldbminfo *) ch_calloc( 1, sizeof(struct ldbminfo) );
|
|
|
|
|
|
|
|
|
|
/* arrange to read nextid later (on first request for it) */
|
1999-02-02 14:26:00 -05:00
|
|
|
li->li_nextid = NOID;
|
1999-02-04 12:28:49 -05:00
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
/* default cache size */
|
|
|
|
|
li->li_cache.c_maxsize = DEFAULT_CACHE_SIZE;
|
|
|
|
|
|
|
|
|
|
/* default database cache size */
|
|
|
|
|
li->li_dbcachesize = DEFAULT_DBCACHE_SIZE;
|
|
|
|
|
|
1999-09-23 15:49:20 -04:00
|
|
|
/* default db mode is with locking */
|
|
|
|
|
li->li_dblocking = 1;
|
|
|
|
|
|
|
|
|
|
/* default db mode is with write synchronization */
|
|
|
|
|
li->li_dbwritesync = 1;
|
1998-11-06 21:25:32 -05:00
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
/* default file creation mode */
|
2002-02-02 01:24:47 -05:00
|
|
|
li->li_mode = SLAPD_DEFAULT_DB_MODE;
|
1998-08-08 20:43:13 -04:00
|
|
|
|
|
|
|
|
/* default database directory */
|
2002-02-02 01:24:47 -05:00
|
|
|
li->li_directory = ch_strdup( SLAPD_DEFAULT_DB_DIR );
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2001-06-21 14:54:56 -04: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 05:20:33 -04: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;
|
|
|
|
|
|
|
|
|
|
/* flag to notify ldbm_cache_sync_daemon to shut down */
|
|
|
|
|
li->li_dbshutdown = 0;
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
/* initialize various mutex locks & condition variables */
|
2002-01-29 12:58:36 -05:00
|
|
|
ldap_pvt_thread_rdwr_init( &li->li_giant_rwlock );
|
1999-01-27 23:34:55 -05: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-08 20:43:13 -04:00
|
|
|
|
|
|
|
|
be->be_private = li;
|
1999-02-05 04:03:47 -05:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
ldbm_back_db_open(
|
|
|
|
|
BackendDB *be
|
|
|
|
|
)
|
|
|
|
|
{
|
2001-06-21 14:54:56 -04:00
|
|
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
2001-06-22 17:00:24 -04:00
|
|
|
li->li_dbenv = ldbm_initialize_env( li->li_directory,
|
|
|
|
|
li->li_dbcachesize, &li->li_envdirok );
|
2001-06-28 05:20:33 -04:00
|
|
|
|
|
|
|
|
/* sync thread */
|
|
|
|
|
if ( li->li_dbsyncfreq > 0 )
|
|
|
|
|
{
|
|
|
|
|
int rc;
|
|
|
|
|
rc = ldap_pvt_thread_create( &li->li_dbsynctid,
|
|
|
|
|
0, ldbm_cache_sync_daemon, (void*)be );
|
|
|
|
|
|
|
|
|
|
if ( rc != 0 )
|
|
|
|
|
{
|
2002-04-05 13:38:59 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG ( BACK_LDBM, ERR, "ldbm_back_db_open: sync "
|
|
|
|
|
"ldap_pvt_thread_create failed (%d)\n", rc, 0, 0 );
|
2002-04-05 13:38:59 -05:00
|
|
|
#else
|
2001-06-28 05:20:33 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
|
"sync ldap_pvt_thread_create failed (%d)\n", rc, 0, 0 );
|
2002-04-05 13:38:59 -05:00
|
|
|
#endif
|
2001-06-28 05:20:33 -04:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-02-05 04:03:47 -05:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
ldbm_back_db_destroy(
|
|
|
|
|
BackendDB *be
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
/* should free/destroy every in be_private */
|
1999-04-05 21:55:11 -04:00
|
|
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
2001-06-21 14:54:56 -04:00
|
|
|
|
2001-07-16 18:16:24 -04:00
|
|
|
if (li->li_dbenv)
|
|
|
|
|
ldbm_shutdown_env(li->li_dbenv);
|
2001-06-21 14:54:56 -04:00
|
|
|
|
1999-04-05 21:55:11 -04:00
|
|
|
free( li->li_directory );
|
|
|
|
|
attr_index_destroy( li->li_attrs );
|
|
|
|
|
|
2002-01-29 12:58:36 -05:00
|
|
|
ldap_pvt_thread_rdwr_destroy( &li->li_giant_rwlock );
|
1999-04-05 21:55:11 -04: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-19 14:55:01 -04:00
|
|
|
|
1999-02-05 04:03:47 -05:00
|
|
|
free( be->be_private );
|
|
|
|
|
be->be_private = NULL;
|
1999-08-19 14:55:01 -04:00
|
|
|
|
1999-02-05 04:03:47 -05:00
|
|
|
return 0;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|