2000-12-05 18:26:13 -05:00
|
|
|
/* SSL support.
|
2001-05-27 15:35:15 -04:00
|
|
|
Copyright (C) 2000 Free Software Foundation, Inc.
|
|
|
|
Contributed by Christian Fraenkel.
|
2000-12-05 18:26:13 -05:00
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
This file is part of GNU Wget.
|
2000-12-05 18:26:13 -05:00
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
GNU Wget is free software; you can redistribute it and/or modify
|
2000-12-05 18:26:13 -05:00
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
GNU Wget is distributed in the hope that it will be useful,
|
2000-12-05 18:26:13 -05:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2001-05-27 15:35:15 -04:00
|
|
|
along with Wget; if not, write to the Free Software
|
2002-05-17 22:16:36 -04:00
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
In addition, as a special exception, the Free Software Foundation
|
|
|
|
gives permission to link the code of its release of Wget with the
|
|
|
|
OpenSSL project's "OpenSSL" library (or with modified versions of it
|
|
|
|
that use the same license as the "OpenSSL" library), and distribute
|
|
|
|
the linked executables. You must obey the GNU General Public License
|
|
|
|
in all respects for all of the code used other than "OpenSSL". If you
|
|
|
|
modify this file, you may extend this exception to your version of the
|
|
|
|
file, but you are not obligated to do so. If you do not wish to do
|
|
|
|
so, delete this exception statement from your version. */
|
2000-12-05 18:26:13 -05:00
|
|
|
|
|
|
|
#include <config.h>
|
2000-12-17 13:12:02 -05:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
2001-11-29 13:22:18 -05:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2001-12-04 18:42:18 -05:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#else
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
2000-12-17 13:12:02 -05:00
|
|
|
|
2000-12-05 18:26:13 -05:00
|
|
|
#include <openssl/bio.h>
|
|
|
|
#include <openssl/crypto.h>
|
|
|
|
#include <openssl/x509.h>
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
#include <openssl/pem.h>
|
2001-11-23 11:18:41 -05:00
|
|
|
#include <openssl/rand.h>
|
2000-12-17 13:12:02 -05:00
|
|
|
|
2000-12-05 18:26:13 -05:00
|
|
|
#include "wget.h"
|
2001-12-17 09:05:08 -05:00
|
|
|
#include "utils.h"
|
2000-12-05 18:26:13 -05:00
|
|
|
#include "connect.h"
|
2001-12-05 20:13:31 -05:00
|
|
|
#include "url.h"
|
2000-12-05 18:35:56 -05:00
|
|
|
|
2000-12-17 13:12:02 -05:00
|
|
|
#ifndef errno
|
|
|
|
extern int errno;
|
|
|
|
#endif
|
|
|
|
|
2003-11-06 08:06:59 -05:00
|
|
|
SSL_CTX *ssl_ctx;
|
|
|
|
|
|
|
|
static void
|
2001-11-23 11:18:41 -05:00
|
|
|
ssl_init_prng (void)
|
|
|
|
{
|
2001-12-05 20:13:31 -05:00
|
|
|
/* It is likely that older versions of OpenSSL will fail on
|
|
|
|
non-Linux machines because this code is unable to seed the PRNG
|
|
|
|
on older versions of the library. */
|
|
|
|
|
2001-11-23 11:18:41 -05:00
|
|
|
#if SSLEAY_VERSION_NUMBER >= 0x00905100
|
2001-12-05 20:13:31 -05:00
|
|
|
char rand_file[256];
|
|
|
|
int maxrand = 500;
|
|
|
|
|
|
|
|
/* First, seed from a file specified by the user. This will be
|
|
|
|
$RANDFILE, if set, or ~/.rnd. */
|
|
|
|
RAND_file_name (rand_file, sizeof (rand_file));
|
|
|
|
if (rand_file)
|
|
|
|
/* Seed at most 16k (value borrowed from curl) from random file. */
|
|
|
|
RAND_load_file (rand_file, 16384);
|
|
|
|
|
|
|
|
if (RAND_status ())
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Get random data from EGD if opt.sslegdsock was set. */
|
2001-12-06 00:35:17 -05:00
|
|
|
if (opt.sslegdsock && *opt.sslegdsock)
|
2001-12-05 20:13:31 -05:00
|
|
|
RAND_egd (opt.sslegdsock);
|
|
|
|
|
|
|
|
if (RAND_status ())
|
|
|
|
return;
|
|
|
|
|
|
|
|
#ifdef WINDOWS
|
|
|
|
/* Under Windows, we can try to seed the PRNG using screen content.
|
|
|
|
This may or may not work, depending on whether we'll calling Wget
|
|
|
|
interactively. */
|
|
|
|
|
|
|
|
RAND_screen ();
|
|
|
|
if (RAND_status ())
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
2003-11-18 17:28:01 -05:00
|
|
|
/* Still not enough randomness, most likely because neither
|
|
|
|
/dev/random nor EGD were available. Resort to a simple and
|
|
|
|
stupid method -- seed OpenSSL's PRNG with libc PRNG. This is
|
|
|
|
cryptographically weak, but people who care about strong
|
|
|
|
cryptography should install /dev/random (default on Linux) or
|
|
|
|
specify their own source of randomness anyway. */
|
|
|
|
|
|
|
|
logprintf (LOG_VERBOSE, _("Warning: using a weak random seed.\n"));
|
2001-12-05 20:13:31 -05:00
|
|
|
|
|
|
|
while (RAND_status () == 0 && maxrand-- > 0)
|
|
|
|
{
|
2001-12-17 09:05:08 -05:00
|
|
|
unsigned char rnd = random_number (256);
|
|
|
|
RAND_seed (&rnd, sizeof (rnd));
|
2001-12-05 20:13:31 -05:00
|
|
|
}
|
2001-11-23 11:18:41 -05:00
|
|
|
#endif /* SSLEAY_VERSION_NUMBER >= 0x00905100 */
|
|
|
|
}
|
|
|
|
|
2003-11-06 08:06:59 -05:00
|
|
|
static int
|
2000-12-05 18:35:56 -05:00
|
|
|
verify_callback (int ok, X509_STORE_CTX *ctx)
|
|
|
|
{
|
|
|
|
char *s, buf[256];
|
|
|
|
s = X509_NAME_oneline (X509_get_subject_name (ctx->current_cert), buf, 256);
|
2000-12-05 18:26:13 -05:00
|
|
|
if (ok == 0) {
|
|
|
|
switch (ctx->error) {
|
2000-12-05 18:35:56 -05:00
|
|
|
case X509_V_ERR_CERT_NOT_YET_VALID:
|
|
|
|
case X509_V_ERR_CERT_HAS_EXPIRED:
|
2002-04-20 22:26:48 -04:00
|
|
|
/* This mean the CERT is not valid !!! */
|
|
|
|
ok = 0;
|
|
|
|
break;
|
2000-12-05 18:35:56 -05:00
|
|
|
case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
|
2002-04-20 22:26:48 -04:00
|
|
|
/* Unsure if we should handle that this way */
|
2000-12-05 18:35:56 -05:00
|
|
|
ok = 1;
|
2002-04-20 22:26:48 -04:00
|
|
|
break;
|
2000-12-05 18:26:13 -05:00
|
|
|
}
|
|
|
|
}
|
2000-12-05 18:35:56 -05:00
|
|
|
return ok;
|
2000-12-05 18:26:13 -05:00
|
|
|
}
|
|
|
|
|
2003-11-06 08:06:59 -05:00
|
|
|
/* Print SSL errors. */
|
|
|
|
|
|
|
|
void
|
|
|
|
ssl_print_errors (void)
|
2001-02-10 17:33:31 -05:00
|
|
|
{
|
|
|
|
unsigned long curerr = 0;
|
|
|
|
char errbuff[1024];
|
2003-10-31 09:55:50 -05:00
|
|
|
xzero (errbuff);
|
|
|
|
while ((curerr = ERR_get_error ()) != 0)
|
2003-11-06 08:06:59 -05:00
|
|
|
logprintf (LOG_NOTQUIET, "OpenSSL: %s\n",
|
|
|
|
ERR_error_string (curerr, errbuff));
|
2001-02-10 17:33:31 -05:00
|
|
|
}
|
|
|
|
|
2002-04-20 22:26:48 -04:00
|
|
|
/* Creates a SSL Context and sets some defaults for it */
|
|
|
|
uerr_t
|
2003-11-06 08:06:59 -05:00
|
|
|
ssl_init ()
|
2002-04-20 22:26:48 -04:00
|
|
|
{
|
|
|
|
SSL_METHOD *meth = NULL;
|
|
|
|
int verify;
|
|
|
|
int can_validate;
|
2003-11-06 08:06:59 -05:00
|
|
|
|
|
|
|
if (ssl_ctx)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Init the PRNG. If that fails, bail out. */
|
|
|
|
ssl_init_prng ();
|
|
|
|
if (RAND_status () == 0)
|
|
|
|
{
|
|
|
|
logprintf (LOG_NOTQUIET,
|
|
|
|
_("Could not seed OpenSSL PRNG; disabling SSL.\n"));
|
|
|
|
scheme_disable (SCHEME_HTTPS);
|
|
|
|
return SSLERRCTXCREATE;
|
|
|
|
}
|
|
|
|
|
2002-04-20 22:26:48 -04:00
|
|
|
SSL_library_init ();
|
|
|
|
SSL_load_error_strings ();
|
|
|
|
SSLeay_add_all_algorithms ();
|
|
|
|
SSLeay_add_ssl_algorithms ();
|
|
|
|
switch (opt.sslprotocol)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
meth = SSLv23_client_method ();
|
|
|
|
break;
|
|
|
|
case 1 :
|
|
|
|
meth = SSLv2_client_method ();
|
|
|
|
break;
|
|
|
|
case 2 :
|
|
|
|
meth = SSLv3_client_method ();
|
|
|
|
break;
|
|
|
|
case 3 :
|
|
|
|
meth = TLSv1_client_method ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (meth == NULL)
|
|
|
|
{
|
2003-11-06 08:06:59 -05:00
|
|
|
ssl_print_errors ();
|
2002-04-20 22:26:48 -04:00
|
|
|
return SSLERRCTXCREATE;
|
|
|
|
}
|
|
|
|
|
2003-11-06 08:06:59 -05:00
|
|
|
ssl_ctx = SSL_CTX_new (meth);
|
2002-04-20 22:26:48 -04:00
|
|
|
if (meth == NULL)
|
|
|
|
{
|
2003-11-06 08:06:59 -05:00
|
|
|
ssl_print_errors ();
|
2002-04-20 22:26:48 -04:00
|
|
|
return SSLERRCTXCREATE;
|
|
|
|
}
|
|
|
|
/* Can we validate the server Cert ? */
|
|
|
|
if (opt.sslcadir != NULL || opt.sslcafile != NULL)
|
|
|
|
{
|
2003-11-06 08:06:59 -05:00
|
|
|
SSL_CTX_load_verify_locations (ssl_ctx, opt.sslcafile, opt.sslcadir);
|
2002-04-20 22:26:48 -04:00
|
|
|
can_validate = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
can_validate = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!opt.sslcheckcert)
|
|
|
|
{
|
|
|
|
/* check cert but ignore error, do not break handshake on error */
|
|
|
|
verify = SSL_VERIFY_NONE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!can_validate)
|
|
|
|
{
|
|
|
|
logprintf (LOG_NOTQUIET, "Warrining validation of Server Cert not possible!\n");
|
|
|
|
verify = SSL_VERIFY_NONE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* break handshake if server cert is not valid but allow NO-Cert mode */
|
|
|
|
verify = SSL_VERIFY_PEER;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-06 08:06:59 -05:00
|
|
|
SSL_CTX_set_verify (ssl_ctx, verify, verify_callback);
|
2002-04-20 22:26:48 -04:00
|
|
|
|
|
|
|
if (opt.sslcertfile != NULL || opt.sslcertkey != NULL)
|
|
|
|
{
|
|
|
|
int ssl_cert_type;
|
|
|
|
if (!opt.sslcerttype)
|
|
|
|
ssl_cert_type = SSL_FILETYPE_PEM;
|
|
|
|
else
|
|
|
|
ssl_cert_type = SSL_FILETYPE_ASN1;
|
|
|
|
|
|
|
|
if (opt.sslcertkey == NULL)
|
|
|
|
opt.sslcertkey = opt.sslcertfile;
|
|
|
|
if (opt.sslcertfile == NULL)
|
|
|
|
opt.sslcertfile = opt.sslcertkey;
|
|
|
|
|
2003-11-06 08:06:59 -05:00
|
|
|
if (SSL_CTX_use_certificate_file (ssl_ctx, opt.sslcertfile,
|
|
|
|
ssl_cert_type) <= 0)
|
2002-04-20 22:26:48 -04:00
|
|
|
{
|
2003-11-06 08:06:59 -05:00
|
|
|
ssl_print_errors ();
|
2002-04-20 22:26:48 -04:00
|
|
|
return SSLERRCERTFILE;
|
|
|
|
}
|
2003-11-06 08:06:59 -05:00
|
|
|
if (SSL_CTX_use_PrivateKey_file (ssl_ctx, opt.sslcertkey,
|
|
|
|
ssl_cert_type) <= 0)
|
2002-04-20 22:26:48 -04:00
|
|
|
{
|
2003-11-06 08:06:59 -05:00
|
|
|
ssl_print_errors ();
|
2002-04-20 22:26:48 -04:00
|
|
|
return SSLERRCERTKEY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0; /* Succeded */
|
|
|
|
}
|
|
|
|
|
2003-11-06 08:06:59 -05:00
|
|
|
static int
|
|
|
|
ssl_read (int fd, char *buf, int bufsize, void *ctx)
|
2002-04-20 22:26:48 -04:00
|
|
|
{
|
2003-11-06 08:06:59 -05:00
|
|
|
int ret;
|
2003-11-05 20:12:03 -05:00
|
|
|
SSL *ssl = (SSL *) ctx;
|
|
|
|
do
|
2003-11-06 08:06:59 -05:00
|
|
|
ret = SSL_read (ssl, buf, bufsize);
|
|
|
|
while (ret == -1
|
|
|
|
&& SSL_get_error (ssl, ret) == SSL_ERROR_SYSCALL
|
|
|
|
&& errno == EINTR);
|
|
|
|
return ret;
|
2002-04-20 22:26:48 -04:00
|
|
|
}
|
|
|
|
|
2003-11-05 20:12:03 -05:00
|
|
|
static int
|
|
|
|
ssl_write (int fd, char *buf, int bufsize, void *ctx)
|
2002-04-20 22:26:48 -04:00
|
|
|
{
|
2003-11-06 08:06:59 -05:00
|
|
|
int ret = 0;
|
2003-11-05 20:12:03 -05:00
|
|
|
SSL *ssl = (SSL *) ctx;
|
|
|
|
do
|
2003-11-06 08:06:59 -05:00
|
|
|
ret = SSL_write (ssl, buf, bufsize);
|
|
|
|
while (ret == -1
|
|
|
|
&& SSL_get_error (ssl, ret) == SSL_ERROR_SYSCALL
|
|
|
|
&& errno == EINTR);
|
|
|
|
return ret;
|
2002-04-20 22:26:48 -04:00
|
|
|
}
|
|
|
|
|
2003-11-05 20:12:03 -05:00
|
|
|
static int
|
|
|
|
ssl_poll (int fd, double timeout, int wait_for, void *ctx)
|
2002-04-20 22:26:48 -04:00
|
|
|
{
|
2003-11-05 20:12:03 -05:00
|
|
|
SSL *ssl = (SSL *) ctx;
|
|
|
|
if (timeout == 0)
|
|
|
|
return 1;
|
|
|
|
if (SSL_pending (ssl))
|
|
|
|
return 1;
|
|
|
|
return select_fd (fd, timeout, wait_for);
|
2002-04-20 22:26:48 -04:00
|
|
|
}
|
|
|
|
|
2003-11-20 20:48:11 -05:00
|
|
|
static int
|
|
|
|
ssl_peek (int fd, char *buf, int bufsize, void *ctx)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
SSL *ssl = (SSL *) ctx;
|
|
|
|
do
|
|
|
|
ret = SSL_peek (ssl, buf, bufsize);
|
|
|
|
while (ret == -1
|
|
|
|
&& SSL_get_error (ssl, ret) == SSL_ERROR_SYSCALL
|
|
|
|
&& errno == EINTR);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2003-11-05 20:12:03 -05:00
|
|
|
static void
|
|
|
|
ssl_close (int fd, void *ctx)
|
2000-12-05 18:26:13 -05:00
|
|
|
{
|
2003-11-05 20:12:03 -05:00
|
|
|
SSL *ssl = (SSL *) ctx;
|
|
|
|
SSL_shutdown (ssl);
|
|
|
|
SSL_free (ssl);
|
|
|
|
|
|
|
|
#ifdef WINDOWS
|
|
|
|
closesocket (fd);
|
|
|
|
#else
|
|
|
|
close (fd);
|
2000-12-05 18:26:13 -05:00
|
|
|
#endif
|
|
|
|
|
2003-11-05 20:12:03 -05:00
|
|
|
DEBUGP (("Closed %d/SSL 0x%0lx\n", fd, (unsigned long) ssl));
|
2000-12-05 18:26:13 -05:00
|
|
|
}
|
|
|
|
|
2003-11-05 20:12:03 -05:00
|
|
|
/* Sets up a SSL structure and performs the handshake on fd. */
|
2002-04-14 01:19:27 -04:00
|
|
|
|
2003-11-05 20:12:03 -05:00
|
|
|
SSL *
|
2003-11-06 08:06:59 -05:00
|
|
|
ssl_connect (int fd)
|
2000-12-05 18:26:13 -05:00
|
|
|
{
|
2003-11-06 08:06:59 -05:00
|
|
|
SSL *ssl;
|
|
|
|
|
|
|
|
assert (ssl_ctx != NULL);
|
|
|
|
ssl = SSL_new (ssl_ctx);
|
2003-11-05 20:12:03 -05:00
|
|
|
if (!ssl)
|
|
|
|
goto err;
|
|
|
|
if (!SSL_set_fd (ssl, fd))
|
|
|
|
goto err;
|
|
|
|
SSL_set_connect_state (ssl);
|
|
|
|
if (SSL_connect (ssl) <= 0 || ssl->state != SSL_ST_OK)
|
|
|
|
goto err;
|
|
|
|
|
2003-11-14 08:43:46 -05:00
|
|
|
/* Register FD with Wget's transport layer, i.e. arrange that
|
|
|
|
SSL-enabled functions are used for reading, writing, and polling.
|
2003-11-20 20:48:11 -05:00
|
|
|
That way the rest of Wget can keep using xread, xwrite, and
|
|
|
|
friends and not care what happens underneath. */
|
|
|
|
fd_register_transport (fd, ssl_read, ssl_write, ssl_poll, ssl_peek,
|
|
|
|
ssl_close, ssl);
|
2003-11-05 20:12:03 -05:00
|
|
|
DEBUGP (("Connected %d to SSL 0x%0lx\n", fd, (unsigned long) ssl));
|
|
|
|
return ssl;
|
|
|
|
|
|
|
|
err:
|
2003-11-06 08:06:59 -05:00
|
|
|
ssl_print_errors ();
|
2003-11-05 20:12:03 -05:00
|
|
|
if (ssl)
|
|
|
|
SSL_free (ssl);
|
|
|
|
return NULL;
|
|
|
|
}
|