mirror of
https://github.com/moparisthebest/curl
synced 2024-11-05 09:05:04 -05:00
cb4e2be7c6
* HTTPS proxies: An HTTPS proxy receives all transactions over an SSL/TLS connection. Once a secure connection with the proxy is established, the user agent uses the proxy as usual, including sending CONNECT requests to instruct the proxy to establish a [usually secure] TCP tunnel with an origin server. HTTPS proxies protect nearly all aspects of user-proxy communications as opposed to HTTP proxies that receive all requests (including CONNECT requests) in vulnerable clear text. With HTTPS proxies, it is possible to have two concurrent _nested_ SSL/TLS sessions: the "outer" one between the user agent and the proxy and the "inner" one between the user agent and the origin server (through the proxy). This change adds supports for such nested sessions as well. A secure connection with a proxy requires its own set of the usual SSL options (their actual descriptions differ and need polishing, see TODO): --proxy-cacert FILE CA certificate to verify peer against --proxy-capath DIR CA directory to verify peer against --proxy-cert CERT[:PASSWD] Client certificate file and password --proxy-cert-type TYPE Certificate file type (DER/PEM/ENG) --proxy-ciphers LIST SSL ciphers to use --proxy-crlfile FILE Get a CRL list in PEM format from the file --proxy-insecure Allow connections to proxies with bad certs --proxy-key KEY Private key file name --proxy-key-type TYPE Private key file type (DER/PEM/ENG) --proxy-pass PASS Pass phrase for the private key --proxy-ssl-allow-beast Allow security flaw to improve interop --proxy-sslv2 Use SSLv2 --proxy-sslv3 Use SSLv3 --proxy-tlsv1 Use TLSv1 --proxy-tlsuser USER TLS username --proxy-tlspassword STRING TLS password --proxy-tlsauthtype STRING TLS authentication type (default SRP) All --proxy-foo options are independent from their --foo counterparts, except --proxy-crlfile which defaults to --crlfile and --proxy-capath which defaults to --capath. Curl now also supports %{proxy_ssl_verify_result} --write-out variable, similar to the existing %{ssl_verify_result} variable. Supported backends: OpenSSL, GnuTLS, and NSS. * A SOCKS proxy + HTTP/HTTPS proxy combination: If both --socks* and --proxy options are given, Curl first connects to the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy. TODO: Update documentation for the new APIs and --proxy-* options. Look for "Added in 7.XXX" marks.
929 lines
28 KiB
C
929 lines
28 KiB
C
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* 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 https://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.
|
|
*
|
|
***************************************************************************/
|
|
|
|
/*
|
|
* Source file for all CyaSSL-specific code for the TLS/SSL layer. No code
|
|
* but vtls.c should ever call or use these functions.
|
|
*
|
|
*/
|
|
|
|
#include "curl_setup.h"
|
|
|
|
#ifdef USE_CYASSL
|
|
|
|
#define WOLFSSL_OPTIONS_IGNORE_SYS
|
|
/* CyaSSL's version.h, which should contain only the version, should come
|
|
before all other CyaSSL includes and be immediately followed by build config
|
|
aka options.h. https://curl.haxx.se/mail/lib-2015-04/0069.html */
|
|
#include <cyassl/version.h>
|
|
#if defined(HAVE_CYASSL_OPTIONS_H) && (LIBCYASSL_VERSION_HEX > 0x03004008)
|
|
#if defined(CYASSL_API) || defined(WOLFSSL_API)
|
|
/* Safety measure. If either is defined some API include was already included
|
|
and that's a problem since options.h hasn't been included yet. */
|
|
#error "CyaSSL API was included before the CyaSSL build options."
|
|
#endif
|
|
#include <cyassl/options.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_LIMITS_H
|
|
#include <limits.h>
|
|
#endif
|
|
|
|
#include "urldata.h"
|
|
#include "sendf.h"
|
|
#include "inet_pton.h"
|
|
#include "vtls.h"
|
|
#include "parsedate.h"
|
|
#include "connect.h" /* for the connect timeout */
|
|
#include "select.h"
|
|
#include "strcase.h"
|
|
#include "x509asn1.h"
|
|
#include "curl_printf.h"
|
|
|
|
#include <cyassl/ssl.h>
|
|
#ifdef HAVE_CYASSL_ERROR_SSL_H
|
|
#include <cyassl/error-ssl.h>
|
|
#else
|
|
#include <cyassl/error.h>
|
|
#endif
|
|
#include <cyassl/ctaocrypt/random.h>
|
|
#include <cyassl/ctaocrypt/sha256.h>
|
|
|
|
#include "cyassl.h"
|
|
|
|
/* The last #include files should be: */
|
|
#include "curl_memory.h"
|
|
#include "memdebug.h"
|
|
|
|
#if LIBCYASSL_VERSION_HEX < 0x02007002 /* < 2.7.2 */
|
|
#define CYASSL_MAX_ERROR_SZ 80
|
|
#endif
|
|
|
|
/* To determine what functions are available we rely on one or both of:
|
|
- the user's options.h generated by CyaSSL/wolfSSL
|
|
- the symbols detected by curl's configure
|
|
Since they are markedly different from one another, and one or the other may
|
|
not be available, we do some checking below to bring things in sync. */
|
|
|
|
/* HAVE_ALPN is wolfSSL's build time symbol for enabling ALPN in options.h. */
|
|
#ifndef HAVE_ALPN
|
|
#ifdef HAVE_WOLFSSL_USEALPN
|
|
#define HAVE_ALPN
|
|
#endif
|
|
#endif
|
|
|
|
/* WOLFSSL_ALLOW_SSLV3 is wolfSSL's build time symbol for enabling SSLv3 in
|
|
options.h, but is only seen in >= 3.6.6 since that's when they started
|
|
disabling SSLv3 by default. */
|
|
#ifndef WOLFSSL_ALLOW_SSLV3
|
|
#if (LIBCYASSL_VERSION_HEX < 0x03006006) || \
|
|
defined(HAVE_WOLFSSLV3_CLIENT_METHOD)
|
|
#define WOLFSSL_ALLOW_SSLV3
|
|
#endif
|
|
#endif
|
|
|
|
/* HAVE_SUPPORTED_CURVES is wolfSSL's build time symbol for enabling the ECC
|
|
supported curve extension in options.h. Note ECC is enabled separately. */
|
|
#ifndef HAVE_SUPPORTED_CURVES
|
|
#if defined(HAVE_CYASSL_CTX_USESUPPORTEDCURVE) || \
|
|
defined(HAVE_WOLFSSL_CTX_USESUPPORTEDCURVE)
|
|
#define HAVE_SUPPORTED_CURVES
|
|
#endif
|
|
#endif
|
|
|
|
static Curl_recv cyassl_recv;
|
|
static Curl_send cyassl_send;
|
|
|
|
|
|
static int do_file_type(const char *type)
|
|
{
|
|
if(!type || !type[0])
|
|
return SSL_FILETYPE_PEM;
|
|
if(strcasecompare(type, "PEM"))
|
|
return SSL_FILETYPE_PEM;
|
|
if(strcasecompare(type, "DER"))
|
|
return SSL_FILETYPE_ASN1;
|
|
return -1;
|
|
}
|
|
|
|
/*
|
|
* This function loads all the client/CA certificates and CRLs. Setup the TLS
|
|
* layer and do all necessary magic.
|
|
*/
|
|
static CURLcode
|
|
cyassl_connect_step1(struct connectdata *conn,
|
|
int sockindex)
|
|
{
|
|
char error_buffer[CYASSL_MAX_ERROR_SZ];
|
|
struct Curl_easy *data = conn->data;
|
|
struct ssl_connect_data* conssl = &conn->ssl[sockindex];
|
|
SSL_METHOD* req_method = NULL;
|
|
curl_socket_t sockfd = conn->sock[sockindex];
|
|
#ifdef HAVE_SNI
|
|
bool sni = FALSE;
|
|
#define use_sni(x) sni = (x)
|
|
#else
|
|
#define use_sni(x) Curl_nop_stmt
|
|
#endif
|
|
|
|
if(conssl->state == ssl_connection_complete)
|
|
return CURLE_OK;
|
|
|
|
/* check to see if we've been told to use an explicit SSL/TLS version */
|
|
switch(SSL_CONN_CONFIG(version)) {
|
|
case CURL_SSLVERSION_DEFAULT:
|
|
case CURL_SSLVERSION_TLSv1:
|
|
#if LIBCYASSL_VERSION_HEX >= 0x03003000 /* >= 3.3.0 */
|
|
/* minimum protocol version is set later after the CTX object is created */
|
|
req_method = SSLv23_client_method();
|
|
#else
|
|
infof(data, "CyaSSL <3.3.0 cannot be configured to use TLS 1.0-1.2, "
|
|
"TLS 1.0 is used exclusively\n");
|
|
req_method = TLSv1_client_method();
|
|
#endif
|
|
use_sni(TRUE);
|
|
break;
|
|
case CURL_SSLVERSION_TLSv1_0:
|
|
req_method = TLSv1_client_method();
|
|
use_sni(TRUE);
|
|
break;
|
|
case CURL_SSLVERSION_TLSv1_1:
|
|
req_method = TLSv1_1_client_method();
|
|
use_sni(TRUE);
|
|
break;
|
|
case CURL_SSLVERSION_TLSv1_2:
|
|
req_method = TLSv1_2_client_method();
|
|
use_sni(TRUE);
|
|
break;
|
|
case CURL_SSLVERSION_TLSv1_3:
|
|
failf(data, "CyaSSL: TLS 1.3 is not yet supported");
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
case CURL_SSLVERSION_SSLv3:
|
|
#ifdef WOLFSSL_ALLOW_SSLV3
|
|
req_method = SSLv3_client_method();
|
|
use_sni(FALSE);
|
|
#else
|
|
failf(data, "CyaSSL does not support SSLv3");
|
|
return CURLE_NOT_BUILT_IN;
|
|
#endif
|
|
break;
|
|
case CURL_SSLVERSION_SSLv2:
|
|
failf(data, "CyaSSL does not support SSLv2");
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
default:
|
|
failf(data, "Unrecognized parameter passed via CURLOPT_SSLVERSION");
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
}
|
|
|
|
if(!req_method) {
|
|
failf(data, "SSL: couldn't create a method!");
|
|
return CURLE_OUT_OF_MEMORY;
|
|
}
|
|
|
|
if(conssl->ctx)
|
|
SSL_CTX_free(conssl->ctx);
|
|
conssl->ctx = SSL_CTX_new(req_method);
|
|
|
|
if(!conssl->ctx) {
|
|
failf(data, "SSL: couldn't create a context!");
|
|
return CURLE_OUT_OF_MEMORY;
|
|
}
|
|
|
|
switch(SSL_CONN_CONFIG(version)) {
|
|
case CURL_SSLVERSION_DEFAULT:
|
|
case CURL_SSLVERSION_TLSv1:
|
|
#if LIBCYASSL_VERSION_HEX > 0x03004006 /* > 3.4.6 */
|
|
/* Versions 3.3.0 to 3.4.6 we know the minimum protocol version is whatever
|
|
minimum version of TLS was built in and at least TLS 1.0. For later library
|
|
versions that could change (eg TLS 1.0 built in but defaults to TLS 1.1) so
|
|
we have this short circuit evaluation to find the minimum supported TLS
|
|
version. We use wolfSSL_CTX_SetMinVersion and not CyaSSL_SetMinVersion
|
|
because only the former will work before the user's CTX callback is called.
|
|
*/
|
|
if((wolfSSL_CTX_SetMinVersion(conssl->ctx, WOLFSSL_TLSV1) != 1) &&
|
|
(wolfSSL_CTX_SetMinVersion(conssl->ctx, WOLFSSL_TLSV1_1) != 1) &&
|
|
(wolfSSL_CTX_SetMinVersion(conssl->ctx, WOLFSSL_TLSV1_2) != 1)) {
|
|
failf(data, "SSL: couldn't set the minimum protocol version");
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
}
|
|
#endif
|
|
break;
|
|
}
|
|
|
|
#ifndef NO_FILESYSTEM
|
|
/* load trusted cacert */
|
|
if(SSL_CONN_CONFIG(CAfile)) {
|
|
if(1 != SSL_CTX_load_verify_locations(conssl->ctx,
|
|
SSL_CONN_CONFIG(CAfile),
|
|
SSL_CONN_CONFIG(CApath))) {
|
|
if(SSL_CONN_CONFIG(verifypeer)) {
|
|
/* Fail if we insist on successfully verifying the server. */
|
|
failf(data, "error setting certificate verify locations:\n"
|
|
" CAfile: %s\n CApath: %s",
|
|
SSL_CONN_CONFIG(CAfile)?
|
|
SSL_CONN_CONFIG(CAfile): "none",
|
|
SSL_CONN_CONFIG(CApath)?
|
|
SSL_CONN_CONFIG(CApath) : "none");
|
|
return CURLE_SSL_CACERT_BADFILE;
|
|
}
|
|
else {
|
|
/* Just continue with a warning if no strict certificate
|
|
verification is required. */
|
|
infof(data, "error setting certificate verify locations,"
|
|
" continuing anyway:\n");
|
|
}
|
|
}
|
|
else {
|
|
/* Everything is fine. */
|
|
infof(data, "successfully set certificate verify locations:\n");
|
|
}
|
|
infof(data,
|
|
" CAfile: %s\n"
|
|
" CApath: %s\n",
|
|
SSL_CONN_CONFIG(CAfile) ? SSL_CONN_CONFIG(CAfile):
|
|
"none",
|
|
SSL_CONN_CONFIG(CApath) ? SSL_CONN_CONFIG(CApath):
|
|
"none");
|
|
}
|
|
|
|
/* Load the client certificate, and private key */
|
|
if(SSL_SET_OPTION(cert) && SSL_SET_OPTION(key)) {
|
|
int file_type = do_file_type(SSL_SET_OPTION(cert_type));
|
|
|
|
if(SSL_CTX_use_certificate_file(conssl->ctx, SSL_SET_OPTION(cert),
|
|
file_type) != 1) {
|
|
failf(data, "unable to use client certificate (no key or wrong pass"
|
|
" phrase?)");
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
}
|
|
|
|
file_type = do_file_type(SSL_SET_OPTION(key_type));
|
|
if(SSL_CTX_use_PrivateKey_file(conssl->ctx, SSL_SET_OPTION(key),
|
|
file_type) != 1) {
|
|
failf(data, "unable to set private key");
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
}
|
|
}
|
|
#endif /* !NO_FILESYSTEM */
|
|
|
|
/* SSL always tries to verify the peer, this only says whether it should
|
|
* fail to connect if the verification fails, or if it should continue
|
|
* anyway. In the latter case the result of the verification is checked with
|
|
* SSL_get_verify_result() below. */
|
|
SSL_CTX_set_verify(conssl->ctx,
|
|
SSL_CONN_CONFIG(verifypeer)?SSL_VERIFY_PEER:
|
|
SSL_VERIFY_NONE,
|
|
NULL);
|
|
|
|
#ifdef HAVE_SNI
|
|
if(sni) {
|
|
struct in_addr addr4;
|
|
#ifdef ENABLE_IPV6
|
|
struct in6_addr addr6;
|
|
#endif
|
|
const char * const hostname = SSL_IS_PROXY() ? conn->http_proxy.host.name :
|
|
conn->host.name;
|
|
size_t hostname_len = strlen(hostname);
|
|
if((hostname_len < USHRT_MAX) &&
|
|
(0 == Curl_inet_pton(AF_INET, hostname, &addr4)) &&
|
|
#ifdef ENABLE_IPV6
|
|
(0 == Curl_inet_pton(AF_INET6, hostname, &addr6)) &&
|
|
#endif
|
|
(CyaSSL_CTX_UseSNI(conssl->ctx, CYASSL_SNI_HOST_NAME, hostname,
|
|
(unsigned short)hostname_len) != 1)) {
|
|
infof(data, "WARNING: failed to configure server name indication (SNI) "
|
|
"TLS extension\n");
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#ifdef HAVE_SUPPORTED_CURVES
|
|
/* CyaSSL/wolfSSL does not send the supported ECC curves ext automatically:
|
|
https://github.com/wolfSSL/wolfssl/issues/366
|
|
The supported curves below are those also supported by OpenSSL 1.0.2 and
|
|
in the same order. */
|
|
CyaSSL_CTX_UseSupportedCurve(conssl->ctx, 0x17); /* secp256r1 */
|
|
CyaSSL_CTX_UseSupportedCurve(conssl->ctx, 0x19); /* secp521r1 */
|
|
CyaSSL_CTX_UseSupportedCurve(conssl->ctx, 0x18); /* secp384r1 */
|
|
#endif
|
|
|
|
/* give application a chance to interfere with SSL set up. */
|
|
if(data->set.ssl.fsslctx) {
|
|
CURLcode result = CURLE_OK;
|
|
result = (*data->set.ssl.fsslctx)(data, conssl->ctx,
|
|
data->set.ssl.fsslctxp);
|
|
if(result) {
|
|
failf(data, "error signaled by ssl ctx callback");
|
|
return result;
|
|
}
|
|
}
|
|
#ifdef NO_FILESYSTEM
|
|
else if(SSL_CONN_CONFIG(verifypeer)) {
|
|
failf(data, "SSL: Certificates couldn't be loaded because CyaSSL was built"
|
|
" with \"no filesystem\". Either disable peer verification"
|
|
" (insecure) or if you are building an application with libcurl you"
|
|
" can load certificates via CURLOPT_SSL_CTX_FUNCTION.");
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
}
|
|
#endif
|
|
|
|
/* Let's make an SSL structure */
|
|
if(conssl->handle)
|
|
SSL_free(conssl->handle);
|
|
conssl->handle = SSL_new(conssl->ctx);
|
|
if(!conssl->handle) {
|
|
failf(data, "SSL: couldn't create a context (handle)!");
|
|
return CURLE_OUT_OF_MEMORY;
|
|
}
|
|
|
|
#ifdef HAVE_ALPN
|
|
if(conn->bits.tls_enable_alpn) {
|
|
char protocols[128];
|
|
*protocols = '\0';
|
|
|
|
/* wolfSSL's ALPN protocol name list format is a comma separated string of
|
|
protocols in descending order of preference, eg: "h2,http/1.1" */
|
|
|
|
#ifdef USE_NGHTTP2
|
|
if(data->set.httpversion >= CURL_HTTP_VERSION_2) {
|
|
strcpy(protocols + strlen(protocols), NGHTTP2_PROTO_VERSION_ID ",");
|
|
infof(data, "ALPN, offering %s\n", NGHTTP2_PROTO_VERSION_ID);
|
|
}
|
|
#endif
|
|
|
|
strcpy(protocols + strlen(protocols), ALPN_HTTP_1_1);
|
|
infof(data, "ALPN, offering %s\n", ALPN_HTTP_1_1);
|
|
|
|
if(wolfSSL_UseALPN(conssl->handle, protocols,
|
|
(unsigned)strlen(protocols),
|
|
WOLFSSL_ALPN_CONTINUE_ON_MISMATCH) != SSL_SUCCESS) {
|
|
failf(data, "SSL: failed setting ALPN protocols");
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
}
|
|
}
|
|
#endif /* HAVE_ALPN */
|
|
|
|
/* Check if there's a cached ID we can/should use here! */
|
|
if(data->set.general_ssl.sessionid) {
|
|
void *ssl_sessionid = NULL;
|
|
|
|
Curl_ssl_sessionid_lock(conn);
|
|
if(!Curl_ssl_getsessionid(conn, &ssl_sessionid, NULL, sockindex)) {
|
|
/* we got a session id, use it! */
|
|
if(!SSL_set_session(conssl->handle, ssl_sessionid)) {
|
|
Curl_ssl_sessionid_unlock(conn);
|
|
failf(data, "SSL: SSL_set_session failed: %s",
|
|
ERR_error_string(SSL_get_error(conssl->handle, 0),
|
|
error_buffer));
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
}
|
|
/* Informational message */
|
|
infof (data, "SSL re-using session ID\n");
|
|
}
|
|
Curl_ssl_sessionid_unlock(conn);
|
|
}
|
|
|
|
/* pass the raw socket into the SSL layer */
|
|
if(!SSL_set_fd(conssl->handle, (int)sockfd)) {
|
|
failf(data, "SSL: SSL_set_fd failed");
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
}
|
|
|
|
conssl->connecting_state = ssl_connect_2;
|
|
return CURLE_OK;
|
|
}
|
|
|
|
|
|
static CURLcode
|
|
cyassl_connect_step2(struct connectdata *conn,
|
|
int sockindex)
|
|
{
|
|
int ret = -1;
|
|
struct Curl_easy *data = conn->data;
|
|
struct ssl_connect_data* conssl = &conn->ssl[sockindex];
|
|
const char * const hostname = SSL_IS_PROXY() ? conn->http_proxy.host.name :
|
|
conn->host.name;
|
|
const char * const dispname = SSL_IS_PROXY() ?
|
|
conn->http_proxy.host.dispname : conn->host.dispname;
|
|
|
|
conn->recv[sockindex] = cyassl_recv;
|
|
conn->send[sockindex] = cyassl_send;
|
|
|
|
/* Enable RFC2818 checks */
|
|
if(SSL_CONN_CONFIG(verifyhost)) {
|
|
ret = CyaSSL_check_domain_name(conssl->handle, hostname);
|
|
if(ret == SSL_FAILURE)
|
|
return CURLE_OUT_OF_MEMORY;
|
|
}
|
|
|
|
ret = SSL_connect(conssl->handle);
|
|
if(ret != 1) {
|
|
char error_buffer[CYASSL_MAX_ERROR_SZ];
|
|
int detail = SSL_get_error(conssl->handle, ret);
|
|
|
|
if(SSL_ERROR_WANT_READ == detail) {
|
|
conssl->connecting_state = ssl_connect_2_reading;
|
|
return CURLE_OK;
|
|
}
|
|
else if(SSL_ERROR_WANT_WRITE == detail) {
|
|
conssl->connecting_state = ssl_connect_2_writing;
|
|
return CURLE_OK;
|
|
}
|
|
/* There is no easy way to override only the CN matching.
|
|
* This will enable the override of both mismatching SubjectAltNames
|
|
* as also mismatching CN fields */
|
|
else if(DOMAIN_NAME_MISMATCH == detail) {
|
|
#if 1
|
|
failf(data, "\tsubject alt name(s) or common name do not match \"%s\"\n",
|
|
dispname);
|
|
return CURLE_PEER_FAILED_VERIFICATION;
|
|
#else
|
|
/* When the CyaSSL_check_domain_name() is used and you desire to continue
|
|
* on a DOMAIN_NAME_MISMATCH, i.e. 'conn->ssl_config.verifyhost == 0',
|
|
* CyaSSL version 2.4.0 will fail with an INCOMPLETE_DATA error. The only
|
|
* way to do this is currently to switch the CyaSSL_check_domain_name()
|
|
* in and out based on the 'conn->ssl_config.verifyhost' value. */
|
|
if(SSL_CONN_CONFIG(verifyhost)) {
|
|
failf(data,
|
|
"\tsubject alt name(s) or common name do not match \"%s\"\n",
|
|
dispname);
|
|
return CURLE_PEER_FAILED_VERIFICATION;
|
|
}
|
|
else {
|
|
infof(data,
|
|
"\tsubject alt name(s) and/or common name do not match \"%s\"\n",
|
|
dispname);
|
|
return CURLE_OK;
|
|
}
|
|
#endif
|
|
}
|
|
#if LIBCYASSL_VERSION_HEX >= 0x02007000 /* 2.7.0 */
|
|
else if(ASN_NO_SIGNER_E == detail) {
|
|
if(SSL_CONN_CONFIG(verifypeer)) {
|
|
failf(data, "\tCA signer not available for verification\n");
|
|
return CURLE_SSL_CACERT_BADFILE;
|
|
}
|
|
else {
|
|
/* Just continue with a warning if no strict certificate
|
|
verification is required. */
|
|
infof(data, "CA signer not available for verification, "
|
|
"continuing anyway\n");
|
|
}
|
|
}
|
|
#endif
|
|
else {
|
|
failf(data, "SSL_connect failed with error %d: %s", detail,
|
|
ERR_error_string(detail, error_buffer));
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
}
|
|
}
|
|
|
|
if(data->set.str[STRING_SSL_PINNEDPUBLICKEY]) {
|
|
#ifdef KEEP_PEER_CERT
|
|
X509 *x509;
|
|
const char *x509_der;
|
|
int x509_der_len;
|
|
curl_X509certificate x509_parsed;
|
|
curl_asn1Element *pubkey;
|
|
CURLcode result;
|
|
|
|
x509 = SSL_get_peer_certificate(conssl->handle);
|
|
if(!x509) {
|
|
failf(data, "SSL: failed retrieving server certificate");
|
|
return CURLE_SSL_PINNEDPUBKEYNOTMATCH;
|
|
}
|
|
|
|
x509_der = (const char *)CyaSSL_X509_get_der(x509, &x509_der_len);
|
|
if(!x509_der) {
|
|
failf(data, "SSL: failed retrieving ASN.1 server certificate");
|
|
return CURLE_SSL_PINNEDPUBKEYNOTMATCH;
|
|
}
|
|
|
|
memset(&x509_parsed, 0, sizeof x509_parsed);
|
|
if(Curl_parseX509(&x509_parsed, x509_der, x509_der + x509_der_len))
|
|
return CURLE_SSL_PINNEDPUBKEYNOTMATCH;
|
|
|
|
pubkey = &x509_parsed.subjectPublicKeyInfo;
|
|
if(!pubkey->header || pubkey->end <= pubkey->header) {
|
|
failf(data, "SSL: failed retrieving public key from server certificate");
|
|
return CURLE_SSL_PINNEDPUBKEYNOTMATCH;
|
|
}
|
|
|
|
result = Curl_pin_peer_pubkey(data,
|
|
data->set.str[STRING_SSL_PINNEDPUBLICKEY],
|
|
(const unsigned char *)pubkey->header,
|
|
(size_t)(pubkey->end - pubkey->header));
|
|
if(result) {
|
|
failf(data, "SSL: public key does not match pinned public key!");
|
|
return result;
|
|
}
|
|
#else
|
|
failf(data, "Library lacks pinning support built-in");
|
|
return CURLE_NOT_BUILT_IN;
|
|
#endif
|
|
}
|
|
|
|
#ifdef HAVE_ALPN
|
|
if(conn->bits.tls_enable_alpn) {
|
|
int rc;
|
|
char *protocol = NULL;
|
|
unsigned short protocol_len = 0;
|
|
|
|
rc = wolfSSL_ALPN_GetProtocol(conssl->handle, &protocol, &protocol_len);
|
|
|
|
if(rc == SSL_SUCCESS) {
|
|
infof(data, "ALPN, server accepted to use %.*s\n", protocol_len,
|
|
protocol);
|
|
|
|
if(protocol_len == ALPN_HTTP_1_1_LENGTH &&
|
|
!memcmp(protocol, ALPN_HTTP_1_1, ALPN_HTTP_1_1_LENGTH))
|
|
conn->negnpn = CURL_HTTP_VERSION_1_1;
|
|
#ifdef USE_NGHTTP2
|
|
else if(data->set.httpversion >= CURL_HTTP_VERSION_2 &&
|
|
protocol_len == NGHTTP2_PROTO_VERSION_ID_LEN &&
|
|
!memcmp(protocol, NGHTTP2_PROTO_VERSION_ID,
|
|
NGHTTP2_PROTO_VERSION_ID_LEN))
|
|
conn->negnpn = CURL_HTTP_VERSION_2;
|
|
#endif
|
|
else
|
|
infof(data, "ALPN, unrecognized protocol %.*s\n", protocol_len,
|
|
protocol);
|
|
}
|
|
else if(rc == SSL_ALPN_NOT_FOUND)
|
|
infof(data, "ALPN, server did not agree to a protocol\n");
|
|
else {
|
|
failf(data, "ALPN, failure getting protocol, error %d", rc);
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
}
|
|
}
|
|
#endif /* HAVE_ALPN */
|
|
|
|
conssl->connecting_state = ssl_connect_3;
|
|
infof(data, "SSL connected\n");
|
|
|
|
return CURLE_OK;
|
|
}
|
|
|
|
|
|
static CURLcode
|
|
cyassl_connect_step3(struct connectdata *conn,
|
|
int sockindex)
|
|
{
|
|
CURLcode result = CURLE_OK;
|
|
struct Curl_easy *data = conn->data;
|
|
struct ssl_connect_data *connssl = &conn->ssl[sockindex];
|
|
|
|
DEBUGASSERT(ssl_connect_3 == connssl->connecting_state);
|
|
|
|
if(data->set.general_ssl.sessionid) {
|
|
bool incache;
|
|
SSL_SESSION *our_ssl_sessionid;
|
|
void *old_ssl_sessionid = NULL;
|
|
|
|
our_ssl_sessionid = SSL_get_session(connssl->handle);
|
|
|
|
Curl_ssl_sessionid_lock(conn);
|
|
incache = !(Curl_ssl_getsessionid(conn, &old_ssl_sessionid, NULL,
|
|
sockindex));
|
|
if(incache) {
|
|
if(old_ssl_sessionid != our_ssl_sessionid) {
|
|
infof(data, "old SSL session ID is stale, removing\n");
|
|
Curl_ssl_delsessionid(conn, old_ssl_sessionid);
|
|
incache = FALSE;
|
|
}
|
|
}
|
|
|
|
if(!incache) {
|
|
result = Curl_ssl_addsessionid(conn, our_ssl_sessionid,
|
|
0 /* unknown size */, sockindex);
|
|
if(result) {
|
|
Curl_ssl_sessionid_unlock(conn);
|
|
failf(data, "failed to store ssl session");
|
|
return result;
|
|
}
|
|
}
|
|
Curl_ssl_sessionid_unlock(conn);
|
|
}
|
|
|
|
connssl->connecting_state = ssl_connect_done;
|
|
|
|
return result;
|
|
}
|
|
|
|
|
|
static ssize_t cyassl_send(struct connectdata *conn,
|
|
int sockindex,
|
|
const void *mem,
|
|
size_t len,
|
|
CURLcode *curlcode)
|
|
{
|
|
char error_buffer[CYASSL_MAX_ERROR_SZ];
|
|
int memlen = (len > (size_t)INT_MAX) ? INT_MAX : (int)len;
|
|
int rc = SSL_write(conn->ssl[sockindex].handle, mem, memlen);
|
|
|
|
if(rc < 0) {
|
|
int err = SSL_get_error(conn->ssl[sockindex].handle, rc);
|
|
|
|
switch(err) {
|
|
case SSL_ERROR_WANT_READ:
|
|
case SSL_ERROR_WANT_WRITE:
|
|
/* there's data pending, re-invoke SSL_write() */
|
|
*curlcode = CURLE_AGAIN;
|
|
return -1;
|
|
default:
|
|
failf(conn->data, "SSL write: %s, errno %d",
|
|
ERR_error_string(err, error_buffer),
|
|
SOCKERRNO);
|
|
*curlcode = CURLE_SEND_ERROR;
|
|
return -1;
|
|
}
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
void Curl_cyassl_close(struct connectdata *conn, int sockindex)
|
|
{
|
|
struct ssl_connect_data *conssl = &conn->ssl[sockindex];
|
|
|
|
if(conssl->handle) {
|
|
(void)SSL_shutdown(conssl->handle);
|
|
SSL_free (conssl->handle);
|
|
conssl->handle = NULL;
|
|
}
|
|
if(conssl->ctx) {
|
|
SSL_CTX_free (conssl->ctx);
|
|
conssl->ctx = NULL;
|
|
}
|
|
}
|
|
|
|
static ssize_t cyassl_recv(struct connectdata *conn,
|
|
int num,
|
|
char *buf,
|
|
size_t buffersize,
|
|
CURLcode *curlcode)
|
|
{
|
|
char error_buffer[CYASSL_MAX_ERROR_SZ];
|
|
int buffsize = (buffersize > (size_t)INT_MAX) ? INT_MAX : (int)buffersize;
|
|
int nread = SSL_read(conn->ssl[num].handle, buf, buffsize);
|
|
|
|
if(nread < 0) {
|
|
int err = SSL_get_error(conn->ssl[num].handle, nread);
|
|
|
|
switch(err) {
|
|
case SSL_ERROR_ZERO_RETURN: /* no more data */
|
|
break;
|
|
case SSL_ERROR_WANT_READ:
|
|
case SSL_ERROR_WANT_WRITE:
|
|
/* there's data pending, re-invoke SSL_read() */
|
|
*curlcode = CURLE_AGAIN;
|
|
return -1;
|
|
default:
|
|
failf(conn->data, "SSL read: %s, errno %d",
|
|
ERR_error_string(err, error_buffer),
|
|
SOCKERRNO);
|
|
*curlcode = CURLE_RECV_ERROR;
|
|
return -1;
|
|
}
|
|
}
|
|
return nread;
|
|
}
|
|
|
|
|
|
void Curl_cyassl_session_free(void *ptr)
|
|
{
|
|
(void)ptr;
|
|
/* CyaSSL reuses sessions on own, no free */
|
|
}
|
|
|
|
|
|
size_t Curl_cyassl_version(char *buffer, size_t size)
|
|
{
|
|
#ifdef WOLFSSL_VERSION
|
|
return snprintf(buffer, size, "wolfSSL/%s", WOLFSSL_VERSION);
|
|
#elif defined(CYASSL_VERSION)
|
|
return snprintf(buffer, size, "CyaSSL/%s", CYASSL_VERSION);
|
|
#else
|
|
return snprintf(buffer, size, "CyaSSL/%s", "<1.8.8");
|
|
#endif
|
|
}
|
|
|
|
|
|
int Curl_cyassl_init(void)
|
|
{
|
|
return (CyaSSL_Init() == SSL_SUCCESS);
|
|
}
|
|
|
|
|
|
bool Curl_cyassl_data_pending(const struct connectdata* conn, int connindex)
|
|
{
|
|
if(conn->ssl[connindex].handle) /* SSL is in use */
|
|
return (0 != SSL_pending(conn->ssl[connindex].handle)) ? TRUE : FALSE;
|
|
else
|
|
return FALSE;
|
|
}
|
|
|
|
|
|
/*
|
|
* This function is called to shut down the SSL layer but keep the
|
|
* socket open (CCC - Clear Command Channel)
|
|
*/
|
|
int Curl_cyassl_shutdown(struct connectdata *conn, int sockindex)
|
|
{
|
|
int retval = 0;
|
|
struct ssl_connect_data *connssl = &conn->ssl[sockindex];
|
|
|
|
if(connssl->handle) {
|
|
SSL_free (connssl->handle);
|
|
connssl->handle = NULL;
|
|
}
|
|
return retval;
|
|
}
|
|
|
|
|
|
static CURLcode
|
|
cyassl_connect_common(struct connectdata *conn,
|
|
int sockindex,
|
|
bool nonblocking,
|
|
bool *done)
|
|
{
|
|
CURLcode result;
|
|
struct Curl_easy *data = conn->data;
|
|
struct ssl_connect_data *connssl = &conn->ssl[sockindex];
|
|
curl_socket_t sockfd = conn->sock[sockindex];
|
|
long timeout_ms;
|
|
int what;
|
|
|
|
/* check if the connection has already been established */
|
|
if(ssl_connection_complete == connssl->state) {
|
|
*done = TRUE;
|
|
return CURLE_OK;
|
|
}
|
|
|
|
if(ssl_connect_1==connssl->connecting_state) {
|
|
/* Find out how much more time we're allowed */
|
|
timeout_ms = Curl_timeleft(data, NULL, TRUE);
|
|
|
|
if(timeout_ms < 0) {
|
|
/* no need to continue if time already is up */
|
|
failf(data, "SSL connection timeout");
|
|
return CURLE_OPERATION_TIMEDOUT;
|
|
}
|
|
|
|
result = cyassl_connect_step1(conn, sockindex);
|
|
if(result)
|
|
return result;
|
|
}
|
|
|
|
while(ssl_connect_2 == connssl->connecting_state ||
|
|
ssl_connect_2_reading == connssl->connecting_state ||
|
|
ssl_connect_2_writing == connssl->connecting_state) {
|
|
|
|
/* check allowed time left */
|
|
timeout_ms = Curl_timeleft(data, NULL, TRUE);
|
|
|
|
if(timeout_ms < 0) {
|
|
/* no need to continue if time already is up */
|
|
failf(data, "SSL connection timeout");
|
|
return CURLE_OPERATION_TIMEDOUT;
|
|
}
|
|
|
|
/* if ssl is expecting something, check if it's available. */
|
|
if(connssl->connecting_state == ssl_connect_2_reading
|
|
|| connssl->connecting_state == ssl_connect_2_writing) {
|
|
|
|
curl_socket_t writefd = ssl_connect_2_writing==
|
|
connssl->connecting_state?sockfd:CURL_SOCKET_BAD;
|
|
curl_socket_t readfd = ssl_connect_2_reading==
|
|
connssl->connecting_state?sockfd:CURL_SOCKET_BAD;
|
|
|
|
what = Curl_socket_check(readfd, CURL_SOCKET_BAD, writefd,
|
|
nonblocking?0:timeout_ms);
|
|
if(what < 0) {
|
|
/* fatal error */
|
|
failf(data, "select/poll on SSL socket, errno: %d", SOCKERRNO);
|
|
return CURLE_SSL_CONNECT_ERROR;
|
|
}
|
|
else if(0 == what) {
|
|
if(nonblocking) {
|
|
*done = FALSE;
|
|
return CURLE_OK;
|
|
}
|
|
else {
|
|
/* timeout */
|
|
failf(data, "SSL connection timeout");
|
|
return CURLE_OPERATION_TIMEDOUT;
|
|
}
|
|
}
|
|
/* socket is readable or writable */
|
|
}
|
|
|
|
/* Run transaction, and return to the caller if it failed or if
|
|
* this connection is part of a multi handle and this loop would
|
|
* execute again. This permits the owner of a multi handle to
|
|
* abort a connection attempt before step2 has completed while
|
|
* ensuring that a client using select() or epoll() will always
|
|
* have a valid fdset to wait on.
|
|
*/
|
|
result = cyassl_connect_step2(conn, sockindex);
|
|
if(result || (nonblocking &&
|
|
(ssl_connect_2 == connssl->connecting_state ||
|
|
ssl_connect_2_reading == connssl->connecting_state ||
|
|
ssl_connect_2_writing == connssl->connecting_state)))
|
|
return result;
|
|
} /* repeat step2 until all transactions are done. */
|
|
|
|
if(ssl_connect_3 == connssl->connecting_state) {
|
|
result = cyassl_connect_step3(conn, sockindex);
|
|
if(result)
|
|
return result;
|
|
}
|
|
|
|
if(ssl_connect_done == connssl->connecting_state) {
|
|
connssl->state = ssl_connection_complete;
|
|
conn->recv[sockindex] = cyassl_recv;
|
|
conn->send[sockindex] = cyassl_send;
|
|
*done = TRUE;
|
|
}
|
|
else
|
|
*done = FALSE;
|
|
|
|
/* Reset our connect state machine */
|
|
connssl->connecting_state = ssl_connect_1;
|
|
|
|
return CURLE_OK;
|
|
}
|
|
|
|
|
|
CURLcode
|
|
Curl_cyassl_connect_nonblocking(struct connectdata *conn,
|
|
int sockindex,
|
|
bool *done)
|
|
{
|
|
return cyassl_connect_common(conn, sockindex, TRUE, done);
|
|
}
|
|
|
|
|
|
CURLcode
|
|
Curl_cyassl_connect(struct connectdata *conn,
|
|
int sockindex)
|
|
{
|
|
CURLcode result;
|
|
bool done = FALSE;
|
|
|
|
result = cyassl_connect_common(conn, sockindex, FALSE, &done);
|
|
if(result)
|
|
return result;
|
|
|
|
DEBUGASSERT(done);
|
|
|
|
return CURLE_OK;
|
|
}
|
|
|
|
int Curl_cyassl_random(struct Curl_easy *data,
|
|
unsigned char *entropy,
|
|
size_t length)
|
|
{
|
|
RNG rng;
|
|
(void)data;
|
|
if(InitRng(&rng))
|
|
return 1;
|
|
if(length > UINT_MAX)
|
|
return 1;
|
|
if(RNG_GenerateBlock(&rng, entropy, (unsigned)length))
|
|
return 1;
|
|
return 0;
|
|
}
|
|
|
|
void Curl_cyassl_sha256sum(const unsigned char *tmp, /* input */
|
|
size_t tmplen,
|
|
unsigned char *sha256sum /* output */,
|
|
size_t unused)
|
|
{
|
|
Sha256 SHA256pw;
|
|
(void)unused;
|
|
InitSha256(&SHA256pw);
|
|
Sha256Update(&SHA256pw, tmp, (word32)tmplen);
|
|
Sha256Final(&SHA256pw, sha256sum);
|
|
}
|
|
|
|
#endif
|