1998-08-09 08:43:13 +08:00
|
|
|
/* ldbm.c - ldap dbm compatibility routines */
|
|
|
|
|
1998-09-03 08:50:13 +08:00
|
|
|
/* Patched for Berkeley DB version 2.0; /KSp; 98/02/23
|
|
|
|
*
|
1999-01-05 23:40:58 +08:00
|
|
|
* - DB version 2.6.4b ; 1998/12/28, /KSp
|
1998-09-03 08:50:13 +08:00
|
|
|
* - DB_DBT_MALLOC ; 1998/03/22, /KSp
|
1999-01-05 23:40:58 +08:00
|
|
|
* - basic implementation; 1998/02/23, /KSp
|
1998-09-03 08:50:13 +08:00
|
|
|
*/
|
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
#include "portable.h"
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-01-05 23:40:58 +08:00
|
|
|
#include "syslog.h"
|
|
|
|
|
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>
|
|
|
|
#include <stdlib.h>
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
#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"
|
1999-01-28 12:34:55 +08:00
|
|
|
#include "ldap_pvt_thread.h"
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
#if defined( LDBM_USE_DBHASH ) || defined( LDBM_USE_DBBTREE )
|
|
|
|
|
|
|
|
/*****************************************************************
|
|
|
|
* *
|
|
|
|
* use berkeley db hash or btree package *
|
|
|
|
* *
|
|
|
|
*****************************************************************/
|
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
#ifdef HAVE_BERKELEY_DB2
|
1998-09-03 08:50:13 +08:00
|
|
|
|
1999-02-02 01:37:43 +08:00
|
|
|
/* A malloc routine for use with DB_DBT_MALLOC */
|
1998-09-03 08:50:13 +08:00
|
|
|
void *
|
|
|
|
ldbm_malloc( size_t size )
|
|
|
|
{
|
|
|
|
return( calloc( 1, size ));
|
|
|
|
}
|
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
/* Berkeley DB 2.x is reentrant */
|
1999-02-02 01:37:43 +08:00
|
|
|
#define LDBM_LOCK ((void)0)
|
|
|
|
#define LDBM_UNLOCK ((void)0)
|
1999-01-05 23:40:58 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
#else
|
1999-01-05 23:40:58 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
/* DB 1.85 is non-reentrant */
|
1999-01-28 12:34:55 +08:00
|
|
|
static ldap_pvt_thread_mutex_t ldbm_big_mutex;
|
1999-02-02 01:37:43 +08:00
|
|
|
#define LDBM_LOCK (ldap_pvt_thread_mutex_lock(&ldbm_big_mutex))
|
|
|
|
#define LDBM_UNLOCK (ldap_pvt_thread_mutex_unlock(&ldbm_big_mutex))
|
1999-01-05 23:40:58 +08:00
|
|
|
|
|
|
|
|
1999-02-02 01:37:43 +08:00
|
|
|
/* we need a dummy definition for pre-2.0 DB */
|
|
|
|
typedef void DB_ENV
|
1999-01-05 23:40:58 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
#endif
|
1999-01-05 23:40:58 +08:00
|
|
|
|
|
|
|
|
1999-02-02 01:37:43 +08:00
|
|
|
/* the old interface for tools and pre-2.0 DB */
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM
|
|
|
|
ldbm_open( char *name, int rw, int mode, int dbcachesize )
|
1999-02-02 01:37:43 +08:00
|
|
|
{
|
|
|
|
return( ldbm_open_env( name, rw, mode, dbcachesize, NULL ));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* an enhanced interface for DB 2.0-slapd */
|
|
|
|
LDBM
|
|
|
|
ldbm_open_env( char *name, int rw, int mode, int dbcachesize, DB_ENV *dbEnv )
|
1999-01-27 04:55:54 +08:00
|
|
|
{
|
|
|
|
LDBM ret = NULL;
|
1999-01-05 23:40:58 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
#ifdef HAVE_BERKELEY_DB2
|
1999-02-02 01:37:43 +08:00
|
|
|
DB_INFO dbinfo;
|
1999-01-05 23:40:58 +08:00
|
|
|
|
1998-09-03 08:50:13 +08:00
|
|
|
memset( &dbinfo, 0, sizeof( dbinfo ));
|
|
|
|
dbinfo.db_cachesize = dbcachesize;
|
|
|
|
dbinfo.db_pagesize = DEFAULT_DB_PAGE_SIZE;
|
|
|
|
dbinfo.db_malloc = ldbm_malloc;
|
|
|
|
|
1999-02-02 01:37:43 +08:00
|
|
|
/* use the environment, but only if initialized */
|
|
|
|
(void) db_open( name, DB_TYPE, rw, mode,
|
|
|
|
dbEnv->db_errcall ? dbEnv : NULL, &dbinfo, &ret );
|
1998-09-03 08:50:13 +08:00
|
|
|
|
|
|
|
#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;
|
|
|
|
}
|
1998-09-03 08:50:13 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
1998-08-09 08:43:13 +08:00
|
|
|
ret = dbopen( name, rw, mode, DB_TYPE, info );
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_UNLOCK;
|
1998-09-03 08:50:13 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ldbm_close( LDBM ldbm )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
1998-10-25 10:02:31 +08:00
|
|
|
#ifdef HAVE_BERKELEY_DB2
|
1998-09-03 08:50:13 +08:00
|
|
|
(*ldbm->close)( ldbm, 0 );
|
|
|
|
#else
|
1998-08-09 08:43:13 +08:00
|
|
|
(*ldbm->close)( ldbm );
|
1998-09-03 08:50:13 +08:00
|
|
|
#endif
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_UNLOCK;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ldbm_sync( LDBM ldbm )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
1998-08-09 08:43:13 +08:00
|
|
|
(*ldbm->sync)( ldbm, 0 );
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_UNLOCK;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ldbm_datum_free( LDBM ldbm, Datum data )
|
|
|
|
{
|
|
|
|
free( data.dptr );
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
ldbm_datum_dup( LDBM ldbm, Datum data )
|
|
|
|
{
|
|
|
|
Datum dup;
|
|
|
|
|
1998-12-30 01:28:45 +08:00
|
|
|
ldbm_datum_init( dup );
|
1998-09-03 08:50:13 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( data.dsize == 0 ) {
|
|
|
|
return( dup );
|
|
|
|
}
|
|
|
|
dup.dsize = data.dsize;
|
|
|
|
if ( dup.dptr = (char *) malloc( data.dsize ) )
|
|
|
|
memcpy( dup.dptr, data.dptr, data.dsize );
|
|
|
|
|
|
|
|
return( dup );
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
ldbm_fetch( LDBM ldbm, Datum key )
|
|
|
|
{
|
|
|
|
Datum data;
|
|
|
|
int rc;
|
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
#ifdef HAVE_BERKELEY_DB2
|
1998-12-30 01:28:45 +08:00
|
|
|
ldbm_datum_init( data );
|
1998-09-03 08:50:13 +08:00
|
|
|
|
|
|
|
data.flags = DB_DBT_MALLOC;
|
|
|
|
|
|
|
|
if ( (rc = (*ldbm->get)( ldbm, NULL, &key, &data, 0 )) != 0 ) {
|
|
|
|
if ( data.dptr ) free( data.dptr );
|
|
|
|
#else
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( (rc = (*ldbm->get)( ldbm, &key, &data, 0 )) == 0 ) {
|
|
|
|
data = ldbm_datum_dup( ldbm, data );
|
|
|
|
} else {
|
1998-09-03 08:50:13 +08:00
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
data.dptr = NULL;
|
|
|
|
data.dsize = 0;
|
|
|
|
}
|
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_UNLOCK;
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
return( data );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_store( LDBM ldbm, Datum key, Datum data, int flags )
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
#ifdef HAVE_BERKELEY_DB2
|
1998-09-03 08:50:13 +08:00
|
|
|
rc = (*ldbm->put)( ldbm, NULL, &key, &data, flags & ~LDBM_SYNC );
|
|
|
|
rc = (-1 ) * rc;
|
|
|
|
#else
|
1998-08-09 08:43:13 +08:00
|
|
|
rc = (*ldbm->put)( ldbm, &key, &data, flags & ~LDBM_SYNC );
|
1998-09-03 08:50:13 +08:00
|
|
|
#endif
|
1998-12-30 01:28:45 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( flags & LDBM_SYNC )
|
|
|
|
(*ldbm->sync)( ldbm, 0 );
|
1999-01-27 04:55:54 +08:00
|
|
|
|
|
|
|
LDBM_UNLOCK;
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
return( rc );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_delete( LDBM ldbm, Datum key )
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
#ifdef HAVE_BERKELEY_DB2
|
1998-09-03 08:50:13 +08:00
|
|
|
rc = (*ldbm->del)( ldbm, NULL, &key, 0 );
|
|
|
|
rc = (-1 ) * rc;
|
|
|
|
#else
|
1998-08-09 08:43:13 +08:00
|
|
|
rc = (*ldbm->del)( ldbm, &key, 0 );
|
1998-09-03 08:50:13 +08:00
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
(*ldbm->sync)( ldbm, 0 );
|
1999-01-27 04:55:54 +08:00
|
|
|
|
|
|
|
LDBM_UNLOCK;
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
return( rc );
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
1998-10-25 10:02:31 +08:00
|
|
|
#ifdef HAVE_BERKELEY_DB2
|
1998-09-03 08:50:13 +08:00
|
|
|
ldbm_firstkey( LDBM ldbm, DBC **dbch )
|
|
|
|
#else
|
1998-08-09 08:43:13 +08:00
|
|
|
ldbm_firstkey( LDBM ldbm )
|
1998-09-03 08:50:13 +08:00
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
|
|
|
Datum key, data;
|
|
|
|
int rc;
|
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
#ifdef HAVE_BERKELEY_DB2
|
1998-09-03 08:50:13 +08:00
|
|
|
DBC *dbci;
|
|
|
|
|
1998-12-30 01:28:45 +08:00
|
|
|
ldbm_datum_init( key );
|
|
|
|
ldbm_datum_init( data );
|
1998-09-03 08:50:13 +08:00
|
|
|
|
|
|
|
key.flags = data.flags = DB_DBT_MALLOC;
|
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
|
|
|
|
1998-09-03 08:50:13 +08:00
|
|
|
/* acquire a cursor for the DB */
|
1998-12-30 01:28:45 +08:00
|
|
|
|
|
|
|
# if defined( DB_VERSION_MAJOR ) && defined( DB_VERSION_MINOR ) && \
|
|
|
|
DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR < 6
|
|
|
|
|
1998-09-03 08:50:13 +08:00
|
|
|
if ( (*ldbm->cursor)( ldbm, NULL, &dbci )) {
|
1998-12-30 01:28:45 +08:00
|
|
|
|
|
|
|
# else
|
|
|
|
|
|
|
|
if ( (*ldbm->cursor)( ldbm, NULL, &dbci, 0 )) {
|
|
|
|
|
|
|
|
# endif
|
|
|
|
|
1998-09-03 08:50:13 +08:00
|
|
|
return( key );
|
|
|
|
} else {
|
|
|
|
*dbch = dbci;
|
|
|
|
if ( (*dbci->c_get)( dbci, &key, &data, DB_NEXT ) == 0 ) {
|
|
|
|
if ( data.dptr ) free( data.dptr );
|
|
|
|
#else
|
1999-01-27 04:55:54 +08:00
|
|
|
|
|
|
|
LDBM_LOCK;
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( (rc = (*ldbm->seq)( ldbm, &key, &data, R_FIRST )) == 0 ) {
|
|
|
|
key = ldbm_datum_dup( ldbm, key );
|
1998-09-03 08:50:13 +08:00
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
} else {
|
|
|
|
key.dptr = NULL;
|
|
|
|
key.dsize = 0;
|
|
|
|
}
|
1998-09-03 08:50:13 +08:00
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
#ifdef HAVE_BERKELEY_DB2
|
1998-09-03 08:50:13 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_UNLOCK;
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
return( key );
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
1998-10-25 10:02:31 +08:00
|
|
|
#ifdef HAVE_BERKELEY_DB2
|
1998-09-03 08:50:13 +08:00
|
|
|
ldbm_nextkey( LDBM ldbm, Datum key, DBC *dbcp )
|
|
|
|
#else
|
1998-08-09 08:43:13 +08:00
|
|
|
ldbm_nextkey( LDBM ldbm, Datum key )
|
1998-09-03 08:50:13 +08:00
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
|
|
|
Datum data;
|
|
|
|
int rc;
|
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
#ifdef HAVE_BERKELEY_DB2
|
1998-09-03 08:50:13 +08:00
|
|
|
void *oldKey = key.dptr;
|
|
|
|
|
1998-12-30 01:28:45 +08:00
|
|
|
ldbm_datum_init( data );
|
1998-09-03 08:50:13 +08:00
|
|
|
|
|
|
|
data.flags = DB_DBT_MALLOC;
|
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
|
|
|
|
1998-09-03 08:50:13 +08:00
|
|
|
if ( (*dbcp->c_get)( dbcp, &key, &data, DB_NEXT ) == 0 ) {
|
|
|
|
if ( data.dptr ) free( data.dptr );
|
|
|
|
#else
|
1999-01-27 04:55:54 +08:00
|
|
|
|
|
|
|
LDBM_LOCK;
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( (rc = (*ldbm->seq)( ldbm, &key, &data, R_NEXT )) == 0 ) {
|
|
|
|
key = ldbm_datum_dup( ldbm, key );
|
1998-09-03 08:50:13 +08:00
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
} else {
|
|
|
|
key.dptr = NULL;
|
|
|
|
key.dsize = 0;
|
|
|
|
}
|
1999-01-27 04:55:54 +08:00
|
|
|
|
|
|
|
LDBM_UNLOCK;
|
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
#ifdef HAVE_BERKELEY_DB2
|
1998-09-03 08:50:13 +08:00
|
|
|
if ( oldKey ) free( oldKey );
|
|
|
|
#endif
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
return( key );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_errno( LDBM ldbm )
|
|
|
|
{
|
|
|
|
return( errno );
|
|
|
|
}
|
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
#elif defined( HAVE_GDBM )
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
/* GDBM is non-reentrant */
|
1999-01-28 12:34:55 +08:00
|
|
|
static ldap_pvt_thread_mutex_t ldbm_big_mutex;
|
1999-02-02 01:37:43 +08:00
|
|
|
#define LDBM_LOCK (ldap_pvt_thread_mutex_lock(&ldbm_big_mutex))
|
|
|
|
#define LDBM_UNLOCK (ldap_pvt_thread_mutex_unlock(&ldbm_big_mutex))
|
1999-01-27 04:55:54 +08:00
|
|
|
|
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
/*****************************************************************
|
|
|
|
* *
|
1998-12-30 01:28:45 +08:00
|
|
|
* use gdbm *
|
1998-10-25 10:02:31 +08:00
|
|
|
* *
|
|
|
|
*****************************************************************/
|
|
|
|
|
|
|
|
LDBM
|
|
|
|
ldbm_open( char *name, int rw, int mode, int dbcachesize )
|
|
|
|
{
|
|
|
|
LDBM db;
|
|
|
|
struct stat st;
|
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
if ( (db = gdbm_open( name, 0, rw | GDBM_FAST, mode, 0 )) == NULL ) {
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
if ( dbcachesize > 0 && stat( name, &st ) == 0 ) {
|
|
|
|
dbcachesize = (dbcachesize / st.st_blksize);
|
|
|
|
gdbm_setopt( db, GDBM_CACHESIZE, &dbcachesize, sizeof(int) );
|
|
|
|
}
|
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_UNLOCK;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
return( db );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ldbm_close( LDBM ldbm )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
1998-10-25 10:02:31 +08:00
|
|
|
gdbm_close( ldbm );
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_UNLOCK;
|
1998-10-25 10:02:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ldbm_sync( LDBM ldbm )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
1998-10-25 10:02:31 +08:00
|
|
|
gdbm_sync( ldbm );
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_UNLOCK;
|
1998-10-25 10:02:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ldbm_datum_free( LDBM ldbm, Datum data )
|
|
|
|
{
|
|
|
|
free( data.dptr );
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
ldbm_datum_dup( LDBM ldbm, Datum data )
|
|
|
|
{
|
|
|
|
Datum dup;
|
|
|
|
|
|
|
|
if ( data.dsize == 0 ) {
|
|
|
|
dup.dsize = 0;
|
|
|
|
dup.dptr = NULL;
|
|
|
|
|
|
|
|
return( dup );
|
|
|
|
}
|
|
|
|
dup.dsize = data.dsize;
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
if ( (dup.dptr = (char *) malloc( data.dsize )) != NULL )
|
1998-10-25 10:02:31 +08:00
|
|
|
memcpy( dup.dptr, data.dptr, data.dsize );
|
|
|
|
|
|
|
|
return( dup );
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
ldbm_fetch( LDBM ldbm, Datum key )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
Datum d;
|
|
|
|
LDBM_LOCK;
|
|
|
|
d = gdbm_fetch( ldbm, key );
|
|
|
|
LDBM_UNLOCK;
|
|
|
|
return d;
|
1998-10-25 10:02:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_store( LDBM ldbm, Datum key, Datum data, int flags )
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
1998-10-25 10:02:31 +08:00
|
|
|
rc = gdbm_store( ldbm, key, data, flags & ~LDBM_SYNC );
|
|
|
|
if ( flags & LDBM_SYNC )
|
|
|
|
gdbm_sync( ldbm );
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_UNLOCK;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
return( rc );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_delete( LDBM ldbm, Datum key )
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
1998-10-25 10:02:31 +08:00
|
|
|
rc = gdbm_delete( ldbm, key );
|
|
|
|
gdbm_sync( ldbm );
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_UNLOCK;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
return( rc );
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
ldbm_firstkey( LDBM ldbm )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
Datum d;
|
|
|
|
LDBM_LOCK;
|
|
|
|
d = gdbm_firstkey( ldbm );
|
|
|
|
LDBM_UNLOCK;
|
|
|
|
return d;
|
1998-10-25 10:02:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
ldbm_nextkey( LDBM ldbm, Datum key )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
Datum d;
|
|
|
|
LDBM_LOCK;
|
1999-02-02 01:37:43 +08:00
|
|
|
d = gdbm_nextkey( ldbm );
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_UNLOCK;
|
|
|
|
return d;
|
1998-10-25 10:02:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_errno( LDBM ldbm )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
int err;
|
|
|
|
LDBM_LOCK;
|
1999-02-02 01:37:43 +08:00
|
|
|
err = (int) gdbm_errno;
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_UNLOCK;
|
|
|
|
return( err );
|
1998-10-25 10:02:31 +08:00
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-10-25 10:02:31 +08:00
|
|
|
#elif defined( HAVE_NDBM )
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
/*****************************************************************
|
|
|
|
* *
|
|
|
|
* if no gdbm, fall back to using ndbm, the standard unix thing *
|
|
|
|
* *
|
|
|
|
*****************************************************************/
|
|
|
|
|
1999-02-02 01:37:43 +08:00
|
|
|
/* NDBM is non-reentrant */
|
|
|
|
static ldap_pvt_thread_mutex_t ldbm_big_mutex;
|
|
|
|
#define LDBM_LOCK (ldap_pvt_thread_mutex_lock(&ldbm_big_mutex))
|
|
|
|
#define LDBM_UNLOCK (ldap_pvt_thread_mutex_unlock(&ldbm_big_mutex))
|
|
|
|
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/* ARGSUSED */
|
|
|
|
LDBM
|
|
|
|
ldbm_open( char *name, int rw, int mode, int dbcachesize )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM ldbm;
|
|
|
|
|
|
|
|
LDBM_LOCK;
|
|
|
|
ldbm = dbm_open( name, rw, mode );
|
|
|
|
LDBM_UNLOCK;
|
|
|
|
|
|
|
|
return( ldbm );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ldbm_close( LDBM ldbm )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
1998-08-09 08:43:13 +08:00
|
|
|
dbm_close( ldbm );
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_UNLOCK;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
|
|
|
void
|
|
|
|
ldbm_sync( LDBM ldbm )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ldbm_datum_free( LDBM ldbm, Datum data )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
ldbm_datum_dup( LDBM ldbm, Datum data )
|
|
|
|
{
|
|
|
|
Datum dup;
|
|
|
|
|
|
|
|
if ( data.dsize == 0 ) {
|
|
|
|
dup.dsize = 0;
|
|
|
|
dup.dptr = NULL;
|
|
|
|
|
|
|
|
return( dup );
|
|
|
|
}
|
|
|
|
dup.dsize = data.dsize;
|
1998-11-04 21:15:18 +08:00
|
|
|
dup.dptr = (char *) malloc( data.dsize );
|
|
|
|
if ( dup.dptr )
|
1998-08-09 08:43:13 +08:00
|
|
|
memcpy( dup.dptr, data.dptr, data.dsize );
|
|
|
|
|
|
|
|
return( dup );
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
ldbm_fetch( LDBM ldbm, Datum key )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
Datum d;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
|
|
|
d = ldbm_datum_dup( ldbm, dbm_fetch( ldbm, key ) );
|
|
|
|
LDBM_UNLOCK;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
return d;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_store( LDBM ldbm, Datum key, Datum data, int flags )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
int rc;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
|
|
|
rc = dbm_store( ldbm, key, data, flags );
|
|
|
|
LDBM_UNLOCK;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
return rc;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_delete( LDBM ldbm, Datum key )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
int rc;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
|
|
|
rc = dbm_delete( ldbm, key );
|
|
|
|
LDBM_UNLOCK;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
return rc;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
ldbm_firstkey( LDBM ldbm )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
Datum d;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
|
|
|
d = dbm_firstkey( ldbm );
|
|
|
|
LDBM_UNLOCK;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
return d;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
ldbm_nextkey( LDBM ldbm, Datum key )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
Datum d;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
|
|
|
d = dbm_nextkey( ldbm );
|
|
|
|
LDBM_UNLOCK;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
return d;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_errno( LDBM ldbm )
|
|
|
|
{
|
1999-01-27 04:55:54 +08:00
|
|
|
int err;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
LDBM_LOCK;
|
|
|
|
err = dbm_error( ldbm );
|
|
|
|
LDBM_UNLOCK;
|
1999-02-02 01:37:43 +08:00
|
|
|
|
1999-01-27 04:55:54 +08:00
|
|
|
return err;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ndbm */
|
1998-10-25 10:02:31 +08:00
|
|
|
#endif /* ldbm */
|