1999-12-10 06:41:45 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1999-2003 The OpenLDAP Foundation.
|
1999-12-10 06:41:45 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted only
|
|
|
|
* as authorized by the OpenLDAP Public License. A copy of this
|
|
|
|
* license is available at http://www.OpenLDAP.org/license.html or
|
|
|
|
* in file LICENSE in the top-level directory of the distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
2001-11-18 00:18:07 +08:00
|
|
|
#include <ldap_pvt.h>
|
|
|
|
|
1999-12-10 06:41:45 +08:00
|
|
|
#include "slap.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_TLS
|
|
|
|
|
|
|
|
int
|
2003-03-30 17:03:54 +08:00
|
|
|
starttls_extop ( Operation *op, SlapReply *rs )
|
1999-12-10 06:41:45 +08:00
|
|
|
{
|
1999-12-11 03:18:33 +08:00
|
|
|
void *ctx;
|
2000-03-03 04:36:53 +08:00
|
|
|
int rc;
|
1999-12-11 03:18:33 +08:00
|
|
|
|
2003-03-31 15:49:34 +08:00
|
|
|
if ( op->ore_reqdata != NULL ) {
|
1999-12-10 07:21:48 +08:00
|
|
|
/* no request data should be provided */
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = "no request data expected";
|
1999-12-10 07:21:48 +08:00
|
|
|
return LDAP_PROTOCOL_ERROR;
|
|
|
|
}
|
|
|
|
|
2000-03-03 04:36:53 +08:00
|
|
|
/* acquire connection lock */
|
2003-03-30 17:03:54 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
|
2000-03-03 04:36:53 +08:00
|
|
|
|
1999-12-10 06:41:45 +08:00
|
|
|
/* can't start TLS if it is already started */
|
2003-03-30 17:03:54 +08:00
|
|
|
if (op->o_conn->c_is_tls != 0) {
|
|
|
|
rs->sr_text = "TLS already started";
|
2000-03-03 04:36:53 +08:00
|
|
|
rc = LDAP_OPERATIONS_ERROR;
|
|
|
|
goto done;
|
|
|
|
}
|
1999-12-10 06:41:45 +08:00
|
|
|
|
2000-08-31 06:24:21 +08:00
|
|
|
/* can't start TLS if there are other op's around */
|
2003-03-30 17:03:54 +08:00
|
|
|
if (( !LDAP_STAILQ_EMPTY(&op->o_conn->c_ops) &&
|
|
|
|
(LDAP_STAILQ_FIRST(&op->o_conn->c_ops) != op ||
|
2002-01-03 08:12:46 +08:00
|
|
|
LDAP_STAILQ_NEXT(op, o_next) != NULL)) ||
|
2003-03-30 17:03:54 +08:00
|
|
|
( !LDAP_STAILQ_EMPTY(&op->o_conn->c_pending_ops) ))
|
2000-08-31 06:24:21 +08:00
|
|
|
{
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = "cannot start TLS when operations are outstanding";
|
2000-08-31 06:24:21 +08:00
|
|
|
rc = LDAP_OPERATIONS_ERROR;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-21 12:44:34 +08:00
|
|
|
if ( !( global_disallows & SLAP_DISALLOW_TLS_2_ANON ) &&
|
2003-03-30 17:03:54 +08:00
|
|
|
( op->o_conn->c_dn.bv_len != 0 ) )
|
2000-09-09 06:59:01 +08:00
|
|
|
{
|
2002-11-12 02:55:45 +08:00
|
|
|
Statslog( LDAP_DEBUG_STATS,
|
|
|
|
"conn=%lu op=%lu AUTHZ anonymous mech=starttls ssf=0",
|
|
|
|
op->o_connid, op->o_opid, 0, 0, 0 );
|
|
|
|
|
2001-12-21 12:44:34 +08:00
|
|
|
/* force to anonymous */
|
2003-03-30 17:03:54 +08:00
|
|
|
connection2anonymous( op->o_conn );
|
2000-09-09 06:59:01 +08:00
|
|
|
}
|
|
|
|
|
2001-12-21 12:44:34 +08:00
|
|
|
if ( ( global_disallows & SLAP_DISALLOW_TLS_AUTHC ) &&
|
2003-03-30 17:03:54 +08:00
|
|
|
( op->o_conn->c_dn.bv_len != 0 ) )
|
2000-09-09 06:59:01 +08:00
|
|
|
{
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = "cannot start TLS after authentication";
|
2001-12-21 12:44:34 +08:00
|
|
|
rc = LDAP_OPERATIONS_ERROR;
|
|
|
|
goto done;
|
2000-09-09 06:59:01 +08:00
|
|
|
}
|
|
|
|
|
1999-12-11 03:18:33 +08:00
|
|
|
/* fail if TLS could not be initialized */
|
2001-06-25 15:33:42 +08:00
|
|
|
if (ldap_pvt_tls_get_option( NULL, LDAP_OPT_X_TLS_CTX, &ctx ) != 0
|
1999-12-11 03:18:33 +08:00
|
|
|
|| ctx == NULL)
|
|
|
|
{
|
|
|
|
if (default_referral != NULL) {
|
2000-04-25 21:02:42 +08:00
|
|
|
/* caller will put the referral in the result */
|
2000-03-03 04:36:53 +08:00
|
|
|
rc = LDAP_REFERRAL;
|
|
|
|
goto done;
|
1999-12-11 03:18:33 +08:00
|
|
|
}
|
2000-03-03 04:36:53 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_text = "Could not initialize TLS";
|
2000-03-03 04:36:53 +08:00
|
|
|
rc = LDAP_UNAVAILABLE;
|
|
|
|
goto done;
|
1999-12-11 03:18:33 +08:00
|
|
|
}
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
op->o_conn->c_is_tls = 1;
|
|
|
|
op->o_conn->c_needs_tls_accept = 1;
|
1999-12-10 12:52:32 +08:00
|
|
|
|
2000-03-03 04:36:53 +08:00
|
|
|
rc = LDAP_SUCCESS;
|
|
|
|
|
|
|
|
done:
|
|
|
|
/* give up connection lock */
|
2003-03-30 17:03:54 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
|
2000-03-03 04:36:53 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* RACE CONDITION: we give up lock before sending result
|
|
|
|
* Should be resolved by reworking connection state, not
|
|
|
|
* by moving send here (so as to ensure proper TLS sequencing)
|
|
|
|
*/
|
|
|
|
|
|
|
|
return rc;
|
1999-12-10 06:41:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* HAVE_TLS */
|