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
|
2000-12-05 18:26:13 -05:00
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
|
|
|
|
#include <config.h>
|
2000-12-17 13:12:02 -05:00
|
|
|
|
2000-12-05 18:26:13 -05:00
|
|
|
#ifdef HAVE_SSL
|
2000-12-17 13:12:02 -05:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
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"
|
|
|
|
#include "connect.h"
|
2000-12-05 18:35:56 -05:00
|
|
|
|
2000-12-17 13:12:02 -05:00
|
|
|
#ifndef errno
|
|
|
|
extern int errno;
|
|
|
|
#endif
|
|
|
|
|
2001-02-10 17:33:31 -05:00
|
|
|
static int verify_callback PARAMS ((int, X509_STORE_CTX *));
|
2000-12-05 18:26:13 -05:00
|
|
|
|
2001-11-23 11:18:41 -05:00
|
|
|
static void
|
|
|
|
ssl_init_prng (void)
|
|
|
|
{
|
|
|
|
#if SSLEAY_VERSION_NUMBER >= 0x00905100
|
|
|
|
if (RAND_status () == 0)
|
|
|
|
{
|
|
|
|
char rand_file[256];
|
|
|
|
time_t t;
|
|
|
|
pid_t pid;
|
|
|
|
long l,seed;
|
|
|
|
|
|
|
|
t = time(NULL);
|
|
|
|
pid = getpid();
|
|
|
|
RAND_file_name(rand_file, 256);
|
|
|
|
if (rand_file != NULL)
|
|
|
|
{
|
|
|
|
/* Seed as much as 1024 bytes from RAND_file_name */
|
|
|
|
RAND_load_file(rand_file, 1024);
|
|
|
|
}
|
|
|
|
/* Seed in time (mod_ssl does this) */
|
|
|
|
RAND_seed((unsigned char *)&t, sizeof(time_t));
|
|
|
|
/* Seed in pid (mod_ssl does this) */
|
|
|
|
RAND_seed((unsigned char *)&pid, sizeof(pid_t));
|
|
|
|
/* Initialize system's random number generator */
|
|
|
|
RAND_bytes((unsigned char *)&seed, sizeof(long));
|
|
|
|
srand48(seed);
|
|
|
|
while (RAND_status () == 0)
|
|
|
|
{
|
|
|
|
/* Repeatedly seed the PRNG using the system's random number
|
|
|
|
generator until it has been seeded with enough data. */
|
|
|
|
l = lrand48();
|
|
|
|
RAND_seed((unsigned char *)&l, sizeof(long));
|
|
|
|
}
|
|
|
|
if (rand_file != NULL)
|
|
|
|
{
|
|
|
|
/* Write a rand_file */
|
|
|
|
RAND_write_file(rand_file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* SSLEAY_VERSION_NUMBER >= 0x00905100 */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-12-05 18:26:13 -05:00
|
|
|
/* Creates a SSL Context and sets some defaults for it */
|
2001-02-10 17:33:31 -05:00
|
|
|
uerr_t
|
2000-12-05 18:35:56 -05:00
|
|
|
init_ssl (SSL_CTX **ctx)
|
2000-12-05 18:26:13 -05:00
|
|
|
{
|
2000-12-05 18:35:56 -05:00
|
|
|
SSL_METHOD *meth = NULL;
|
|
|
|
int verify = SSL_VERIFY_NONE;
|
|
|
|
SSL_library_init ();
|
|
|
|
SSL_load_error_strings ();
|
|
|
|
SSLeay_add_all_algorithms ();
|
|
|
|
SSLeay_add_ssl_algorithms ();
|
|
|
|
meth = SSLv23_client_method ();
|
|
|
|
*ctx = SSL_CTX_new (meth);
|
|
|
|
SSL_CTX_set_verify (*ctx, verify, verify_callback);
|
2001-02-10 17:33:31 -05:00
|
|
|
if (*ctx == NULL) return SSLERRCTXCREATE;
|
|
|
|
if (opt.sslcertfile)
|
|
|
|
{
|
|
|
|
if (SSL_CTX_use_certificate_file (*ctx, opt.sslcertfile,
|
|
|
|
SSL_FILETYPE_PEM) <= 0)
|
|
|
|
return SSLERRCERTFILE;
|
|
|
|
if (opt.sslcertkey == NULL)
|
|
|
|
opt.sslcertkey=opt.sslcertfile;
|
|
|
|
if (SSL_CTX_use_PrivateKey_file (*ctx, opt.sslcertkey,
|
|
|
|
SSL_FILETYPE_PEM) <= 0)
|
|
|
|
return SSLERRCERTKEY;
|
|
|
|
}
|
2001-11-23 11:18:41 -05:00
|
|
|
ssl_init_prng();
|
2000-12-05 18:35:56 -05:00
|
|
|
return 0; /* Succeded */
|
2000-12-05 18:26:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Sets up a SSL structure and performs the handshake on fd
|
|
|
|
Returns 0 if everything went right
|
2000-12-05 18:35:56 -05:00
|
|
|
Returns 1 if something went wrong ----- TODO: More exit codes
|
2000-12-05 18:26:13 -05:00
|
|
|
*/
|
2000-12-05 18:35:56 -05:00
|
|
|
int
|
|
|
|
connect_ssl (SSL **con, SSL_CTX *ctx, int fd)
|
2000-12-05 18:26:13 -05:00
|
|
|
{
|
2000-12-05 18:35:56 -05:00
|
|
|
*con = (SSL *)SSL_new (ctx);
|
|
|
|
SSL_set_fd (*con, fd);
|
|
|
|
SSL_set_connect_state (*con);
|
|
|
|
SSL_connect (*con);
|
|
|
|
if ((*con)->state != SSL_ST_OK)
|
2000-12-05 18:26:13 -05:00
|
|
|
return 1;
|
2001-11-23 11:18:41 -05:00
|
|
|
/*while((SSLerror=ERR_get_error())!=0)
|
|
|
|
printf("%s\n", ERR_error_string(SSLerror,NULL));*/
|
|
|
|
|
2000-12-05 18:35:56 -05:00
|
|
|
return 0;
|
2000-12-05 18:26:13 -05:00
|
|
|
}
|
|
|
|
|
2000-12-05 18:35:56 -05:00
|
|
|
void
|
|
|
|
shutdown_ssl (SSL* con)
|
2000-12-05 18:26:13 -05:00
|
|
|
{
|
2000-12-05 18:35:56 -05:00
|
|
|
SSL_shutdown (con);
|
|
|
|
if (con != NULL)
|
|
|
|
SSL_free (con);
|
2000-12-05 18:26:13 -05:00
|
|
|
}
|
|
|
|
|
2000-12-05 18:35:56 -05:00
|
|
|
void
|
|
|
|
free_ssl_ctx (SSL_CTX * ctx)
|
|
|
|
{
|
|
|
|
SSL_CTX_free (ctx);
|
2000-12-05 18:26:13 -05:00
|
|
|
}
|
|
|
|
|
2000-12-05 18:35:56 -05:00
|
|
|
int
|
|
|
|
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:
|
|
|
|
case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
|
|
|
|
ok = 1;
|
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
|
|
|
}
|
|
|
|
|
2001-02-10 17:33:31 -05:00
|
|
|
/* pass all ssl errors to DEBUGP
|
|
|
|
returns the number of printed errors */
|
|
|
|
int
|
|
|
|
ssl_printerrors (void)
|
|
|
|
{
|
|
|
|
int ocerr = 0;
|
|
|
|
unsigned long curerr = 0;
|
|
|
|
char errbuff[1024];
|
|
|
|
memset(errbuff, 0, sizeof(errbuff));
|
|
|
|
for (curerr = ERR_get_error (); curerr; curerr = ERR_get_error ())
|
|
|
|
{
|
|
|
|
DEBUGP (("OpenSSL: %s\n", ERR_error_string (curerr, errbuff)));
|
|
|
|
++ocerr;
|
|
|
|
}
|
|
|
|
return ocerr;
|
|
|
|
}
|
|
|
|
|
2000-12-05 18:26:13 -05:00
|
|
|
/* SSL version of iread. Only exchanged read for SSL_read
|
|
|
|
Read at most LEN bytes from FD, storing them to BUF. This is
|
|
|
|
virtually the same as read(), but takes care of EINTR braindamage
|
|
|
|
and uses select() to timeout the stale connections (a connection is
|
|
|
|
stale if more than OPT.TIMEOUT time is spent in select() or
|
|
|
|
read()). */
|
|
|
|
int
|
|
|
|
ssl_iread (SSL *con, char *buf, int len)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
int fd;
|
2000-12-05 18:35:56 -05:00
|
|
|
BIO_get_fd (con->rbio, &fd);
|
2000-12-05 18:26:13 -05:00
|
|
|
do
|
|
|
|
{
|
|
|
|
#ifdef HAVE_SELECT
|
|
|
|
if (opt.timeout)
|
|
|
|
{
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
res = select_fd (fd, opt.timeout, 0);
|
|
|
|
}
|
|
|
|
while (res == -1 && errno == EINTR);
|
|
|
|
if (res <= 0)
|
|
|
|
{
|
|
|
|
/* Set errno to ETIMEDOUT on timeout. */
|
|
|
|
if (res == 0)
|
|
|
|
/* #### Potentially evil! */
|
|
|
|
errno = ETIMEDOUT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
res = SSL_read (con, buf, len);
|
|
|
|
}
|
|
|
|
while (res == -1 && errno == EINTR);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* SSL version of iwrite. Only exchanged write for SSL_write
|
|
|
|
Write LEN bytes from BUF to FD. This is similar to iread(), but
|
|
|
|
doesn't bother with select(). Unlike iread(), it makes sure that
|
|
|
|
all of BUF is actually written to FD, so callers needn't bother
|
|
|
|
with checking that the return value equals to LEN. Instead, you
|
|
|
|
should simply check for -1. */
|
|
|
|
int
|
|
|
|
ssl_iwrite (SSL *con, char *buf, int len)
|
|
|
|
{
|
|
|
|
int res = 0;
|
|
|
|
int fd;
|
2000-12-05 18:35:56 -05:00
|
|
|
BIO_get_fd (con->rbio, &fd);
|
2000-12-05 18:26:13 -05:00
|
|
|
/* `write' may write less than LEN bytes, thus the outward loop
|
|
|
|
keeps trying it until all was written, or an error occurred. The
|
|
|
|
inner loop is reserved for the usual EINTR f*kage, and the
|
|
|
|
innermost loop deals with the same during select(). */
|
|
|
|
while (len > 0)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
#ifdef HAVE_SELECT
|
|
|
|
if (opt.timeout)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
res = select_fd (fd, opt.timeout, 1);
|
|
|
|
}
|
|
|
|
while (res == -1 && errno == EINTR);
|
|
|
|
if (res <= 0)
|
|
|
|
{
|
|
|
|
/* Set errno to ETIMEDOUT on timeout. */
|
|
|
|
if (res == 0)
|
|
|
|
/* #### Potentially evil! */
|
|
|
|
errno = ETIMEDOUT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
res = SSL_write (con, buf, len);
|
|
|
|
}
|
|
|
|
while (res == -1 && errno == EINTR);
|
|
|
|
if (res <= 0)
|
|
|
|
break;
|
|
|
|
buf += res;
|
|
|
|
len -= res;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
#endif /* HAVE_SSL */
|