1999-05-26 10:35:20 +08:00
|
|
|
/* init.c - initialize ldap backend */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2001-01-17 15:09:22 +08:00
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
2001-01-17 15:09:22 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
/* This is an altered version */
|
1999-05-26 10:35:20 +08:00
|
|
|
/*
|
|
|
|
* Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
|
|
|
|
*
|
|
|
|
* Permission is granted to anyone to use this software for any purpose
|
|
|
|
* on any computer system, and to alter it and redistribute it, subject
|
|
|
|
* to the following restrictions:
|
|
|
|
*
|
|
|
|
* 1. The author is not responsible for the consequences of use of this
|
|
|
|
* software, no matter how awful, even if they arise from flaws in it.
|
|
|
|
*
|
|
|
|
* 2. The origin of this software must not be misrepresented, either by
|
|
|
|
* explicit claim or by omission. Since few users ever read sources,
|
|
|
|
* credits should appear in the documentation.
|
|
|
|
*
|
|
|
|
* 3. Altered versions must be plainly marked as such, and must not be
|
|
|
|
* misrepresented as being the original software. Since few users
|
|
|
|
* ever read sources, credits should appear in the documentation.
|
|
|
|
*
|
|
|
|
* 4. This notice may not be removed or altered.
|
2001-01-20 05:27:20 +08:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
|
|
|
|
*
|
|
|
|
* This software is being modified by Pierangelo Masarati.
|
|
|
|
* The previously reported conditions apply to the modified code as well.
|
|
|
|
* Changes in the original code are highlighted where required.
|
|
|
|
* Credits for the original code go to the author, Howard Chu.
|
1999-05-26 10:35:20 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "back-ldap.h"
|
|
|
|
|
1999-06-25 01:06:34 +08:00
|
|
|
#ifdef SLAPD_LDAP_DYNAMIC
|
|
|
|
|
1999-08-17 08:28:01 +08:00
|
|
|
int back_ldap_LTX_init_module(int argc, char *argv[]) {
|
|
|
|
BackendInfo bi;
|
1999-06-25 01:06:34 +08:00
|
|
|
|
2000-06-11 06:39:30 +08:00
|
|
|
memset( &bi, '\0', sizeof(bi) );
|
1999-08-17 08:28:01 +08:00
|
|
|
bi.bi_type = "ldap";
|
|
|
|
bi.bi_init = ldap_back_initialize;
|
1999-06-25 01:06:34 +08:00
|
|
|
|
1999-08-17 08:28:01 +08:00
|
|
|
backend_add(&bi);
|
|
|
|
return 0;
|
1999-06-25 01:06:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* SLAPD_LDAP_DYNAMIC */
|
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
int
|
|
|
|
ldap_back_initialize(
|
|
|
|
BackendInfo *bi
|
|
|
|
)
|
|
|
|
{
|
2002-08-29 22:39:31 +08:00
|
|
|
bi->bi_controls = slap_known_controls;
|
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
bi->bi_open = 0;
|
|
|
|
bi->bi_config = 0;
|
|
|
|
bi->bi_close = 0;
|
|
|
|
bi->bi_destroy = 0;
|
|
|
|
|
|
|
|
bi->bi_db_init = ldap_back_db_init;
|
|
|
|
bi->bi_db_config = ldap_back_db_config;
|
|
|
|
bi->bi_db_open = 0;
|
|
|
|
bi->bi_db_close = 0;
|
|
|
|
bi->bi_db_destroy = ldap_back_db_destroy;
|
|
|
|
|
|
|
|
bi->bi_op_bind = ldap_back_bind;
|
1999-07-26 06:16:01 +08:00
|
|
|
bi->bi_op_unbind = 0;
|
1999-05-26 10:35:20 +08:00
|
|
|
bi->bi_op_search = ldap_back_search;
|
|
|
|
bi->bi_op_compare = ldap_back_compare;
|
|
|
|
bi->bi_op_modify = ldap_back_modify;
|
|
|
|
bi->bi_op_modrdn = ldap_back_modrdn;
|
|
|
|
bi->bi_op_add = ldap_back_add;
|
|
|
|
bi->bi_op_delete = ldap_back_delete;
|
|
|
|
bi->bi_op_abandon = 0;
|
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
bi->bi_extended = 0;
|
|
|
|
|
2000-06-10 09:32:36 +08:00
|
|
|
bi->bi_acl_group = ldap_back_group;
|
2000-06-22 02:23:38 +08:00
|
|
|
bi->bi_acl_attribute = ldap_back_attribute;
|
2000-06-16 09:46:42 +08:00
|
|
|
bi->bi_chk_referrals = 0;
|
1999-05-26 10:35:20 +08:00
|
|
|
|
1999-06-23 20:31:35 +08:00
|
|
|
bi->bi_connection_init = 0;
|
1999-07-26 06:16:01 +08:00
|
|
|
bi->bi_connection_destroy = ldap_back_conn_destroy;
|
1999-06-23 20:31:35 +08:00
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_back_db_init(
|
|
|
|
Backend *be
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct ldapinfo *li;
|
2001-02-20 03:14:12 +08:00
|
|
|
struct ldapmapping *mapping;
|
1999-05-26 10:35:20 +08:00
|
|
|
|
|
|
|
li = (struct ldapinfo *) ch_calloc( 1, sizeof(struct ldapinfo) );
|
2001-05-12 08:51:28 +08:00
|
|
|
if ( li == NULL ) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ENABLE_REWRITE
|
|
|
|
li->rwinfo = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
|
|
|
|
if ( li->rwinfo == NULL ) {
|
|
|
|
ch_free( li );
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif /* ENABLE_REWRITE */
|
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
ldap_pvt_thread_mutex_init( &li->conn_mutex );
|
|
|
|
|
2002-01-05 01:51:20 +08:00
|
|
|
ldap_back_map_init( &li->at_map, &mapping );
|
2001-02-20 03:14:12 +08:00
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
be->be_private = li;
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
return 0;
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|
|
|
|
|
2001-01-20 05:27:20 +08:00
|
|
|
static void
|
|
|
|
conn_free(
|
2002-12-15 06:25:52 +08:00
|
|
|
void *v_lc
|
2001-01-20 05:27:20 +08:00
|
|
|
)
|
|
|
|
{
|
2002-12-15 06:25:52 +08:00
|
|
|
struct ldapconn *lc = v_lc;
|
2002-01-13 01:35:01 +08:00
|
|
|
ldap_unbind( lc->ld );
|
|
|
|
if ( lc->bound_dn.bv_val ) {
|
|
|
|
ch_free( lc->bound_dn.bv_val );
|
|
|
|
}
|
2002-04-25 10:05:34 +08:00
|
|
|
if ( lc->cred.bv_val ) {
|
|
|
|
ch_free( lc->cred.bv_val );
|
|
|
|
}
|
2002-01-13 01:35:01 +08:00
|
|
|
ch_free( lc );
|
2001-01-20 05:27:20 +08:00
|
|
|
}
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
void
|
2002-12-15 06:25:52 +08:00
|
|
|
mapping_free( void *v_mapping )
|
2001-02-20 03:14:12 +08:00
|
|
|
{
|
2002-12-15 06:25:52 +08:00
|
|
|
struct ldapmapping *mapping = v_mapping;
|
2002-01-02 19:00:36 +08:00
|
|
|
ch_free( mapping->src.bv_val );
|
|
|
|
ch_free( mapping->dst.bv_val );
|
2001-02-20 03:14:12 +08:00
|
|
|
ch_free( mapping );
|
|
|
|
}
|
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
int
|
|
|
|
ldap_back_db_destroy(
|
|
|
|
Backend *be
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct ldapinfo *li;
|
|
|
|
|
|
|
|
if (be->be_private) {
|
|
|
|
li = (struct ldapinfo *)be->be_private;
|
2001-01-20 05:27:20 +08:00
|
|
|
|
|
|
|
ldap_pvt_thread_mutex_lock( &li->conn_mutex );
|
|
|
|
|
2000-06-05 12:59:26 +08:00
|
|
|
if (li->url) {
|
2002-01-13 01:35:01 +08:00
|
|
|
ch_free(li->url);
|
2000-06-05 12:59:26 +08:00
|
|
|
li->url = NULL;
|
|
|
|
}
|
|
|
|
if (li->binddn) {
|
2002-01-13 01:35:01 +08:00
|
|
|
ch_free(li->binddn);
|
2000-06-05 12:59:26 +08:00
|
|
|
li->binddn = NULL;
|
|
|
|
}
|
|
|
|
if (li->bindpw) {
|
2002-01-13 01:35:01 +08:00
|
|
|
ch_free(li->bindpw);
|
2000-06-05 12:59:26 +08:00
|
|
|
li->bindpw = NULL;
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|
2001-01-20 05:27:20 +08:00
|
|
|
if (li->conntree) {
|
2002-12-15 06:25:52 +08:00
|
|
|
avl_free( li->conntree, conn_free );
|
2001-01-20 05:27:20 +08:00
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
#ifdef ENABLE_REWRITE
|
|
|
|
if (li->rwinfo) {
|
|
|
|
rewrite_info_delete( li->rwinfo );
|
|
|
|
}
|
|
|
|
#else /* !ENABLE_REWRITE */
|
|
|
|
if (li->suffix_massage) {
|
2002-05-02 01:45:03 +08:00
|
|
|
ber_bvarray_free( li->suffix_massage );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
#endif /* !ENABLE_REWRITE */
|
2001-02-20 03:14:12 +08:00
|
|
|
|
|
|
|
avl_free( li->oc_map.remap, NULL );
|
2002-12-15 06:25:52 +08:00
|
|
|
avl_free( li->oc_map.map, mapping_free );
|
2001-02-20 03:14:12 +08:00
|
|
|
avl_free( li->at_map.remap, NULL );
|
2002-12-15 06:25:52 +08:00
|
|
|
avl_free( li->at_map.map, mapping_free );
|
2001-01-20 05:27:20 +08:00
|
|
|
|
|
|
|
ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
|
1999-05-26 10:35:20 +08:00
|
|
|
ldap_pvt_thread_mutex_destroy( &li->conn_mutex );
|
|
|
|
}
|
|
|
|
|
2002-01-13 01:35:01 +08:00
|
|
|
ch_free( be->be_private );
|
1999-05-26 10:35:20 +08:00
|
|
|
return 0;
|
|
|
|
}
|