c95fe3030c06767b17a7ac2a127792e8888c4c25
[quassel.git] / src / core / coreauthhandler.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "coreauthhandler.h"
22
23 #ifdef HAVE_SSL
24 #  include <QSslSocket>
25 #endif
26
27 #include "core.h"
28 #include "logger.h"
29
30 using namespace Protocol;
31
32 CoreAuthHandler::CoreAuthHandler(QTcpSocket *socket, QObject *parent)
33     : AuthHandler(parent),
34     _peer(0),
35     _magicReceived(false),
36     _legacy(false),
37     _clientRegistered(false),
38     _connectionFeatures(0)
39 {
40     setSocket(socket);
41     connect(socket, SIGNAL(readyRead()), SLOT(onReadyRead()));
42
43     // TODO: Timeout for the handshake phase
44
45 }
46
47
48 void CoreAuthHandler::onReadyRead()
49 {
50     if (socket()->bytesAvailable() < 4)
51         return;
52
53     // once we have selected a peer, we certainly don't want to read more data!
54     if (_peer)
55         return;
56
57     if (!_magicReceived) {
58         quint32 magic;
59         socket()->peek((char*)&magic, 4);
60         magic = qFromBigEndian<quint32>(magic);
61
62         if ((magic & 0xffffff00) != Protocol::magic) {
63             // no magic, assume legacy protocol
64             qDebug() << "Legacy client detected, switching to compatibility mode";
65             _legacy = true;
66             RemotePeer *peer = PeerFactory::createPeer(PeerFactory::ProtoDescriptor(Protocol::LegacyProtocol, 0), this, socket(), Compressor::NoCompression, this);
67             connect(peer, SIGNAL(protocolVersionMismatch(int,int)), SLOT(onProtocolVersionMismatch(int,int)));
68             setPeer(peer);
69             return;
70         }
71
72         _magicReceived = true;
73         quint8 features = magic & 0xff;
74         // figure out which connection features we'll use based on the client's support
75         if (Core::sslSupported() && (features & Protocol::Encryption))
76             _connectionFeatures |= Protocol::Encryption;
77         if (features & Protocol::Compression)
78             _connectionFeatures |= Protocol::Compression;
79
80         socket()->read((char*)&magic, 4); // read the 4 bytes we've just peeked at
81     }
82
83     // read the list of protocols supported by the client
84     while (socket()->bytesAvailable() >= 4 && _supportedProtos.size() < 16) { // sanity check
85         quint32 data;
86         socket()->read((char*)&data, 4);
87         data = qFromBigEndian<quint32>(data);
88
89         Protocol::Type type = static_cast<Protocol::Type>(data & 0xff);
90         quint16 protoFeatures = static_cast<quint16>(data>>8 & 0xffff);
91         _supportedProtos.append(PeerFactory::ProtoDescriptor(type, protoFeatures));
92
93         if (data >= 0x80000000) { // last protocol
94             Compressor::CompressionLevel level;
95             if (_connectionFeatures & Protocol::Compression)
96                 level = Compressor::BestCompression;
97             else
98                 level = Compressor::NoCompression;
99
100             RemotePeer *peer = PeerFactory::createPeer(_supportedProtos, this, socket(), level, this);
101             if (!peer) {
102                 qWarning() << "Received invalid handshake data from client" << socket()->peerAddress().toString();
103                 close();
104                 return;
105             }
106
107             if (peer->protocol() == Protocol::LegacyProtocol) {
108                 _legacy = true;
109                 connect(peer, SIGNAL(protocolVersionMismatch(int,int)), SLOT(onProtocolVersionMismatch(int,int)));
110             }
111             setPeer(peer);
112
113             // inform the client
114             quint32 reply = peer->protocol() | peer->enabledFeatures()<<8 | _connectionFeatures<<24;
115             reply = qToBigEndian<quint32>(reply);
116             socket()->write((char*)&reply, 4);
117             socket()->flush();
118
119             if (!_legacy && (_connectionFeatures & Protocol::Encryption))
120                 startSsl(); // legacy peer enables it later
121             return;
122         }
123     }
124 }
125
126
127 void CoreAuthHandler::setPeer(RemotePeer *peer)
128 {
129     qDebug().nospace() << "Using " << qPrintable(peer->protocolName()) << "...";
130
131     _peer = peer;
132     disconnect(socket(), SIGNAL(readyRead()), this, SLOT(onReadyRead()));
133 }
134
135 // only in compat mode
136 void CoreAuthHandler::onProtocolVersionMismatch(int actual, int expected)
137 {
138     qWarning() << qPrintable(tr("Client")) << _peer->description() << qPrintable(tr("too old, rejecting."));
139     QString errorString = tr("<b>Your Quassel Client is too old!</b><br>"
140                              "This core needs at least client/core protocol version %1 (got: %2).<br>"
141                              "Please consider upgrading your client.").arg(expected, actual);
142     _peer->dispatch(ClientDenied(errorString));
143     _peer->close();
144 }
145
146
147 bool CoreAuthHandler::checkClientRegistered()
148 {
149     if (!_clientRegistered) {
150         qWarning() << qPrintable(tr("Client")) << qPrintable(socket()->peerAddress().toString()) << qPrintable(tr("did not send a registration message before trying to login, rejecting."));
151         _peer->dispatch(ClientDenied(tr("<b>Client not initialized!</b><br>You need to send a registration message before trying to login.")));
152         _peer->close();
153         return false;
154     }
155     return true;
156 }
157
158
159 void CoreAuthHandler::handle(const RegisterClient &msg)
160 {
161     bool useSsl;
162     if (_legacy)
163         useSsl = Core::sslSupported() && msg.sslSupported;
164     else
165         useSsl = _connectionFeatures & Protocol::Encryption;
166
167     if (Quassel::isOptionSet("require-ssl") && !useSsl && !_peer->isLocal()) {
168         quInfo() << qPrintable(tr("SSL required but non-SSL connection attempt from %1").arg(socket()->peerAddress().toString()));
169         _peer->dispatch(ClientDenied(tr("<b>SSL is required!</b><br>You need to use SSL in order to connect to this core.")));
170         _peer->close();
171         return;
172     }
173
174     QVariantList backends;
175     bool configured = Core::isConfigured();
176     if (!configured)
177         backends = Core::backendInfo();
178
179     // useSsl is only used for the legacy protocol
180     _peer->dispatch(ClientRegistered(Quassel::features(), configured, backends, useSsl));
181
182     if (_legacy && useSsl)
183         startSsl();
184
185     _clientRegistered = true;
186 }
187
188
189 void CoreAuthHandler::handle(const SetupData &msg)
190 {
191     if (!checkClientRegistered())
192         return;
193
194     QString result = Core::setup(msg.adminUser, msg.adminPassword, msg.backend, msg.setupData);
195     if (!result.isEmpty())
196         _peer->dispatch(SetupFailed(result));
197     else
198         _peer->dispatch(SetupDone());
199 }
200
201
202 void CoreAuthHandler::handle(const Login &msg)
203 {
204     if (!checkClientRegistered())
205         return;
206
207     UserId uid = Core::validateUser(msg.user, msg.password);
208     if (uid == 0) {
209         quInfo() << qPrintable(tr("Invalid login attempt from %1 as \"%2\"").arg(socket()->peerAddress().toString(), msg.user));
210         _peer->dispatch(LoginFailed(tr("<b>Invalid username or password!</b><br>The username/password combination you supplied could not be found in the database.")));
211         return;
212     }
213     _peer->dispatch(LoginSuccess());
214
215     quInfo() << qPrintable(tr("Client %1 initialized and authenticated successfully as \"%2\" (UserId: %3).").arg(socket()->peerAddress().toString(), msg.user, QString::number(uid.toInt())));
216
217     disconnect(socket(), 0, this, 0);
218     disconnect(_peer, 0, this, 0);
219     _peer->setParent(0); // Core needs to take care of this one now!
220
221     socket()->flush(); // Make sure all data is sent before handing over the peer (and socket) to the session thread (bug 682)
222     emit handshakeComplete(_peer, uid);
223 }
224
225
226 /*** SSL Stuff ***/
227
228 void CoreAuthHandler::startSsl()
229 {
230     #ifdef HAVE_SSL
231     QSslSocket *sslSocket = qobject_cast<QSslSocket *>(socket());
232     Q_ASSERT(sslSocket);
233
234     qDebug() << qPrintable(tr("Starting encryption for Client:"))  << _peer->description();
235     connect(sslSocket, SIGNAL(sslErrors(const QList<QSslError> &)), SLOT(onSslErrors()));
236     sslSocket->flush(); // ensure that the write cache is flushed before we switch to ssl (bug 682)
237     sslSocket->startServerEncryption();
238     #endif /* HAVE_SSL */
239 }
240
241
242 #ifdef HAVE_SSL
243 void CoreAuthHandler::onSslErrors()
244 {
245     QSslSocket *sslSocket = qobject_cast<QSslSocket *>(socket());
246     Q_ASSERT(sslSocket);
247     sslSocket->ignoreSslErrors();
248 }
249 #endif
250