mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
230 lines
4.8 KiB
C
230 lines
4.8 KiB
C
/* $OpenLDAP$ */
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
*
|
|
* Copyright 1999-2005 The OpenLDAP Foundation.
|
|
* Portions Copyright 2001-2003 Pierangelo Masarati.
|
|
* Portions Copyright 1999-2003 Howard Chu.
|
|
* 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>.
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
#include <ac/socket.h>
|
|
|
|
#include "slap.h"
|
|
#include "../back-ldap/back-ldap.h"
|
|
#include "back-meta.h"
|
|
|
|
int
|
|
meta_back_open(
|
|
BackendInfo *bi )
|
|
{
|
|
bi->bi_controls = slap_known_controls;
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
meta_back_initialize(
|
|
BackendInfo *bi )
|
|
{
|
|
bi->bi_open = meta_back_open;
|
|
bi->bi_config = 0;
|
|
bi->bi_close = 0;
|
|
bi->bi_destroy = 0;
|
|
|
|
bi->bi_db_init = meta_back_db_init;
|
|
bi->bi_db_config = meta_back_db_config;
|
|
bi->bi_db_open = 0;
|
|
bi->bi_db_close = 0;
|
|
bi->bi_db_destroy = meta_back_db_destroy;
|
|
|
|
bi->bi_op_bind = meta_back_bind;
|
|
bi->bi_op_unbind = 0;
|
|
bi->bi_op_search = meta_back_search;
|
|
bi->bi_op_compare = meta_back_compare;
|
|
bi->bi_op_modify = meta_back_modify;
|
|
bi->bi_op_modrdn = meta_back_modrdn;
|
|
bi->bi_op_add = meta_back_add;
|
|
bi->bi_op_delete = meta_back_delete;
|
|
bi->bi_op_abandon = 0;
|
|
|
|
bi->bi_extended = 0;
|
|
|
|
bi->bi_chk_referrals = 0;
|
|
|
|
bi->bi_connection_init = 0;
|
|
bi->bi_connection_destroy = meta_back_conn_destroy;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
meta_back_db_init(
|
|
Backend *be )
|
|
{
|
|
metainfo_t *mi;
|
|
|
|
mi = ch_malloc( sizeof( metainfo_t ) );
|
|
if ( mi == NULL ) {
|
|
return -1;
|
|
}
|
|
memset( mi, 0, sizeof( metainfo_t ) );
|
|
|
|
/*
|
|
* At present the default is no default target;
|
|
* this may change
|
|
*/
|
|
mi->mi_defaulttarget = META_DEFAULT_TARGET_NONE;
|
|
|
|
ldap_pvt_thread_mutex_init( &mi->mi_conn_mutex );
|
|
ldap_pvt_thread_mutex_init( &mi->mi_cache.mutex );
|
|
|
|
/* safe default */
|
|
mi->mi_nretries = META_RETRY_DEFAULT;
|
|
|
|
be->be_private = mi;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
conn_free(
|
|
void *v_mc )
|
|
{
|
|
metaconn_t *mc = v_mc;
|
|
metasingleconn_t *msc;
|
|
|
|
assert( mc->mc_conns != NULL );
|
|
|
|
for ( msc = &mc->mc_conns[ 0 ]; !META_LAST( msc ); msc++ ) {
|
|
if ( msc->msc_ld != NULL ) {
|
|
ldap_unbind_ext_s( msc->msc_ld, NULL, NULL );
|
|
}
|
|
if ( !BER_BVISNULL( &msc->msc_bound_ndn ) ) {
|
|
ber_memfree( msc->msc_bound_ndn.bv_val );
|
|
}
|
|
if ( !BER_BVISNULL( &msc->msc_cred ) ) {
|
|
/* destroy sensitive data */
|
|
memset( msc->msc_cred.bv_val, 0, msc->msc_cred.bv_len );
|
|
ber_memfree( msc->msc_cred.bv_val );
|
|
}
|
|
}
|
|
|
|
free( mc );
|
|
}
|
|
|
|
static void
|
|
mapping_free(
|
|
void *v_mapping )
|
|
{
|
|
struct ldapmapping *mapping = v_mapping;
|
|
ch_free( mapping->src.bv_val );
|
|
ch_free( mapping->dst.bv_val );
|
|
ch_free( mapping );
|
|
}
|
|
|
|
static void
|
|
target_free(
|
|
metatarget_t *mt )
|
|
{
|
|
if ( mt->mt_uri ) {
|
|
free( mt->mt_uri );
|
|
}
|
|
if ( !BER_BVISNULL( &mt->mt_psuffix ) ) {
|
|
free( mt->mt_psuffix.bv_val );
|
|
}
|
|
if ( !BER_BVISNULL( &mt->mt_nsuffix ) ) {
|
|
free( mt->mt_nsuffix.bv_val );
|
|
}
|
|
if ( !BER_BVISNULL( &mt->mt_binddn ) ) {
|
|
free( mt->mt_binddn.bv_val );
|
|
}
|
|
if ( !BER_BVISNULL( &mt->mt_bindpw ) ) {
|
|
free( mt->mt_bindpw.bv_val );
|
|
}
|
|
if ( !BER_BVISNULL( &mt->mt_pseudorootdn ) ) {
|
|
free( mt->mt_pseudorootdn.bv_val );
|
|
}
|
|
if ( !BER_BVISNULL( &mt->mt_pseudorootpw ) ) {
|
|
free( mt->mt_pseudorootpw.bv_val );
|
|
}
|
|
if ( mt->mt_rwmap.rwm_rw ) {
|
|
rewrite_info_delete( &mt->mt_rwmap.rwm_rw );
|
|
}
|
|
avl_free( mt->mt_rwmap.rwm_oc.remap, NULL );
|
|
avl_free( mt->mt_rwmap.rwm_oc.map, mapping_free );
|
|
avl_free( mt->mt_rwmap.rwm_at.remap, NULL );
|
|
avl_free( mt->mt_rwmap.rwm_at.map, mapping_free );
|
|
}
|
|
|
|
int
|
|
meta_back_db_destroy(
|
|
Backend *be )
|
|
{
|
|
metainfo_t *mi;
|
|
|
|
if ( be->be_private ) {
|
|
int i;
|
|
|
|
mi = ( metainfo_t * )be->be_private;
|
|
|
|
/*
|
|
* Destroy the connection tree
|
|
*/
|
|
ldap_pvt_thread_mutex_lock( &mi->mi_conn_mutex );
|
|
|
|
if ( mi->mi_conntree ) {
|
|
avl_free( mi->mi_conntree, conn_free );
|
|
}
|
|
|
|
/*
|
|
* Destroy the per-target stuff (assuming there's at
|
|
* least one ...)
|
|
*/
|
|
for ( i = 0; i < mi->mi_ntargets; i++ ) {
|
|
target_free( mi->mi_targets[ i ] );
|
|
free( mi->mi_targets[ i ] );
|
|
}
|
|
|
|
free( mi->mi_targets );
|
|
|
|
ldap_pvt_thread_mutex_lock( &mi->mi_cache.mutex );
|
|
if ( mi->mi_cache.tree ) {
|
|
avl_free( mi->mi_cache.tree, meta_dncache_free );
|
|
}
|
|
|
|
ldap_pvt_thread_mutex_unlock( &mi->mi_cache.mutex );
|
|
ldap_pvt_thread_mutex_destroy( &mi->mi_cache.mutex );
|
|
|
|
ldap_pvt_thread_mutex_unlock( &mi->mi_conn_mutex );
|
|
ldap_pvt_thread_mutex_destroy( &mi->mi_conn_mutex );
|
|
|
|
if ( mi->mi_candidates != NULL ) {
|
|
ber_memfree_x( mi->mi_candidates, NULL );
|
|
}
|
|
}
|
|
|
|
free( be->be_private );
|
|
return 0;
|
|
}
|
|
|
|
#if SLAPD_META == SLAPD_MOD_DYNAMIC
|
|
|
|
/* conditionally define the init_module() function */
|
|
SLAP_BACKEND_INIT_MODULE( meta )
|
|
|
|
#endif /* SLAPD_META == SLAPD_MOD_DYNAMIC */
|
|
|
|
|