2008-11-08 10:48:02 +00:00
|
|
|
/* <!-- copyright */
|
|
|
|
/*
|
|
|
|
* aria2 - The high speed download utility
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* 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
|
|
|
|
* along with this program; if not, write to the Free Software
|
2010-01-05 16:01:46 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2008-11-08 10:48:02 +00:00
|
|
|
*
|
|
|
|
* In addition, as a special exception, the copyright holders give
|
|
|
|
* permission to link the code of portions of this program with the
|
|
|
|
* OpenSSL library under certain conditions as described in each
|
|
|
|
* individual source file, and distribute linked combinations
|
|
|
|
* including the two.
|
|
|
|
* You must obey the GNU General Public License in all respects
|
|
|
|
* for all of the code used other than OpenSSL. If you modify
|
|
|
|
* file(s) with this exception, you may extend this exception to your
|
|
|
|
* version of the file(s), but you are not obligated to do so. If you
|
|
|
|
* do not wish to do so, delete this exception statement from your
|
|
|
|
* version. If you delete this exception statement from all source
|
|
|
|
* files in the program, then also delete it here.
|
|
|
|
*/
|
|
|
|
/* copyright --> */
|
|
|
|
#include "LibgnutlsTLSContext.h"
|
2008-11-09 07:36:44 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LIBGNUTLS
|
|
|
|
# include <gnutls/x509.h>
|
|
|
|
#endif // HAVE_LIBGNUTLS
|
|
|
|
|
2008-11-08 10:48:02 +00:00
|
|
|
#include "LogFactory.h"
|
|
|
|
#include "Logger.h"
|
2010-11-20 08:21:36 +00:00
|
|
|
#include "fmt.h"
|
2008-11-08 10:48:02 +00:00
|
|
|
#include "message.h"
|
|
|
|
|
|
|
|
namespace aria2 {
|
|
|
|
|
2010-11-20 08:21:36 +00:00
|
|
|
TLSContext::TLSContext()
|
|
|
|
: certCred_(0),
|
|
|
|
peerVerificationEnabled_(false)
|
2008-11-08 10:48:02 +00:00
|
|
|
{
|
2010-06-21 13:51:56 +00:00
|
|
|
int r = gnutls_certificate_allocate_credentials(&certCred_);
|
2008-11-08 10:48:02 +00:00
|
|
|
if(r == GNUTLS_E_SUCCESS) {
|
2010-06-21 13:51:56 +00:00
|
|
|
good_ = true;
|
|
|
|
gnutls_certificate_set_verify_flags(certCred_,
|
2010-01-05 16:01:46 +00:00
|
|
|
GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT);
|
2008-11-08 10:48:02 +00:00
|
|
|
} else {
|
2010-06-21 13:51:56 +00:00
|
|
|
good_ =false;
|
2010-11-20 08:21:36 +00:00
|
|
|
A2_LOG_ERROR(fmt("gnutls_certificate_allocate_credentials() failed."
|
|
|
|
" Cause: %s",
|
|
|
|
gnutls_strerror(r)));
|
2008-11-08 10:48:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TLSContext::~TLSContext()
|
|
|
|
{
|
2010-06-21 13:51:56 +00:00
|
|
|
if(certCred_) {
|
|
|
|
gnutls_certificate_free_credentials(certCred_);
|
2008-11-08 10:48:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TLSContext::good() const
|
|
|
|
{
|
2010-06-21 13:51:56 +00:00
|
|
|
return good_;
|
2008-11-08 10:48:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool TLSContext::bad() const
|
|
|
|
{
|
2010-06-21 13:51:56 +00:00
|
|
|
return !good_;
|
2008-11-08 10:48:02 +00:00
|
|
|
}
|
|
|
|
|
2009-06-21 10:41:50 +00:00
|
|
|
bool TLSContext::addClientKeyFile(const std::string& certfile,
|
2010-01-05 16:01:46 +00:00
|
|
|
const std::string& keyfile)
|
2008-11-08 10:48:02 +00:00
|
|
|
{
|
2010-06-21 13:51:56 +00:00
|
|
|
int ret = gnutls_certificate_set_x509_key_file(certCred_,
|
2010-01-05 16:01:46 +00:00
|
|
|
certfile.c_str(),
|
|
|
|
keyfile.c_str(),
|
|
|
|
GNUTLS_X509_FMT_PEM);
|
2009-06-21 10:41:50 +00:00
|
|
|
if(ret == GNUTLS_E_SUCCESS) {
|
2010-11-20 08:21:36 +00:00
|
|
|
A2_LOG_INFO(fmt("Client Key File(cert=%s, key=%s) were successfully added.",
|
|
|
|
certfile.c_str(), keyfile.c_str()));
|
2009-06-21 10:41:50 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
2010-11-20 08:21:36 +00:00
|
|
|
A2_LOG_ERROR(fmt("Failed to load client certificate from %s and"
|
|
|
|
" private key from %s. Cause: %s",
|
|
|
|
certfile.c_str(), keyfile.c_str(),
|
|
|
|
gnutls_strerror(ret)));
|
2009-06-21 10:41:50 +00:00
|
|
|
return false;
|
2008-11-08 10:48:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-21 10:41:50 +00:00
|
|
|
bool TLSContext::addTrustedCACertFile(const std::string& certfile)
|
2008-11-08 10:48:02 +00:00
|
|
|
{
|
2010-06-21 13:51:56 +00:00
|
|
|
int ret = gnutls_certificate_set_x509_trust_file(certCred_,
|
2010-01-05 16:01:46 +00:00
|
|
|
certfile.c_str(),
|
|
|
|
GNUTLS_X509_FMT_PEM);
|
2008-11-08 10:48:02 +00:00
|
|
|
if(ret < 0) {
|
2010-11-20 08:21:36 +00:00
|
|
|
A2_LOG_ERROR(fmt(MSG_LOADING_TRUSTED_CA_CERT_FAILED,
|
|
|
|
certfile.c_str(), gnutls_strerror(ret)));
|
2009-06-21 10:41:50 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2010-11-20 08:21:36 +00:00
|
|
|
A2_LOG_INFO(fmt("%d certificate(s) were imported.", ret));
|
2009-06-21 10:41:50 +00:00
|
|
|
return true;
|
2008-11-08 10:48:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gnutls_certificate_credentials_t TLSContext::getCertCred() const
|
|
|
|
{
|
2010-06-21 13:51:56 +00:00
|
|
|
return certCred_;
|
2008-11-08 10:48:02 +00:00
|
|
|
}
|
|
|
|
|
2008-11-09 07:36:44 +00:00
|
|
|
void TLSContext::enablePeerVerification()
|
|
|
|
{
|
2010-06-21 13:51:56 +00:00
|
|
|
peerVerificationEnabled_ = true;
|
2008-11-09 07:36:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TLSContext::disablePeerVerification()
|
|
|
|
{
|
2010-06-21 13:51:56 +00:00
|
|
|
peerVerificationEnabled_ = false;
|
2008-11-09 07:36:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool TLSContext::peerVerificationEnabled() const
|
|
|
|
{
|
2010-06-21 13:51:56 +00:00
|
|
|
return peerVerificationEnabled_;
|
2008-11-09 07:36:44 +00:00
|
|
|
}
|
|
|
|
|
2008-11-08 10:48:02 +00:00
|
|
|
} // namespace aria2
|