Authenticator code cleanup as per review
[quassel.git] / src / common / protocols / legacy / legacypeer.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 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 <QHostAddress>
22 #include <QDataStream>
23 #include <QTcpSocket>
24
25 #include "legacypeer.h"
26
27 /* version.inc is no longer used for this */
28 const uint protocolVersion = 10;
29 const uint coreNeedsProtocol = protocolVersion;
30 const uint clientNeedsProtocol = protocolVersion;
31
32 using namespace Protocol;
33
34 LegacyPeer::LegacyPeer(::AuthHandler *authHandler, QTcpSocket *socket, Compressor::CompressionLevel level, QObject *parent)
35     : RemotePeer(authHandler, socket, level, parent),
36     _useCompression(false)
37 {
38
39 }
40
41
42 void LegacyPeer::setSignalProxy(::SignalProxy *proxy)
43 {
44     RemotePeer::setSignalProxy(proxy);
45
46     // FIXME only in compat mode
47     if (proxy) {
48         // enable compression now if requested - the initial handshake is uncompressed in the legacy protocol!
49         _useCompression = socket()->property("UseCompression").toBool();
50         if (_useCompression)
51             qDebug() << "Using compression for peer:" << qPrintable(socket()->peerAddress().toString());
52     }
53
54 }
55
56
57 void LegacyPeer::processMessage(const QByteArray &msg)
58 {
59     QDataStream stream(msg);
60     stream.setVersion(QDataStream::Qt_4_2);
61
62     QVariant item;
63     if (_useCompression) {
64         QByteArray rawItem;
65         stream >> rawItem;
66
67         int nbytes = rawItem.size();
68         if (nbytes <= 4) {
69             const char *data = rawItem.constData();
70             if (nbytes < 4 || (data[0] != 0 || data[1] != 0 || data[2] != 0 || data[3] != 0)) {
71                 close("Peer sent corrupted compressed data!");
72                 return;
73             }
74         }
75
76         rawItem = qUncompress(rawItem);
77
78         QDataStream itemStream(&rawItem, QIODevice::ReadOnly);
79         itemStream.setVersion(QDataStream::Qt_4_2);
80         itemStream >> item;
81     }
82     else {
83         stream >> item;
84     }
85
86     if (stream.status() != QDataStream::Ok || !item.isValid()) {
87         close("Peer sent corrupt data: unable to load QVariant!");
88         return;
89     }
90
91     // if no sigproxy is set, we're in handshake mode and let the data be handled elsewhere
92     if (!signalProxy())
93         handleHandshakeMessage(item);
94     else
95         handlePackedFunc(item);
96 }
97
98
99 void LegacyPeer::writeMessage(const QVariant &item)
100 {
101     QByteArray block;
102     QDataStream out(&block, QIODevice::WriteOnly);
103     out.setVersion(QDataStream::Qt_4_2);
104
105     if (_useCompression) {
106         QByteArray rawItem;
107         QDataStream itemStream(&rawItem, QIODevice::WriteOnly);
108         itemStream.setVersion(QDataStream::Qt_4_2);
109         itemStream << item;
110
111         rawItem = qCompress(rawItem);
112
113         out << rawItem;
114     }
115     else {
116         out << item;
117     }
118
119     writeMessage(block);
120 }
121
122
123 /*** Handshake messages ***/
124
125 /* These messages are transmitted during handshake phase, which in case of the legacy protocol means they have
126  * a structure different from those being used after the handshake.
127  * Also, the legacy handshake does not fully match the redesigned one, so we'll have to do various mappings here.
128  */
129
130 void LegacyPeer::handleHandshakeMessage(const QVariant &msg)
131 {
132     QVariantMap m = msg.toMap();
133
134     QString msgType = m["MsgType"].toString();
135     if (msgType.isEmpty()) {
136         emit protocolError(tr("Invalid handshake message!"));
137         return;
138     }
139
140     if (msgType == "ClientInit") {
141         // FIXME only in compat mode
142         uint ver = m["ProtocolVersion"].toUInt();
143         if (ver < coreNeedsProtocol) {
144             emit protocolVersionMismatch((int)ver, (int)coreNeedsProtocol);
145             return;
146         }
147
148 #ifndef QT_NO_COMPRESS
149         // FIXME only in compat mode
150         if (m["UseCompression"].toBool()) {
151             socket()->setProperty("UseCompression", true);
152         }
153 #endif
154         handle(RegisterClient(m["ClientVersion"].toString(), m["ClientDate"].toString(), m["UseSsl"].toBool()));
155     }
156
157     else if (msgType == "ClientInitReject") {
158         handle(ClientDenied(m["Error"].toString()));
159     }
160
161     else if (msgType == "ClientInitAck") {
162         // FIXME only in compat mode
163         uint ver = m["ProtocolVersion"].toUInt(); // actually an UInt
164         if (ver < clientNeedsProtocol) {
165             emit protocolVersionMismatch((int)ver, (int)clientNeedsProtocol);
166             return;
167         }
168 #ifndef QT_NO_COMPRESS
169         if (m["SupportsCompression"].toBool())
170             socket()->setProperty("UseCompression", true);
171 #endif
172
173         handle(ClientRegistered(m["CoreFeatures"].toUInt(), m["Configured"].toBool(), m["StorageBackends"].toList(), m["SupportSsl"].toBool(), m["Authenticators"].toList()));
174     }
175
176     else if (msgType == "CoreSetupData") {
177         QVariantMap map = m["SetupData"].toMap();
178         handle(SetupData(map["AdminUser"].toString(), map["AdminPasswd"].toString(), map["Backend"].toString(), map["ConnectionProperties"].toMap(), map["Authenticator"].toString(), map["AuthProperties"].toMap()));
179     }
180
181     else if (msgType == "CoreSetupReject") {
182         handle(SetupFailed(m["Error"].toString()));
183     }
184
185     else if (msgType == "CoreSetupAck") {
186         handle(SetupDone());
187     }
188
189     else if (msgType == "ClientLogin") {
190         handle(Login(m["User"].toString(), m["Password"].toString()));
191     }
192
193     else if (msgType == "ClientLoginReject") {
194         handle(LoginFailed(m["Error"].toString()));
195     }
196
197     else if (msgType == "ClientLoginAck") {
198         handle(LoginSuccess());
199     }
200
201     else if (msgType == "SessionInit") {
202         QVariantMap map = m["SessionState"].toMap();
203         handle(SessionState(map["Identities"].toList(), map["BufferInfos"].toList(), map["NetworkIds"].toList()));
204     }
205
206     else {
207         emit protocolError(tr("Unknown protocol message of type %1").arg(msgType));
208     }
209 }
210
211
212 void LegacyPeer::dispatch(const RegisterClient &msg) {
213     QVariantMap m;
214     m["MsgType"] = "ClientInit";
215     m["ClientVersion"] = msg.clientVersion;
216     m["ClientDate"] = msg.buildDate;
217
218     // FIXME only in compat mode
219     m["ProtocolVersion"] = protocolVersion;
220     m["UseSsl"] = msg.sslSupported;
221 #ifndef QT_NO_COMPRESS
222     m["UseCompression"] = true;
223 #else
224     m["UseCompression"] = false;
225 #endif
226
227     writeMessage(m);
228 }
229
230
231 void LegacyPeer::dispatch(const ClientDenied &msg) {
232     QVariantMap m;
233     m["MsgType"] = "ClientInitReject";
234     m["Error"] = msg.errorString;
235
236     writeMessage(m);
237 }
238
239
240 void LegacyPeer::dispatch(const ClientRegistered &msg) {
241     QVariantMap m;
242     m["MsgType"] = "ClientInitAck";
243     m["CoreFeatures"] = msg.coreFeatures;
244     m["StorageBackends"] = msg.backendInfo;
245     m["Authenticators"] = msg.authenticatorInfo;
246
247     // FIXME only in compat mode
248     m["ProtocolVersion"] = protocolVersion;
249     m["SupportSsl"] = msg.sslSupported;
250     m["SupportsCompression"] = socket()->property("UseCompression").toBool(); // this property gets already set in the ClientInit handler
251
252     // This is only used for display by really old v10 clients (pre-0.5), and we no longer set this
253     m["CoreInfo"] = QString();
254
255     m["LoginEnabled"] = m["Configured"] = msg.coreConfigured;
256
257     writeMessage(m);
258 }
259
260
261 void LegacyPeer::dispatch(const SetupData &msg)
262 {
263     QVariantMap map;
264     map["AdminUser"] = msg.adminUser;
265     map["AdminPasswd"] = msg.adminPassword;
266     map["Backend"] = msg.backend;
267     map["ConnectionProperties"] = msg.setupData;
268
269     // Auth backend properties.
270     map["Authenticator"] = msg.authenticator;
271     map["AuthProperties"] = msg.authSetupData;
272
273     QVariantMap m;
274     m["MsgType"] = "CoreSetupData";
275     m["SetupData"] = map;
276     writeMessage(m);
277 }
278
279
280 void LegacyPeer::dispatch(const SetupFailed &msg)
281 {
282     QVariantMap m;
283     m["MsgType"] = "CoreSetupReject";
284     m["Error"] = msg.errorString;
285
286     writeMessage(m);
287 }
288
289
290 void LegacyPeer::dispatch(const SetupDone &msg)
291 {
292     Q_UNUSED(msg)
293
294     QVariantMap m;
295     m["MsgType"] = "CoreSetupAck";
296
297     writeMessage(m);
298 }
299
300
301 void LegacyPeer::dispatch(const Login &msg)
302 {
303     QVariantMap m;
304     m["MsgType"] = "ClientLogin";
305     m["User"] = msg.user;
306     m["Password"] = msg.password;
307
308     writeMessage(m);
309 }
310
311
312 void LegacyPeer::dispatch(const LoginFailed &msg)
313 {
314     QVariantMap m;
315     m["MsgType"] = "ClientLoginReject";
316     m["Error"] = msg.errorString;
317
318     writeMessage(m);
319 }
320
321
322 void LegacyPeer::dispatch(const LoginSuccess &msg)
323 {
324     Q_UNUSED(msg)
325
326     QVariantMap m;
327     m["MsgType"] = "ClientLoginAck";
328
329     writeMessage(m);
330 }
331
332
333 void LegacyPeer::dispatch(const SessionState &msg)
334 {
335     QVariantMap m;
336     m["MsgType"] = "SessionInit";
337
338     QVariantMap map;
339     map["BufferInfos"] = msg.bufferInfos;
340     map["NetworkIds"] = msg.networkIds;
341     map["Identities"] = msg.identities;
342     m["SessionState"] = map;
343
344     writeMessage(m);
345 }
346
347
348 /*** Standard messages ***/
349
350 void LegacyPeer::handlePackedFunc(const QVariant &packedFunc)
351 {
352     QVariantList params(packedFunc.toList());
353
354     if (params.isEmpty()) {
355         qWarning() << Q_FUNC_INFO << "Received incompatible data:" << packedFunc;
356         return;
357     }
358
359     // TODO: make sure that this is a valid request type
360     RequestType requestType = (RequestType)params.takeFirst().value<int>();
361     switch (requestType) {
362         case Sync: {
363             if (params.count() < 3) {
364                 qWarning() << Q_FUNC_INFO << "Received invalid sync call:" << params;
365                 return;
366             }
367             QByteArray className = params.takeFirst().toByteArray();
368             QString objectName = params.takeFirst().toString();
369             QByteArray slotName = params.takeFirst().toByteArray();
370             handle(Protocol::SyncMessage(className, objectName, slotName, params));
371             break;
372         }
373         case RpcCall: {
374             if (params.empty()) {
375                 qWarning() << Q_FUNC_INFO << "Received empty RPC call!";
376                 return;
377             }
378             QByteArray slotName = params.takeFirst().toByteArray();
379             handle(Protocol::RpcCall(slotName, params));
380             break;
381         }
382         case InitRequest: {
383             if (params.count() != 2) {
384                 qWarning() << Q_FUNC_INFO << "Received invalid InitRequest:" << params;
385                 return;
386             }
387             QByteArray className = params[0].toByteArray();
388             QString objectName = params[1].toString();
389             handle(Protocol::InitRequest(className, objectName));
390             break;
391         }
392         case InitData: {
393             if (params.count() != 3) {
394                 qWarning() << Q_FUNC_INFO << "Received invalid InitData:" << params;
395                 return;
396             }
397             QByteArray className = params[0].toByteArray();
398             QString objectName = params[1].toString();
399             QVariantMap initData = params[2].toMap();
400
401             // we need to special-case IrcUsersAndChannels here, since the format changed
402             if (className == "Network")
403                 fromLegacyIrcUsersAndChannels(initData);
404             handle(Protocol::InitData(className, objectName, initData));
405             break;
406         }
407         case HeartBeat: {
408             if (params.count() != 1) {
409                 qWarning() << Q_FUNC_INFO << "Received invalid HeartBeat:" << params;
410                 return;
411             }
412             // The legacy protocol would only send a QTime, no QDateTime
413             // so we assume it's sent today, which works in exactly the same cases as it did in the old implementation
414             QDateTime dateTime = QDateTime::currentDateTime().toUTC();
415             dateTime.setTime(params[0].toTime());
416             handle(Protocol::HeartBeat(dateTime));
417             break;
418         }
419         case HeartBeatReply: {
420             if (params.count() != 1) {
421                 qWarning() << Q_FUNC_INFO << "Received invalid HeartBeat:" << params;
422                 return;
423             }
424             // The legacy protocol would only send a QTime, no QDateTime
425             // so we assume it's sent today, which works in exactly the same cases as it did in the old implementation
426             QDateTime dateTime = QDateTime::currentDateTime().toUTC();
427             dateTime.setTime(params[0].toTime());
428             handle(Protocol::HeartBeatReply(dateTime));
429             break;
430         }
431
432     }
433 }
434
435
436 void LegacyPeer::dispatch(const Protocol::SyncMessage &msg)
437 {
438     dispatchPackedFunc(QVariantList() << (qint16)Sync << msg.className << msg.objectName << msg.slotName << msg.params);
439 }
440
441
442 void LegacyPeer::dispatch(const Protocol::RpcCall &msg)
443 {
444     dispatchPackedFunc(QVariantList() << (qint16)RpcCall << msg.slotName << msg.params);
445 }
446
447
448 void LegacyPeer::dispatch(const Protocol::InitRequest &msg)
449 {
450     dispatchPackedFunc(QVariantList() << (qint16)InitRequest << msg.className << msg.objectName);
451 }
452
453
454 void LegacyPeer::dispatch(const Protocol::InitData &msg)
455 {
456     // We need to special-case IrcUsersAndChannels, as the format changed
457     if (msg.className == "Network") {
458         QVariantMap initData = msg.initData;
459         toLegacyIrcUsersAndChannels(initData);
460         dispatchPackedFunc(QVariantList() << (qint16)InitData << msg.className << msg.objectName << initData);
461     }
462     else
463         dispatchPackedFunc(QVariantList() << (qint16)InitData << msg.className << msg.objectName << msg.initData);
464 }
465
466
467 void LegacyPeer::dispatch(const Protocol::HeartBeat &msg)
468 {
469     dispatchPackedFunc(QVariantList() << (qint16)HeartBeat << msg.timestamp.time());
470 }
471
472
473 void LegacyPeer::dispatch(const Protocol::HeartBeatReply &msg)
474 {
475     dispatchPackedFunc(QVariantList() << (qint16)HeartBeatReply << msg.timestamp.time());
476 }
477
478
479 void LegacyPeer::dispatchPackedFunc(const QVariantList &packedFunc)
480 {
481     writeMessage(QVariant(packedFunc));
482 }
483
484
485 // Handle the changed format for Network's initData
486 // cf. Network::initIrcUsersAndChannels()
487 void LegacyPeer::fromLegacyIrcUsersAndChannels(QVariantMap &initData)
488 {
489     const QVariantMap &legacyMap = initData["IrcUsersAndChannels"].toMap();
490     QVariantMap newMap;
491
492     QHash<QString, QVariantList> users;
493     foreach(const QVariant &v, legacyMap["users"].toMap().values()) {
494         const QVariantMap &map = v.toMap();
495         foreach(const QString &key, map.keys())
496             users[key] << map[key];
497     }
498     QVariantMap userMap;
499     foreach(const QString &key, users.keys())
500         userMap[key] = users[key];
501     newMap["Users"] = userMap;
502
503     QHash<QString, QVariantList> channels;
504     foreach(const QVariant &v, legacyMap["channels"].toMap().values()) {
505         const QVariantMap &map = v.toMap();
506         foreach(const QString &key, map.keys())
507             channels[key] << map[key];
508     }
509     QVariantMap channelMap;
510     foreach(const QString &key, channels.keys())
511         channelMap[key] = channels[key];
512     newMap["Channels"] = channelMap;
513
514     initData["IrcUsersAndChannels"] = newMap;
515 }
516
517
518 void LegacyPeer::toLegacyIrcUsersAndChannels(QVariantMap &initData)
519 {
520     const QVariantMap &usersAndChannels = initData["IrcUsersAndChannels"].toMap();
521     QVariantMap legacyMap;
522
523     // toMap() and toList() are cheap, so no need to copy to a hash
524
525     QVariantMap userMap;
526     const QVariantMap &users = usersAndChannels["Users"].toMap();
527
528     int size = users["nick"].toList().size(); // we know this key exists
529     for(int i = 0; i < size; i++) {
530         QVariantMap map;
531         foreach(const QString &key, users.keys())
532             map[key] = users[key].toList().at(i);
533         QString hostmask = QString("%1!%2@%3").arg(map["nick"].toString(), map["user"].toString(), map["host"].toString());
534         userMap[hostmask.toLower()] = map;
535     }
536     legacyMap["users"] = userMap;
537
538     QVariantMap channelMap;
539     const QVariantMap &channels = usersAndChannels["Channels"].toMap();
540
541     size = channels["name"].toList().size();
542     for(int i = 0; i < size; i++) {
543         QVariantMap map;
544         foreach(const QString &key, channels.keys())
545             map[key] = channels[key].toList().at(i);
546         channelMap[map["name"].toString().toLower()] = map;
547     }
548     legacyMap["channels"] = channelMap;
549
550     initData["IrcUsersAndChannels"] = legacyMap;
551 }