X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fsslserver.cpp;h=7fee3ca59dd98e73f9251f6291f91548d419e60e;hp=46b8ee60909d2bbe817be60b50a55af832359b13;hb=4faeafb743766b345d5cadc5289840a981413853;hpb=f824db0e31b54969e0b7fa0b5405b1e9173d482c diff --git a/src/core/sslserver.cpp b/src/core/sslserver.cpp index 46b8ee60..7fee3ca5 100644 --- a/src/core/sslserver.cpp +++ b/src/core/sslserver.cpp @@ -35,21 +35,7 @@ SslServer::SslServer(QObject *parent) : QTcpServer(parent) { - QFile certFile(quasselDir().absolutePath() + "/quasselCert.pem"); - certFile.open(QIODevice::ReadOnly); - _cert = QSslCertificate(&certFile); - certFile.close(); - - certFile.open(QIODevice::ReadOnly); - _key = QSslKey(&certFile, QSsl::Rsa); - certFile.close(); - - _certIsValid = !_cert.isNull() && _cert.isValid() && !_key.isNull(); - if(!_certIsValid) { - qWarning() << "SslServer: SSL Certificate is either missing or has a wrong format!\n" - << " Quassel Core will still work, but cannot provide SSL for client connections.\n" - << " Please see http://quassel-irc.org/faq/cert to learn how to enable SSL support."; - } + setCertificate(quasselDir().absolutePath() + "/quasselCert.pem"); } QTcpSocket *SslServer::nextPendingConnection() { @@ -73,4 +59,35 @@ void SslServer::incomingConnection(int socketDescriptor) { } } +bool SslServer::setCertificate(const QString &path) { + _certIsValid = false; + + if (path.isNull()) { + return false; + } + + QFile certFile(path); + if (! certFile.exists()) { + qWarning() << "SslServer: Certificate file" << qPrintable(path) << "does not exist"; + return false; + } + + certFile.open(QIODevice::ReadOnly); + _cert = QSslCertificate(&certFile); + + certFile.reset(); + _key = QSslKey(&certFile, QSsl::Rsa); + certFile.close(); + + if(_cert.isNull() || !_cert.isValid() || _key.isNull()) { + qWarning() << "SslServer: SSL Certificate is either missing or has a wrong format!\n" + << " Quassel Core will still work, but cannot provide SSL for client connections.\n" + << " Please see http://quassel-irc.org/faq/cert to learn how to enable SSL support."; + } else { + _certIsValid = true; + } + + return _certIsValid; +} + #endif // HAVE_SSL