1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-07 07:07:46 +08:00
|
|
|
/*
|
2000-05-13 10:47:56 +08:00
|
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
1999-08-07 07:07:46 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
1999-08-03 10:37:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1999-08-04 02:14:24 +08:00
|
|
|
#include <ac/stdlib.h>
|
1999-08-03 10:37:42 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "proto-slap.h"
|
|
|
|
|
|
|
|
#include <lber.h>
|
|
|
|
#include <ldap_log.h>
|
|
|
|
|
1999-08-04 07:23:05 +08:00
|
|
|
#ifdef HAVE_CYRUS_SASL
|
2000-07-14 06:54:38 +08:00
|
|
|
#include <limits.h>
|
|
|
|
#include <sasl.h>
|
|
|
|
|
|
|
|
#include <ldap_pvt.h>
|
2000-05-10 12:29:51 +08:00
|
|
|
|
|
|
|
#ifdef SLAPD_SPASSWD
|
|
|
|
#include <lutil.h>
|
|
|
|
#endif
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
static char *sasl_host = NULL;
|
|
|
|
static sasl_security_properties_t sasl_secprops;
|
1999-08-03 10:37:42 +08:00
|
|
|
|
2000-07-14 12:35:36 +08:00
|
|
|
|
|
|
|
static int
|
2000-07-15 08:45:31 +08:00
|
|
|
slap_sasl_log(
|
2000-07-14 12:35:36 +08:00
|
|
|
void *context,
|
|
|
|
int priority,
|
|
|
|
const char *message)
|
|
|
|
{
|
|
|
|
Connection *conn = context;
|
|
|
|
int level;
|
|
|
|
const char * label;
|
|
|
|
|
|
|
|
if ( message == NULL ) {
|
|
|
|
return SASL_BADPARAM;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (priority) {
|
|
|
|
case SASL_LOG_ERR:
|
|
|
|
level = LDAP_DEBUG_ANY;
|
|
|
|
label = "Error";
|
|
|
|
break;
|
|
|
|
case SASL_LOG_WARNING:
|
|
|
|
level = LDAP_DEBUG_TRACE;
|
|
|
|
label = "Warning";
|
|
|
|
break;
|
|
|
|
case SASL_LOG_INFO:
|
|
|
|
level = LDAP_DEBUG_TRACE;
|
|
|
|
label = "Info";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return SASL_BADPARAM;
|
|
|
|
}
|
|
|
|
|
|
|
|
Debug( level, "SASL [conn=%d] %s: %s\n",
|
|
|
|
conn ? conn->c_connid: -1,
|
|
|
|
label, message );
|
|
|
|
|
|
|
|
return SASL_OK;
|
|
|
|
}
|
|
|
|
|
2000-07-15 04:56:30 +08:00
|
|
|
static int
|
2000-07-15 06:00:16 +08:00
|
|
|
slap_sasl_authorize(
|
2000-07-15 04:56:30 +08:00
|
|
|
void *context,
|
|
|
|
const char *authcid,
|
|
|
|
const char *authzid,
|
|
|
|
const char **user,
|
|
|
|
const char **errstr)
|
|
|
|
{
|
2000-07-15 06:00:16 +08:00
|
|
|
Connection *conn = context;
|
2000-07-15 08:45:31 +08:00
|
|
|
|
|
|
|
*user = NULL;
|
2000-07-15 04:56:30 +08:00
|
|
|
|
2000-07-15 06:00:16 +08:00
|
|
|
if ( authcid == NULL || *authcid == '\0' ) {
|
2000-07-15 04:56:30 +08:00
|
|
|
*errstr = "empty authentication identity";
|
2000-07-15 06:00:16 +08:00
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "SASL Authorize [conn=%ld]: "
|
|
|
|
"empty authentication identity\n",
|
|
|
|
(long) (conn ? conn->c_connid : -1),
|
|
|
|
0, 0 );
|
2000-07-15 04:56:30 +08:00
|
|
|
return SASL_BADAUTH;
|
|
|
|
}
|
|
|
|
|
2000-07-25 07:05:45 +08:00
|
|
|
Debug( LDAP_DEBUG_ARGS, "SASL Authorize [conn=%ld]: "
|
|
|
|
"authcid=\"%s\" authzid=\"%s\"\n",
|
|
|
|
(long) (conn ? conn->c_connid : -1),
|
|
|
|
authcid ? authcid : "<empty>",
|
|
|
|
authcid ? authcid : "<empty>" );
|
|
|
|
|
2000-07-15 06:00:16 +08:00
|
|
|
if ( authzid == NULL || *authzid == '\0' ||
|
|
|
|
strcmp( authcid, authzid ) == 0 )
|
|
|
|
{
|
2000-07-15 08:45:31 +08:00
|
|
|
char* cuser;
|
2000-07-15 04:56:30 +08:00
|
|
|
size_t len = sizeof("u:") + strlen( authcid );
|
|
|
|
|
2000-07-15 08:45:31 +08:00
|
|
|
cuser = ch_malloc( len );
|
|
|
|
strcpy( cuser, "u:" );
|
|
|
|
strcpy( &cuser[sizeof("u:")-1], authcid );
|
|
|
|
|
|
|
|
*user = cuser;
|
2000-07-15 06:00:16 +08:00
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "SASL Authorize [conn=%ld]: "
|
|
|
|
"\"%s\" as \"%s\"\n",
|
|
|
|
(long) (conn ? conn->c_connid : -1),
|
2000-07-15 08:45:31 +08:00
|
|
|
authcid, cuser );
|
|
|
|
|
2000-07-15 04:56:30 +08:00
|
|
|
return SASL_OK;
|
|
|
|
}
|
|
|
|
|
2000-07-15 06:00:16 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "SASL Authorize [conn=%ld]: "
|
|
|
|
"\"%s\" as \"%s\" disallowed. No policy.\n",
|
|
|
|
(long) (conn ? conn->c_connid : -1),
|
|
|
|
authcid, authzid );
|
|
|
|
|
2000-07-15 04:56:30 +08:00
|
|
|
*errstr = "no proxy policy";
|
2000-07-15 08:45:31 +08:00
|
|
|
return SASL_NOAUTHZ;
|
2000-07-15 04:56:30 +08:00
|
|
|
}
|
|
|
|
|
2000-07-14 12:35:36 +08:00
|
|
|
|
2000-05-04 02:59:58 +08:00
|
|
|
static int
|
|
|
|
slap_sasl_err2ldap( int saslerr )
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
switch (saslerr) {
|
|
|
|
case SASL_CONTINUE:
|
|
|
|
rc = LDAP_SASL_BIND_IN_PROGRESS;
|
|
|
|
break;
|
|
|
|
case SASL_FAIL:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
break;
|
|
|
|
case SASL_NOMEM:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
break;
|
|
|
|
case SASL_NOMECH:
|
|
|
|
rc = LDAP_AUTH_METHOD_NOT_SUPPORTED;
|
|
|
|
break;
|
|
|
|
case SASL_BADAUTH:
|
|
|
|
rc = LDAP_INVALID_CREDENTIALS;
|
|
|
|
break;
|
|
|
|
case SASL_NOAUTHZ:
|
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
break;
|
|
|
|
case SASL_TOOWEAK:
|
|
|
|
case SASL_ENCRYPT:
|
|
|
|
rc = LDAP_INAPPROPRIATE_AUTH;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
2000-07-14 06:54:38 +08:00
|
|
|
#endif
|
2000-05-04 02:59:58 +08:00
|
|
|
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
int slap_sasl_init( void )
|
1999-08-03 10:37:42 +08:00
|
|
|
{
|
2000-07-14 06:54:38 +08:00
|
|
|
#ifdef HAVE_CYRUS_SASL
|
1999-08-03 10:37:42 +08:00
|
|
|
int rc;
|
1999-08-04 07:23:05 +08:00
|
|
|
sasl_conn_t *server = NULL;
|
2000-07-15 06:00:16 +08:00
|
|
|
static sasl_callback_t server_callbacks[] = {
|
2000-07-15 08:45:31 +08:00
|
|
|
{ SASL_CB_LOG, &slap_sasl_log, NULL },
|
2000-07-14 06:54:38 +08:00
|
|
|
{ SASL_CB_LIST_END, NULL, NULL }
|
|
|
|
};
|
1999-08-03 10:37:42 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
sasl_set_alloc(
|
|
|
|
ch_malloc,
|
|
|
|
ch_calloc,
|
|
|
|
ch_realloc,
|
|
|
|
ch_free );
|
2000-01-02 09:21:25 +08:00
|
|
|
|
2000-05-04 02:59:58 +08:00
|
|
|
sasl_set_mutex(
|
2000-07-14 06:54:38 +08:00
|
|
|
ldap_pvt_sasl_mutex_new,
|
|
|
|
ldap_pvt_sasl_mutex_lock,
|
|
|
|
ldap_pvt_sasl_mutex_unlock,
|
|
|
|
ldap_pvt_sasl_mutex_dispose );
|
2000-01-02 09:21:25 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
/* should provide callbacks for logging */
|
2000-07-06 05:43:11 +08:00
|
|
|
/* server name should be configurable */
|
2000-07-14 06:54:38 +08:00
|
|
|
rc = sasl_server_init( server_callbacks, "slapd" );
|
1999-08-03 10:37:42 +08:00
|
|
|
|
|
|
|
if( rc != SASL_OK ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "sasl_server_init failed\n",
|
|
|
|
0, 0, 0 );
|
1999-08-04 07:23:05 +08:00
|
|
|
return -1;
|
1999-08-03 10:37:42 +08:00
|
|
|
}
|
|
|
|
|
2000-04-26 00:03:17 +08:00
|
|
|
if( sasl_host == NULL ) {
|
2000-05-11 10:41:34 +08:00
|
|
|
static char hostname[MAXHOSTNAMELEN+1];
|
2000-04-26 00:03:17 +08:00
|
|
|
|
|
|
|
if( gethostname( hostname, MAXHOSTNAMELEN ) == 0 ) {
|
|
|
|
hostname[MAXHOSTNAMELEN] = '\0';
|
|
|
|
sasl_host = hostname;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"slap_sasl_init: %s initialized!\n",
|
|
|
|
sasl_host, 0, 0 );
|
1999-08-03 10:37:42 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
/* default security properties */
|
|
|
|
memset( &sasl_secprops, '\0', sizeof(sasl_secprops) );
|
|
|
|
sasl_secprops.max_ssf = UINT_MAX;
|
|
|
|
sasl_secprops.maxbufsize = 65536;
|
|
|
|
sasl_secprops.security_flags = SASL_SEC_NOPLAINTEXT|SASL_SEC_NOANONYMOUS;
|
|
|
|
|
|
|
|
#ifdef SLAPD_SPASSWD
|
|
|
|
lutil_passwd_sasl_conn = server;
|
|
|
|
#else
|
|
|
|
sasl_dispose( &server );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int slap_sasl_destroy( void )
|
|
|
|
{
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
#ifdef SLAPD_SPASSWD
|
|
|
|
sasl_dispose( &lutil_passwd_sasl_conn );
|
|
|
|
#endif
|
|
|
|
sasl_done();
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int slap_sasl_open( Connection *conn )
|
|
|
|
{
|
|
|
|
int sc = LDAP_SUCCESS;
|
|
|
|
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
sasl_conn_t *ctx = NULL;
|
2000-07-15 08:01:09 +08:00
|
|
|
sasl_callback_t *session_callbacks;
|
|
|
|
|
|
|
|
assert( conn->c_sasl_context == NULL );
|
|
|
|
assert( conn->c_sasl_extra == NULL );
|
|
|
|
|
|
|
|
session_callbacks =
|
2000-07-15 06:00:16 +08:00
|
|
|
ch_calloc( 3, sizeof(sasl_callback_t));
|
2000-07-15 08:01:09 +08:00
|
|
|
conn->c_sasl_extra = session_callbacks;
|
2000-07-15 06:00:16 +08:00
|
|
|
|
|
|
|
session_callbacks[0].id = SASL_CB_LOG;
|
2000-07-15 08:45:31 +08:00
|
|
|
session_callbacks[0].proc = &slap_sasl_log;
|
2000-07-15 06:00:16 +08:00
|
|
|
session_callbacks[0].context = conn;
|
|
|
|
|
|
|
|
session_callbacks[1].id = SASL_CB_PROXY_POLICY;
|
|
|
|
session_callbacks[1].proc = &slap_sasl_authorize;
|
|
|
|
session_callbacks[1].context = conn;
|
|
|
|
|
|
|
|
session_callbacks[2].id = SASL_CB_LIST_END;
|
|
|
|
session_callbacks[2].proc = NULL;
|
|
|
|
session_callbacks[2].context = NULL;
|
2000-07-14 06:54:38 +08:00
|
|
|
|
|
|
|
/* create new SASL context */
|
2000-07-14 12:35:36 +08:00
|
|
|
sc = sasl_server_new( "ldap", sasl_host, global_realm,
|
|
|
|
session_callbacks,
|
2000-07-14 06:54:38 +08:00
|
|
|
#ifdef LDAP_SASL_SECURITY_LAYER
|
|
|
|
SASL_SECURITY_LAYER,
|
|
|
|
#else
|
|
|
|
0,
|
|
|
|
#endif
|
|
|
|
&ctx );
|
|
|
|
|
|
|
|
|
|
|
|
if( sc != SASL_OK ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "sasl_server_new failed: %d\n",
|
|
|
|
sc, 0, 0 );
|
1999-08-04 07:23:05 +08:00
|
|
|
return -1;
|
1999-08-03 10:37:42 +08:00
|
|
|
}
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
conn->c_sasl_context = ctx;
|
|
|
|
|
|
|
|
if( sc == SASL_OK ) {
|
|
|
|
sc = sasl_setprop( ctx,
|
|
|
|
SASL_SEC_PROPS, &sasl_secprops );
|
|
|
|
|
|
|
|
if( sc != SASL_OK ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "sasl_setprop failed: %d\n",
|
|
|
|
sc, 0, 0 );
|
|
|
|
slap_sasl_close( conn );
|
1999-08-04 07:23:05 +08:00
|
|
|
return -1;
|
|
|
|
}
|
1999-08-03 10:37:42 +08:00
|
|
|
}
|
2000-07-14 06:54:38 +08:00
|
|
|
|
|
|
|
sc = slap_sasl_err2ldap( sc );
|
1999-08-04 07:23:05 +08:00
|
|
|
#endif
|
2000-07-14 06:54:38 +08:00
|
|
|
return sc;
|
|
|
|
}
|
1999-08-03 10:37:42 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
int slap_sasl_external(
|
|
|
|
Connection *conn,
|
|
|
|
unsigned ssf,
|
|
|
|
char *auth_id )
|
|
|
|
{
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
int sc;
|
|
|
|
sasl_conn_t *ctx = conn->c_sasl_context;
|
|
|
|
sasl_external_properties_t extprops;
|
1999-08-03 10:37:42 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
if ( ctx == NULL ) {
|
|
|
|
return LDAP_UNAVAILABLE;
|
1999-08-03 10:37:42 +08:00
|
|
|
}
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
memset( &extprops, 0L, sizeof(extprops) );
|
|
|
|
extprops.ssf = ssf;
|
|
|
|
extprops.auth_id = auth_id;
|
1999-08-03 10:37:42 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
sc = sasl_setprop( ctx, SASL_SSF_EXTERNAL,
|
|
|
|
(void *) &extprops );
|
2000-05-10 12:29:51 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
if ( sc != SASL_OK ) {
|
|
|
|
return LDAP_OTHER;
|
|
|
|
}
|
2000-05-10 12:29:51 +08:00
|
|
|
#endif
|
1999-08-03 10:37:42 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
return LDAP_SUCCESS;
|
1999-08-03 10:37:42 +08:00
|
|
|
}
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
int slap_sasl_reset( Connection *conn )
|
1999-08-03 10:37:42 +08:00
|
|
|
{
|
2000-07-14 06:54:38 +08:00
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
sasl_conn_t *ctx = conn->c_sasl_context;
|
|
|
|
|
|
|
|
if( ctx != NULL ) {
|
|
|
|
}
|
2000-05-10 12:29:51 +08:00
|
|
|
#endif
|
2000-07-14 06:54:38 +08:00
|
|
|
/* must return "anonymous" */
|
|
|
|
return LDAP_SUCCESS;
|
1999-08-03 10:37:42 +08:00
|
|
|
}
|
1999-08-04 07:23:05 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
char ** slap_sasl_mechs( Connection *conn )
|
|
|
|
{
|
|
|
|
char **mechs = NULL;
|
|
|
|
|
2000-01-02 09:21:25 +08:00
|
|
|
#ifdef HAVE_CYRUS_SASL
|
2000-07-14 06:54:38 +08:00
|
|
|
sasl_conn_t *ctx = conn->c_sasl_context;
|
|
|
|
|
|
|
|
if( ctx != NULL ) {
|
|
|
|
int sc;
|
|
|
|
char *mechstr;
|
|
|
|
|
|
|
|
sc = sasl_listmech( ctx,
|
|
|
|
NULL, NULL, ",", NULL,
|
|
|
|
&mechstr, NULL, NULL );
|
|
|
|
|
|
|
|
if( sc != SASL_OK ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "slap_sasl_listmech failed: %d\n",
|
|
|
|
sc, 0, 0 );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
mechs = str2charray( mechstr, "," );
|
|
|
|
|
|
|
|
ch_free( mechstr );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return mechs;
|
|
|
|
}
|
|
|
|
|
|
|
|
int slap_sasl_close( Connection *conn )
|
|
|
|
{
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
sasl_conn_t *ctx = conn->c_sasl_context;
|
|
|
|
|
|
|
|
if( ctx != NULL ) {
|
|
|
|
sasl_dispose( &ctx );
|
|
|
|
}
|
|
|
|
|
|
|
|
conn->c_sasl_context = NULL;
|
2000-07-15 08:01:09 +08:00
|
|
|
|
|
|
|
free( conn->c_sasl_extra );
|
|
|
|
conn->c_sasl_extra = NULL;
|
2000-07-14 06:54:38 +08:00
|
|
|
#endif
|
2000-07-16 07:25:46 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
int slap_sasl_bind(
|
2000-01-02 09:21:25 +08:00
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
2000-05-22 11:46:57 +08:00
|
|
|
const char *dn,
|
|
|
|
const char *ndn,
|
|
|
|
const char *mech,
|
2000-01-02 09:21:25 +08:00
|
|
|
struct berval *cred,
|
2000-04-26 01:23:54 +08:00
|
|
|
char **edn )
|
2000-01-02 09:21:25 +08:00
|
|
|
{
|
2000-07-14 06:54:38 +08:00
|
|
|
int rc = 1;
|
|
|
|
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
sasl_conn_t *ctx = conn->c_sasl_context;
|
2000-01-02 09:21:25 +08:00
|
|
|
struct berval response;
|
2000-07-14 06:54:38 +08:00
|
|
|
unsigned reslen;
|
2000-01-02 09:21:25 +08:00
|
|
|
const char *errstr;
|
|
|
|
int sc;
|
|
|
|
|
2000-05-17 00:22:52 +08:00
|
|
|
Debug(LDAP_DEBUG_ARGS,
|
|
|
|
"==> sasl_bind: dn=\"%s\" mech=%s cred->bv_len=%d\n",
|
2000-07-20 09:04:34 +08:00
|
|
|
dn, mech ? mech : "<continuing>", cred ? cred->bv_len : 0 );
|
2000-01-02 09:21:25 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
if( ctx == NULL ) {
|
|
|
|
send_ldap_result( conn, op, LDAP_UNAVAILABLE,
|
|
|
|
NULL, "SASL unavailable on this session", NULL, NULL );
|
|
|
|
return rc;
|
|
|
|
}
|
2000-07-06 05:43:11 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
if ( mech != NULL ) {
|
|
|
|
sc = sasl_server_start( ctx,
|
|
|
|
mech,
|
|
|
|
cred->bv_val, cred->bv_len,
|
|
|
|
(char **)&response.bv_val, &reslen, &errstr );
|
2000-07-06 05:43:11 +08:00
|
|
|
|
2000-01-02 09:21:25 +08:00
|
|
|
} else {
|
2000-07-14 06:54:38 +08:00
|
|
|
sc = sasl_server_step( ctx,
|
2000-07-06 05:43:11 +08:00
|
|
|
cred->bv_val, cred->bv_len,
|
2000-05-16 12:52:37 +08:00
|
|
|
(char **)&response.bv_val, &reslen, &errstr );
|
2000-01-02 09:21:25 +08:00
|
|
|
}
|
2000-04-25 21:21:42 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
response.bv_len = reslen;
|
|
|
|
|
2000-01-02 09:21:25 +08:00
|
|
|
if ( sc == SASL_OK ) {
|
2000-07-14 06:54:38 +08:00
|
|
|
char *username = NULL;
|
2000-01-02 09:21:25 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
sc = sasl_getprop( ctx,
|
|
|
|
SASL_USERNAME, (void **)&username );
|
2000-07-06 05:43:11 +08:00
|
|
|
|
|
|
|
if ( sc != SASL_OK ) {
|
2000-07-14 06:54:38 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE,
|
|
|
|
"slap_sasl_bind: getprop(USERNAME) failed!\n",
|
|
|
|
0, 0, 0);
|
|
|
|
|
2000-05-04 02:59:58 +08:00
|
|
|
send_ldap_result( conn, op, rc = slap_sasl_err2ldap( sc ),
|
2000-07-06 05:43:11 +08:00
|
|
|
NULL, "no SASL username", NULL, NULL );
|
2000-04-26 01:23:54 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
} else if ( username == NULL || *username == '\0' ) {
|
|
|
|
Debug(LDAP_DEBUG_TRACE,
|
|
|
|
"slap_sasl_bind: getprop(USERNAME) returned NULL!\n",
|
|
|
|
0, 0, 0);
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, rc = LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
NULL, "no SASL username", NULL, NULL );
|
|
|
|
|
2000-01-02 09:21:25 +08:00
|
|
|
} else {
|
2000-07-14 06:54:38 +08:00
|
|
|
char *realm = NULL;
|
2000-07-15 04:57:52 +08:00
|
|
|
sasl_ssf_t *ssf = NULL;
|
2000-07-14 06:54:38 +08:00
|
|
|
|
|
|
|
(void) sasl_getprop( ctx,
|
|
|
|
SASL_REALM, (void **)&realm );
|
|
|
|
|
|
|
|
(void) sasl_getprop( ctx,
|
|
|
|
SASL_SSF, (void *)&ssf );
|
|
|
|
|
|
|
|
Debug(LDAP_DEBUG_TRACE,
|
|
|
|
"slap_sasl_bind: username=\"%s\" realm=\"%s\" ssf=%lu\n",
|
|
|
|
username ? username : "",
|
|
|
|
realm ? realm : "",
|
2000-07-15 04:57:52 +08:00
|
|
|
(unsigned long) ( ssf ? *ssf : 0 ) );
|
2000-04-26 02:02:50 +08:00
|
|
|
|
2000-07-25 07:05:45 +08:00
|
|
|
|
|
|
|
rc = LDAP_SUCCESS;
|
|
|
|
|
|
|
|
if( username == NULL || (
|
|
|
|
!strncasecmp( username, "anonymous", sizeof("anonyous")-1 ) &&
|
2000-07-14 06:54:38 +08:00
|
|
|
( ( username[sizeof("anonymous")] == '\0' ) ||
|
2000-07-25 07:05:45 +08:00
|
|
|
( username[sizeof("anonymous")] == '@' ) ) ) )
|
2000-04-26 01:23:54 +08:00
|
|
|
{
|
2000-07-14 06:54:38 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "<== slap_sasl_bind: anonymous\n",
|
2000-07-06 09:22:42 +08:00
|
|
|
0, 0, 0);
|
|
|
|
|
2000-07-25 07:05:45 +08:00
|
|
|
} else if ( username[0] == 'u' && username[1] == ':'
|
|
|
|
&& username[2] != '\0'
|
|
|
|
&& strpbrk( &username[2], "=,;\"\\") == NULL )
|
|
|
|
{
|
2000-07-14 06:54:38 +08:00
|
|
|
*edn = ch_malloc( sizeof( "uid= + realm=" )
|
2000-07-25 07:05:45 +08:00
|
|
|
+ strlen( &username[2] )
|
2000-07-14 06:54:38 +08:00
|
|
|
+ ( realm ? strlen( realm ) : 0 ) );
|
2000-07-06 09:22:42 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
strcpy( *edn, "uid=" );
|
2000-07-25 07:05:45 +08:00
|
|
|
strcat( *edn, &username[2] );
|
2000-07-14 06:54:38 +08:00
|
|
|
|
|
|
|
if( realm && *realm ) {
|
|
|
|
strcat( *edn, " + realm=" );
|
|
|
|
strcat( *edn, realm );
|
|
|
|
}
|
|
|
|
|
|
|
|
Debug(LDAP_DEBUG_TRACE, "<== slap_sasl_bind: authzdn: \"%s\"\n",
|
2000-07-06 09:22:42 +08:00
|
|
|
*edn, 0, 0);
|
2000-07-25 07:05:45 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
rc = LDAP_INAPPROPRIATE_AUTH;
|
|
|
|
errstr = "authorization disallowed";
|
|
|
|
Debug(LDAP_DEBUG_TRACE, "<== slap_sasl_bind: %s\n",
|
|
|
|
errstr, 0, 0);
|
2000-01-02 09:21:25 +08:00
|
|
|
}
|
2000-04-26 01:23:54 +08:00
|
|
|
|
2000-07-25 07:05:45 +08:00
|
|
|
if( rc == LDAP_SUCCESS ) {
|
|
|
|
send_ldap_sasl( conn, op, rc,
|
|
|
|
NULL, NULL, NULL, NULL,
|
|
|
|
response.bv_len ? &response : NULL );
|
|
|
|
|
|
|
|
} else {
|
|
|
|
send_ldap_result( conn, op, rc,
|
|
|
|
NULL, errstr, NULL, NULL );
|
|
|
|
}
|
2000-01-02 09:21:25 +08:00
|
|
|
}
|
2000-04-26 01:23:54 +08:00
|
|
|
|
2000-01-02 09:21:25 +08:00
|
|
|
} else if ( sc == SASL_CONTINUE ) {
|
2000-04-26 01:23:54 +08:00
|
|
|
send_ldap_sasl( conn, op, rc = LDAP_SASL_BIND_IN_PROGRESS,
|
2000-04-25 21:21:42 +08:00
|
|
|
NULL, NULL, NULL, NULL, &response );
|
2000-01-02 09:21:25 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
} else {
|
|
|
|
send_ldap_result( conn, op, rc = slap_sasl_err2ldap( sc ),
|
|
|
|
NULL, errstr, NULL, NULL );
|
2000-04-26 02:02:50 +08:00
|
|
|
}
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "<== slap_sasl_bind: rc=%d\n", rc, 0, 0);
|
2000-01-02 09:21:25 +08:00
|
|
|
|
1999-08-04 07:23:05 +08:00
|
|
|
#else
|
2000-07-14 06:54:38 +08:00
|
|
|
send_ldap_result( conn, op, rc = LDAP_UNAVAILABLE,
|
|
|
|
NULL, "SASL not supported", NULL, NULL );
|
|
|
|
#endif
|
2000-04-26 03:28:00 +08:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
char* slap_sasl_secprops( const char *in )
|
|
|
|
{
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
int rc = ldap_pvt_sasl_secprops( in, &sasl_secprops );
|
|
|
|
|
|
|
|
return rc == LDAP_SUCCESS ? NULL : "Invalid security properties";
|
|
|
|
#else
|
|
|
|
return "SASL not supported";
|
1999-08-03 10:37:42 +08:00
|
|
|
#endif
|
2000-07-14 06:54:38 +08:00
|
|
|
}
|
2000-07-14 12:35:36 +08:00
|
|
|
|