c7e1b351117f1c093f091b88903d903a0ee743cc
[quassel.git] / src / core / sslserver.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include "sslserver.h"
22
23 #ifdef HAVE_SSL
24 #  include <QSslSocket>
25 #endif
26
27 #include <QFile>
28 #include <QDebug>
29
30 #include "logger.h"
31 #include "util.h"
32
33 #ifdef HAVE_SSL
34
35 SslServer::SslServer(QObject *parent)
36   : QTcpServer(parent)
37 {
38   QFile certFile(quasselDir().absolutePath() + "/quasselCert.pem");
39   certFile.open(QIODevice::ReadOnly);
40   _cert = QSslCertificate(&certFile);
41   certFile.close();
42
43   certFile.open(QIODevice::ReadOnly);
44   _key = QSslKey(&certFile, QSsl::Rsa);
45   certFile.close();
46
47   _certIsValid = !_cert.isNull() && _cert.isValid() && !_key.isNull();
48   if(!_certIsValid) {
49     qWarning() << "SslServer: SSL Certificate is either missing or has a wrong format!\n"
50                << "          Quassel Core will still work, but cannot provide SSL for client connections.\n"
51                << "          Please see http://quassel-irc.org/faq/cert to learn how to enable SSL support.";
52   }
53 }
54
55 QTcpSocket *SslServer::nextPendingConnection() {
56   if(_pendingConnections.isEmpty())
57     return 0;
58   else
59     return _pendingConnections.takeFirst();
60 }
61
62 void SslServer::incomingConnection(int socketDescriptor) {
63   QSslSocket *serverSocket = new QSslSocket(this);
64   if(serverSocket->setSocketDescriptor(socketDescriptor)) {
65     if(certIsValid()) {
66       serverSocket->setLocalCertificate(_cert);
67       serverSocket->setPrivateKey(_key);
68     }
69     _pendingConnections << serverSocket;
70     emit newConnection();
71   } else {
72     delete serverSocket;
73   }
74 }
75
76 #endif // HAVE_SSL