openldap/servers/slapd/back-ldbm/ldbm.c

1212 lines
22 KiB
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* ldbm.c - ldap dbm compatibility routines */
/* $OpenLDAP$ */
2003-11-26 13:42:11 +08:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
2004-01-02 03:15:16 +08:00
* Copyright 1998-2004 The OpenLDAP Foundation.
2003-11-26 13:42:11 +08:00
* Portions Copyright 1998-2003 Kurt D. Zeilenga.
* Portions Copyright 1998-2001 Net Boolean Incorporated.
* 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-05 07:57:27 +08:00
*/
2003-11-26 13:42:11 +08:00
/* ACKNOWLEDGEMENTS:
* This work was originally developed by the University of Michigan
* (as part of U-MICH LDAP). Additional significant contributors
* include:
* Gary Williams
* Howard Chu
* Juan Gomez
* Kurt D. Zeilenga
* Kurt Spanier
* Mark Whitehouse
* Randy Kundee
*/
1998-10-25 10:02:31 +08:00
#include "portable.h"
1998-08-09 08:43:13 +08:00
1998-10-25 10:02:31 +08:00
#ifdef SLAPD_LDBM
1998-08-09 08:43:13 +08:00
1998-10-25 10:02:31 +08:00
#include <stdio.h>
1999-06-03 08:37:44 +08:00
#include <ac/stdlib.h>
#include <ac/string.h>
1998-10-25 10:02:31 +08:00
#include <ac/errno.h>
1998-08-09 08:43:13 +08:00
1998-10-25 10:02:31 +08:00
#include "ldbm.h"
#include "ldap_pvt_thread.h"
1998-08-09 08:43:13 +08:00
void
ldbm_datum_free( LDBM ldbm, Datum data )
{
if ( data.dptr ) {
free( data.dptr );
2000-06-11 06:39:30 +08:00
memset( &data, '\0', sizeof( Datum ));
data.dptr = NULL;
}
}
1998-08-09 08:43:13 +08:00
Datum
ldbm_datum_dup( LDBM ldbm, Datum data )
{
Datum dup;
ldbm_datum_init( dup );
if ( data.dsize == 0 ) {
dup.dsize = 0;
dup.dptr = NULL;
return( dup );
}
dup.dsize = data.dsize;
if ( (dup.dptr = (char *) malloc( data.dsize )) != NULL ) {
AC_MEMCPY( dup.dptr, data.dptr, data.dsize );
}
return( dup );
}
static int ldbm_initialized = 0;
#if defined( USE_BERKELEY_CDB )
/* not currently supported */
#define LDBM_RWLOCK_INIT ((void) 0)
#define LDBM_RWLOCK_DESTROY ((void) 0)
#define LDBM_WLOCK ((void) 0)
#define LDBM_WUNLOCK ((void) 0)
#define LDBM_RLOCK ((void) 0)
#define LDBM_RUNLOCK ((void) 0)
#elif defined( HAVE_BERKELEY_DB_THREAD )
static ldap_pvt_thread_rdwr_t ldbm_big_rdwr;
#define LDBM_RWLOCK_INIT (ldap_pvt_thread_rdwr_init( &ldbm_big_rdwr ))
#define LDBM_RWLOCK_DESTROY (ldap_pvt_thread_rdwr_destroy( &ldbm_big_rdwr ))
#define LDBM_WLOCK (ldap_pvt_thread_rdwr_wlock(&ldbm_big_rdwr))
#define LDBM_WUNLOCK (ldap_pvt_thread_rdwr_wunlock(&ldbm_big_rdwr))
#define LDBM_RLOCK (ldap_pvt_thread_rdwr_rlock(&ldbm_big_rdwr))
#define LDBM_RUNLOCK (ldap_pvt_thread_rdwr_runlock(&ldbm_big_rdwr))
2001-05-29 03:43:11 +08:00
#else
static ldap_pvt_thread_mutex_t ldbm_big_mutex;
#define LDBM_RWLOCK_INIT (ldap_pvt_thread_mutex_init( &ldbm_big_mutex ))
#define LDBM_RWLOCK_DESTROY (ldap_pvt_thread_mutex_destroy( &ldbm_big_mutex ))
#define LDBM_WLOCK (ldap_pvt_thread_mutex_lock(&ldbm_big_mutex))
#define LDBM_WUNLOCK (ldap_pvt_thread_mutex_unlock(&ldbm_big_mutex))
#define LDBM_RLOCK LDBM_WLOCK
#define LDBM_RUNLOCK LDBM_WUNLOCK
2001-05-29 03:43:11 +08:00
#endif
#if !defined( HAVE_BERKELEY_DB ) || (DB_VERSION_MAJOR < 3)
/* a dbEnv for BERKELEYv2 */
DB_ENV *ldbm_Env = NULL; /* real or fake, depending on db and version */
#endif
/* Let's make the version comparisons a little easier... */
#undef DB_VERSION_X
#ifdef HAVE_BERKELEY_DB
#define DB_VERSION_X ((DB_VERSION_MAJOR<<16)|(DB_VERSION_MINOR<<8)|DB_VERSION_PATCH)
#endif
/*******************************************************************
* *
* Create some special functions to initialize Berkeley DB for *
* versions greater than 2. *
* *
*******************************************************************/
#if defined( HAVE_BERKELEY_DB ) && (DB_VERSION_MAJOR >= 2)
Vienna Bulk Commit This commit includes many changes. All changes compile under NT but have not been tested under UNIX. A Summary of changes (likely incomplete): NT changes: Removed lint. Clean up configuration support for "Debug", "Release", "SDebug", and "SRelease" configurations. Share output directories for clients, libraries, and slapd. (maybe they should be combined further and moved to build/{,S}{Debug,Release}). Enable threading when _MT is defined. Enable debuging when _DEBUG is defined. Disable setting of NDEBUG under Release/SRelease. Asserts are disabled in <ac/assert.h> when LDAP_DEBUG is not defined. Added 'build/main.dsp' Master project. Removed non-slapd projects from slapd.dsp (see main.dsp). Removed replaced many uses of _WIN32 macro with feature based macros. ldap_cdefs.h changes #define LDAP_CONST const (see below) #define LDAP_F(type) LDAP_F_PRE type LDAP_F_POST To allow specifiers to be added before and after the type declaration. (For DLL handling) LBER/LDAP changes Namespace changes: s/lber_/ber_/ for here and there. s/NAME_ERROR/LDAP_NAME_ERROR/g Deleted NULLMSG and other NULL* macros for namespace reasons. "const" libraries. Installed headers (ie: lber.h, ldap.h) use LDAP_CONST macro. Normally set to 'const' when __STDC__. Can be set externally to enable/disable 'constification' of external interface. Internal interface always uses 'const'. Did not fix warnings in -lldif (in lieu of new LDIF parser). Added _ext API implementations (excepting search and bind). Need to implement ldap_int_get_controls() for reponses with controls. Added numberous assert() checks. LDAP_R _MT defines HAVE_NT_THREADS Added numberous assert() checks. Changed ldap_pthread_t back to unsigned long. Used cast to HANDLE in _join(). LDBM Replaced _WIN32 with HAVE_SYSLOG ud Added version string if MKVERSION is not defined. (MKVERSION needs to be set under UNIX). slapd Made connection sockbuf field a pointer to a sockbuf. This removed slap.h dependency on lber-int.h. lber-int.h now only included by those files needing to mess with the sockbuf. Used ber_* functions/macros to access sockbuf internals whenever possible. Added version string if MKVERSION is not defined. (MKVERSION needs to be set under UNIX). Removed FD_SET unsigned lint slapd/tools Used EXEEXT to added ".exe" to routines. Need to define EXEEXT under UNIX. ldappasswd Added ldappasswd.dsp. Ported to NT. Used getpid() to seed rand(). nt_debug Minor cleanup. Added "portable.h" include and used <ac/*.h> where appropriate. Added const to char* format argument.
1999-05-19 09:12:33 +08:00
void *
ldbm_malloc( size_t size )
{
/* likely should use ber_mem* routines */
return( calloc( 1, size ) );
Vienna Bulk Commit This commit includes many changes. All changes compile under NT but have not been tested under UNIX. A Summary of changes (likely incomplete): NT changes: Removed lint. Clean up configuration support for "Debug", "Release", "SDebug", and "SRelease" configurations. Share output directories for clients, libraries, and slapd. (maybe they should be combined further and moved to build/{,S}{Debug,Release}). Enable threading when _MT is defined. Enable debuging when _DEBUG is defined. Disable setting of NDEBUG under Release/SRelease. Asserts are disabled in <ac/assert.h> when LDAP_DEBUG is not defined. Added 'build/main.dsp' Master project. Removed non-slapd projects from slapd.dsp (see main.dsp). Removed replaced many uses of _WIN32 macro with feature based macros. ldap_cdefs.h changes #define LDAP_CONST const (see below) #define LDAP_F(type) LDAP_F_PRE type LDAP_F_POST To allow specifiers to be added before and after the type declaration. (For DLL handling) LBER/LDAP changes Namespace changes: s/lber_/ber_/ for here and there. s/NAME_ERROR/LDAP_NAME_ERROR/g Deleted NULLMSG and other NULL* macros for namespace reasons. "const" libraries. Installed headers (ie: lber.h, ldap.h) use LDAP_CONST macro. Normally set to 'const' when __STDC__. Can be set externally to enable/disable 'constification' of external interface. Internal interface always uses 'const'. Did not fix warnings in -lldif (in lieu of new LDIF parser). Added _ext API implementations (excepting search and bind). Need to implement ldap_int_get_controls() for reponses with controls. Added numberous assert() checks. LDAP_R _MT defines HAVE_NT_THREADS Added numberous assert() checks. Changed ldap_pthread_t back to unsigned long. Used cast to HANDLE in _join(). LDBM Replaced _WIN32 with HAVE_SYSLOG ud Added version string if MKVERSION is not defined. (MKVERSION needs to be set under UNIX). slapd Made connection sockbuf field a pointer to a sockbuf. This removed slap.h dependency on lber-int.h. lber-int.h now only included by those files needing to mess with the sockbuf. Used ber_* functions/macros to access sockbuf internals whenever possible. Added version string if MKVERSION is not defined. (MKVERSION needs to be set under UNIX). Removed FD_SET unsigned lint slapd/tools Used EXEEXT to added ".exe" to routines. Need to define EXEEXT under UNIX. ldappasswd Added ldappasswd.dsp. Ported to NT. Used getpid() to seed rand(). nt_debug Minor cleanup. Added "portable.h" include and used <ac/*.h> where appropriate. Added const to char* format argument.
1999-05-19 09:12:33 +08:00
}
#ifdef LDAP_SYSLOG
#include <ac/syslog.h>
#endif
static void
#if DB_VERSION_X < 0x040300
ldbm_db_errcall( const char *prefix, char *message )
#else
ldbm_db_errcall( const DB_ENV *env, const char *prefix, char *message )
#endif
{
#ifdef LDAP_SYSLOG
2000-09-20 08:27:47 +08:00
syslog( LOG_INFO, "ldbm: %s %s", prefix, message );
1999-04-02 00:06:08 +08:00
#endif
}
int ldbm_initialize( const char* home )
{
2001-12-09 10:34:45 +08:00
#if DB_VERSION_MAJOR < 3
int err;
1999-09-07 02:45:39 +08:00
u_int32_t envFlags;
2001-12-09 10:34:45 +08:00
#endif
if(ldbm_initialized++) return 1;
2001-06-08 00:11:59 +08:00
{
char *version;
2004-02-13 08:53:02 +08:00
#ifdef HAVE_EBCDIC
char v2[1024];
#endif
2001-06-08 00:11:59 +08:00
int major, minor, patch;
version = db_version( &major, &minor, &patch );
2004-02-13 08:53:02 +08:00
#ifdef HAVE_EBCDIC
strcpy( v2, version );
__etoa( v2 );
version = v2;
#endif
2001-06-08 00:11:59 +08:00
if( major != DB_VERSION_MAJOR ||
2001-06-08 00:15:25 +08:00
minor < DB_VERSION_MINOR )
2001-06-08 00:11:59 +08:00
{
#ifdef LDAP_SYSLOG
syslog( LOG_INFO,
2001-06-08 00:15:25 +08:00
"ldbm_initialize(): version mismatch\nexpected: %s\ngot: %s\n",
DB_VERSION_STRING, version );
2001-06-08 00:11:59 +08:00
#endif
return 1;
}
}
#if DB_VERSION_MAJOR < 3
2000-05-26 13:47:02 +08:00
ldbm_Env = calloc( 1, sizeof( DB_ENV ));
if( ldbm_Env == NULL ) return 1;
ldbm_Env->db_errcall = ldbm_db_errcall;
ldbm_Env->db_errpfx = "==>";
envFlags = DB_CREATE | DB_USE_ENVIRON;
2001-05-29 03:43:11 +08:00
/* add optional flags */
#ifdef DB_PRIVATE
2001-05-29 03:43:11 +08:00
envFlags |= DB_PRIVATE;
2000-09-12 01:49:25 +08:00
#endif
#ifdef HAVE_BERKELEY_DB_THREAD
envFlags |= DB_THREAD;
#endif
err = db_appinit( home, NULL, ldbm_Env, envFlags );
2000-05-26 13:47:02 +08:00
if ( err ) {
#ifdef LDAP_SYSLOG
syslog( LOG_INFO, "ldbm_initialize(): "
2001-10-13 08:24:40 +08:00
"FATAL error (%d) in db_appinit()\n", err );
1999-04-02 00:06:08 +08:00
#endif
return( 1 );
}
2001-09-04 03:23:05 +08:00
#endif
2000-05-26 13:47:02 +08:00
LDBM_RWLOCK_INIT;
return 0;
}
int ldbm_shutdown( void )
{
if( !ldbm_initialized ) return 1;
2001-09-04 03:23:05 +08:00
#if DB_VERSION_MAJOR < 3
db_appexit( ldbm_Env );
#endif
LDBM_RWLOCK_DESTROY;
return 0;
}
#else /* some DB other than Berkeley V2 or greater */
int ldbm_initialize( const char * home )
{
if(ldbm_initialized++) return 1;
LDBM_RWLOCK_INIT;
return 0;
}
int ldbm_shutdown( void )
{
if( !ldbm_initialized ) return 1;
LDBM_RWLOCK_DESTROY;
return 0;
}
#endif /* HAVE_BERKELEY_DB */
#if defined( HAVE_BERKELEY_DB ) && (DB_VERSION_MAJOR >= 3)
DB_ENV *ldbm_initialize_env(const char *home, int dbcachesize, int *envdirok)
{
DB_ENV *env = NULL;
int err;
u_int32_t envFlags;
2003-05-23 07:22:22 +08:00
#ifdef HAVE_EBCDIC
char n2[2048];
#endif
err = db_env_create( &env, 0 );
if ( err ) {
#ifdef LDAP_SYSLOG
syslog( LOG_INFO, "ldbm_initialize_env(): "
"FATAL error in db_env_create() : %s (%d)\n",
db_strerror( err ), err );
#endif
return NULL;
}
#if DB_VERSION_X >= 0x030300
2001-12-11 00:26:32 +08:00
/* This interface appeared in 3.3 */
2001-10-04 11:36:48 +08:00
env->set_alloc( env, ldbm_malloc, NULL, NULL );
#endif
env->set_errcall( env, ldbm_db_errcall );
env->set_errpfx( env, "==>" );
if (dbcachesize) {
env->set_cachesize( env, 0, dbcachesize, 0 );
}
envFlags = DB_CREATE | DB_INIT_MPOOL | DB_USE_ENVIRON;
#ifdef DB_PRIVATE
envFlags |= DB_PRIVATE;
#endif
#ifdef DB_MPOOL_PRIVATE
envFlags |= DB_MPOOL_PRIVATE;
#endif
#ifdef HAVE_BERKELEY_DB_THREAD
envFlags |= DB_THREAD;
#endif
2003-05-23 07:22:22 +08:00
#ifdef HAVE_EBCDIC
strncpy(n2, home, sizeof(n2)-1);
n2[sizeof(n2)-1] = '\0';
__atoe(n2);
home = n2;
#endif
#if DB_VERSION_X >= 0x030100
err = env->open( env, home, envFlags, 0 );
#else
/* 3.0.x requires an extra argument */
err = env->open( env, home, NULL, envFlags, 0 );
#endif
if ( err != 0 ) {
#ifdef LDAP_SYSLOG
syslog( LOG_INFO, "ldbm_initialize_env(): "
"FATAL error in dbEnv->open() : %s (%d)\n",
db_strerror( err ), err );
#endif
env->close( env, 0 );
return NULL;
}
*envdirok = 1;
return env;
}
void ldbm_shutdown_env(DB_ENV *env)
{
env->close( env, 0 );
}
#else
DB_ENV *ldbm_initialize_env(const char *home, int dbcachesize, int *envdirok)
{
return ldbm_Env;
}
void ldbm_shutdown_env(DB_ENV *env)
{
}
#endif
#if defined( LDBM_USE_DBHASH ) || defined( LDBM_USE_DBBTREE )
/*****************************************************************
* *
* use berkeley db hash or btree package *
* *
*****************************************************************/
LDBM
ldbm_open( DB_ENV *env, char *name, int rw, int mode, int dbcachesize )
{
LDBM ret = NULL;
#ifdef HAVE_EBCDIC
char n2[2048];
#endif
#if DB_VERSION_MAJOR >= 3
int err;
LDBM_WLOCK;
err = db_create( &ret, env, 0 );
if ( err != 0 ) {
(void)ret->close(ret, 0);
LDBM_WUNLOCK;
2001-06-08 00:24:46 +08:00
return NULL;
}
#if DB_VERSION_X < 0x030300
2001-10-10 03:54:38 +08:00
ret->set_malloc( ret, ldbm_malloc );
#endif
ret->set_pagesize( ret, DEFAULT_DB_PAGE_SIZE );
/* likely should use ber_mem* routines */
#ifdef HAVE_EBCDIC
strncpy(n2, name, sizeof(n2)-1);
n2[sizeof(n2)-1] = '\0';
__atoe(n2);
name = n2;
#endif
#if DB_VERSION_X >= 0x040111
2002-08-22 12:00:06 +08:00
err = ret->open( ret, NULL, name, NULL, DB_TYPE, rw, mode);
#else
err = ret->open( ret, name, NULL, DB_TYPE, rw, mode);
2002-08-22 12:00:06 +08:00
#endif
if ( err != 0 ) {
2001-06-08 00:24:46 +08:00
int tmp = errno;
(void)ret->close(ret, 0);
2001-06-08 00:24:46 +08:00
errno = tmp;
LDBM_WUNLOCK;
return NULL;
}
2001-06-08 00:24:46 +08:00
LDBM_WUNLOCK;
#elif DB_VERSION_MAJOR >= 2
DB_INFO dbinfo;
2000-06-11 06:39:30 +08:00
memset( &dbinfo, '\0', sizeof( dbinfo ));
#if DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR == 4
/*
* BerkeleyDB 2.4 do not allow db_cachesize
* to be specified if an DB_ENV is.
*/
#else
/* set db_cachesize of MPOOL is NOT being used. */
if (( ldbm_Env == NULL ) || ( ldbm_Env->mp_info == NULL )) {
dbinfo.db_cachesize = dbcachesize;
}
#endif
dbinfo.db_pagesize = DEFAULT_DB_PAGE_SIZE;
dbinfo.db_malloc = ldbm_malloc;
LDBM_WLOCK;
(void) db_open( name, DB_TYPE, rw, mode, ldbm_Env, &dbinfo, &ret );
LDBM_WUNLOCK;
#else
1998-08-09 08:43:13 +08:00
void *info;
BTREEINFO binfo;
HASHINFO hinfo;
if ( DB_TYPE == DB_HASH ) {
memset( (char *) &hinfo, '\0', sizeof(hinfo) );
hinfo.cachesize = dbcachesize;
info = &hinfo;
} else if ( DB_TYPE == DB_BTREE ) {
memset( (char *) &binfo, '\0', sizeof(binfo) );
binfo.cachesize = dbcachesize;
info = &binfo;
} else {
info = NULL;
}
LDBM_WLOCK;
1998-08-09 08:43:13 +08:00
ret = dbopen( name, rw, mode, DB_TYPE, info );
LDBM_WUNLOCK;
#endif
2001-06-08 00:24:46 +08:00
return ret;
1998-08-09 08:43:13 +08:00
}
void
ldbm_close( LDBM ldbm )
{
LDBM_WLOCK;
2001-12-11 00:26:32 +08:00
#if DB_VERSION_MAJOR >= 2
ldbm->close( ldbm, 0 );
#else
2001-12-11 00:26:32 +08:00
ldbm->close( ldbm );
#endif
LDBM_WUNLOCK;
1998-08-09 08:43:13 +08:00
}
void
ldbm_sync( LDBM ldbm )
{
LDBM_WLOCK;
1998-08-09 08:43:13 +08:00
(*ldbm->sync)( ldbm, 0 );
LDBM_WUNLOCK;
1998-08-09 08:43:13 +08:00
}
Datum
ldbm_fetch( LDBM ldbm, Datum key )
{
Datum data;
int rc;
LDBM_RLOCK;
2001-12-11 00:26:32 +08:00
#if DB_VERSION_MAJOR >= 2
ldbm_datum_init( data );
data.flags = DB_DBT_MALLOC;
if ( (rc = ldbm->get( ldbm, NULL, &key, &data, 0 )) != 0 ) {
ldbm_datum_free( ldbm, data );
data.dptr = NULL;
data.dsize = 0;
}
#else
2001-12-11 00:26:32 +08:00
if ( (rc = ldbm->get( ldbm, &key, &data, 0 )) == 0 ) {
/* Berkeley DB 1.85 don't malloc the data for us */
/* duplicate it for to ensure reentrancy */
1998-08-09 08:43:13 +08:00
data = ldbm_datum_dup( ldbm, data );
} else {
data.dptr = NULL;
data.dsize = 0;
}
#endif
1998-08-09 08:43:13 +08:00
LDBM_RUNLOCK;
1998-08-09 08:43:13 +08:00
return( data );
}
int
ldbm_store( LDBM ldbm, Datum key, Datum data, int flags )
{
int rc;
LDBM_WLOCK;
2001-12-11 00:26:32 +08:00
#if DB_VERSION_MAJOR >= 2
rc = ldbm->put( ldbm, NULL, &key, &data, flags & ~LDBM_SYNC );
rc = (-1) * rc;
#else
2001-12-11 00:26:32 +08:00
rc = ldbm->put( ldbm, &key, &data, flags & ~LDBM_SYNC );
#endif
1998-08-09 08:43:13 +08:00
if ( flags & LDBM_SYNC )
2001-12-11 00:26:32 +08:00
ldbm->sync( ldbm, 0 );
LDBM_WUNLOCK;
1998-08-09 08:43:13 +08:00
return( rc );
}
int
ldbm_delete( LDBM ldbm, Datum key )
{
int rc;
LDBM_WLOCK;
2001-12-11 00:26:32 +08:00
#if DB_VERSION_MAJOR >= 2
rc = ldbm->del( ldbm, NULL, &key, 0 );
rc = (-1) * rc;
#else
2001-12-11 00:26:32 +08:00
rc = ldbm->del( ldbm, &key, 0 );
#endif
2001-12-11 00:26:32 +08:00
ldbm->sync( ldbm, 0 );
LDBM_WUNLOCK;
1998-08-09 08:43:13 +08:00
return( rc );
}
Datum
ldbm_firstkey( LDBM ldbm, LDBMCursor **dbch )
1998-08-09 08:43:13 +08:00
{
Datum key, data;
int rc;
1998-08-09 08:43:13 +08:00
#if DB_VERSION_MAJOR >= 2
LDBMCursor *dbci;
ldbm_datum_init( key );
ldbm_datum_init( data );
key.flags = data.flags = DB_DBT_MALLOC;
LDBM_RLOCK;
/* acquire a cursor for the DB */
# if DB_VERSION_X >= 0x020600
rc = ldbm->cursor( ldbm, NULL, &dbci, 0 );
# else
2001-12-11 00:26:32 +08:00
rc = ldbm->cursor( ldbm, NULL, &dbci );
# endif
if( rc ) {
key.dptr = NULL;
} else {
*dbch = dbci;
2001-12-11 00:26:32 +08:00
if ( dbci->c_get( dbci, &key, &data, DB_NEXT ) == 0 ) {
ldbm_datum_free( ldbm, data );
} else {
key.dptr = NULL;
key.dsize = 0;
}
}
LDBM_RUNLOCK;
#else
LDBM_RLOCK;
2001-12-11 00:26:32 +08:00
rc = ldbm->seq( ldbm, &key, &data, R_FIRST );
if ( rc == 0 ) {
1998-08-09 08:43:13 +08:00
key = ldbm_datum_dup( ldbm, key );
} else {
1998-08-09 08:43:13 +08:00
key.dptr = NULL;
key.dsize = 0;
}
LDBM_RUNLOCK;
#endif
1998-08-09 08:43:13 +08:00
return( key );
}
Datum
ldbm_nextkey( LDBM ldbm, Datum key, LDBMCursor *dbcp )
1998-08-09 08:43:13 +08:00
{
int rc;
1998-08-09 08:43:13 +08:00
Datum data;
LDBM_RLOCK;
#if DB_VERSION_MAJOR >= 2
ldbm_datum_init( data );
ldbm_datum_free( ldbm, key );
key.flags = data.flags = DB_DBT_MALLOC;
2001-12-11 00:26:32 +08:00
rc = dbcp->c_get( dbcp, &key, &data, DB_NEXT );
if ( rc == 0 ) {
ldbm_datum_free( ldbm, data );
} else
#else
2001-12-11 00:26:32 +08:00
rc = ldbm->seq( ldbm, &key, &data, R_NEXT );
if ( rc == 0 ) {
1998-08-09 08:43:13 +08:00
key = ldbm_datum_dup( ldbm, key );
} else
#endif
{
1998-08-09 08:43:13 +08:00
key.dptr = NULL;
key.dsize = 0;
}
LDBM_RUNLOCK;
1998-08-09 08:43:13 +08:00
return( key );
}
int
ldbm_errno( LDBM ldbm )
{
return( errno );
}
/******************************************************************
* *
* END Berkeley section *
* *
******************************************************************/
1998-10-25 10:02:31 +08:00
#elif defined( HAVE_GDBM )
#ifdef HAVE_ST_BLKSIZE
1998-10-25 10:02:31 +08:00
#include <sys/stat.h>
#endif
1998-10-25 10:02:31 +08:00
/*****************************************************************
* *
* use gdbm *
1998-10-25 10:02:31 +08:00
* *
*****************************************************************/
LDBM
ldbm_open( DB_ENV *env, char *name, int rw, int mode, int dbcachesize )
1998-10-25 10:02:31 +08:00
{
LDBM db;
1999-04-20 01:56:48 +08:00
#ifdef HAVE_ST_BLKSIZE
struct stat st;
#endif
#ifdef HAVE_EBCDIC
char n2[2048];
strncpy(n2, name, sizeof(n2)-1);
n2[sizeof(n2)-1] = '\0';
__atoe(n2);
name = n2;
#endif
1998-10-25 10:02:31 +08:00
LDBM_WLOCK;
if ( (db = gdbm_open( name, 0, rw | GDBM_FAST, mode, 0 )) == NULL ) {
LDBM_WUNLOCK;
1998-10-25 10:02:31 +08:00
return( NULL );
}
#ifdef HAVE_ST_BLKSIZE
1998-10-25 10:02:31 +08:00
if ( dbcachesize > 0 && stat( name, &st ) == 0 ) {
dbcachesize /= st.st_blksize;
if( dbcachesize == 0 ) dbcachesize = 1;
1998-10-25 10:02:31 +08:00
gdbm_setopt( db, GDBM_CACHESIZE, &dbcachesize, sizeof(int) );
}
#else
if ( dbcachesize > 0 ) {
dbcachesize /= 4096;
if( dbcachesize == 0 ) dbcachesize = 1;
gdbm_setopt( db, GDBM_CACHESIZE, &dbcachesize, sizeof(int) );
}
#endif
1998-10-25 10:02:31 +08:00
LDBM_WUNLOCK;
1998-10-25 10:02:31 +08:00
return( db );
}
void
ldbm_close( LDBM ldbm )
{
LDBM_WLOCK;
1998-10-25 10:02:31 +08:00
gdbm_close( ldbm );
LDBM_WUNLOCK;
1998-10-25 10:02:31 +08:00
}
void
ldbm_sync( LDBM ldbm )
{
LDBM_WLOCK;
1998-10-25 10:02:31 +08:00
gdbm_sync( ldbm );
LDBM_WUNLOCK;
1998-10-25 10:02:31 +08:00
}
Datum
ldbm_fetch( LDBM ldbm, Datum key )
{
Datum d;
LDBM_RLOCK;
d = gdbm_fetch( ldbm, key );
LDBM_RUNLOCK;
return d;
1998-10-25 10:02:31 +08:00
}
int
ldbm_store( LDBM ldbm, Datum key, Datum data, int flags )
{
int rc;
LDBM_WLOCK;
1998-10-25 10:02:31 +08:00
rc = gdbm_store( ldbm, key, data, flags & ~LDBM_SYNC );
if ( flags & LDBM_SYNC )
gdbm_sync( ldbm );
LDBM_WUNLOCK;
1998-10-25 10:02:31 +08:00
return( rc );
}
int
ldbm_delete( LDBM ldbm, Datum key )
{
int rc;
LDBM_WLOCK;
1998-10-25 10:02:31 +08:00
rc = gdbm_delete( ldbm, key );
gdbm_sync( ldbm );
LDBM_WUNLOCK;
1998-10-25 10:02:31 +08:00
return( rc );
}
Datum
ldbm_firstkey( LDBM ldbm, LDBMCursor **dbcp )
1998-10-25 10:02:31 +08:00
{
Datum d;
LDBM_RLOCK;
d = gdbm_firstkey( ldbm );
LDBM_RUNLOCK;
2000-02-11 10:05:14 +08:00
if ( d.dptr != NULL ) {
*dbcp = (Datum *) malloc( sizeof( Datum ) );
**dbcp = ldbm_datum_dup( ldbm, d );
}
return d;
1998-10-25 10:02:31 +08:00
}
Datum
ldbm_nextkey( LDBM ldbm, Datum key, LDBMCursor *dbcp )
1998-10-25 10:02:31 +08:00
{
Datum d;
LDBM_RLOCK;
2000-02-11 10:05:14 +08:00
d = gdbm_nextkey( ldbm, *dbcp );
LDBM_RUNLOCK;
2000-02-11 10:05:14 +08:00
ldbm_datum_free( ldbm, *dbcp );
if ( d.dptr != NULL ) {
*dbcp = ldbm_datum_dup( ldbm, d );
} else {
free( dbcp );
}
return d;
1998-10-25 10:02:31 +08:00
}
int
ldbm_errno( LDBM ldbm )
{
int err;
LDBM_WLOCK;
err = gdbm_errno;
LDBM_WUNLOCK;
return( err );
1998-10-25 10:02:31 +08:00
}
1998-08-09 08:43:13 +08:00
1999-03-30 12:39:08 +08:00
#elif HAVE_MDBM
/* MMAPED DBM HASHING DATABASE */
1999-06-03 08:37:44 +08:00
#include <ac/string.h>
1999-03-30 12:39:08 +08:00
/* #define MDBM_DEBUG */
#ifdef MDBM_DEBUG
#include <stdio.h>
#endif
#define NO_NULL_KEY
/* #define MDBM_CHAIN */
#ifdef MDBM_CHAIN
/* Use chaining */
#define mdbm_store mdbm_chain_store
#define mdbm_fetch mdbm_chain_fetch
#define mdbm_delete mdbm_chain_delete
#define mdbm_first mdbm_chain_first
#define mdbm_next mdbm_chain_next
#endif
#define MDBM_PG_SZ (4*1024)
/*****************************************************************
* *
* use mdbm *
* *
*****************************************************************/
LDBM
ldbm_open( DB_ENV *env, char *name, int rw, int mode, int dbcachesize )
1999-03-30 12:39:08 +08:00
{
LDBM db;
#ifdef MDBM_DEBUG
fprintf( stdout,
"==>(mdbm)ldbm_open(name=%s,rw=%x,mode=%x,cachesize=%d)\n",
name ? name : "NULL", rw, mode, dbcachesize );
fflush( stdout );
#endif
LDBM_WLOCK; /* We need locking here, this is the only non-thread
* safe function we have. */
1999-03-30 12:39:08 +08:00
if ( (db = mdbm_open( name, rw, mode, MDBM_PG_SZ )) == NULL ) {
LDBM_WUNLOCK;
1999-03-30 12:39:08 +08:00
#ifdef MDBM_DEBUG
fprintf( stdout, "<==(mdbm)ldbm_open(db=NULL)\n" );
fflush( stdout );
#endif
return( NULL );
}
#ifdef MDBM_CHAIN
(void)mdbm_set_chain(db);
#endif
LDBM_WUNLOCK;
1999-03-30 12:39:08 +08:00
#ifdef MDBM_DEBUG
fprintf( stdout, "<==(mdbm)ldbm_open(db=%p)\n", db );
fflush( stdout );
#endif
return( db );
}
1999-03-30 12:39:08 +08:00
void
ldbm_close( LDBM ldbm )
{
/* Open and close are not reentrant so we need to use locks here */
#ifdef MDBM_DEBUG
fprintf( stdout,
"==>(mdbm)ldbm_close(db=%p)\n", ldbm );
fflush( stdout );
#endif
LDBM_WLOCK;
1999-03-30 12:39:08 +08:00
mdbm_close( ldbm );
LDBM_WUNLOCK;
1999-03-30 12:39:08 +08:00
#ifdef MDBM_DEBUG
fprintf( stdout, "<==(mdbm)ldbm_close()\n" );
fflush( stdout );
#endif
}
1999-03-30 12:39:08 +08:00
void
ldbm_sync( LDBM ldbm )
{
/* XXX: Not sure if this is re-entrant need to check code, if so
* you can leave LOCKS out.
*/
LDBM_WLOCK;
1999-03-30 12:39:08 +08:00
mdbm_sync( ldbm );
LDBM_WUNLOCK;
}
1999-03-30 12:39:08 +08:00
#define MAX_MDBM_RETRY 5
Datum
ldbm_fetch( LDBM ldbm, Datum key )
{
Datum d;
kvpair k;
int retry = 0;
/* This hack is needed because MDBM does not take keys
* which begin with NULL when working in the chaining
* mode.
*/
#ifdef NO_NULL_KEY
k.key.dsize = key.dsize + 1;
1999-06-12 02:56:28 +08:00
k.key.dptr = malloc(k.key.dsize);
1999-03-30 12:39:08 +08:00
*(k.key.dptr) = 'l';
AC_MEMCPY( (void *)(k.key.dptr + 1), key.dptr, key.dsize );
1999-03-30 12:39:08 +08:00
#else
k.key = key;
#endif
k.val.dptr = NULL;
k.val.dsize = 0;
/* LDBM_RLOCK; */
1999-03-30 12:39:08 +08:00
do {
d = mdbm_fetch( ldbm, k );
if ( d.dsize > 0 ) {
if ( k.val.dptr != NULL ) {
free( k.val.dptr );
1999-03-30 12:39:08 +08:00
}
if ( (k.val.dptr = malloc( d.dsize )) != NULL ) {
k.val.dsize = d.dsize;
d = mdbm_fetch( ldbm, k );
} else {
d.dsize = 0;
break;
}
}/* if ( d.dsize > 0 ) */
} while ((d.dsize > k.val.dsize) && (++retry < MAX_MDBM_RETRY));
/* LDBM_RUNLOCK; */
1999-03-30 12:39:08 +08:00
1999-06-12 02:56:28 +08:00
#ifdef NO_NULL_KEY
free(k.key.dptr);
#endif
1999-03-30 12:39:08 +08:00
return d;
}
1999-03-30 12:39:08 +08:00
int
ldbm_store( LDBM ldbm, Datum key, Datum data, int flags )
{
int rc;
Datum int_key; /* Internal key */
#ifdef MDBM_DEBUG
fprintf( stdout,
"==>(mdbm)ldbm_store(db=%p, key(dptr=%p,sz=%d), data(dptr=%p,sz=%d), flags=%x)\n",
ldbm, key.dptr, key.dsize, data.dptr, data.dsize, flags );
fflush( stdout );
#endif
/* LDBM_WLOCK; */
1999-03-30 12:39:08 +08:00
#ifdef NO_NULL_KEY
int_key.dsize = key.dsize + 1;
1999-06-12 02:56:28 +08:00
int_key.dptr = malloc( int_key.dsize );
1999-03-30 12:39:08 +08:00
*(int_key.dptr) = 'l'; /* Must not be NULL !*/
AC_MEMCPY( (void *)(int_key.dptr + 1), key.dptr, key.dsize );
1999-03-30 12:39:08 +08:00
#else
int_key = key;
#endif
rc = mdbm_store( ldbm, int_key, data, flags );
if ( flags & LDBM_SYNC ) {
mdbm_sync( ldbm );
}
/* LDBM_WUNLOCK; */
1999-03-30 12:39:08 +08:00
#ifdef MDBM_DEBUG
fprintf( stdout, "<==(mdbm)ldbm_store(rc=%d)\n", rc );
fflush( stdout );
#endif
1999-06-12 02:56:28 +08:00
#ifdef NO_NULL_KEY
free(int_key.dptr);
#endif
1999-03-30 12:39:08 +08:00
return( rc );
}
1999-03-30 12:39:08 +08:00
int
ldbm_delete( LDBM ldbm, Datum key )
{
int rc;
Datum int_key;
/* LDBM_WLOCK; */
1999-03-30 12:39:08 +08:00
#ifdef NO_NULL_KEY
int_key.dsize = key.dsize + 1;
1999-06-12 02:56:28 +08:00
int_key.dptr = malloc(int_key.dsize);
1999-03-30 12:39:08 +08:00
*(int_key.dptr) = 'l';
AC_MEMCPY( (void *)(int_key.dptr + 1), key.dptr, key.dsize );
1999-03-30 12:39:08 +08:00
#else
int_key = key;
#endif
rc = mdbm_delete( ldbm, int_key );
/* LDBM_WUNLOCK; */
1999-06-12 02:56:28 +08:00
#ifdef NO_NULL_KEY
free(int_key.dptr);
#endif
1999-03-30 12:39:08 +08:00
return( rc );
}
1999-03-30 12:39:08 +08:00
static Datum
ldbm_get_next( LDBM ldbm, kvpair (*fptr)(MDBM *, kvpair) )
{
kvpair out;
kvpair in;
Datum ret;
size_t sz = MDBM_PAGE_SIZE(ldbm);
#ifdef NO_NULL_KEY
int delta = 1;
#else
int delta = 0;
#endif
/* LDBM_RLOCK; */
1999-03-30 12:39:08 +08:00
in.key.dsize = sz; /* Assume first key in one pg */
1999-06-12 02:56:28 +08:00
in.key.dptr = malloc(sz);
1999-03-30 12:39:08 +08:00
in.val.dptr = NULL; /* Don't need data just key */
in.val.dsize = 0;
ret.dptr = NULL;
ret.dsize = NULL;
out = fptr( ldbm, in );
if (out.key.dsize > 0) {
ret.dsize = out.key.dsize - delta;
1999-03-30 12:39:08 +08:00
if ((ret.dptr = (char *)malloc(ret.dsize)) == NULL) {
ret.dsize = 0;
ret.dptr = NULL;
1999-03-30 12:39:08 +08:00
} else {
AC_MEMCPY(ret.dptr, (void *)(out.key.dptr + delta),
ret.dsize );
1999-03-30 12:39:08 +08:00
}
}
/* LDBM_RUNLOCK; */
1999-06-12 02:56:28 +08:00
free(in.key.dptr);
1999-03-30 12:39:08 +08:00
return ret;
}
1999-03-30 12:39:08 +08:00
Datum
ldbm_firstkey( LDBM ldbm, LDBMCursor **dbcp )
1999-03-30 12:39:08 +08:00
{
return ldbm_get_next( ldbm, mdbm_first );
}
1999-03-30 12:39:08 +08:00
Datum
ldbm_nextkey( LDBM ldbm, Datum key, LDBMCursor *dbcp )
1999-03-30 12:39:08 +08:00
{
/* XXX:
* don't know if this will affect the LDAP server operation
1999-03-30 12:39:08 +08:00
* but mdbm cannot take and input key.
*/
return ldbm_get_next( ldbm, mdbm_next );
}
1999-03-30 12:39:08 +08:00
int
ldbm_errno( LDBM ldbm )
{
/* XXX: best we can do with current mdbm interface */
return( errno );
}
1999-03-30 12:39:08 +08:00
1998-10-25 10:02:31 +08:00
#elif defined( HAVE_NDBM )
1998-08-09 08:43:13 +08:00
/*****************************************************************
* *
1999-03-30 12:39:08 +08:00
* if no gdbm or mdbm, fall back to using ndbm, the standard unix thing *
1998-08-09 08:43:13 +08:00
* *
*****************************************************************/
/* ARGSUSED */
LDBM
ldbm_open( DB_ENV *env, char *name, int rw, int mode, int dbcachesize )
1998-08-09 08:43:13 +08:00
{
LDBM ldbm;
LDBM_WLOCK;
ldbm = dbm_open( name, rw, mode );
LDBM_WUNLOCK;
return( ldbm );
1998-08-09 08:43:13 +08:00
}
void
ldbm_close( LDBM ldbm )
{
LDBM_WLOCK;
1998-08-09 08:43:13 +08:00
dbm_close( ldbm );
LDBM_WUNLOCK;
1998-08-09 08:43:13 +08:00
}
/* ARGSUSED */
void
ldbm_sync( LDBM ldbm )
{
return;
}
Datum
ldbm_fetch( LDBM ldbm, Datum key )
{
Datum d;
LDBM_RLOCK;
d = ldbm_datum_dup( ldbm, dbm_fetch( ldbm, key ) );
LDBM_RUNLOCK;
return d;
1998-08-09 08:43:13 +08:00
}
int
ldbm_store( LDBM ldbm, Datum key, Datum data, int flags )
{
int rc;
LDBM_WLOCK;
rc = dbm_store( ldbm, key, data, flags );
LDBM_WUNLOCK;
return rc;
1998-08-09 08:43:13 +08:00
}
int
ldbm_delete( LDBM ldbm, Datum key )
{
int rc;
LDBM_WLOCK;
rc = dbm_delete( ldbm, key );
LDBM_WUNLOCK;
return rc;
1998-08-09 08:43:13 +08:00
}
Datum
ldbm_firstkey( LDBM ldbm, LDBMCursor **dbcp )
1998-08-09 08:43:13 +08:00
{
Datum d;
LDBM_RLOCK;
d = dbm_firstkey( ldbm );
LDBM_RUNLOCK;
return d;
1998-08-09 08:43:13 +08:00
}
Datum
ldbm_nextkey( LDBM ldbm, Datum key, LDBMCursor *dbcp )
1998-08-09 08:43:13 +08:00
{
Datum d;
LDBM_RLOCK;
d = dbm_nextkey( ldbm );
LDBM_RUNLOCK;
return d;
1998-08-09 08:43:13 +08:00
}
int
ldbm_errno( LDBM ldbm )
{
int err;
LDBM_WLOCK;
err = dbm_error( ldbm );
LDBM_WUNLOCK;
return err;
1998-08-09 08:43:13 +08:00
}
#endif /* ndbm */
1998-10-25 10:02:31 +08:00
#endif /* ldbm */