2003-06-10 08:22:19 -04:00
|
|
|
/***************************************************************************
|
2004-06-24 07:54:11 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2003-06-10 08:22:19 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2019-01-04 17:34:50 -05:00
|
|
|
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2003-06-10 08:22:19 -04:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-06-24 07:54:11 -04:00
|
|
|
*
|
2003-06-10 08:22:19 -04:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2011-07-26 11:23:27 -04:00
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2003-06-10 08:22:19 -04:00
|
|
|
|
2016-03-13 16:09:15 -04:00
|
|
|
#if !defined(CURL_DISABLE_HTTP) && defined(USE_SPNEGO)
|
2003-06-10 08:22:19 -04:00
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "urldata.h"
|
|
|
|
#include "sendf.h"
|
|
|
|
#include "http_negotiate.h"
|
2015-09-12 06:48:24 -04:00
|
|
|
#include "vauth/vauth.h"
|
2003-06-10 08:22:19 -04:00
|
|
|
|
2016-04-29 09:46:40 -04:00
|
|
|
/* The last 3 #include files should be in this order */
|
|
|
|
#include "curl_printf.h"
|
2015-03-24 18:12:03 -04:00
|
|
|
#include "curl_memory.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2003-06-10 08:22:19 -04:00
|
|
|
|
2015-01-17 06:56:27 -05:00
|
|
|
CURLcode Curl_input_negotiate(struct connectdata *conn, bool proxy,
|
|
|
|
const char *header)
|
2004-06-24 07:54:11 -04:00
|
|
|
{
|
2016-11-09 08:37:34 -05:00
|
|
|
CURLcode result;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2016-03-13 16:09:15 -04:00
|
|
|
size_t len;
|
2015-01-18 12:36:59 -05:00
|
|
|
|
2016-03-13 16:09:15 -04:00
|
|
|
/* Point to the username, password, service and host */
|
|
|
|
const char *userp;
|
|
|
|
const char *passwdp;
|
2016-03-13 14:51:46 -04:00
|
|
|
const char *service;
|
|
|
|
const char *host;
|
2015-01-18 12:36:59 -05:00
|
|
|
|
2016-03-13 14:51:46 -04:00
|
|
|
/* Point to the correct struct with this */
|
|
|
|
struct negotiatedata *neg_ctx;
|
2019-05-13 16:42:35 -04:00
|
|
|
curlnegotiate state;
|
2015-01-18 12:36:59 -05:00
|
|
|
|
2016-03-13 14:51:46 -04:00
|
|
|
if(proxy) {
|
2016-11-16 12:49:15 -05:00
|
|
|
userp = conn->http_proxy.user;
|
|
|
|
passwdp = conn->http_proxy.passwd;
|
2016-04-08 13:41:41 -04:00
|
|
|
service = data->set.str[STRING_PROXY_SERVICE_NAME] ?
|
|
|
|
data->set.str[STRING_PROXY_SERVICE_NAME] : "HTTP";
|
2016-11-16 12:49:15 -05:00
|
|
|
host = conn->http_proxy.host.name;
|
2018-09-10 03:18:01 -04:00
|
|
|
neg_ctx = &conn->proxyneg;
|
2019-05-13 16:42:35 -04:00
|
|
|
state = conn->proxy_negotiate_state;
|
2016-03-13 14:51:46 -04:00
|
|
|
}
|
|
|
|
else {
|
2016-03-13 16:09:15 -04:00
|
|
|
userp = conn->user;
|
|
|
|
passwdp = conn->passwd;
|
2016-04-08 13:41:41 -04:00
|
|
|
service = data->set.str[STRING_SERVICE_NAME] ?
|
|
|
|
data->set.str[STRING_SERVICE_NAME] : "HTTP";
|
2016-04-01 16:48:35 -04:00
|
|
|
host = conn->host.name;
|
2018-09-10 03:18:01 -04:00
|
|
|
neg_ctx = &conn->negotiate;
|
2019-05-13 16:42:35 -04:00
|
|
|
state = conn->http_negotiate_state;
|
2015-01-18 12:36:59 -05:00
|
|
|
}
|
2003-06-10 08:22:19 -04:00
|
|
|
|
2016-03-13 16:09:15 -04:00
|
|
|
/* Not set means empty */
|
|
|
|
if(!userp)
|
|
|
|
userp = "";
|
|
|
|
|
|
|
|
if(!passwdp)
|
|
|
|
passwdp = "";
|
|
|
|
|
2016-03-13 14:51:46 -04:00
|
|
|
/* Obtain the input token, if any */
|
2014-07-21 03:53:44 -04:00
|
|
|
header += strlen("Negotiate");
|
2006-10-17 17:32:56 -04:00
|
|
|
while(*header && ISSPACE(*header))
|
2003-06-10 08:22:19 -04:00
|
|
|
header++;
|
|
|
|
|
2016-03-13 16:09:15 -04:00
|
|
|
len = strlen(header);
|
2018-09-10 03:18:01 -04:00
|
|
|
neg_ctx->havenegdata = len != 0;
|
2016-03-13 16:09:15 -04:00
|
|
|
if(!len) {
|
2019-05-13 16:42:35 -04:00
|
|
|
if(state == GSS_AUTHSUCC) {
|
2018-09-10 03:18:01 -04:00
|
|
|
infof(conn->data, "Negotiate auth restarted\n");
|
2019-05-11 07:57:42 -04:00
|
|
|
Curl_http_auth_cleanup_negotiate(conn);
|
2018-09-10 03:18:01 -04:00
|
|
|
}
|
2019-05-13 16:42:35 -04:00
|
|
|
else if(state != GSS_AUTHNONE) {
|
2018-09-10 03:18:01 -04:00
|
|
|
/* The server rejected our authentication and hasn't supplied any more
|
2016-03-13 16:09:15 -04:00
|
|
|
negotiation mechanisms */
|
2019-05-11 07:57:42 -04:00
|
|
|
Curl_http_auth_cleanup_negotiate(conn);
|
2016-03-13 16:09:15 -04:00
|
|
|
return CURLE_LOGIN_DENIED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-29 12:26:31 -05:00
|
|
|
/* Supports SSL channel binding for Windows ISS extended protection */
|
|
|
|
#if defined(USE_WINDOWS_SSPI) && defined(SECPKG_ATTR_ENDPOINT_BINDINGS)
|
|
|
|
neg_ctx->sslContext = conn->sslContext;
|
|
|
|
#endif
|
|
|
|
|
2018-03-15 22:51:03 -04:00
|
|
|
/* Initialize the security context and decode our challenge */
|
2016-11-09 08:37:34 -05:00
|
|
|
result = Curl_auth_decode_spnego_message(data, userp, passwdp, service,
|
|
|
|
host, header, neg_ctx);
|
|
|
|
|
|
|
|
if(result)
|
2019-05-13 16:42:35 -04:00
|
|
|
Curl_http_auth_cleanup_negotiate(conn);
|
2016-11-09 08:37:34 -05:00
|
|
|
|
|
|
|
return result;
|
2015-01-17 06:56:27 -05:00
|
|
|
}
|
2003-06-10 08:22:19 -04:00
|
|
|
|
2007-09-21 07:05:31 -04:00
|
|
|
CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy)
|
2004-06-24 07:54:11 -04:00
|
|
|
{
|
2018-09-10 03:18:01 -04:00
|
|
|
struct negotiatedata *neg_ctx = proxy ? &conn->proxyneg :
|
|
|
|
&conn->negotiate;
|
|
|
|
struct auth *authp = proxy ? &conn->data->state.authproxy :
|
|
|
|
&conn->data->state.authhost;
|
2019-05-13 16:42:35 -04:00
|
|
|
curlnegotiate *state = proxy ? &conn->proxy_negotiate_state :
|
|
|
|
&conn->http_negotiate_state;
|
2016-03-13 14:51:46 -04:00
|
|
|
char *base64 = NULL;
|
2011-08-24 02:07:36 -04:00
|
|
|
size_t len = 0;
|
2010-08-16 16:19:38 -04:00
|
|
|
char *userp;
|
2014-10-26 12:34:44 -04:00
|
|
|
CURLcode result;
|
2003-09-19 08:56:22 -04:00
|
|
|
|
2018-09-10 03:18:01 -04:00
|
|
|
authp->done = FALSE;
|
|
|
|
|
2019-05-13 16:42:35 -04:00
|
|
|
if(*state == GSS_AUTHRECV) {
|
2018-09-10 03:18:01 -04:00
|
|
|
if(neg_ctx->havenegdata) {
|
|
|
|
neg_ctx->havemultiplerequests = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2019-05-13 16:42:35 -04:00
|
|
|
else if(*state == GSS_AUTHSUCC) {
|
2018-09-10 03:18:01 -04:00
|
|
|
if(!neg_ctx->havenoauthpersist) {
|
|
|
|
neg_ctx->noauthpersist = !neg_ctx->havemultiplerequests;
|
|
|
|
}
|
|
|
|
}
|
2003-06-10 08:22:19 -04:00
|
|
|
|
2018-09-10 03:18:01 -04:00
|
|
|
if(neg_ctx->noauthpersist ||
|
2019-05-13 16:42:35 -04:00
|
|
|
(*state != GSS_AUTHDONE && *state != GSS_AUTHSUCC)) {
|
2016-03-13 14:51:46 -04:00
|
|
|
|
2019-05-13 16:42:35 -04:00
|
|
|
if(neg_ctx->noauthpersist && *state == GSS_AUTHSUCC) {
|
2018-09-10 03:18:01 -04:00
|
|
|
infof(conn->data, "Curl_output_negotiate, "
|
|
|
|
"no persistent authentication: cleanup existing context");
|
2019-05-13 16:42:35 -04:00
|
|
|
Curl_http_auth_cleanup_negotiate(conn);
|
2018-09-10 03:18:01 -04:00
|
|
|
}
|
|
|
|
if(!neg_ctx->context) {
|
|
|
|
result = Curl_input_negotiate(conn, proxy, "Negotiate");
|
2019-08-14 03:47:17 -04:00
|
|
|
if(result == CURLE_AUTH_ERROR) {
|
2019-05-06 08:32:00 -04:00
|
|
|
/* negotiate auth failed, let's continue unauthenticated to stay
|
|
|
|
* compatible with the behavior before curl-7_64_0-158-g6c6035532 */
|
2019-07-30 06:59:35 -04:00
|
|
|
authp->done = TRUE;
|
2019-05-06 08:32:00 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
else if(result)
|
2018-09-10 03:18:01 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = Curl_auth_create_spnego_message(conn->data,
|
|
|
|
neg_ctx, &base64, &len);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
userp = aprintf("%sAuthorization: Negotiate %s\r\n", proxy ? "Proxy-" : "",
|
|
|
|
base64);
|
|
|
|
|
|
|
|
if(proxy) {
|
|
|
|
Curl_safefree(conn->allocptr.proxyuserpwd);
|
|
|
|
conn->allocptr.proxyuserpwd = userp;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Curl_safefree(conn->allocptr.userpwd);
|
|
|
|
conn->allocptr.userpwd = userp;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(base64);
|
|
|
|
|
|
|
|
if(userp == NULL) {
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
2019-05-13 16:42:35 -04:00
|
|
|
*state = GSS_AUTHSENT;
|
2018-09-10 03:18:01 -04:00
|
|
|
#ifdef HAVE_GSSAPI
|
|
|
|
if(neg_ctx->status == GSS_S_COMPLETE ||
|
|
|
|
neg_ctx->status == GSS_S_CONTINUE_NEEDED) {
|
2019-05-13 16:42:35 -04:00
|
|
|
*state = GSS_AUTHDONE;
|
2018-09-10 03:18:01 -04:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
#ifdef USE_WINDOWS_SSPI
|
|
|
|
if(neg_ctx->status == SEC_E_OK ||
|
|
|
|
neg_ctx->status == SEC_I_CONTINUE_NEEDED) {
|
2019-05-13 16:42:35 -04:00
|
|
|
*state = GSS_AUTHDONE;
|
2018-09-10 03:18:01 -04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
2013-04-03 19:57:25 -04:00
|
|
|
}
|
2018-09-10 03:18:01 -04:00
|
|
|
|
2019-05-13 16:42:35 -04:00
|
|
|
if(*state == GSS_AUTHDONE || *state == GSS_AUTHSUCC) {
|
2018-09-10 03:18:01 -04:00
|
|
|
/* connection is already authenticated,
|
|
|
|
* don't send a header in future requests */
|
|
|
|
authp->done = TRUE;
|
2013-04-03 19:57:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-10 03:18:01 -04:00
|
|
|
neg_ctx->havenegdata = FALSE;
|
2013-04-03 19:57:25 -04:00
|
|
|
|
2018-09-10 03:18:01 -04:00
|
|
|
return CURLE_OK;
|
2003-06-10 08:22:19 -04:00
|
|
|
}
|
|
|
|
|
2019-05-11 07:57:42 -04:00
|
|
|
void Curl_http_auth_cleanup_negotiate(struct connectdata *conn)
|
2007-11-20 18:17:08 -05:00
|
|
|
{
|
2019-05-13 16:42:35 -04:00
|
|
|
conn->http_negotiate_state = GSS_AUTHNONE;
|
|
|
|
conn->proxy_negotiate_state = GSS_AUTHNONE;
|
|
|
|
|
2019-05-11 07:57:42 -04:00
|
|
|
Curl_auth_cleanup_spnego(&conn->negotiate);
|
|
|
|
Curl_auth_cleanup_spnego(&conn->proxyneg);
|
2007-11-20 18:17:08 -05:00
|
|
|
}
|
|
|
|
|
2016-03-13 16:09:15 -04:00
|
|
|
#endif /* !CURL_DISABLE_HTTP && USE_SPNEGO */
|