2009-01-28 16:33:58 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2011-01-04 17:07:58 -05:00
|
|
|
* Copyright (C) 2009, 2011, Markus Moeller, <markus_moeller@compuserve.com>
|
2014-08-13 17:59:28 -04:00
|
|
|
* Copyright (C) 2012 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2009-01-28 16:33:58 -05:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2009-01-28 16:33:58 -05:00
|
|
|
|
2012-09-06 14:51:30 -04:00
|
|
|
#if defined(USE_WINDOWS_SSPI) && !defined(CURL_DISABLE_PROXY)
|
2009-01-28 16:33:58 -05:00
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "urldata.h"
|
|
|
|
#include "sendf.h"
|
|
|
|
#include "connect.h"
|
|
|
|
#include "strerror.h"
|
|
|
|
#include "timeval.h"
|
|
|
|
#include "socks.h"
|
2009-01-29 15:32:27 -05:00
|
|
|
#include "curl_sspi.h"
|
2012-06-15 12:05:11 -04:00
|
|
|
#include "curl_multibyte.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "warnless.h"
|
2009-01-28 16:33:58 -05:00
|
|
|
|
2009-02-22 20:04:18 -05:00
|
|
|
#define _MPRINTF_REPLACE /* use the internal *printf() functions */
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
|
2010-01-23 12:31:54 -05:00
|
|
|
#include "curl_memory.h"
|
2009-01-28 16:33:58 -05:00
|
|
|
/* The last #include file should be: */
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2009-01-28 16:33:58 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Helper sspi error functions.
|
|
|
|
*/
|
2012-06-11 19:06:48 -04:00
|
|
|
static int check_sspi_err(struct connectdata *conn,
|
2012-06-12 02:50:10 -04:00
|
|
|
SECURITY_STATUS status,
|
2009-01-28 16:33:58 -05:00
|
|
|
const char* function)
|
|
|
|
{
|
2012-06-12 02:50:10 -04:00
|
|
|
if(status != SEC_E_OK &&
|
|
|
|
status != SEC_I_COMPLETE_AND_CONTINUE &&
|
|
|
|
status != SEC_I_COMPLETE_NEEDED &&
|
|
|
|
status != SEC_I_CONTINUE_NEEDED) {
|
2012-06-14 07:32:05 -04:00
|
|
|
failf(conn->data, "SSPI error: %s failed: %s", function,
|
2012-06-12 02:50:10 -04:00
|
|
|
Curl_sspi_strerror(conn, status));
|
2009-01-28 22:39:10 -05:00
|
|
|
return 1;
|
2009-01-28 16:33:58 -05:00
|
|
|
}
|
2009-01-28 22:39:10 -05:00
|
|
|
return 0;
|
2009-01-28 16:33:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This is the SSPI-using version of this function */
|
|
|
|
CURLcode Curl_SOCKS5_gssapi_negotiate(int sockindex,
|
|
|
|
struct connectdata *conn)
|
|
|
|
{
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
curl_socket_t sock = conn->sock[sockindex];
|
|
|
|
CURLcode code;
|
|
|
|
ssize_t actualread;
|
|
|
|
ssize_t written;
|
|
|
|
int result;
|
2014-07-21 03:53:47 -04:00
|
|
|
/* Needs GSS-API authentication */
|
2012-06-12 06:34:52 -04:00
|
|
|
SECURITY_STATUS status;
|
2012-06-12 02:50:10 -04:00
|
|
|
unsigned long sspi_ret_flags = 0;
|
2009-01-28 16:33:58 -05:00
|
|
|
int gss_enc;
|
|
|
|
SecBuffer sspi_send_token, sspi_recv_token, sspi_w_token[3];
|
|
|
|
SecBufferDesc input_desc, output_desc, wrap_desc;
|
|
|
|
SecPkgContext_Sizes sspi_sizes;
|
|
|
|
CredHandle cred_handle;
|
|
|
|
CtxtHandle sspi_context;
|
|
|
|
PCtxtHandle context_handle = NULL;
|
|
|
|
SecPkgCredentials_Names names;
|
|
|
|
TimeStamp expiry;
|
2012-06-12 02:50:10 -04:00
|
|
|
char *service_name = NULL;
|
2011-04-06 01:30:09 -04:00
|
|
|
unsigned short us_length;
|
2012-06-16 13:20:50 -04:00
|
|
|
unsigned long qop;
|
2014-07-21 03:53:47 -04:00
|
|
|
unsigned char socksreq[4]; /* room for GSS-API exchange header only */
|
2009-01-28 16:33:58 -05:00
|
|
|
char *service = data->set.str[STRING_SOCKS5_GSSAPI_SERVICE];
|
|
|
|
|
2014-07-21 03:53:47 -04:00
|
|
|
/* GSS-API request looks like
|
2009-01-28 16:33:58 -05:00
|
|
|
* +----+------+-----+----------------+
|
|
|
|
* |VER | MTYP | LEN | TOKEN |
|
|
|
|
* +----+------+----------------------+
|
|
|
|
* | 1 | 1 | 2 | up to 2^16 - 1 |
|
|
|
|
* +----+------+-----+----------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* prepare service name */
|
2011-04-20 09:17:42 -04:00
|
|
|
if(strchr(service, '/')) {
|
2009-01-28 16:33:58 -05:00
|
|
|
service_name = malloc(strlen(service));
|
|
|
|
if(!service_name)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
memcpy(service_name, service, strlen(service));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
service_name = malloc(strlen(service) + strlen(conn->proxy.name) + 2);
|
|
|
|
if(!service_name)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2009-02-22 20:04:18 -05:00
|
|
|
snprintf(service_name,strlen(service) +strlen(conn->proxy.name)+2,"%s/%s",
|
|
|
|
service,conn->proxy.name);
|
2009-01-28 16:33:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
input_desc.cBuffers = 1;
|
|
|
|
input_desc.pBuffers = &sspi_recv_token;
|
|
|
|
input_desc.ulVersion = SECBUFFER_VERSION;
|
|
|
|
|
|
|
|
sspi_recv_token.BufferType = SECBUFFER_TOKEN;
|
|
|
|
sspi_recv_token.cbBuffer = 0;
|
|
|
|
sspi_recv_token.pvBuffer = NULL;
|
|
|
|
|
|
|
|
output_desc.cBuffers = 1;
|
|
|
|
output_desc.pBuffers = &sspi_send_token;
|
|
|
|
output_desc.ulVersion = SECBUFFER_VERSION;
|
|
|
|
|
|
|
|
sspi_send_token.BufferType = SECBUFFER_TOKEN;
|
|
|
|
sspi_send_token.cbBuffer = 0;
|
|
|
|
sspi_send_token.pvBuffer = NULL;
|
|
|
|
|
|
|
|
wrap_desc.cBuffers = 3;
|
|
|
|
wrap_desc.pBuffers = sspi_w_token;
|
|
|
|
wrap_desc.ulVersion = SECBUFFER_VERSION;
|
|
|
|
|
|
|
|
cred_handle.dwLower = 0;
|
|
|
|
cred_handle.dwUpper = 0;
|
|
|
|
|
2012-06-15 12:05:11 -04:00
|
|
|
status = s_pSecFn->AcquireCredentialsHandle(NULL,
|
2012-06-16 13:20:50 -04:00
|
|
|
(TCHAR *) TEXT("Kerberos"),
|
2012-06-15 12:05:11 -04:00
|
|
|
SECPKG_CRED_OUTBOUND,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
&cred_handle,
|
|
|
|
&expiry);
|
|
|
|
|
|
|
|
if(check_sspi_err(conn, status, "AcquireCredentialsHandle")) {
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to acquire credentials.");
|
2012-06-12 06:34:52 -04:00
|
|
|
Curl_safefree(service_name);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeCredentialsHandle(&cred_handle);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* As long as we need to keep sending some context info, and there's no */
|
|
|
|
/* errors, keep sending it... */
|
|
|
|
for(;;) {
|
2012-06-16 13:20:50 -04:00
|
|
|
TCHAR *sname;
|
2012-07-05 16:16:15 -04:00
|
|
|
|
|
|
|
sname = Curl_convert_UTF8_to_tchar(service_name);
|
2012-06-15 12:05:11 -04:00
|
|
|
if(!sname)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2012-07-05 16:16:15 -04:00
|
|
|
|
2012-06-15 12:05:11 -04:00
|
|
|
status = s_pSecFn->InitializeSecurityContext(&cred_handle,
|
|
|
|
context_handle,
|
|
|
|
sname,
|
|
|
|
ISC_REQ_MUTUAL_AUTH |
|
|
|
|
ISC_REQ_ALLOCATE_MEMORY |
|
|
|
|
ISC_REQ_CONFIDENTIALITY |
|
|
|
|
ISC_REQ_REPLAY_DETECT,
|
|
|
|
0,
|
|
|
|
SECURITY_NATIVE_DREP,
|
|
|
|
&input_desc,
|
|
|
|
0,
|
|
|
|
&sspi_context,
|
|
|
|
&output_desc,
|
|
|
|
&sspi_ret_flags,
|
|
|
|
&expiry);
|
|
|
|
|
2012-07-05 16:16:15 -04:00
|
|
|
Curl_unicodefree(sname);
|
2009-01-28 16:33:58 -05:00
|
|
|
|
|
|
|
if(sspi_recv_token.pvBuffer) {
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeContextBuffer(sspi_recv_token.pvBuffer);
|
2009-01-28 16:33:58 -05:00
|
|
|
sspi_recv_token.pvBuffer = NULL;
|
|
|
|
sspi_recv_token.cbBuffer = 0;
|
|
|
|
}
|
|
|
|
|
2012-06-15 12:05:11 -04:00
|
|
|
if(check_sspi_err(conn, status, "InitializeSecurityContext")) {
|
2012-06-12 06:34:52 -04:00
|
|
|
Curl_safefree(service_name);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeCredentialsHandle(&cred_handle);
|
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2014-04-18 17:24:41 -04:00
|
|
|
if(sspi_recv_token.pvBuffer)
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_recv_token.pvBuffer);
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to initialise security context.");
|
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(sspi_send_token.cbBuffer != 0) {
|
2014-07-21 03:53:47 -04:00
|
|
|
socksreq[0] = 1; /* GSS-API subnegotiation version */
|
2009-01-28 16:33:58 -05:00
|
|
|
socksreq[1] = 1; /* authentication message type */
|
|
|
|
us_length = htons((short)sspi_send_token.cbBuffer);
|
|
|
|
memcpy(socksreq+2, &us_length, sizeof(short));
|
|
|
|
|
|
|
|
code = Curl_write_plain(conn, sock, (char *)socksreq, 4, &written);
|
2014-10-23 16:56:35 -04:00
|
|
|
if(code || (4 != written)) {
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to send SSPI authentication request.");
|
2012-06-12 06:34:52 -04:00
|
|
|
Curl_safefree(service_name);
|
2014-04-18 17:24:41 -04:00
|
|
|
if(sspi_send_token.pvBuffer)
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_send_token.pvBuffer);
|
|
|
|
if(sspi_recv_token.pvBuffer)
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_recv_token.pvBuffer);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeCredentialsHandle(&cred_handle);
|
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
code = Curl_write_plain(conn, sock, (char *)sspi_send_token.pvBuffer,
|
|
|
|
sspi_send_token.cbBuffer, &written);
|
2014-10-23 16:56:35 -04:00
|
|
|
if(code || (sspi_send_token.cbBuffer != (size_t)written)) {
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to send SSPI authentication token.");
|
2012-06-12 06:34:52 -04:00
|
|
|
Curl_safefree(service_name);
|
2014-04-18 17:24:41 -04:00
|
|
|
if(sspi_send_token.pvBuffer)
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_send_token.pvBuffer);
|
|
|
|
if(sspi_recv_token.pvBuffer)
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_recv_token.pvBuffer);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeCredentialsHandle(&cred_handle);
|
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-18 17:24:41 -04:00
|
|
|
if(sspi_send_token.pvBuffer) {
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_send_token.pvBuffer);
|
|
|
|
sspi_send_token.pvBuffer = NULL;
|
|
|
|
}
|
2009-01-28 16:33:58 -05:00
|
|
|
sspi_send_token.cbBuffer = 0;
|
2014-04-18 17:24:41 -04:00
|
|
|
|
|
|
|
if(sspi_recv_token.pvBuffer) {
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_recv_token.pvBuffer);
|
|
|
|
sspi_recv_token.pvBuffer = NULL;
|
|
|
|
}
|
2009-01-28 16:33:58 -05:00
|
|
|
sspi_recv_token.cbBuffer = 0;
|
2014-04-18 17:24:41 -04:00
|
|
|
|
2012-06-12 06:34:52 -04:00
|
|
|
if(status != SEC_I_CONTINUE_NEEDED)
|
|
|
|
break;
|
2009-01-28 16:33:58 -05:00
|
|
|
|
|
|
|
/* analyse response */
|
|
|
|
|
2014-07-21 03:53:47 -04:00
|
|
|
/* GSS-API response looks like
|
2009-01-28 16:33:58 -05:00
|
|
|
* +----+------+-----+----------------+
|
|
|
|
* |VER | MTYP | LEN | TOKEN |
|
|
|
|
* +----+------+----------------------+
|
|
|
|
* | 1 | 1 | 2 | up to 2^16 - 1 |
|
|
|
|
* +----+------+-----+----------------+
|
|
|
|
*/
|
|
|
|
|
2012-06-12 06:34:52 -04:00
|
|
|
result = Curl_blockread_all(conn, sock, (char *)socksreq, 4, &actualread);
|
2014-10-23 16:56:35 -04:00
|
|
|
if(result || (actualread != 4)) {
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to receive SSPI authentication response.");
|
2012-06-12 06:34:52 -04:00
|
|
|
Curl_safefree(service_name);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeCredentialsHandle(&cred_handle);
|
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ignore the first (VER) byte */
|
|
|
|
if(socksreq[1] == 255) { /* status / message type */
|
2013-07-24 10:43:13 -04:00
|
|
|
failf(data, "User was rejected by the SOCKS5 server (%u %u).",
|
|
|
|
(unsigned int)socksreq[0], (unsigned int)socksreq[1]);
|
2012-06-12 06:34:52 -04:00
|
|
|
Curl_safefree(service_name);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeCredentialsHandle(&cred_handle);
|
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(socksreq[1] != 1) { /* status / messgae type */
|
2013-07-24 10:43:13 -04:00
|
|
|
failf(data, "Invalid SSPI authentication response type (%u %u).",
|
|
|
|
(unsigned int)socksreq[0], (unsigned int)socksreq[1]);
|
2012-06-12 06:34:52 -04:00
|
|
|
Curl_safefree(service_name);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeCredentialsHandle(&cred_handle);
|
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(&us_length, socksreq+2, sizeof(short));
|
|
|
|
us_length = ntohs(us_length);
|
|
|
|
|
|
|
|
sspi_recv_token.cbBuffer = us_length;
|
|
|
|
sspi_recv_token.pvBuffer = malloc(us_length);
|
|
|
|
|
|
|
|
if(!sspi_recv_token.pvBuffer) {
|
2012-06-12 06:34:52 -04:00
|
|
|
Curl_safefree(service_name);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeCredentialsHandle(&cred_handle);
|
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
result = Curl_blockread_all(conn, sock, (char *)sspi_recv_token.pvBuffer,
|
2011-08-08 05:10:17 -04:00
|
|
|
sspi_recv_token.cbBuffer, &actualread);
|
2009-01-28 16:33:58 -05:00
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
if(result || (actualread != us_length)) {
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to receive SSPI authentication token.");
|
2012-06-12 06:34:52 -04:00
|
|
|
Curl_safefree(service_name);
|
2014-04-18 17:24:41 -04:00
|
|
|
if(sspi_recv_token.pvBuffer)
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_recv_token.pvBuffer);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeCredentialsHandle(&cred_handle);
|
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
context_handle = &sspi_context;
|
|
|
|
}
|
|
|
|
|
2012-06-12 06:34:52 -04:00
|
|
|
Curl_safefree(service_name);
|
2009-01-28 16:33:58 -05:00
|
|
|
|
|
|
|
/* Everything is good so far, user was authenticated! */
|
2012-06-12 06:34:52 -04:00
|
|
|
status = s_pSecFn->QueryCredentialsAttributes(&cred_handle,
|
|
|
|
SECPKG_CRED_ATTR_NAMES,
|
|
|
|
&names);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeCredentialsHandle(&cred_handle);
|
2012-06-12 06:34:52 -04:00
|
|
|
if(check_sspi_err(conn, status, "QueryCredentialAttributes")) {
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
|
|
|
s_pSecFn->FreeContextBuffer(names.sUserName);
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to determine user name.");
|
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
2014-07-21 03:53:47 -04:00
|
|
|
infof(data, "SOCKS5 server authencticated user %s with GSS-API.\n",
|
2009-01-28 16:33:58 -05:00
|
|
|
names.sUserName);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeContextBuffer(names.sUserName);
|
2009-01-28 16:33:58 -05:00
|
|
|
|
|
|
|
/* Do encryption */
|
2014-07-21 03:53:47 -04:00
|
|
|
socksreq[0] = 1; /* GSS-API subnegotiation version */
|
2009-01-28 16:33:58 -05:00
|
|
|
socksreq[1] = 2; /* encryption message type */
|
|
|
|
|
|
|
|
gss_enc = 0; /* no data protection */
|
|
|
|
/* do confidentiality protection if supported */
|
|
|
|
if(sspi_ret_flags & ISC_REQ_CONFIDENTIALITY)
|
|
|
|
gss_enc = 2;
|
|
|
|
/* else do integrity protection */
|
|
|
|
else if(sspi_ret_flags & ISC_REQ_INTEGRITY)
|
|
|
|
gss_enc = 1;
|
|
|
|
|
2014-07-21 03:53:47 -04:00
|
|
|
infof(data, "SOCKS5 server supports GSS-API %s data protection.\n",
|
2009-01-28 16:33:58 -05:00
|
|
|
(gss_enc==0)?"no":((gss_enc==1)?"integrity":"confidentiality") );
|
|
|
|
/* force to no data protection, avoid encryption/decryption for now */
|
|
|
|
gss_enc = 0;
|
|
|
|
/*
|
|
|
|
* Sending the encryption type in clear seems wrong. It should be
|
|
|
|
* protected with gss_seal()/gss_wrap(). See RFC1961 extract below
|
|
|
|
* The NEC reference implementations on which this is based is
|
|
|
|
* therefore at fault
|
|
|
|
*
|
|
|
|
* +------+------+------+.......................+
|
|
|
|
* + ver | mtyp | len | token |
|
|
|
|
* +------+------+------+.......................+
|
|
|
|
* + 0x01 | 0x02 | 0x02 | up to 2^16 - 1 octets |
|
|
|
|
* +------+------+------+.......................+
|
|
|
|
*
|
|
|
|
* Where:
|
|
|
|
*
|
|
|
|
* - "ver" is the protocol version number, here 1 to represent the
|
|
|
|
* first version of the SOCKS/GSS-API protocol
|
|
|
|
*
|
|
|
|
* - "mtyp" is the message type, here 2 to represent a protection
|
|
|
|
* -level negotiation message
|
|
|
|
*
|
|
|
|
* - "len" is the length of the "token" field in octets
|
|
|
|
*
|
|
|
|
* - "token" is the GSS-API encapsulated protection level
|
|
|
|
*
|
|
|
|
* The token is produced by encapsulating an octet containing the
|
|
|
|
* required protection level using gss_seal()/gss_wrap() with conf_req
|
|
|
|
* set to FALSE. The token is verified using gss_unseal()/
|
|
|
|
* gss_unwrap().
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
if(data->set.socks5_gssapi_nec) {
|
|
|
|
us_length = htons((short)1);
|
|
|
|
memcpy(socksreq+2, &us_length, sizeof(short));
|
|
|
|
}
|
|
|
|
else {
|
2012-06-15 12:05:11 -04:00
|
|
|
status = s_pSecFn->QueryContextAttributes(&sspi_context,
|
|
|
|
SECPKG_ATTR_SIZES,
|
|
|
|
&sspi_sizes);
|
|
|
|
if(check_sspi_err(conn, status, "QueryContextAttributes")) {
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to query security context attributes.");
|
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
sspi_w_token[0].cbBuffer = sspi_sizes.cbSecurityTrailer;
|
|
|
|
sspi_w_token[0].BufferType = SECBUFFER_TOKEN;
|
|
|
|
sspi_w_token[0].pvBuffer = malloc(sspi_sizes.cbSecurityTrailer);
|
|
|
|
|
|
|
|
if(!sspi_w_token[0].pvBuffer) {
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
sspi_w_token[1].cbBuffer = 1;
|
|
|
|
sspi_w_token[1].pvBuffer = malloc(1);
|
2011-07-04 16:10:32 -04:00
|
|
|
if(!sspi_w_token[1].pvBuffer) {
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[0].pvBuffer);
|
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(sspi_w_token[1].pvBuffer,&gss_enc,1);
|
|
|
|
sspi_w_token[2].BufferType = SECBUFFER_PADDING;
|
|
|
|
sspi_w_token[2].cbBuffer = sspi_sizes.cbBlockSize;
|
|
|
|
sspi_w_token[2].pvBuffer = malloc(sspi_sizes.cbBlockSize);
|
|
|
|
if(!sspi_w_token[2].pvBuffer) {
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[0].pvBuffer);
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[1].pvBuffer);
|
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
2012-06-12 06:34:52 -04:00
|
|
|
status = s_pSecFn->EncryptMessage(&sspi_context,
|
|
|
|
KERB_WRAP_NO_ENCRYPT,
|
|
|
|
&wrap_desc,
|
|
|
|
0);
|
|
|
|
if(check_sspi_err(conn, status, "EncryptMessage")) {
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[0].pvBuffer);
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[1].pvBuffer);
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[2].pvBuffer);
|
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to query security context attributes.");
|
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
sspi_send_token.cbBuffer = sspi_w_token[0].cbBuffer
|
|
|
|
+ sspi_w_token[1].cbBuffer
|
|
|
|
+ sspi_w_token[2].cbBuffer;
|
|
|
|
sspi_send_token.pvBuffer = malloc(sspi_send_token.cbBuffer);
|
|
|
|
if(!sspi_send_token.pvBuffer) {
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[0].pvBuffer);
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[1].pvBuffer);
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[2].pvBuffer);
|
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(sspi_send_token.pvBuffer, sspi_w_token[0].pvBuffer,
|
|
|
|
sspi_w_token[0].cbBuffer);
|
|
|
|
memcpy((PUCHAR) sspi_send_token.pvBuffer +(int)sspi_w_token[0].cbBuffer,
|
|
|
|
sspi_w_token[1].pvBuffer, sspi_w_token[1].cbBuffer);
|
|
|
|
memcpy((PUCHAR) sspi_send_token.pvBuffer
|
|
|
|
+sspi_w_token[0].cbBuffer
|
|
|
|
+sspi_w_token[1].cbBuffer,
|
|
|
|
sspi_w_token[2].pvBuffer, sspi_w_token[2].cbBuffer);
|
|
|
|
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[0].pvBuffer);
|
2009-01-28 16:33:58 -05:00
|
|
|
sspi_w_token[0].pvBuffer = NULL;
|
|
|
|
sspi_w_token[0].cbBuffer = 0;
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[1].pvBuffer);
|
2009-01-28 16:33:58 -05:00
|
|
|
sspi_w_token[1].pvBuffer = NULL;
|
|
|
|
sspi_w_token[1].cbBuffer = 0;
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[2].pvBuffer);
|
2009-01-28 16:33:58 -05:00
|
|
|
sspi_w_token[2].pvBuffer = NULL;
|
|
|
|
sspi_w_token[2].cbBuffer = 0;
|
|
|
|
|
|
|
|
us_length = htons((short)sspi_send_token.cbBuffer);
|
|
|
|
memcpy(socksreq+2,&us_length,sizeof(short));
|
|
|
|
}
|
|
|
|
|
|
|
|
code = Curl_write_plain(conn, sock, (char *)socksreq, 4, &written);
|
2014-10-23 16:56:35 -04:00
|
|
|
if(code || (4 != written)) {
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to send SSPI encryption request.");
|
2014-04-18 17:24:41 -04:00
|
|
|
if(sspi_send_token.pvBuffer)
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_send_token.pvBuffer);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(data->set.socks5_gssapi_nec) {
|
|
|
|
memcpy(socksreq,&gss_enc,1);
|
|
|
|
code = Curl_write_plain(conn, sock, (char *)socksreq, 1, &written);
|
2014-10-23 16:56:35 -04:00
|
|
|
if(code || (1 != written)) {
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to send SSPI encryption type.");
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
2011-04-20 09:17:42 -04:00
|
|
|
}
|
|
|
|
else {
|
2009-01-28 16:33:58 -05:00
|
|
|
code = Curl_write_plain(conn, sock, (char *)sspi_send_token.pvBuffer,
|
|
|
|
sspi_send_token.cbBuffer, &written);
|
2014-10-23 16:56:35 -04:00
|
|
|
if(code || (sspi_send_token.cbBuffer != (size_t)written)) {
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to send SSPI encryption type.");
|
2014-04-18 17:24:41 -04:00
|
|
|
if(sspi_send_token.pvBuffer)
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_send_token.pvBuffer);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
2014-04-18 17:24:41 -04:00
|
|
|
if(sspi_send_token.pvBuffer)
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_send_token.pvBuffer);
|
2009-01-28 16:33:58 -05:00
|
|
|
}
|
|
|
|
|
2012-06-12 06:34:52 -04:00
|
|
|
result = Curl_blockread_all(conn, sock, (char *)socksreq, 4, &actualread);
|
2014-10-23 16:56:35 -04:00
|
|
|
if(result || (actualread != 4)) {
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to receive SSPI encryption response.");
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ignore the first (VER) byte */
|
|
|
|
if(socksreq[1] == 255) { /* status / message type */
|
2013-07-24 10:43:13 -04:00
|
|
|
failf(data, "User was rejected by the SOCKS5 server (%u %u).",
|
|
|
|
(unsigned int)socksreq[0], (unsigned int)socksreq[1]);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(socksreq[1] != 2) { /* status / message type */
|
2013-07-24 10:43:13 -04:00
|
|
|
failf(data, "Invalid SSPI encryption response type (%u %u).",
|
|
|
|
(unsigned int)socksreq[0], (unsigned int)socksreq[1]);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(&us_length, socksreq+2, sizeof(short));
|
|
|
|
us_length = ntohs(us_length);
|
|
|
|
|
|
|
|
sspi_w_token[0].cbBuffer = us_length;
|
|
|
|
sspi_w_token[0].pvBuffer = malloc(us_length);
|
|
|
|
if(!sspi_w_token[0].pvBuffer) {
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
2012-06-12 06:34:52 -04:00
|
|
|
result = Curl_blockread_all(conn, sock, (char *)sspi_w_token[0].pvBuffer,
|
|
|
|
sspi_w_token[0].cbBuffer, &actualread);
|
2009-01-28 16:33:58 -05:00
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
if(result || (actualread != us_length)) {
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to receive SSPI encryption type.");
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[0].pvBuffer);
|
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(!data->set.socks5_gssapi_nec) {
|
|
|
|
wrap_desc.cBuffers = 2;
|
|
|
|
sspi_w_token[0].BufferType = SECBUFFER_STREAM;
|
|
|
|
sspi_w_token[1].BufferType = SECBUFFER_DATA;
|
|
|
|
sspi_w_token[1].cbBuffer = 0;
|
|
|
|
sspi_w_token[1].pvBuffer = NULL;
|
|
|
|
|
2012-06-12 06:34:52 -04:00
|
|
|
status = s_pSecFn->DecryptMessage(&sspi_context,
|
|
|
|
&wrap_desc,
|
|
|
|
0,
|
|
|
|
&qop);
|
2009-01-28 16:33:58 -05:00
|
|
|
|
2012-06-12 06:34:52 -04:00
|
|
|
if(check_sspi_err(conn, status, "DecryptMessage")) {
|
2014-04-18 17:24:41 -04:00
|
|
|
if(sspi_w_token[0].pvBuffer)
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[0].pvBuffer);
|
|
|
|
if(sspi_w_token[1].pvBuffer)
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[1].pvBuffer);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
failf(data, "Failed to query security context attributes.");
|
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(sspi_w_token[1].cbBuffer != 1) {
|
2013-07-24 10:43:13 -04:00
|
|
|
failf(data, "Invalid SSPI encryption response length (%lu).",
|
|
|
|
(unsigned long)sspi_w_token[1].cbBuffer);
|
2014-04-18 17:24:41 -04:00
|
|
|
if(sspi_w_token[0].pvBuffer)
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[0].pvBuffer);
|
|
|
|
if(sspi_w_token[1].pvBuffer)
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[1].pvBuffer);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(socksreq,sspi_w_token[1].pvBuffer,sspi_w_token[1].cbBuffer);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[0].pvBuffer);
|
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[1].pvBuffer);
|
2011-04-20 09:17:42 -04:00
|
|
|
}
|
|
|
|
else {
|
2009-01-28 16:33:58 -05:00
|
|
|
if(sspi_w_token[0].cbBuffer != 1) {
|
2013-07-24 10:43:13 -04:00
|
|
|
failf(data, "Invalid SSPI encryption response length (%lu).",
|
|
|
|
(unsigned long)sspi_w_token[0].cbBuffer);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[0].pvBuffer);
|
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
2009-01-28 16:33:58 -05:00
|
|
|
return CURLE_COULDNT_CONNECT;
|
|
|
|
}
|
|
|
|
memcpy(socksreq,sspi_w_token[0].pvBuffer,sspi_w_token[0].cbBuffer);
|
2009-01-29 15:32:27 -05:00
|
|
|
s_pSecFn->FreeContextBuffer(sspi_w_token[0].pvBuffer);
|
2009-01-28 16:33:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
infof(data, "SOCKS5 access with%s protection granted.\n",
|
2014-07-21 03:53:47 -04:00
|
|
|
(socksreq[0]==0)?"out GSS-API data":
|
|
|
|
((socksreq[0]==1)?" GSS-API integrity":" GSS-API confidentiality"));
|
2009-01-28 16:33:58 -05:00
|
|
|
|
|
|
|
/* For later use if encryption is required
|
|
|
|
conn->socks5_gssapi_enctype = socksreq[0];
|
2011-04-20 09:17:42 -04:00
|
|
|
if(socksreq[0] != 0)
|
2012-06-12 06:34:52 -04:00
|
|
|
conn->socks5_sspi_context = sspi_context;
|
2009-01-28 16:33:58 -05:00
|
|
|
else {
|
2012-06-12 06:34:52 -04:00
|
|
|
s_pSecFn->DeleteSecurityContext(&sspi_context);
|
|
|
|
conn->socks5_sspi_context = sspi_context;
|
2009-01-28 16:33:58 -05:00
|
|
|
}
|
|
|
|
*/
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
#endif
|