1
0
Fork 0
forked from len0rd/rockbox

rbutil: Handle SSL certificate errors on first request.

Qt uses the systems certificate store. On old(er) systems the root
certificate might not be present, so checking the certificate from the
rockbox.org server might fail.

On startup we try to download the build-info file. If this fails with a
certificate error allow the user to temporarily accept the rockbox.org
certificate for all successive requests.

Change-Id: I459e12d53286aaedea4db659d90a5e057c56801f
This commit is contained in:
Dominik Riebeling 2022-03-19 16:54:27 +01:00
parent a0459de4d5
commit 7a2fdf3fd6
4 changed files with 70 additions and 1 deletions

View file

@ -20,6 +20,7 @@
#include <QNetworkAccessManager>
#include <QNetworkRequest>
#include <QSslConfiguration>
#include "httpget.h"
#include "Logger.h"
@ -27,6 +28,7 @@
QString HttpGet::m_globalUserAgent; //< globally set user agent for requests
QDir HttpGet::m_globalCache; //< global cach path value for new objects
QNetworkProxy HttpGet::m_globalProxy;
QList<QSslCertificate> HttpGet::m_acceptedClientCerts;
HttpGet::HttpGet(QObject *parent)
: QObject(parent),
@ -211,9 +213,30 @@ void HttpGet::startRequest(QUrl url)
connect(m_reply, &QNetworkReply::errorOccurred, this, &HttpGet::networkError);
#endif
connect(m_reply, &QNetworkReply::downloadProgress, this, &HttpGet::downloadProgress);
connect(m_reply, &QNetworkReply::sslErrors, this, &HttpGet::gotSslError);
}
void HttpGet::gotSslError(const QList<QSslError> &errors)
{
LOG_WARNING() << "Got SSL error" << errors;
// if this is a cert error, and only if we already accepted a remote cert
// ignore the error.
// This will make QNAM continue the request and finish it.
if (errors.size() == 1
&& errors.at(0).error() == QSslError::UnableToGetLocalIssuerCertificate
&& m_acceptedClientCerts.contains(m_reply->sslConfiguration().peerCertificate())) {
LOG_INFO() << "client cert temporarily trusted by user.";
m_reply->ignoreSslErrors();
}
else {
LOG_ERROR() << m_reply->sslConfiguration().peerCertificate().toText();
emit sslError(errors.at(0), m_reply->sslConfiguration().peerCertificate());
}
}
void HttpGet::networkError(QNetworkReply::NetworkError error)
{
LOG_ERROR() << "NetworkError occured:" << error << m_reply->errorString();