1998-08-09 08:43:13 +08:00
|
|
|
/* bind.c - ldbm backend bind and unbind routines */
|
|
|
|
|
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-09-03 05:31:35 +08:00
|
|
|
#include <lutil.h>
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#ifdef HAVE_KERBEROS
|
1998-08-09 08:43:13 +08:00
|
|
|
extern int krbv4_ldap_auth();
|
|
|
|
#endif
|
|
|
|
|
1998-08-09 11:34:35 +08:00
|
|
|
static int
|
|
|
|
crypted_value_find(
|
|
|
|
struct berval **vals,
|
|
|
|
struct berval *v,
|
|
|
|
int syntax,
|
|
|
|
int normalize,
|
|
|
|
struct berval *cred
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for ( i = 0; vals[i] != NULL; i++ ) {
|
1998-12-01 11:36:37 +08:00
|
|
|
if ( syntax != SYNTAX_BIN ) {
|
|
|
|
int result;
|
|
|
|
|
1998-12-30 05:45:08 +08:00
|
|
|
#ifdef SLAPD_CRYPT
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &crypt_mutex );
|
1998-12-30 05:45:08 +08:00
|
|
|
#endif
|
1998-12-01 11:36:37 +08:00
|
|
|
|
|
|
|
result = lutil_passwd(
|
|
|
|
(char*) cred->bv_val,
|
|
|
|
(char*) vals[i]->bv_val);
|
|
|
|
|
1998-12-30 05:45:08 +08:00
|
|
|
#ifdef SLAPD_CRYPT
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &crypt_mutex );
|
1998-12-30 05:45:08 +08:00
|
|
|
#endif
|
1998-12-01 11:36:37 +08:00
|
|
|
|
|
|
|
return result;
|
|
|
|
|
1998-08-09 11:34:35 +08:00
|
|
|
} else {
|
|
|
|
if ( value_cmp( vals[i], v, syntax, normalize ) == 0 ) {
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
int
|
|
|
|
ldbm_back_bind(
|
|
|
|
Backend *be,
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
|
|
|
char *dn,
|
|
|
|
int method,
|
1999-01-19 13:10:50 +08:00
|
|
|
struct berval *cred,
|
|
|
|
char** edn
|
1998-08-09 08:43:13 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
|
|
|
Entry *e;
|
|
|
|
Attribute *a;
|
|
|
|
int rc;
|
1998-11-24 04:08:25 +08:00
|
|
|
char *matched;
|
1998-10-25 09:41:42 +08:00
|
|
|
#ifdef HAVE_KERBEROS
|
1998-08-09 08:43:13 +08:00
|
|
|
char krbname[MAX_K_NAME_SZ + 1];
|
|
|
|
AUTH_DAT ad;
|
|
|
|
#endif
|
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
Debug(LDAP_DEBUG_ARGS, "==> ldbm_back_bind: dn: %s\n", dn, 0, 0);
|
|
|
|
|
1999-01-19 13:10:50 +08:00
|
|
|
*edn = NULL;
|
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
/* get entry with reader lock */
|
|
|
|
if ( (e = dn2entry_r( be, dn, &matched )) == NULL ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
/* allow noauth binds */
|
|
|
|
if ( method == LDAP_AUTH_SIMPLE && cred->bv_len == 0 ) {
|
|
|
|
/*
|
|
|
|
* bind successful, but return 1 so we don't
|
|
|
|
* authorize based on noauth credentials
|
|
|
|
*/
|
|
|
|
send_ldap_result( conn, op, LDAP_SUCCESS, NULL, NULL );
|
|
|
|
rc = 1;
|
|
|
|
} else if ( be_isroot_pw( be, dn, cred ) ) {
|
|
|
|
/* front end will send result */
|
1999-01-19 13:10:50 +08:00
|
|
|
*edn = ch_strdup( be_root_dn( be ) );
|
1998-08-09 08:43:13 +08:00
|
|
|
rc = 0;
|
|
|
|
} else {
|
1998-09-21 04:22:46 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_NO_SUCH_OBJECT, matched, NULL );
|
1998-08-09 08:43:13 +08:00
|
|
|
rc = 1;
|
|
|
|
}
|
|
|
|
if ( matched != NULL ) {
|
|
|
|
free( matched );
|
|
|
|
}
|
|
|
|
return( rc );
|
|
|
|
}
|
|
|
|
|
1999-01-19 13:10:50 +08:00
|
|
|
*edn = ch_strdup( e->e_dn );
|
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
/* check for deleted */
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
switch ( method ) {
|
|
|
|
case LDAP_AUTH_SIMPLE:
|
|
|
|
if ( cred->bv_len == 0 ) {
|
|
|
|
send_ldap_result( conn, op, LDAP_SUCCESS, NULL, NULL );
|
1998-09-21 04:22:46 +08:00
|
|
|
|
|
|
|
/* stop front end from sending result */
|
|
|
|
rc = 1;
|
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
} else if ( be_isroot_pw( be, dn, cred ) ) {
|
|
|
|
/* front end will send result */
|
1999-01-19 13:10:50 +08:00
|
|
|
*edn = ch_strdup( be_root_dn( be ) );
|
1998-09-21 04:22:46 +08:00
|
|
|
rc = 0;
|
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( (a = attr_find( e->e_attrs, "userpassword" )) == NULL ) {
|
|
|
|
if ( be_isroot_pw( be, dn, cred ) ) {
|
|
|
|
/* front end will send result */
|
1999-01-19 13:10:50 +08:00
|
|
|
*edn = ch_strdup( be_root_dn( be ) );
|
1998-09-21 04:22:46 +08:00
|
|
|
rc = 0;
|
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
send_ldap_result( conn, op, LDAP_INAPPROPRIATE_AUTH,
|
|
|
|
NULL, NULL );
|
1998-09-21 04:22:46 +08:00
|
|
|
rc = 1;
|
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1998-08-09 11:34:35 +08:00
|
|
|
if ( crypted_value_find( a->a_vals, cred, a->a_syntax, 0, cred ) != 0 )
|
1998-09-21 04:22:46 +08:00
|
|
|
{
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( be_isroot_pw( be, dn, cred ) ) {
|
|
|
|
/* front end will send result */
|
1999-01-19 13:10:50 +08:00
|
|
|
*edn = ch_strdup( be_root_dn( be ) );
|
1998-09-21 04:22:46 +08:00
|
|
|
rc = 0;
|
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
send_ldap_result( conn, op, LDAP_INVALID_CREDENTIALS,
|
1998-08-09 11:34:35 +08:00
|
|
|
NULL, NULL );
|
1998-09-21 04:22:46 +08:00
|
|
|
rc = 1;
|
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1998-09-21 04:22:46 +08:00
|
|
|
rc = 0;
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#ifdef HAVE_KERBEROS
|
1998-08-09 08:43:13 +08:00
|
|
|
case LDAP_AUTH_KRBV41:
|
|
|
|
if ( krbv4_ldap_auth( be, cred, &ad ) != LDAP_SUCCESS ) {
|
|
|
|
send_ldap_result( conn, op, LDAP_INVALID_CREDENTIALS,
|
|
|
|
NULL, NULL );
|
1998-09-21 04:22:46 +08:00
|
|
|
rc = 0;
|
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
sprintf( krbname, "%s%s%s@%s", ad.pname, *ad.pinst ? "."
|
|
|
|
: "", ad.pinst, ad.prealm );
|
|
|
|
if ( (a = attr_find( e->e_attrs, "krbname" )) == NULL ) {
|
|
|
|
/*
|
|
|
|
* no krbName values present: check against DN
|
|
|
|
*/
|
|
|
|
if ( strcasecmp( dn, krbname ) == 0 ) {
|
1998-09-21 04:22:46 +08:00
|
|
|
rc = 0; /* XXX wild ass guess */
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
send_ldap_result( conn, op, LDAP_INAPPROPRIATE_AUTH,
|
|
|
|
NULL, NULL );
|
1998-09-21 04:22:46 +08:00
|
|
|
rc = 1;
|
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
} else { /* look for krbName match */
|
|
|
|
struct berval krbval;
|
|
|
|
|
|
|
|
krbval.bv_val = krbname;
|
|
|
|
krbval.bv_len = strlen( krbname );
|
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
if ( value_find( a->a_vals, &krbval, a->a_syntax, 3 ) != 0 ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
send_ldap_result( conn, op,
|
|
|
|
LDAP_INVALID_CREDENTIALS, NULL, NULL );
|
1998-09-21 04:22:46 +08:00
|
|
|
rc = 1;
|
|
|
|
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;
|
|
|
|
|
|
|
|
case LDAP_AUTH_KRBV42:
|
|
|
|
send_ldap_result( conn, op, LDAP_SUCCESS, NULL, NULL );
|
1998-09-21 04:22:46 +08:00
|
|
|
/* stop front end from sending result */
|
|
|
|
rc = 1;
|
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
default:
|
|
|
|
send_ldap_result( conn, op, LDAP_STRONG_AUTH_NOT_SUPPORTED,
|
|
|
|
NULL, "auth method not supported" );
|
1998-09-21 04:22:46 +08:00
|
|
|
rc = 1;
|
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
return_results:;
|
|
|
|
/* free entry and reader lock */
|
|
|
|
cache_return_entry_r( &li->li_cache, e );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
/* front end with send result on success (rc==0) */
|
|
|
|
return( rc );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1998-09-21 04:22:46 +08:00
|
|
|
|