mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
68d561a97b
NULL does not meet basic syntax rules.
331 lines
7.5 KiB
C
331 lines
7.5 KiB
C
/* bind.c - decode an ldap bind operation and pass it to a backend db */
|
|
|
|
/*
|
|
* Copyright (c) 1995 Regents of the University of Michigan.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms are permitted
|
|
* provided that this notice is preserved and that due credit is given
|
|
* to the University of Michigan at Ann Arbor. The name of the University
|
|
* may not be used to endorse or promote products derived from this
|
|
* software without specific prior written permission. This software
|
|
* is provided ``as is'' without express or implied warranty.
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
#include <ac/socket.h>
|
|
|
|
#include "slap.h"
|
|
|
|
char *supportedSASLMechanisms[] = {
|
|
"X-DIGEST-MD5",
|
|
NULL
|
|
};
|
|
|
|
int
|
|
do_bind(
|
|
Connection *conn,
|
|
Operation *op
|
|
)
|
|
{
|
|
BerElement *ber = op->o_ber;
|
|
ber_int_t version;
|
|
ber_tag_t method;
|
|
char *mech;
|
|
char *dn, *ndn;
|
|
ber_tag_t tag;
|
|
int rc = LDAP_SUCCESS;
|
|
struct berval cred;
|
|
Backend *be;
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "do_bind\n", 0, 0, 0 );
|
|
|
|
dn = NULL;
|
|
ndn = NULL;
|
|
mech = NULL;
|
|
cred.bv_val = NULL;
|
|
|
|
ldap_pvt_thread_mutex_lock( &conn->c_mutex );
|
|
|
|
/* Force to connection to "anonymous" until bind succeeds.
|
|
* This may need to be relocated or done on a case by case basis
|
|
* to handle certain SASL mechanisms.
|
|
*/
|
|
|
|
if ( conn->c_cdn != NULL ) {
|
|
free( conn->c_cdn );
|
|
conn->c_cdn = NULL;
|
|
}
|
|
|
|
if ( conn->c_dn != NULL ) {
|
|
free( conn->c_dn );
|
|
conn->c_dn = NULL;
|
|
}
|
|
|
|
ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
|
|
|
|
if ( op->o_dn != NULL ) {
|
|
free( op->o_dn );
|
|
op->o_dn = ch_strdup( "" );
|
|
}
|
|
|
|
if ( op->o_ndn != NULL ) {
|
|
free( op->o_ndn );
|
|
op->o_ndn = ch_strdup( "" );
|
|
}
|
|
|
|
/*
|
|
* Parse the bind request. It looks like this:
|
|
*
|
|
* BindRequest ::= SEQUENCE {
|
|
* version INTEGER, -- version
|
|
* name DistinguishedName, -- dn
|
|
* authentication CHOICE {
|
|
* simple [0] OCTET STRING -- passwd
|
|
* krbv42ldap [1] OCTET STRING
|
|
* krbv42dsa [2] OCTET STRING
|
|
* SASL [3] SaslCredentials
|
|
* }
|
|
* }
|
|
*
|
|
* SaslCredentials ::= SEQUENCE {
|
|
* mechanism LDAPString,
|
|
* credentials OCTET STRING OPTIONAL
|
|
* }
|
|
*/
|
|
|
|
tag = ber_scanf( ber, "{iat" /*}*/, &version, &dn, &method );
|
|
|
|
if ( tag == LBER_ERROR ) {
|
|
Debug( LDAP_DEBUG_ANY, "bind: ber_scanf failed\n", 0, 0, 0 );
|
|
send_ldap_disconnect( conn, op,
|
|
LDAP_PROTOCOL_ERROR, "decoding error" );
|
|
rc = -1;
|
|
goto cleanup;
|
|
}
|
|
|
|
ndn = ch_strdup( dn );
|
|
|
|
if ( dn_normalize_case( ndn ) == NULL ) {
|
|
Debug( LDAP_DEBUG_ANY, "bind: invalid dn (%s)\n", dn, 0, 0 );
|
|
send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX, NULL,
|
|
"invalid DN", NULL, NULL );
|
|
goto cleanup;
|
|
}
|
|
|
|
op->o_protocol = version;
|
|
|
|
if( method != LDAP_AUTH_SASL ) {
|
|
tag = ber_scanf( ber, /*{*/ "o}", &cred );
|
|
|
|
} else {
|
|
tag = ber_scanf( ber, "{a" /*}*/, &mech );
|
|
|
|
if ( tag != LBER_ERROR ) {
|
|
ber_len_t len;
|
|
tag = ber_peek_tag( ber, &len );
|
|
|
|
if ( tag == LDAP_TAG_LDAPCRED ) {
|
|
tag = ber_scanf( ber, "o", &cred );
|
|
}
|
|
|
|
if ( tag != LBER_ERROR ) {
|
|
tag = ber_scanf( ber, /*{{*/ "}}" );
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( tag == LBER_ERROR ) {
|
|
send_ldap_disconnect( conn, op,
|
|
LDAP_PROTOCOL_ERROR,
|
|
"decoding error" );
|
|
rc = -1;
|
|
goto cleanup;
|
|
}
|
|
|
|
if( (rc = get_ctrls( conn, op, 1 )) != LDAP_SUCCESS ) {
|
|
Debug( LDAP_DEBUG_ANY, "do_bind: get_ctrls failed\n", 0, 0, 0 );
|
|
goto cleanup;
|
|
}
|
|
|
|
if( method == LDAP_AUTH_SASL ) {
|
|
Debug( LDAP_DEBUG_TRACE, "do_sasl_bind: dn (%s) mech %s\n",
|
|
dn, mech, NULL );
|
|
} else {
|
|
Debug( LDAP_DEBUG_TRACE, "do_bind: version %d dn (%s) method %d\n",
|
|
version, dn, method );
|
|
}
|
|
|
|
Statslog( LDAP_DEBUG_STATS, "conn=%d op=%d BIND dn=\"%s\" method=%d\n",
|
|
op->o_connid, op->o_opid, ndn, method, 0 );
|
|
|
|
if ( version < LDAP_VERSION_MIN || version > LDAP_VERSION_MAX ) {
|
|
Debug( LDAP_DEBUG_ANY, "unknown version %d\n", version, 0, 0 );
|
|
send_ldap_result( conn, op, rc = LDAP_PROTOCOL_ERROR,
|
|
NULL, "version not supported", NULL, NULL );
|
|
goto cleanup;
|
|
}
|
|
|
|
if ( method == LDAP_AUTH_SASL ) {
|
|
if ( version < LDAP_VERSION3 ) {
|
|
Debug( LDAP_DEBUG_ANY, "do_bind: sasl with LDAPv%d\n",
|
|
version, 0, 0 );
|
|
send_ldap_disconnect( conn, op,
|
|
LDAP_PROTOCOL_ERROR, "sasl bind requires LDAPv3" );
|
|
rc = -1;
|
|
goto cleanup;
|
|
}
|
|
|
|
if( mech == NULL || *mech == '\0' ) {
|
|
Debug( LDAP_DEBUG_ANY,
|
|
"do_bind: no sasl mechanism provided\n",
|
|
version, 0, 0 );
|
|
send_ldap_result( conn, op, rc = LDAP_AUTH_METHOD_NOT_SUPPORTED,
|
|
NULL, "no sasl mechanism provided", NULL, NULL );
|
|
goto cleanup;
|
|
}
|
|
|
|
if( !charray_inlist( supportedSASLMechanisms, mech ) ) {
|
|
Debug( LDAP_DEBUG_ANY,
|
|
"do_bind: sasl mechanism \"%s\" not supported.\n",
|
|
mech, 0, 0 );
|
|
send_ldap_result( conn, op, rc = LDAP_AUTH_METHOD_NOT_SUPPORTED,
|
|
NULL, "sasl mechanism not supported", NULL, NULL );
|
|
goto cleanup;
|
|
}
|
|
|
|
ldap_pvt_thread_mutex_lock( &conn->c_mutex );
|
|
|
|
if ( conn->c_authmech != NULL ) {
|
|
assert( conn->c_bind_in_progress );
|
|
|
|
if((strcmp(conn->c_authmech, mech) != 0)) {
|
|
/* mechanism changed, cancel in progress bind */
|
|
conn->c_bind_in_progress = 0;
|
|
if( conn->c_authstate != NULL ) {
|
|
free(conn->c_authstate);
|
|
conn->c_authstate = NULL;
|
|
}
|
|
free(conn->c_authmech);
|
|
conn->c_authmech = NULL;
|
|
}
|
|
|
|
#ifdef LDAP_DEBUG
|
|
} else {
|
|
assert( !conn->c_bind_in_progress );
|
|
assert( conn->c_authmech == NULL );
|
|
assert( conn->c_authstate == NULL );
|
|
#endif
|
|
}
|
|
|
|
} else {
|
|
ldap_pvt_thread_mutex_lock( &conn->c_mutex );
|
|
|
|
if ( conn->c_authmech != NULL ) {
|
|
assert( conn->c_bind_in_progress );
|
|
|
|
/* cancel in progress bind */
|
|
conn->c_bind_in_progress = 0;
|
|
|
|
if( conn->c_authstate != NULL ) {
|
|
free(conn->c_authstate);
|
|
conn->c_authstate = NULL;
|
|
}
|
|
free(conn->c_authmech);
|
|
conn->c_authmech = NULL;
|
|
}
|
|
}
|
|
|
|
conn->c_protocol = version;
|
|
ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
|
|
|
|
/* accept null binds */
|
|
if ( ndn == NULL || *ndn == '\0' ) {
|
|
/*
|
|
* we already forced connection to "anonymous", we just
|
|
* need to send success
|
|
*/
|
|
send_ldap_result( conn, op, LDAP_SUCCESS,
|
|
NULL, NULL, NULL, NULL );
|
|
goto cleanup;
|
|
}
|
|
|
|
/*
|
|
* We could be serving multiple database backends. Select the
|
|
* appropriate one, or send a referral to our "referral server"
|
|
* if we don't hold it.
|
|
*/
|
|
|
|
if ( (be = select_backend( ndn )) == NULL ) {
|
|
if ( cred.bv_len == 0 ) {
|
|
send_ldap_result( conn, op, LDAP_SUCCESS,
|
|
NULL, NULL, NULL, NULL );
|
|
|
|
} else if ( default_referral ) {
|
|
send_ldap_result( conn, op, rc = LDAP_REFERRAL,
|
|
NULL, NULL, default_referral, NULL );
|
|
|
|
} else {
|
|
send_ldap_result( conn, op, rc = LDAP_INVALID_CREDENTIALS,
|
|
NULL, NULL, NULL, NULL );
|
|
}
|
|
|
|
goto cleanup;
|
|
}
|
|
|
|
if ( be->be_bind ) {
|
|
/* alias suffix */
|
|
char *edn;
|
|
|
|
if ( (*be->be_bind)( be, conn, op, ndn, method, mech, &cred, &edn ) == 0 ) {
|
|
ldap_pvt_thread_mutex_lock( &conn->c_mutex );
|
|
|
|
conn->c_cdn = dn;
|
|
dn = NULL;
|
|
|
|
if(edn != NULL) {
|
|
conn->c_dn = edn;
|
|
} else {
|
|
conn->c_dn = ndn;
|
|
ndn = NULL;
|
|
}
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "do_bind: bound \"%s\" to \"%s\"\n",
|
|
conn->c_cdn, conn->c_dn, method );
|
|
|
|
ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
|
|
|
|
/* send this here to avoid a race condition */
|
|
send_ldap_result( conn, op, LDAP_SUCCESS,
|
|
NULL, NULL, NULL, NULL );
|
|
|
|
} else if (edn != NULL) {
|
|
free( edn );
|
|
}
|
|
|
|
} else {
|
|
send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
|
|
NULL, "Function not implemented", NULL, NULL );
|
|
}
|
|
|
|
cleanup:
|
|
if( dn != NULL ) {
|
|
free( dn );
|
|
}
|
|
if( ndn != NULL ) {
|
|
free( ndn );
|
|
}
|
|
if ( mech != NULL ) {
|
|
free( mech );
|
|
}
|
|
if ( cred.bv_val != NULL ) {
|
|
free( cred.bv_val );
|
|
}
|
|
|
|
return rc;
|
|
}
|