2005-04-07 11:27:13 -04:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2016-05-01 11:05:38 -04:00
|
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2005-04-07 11:27:13 -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.
|
2005-04-07 11:27:13 -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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2009-02-25 07:51:39 -05:00
|
|
|
/* This file is for implementing all "generic" SSL functions that all libcurl
|
|
|
|
internals should use. It is then responsible for calling the proper
|
|
|
|
"backend" function.
|
2005-04-07 11:27:13 -04:00
|
|
|
|
|
|
|
SSL-functions in libcurl should call functions in this source file, and not
|
|
|
|
to any specific SSL-layer.
|
|
|
|
|
|
|
|
Curl_ssl_ - prefix for generic ones
|
|
|
|
Curl_ossl_ - prefix for OpenSSL ones
|
|
|
|
Curl_gtls_ - prefix for GnuTLS ones
|
2007-02-12 17:32:37 -05:00
|
|
|
Curl_nss_ - prefix for NSS ones
|
2013-07-15 13:00:36 -04:00
|
|
|
Curl_gskit_ - prefix for GSKit ones
|
2010-05-05 16:30:46 -04:00
|
|
|
Curl_polarssl_ - prefix for PolarSSL ones
|
2011-03-08 07:54:58 -05:00
|
|
|
Curl_cyassl_ - prefix for CyaSSL ones
|
2012-04-09 09:40:06 -04:00
|
|
|
Curl_schannel_ - prefix for Schannel SSPI ones
|
2012-06-26 15:39:48 -04:00
|
|
|
Curl_darwinssl_ - prefix for SecureTransport (Darwin) ones
|
2005-04-07 11:27:13 -04:00
|
|
|
|
2008-06-11 13:01:58 -04:00
|
|
|
Note that this source code uses curlssl_* functions, and they are all
|
|
|
|
defines/macros #defined by the lib-specific header files.
|
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
"SSL/TLS Strong Encryption: An Introduction"
|
2016-02-02 23:09:25 -05:00
|
|
|
https://httpd.apache.org/docs/2.0/ssl/ssl_intro.html
|
2005-04-07 11:27:13 -04:00
|
|
|
*/
|
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2007-02-25 23:24:26 -05:00
|
|
|
|
2013-06-24 16:24:35 -04:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_STAT_H
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_FCNTL_H
|
|
|
|
#include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "urldata.h"
|
2013-12-17 17:32:47 -05:00
|
|
|
|
|
|
|
#include "vtls.h" /* generic SSL protos etc */
|
2013-07-15 11:26:59 -04:00
|
|
|
#include "slist.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "sendf.h"
|
2016-09-30 12:54:02 -04:00
|
|
|
#include "strcase.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "url.h"
|
|
|
|
#include "progress.h"
|
|
|
|
#include "share.h"
|
2016-11-16 12:49:15 -05:00
|
|
|
#include "multiif.h"
|
2013-06-24 16:24:35 -04:00
|
|
|
#include "timeval.h"
|
2014-10-13 08:39:50 -04:00
|
|
|
#include "curl_md5.h"
|
2014-10-29 15:12:50 -04:00
|
|
|
#include "warnless.h"
|
2014-11-24 13:30:09 -05:00
|
|
|
#include "curl_base64.h"
|
2015-03-03 17:17:43 -05:00
|
|
|
#include "curl_printf.h"
|
2013-07-15 11:26:59 -04:00
|
|
|
|
2015-03-24 18:12:03 -04:00
|
|
|
/* The last #include files should be: */
|
|
|
|
#include "curl_memory.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2005-04-07 11:27:13 -04:00
|
|
|
|
2011-11-25 08:58:55 -05:00
|
|
|
/* convenience macro to check if this handle is using a shared SSL session */
|
|
|
|
#define SSLSESSION_SHARED(data) (data->share && \
|
|
|
|
(data->share->specifier & \
|
|
|
|
(1<<CURL_LOCK_DATA_SSL_SESSION)))
|
|
|
|
|
2016-11-23 01:53:24 -05:00
|
|
|
#define CLONE_STRING(var) \
|
|
|
|
if(source->var) { \
|
|
|
|
dest->var = strdup(source->var); \
|
|
|
|
if(!dest->var) \
|
|
|
|
return FALSE; \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
dest->var = NULL;
|
2005-04-07 11:27:13 -04:00
|
|
|
|
|
|
|
bool
|
2016-11-16 12:49:15 -05:00
|
|
|
Curl_ssl_config_matches(struct ssl_primary_config* data,
|
|
|
|
struct ssl_primary_config* needle)
|
2005-04-07 11:27:13 -04:00
|
|
|
{
|
|
|
|
if((data->version == needle->version) &&
|
|
|
|
(data->verifypeer == needle->verifypeer) &&
|
|
|
|
(data->verifyhost == needle->verifyhost) &&
|
2016-11-16 12:49:15 -05:00
|
|
|
Curl_safe_strcasecompare(data->CApath, needle->CApath) &&
|
|
|
|
Curl_safe_strcasecompare(data->CAfile, needle->CAfile) &&
|
|
|
|
Curl_safe_strcasecompare(data->clientcert, needle->clientcert) &&
|
|
|
|
Curl_safe_strcasecompare(data->cipher_list, needle->cipher_list))
|
2005-04-07 11:27:13 -04:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2016-11-16 12:49:15 -05:00
|
|
|
Curl_clone_primary_ssl_config(struct ssl_primary_config *source,
|
|
|
|
struct ssl_primary_config *dest)
|
2005-04-07 11:27:13 -04:00
|
|
|
{
|
|
|
|
dest->verifyhost = source->verifyhost;
|
|
|
|
dest->verifypeer = source->verifypeer;
|
|
|
|
dest->version = source->version;
|
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
CLONE_STRING(CAfile);
|
|
|
|
CLONE_STRING(CApath);
|
|
|
|
CLONE_STRING(cipher_list);
|
|
|
|
CLONE_STRING(egdsocket);
|
|
|
|
CLONE_STRING(random_file);
|
|
|
|
CLONE_STRING(clientcert);
|
2005-04-07 11:27:13 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
void Curl_free_primary_ssl_config(struct ssl_primary_config* sslc)
|
2005-04-07 11:27:13 -04:00
|
|
|
{
|
2007-08-01 17:20:01 -04:00
|
|
|
Curl_safefree(sslc->CAfile);
|
|
|
|
Curl_safefree(sslc->CApath);
|
|
|
|
Curl_safefree(sslc->cipher_list);
|
|
|
|
Curl_safefree(sslc->egdsocket);
|
|
|
|
Curl_safefree(sslc->random_file);
|
2016-07-01 07:32:31 -04:00
|
|
|
Curl_safefree(sslc->clientcert);
|
2005-04-07 11:27:13 -04:00
|
|
|
}
|
|
|
|
|
2014-08-03 04:40:36 -04:00
|
|
|
int Curl_ssl_backend(void)
|
|
|
|
{
|
|
|
|
return (int)CURL_SSL_BACKEND;
|
|
|
|
}
|
|
|
|
|
2008-06-11 13:01:58 -04:00
|
|
|
#ifdef USE_SSL
|
|
|
|
|
|
|
|
/* "global" init done? */
|
|
|
|
static bool init_ssl=FALSE;
|
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
/**
|
|
|
|
* Global SSL init
|
|
|
|
*
|
|
|
|
* @retval 0 error initializing SSL
|
|
|
|
* @retval 1 SSL initialized successfully
|
|
|
|
*/
|
|
|
|
int Curl_ssl_init(void)
|
|
|
|
{
|
|
|
|
/* make sure this is only done once */
|
|
|
|
if(init_ssl)
|
|
|
|
return 1;
|
|
|
|
init_ssl = TRUE; /* never again */
|
|
|
|
|
2008-06-11 13:01:58 -04:00
|
|
|
return curlssl_init();
|
2005-04-07 11:27:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Global cleanup */
|
|
|
|
void Curl_ssl_cleanup(void)
|
|
|
|
{
|
|
|
|
if(init_ssl) {
|
|
|
|
/* only cleanup if we did a previous init */
|
2008-06-11 13:01:58 -04:00
|
|
|
curlssl_cleanup();
|
2005-04-07 11:27:13 -04:00
|
|
|
init_ssl = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
static bool ssl_prefs_check(struct Curl_easy *data)
|
2015-03-27 02:20:43 -04:00
|
|
|
{
|
|
|
|
/* check for CURLOPT_SSLVERSION invalid parameter value */
|
2016-11-16 12:49:15 -05:00
|
|
|
if((data->set.ssl.primary.version < 0)
|
|
|
|
|| (data->set.ssl.primary.version >= CURL_SSLVERSION_LAST)) {
|
2015-03-27 02:20:43 -04:00
|
|
|
failf(data, "Unrecognized parameter value passed via CURLOPT_SSLVERSION");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
static CURLcode
|
2016-11-23 02:49:04 -05:00
|
|
|
ssl_connect_init_proxy(struct connectdata *conn, int sockindex)
|
|
|
|
{
|
2016-11-16 12:49:15 -05:00
|
|
|
DEBUGASSERT(conn->bits.proxy_ssl_connected[sockindex]);
|
|
|
|
if(ssl_connection_complete == conn->ssl[sockindex].state &&
|
|
|
|
!conn->proxy_ssl[sockindex].use) {
|
2016-11-25 04:27:22 -05:00
|
|
|
#if defined(HTTPS_PROXY_SUPPORT)
|
2016-11-16 12:49:15 -05:00
|
|
|
conn->proxy_ssl[sockindex] = conn->ssl[sockindex];
|
|
|
|
memset(&conn->ssl[sockindex], 0, sizeof(conn->ssl[sockindex]));
|
|
|
|
#else
|
|
|
|
return CURLE_NOT_BUILT_IN;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
CURLcode
|
|
|
|
Curl_ssl_connect(struct connectdata *conn, int sockindex)
|
|
|
|
{
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result;
|
2015-03-27 02:20:43 -04:00
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
if(conn->bits.proxy_ssl_connected[sockindex]) {
|
|
|
|
result = ssl_connect_init_proxy(conn, sockindex);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-03-27 02:20:43 -04:00
|
|
|
if(!ssl_prefs_check(conn->data))
|
|
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
|
|
|
2008-06-11 13:01:58 -04:00
|
|
|
/* mark this is being ssl-enabled from here on. */
|
2005-04-07 11:27:13 -04:00
|
|
|
conn->ssl[sockindex].use = TRUE;
|
2008-02-20 04:56:26 -05:00
|
|
|
conn->ssl[sockindex].state = ssl_connection_negotiating;
|
2005-04-07 11:27:13 -04:00
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
result = curlssl_connect(conn, sockindex);
|
2008-07-03 02:56:03 -04:00
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
if(!result)
|
2008-07-03 02:56:03 -04:00
|
|
|
Curl_pgrsTime(conn->data, TIMER_APPCONNECT); /* SSL is connected */
|
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
return result;
|
2005-04-07 11:27:13 -04:00
|
|
|
}
|
|
|
|
|
2006-03-21 16:54:44 -05:00
|
|
|
CURLcode
|
|
|
|
Curl_ssl_connect_nonblocking(struct connectdata *conn, int sockindex,
|
|
|
|
bool *done)
|
|
|
|
{
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result;
|
2016-11-16 12:49:15 -05:00
|
|
|
if(conn->bits.proxy_ssl_connected[sockindex]) {
|
|
|
|
result = ssl_connect_init_proxy(conn, sockindex);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
2015-03-27 02:20:43 -04:00
|
|
|
|
|
|
|
if(!ssl_prefs_check(conn->data))
|
|
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
|
|
|
2008-06-11 13:01:58 -04:00
|
|
|
/* mark this is being ssl requested from here on. */
|
2006-03-21 16:54:44 -05:00
|
|
|
conn->ssl[sockindex].use = TRUE;
|
2012-06-08 17:02:57 -04:00
|
|
|
#ifdef curlssl_connect_nonblocking
|
2014-10-23 16:56:35 -04:00
|
|
|
result = curlssl_connect_nonblocking(conn, sockindex, done);
|
2007-07-23 17:46:26 -04:00
|
|
|
#else
|
|
|
|
*done = TRUE; /* fallback to BLOCKING */
|
2014-10-23 16:56:35 -04:00
|
|
|
result = curlssl_connect(conn, sockindex);
|
2008-06-11 13:01:58 -04:00
|
|
|
#endif /* non-blocking connect support */
|
2014-10-23 16:56:35 -04:00
|
|
|
if(!result && *done)
|
2012-06-08 17:02:57 -04:00
|
|
|
Curl_pgrsTime(conn->data, TIMER_APPCONNECT); /* SSL is connected */
|
2014-10-23 16:56:35 -04:00
|
|
|
return result;
|
2006-03-21 16:54:44 -05:00
|
|
|
}
|
|
|
|
|
2016-06-01 03:30:03 -04:00
|
|
|
/*
|
|
|
|
* Lock shared SSL session data
|
|
|
|
*/
|
|
|
|
void Curl_ssl_sessionid_lock(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
if(SSLSESSION_SHARED(conn->data))
|
|
|
|
Curl_share_lock(conn->data,
|
|
|
|
CURL_LOCK_DATA_SSL_SESSION, CURL_LOCK_ACCESS_SINGLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unlock shared SSL session data
|
|
|
|
*/
|
|
|
|
void Curl_ssl_sessionid_unlock(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
if(SSLSESSION_SHARED(conn->data))
|
|
|
|
Curl_share_unlock(conn->data, CURL_LOCK_DATA_SSL_SESSION);
|
|
|
|
}
|
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
/*
|
|
|
|
* Check if there's a session ID for the given connection in the cache, and if
|
|
|
|
* there's one suitable, it is provided. Returns TRUE when no entry matched.
|
|
|
|
*/
|
2014-12-25 12:15:15 -05:00
|
|
|
bool Curl_ssl_getsessionid(struct connectdata *conn,
|
|
|
|
void **ssl_sessionid,
|
2016-11-16 12:49:15 -05:00
|
|
|
size_t *idsize, /* set 0 if unknown */
|
|
|
|
int sockindex)
|
2005-04-07 11:27:13 -04:00
|
|
|
{
|
|
|
|
struct curl_ssl_session *check;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2012-01-18 17:39:30 -05:00
|
|
|
size_t i;
|
2011-11-17 17:34:38 -05:00
|
|
|
long *general_age;
|
2011-11-17 17:55:36 -05:00
|
|
|
bool no_match = TRUE;
|
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
const bool isProxy = CONNECT_PROXY_SSL();
|
|
|
|
struct ssl_primary_config * const ssl_config = isProxy ?
|
|
|
|
&conn->proxy_ssl_config :
|
|
|
|
&conn->ssl_config;
|
|
|
|
const char * const name = isProxy ? conn->http_proxy.host.name :
|
|
|
|
conn->host.name;
|
|
|
|
int port = isProxy ? (int)conn->port : conn->remote_port;
|
2011-11-17 17:55:36 -05:00
|
|
|
*ssl_sessionid = NULL;
|
2005-04-07 11:27:13 -04:00
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
DEBUGASSERT(data->set.general_ssl.sessionid);
|
2016-06-12 23:47:12 -04:00
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
if(!data->set.general_ssl.sessionid)
|
2006-09-11 13:18:18 -04:00
|
|
|
/* session ID re-use is disabled */
|
|
|
|
return TRUE;
|
|
|
|
|
2011-11-17 17:55:36 -05:00
|
|
|
/* Lock if shared */
|
2016-06-01 03:30:03 -04:00
|
|
|
if(SSLSESSION_SHARED(data))
|
2011-11-17 17:34:38 -05:00
|
|
|
general_age = &data->share->sessionage;
|
|
|
|
else
|
|
|
|
general_age = &data->state.sessionage;
|
2011-09-20 11:43:54 -04:00
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
for(i = 0; i < data->set.general_ssl.max_ssl_sessions; i++) {
|
2005-04-07 11:27:13 -04:00
|
|
|
check = &data->state.session[i];
|
|
|
|
if(!check->sessionid)
|
|
|
|
/* not session ID means blank entry */
|
|
|
|
continue;
|
2016-11-16 12:49:15 -05:00
|
|
|
if(strcasecompare(name, check->name) &&
|
2016-01-25 08:37:24 -05:00
|
|
|
((!conn->bits.conn_to_host && !check->conn_to_host) ||
|
2016-09-30 12:54:02 -04:00
|
|
|
(conn->bits.conn_to_host && check->conn_to_host &&
|
|
|
|
strcasecompare(conn->conn_to_host.name, check->conn_to_host))) &&
|
2016-01-25 08:37:24 -05:00
|
|
|
((!conn->bits.conn_to_port && check->conn_to_port == -1) ||
|
2016-09-30 12:54:02 -04:00
|
|
|
(conn->bits.conn_to_port && check->conn_to_port != -1 &&
|
|
|
|
conn->conn_to_port == check->conn_to_port)) &&
|
2016-11-16 12:49:15 -05:00
|
|
|
(port == check->remote_port) &&
|
2016-09-30 12:54:02 -04:00
|
|
|
strcasecompare(conn->handler->scheme, check->scheme) &&
|
2016-11-16 12:49:15 -05:00
|
|
|
Curl_ssl_config_matches(ssl_config, &check->ssl_config)) {
|
2005-04-07 11:27:13 -04:00
|
|
|
/* yes, we have a session ID! */
|
2011-11-17 17:46:29 -05:00
|
|
|
(*general_age)++; /* increase general age */
|
2011-11-17 17:34:38 -05:00
|
|
|
check->age = *general_age; /* set this as used in this age */
|
2005-04-07 11:27:13 -04:00
|
|
|
*ssl_sessionid = check->sessionid;
|
|
|
|
if(idsize)
|
|
|
|
*idsize = check->idsize;
|
2011-11-17 17:55:36 -05:00
|
|
|
no_match = FALSE;
|
|
|
|
break;
|
2005-04-07 11:27:13 -04:00
|
|
|
}
|
|
|
|
}
|
2011-09-20 11:43:54 -04:00
|
|
|
|
2011-11-17 17:55:36 -05:00
|
|
|
return no_match;
|
2005-04-07 11:27:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Kill a single session ID entry in the cache.
|
|
|
|
*/
|
2012-01-18 17:39:30 -05:00
|
|
|
void Curl_ssl_kill_session(struct curl_ssl_session *session)
|
2005-04-07 11:27:13 -04:00
|
|
|
{
|
|
|
|
if(session->sessionid) {
|
|
|
|
/* defensive check */
|
|
|
|
|
|
|
|
/* free the ID the SSL-layer specific way */
|
2008-06-11 13:01:58 -04:00
|
|
|
curlssl_session_free(session->sessionid);
|
|
|
|
|
2012-01-18 17:39:30 -05:00
|
|
|
session->sessionid = NULL;
|
2005-04-07 11:27:13 -04:00
|
|
|
session->age = 0; /* fresh */
|
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
Curl_free_primary_ssl_config(&session->ssl_config);
|
2005-04-07 11:27:13 -04:00
|
|
|
|
|
|
|
Curl_safefree(session->name);
|
2016-01-25 08:37:24 -05:00
|
|
|
Curl_safefree(session->conn_to_host);
|
2005-04-07 11:27:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-04 17:57:14 -04:00
|
|
|
/*
|
|
|
|
* Delete the given session ID from the cache.
|
|
|
|
*/
|
|
|
|
void Curl_ssl_delsessionid(struct connectdata *conn, void *ssl_sessionid)
|
|
|
|
{
|
2012-01-18 17:39:30 -05:00
|
|
|
size_t i;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data=conn->data;
|
2011-09-20 11:43:54 -04:00
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
for(i = 0; i < data->set.general_ssl.max_ssl_sessions; i++) {
|
2011-09-20 11:43:54 -04:00
|
|
|
struct curl_ssl_session *check = &data->state.session[i];
|
2009-05-04 17:57:14 -04:00
|
|
|
|
2011-04-20 09:17:42 -04:00
|
|
|
if(check->sessionid == ssl_sessionid) {
|
2011-09-20 11:43:54 -04:00
|
|
|
Curl_ssl_kill_session(check);
|
2009-05-04 17:57:14 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
/*
|
|
|
|
* Store session id in the session cache. The ID passed on to this function
|
|
|
|
* must already have been extracted and allocated the proper way for the SSL
|
|
|
|
* layer. Curl_XXXX_session_free() will be called to free/kill the session ID
|
|
|
|
* later on.
|
|
|
|
*/
|
|
|
|
CURLcode Curl_ssl_addsessionid(struct connectdata *conn,
|
|
|
|
void *ssl_sessionid,
|
2016-11-16 12:49:15 -05:00
|
|
|
size_t idsize,
|
|
|
|
int sockindex)
|
2005-04-07 11:27:13 -04:00
|
|
|
{
|
2012-01-18 17:39:30 -05:00
|
|
|
size_t i;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data=conn->data; /* the mother of all structs */
|
2005-04-07 11:27:13 -04:00
|
|
|
struct curl_ssl_session *store = &data->state.session[0];
|
|
|
|
long oldest_age=data->state.session[0].age; /* zero if unused */
|
|
|
|
char *clone_host;
|
2016-01-25 08:37:24 -05:00
|
|
|
char *clone_conn_to_host;
|
|
|
|
int conn_to_port;
|
2011-11-17 17:34:38 -05:00
|
|
|
long *general_age;
|
2016-11-16 12:49:15 -05:00
|
|
|
const bool isProxy = CONNECT_PROXY_SSL();
|
|
|
|
struct ssl_primary_config * const ssl_config = isProxy ?
|
|
|
|
&conn->proxy_ssl_config :
|
|
|
|
&conn->ssl_config;
|
2005-04-07 11:27:13 -04:00
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
DEBUGASSERT(data->set.general_ssl.sessionid);
|
2006-09-11 13:18:18 -04:00
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
clone_host = strdup(isProxy ? conn->http_proxy.host.name : conn->host.name);
|
2005-04-07 11:27:13 -04:00
|
|
|
if(!clone_host)
|
|
|
|
return CURLE_OUT_OF_MEMORY; /* bail out */
|
|
|
|
|
2016-01-25 08:37:24 -05:00
|
|
|
if(conn->bits.conn_to_host) {
|
|
|
|
clone_conn_to_host = strdup(conn->conn_to_host.name);
|
|
|
|
if(!clone_conn_to_host) {
|
|
|
|
free(clone_host);
|
|
|
|
return CURLE_OUT_OF_MEMORY; /* bail out */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
clone_conn_to_host = NULL;
|
|
|
|
|
|
|
|
if(conn->bits.conn_to_port)
|
|
|
|
conn_to_port = conn->conn_to_port;
|
|
|
|
else
|
|
|
|
conn_to_port = -1;
|
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
/* Now we should add the session ID and the host name to the cache, (remove
|
|
|
|
the oldest if necessary) */
|
|
|
|
|
2011-09-20 11:43:54 -04:00
|
|
|
/* If using shared SSL session, lock! */
|
2011-11-25 08:58:55 -05:00
|
|
|
if(SSLSESSION_SHARED(data)) {
|
2011-11-17 17:34:38 -05:00
|
|
|
general_age = &data->share->sessionage;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
general_age = &data->state.sessionage;
|
|
|
|
}
|
2011-09-20 11:43:54 -04:00
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
/* find an empty slot for us, or find the oldest */
|
2016-11-16 12:49:15 -05:00
|
|
|
for(i = 1; (i < data->set.general_ssl.max_ssl_sessions) &&
|
2005-04-07 11:27:13 -04:00
|
|
|
data->state.session[i].sessionid; i++) {
|
|
|
|
if(data->state.session[i].age < oldest_age) {
|
|
|
|
oldest_age = data->state.session[i].age;
|
|
|
|
store = &data->state.session[i];
|
|
|
|
}
|
|
|
|
}
|
2016-11-16 12:49:15 -05:00
|
|
|
if(i == data->set.general_ssl.max_ssl_sessions)
|
2005-04-07 11:27:13 -04:00
|
|
|
/* cache is full, we must "kill" the oldest entry! */
|
2011-09-20 11:43:54 -04:00
|
|
|
Curl_ssl_kill_session(store);
|
2005-04-07 11:27:13 -04:00
|
|
|
else
|
|
|
|
store = &data->state.session[i]; /* use this slot */
|
|
|
|
|
|
|
|
/* now init the session struct wisely */
|
|
|
|
store->sessionid = ssl_sessionid;
|
|
|
|
store->idsize = idsize;
|
2011-11-17 17:34:38 -05:00
|
|
|
store->age = *general_age; /* set current age */
|
2007-12-24 18:45:48 -05:00
|
|
|
/* free it if there's one already present */
|
2015-03-11 12:41:01 -04:00
|
|
|
free(store->name);
|
2016-01-25 08:37:24 -05:00
|
|
|
free(store->conn_to_host);
|
2005-04-07 11:27:13 -04:00
|
|
|
store->name = clone_host; /* clone host name */
|
2016-01-25 08:37:24 -05:00
|
|
|
store->conn_to_host = clone_conn_to_host; /* clone connect to host name */
|
|
|
|
store->conn_to_port = conn_to_port; /* connect to port number */
|
2016-11-16 12:49:15 -05:00
|
|
|
/* port number */
|
|
|
|
store->remote_port = isProxy ? (int)conn->port : conn->remote_port;
|
2016-10-10 10:47:54 -04:00
|
|
|
store->scheme = conn->handler->scheme;
|
2005-04-07 11:27:13 -04:00
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
if(!Curl_clone_primary_ssl_config(ssl_config, &store->ssl_config)) {
|
2011-01-10 07:53:01 -05:00
|
|
|
store->sessionid = NULL; /* let caller free sessionid */
|
|
|
|
free(clone_host);
|
2016-01-25 08:37:24 -05:00
|
|
|
free(clone_conn_to_host);
|
2005-04-07 11:27:13 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2011-01-10 07:53:01 -05:00
|
|
|
}
|
2005-04-07 11:27:13 -04:00
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
void Curl_ssl_close_all(struct Curl_easy *data)
|
2005-04-07 11:27:13 -04:00
|
|
|
{
|
2012-01-18 17:39:30 -05:00
|
|
|
size_t i;
|
2011-11-25 08:58:55 -05:00
|
|
|
/* kill the session ID cache if not shared */
|
|
|
|
if(data->state.session && !SSLSESSION_SHARED(data)) {
|
2016-11-16 12:49:15 -05:00
|
|
|
for(i = 0; i < data->set.general_ssl.max_ssl_sessions; i++)
|
2005-04-07 11:27:13 -04:00
|
|
|
/* the single-killer function handles empty table slots */
|
2011-09-20 11:43:54 -04:00
|
|
|
Curl_ssl_kill_session(&data->state.session[i]);
|
2005-04-07 11:27:13 -04:00
|
|
|
|
|
|
|
/* free the cache data */
|
2012-01-18 17:39:30 -05:00
|
|
|
Curl_safefree(data->state.session);
|
2005-04-07 11:27:13 -04:00
|
|
|
}
|
2008-06-11 13:01:58 -04:00
|
|
|
|
|
|
|
curlssl_close_all(data);
|
2005-04-07 11:27:13 -04:00
|
|
|
}
|
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
#if defined(USE_SSLEAY) || defined(USE_GNUTLS) || defined(USE_SCHANNEL) || \
|
|
|
|
defined(USE_DARWINSSL) || defined(USE_NSS)
|
|
|
|
/* This function is for OpenSSL, GnuTLS, darwinssl, and schannel only. */
|
|
|
|
int Curl_ssl_getsock(struct connectdata *conn, curl_socket_t *socks,
|
|
|
|
int numsocks)
|
|
|
|
{
|
|
|
|
struct ssl_connect_data *connssl = &conn->ssl[FIRSTSOCKET];
|
|
|
|
|
|
|
|
if(!numsocks)
|
|
|
|
return GETSOCK_BLANK;
|
|
|
|
|
|
|
|
if(connssl->connecting_state == ssl_connect_2_writing) {
|
|
|
|
/* write mode */
|
|
|
|
socks[0] = conn->sock[FIRSTSOCKET];
|
|
|
|
return GETSOCK_WRITESOCK(0);
|
|
|
|
}
|
|
|
|
else if(connssl->connecting_state == ssl_connect_2_reading) {
|
|
|
|
/* read mode */
|
|
|
|
socks[0] = conn->sock[FIRSTSOCKET];
|
|
|
|
return GETSOCK_READSOCK(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return GETSOCK_BLANK;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
int Curl_ssl_getsock(struct connectdata *conn,
|
|
|
|
curl_socket_t *socks,
|
|
|
|
int numsocks)
|
|
|
|
{
|
|
|
|
(void)conn;
|
|
|
|
(void)socks;
|
|
|
|
(void)numsocks;
|
|
|
|
return GETSOCK_BLANK;
|
|
|
|
}
|
|
|
|
/* USE_SSLEAY || USE_GNUTLS || USE_SCHANNEL || USE_DARWINSSL || USE_NSS */
|
|
|
|
#endif
|
|
|
|
|
2007-07-29 08:54:05 -04:00
|
|
|
void Curl_ssl_close(struct connectdata *conn, int sockindex)
|
2005-04-07 11:27:13 -04:00
|
|
|
{
|
2007-07-29 08:54:05 -04:00
|
|
|
DEBUGASSERT((sockindex <= 1) && (sockindex >= -1));
|
2008-06-11 13:01:58 -04:00
|
|
|
curlssl_close(conn, sockindex);
|
2005-04-07 11:27:13 -04:00
|
|
|
}
|
|
|
|
|
2007-01-05 18:11:14 -05:00
|
|
|
CURLcode Curl_ssl_shutdown(struct connectdata *conn, int sockindex)
|
|
|
|
{
|
2008-06-11 13:01:58 -04:00
|
|
|
if(curlssl_shutdown(conn, sockindex))
|
2007-07-29 08:54:05 -04:00
|
|
|
return CURLE_SSL_SHUTDOWN_FAILED;
|
|
|
|
|
|
|
|
conn->ssl[sockindex].use = FALSE; /* get back to ordinary socket usage */
|
2008-02-20 04:56:26 -05:00
|
|
|
conn->ssl[sockindex].state = ssl_connection_none;
|
2007-07-29 08:54:05 -04:00
|
|
|
|
2011-04-15 10:41:27 -04:00
|
|
|
conn->recv[sockindex] = Curl_recv_plain;
|
|
|
|
conn->send[sockindex] = Curl_send_plain;
|
|
|
|
|
2007-01-05 18:11:14 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2008-06-11 13:01:58 -04:00
|
|
|
/* Selects an SSL crypto engine
|
2005-04-07 11:27:13 -04:00
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_ssl_set_engine(struct Curl_easy *data, const char *engine)
|
2005-04-07 11:27:13 -04:00
|
|
|
{
|
2008-06-11 13:01:58 -04:00
|
|
|
return curlssl_set_engine(data, engine);
|
2005-04-07 11:27:13 -04:00
|
|
|
}
|
|
|
|
|
2008-06-11 13:01:58 -04:00
|
|
|
/* Selects the default SSL crypto engine
|
2005-04-07 11:27:13 -04:00
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_ssl_set_engine_default(struct Curl_easy *data)
|
2005-04-07 11:27:13 -04:00
|
|
|
{
|
2008-06-11 13:01:58 -04:00
|
|
|
return curlssl_set_engine_default(data);
|
2005-04-07 11:27:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return list of OpenSSL crypto engine names. */
|
2016-06-21 09:47:12 -04:00
|
|
|
struct curl_slist *Curl_ssl_engines_list(struct Curl_easy *data)
|
2005-04-07 11:27:13 -04:00
|
|
|
{
|
2008-06-11 13:01:58 -04:00
|
|
|
return curlssl_engines_list(data);
|
2005-04-07 11:27:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This sets up a session ID cache to the specified size. Make sure this code
|
|
|
|
* is agnostic to what underlying SSL technology we use.
|
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_ssl_initsessions(struct Curl_easy *data, size_t amount)
|
2005-04-07 11:27:13 -04:00
|
|
|
{
|
|
|
|
struct curl_ssl_session *session;
|
|
|
|
|
|
|
|
if(data->state.session)
|
|
|
|
/* this is just a precaution to prevent multiple inits */
|
|
|
|
return CURLE_OK;
|
|
|
|
|
2009-11-18 05:33:54 -05:00
|
|
|
session = calloc(amount, sizeof(struct curl_ssl_session));
|
2005-04-07 11:27:13 -04:00
|
|
|
if(!session)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
/* store the info in the SSL section */
|
2016-11-16 12:49:15 -05:00
|
|
|
data->set.general_ssl.max_ssl_sessions = amount;
|
2005-04-07 11:27:13 -04:00
|
|
|
data->state.session = session;
|
|
|
|
data->state.sessionage = 1; /* this is brand new */
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t Curl_ssl_version(char *buffer, size_t size)
|
|
|
|
{
|
2008-06-11 13:01:58 -04:00
|
|
|
return curlssl_version(buffer, size);
|
2005-04-07 11:27:13 -04:00
|
|
|
}
|
|
|
|
|
2006-05-10 18:17:42 -04:00
|
|
|
/*
|
|
|
|
* This function tries to determine connection status.
|
|
|
|
*
|
|
|
|
* Return codes:
|
|
|
|
* 1 means the connection is still in place
|
|
|
|
* 0 means the connection has been closed
|
|
|
|
* -1 means the connection status is unknown
|
|
|
|
*/
|
|
|
|
int Curl_ssl_check_cxn(struct connectdata *conn)
|
|
|
|
{
|
2008-06-11 13:01:58 -04:00
|
|
|
return curlssl_check_cxn(conn);
|
2006-05-10 18:17:42 -04:00
|
|
|
}
|
2007-01-24 12:19:08 -05:00
|
|
|
|
2007-08-27 02:31:28 -04:00
|
|
|
bool Curl_ssl_data_pending(const struct connectdata *conn,
|
2007-01-24 12:19:08 -05:00
|
|
|
int connindex)
|
|
|
|
{
|
2008-06-11 13:01:58 -04:00
|
|
|
return curlssl_data_pending(conn, connindex);
|
2007-01-24 12:19:08 -05:00
|
|
|
}
|
2008-06-11 13:01:58 -04:00
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
void Curl_ssl_free_certinfo(struct Curl_easy *data)
|
2008-09-05 10:29:21 -04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct curl_certinfo *ci = &data->info.certs;
|
2014-12-26 06:58:17 -05:00
|
|
|
|
2008-09-05 10:29:21 -04:00
|
|
|
if(ci->num_of_certs) {
|
|
|
|
/* free all individual lists used */
|
2011-10-07 14:50:57 -04:00
|
|
|
for(i=0; i<ci->num_of_certs; i++) {
|
2008-09-05 10:29:21 -04:00
|
|
|
curl_slist_free_all(ci->certinfo[i]);
|
2011-10-07 14:50:57 -04:00
|
|
|
ci->certinfo[i] = NULL;
|
|
|
|
}
|
2014-12-26 06:58:17 -05:00
|
|
|
|
2008-09-05 10:29:21 -04:00
|
|
|
free(ci->certinfo); /* free the actual array too */
|
2011-10-07 14:50:57 -04:00
|
|
|
ci->certinfo = NULL;
|
2008-09-05 10:29:21 -04:00
|
|
|
ci->num_of_certs = 0;
|
|
|
|
}
|
|
|
|
}
|
2012-06-26 08:52:46 -04:00
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_ssl_init_certinfo(struct Curl_easy *data, int num)
|
2013-07-15 11:26:59 -04:00
|
|
|
{
|
2014-12-26 06:53:34 -05:00
|
|
|
struct curl_certinfo *ci = &data->info.certs;
|
|
|
|
struct curl_slist **table;
|
2013-07-15 11:26:59 -04:00
|
|
|
|
2014-12-26 06:58:17 -05:00
|
|
|
/* Free any previous certificate information structures */
|
2013-07-15 11:26:59 -04:00
|
|
|
Curl_ssl_free_certinfo(data);
|
2014-12-26 06:58:17 -05:00
|
|
|
|
|
|
|
/* Allocate the required certificate information structures */
|
2013-07-15 11:26:59 -04:00
|
|
|
table = calloc((size_t) num, sizeof(struct curl_slist *));
|
|
|
|
if(!table)
|
2014-12-26 06:53:34 -05:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2013-07-15 11:26:59 -04:00
|
|
|
|
2014-12-26 06:58:17 -05:00
|
|
|
ci->num_of_certs = num;
|
2013-07-15 11:26:59 -04:00
|
|
|
ci->certinfo = table;
|
2014-12-26 06:53:34 -05:00
|
|
|
|
|
|
|
return CURLE_OK;
|
2013-07-15 11:26:59 -04:00
|
|
|
}
|
|
|
|
|
2013-11-05 03:56:18 -05:00
|
|
|
/*
|
|
|
|
* 'value' is NOT a zero terminated string
|
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_ssl_push_certinfo_len(struct Curl_easy *data,
|
2013-07-15 11:26:59 -04:00
|
|
|
int certnum,
|
|
|
|
const char *label,
|
|
|
|
const char *value,
|
|
|
|
size_t valuelen)
|
|
|
|
{
|
2016-11-23 01:53:24 -05:00
|
|
|
struct curl_certinfo *ci = &data->info.certs;
|
|
|
|
char *output;
|
|
|
|
struct curl_slist *nl;
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result = CURLE_OK;
|
2013-11-05 03:56:18 -05:00
|
|
|
size_t labellen = strlen(label);
|
|
|
|
size_t outlen = labellen + 1 + valuelen + 1; /* label:value\0 */
|
2013-07-15 11:26:59 -04:00
|
|
|
|
2013-11-05 03:56:18 -05:00
|
|
|
output = malloc(outlen);
|
2013-07-15 11:26:59 -04:00
|
|
|
if(!output)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
2013-11-05 03:56:18 -05:00
|
|
|
/* sprintf the label and colon */
|
|
|
|
snprintf(output, outlen, "%s:", label);
|
|
|
|
|
|
|
|
/* memcpy the value (it might not be zero terminated) */
|
|
|
|
memcpy(&output[labellen+1], value, valuelen);
|
|
|
|
|
|
|
|
/* zero terminate the output */
|
|
|
|
output[labellen + 1 + valuelen] = 0;
|
|
|
|
|
2013-07-15 11:26:59 -04:00
|
|
|
nl = Curl_slist_append_nodup(ci->certinfo[certnum], output);
|
|
|
|
if(!nl) {
|
|
|
|
free(output);
|
|
|
|
curl_slist_free_all(ci->certinfo[certnum]);
|
2014-10-23 16:56:35 -04:00
|
|
|
result = CURLE_OUT_OF_MEMORY;
|
2013-07-15 11:26:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ci->certinfo[certnum] = nl;
|
2014-10-23 16:56:35 -04:00
|
|
|
return result;
|
2013-07-15 11:26:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a convenience function for push_certinfo_len that takes a zero
|
|
|
|
* terminated value.
|
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_ssl_push_certinfo(struct Curl_easy *data,
|
2013-07-15 11:26:59 -04:00
|
|
|
int certnum,
|
|
|
|
const char *label,
|
|
|
|
const char *value)
|
|
|
|
{
|
|
|
|
size_t valuelen = strlen(value);
|
|
|
|
|
|
|
|
return Curl_ssl_push_certinfo_len(data, certnum, label, value, valuelen);
|
|
|
|
}
|
|
|
|
|
2016-11-11 08:53:36 -05:00
|
|
|
CURLcode Curl_ssl_random(struct Curl_easy *data,
|
|
|
|
unsigned char *entropy,
|
|
|
|
size_t length)
|
2014-06-03 14:04:46 -04:00
|
|
|
{
|
2016-11-11 08:53:36 -05:00
|
|
|
int rc = curlssl_random(data, entropy, length);
|
|
|
|
if(rc) {
|
|
|
|
failf(data, "PRNG seeding failed");
|
|
|
|
return CURLE_FAILED_INIT; /* possibly weird return code */
|
|
|
|
}
|
|
|
|
return CURLE_OK;
|
2014-06-03 14:04:46 -04:00
|
|
|
}
|
|
|
|
|
2014-11-24 13:30:09 -05:00
|
|
|
/*
|
|
|
|
* Public key pem to der conversion
|
|
|
|
*/
|
|
|
|
|
|
|
|
static CURLcode pubkey_pem_to_der(const char *pem,
|
|
|
|
unsigned char **der, size_t *der_len)
|
|
|
|
{
|
|
|
|
char *stripped_pem, *begin_pos, *end_pos;
|
|
|
|
size_t pem_count, stripped_pem_count = 0, pem_len;
|
|
|
|
CURLcode result;
|
|
|
|
|
|
|
|
/* if no pem, exit. */
|
|
|
|
if(!pem)
|
|
|
|
return CURLE_BAD_CONTENT_ENCODING;
|
|
|
|
|
|
|
|
begin_pos = strstr(pem, "-----BEGIN PUBLIC KEY-----");
|
|
|
|
if(!begin_pos)
|
|
|
|
return CURLE_BAD_CONTENT_ENCODING;
|
|
|
|
|
|
|
|
pem_count = begin_pos - pem;
|
|
|
|
/* Invalid if not at beginning AND not directly following \n */
|
|
|
|
if(0 != pem_count && '\n' != pem[pem_count - 1])
|
|
|
|
return CURLE_BAD_CONTENT_ENCODING;
|
|
|
|
|
|
|
|
/* 26 is length of "-----BEGIN PUBLIC KEY-----" */
|
|
|
|
pem_count += 26;
|
|
|
|
|
|
|
|
/* Invalid if not directly following \n */
|
|
|
|
end_pos = strstr(pem + pem_count, "\n-----END PUBLIC KEY-----");
|
|
|
|
if(!end_pos)
|
|
|
|
return CURLE_BAD_CONTENT_ENCODING;
|
|
|
|
|
|
|
|
pem_len = end_pos - pem;
|
|
|
|
|
|
|
|
stripped_pem = malloc(pem_len - pem_count + 1);
|
|
|
|
if(!stripped_pem)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Here we loop through the pem array one character at a time between the
|
|
|
|
* correct indices, and place each character that is not '\n' or '\r'
|
|
|
|
* into the stripped_pem array, which should represent the raw base64 string
|
|
|
|
*/
|
|
|
|
while(pem_count < pem_len) {
|
|
|
|
if('\n' != pem[pem_count] && '\r' != pem[pem_count])
|
|
|
|
stripped_pem[stripped_pem_count++] = pem[pem_count];
|
|
|
|
++pem_count;
|
|
|
|
}
|
|
|
|
/* Place the null terminator in the correct place */
|
|
|
|
stripped_pem[stripped_pem_count] = '\0';
|
|
|
|
|
|
|
|
result = Curl_base64_decode(stripped_pem, der, der_len);
|
|
|
|
|
|
|
|
Curl_safefree(stripped_pem);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-10-13 12:34:51 -04:00
|
|
|
/*
|
|
|
|
* Generic pinned public key check.
|
|
|
|
*/
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_pin_peer_pubkey(struct Curl_easy *data,
|
2015-09-12 17:35:12 -04:00
|
|
|
const char *pinnedpubkey,
|
2014-10-13 12:34:51 -04:00
|
|
|
const unsigned char *pubkey, size_t pubkeylen)
|
|
|
|
{
|
2014-11-24 13:30:09 -05:00
|
|
|
FILE *fp;
|
|
|
|
unsigned char *buf = NULL, *pem_ptr = NULL;
|
|
|
|
long filesize;
|
|
|
|
size_t size, pem_len;
|
|
|
|
CURLcode pem_read;
|
2014-10-13 12:34:51 -04:00
|
|
|
CURLcode result = CURLE_SSL_PINNEDPUBKEYNOTMATCH;
|
2015-06-30 20:23:54 -04:00
|
|
|
#ifdef curlssl_sha256sum
|
2015-09-12 17:35:12 -04:00
|
|
|
CURLcode encode;
|
|
|
|
size_t encodedlen, pinkeylen;
|
|
|
|
char *encoded, *pinkeycopy, *begin_pos, *end_pos;
|
|
|
|
unsigned char *sha256sumdigest = NULL;
|
2015-06-30 20:23:54 -04:00
|
|
|
#endif
|
2014-10-13 12:34:51 -04:00
|
|
|
|
|
|
|
/* if a path wasn't specified, don't pin */
|
|
|
|
if(!pinnedpubkey)
|
|
|
|
return CURLE_OK;
|
|
|
|
if(!pubkey || !pubkeylen)
|
|
|
|
return result;
|
2015-06-30 20:23:54 -04:00
|
|
|
|
|
|
|
/* only do this if pinnedpubkey starts with "sha256//", length 8 */
|
|
|
|
if(strncmp(pinnedpubkey, "sha256//", 8) == 0) {
|
2016-05-01 11:05:38 -04:00
|
|
|
#ifdef curlssl_sha256sum
|
2015-06-30 20:23:54 -04:00
|
|
|
/* compute sha256sum of public key */
|
|
|
|
sha256sumdigest = malloc(SHA256_DIGEST_LENGTH);
|
|
|
|
if(!sha256sumdigest)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
curlssl_sha256sum(pubkey, pubkeylen,
|
|
|
|
sha256sumdigest, SHA256_DIGEST_LENGTH);
|
2015-09-12 17:35:12 -04:00
|
|
|
encode = Curl_base64_encode(data, (char *)sha256sumdigest,
|
|
|
|
SHA256_DIGEST_LENGTH, &encoded, &encodedlen);
|
|
|
|
Curl_safefree(sha256sumdigest);
|
|
|
|
|
2015-09-19 22:40:40 -04:00
|
|
|
if(encode)
|
2015-09-12 17:35:12 -04:00
|
|
|
return encode;
|
|
|
|
|
2015-09-19 22:40:40 -04:00
|
|
|
infof(data, "\t public key hash: sha256//%s\n", encoded);
|
|
|
|
|
2015-06-30 20:23:54 -04:00
|
|
|
/* it starts with sha256//, copy so we can modify it */
|
|
|
|
pinkeylen = strlen(pinnedpubkey) + 1;
|
|
|
|
pinkeycopy = malloc(pinkeylen);
|
|
|
|
if(!pinkeycopy) {
|
2015-09-12 17:35:12 -04:00
|
|
|
Curl_safefree(encoded);
|
2015-06-30 20:23:54 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
memcpy(pinkeycopy, pinnedpubkey, pinkeylen);
|
|
|
|
/* point begin_pos to the copy, and start extracting keys */
|
|
|
|
begin_pos = pinkeycopy;
|
|
|
|
do {
|
|
|
|
end_pos = strstr(begin_pos, ";sha256//");
|
|
|
|
/*
|
|
|
|
* if there is an end_pos, null terminate,
|
|
|
|
* otherwise it'll go to the end of the original string
|
|
|
|
*/
|
|
|
|
if(end_pos)
|
|
|
|
end_pos[0] = '\0';
|
|
|
|
|
2015-09-12 17:35:12 -04:00
|
|
|
/* compare base64 sha256 digests, 8 is the length of "sha256//" */
|
|
|
|
if(encodedlen == strlen(begin_pos + 8) &&
|
|
|
|
!memcmp(encoded, begin_pos + 8, encodedlen)) {
|
|
|
|
result = CURLE_OK;
|
|
|
|
break;
|
2015-06-30 20:23:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* change back the null-terminator we changed earlier,
|
|
|
|
* and look for next begin
|
|
|
|
*/
|
|
|
|
if(end_pos) {
|
|
|
|
end_pos[0] = ';';
|
|
|
|
begin_pos = strstr(end_pos, "sha256//");
|
|
|
|
}
|
|
|
|
} while(end_pos && begin_pos);
|
2015-09-12 17:35:12 -04:00
|
|
|
Curl_safefree(encoded);
|
2015-06-30 20:23:54 -04:00
|
|
|
Curl_safefree(pinkeycopy);
|
2015-10-20 02:12:44 -04:00
|
|
|
#else
|
2016-05-01 11:05:38 -04:00
|
|
|
/* without sha256 support, this cannot match */
|
|
|
|
(void)data;
|
2015-06-30 20:23:54 -04:00
|
|
|
#endif
|
2016-05-01 11:05:38 -04:00
|
|
|
return result;
|
|
|
|
}
|
2015-06-30 20:23:54 -04:00
|
|
|
|
2014-10-13 12:34:51 -04:00
|
|
|
fp = fopen(pinnedpubkey, "rb");
|
|
|
|
if(!fp)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
do {
|
|
|
|
/* Determine the file's size */
|
|
|
|
if(fseek(fp, 0, SEEK_END))
|
|
|
|
break;
|
2014-11-24 13:30:09 -05:00
|
|
|
filesize = ftell(fp);
|
2014-10-13 12:34:51 -04:00
|
|
|
if(fseek(fp, 0, SEEK_SET))
|
|
|
|
break;
|
2014-11-24 13:30:09 -05:00
|
|
|
if(filesize < 0 || filesize > MAX_PINNED_PUBKEY_SIZE)
|
|
|
|
break;
|
2014-10-13 12:34:51 -04:00
|
|
|
|
|
|
|
/*
|
2014-11-24 13:30:09 -05:00
|
|
|
* if the size of our certificate is bigger than the file
|
|
|
|
* size then it can't match
|
2014-10-13 12:34:51 -04:00
|
|
|
*/
|
2014-11-24 13:30:09 -05:00
|
|
|
size = curlx_sotouz((curl_off_t) filesize);
|
|
|
|
if(pubkeylen > size)
|
2014-10-13 12:34:51 -04:00
|
|
|
break;
|
|
|
|
|
2014-11-24 13:30:09 -05:00
|
|
|
/*
|
|
|
|
* Allocate buffer for the pinned key
|
|
|
|
* With 1 additional byte for null terminator in case of PEM key
|
|
|
|
*/
|
|
|
|
buf = malloc(size + 1);
|
2014-10-13 12:34:51 -04:00
|
|
|
if(!buf)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Returns number of elements read, which should be 1 */
|
2014-11-24 13:30:09 -05:00
|
|
|
if((int) fread(buf, size, 1, fp) != 1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* If the sizes are the same, it can't be base64 encoded, must be der */
|
|
|
|
if(pubkeylen == size) {
|
|
|
|
if(!memcmp(pubkey, buf, pubkeylen))
|
|
|
|
result = CURLE_OK;
|
2014-10-13 12:34:51 -04:00
|
|
|
break;
|
2014-11-24 13:30:09 -05:00
|
|
|
}
|
2014-10-13 12:34:51 -04:00
|
|
|
|
2014-11-24 13:30:09 -05:00
|
|
|
/*
|
|
|
|
* Otherwise we will assume it's PEM and try to decode it
|
|
|
|
* after placing null terminator
|
|
|
|
*/
|
|
|
|
buf[size] = '\0';
|
|
|
|
pem_read = pubkey_pem_to_der((const char *)buf, &pem_ptr, &pem_len);
|
|
|
|
/* if it wasn't read successfully, exit */
|
|
|
|
if(pem_read)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if the size of our certificate doesn't match the size of
|
|
|
|
* the decoded file, they can't be the same, otherwise compare
|
|
|
|
*/
|
|
|
|
if(pubkeylen == pem_len && !memcmp(pubkey, pem_ptr, pubkeylen))
|
2014-10-13 12:34:51 -04:00
|
|
|
result = CURLE_OK;
|
|
|
|
} while(0);
|
|
|
|
|
|
|
|
Curl_safefree(buf);
|
2014-11-24 13:30:09 -05:00
|
|
|
Curl_safefree(pem_ptr);
|
2014-10-13 12:34:51 -04:00
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-03-24 16:41:22 -04:00
|
|
|
#ifndef CURL_DISABLE_CRYPTO_AUTH
|
2015-03-25 03:32:12 -04:00
|
|
|
CURLcode Curl_ssl_md5sum(unsigned char *tmp, /* input */
|
|
|
|
size_t tmplen,
|
|
|
|
unsigned char *md5sum, /* output */
|
|
|
|
size_t md5len)
|
2012-06-26 08:52:46 -04:00
|
|
|
{
|
2014-10-13 08:39:50 -04:00
|
|
|
#ifdef curlssl_md5sum
|
2012-06-26 08:52:46 -04:00
|
|
|
curlssl_md5sum(tmp, tmplen, md5sum, md5len);
|
2014-10-13 08:39:50 -04:00
|
|
|
#else
|
|
|
|
MD5_context *MD5pw;
|
|
|
|
|
|
|
|
(void) md5len;
|
2014-10-29 15:12:50 -04:00
|
|
|
|
2014-10-13 08:39:50 -04:00
|
|
|
MD5pw = Curl_MD5_init(Curl_DIGEST_MD5);
|
2015-03-25 03:32:12 -04:00
|
|
|
if(!MD5pw)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2014-10-29 15:12:50 -04:00
|
|
|
Curl_MD5_update(MD5pw, tmp, curlx_uztoui(tmplen));
|
2014-10-13 08:39:50 -04:00
|
|
|
Curl_MD5_final(MD5pw, md5sum);
|
2013-06-24 16:24:35 -04:00
|
|
|
#endif
|
2015-03-25 03:32:12 -04:00
|
|
|
return CURLE_OK;
|
2014-10-13 08:39:50 -04:00
|
|
|
}
|
2015-03-24 16:41:22 -04:00
|
|
|
#endif
|
2012-06-27 17:15:56 -04:00
|
|
|
|
2014-06-16 07:20:47 -04:00
|
|
|
/*
|
|
|
|
* Check whether the SSL backend supports the status_request extension.
|
|
|
|
*/
|
|
|
|
bool Curl_ssl_cert_status_request(void)
|
|
|
|
{
|
|
|
|
#ifdef curlssl_cert_status_request
|
|
|
|
return curlssl_cert_status_request();
|
|
|
|
#else
|
|
|
|
return FALSE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-02-14 10:57:07 -05:00
|
|
|
/*
|
|
|
|
* Check whether the SSL backend supports false start.
|
|
|
|
*/
|
|
|
|
bool Curl_ssl_false_start(void)
|
|
|
|
{
|
|
|
|
#ifdef curlssl_false_start
|
|
|
|
return curlssl_false_start();
|
|
|
|
#else
|
|
|
|
return FALSE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-09-05 14:35:29 -04:00
|
|
|
#endif /* USE_SSL */
|