1999-05-26 10:35:20 +08:00
|
|
|
/* bind.c - ldap backend bind function */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2001-01-17 15:09:22 +08:00
|
|
|
/*
|
2002-01-05 05:17:25 +08:00
|
|
|
* Copyright 1998-2002 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 <ac/string.h>
|
|
|
|
|
2001-01-20 05:27:20 +08:00
|
|
|
|
|
|
|
#define AVL_INTERNAL
|
1999-05-26 10:35:20 +08:00
|
|
|
#include "slap.h"
|
|
|
|
#include "back-ldap.h"
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
#define PRINT_CONNTREE 0
|
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
int
|
|
|
|
ldap_back_bind(
|
|
|
|
Backend *be,
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
2001-12-26 19:41:38 +08:00
|
|
|
struct berval *dn,
|
|
|
|
struct berval *ndn,
|
1999-05-26 10:35:20 +08:00
|
|
|
int method,
|
|
|
|
struct berval *cred,
|
2001-12-26 19:41:38 +08:00
|
|
|
struct berval *edn
|
1999-05-26 10:35:20 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
struct ldapinfo *li = (struct ldapinfo *) be->be_private;
|
|
|
|
struct ldapconn *lc;
|
|
|
|
|
2001-12-28 12:20:08 +08:00
|
|
|
struct berval mdn = { 0, NULL };
|
2001-01-20 05:27:20 +08:00
|
|
|
int rc = 0;
|
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
lc = ldap_back_getconn(li, conn, op);
|
2001-01-20 05:27:20 +08:00
|
|
|
if ( !lc ) {
|
1999-05-26 10:35:20 +08:00
|
|
|
return( -1 );
|
2001-01-20 05:27:20 +08:00
|
|
|
}
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
/*
|
|
|
|
* Rewrite the bind dn if needed
|
|
|
|
*/
|
|
|
|
#ifdef ENABLE_REWRITE
|
2001-12-28 12:20:08 +08:00
|
|
|
switch ( rewrite_session( li->rwinfo, "bindDn", dn->bv_val, conn, &mdn.bv_val ) ) {
|
2001-05-12 08:51:28 +08:00
|
|
|
case REWRITE_REGEXEC_OK:
|
2001-12-28 12:20:08 +08:00
|
|
|
if ( mdn.bv_val == NULL ) {
|
|
|
|
mdn.bv_val = ( char * )dn->bv_val;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2001-05-17 06:55:44 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
|
2001-12-28 12:20:08 +08:00
|
|
|
"[rw] bindDn: \"%s\" -> \"%s\"\n", dn->bv_val, mdn.bv_val ));
|
2001-05-17 06:55:44 +08:00
|
|
|
#else /* !NEW_LOGGING */
|
2001-05-12 08:51:28 +08:00
|
|
|
Debug( LDAP_DEBUG_ARGS, "rw> bindDn: \"%s\" -> \"%s\"\n%s",
|
2001-12-28 12:20:08 +08:00
|
|
|
dn->bv_val, mdn.bv_val, "" );
|
2001-05-17 06:55:44 +08:00
|
|
|
#endif /* !NEW_LOGGING */
|
2001-05-12 08:51:28 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case REWRITE_REGEXEC_UNWILLING:
|
|
|
|
send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
|
|
|
|
NULL, "Unwilling to perform", NULL, NULL );
|
2001-05-17 06:55:44 +08:00
|
|
|
return( -1 );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
case REWRITE_REGEXEC_ERR:
|
2001-05-17 06:55:44 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
|
|
|
|
NULL, "Operations error", NULL, NULL );
|
2001-05-12 08:51:28 +08:00
|
|
|
return( -1 );
|
2001-01-20 05:27:20 +08:00
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
#else /* !ENABLE_REWRITE */
|
2001-12-28 12:20:08 +08:00
|
|
|
ldap_back_dn_massage( li, dn, &mdn, 0, 1 );
|
2001-05-12 08:51:28 +08:00
|
|
|
#endif /* !ENABLE_REWRITE */
|
2001-01-20 05:27:20 +08:00
|
|
|
|
2001-12-28 12:20:08 +08:00
|
|
|
rc = ldap_bind_s(lc->ld, mdn.bv_val, cred->bv_val, method);
|
2001-05-12 08:51:28 +08:00
|
|
|
if (rc != LDAP_SUCCESS) {
|
2001-01-20 05:27:20 +08:00
|
|
|
rc = ldap_back_op_result( lc, op );
|
|
|
|
} else {
|
|
|
|
lc->bound = 1;
|
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2001-12-28 12:20:08 +08:00
|
|
|
if ( mdn.bv_val != dn->bv_val ) {
|
|
|
|
free( mdn.bv_val );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2001-01-20 05:27:20 +08:00
|
|
|
|
|
|
|
return( rc );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-05-12 08:51:28 +08:00
|
|
|
* ldap_back_conn_cmp
|
2001-01-20 05:27:20 +08:00
|
|
|
*
|
|
|
|
* compares two struct ldapconn based on the value of the conn pointer;
|
|
|
|
* used by avl stuff
|
|
|
|
*/
|
|
|
|
int
|
2001-05-12 08:51:28 +08:00
|
|
|
ldap_back_conn_cmp(
|
2001-01-20 05:27:20 +08:00
|
|
|
const void *c1,
|
|
|
|
const void *c2
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct ldapconn *lc1 = (struct ldapconn *)c1;
|
|
|
|
struct ldapconn *lc2 = (struct ldapconn *)c2;
|
|
|
|
|
|
|
|
return ( ( lc1->conn < lc2->conn ) ? -1 : ( ( lc1->conn > lc2-> conn ) ? 1 : 0 ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-05-12 08:51:28 +08:00
|
|
|
* ldap_back_conn_dup
|
2001-01-20 05:27:20 +08:00
|
|
|
*
|
|
|
|
* returns -1 in case a duplicate struct ldapconn has been inserted;
|
|
|
|
* used by avl stuff
|
|
|
|
*/
|
|
|
|
int
|
2001-05-12 08:51:28 +08:00
|
|
|
ldap_back_conn_dup(
|
2001-01-20 05:27:20 +08:00
|
|
|
void *c1,
|
|
|
|
void *c2
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct ldapconn *lc1 = (struct ldapconn *)c1;
|
|
|
|
struct ldapconn *lc2 = (struct ldapconn *)c2;
|
|
|
|
|
|
|
|
return( ( lc1->conn == lc2->conn ) ? -1 : 0 );
|
|
|
|
}
|
1999-05-26 10:35:20 +08:00
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
#if PRINT_CONNTREE > 0
|
2001-01-20 05:27:20 +08:00
|
|
|
static void ravl_print( Avlnode *root, int depth )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if ( root == 0 )
|
|
|
|
return;
|
|
|
|
|
|
|
|
ravl_print( root->avl_right, depth+1 );
|
|
|
|
|
|
|
|
for ( i = 0; i < depth; i++ )
|
|
|
|
printf( " " );
|
1999-05-26 10:35:20 +08:00
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
printf( "c(%ld) %d\n", ((struct ldapconn *) root->avl_data)->conn->c_connid, root->avl_bf );
|
2001-01-20 05:27:20 +08:00
|
|
|
|
|
|
|
ravl_print( root->avl_left, depth+1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void myprint( Avlnode *root )
|
|
|
|
{
|
|
|
|
printf( "********\n" );
|
|
|
|
|
|
|
|
if ( root == 0 )
|
|
|
|
printf( "\tNULL\n" );
|
|
|
|
|
|
|
|
else
|
|
|
|
ravl_print( root, 0 );
|
|
|
|
|
|
|
|
printf( "********\n" );
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
#endif /* PRINT_CONNTREE */
|
1999-05-26 10:35:20 +08:00
|
|
|
|
|
|
|
struct ldapconn *
|
|
|
|
ldap_back_getconn(struct ldapinfo *li, Connection *conn, Operation *op)
|
|
|
|
{
|
2001-01-20 05:27:20 +08:00
|
|
|
struct ldapconn *lc, lc_curr;
|
1999-05-26 10:35:20 +08:00
|
|
|
LDAP *ld;
|
|
|
|
|
2001-01-20 05:27:20 +08:00
|
|
|
/* Searches for a ldapconn in the avl tree */
|
|
|
|
lc_curr.conn = conn;
|
1999-05-26 10:35:20 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &li->conn_mutex );
|
2001-01-20 05:27:20 +08:00
|
|
|
lc = (struct ldapconn *)avl_find( li->conntree,
|
2001-05-12 08:51:28 +08:00
|
|
|
(caddr_t)&lc_curr, ldap_back_conn_cmp );
|
1999-05-26 10:35:20 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
|
|
|
|
|
|
|
|
/* Looks like we didn't get a bind. Open a new session... */
|
|
|
|
if (!lc) {
|
2000-11-11 11:01:00 +08:00
|
|
|
int vers = conn->c_protocol;
|
2000-10-23 21:32:14 +08:00
|
|
|
int err = ldap_initialize(&ld, li->url);
|
2001-01-20 05:27:20 +08:00
|
|
|
|
2000-10-23 21:32:14 +08:00
|
|
|
if (err != LDAP_SUCCESS) {
|
|
|
|
err = ldap_back_map_result(err);
|
|
|
|
send_ldap_result( conn, op, err,
|
1999-07-16 10:45:46 +08:00
|
|
|
NULL, "ldap_init failed", NULL, NULL );
|
1999-05-26 10:35:20 +08:00
|
|
|
return( NULL );
|
|
|
|
}
|
2000-11-11 11:01:00 +08:00
|
|
|
/* Set LDAP version. This will always succeed: If the client
|
|
|
|
* bound with a particular version, then so can we.
|
|
|
|
*/
|
|
|
|
ldap_set_option(ld, LDAP_OPT_PROTOCOL_VERSION, &vers);
|
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
lc = (struct ldapconn *)ch_malloc(sizeof(struct ldapconn));
|
|
|
|
lc->conn = conn;
|
|
|
|
lc->ld = ld;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
#ifdef ENABLE_REWRITE
|
|
|
|
/*
|
|
|
|
* Sets a cookie for the rewrite session
|
|
|
|
*/
|
|
|
|
( void )rewrite_session_init( li->rwinfo, conn );
|
|
|
|
#endif /* ENABLE_REWRITE */
|
|
|
|
|
2002-01-06 11:26:09 +08:00
|
|
|
if ( lc->conn->c_cdn.bv_len != 0 ) {
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Rewrite the bind dn if needed
|
|
|
|
*/
|
|
|
|
#ifdef ENABLE_REWRITE
|
2001-12-28 12:20:08 +08:00
|
|
|
lc->bound_dn.bv_val = NULL;
|
|
|
|
lc->bound_dn.bv_len = 0;
|
2001-05-12 08:51:28 +08:00
|
|
|
switch ( rewrite_session( li->rwinfo, "bindDn",
|
2002-01-06 11:26:09 +08:00
|
|
|
lc->conn->c_cdn.bv_val, conn,
|
2001-12-28 12:20:08 +08:00
|
|
|
&lc->bound_dn.bv_val ) ) {
|
2001-05-12 08:51:28 +08:00
|
|
|
case REWRITE_REGEXEC_OK:
|
2001-12-28 12:20:08 +08:00
|
|
|
if ( lc->bound_dn.bv_val == NULL ) {
|
2002-01-06 11:26:09 +08:00
|
|
|
ber_dupbv( &lc->bound_dn, &lc->conn->c_cdn );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2001-05-17 06:55:44 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
|
|
|
|
"[rw] bindDn: \"%s\" ->"
|
|
|
|
" \"%s\"\n%s",
|
2002-01-06 11:26:09 +08:00
|
|
|
lc->conn->c_cdn.bv_val,
|
2001-12-28 12:20:08 +08:00
|
|
|
lc->bound_dn.bv_val ));
|
2001-05-17 06:55:44 +08:00
|
|
|
#else /* !NEW_LOGGING */
|
2001-05-12 08:51:28 +08:00
|
|
|
Debug( LDAP_DEBUG_ARGS,
|
|
|
|
"rw> bindDn: \"%s\" ->"
|
2001-05-17 06:55:44 +08:00
|
|
|
" \"%s\"\n%s",
|
2002-01-06 11:26:09 +08:00
|
|
|
lc->conn->c_cdn.bv_val,
|
2001-12-28 12:20:08 +08:00
|
|
|
lc->bound_dn.bv_val, "" );
|
2001-05-17 06:55:44 +08:00
|
|
|
#endif /* !NEW_LOGGING */
|
2001-05-12 08:51:28 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case REWRITE_REGEXEC_UNWILLING:
|
|
|
|
send_ldap_result( conn, op,
|
|
|
|
LDAP_UNWILLING_TO_PERFORM,
|
|
|
|
NULL, "Unwilling to perform",
|
|
|
|
NULL, NULL );
|
2001-05-17 06:55:44 +08:00
|
|
|
return( NULL );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
case REWRITE_REGEXEC_ERR:
|
2001-05-17 06:55:44 +08:00
|
|
|
send_ldap_result( conn, op,
|
|
|
|
LDAP_OPERATIONS_ERROR,
|
|
|
|
NULL, "Operations error",
|
|
|
|
NULL, NULL );
|
2001-05-12 08:51:28 +08:00
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
#else /* !ENABLE_REWRITE */
|
2001-12-28 12:20:08 +08:00
|
|
|
struct berval bv;
|
2002-01-06 11:26:09 +08:00
|
|
|
ldap_back_dn_massage( li, &lc->conn->c_cdn, &bv, 0, 1 );
|
|
|
|
if ( bv.bv_val == lc->conn->c_cdn.bv_val )
|
|
|
|
ber_dupbv( &lc->bound_dn, &bv );
|
|
|
|
else
|
|
|
|
lc->bound_dn = bv;
|
2001-05-12 08:51:28 +08:00
|
|
|
#endif /* !ENABLE_REWRITE */
|
2001-01-20 05:27:20 +08:00
|
|
|
} else {
|
2001-12-28 12:20:08 +08:00
|
|
|
lc->bound_dn.bv_val = NULL;
|
|
|
|
lc->bound_dn.bv_len = 0;
|
2001-01-20 05:27:20 +08:00
|
|
|
}
|
1999-05-26 10:35:20 +08:00
|
|
|
lc->bound = 0;
|
2001-01-20 05:27:20 +08:00
|
|
|
|
|
|
|
/* Inserts the newly created ldapconn in the avl tree */
|
1999-05-26 10:35:20 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &li->conn_mutex );
|
2001-01-20 05:27:20 +08:00
|
|
|
err = avl_insert( &li->conntree, (caddr_t)lc,
|
2001-05-12 08:51:28 +08:00
|
|
|
ldap_back_conn_cmp, ldap_back_conn_dup );
|
2001-01-20 05:27:20 +08:00
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
#if PRINT_CONNTREE > 0
|
2001-01-20 05:27:20 +08:00
|
|
|
myprint( li->conntree );
|
2001-05-12 08:51:28 +08:00
|
|
|
#endif /* PRINT_CONNTREE */
|
2001-01-20 05:27:20 +08:00
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
|
2001-01-20 05:27:20 +08:00
|
|
|
|
2001-05-17 06:55:44 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldap_back_getconn: conn %ld inserted\n",
|
|
|
|
lc->conn->c_connid ));
|
|
|
|
#else /* !NEW_LOGGING */
|
2001-01-20 05:27:20 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-05-17 06:55:44 +08:00
|
|
|
"=>ldap_back_getconn: conn %ld inserted\n%s%s",
|
2001-05-12 08:51:28 +08:00
|
|
|
lc->conn->c_connid, "", "" );
|
2001-05-17 06:55:44 +08:00
|
|
|
#endif /* !NEW_LOGGING */
|
2001-01-20 05:27:20 +08:00
|
|
|
|
|
|
|
/* Err could be -1 in case a duplicate ldapconn is inserted */
|
|
|
|
if ( err != 0 ) {
|
|
|
|
send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
|
|
|
|
NULL, "internal server error", NULL, NULL );
|
|
|
|
/* better destroy the ldapconn struct? */
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
} else {
|
2001-05-17 06:55:44 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldap_back_getconn: conn %ld inserted\n",
|
|
|
|
lc->conn->c_connid ));
|
|
|
|
#else /* !NEW_LOGGING */
|
2001-01-20 05:27:20 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-05-12 08:51:28 +08:00
|
|
|
"=>ldap_back_getconn: conn %ld fetched%s%s\n",
|
|
|
|
lc->conn->c_connid, "", "" );
|
2001-05-17 06:55:44 +08:00
|
|
|
#endif /* !NEW_LOGGING */
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|
2001-01-20 05:27:20 +08:00
|
|
|
|
1999-05-26 10:35:20 +08:00
|
|
|
return( lc );
|
|
|
|
}
|
|
|
|
|
2001-01-20 05:27:20 +08:00
|
|
|
/*
|
|
|
|
* ldap_back_dobind
|
|
|
|
*
|
|
|
|
* Note: as the check for the value of lc->bound was already here, I removed
|
|
|
|
* it from all the callers, and I made the function return the flag, so
|
|
|
|
* it can be used to simplify the check.
|
|
|
|
*/
|
|
|
|
int
|
1999-05-26 10:35:20 +08:00
|
|
|
ldap_back_dobind(struct ldapconn *lc, Operation *op)
|
|
|
|
{
|
2001-01-20 05:27:20 +08:00
|
|
|
if (lc->bound) {
|
|
|
|
return( lc->bound );
|
|
|
|
}
|
1999-05-26 10:35:20 +08:00
|
|
|
|
2001-12-28 12:20:08 +08:00
|
|
|
if (ldap_bind_s(lc->ld, lc->bound_dn.bv_val, NULL, LDAP_AUTH_SIMPLE) !=
|
2001-01-20 05:27:20 +08:00
|
|
|
LDAP_SUCCESS) {
|
1999-05-26 10:35:20 +08:00
|
|
|
ldap_back_op_result(lc, op);
|
2001-01-20 05:27:20 +08:00
|
|
|
return( 0 );
|
|
|
|
} /* else */
|
|
|
|
return( lc->bound = 1 );
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|
|
|
|
|
2000-10-23 21:32:14 +08:00
|
|
|
/* Map API errors to protocol errors... */
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_back_map_result(int err)
|
|
|
|
{
|
|
|
|
switch(err)
|
|
|
|
{
|
|
|
|
case LDAP_SERVER_DOWN:
|
|
|
|
return LDAP_UNAVAILABLE;
|
|
|
|
case LDAP_LOCAL_ERROR:
|
|
|
|
return LDAP_OPERATIONS_ERROR;
|
|
|
|
case LDAP_ENCODING_ERROR:
|
|
|
|
case LDAP_DECODING_ERROR:
|
|
|
|
return LDAP_PROTOCOL_ERROR;
|
|
|
|
case LDAP_TIMEOUT:
|
|
|
|
return LDAP_UNAVAILABLE;
|
|
|
|
case LDAP_AUTH_UNKNOWN:
|
|
|
|
return LDAP_AUTH_METHOD_NOT_SUPPORTED;
|
|
|
|
case LDAP_FILTER_ERROR:
|
|
|
|
return LDAP_OPERATIONS_ERROR;
|
|
|
|
case LDAP_USER_CANCELLED:
|
|
|
|
return LDAP_OPERATIONS_ERROR;
|
|
|
|
case LDAP_PARAM_ERROR:
|
|
|
|
return LDAP_PROTOCOL_ERROR;
|
|
|
|
case LDAP_NO_MEMORY:
|
|
|
|
return LDAP_OPERATIONS_ERROR;
|
|
|
|
case LDAP_CONNECT_ERROR:
|
|
|
|
return LDAP_UNAVAILABLE;
|
|
|
|
case LDAP_NOT_SUPPORTED:
|
|
|
|
return LDAP_UNWILLING_TO_PERFORM;
|
|
|
|
case LDAP_CONTROL_NOT_FOUND:
|
|
|
|
return LDAP_PROTOCOL_ERROR;
|
|
|
|
case LDAP_NO_RESULTS_RETURNED:
|
|
|
|
return LDAP_NO_SUCH_OBJECT;
|
|
|
|
case LDAP_MORE_RESULTS_TO_RETURN:
|
|
|
|
return LDAP_OTHER;
|
|
|
|
case LDAP_CLIENT_LOOP:
|
|
|
|
case LDAP_REFERRAL_LIMIT_EXCEEDED:
|
|
|
|
return LDAP_LOOP_DETECT;
|
|
|
|
default:
|
|
|
|
if LDAP_API_ERROR(err)
|
|
|
|
return LDAP_OTHER;
|
|
|
|
else
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-09-02 16:05:17 +08:00
|
|
|
int
|
1999-05-26 10:35:20 +08:00
|
|
|
ldap_back_op_result(struct ldapconn *lc, Operation *op)
|
|
|
|
{
|
2001-01-20 05:27:20 +08:00
|
|
|
int err = LDAP_SUCCESS;
|
|
|
|
char *msg = NULL;
|
|
|
|
char *match = NULL;
|
1999-05-26 10:35:20 +08:00
|
|
|
|
|
|
|
ldap_get_option(lc->ld, LDAP_OPT_ERROR_NUMBER, &err);
|
|
|
|
ldap_get_option(lc->ld, LDAP_OPT_ERROR_STRING, &msg);
|
1999-06-06 04:27:43 +08:00
|
|
|
ldap_get_option(lc->ld, LDAP_OPT_MATCHED_DN, &match);
|
2000-10-23 21:32:14 +08:00
|
|
|
err = ldap_back_map_result(err);
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
#ifdef ENABLE_REWRITE
|
|
|
|
|
|
|
|
/*
|
|
|
|
* need rewrite info; mmmh ...
|
|
|
|
*/
|
|
|
|
|
|
|
|
#else /* !ENABLE_REWRITE */
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
send_ldap_result( lc->conn, op, err, match, msg, NULL, NULL );
|
2001-01-20 05:27:20 +08:00
|
|
|
/* better test the pointers before freeing? */
|
2001-05-12 08:51:28 +08:00
|
|
|
if ( match ) {
|
|
|
|
free( match );
|
|
|
|
}
|
|
|
|
#endif /* !ENABLE_REWRITE */
|
|
|
|
|
2001-01-20 05:27:20 +08:00
|
|
|
if ( msg ) free( msg );
|
1999-05-26 10:35:20 +08:00
|
|
|
return( (err==LDAP_SUCCESS) ? 0 : -1 );
|
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
|