1998-08-09 08:43:13 +08:00
|
|
|
/* bind.c - ldbm backend bind and unbind routines */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-29 05:08:20 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 1998-2004 The OpenLDAP Foundation.
|
2003-11-29 05:08:20 +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>.
|
1999-08-07 07:07:46 +08:00
|
|
|
*/
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#include <ac/krb.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/unistd.h>
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include "slap.h"
|
|
|
|
#include "back-ldbm.h"
|
1998-09-21 04:22:46 +08:00
|
|
|
#include "proto-back-ldbm.h"
|
1998-08-09 11:34:35 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
int
|
|
|
|
ldbm_back_bind(
|
|
|
|
Operation *op,
|
2003-03-30 17:03:54 +08:00
|
|
|
SlapReply *rs )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
2003-03-30 17:03:54 +08:00
|
|
|
struct ldbminfo *li = (struct ldbminfo *) op->o_bd->be_private;
|
1998-08-09 08:43:13 +08:00
|
|
|
Entry *e;
|
|
|
|
Attribute *a;
|
|
|
|
int rc;
|
1999-07-16 10:45:46 +08:00
|
|
|
Entry *matched;
|
2000-01-09 02:42:11 +08:00
|
|
|
#ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
|
1998-08-09 08:43:13 +08:00
|
|
|
char krbname[MAX_K_NAME_SZ + 1];
|
2000-09-08 06:03:32 +08:00
|
|
|
AttributeDescription *krbattr = slap_schema.si_ad_krbName;
|
1998-08-09 08:43:13 +08:00
|
|
|
AUTH_DAT ad;
|
|
|
|
#endif
|
|
|
|
|
2000-05-28 07:16:30 +08:00
|
|
|
AttributeDescription *password = slap_schema.si_ad_userPassword;
|
2000-02-15 04:57:34 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_LDBM, ENTRY,
|
2003-03-30 17:03:54 +08:00
|
|
|
"ldbm_back_bind: dn: %s.\n", op->o_req_dn.bv_val, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
2004-03-28 02:19:52 +08:00
|
|
|
Debug(LDAP_DEBUG_ARGS,
|
|
|
|
"==> ldbm_back_bind: dn: %s\n", op->o_req_dn.bv_val, 0, 0);
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( op->oq_bind.rb_method == LDAP_AUTH_SIMPLE && be_isroot_pw( op ) ) {
|
|
|
|
ber_dupbv( &op->oq_bind.rb_edn, be_root_dn( op->o_bd ) );
|
|
|
|
/* front end will send result */
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
2002-01-30 01:27:20 +08:00
|
|
|
|
2002-01-30 01:58:36 +08:00
|
|
|
/* grab giant lock for reading */
|
|
|
|
ldap_pvt_thread_rdwr_rlock(&li->li_giant_rwlock);
|
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
/* get entry with reader lock */
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( (e = dn2entry_r( op->o_bd, &op->o_req_ndn, &matched )) == NULL ) {
|
1999-07-16 10:45:46 +08:00
|
|
|
if( matched != NULL ) {
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_matched = ch_strdup( matched->e_dn );
|
2004-03-20 17:25:00 +08:00
|
|
|
rs->sr_flags |= REP_MATCHED_MUSTBEFREED;
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_ref = is_entry_referral( matched )
|
|
|
|
? get_entry_referrals( op, matched )
|
1999-07-16 10:45:46 +08:00
|
|
|
: NULL;
|
|
|
|
|
|
|
|
cache_return_entry_r( &li->li_cache, matched );
|
2001-10-26 10:05:14 +08:00
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
} else {
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_ref = referral_rewrite( default_referral,
|
|
|
|
NULL, &op->o_req_dn, LDAP_SCOPE_DEFAULT );
|
1999-07-16 10:45:46 +08:00
|
|
|
}
|
|
|
|
|
2002-01-30 01:58:36 +08:00
|
|
|
ldap_pvt_thread_rdwr_runlock(&li->li_giant_rwlock);
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/* allow noauth binds */
|
1999-07-05 03:37:25 +08:00
|
|
|
rc = 1;
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( rs->sr_ref != NULL ) {
|
|
|
|
rs->sr_err = LDAP_REFERRAL;
|
1999-09-24 10:19:31 +08:00
|
|
|
} else {
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_err = LDAP_INVALID_CREDENTIALS;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
2003-03-30 17:03:54 +08:00
|
|
|
send_ldap_result( op, rs );
|
1999-07-05 03:37:25 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( rs->sr_ref ) ber_bvarray_free( rs->sr_ref );
|
2003-09-27 15:36:20 +08:00
|
|
|
rs->sr_ref = NULL;
|
2003-07-15 08:55:58 +08:00
|
|
|
return rs->sr_err;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
/* check for deleted */
|
2003-07-15 08:55:58 +08:00
|
|
|
#ifdef LDBM_SUBENTRIES
|
|
|
|
if ( is_entry_subentry( e ) ) {
|
|
|
|
/* entry is an subentry, don't allow bind */
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG ( OPERATION, DETAIL1,
|
|
|
|
"bdb_bind: entry is subentry\n", 0, 0, 0 );
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"entry is subentry\n", 0, 0, 0 );
|
|
|
|
#endif
|
2003-08-14 04:27:10 +08:00
|
|
|
rc = LDAP_INVALID_CREDENTIALS;
|
2003-07-15 08:55:58 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
#endif
|
1998-09-21 04:22:46 +08:00
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
if ( is_entry_alias( e ) ) {
|
|
|
|
/* entry is an alias, don't allow bind */
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_LDBM, INFO,
|
2004-03-28 02:19:52 +08:00
|
|
|
"ldbm_back_bind: entry (%s) is an alias.\n",
|
|
|
|
e->e_name.bv_val, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
2004-03-28 02:19:52 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "entry is alias\n", 0, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
2004-03-28 02:19:52 +08:00
|
|
|
|
|
|
|
#if 1
|
|
|
|
rc = LDAP_INVALID_CREDENTIALS;
|
|
|
|
#else
|
2004-03-20 17:25:00 +08:00
|
|
|
rs->sr_text = "entry is alias";
|
2003-07-15 08:55:58 +08:00
|
|
|
rc = LDAP_ALIAS_PROBLEM;
|
2004-03-28 02:19:52 +08:00
|
|
|
#endif
|
1999-07-16 10:45:46 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( is_entry_referral( e ) ) {
|
|
|
|
/* entry is a referral, don't allow bind */
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_ref = get_entry_referrals( op, e );
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_LDBM, INFO,
|
|
|
|
"ldbm_back_bind: entry(%s) is a referral.\n", e->e_dn, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-07-16 10:45:46 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "entry is referral\n", 0,
|
|
|
|
0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if( rs->sr_ref != NULL ) {
|
2004-03-20 17:25:00 +08:00
|
|
|
rc = LDAP_REFERRAL;
|
|
|
|
rs->sr_matched = ch_strdup( e->e_name.bv_val );
|
|
|
|
rs->sr_flags |= REP_MATCHED_MUSTBEFREED;
|
1999-09-24 10:19:31 +08:00
|
|
|
|
|
|
|
} else {
|
2004-03-20 17:25:00 +08:00
|
|
|
rc = LDAP_INVALID_CREDENTIALS;
|
1999-09-24 10:19:31 +08:00
|
|
|
}
|
1999-07-05 02:46:24 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
switch ( op->oq_bind.rb_method ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
case LDAP_AUTH_SIMPLE:
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( ! access_allowed( op, e,
|
2002-02-09 13:14:17 +08:00
|
|
|
password, NULL, ACL_AUTH, NULL ) )
|
1999-07-05 02:46:24 +08:00
|
|
|
{
|
2004-03-28 02:19:52 +08:00
|
|
|
#if 1
|
|
|
|
rc = LDAP_INVALID_CREDENTIALS;
|
|
|
|
#else
|
2003-07-15 08:55:58 +08:00
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
2004-03-28 02:19:52 +08:00
|
|
|
#endif
|
1999-07-05 02:46:24 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2000-03-17 10:06:50 +08:00
|
|
|
if ( (a = attr_find( e->e_attrs, password )) == NULL ) {
|
1999-03-02 03:42:06 +08:00
|
|
|
/* stop front end from sending result */
|
2004-03-28 02:19:52 +08:00
|
|
|
#if 1
|
|
|
|
rc = LDAP_INVALID_CREDENTIALS;
|
|
|
|
#else
|
2003-07-15 08:55:58 +08:00
|
|
|
rc = LDAP_INAPPROPRIATE_AUTH;
|
2004-03-28 02:19:52 +08:00
|
|
|
#endif
|
1998-09-21 04:22:46 +08:00
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
2004-03-28 02:19:52 +08:00
|
|
|
if ( slap_passwd_check( op->o_conn,
|
|
|
|
a, &op->oq_bind.rb_cred, &rs->sr_text ) != 0 )
|
|
|
|
{
|
1999-03-02 03:42:06 +08:00
|
|
|
/* stop front end from sending result */
|
2003-07-15 08:55:58 +08:00
|
|
|
rc = LDAP_INVALID_CREDENTIALS;
|
1998-09-21 04:22:46 +08:00
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1999-03-02 03:42:06 +08:00
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
rc = 0;
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
|
|
|
|
2000-01-09 02:42:11 +08:00
|
|
|
#ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
|
1998-08-09 08:43:13 +08:00
|
|
|
case LDAP_AUTH_KRBV41:
|
2004-03-28 02:19:52 +08:00
|
|
|
if ( krbv4_ldap_auth( op->o_bd, &op->oq_bind.rb_cred, &ad )
|
|
|
|
!= LDAP_SUCCESS )
|
|
|
|
{
|
2003-07-15 08:55:58 +08:00
|
|
|
rc = LDAP_INVALID_CREDENTIALS;
|
1999-07-08 02:47:51 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( ! access_allowed( op, e,
|
2002-02-09 13:14:17 +08:00
|
|
|
krbattr, NULL, ACL_AUTH, NULL ) )
|
1999-07-08 02:47:51 +08:00
|
|
|
{
|
2003-07-15 08:55:58 +08:00
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
1998-09-21 04:22:46 +08:00
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1999-07-05 14:26:26 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
sprintf( krbname, "%s%s%s@%s", ad.pname, *ad.pinst ? "."
|
|
|
|
: "", ad.pinst, ad.prealm );
|
1999-07-05 14:26:26 +08:00
|
|
|
|
2000-09-08 06:03:32 +08:00
|
|
|
if ( (a = attr_find( e->e_attrs, krbattr )) == NULL ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
/*
|
2000-01-02 09:21:25 +08:00
|
|
|
* no krbname values present: check against DN
|
1998-08-09 08:43:13 +08:00
|
|
|
*/
|
2003-03-30 17:03:54 +08:00
|
|
|
if ( strcasecmp( op->o_req_dn.bv_val, krbname ) == 0 ) {
|
1999-07-05 02:46:24 +08:00
|
|
|
rc = 0;
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
|
|
|
}
|
2003-07-15 08:55:58 +08:00
|
|
|
rc = LDAP_INAPPROPRIATE_AUTH;
|
1998-09-21 04:22:46 +08:00
|
|
|
goto return_results;
|
1999-03-02 03:42:06 +08:00
|
|
|
|
2000-01-02 09:21:25 +08:00
|
|
|
} else { /* look for krbname match */
|
1998-08-09 08:43:13 +08:00
|
|
|
struct berval krbval;
|
|
|
|
|
|
|
|
krbval.bv_val = krbname;
|
|
|
|
krbval.bv_len = strlen( krbname );
|
|
|
|
|
2000-09-08 06:03:32 +08:00
|
|
|
if ( value_find( a->a_desc, a->a_vals, &krbval ) != 0 ) {
|
2003-07-15 08:55:58 +08:00
|
|
|
rc = LDAP_INVALID_CREDENTIALS;
|
1998-09-21 04:22:46 +08:00
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
}
|
1998-12-23 01:04:34 +08:00
|
|
|
rc = 0;
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
default:
|
2004-03-28 02:19:52 +08:00
|
|
|
assert( 0 ); /* should not be reachable */
|
2004-03-20 17:25:00 +08:00
|
|
|
rs->sr_text = "authentication method not supported";
|
2003-07-15 08:55:58 +08:00
|
|
|
rc = LDAP_STRONG_AUTH_NOT_SUPPORTED;
|
1998-09-21 04:22:46 +08:00
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
2004-03-20 17:25:00 +08:00
|
|
|
ber_dupbv( &op->oq_bind.rb_edn, &e->e_name );
|
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
return_results:;
|
|
|
|
/* free entry and reader lock */
|
|
|
|
cache_return_entry_r( &li->li_cache, e );
|
2002-01-30 01:58:36 +08:00
|
|
|
ldap_pvt_thread_rdwr_runlock(&li->li_giant_rwlock);
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2004-03-20 17:25:00 +08:00
|
|
|
if ( rc ) {
|
|
|
|
rs->sr_err = rc;
|
|
|
|
send_ldap_result( op, rs );
|
|
|
|
if ( rs->sr_ref ) {
|
|
|
|
ber_bvarray_free( rs->sr_ref );
|
|
|
|
rs->sr_ref = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-25 04:12:50 +08:00
|
|
|
/* front end will send result on success (rc==0) */
|
1998-09-21 04:22:46 +08:00
|
|
|
return( rc );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1998-09-21 04:22:46 +08:00
|
|
|
|