openldap/servers/slapd/back-sql/bind.c

124 lines
3.1 KiB
C
Raw Normal View History

2003-12-08 03:19:18 +08:00
/* $OpenLDAP$ */
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
2000-03-17 03:08:22 +08:00
*
2006-01-04 07:11:52 +08:00
* Copyright 1999-2006 The OpenLDAP Foundation.
2003-12-08 03:19:18 +08:00
* Portions Copyright 1999 Dmitry Kovalev.
* Portions Copyright 2002 Pierangelo Masarati.
2003-12-08 03:19:18 +08:00
* 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>.
*/
/* ACKNOWLEDGEMENTS:
* This work was initially developed by Dmitry Kovalev for inclusion
* by OpenLDAP Software. Additional significant contributors include
* Pierangelo Masarati.
2000-03-17 03:08:22 +08:00
*/
#include "portable.h"
#include <stdio.h>
#include <sys/types.h>
2000-03-17 03:08:22 +08:00
#include "slap.h"
#include "proto-sql.h"
int
2003-04-03 06:58:02 +08:00
backsql_bind( Operation *op, SlapReply *rs )
2000-03-17 03:08:22 +08:00
{
SQLHDBC dbh = SQL_NULL_HDBC;
2005-01-16 02:43:34 +08:00
Entry e = { 0 };
Attribute *a;
backsql_srch_info bsi = { 0 };
2003-04-16 07:11:31 +08:00
AttributeName anlist[2];
int rc;
Debug( LDAP_DEBUG_TRACE, "==>backsql_bind()\n", 0, 0, 0 );
2003-04-03 06:58:02 +08:00
if ( be_isroot_pw( op ) ) {
ber_dupbv( &op->oq_bind.rb_edn, be_root_dn( op->o_bd ) );
Debug( LDAP_DEBUG_TRACE, "<==backsql_bind() root bind\n",
0, 0, 0 );
2005-01-16 02:43:34 +08:00
return LDAP_SUCCESS;
}
2003-04-03 06:58:02 +08:00
ber_dupbv( &op->oq_bind.rb_edn, &op->o_req_ndn );
2003-04-03 06:58:02 +08:00
if ( op->oq_bind.rb_method != LDAP_AUTH_SIMPLE ) {
rs->sr_err = LDAP_STRONG_AUTH_NOT_SUPPORTED;
rs->sr_text = "authentication method not supported";
send_ldap_result( op, rs );
2005-01-16 02:43:34 +08:00
return rs->sr_err;
}
/*
* method = LDAP_AUTH_SIMPLE
*/
2003-04-03 08:35:16 +08:00
rs->sr_err = backsql_get_db_conn( op, &dbh );
if ( !dbh ) {
Debug( LDAP_DEBUG_TRACE, "backsql_bind(): "
"could not get connection handle - exiting\n",
0, 0, 0 );
2003-04-03 06:58:02 +08:00
rs->sr_text = ( rs->sr_err == LDAP_OTHER )
? "SQL-backend error" : NULL;
2005-01-16 02:43:34 +08:00
goto error_return;
}
2005-01-08 17:59:16 +08:00
anlist[0].an_name = slap_schema.si_ad_userPassword->ad_cname;
anlist[0].an_desc = slap_schema.si_ad_userPassword;
anlist[1].an_name.bv_val = NULL;
2005-01-16 02:43:34 +08:00
bsi.bsi_e = &e;
rc = backsql_init_search( &bsi, &op->o_req_ndn, LDAP_SCOPE_BASE,
(time_t)(-1), NULL, dbh, op, rs, anlist,
2005-01-16 02:43:34 +08:00
BACKSQL_ISF_GET_ENTRY );
2003-04-03 06:58:02 +08:00
if ( rc != LDAP_SUCCESS ) {
Debug( LDAP_DEBUG_TRACE, "backsql_bind(): "
"could not retrieve bindDN ID - no such entry\n",
0, 0, 0 );
2003-04-03 06:58:02 +08:00
rs->sr_err = LDAP_INVALID_CREDENTIALS;
goto error_return;
}
2005-01-16 02:43:34 +08:00
a = attr_find( e.e_attrs, slap_schema.si_ad_userPassword );
if ( a == NULL ) {
2004-09-12 04:01:03 +08:00
rs->sr_err = LDAP_INVALID_CREDENTIALS;
goto error_return;
}
2005-01-16 02:43:34 +08:00
if ( slap_passwd_check( op, &e, a, &op->oq_bind.rb_cred,
&rs->sr_text ) != 0 )
{
2003-04-03 06:58:02 +08:00
rs->sr_err = LDAP_INVALID_CREDENTIALS;
goto error_return;
}
error_return:;
if ( !BER_BVISNULL( &bsi.bsi_base_id.eid_ndn ) ) {
(void)backsql_free_entryID( op, &bsi.bsi_base_id, 0 );
}
if ( !BER_BVISNULL( &e.e_nname ) ) {
backsql_entry_clean( op, &e );
2005-01-08 17:59:16 +08:00
}
if ( bsi.bsi_attrs != NULL ) {
op->o_tmpfree( bsi.bsi_attrs, op->o_tmpmemctx );
}
2005-01-16 02:43:34 +08:00
if ( rs->sr_err != LDAP_SUCCESS ) {
2003-04-03 06:58:02 +08:00
send_ldap_result( op, rs );
}
2005-01-16 02:43:34 +08:00
Debug( LDAP_DEBUG_TRACE,"<==backsql_bind()\n", 0, 0, 0 );
2005-01-08 17:59:16 +08:00
2005-01-16 02:43:34 +08:00
return rs->sr_err;
2000-03-17 03:08:22 +08:00
}