core: Handle single-parameter PONG replies
[quassel.git] / src / core / coresessioneventprocessor.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 "coresessioneventprocessor.h"
22
23 #include "coreirclisthelper.h"
24 #include "corenetwork.h"
25 #include "coresession.h"
26 #include "coretransfer.h"
27 #include "coretransfermanager.h"
28 #include "ctcpevent.h"
29 #include "ircevent.h"
30 #include "ircuser.h"
31 #include "logger.h"
32 #include "messageevent.h"
33 #include "netsplit.h"
34 #include "quassel.h"
35
36 #ifdef HAVE_QCA2
37 #  include "keyevent.h"
38 #endif
39
40 // IRCv3 capabilities
41 #include "irccap.h"
42
43 CoreSessionEventProcessor::CoreSessionEventProcessor(CoreSession *session)
44     : BasicHandler("handleCtcp", session),
45     _coreSession(session)
46 {
47     connect(coreSession(), SIGNAL(networkDisconnected(NetworkId)), this, SLOT(destroyNetsplits(NetworkId)));
48     connect(this, SIGNAL(newEvent(Event *)), coreSession()->eventManager(), SLOT(postEvent(Event *)));
49 }
50
51
52 bool CoreSessionEventProcessor::checkParamCount(IrcEvent *e, int minParams)
53 {
54     if (e->params().count() < minParams) {
55         if (e->type() == EventManager::IrcEventNumeric) {
56             qWarning() << "Command " << static_cast<IrcEventNumeric *>(e)->number() << " requires " << minParams << "params, got: " << e->params();
57         }
58         else {
59             QString name = coreSession()->eventManager()->enumName(e->type());
60             qWarning() << qPrintable(name) << "requires" << minParams << "params, got:" << e->params();
61         }
62         e->stop();
63         return false;
64     }
65     return true;
66 }
67
68
69 void CoreSessionEventProcessor::tryNextNick(NetworkEvent *e, const QString &errnick, bool erroneus)
70 {
71     QStringList desiredNicks = coreSession()->identity(e->network()->identity())->nicks();
72     int nextNickIdx = desiredNicks.indexOf(errnick) + 1;
73     QString nextNick;
74     if (nextNickIdx > 0 && desiredNicks.size() > nextNickIdx) {
75         nextNick = desiredNicks[nextNickIdx];
76     }
77     else {
78         if (erroneus) {
79             // FIXME Make this an ErrorEvent or something like that, so it's translated in the client
80             MessageEvent *msgEvent = new MessageEvent(Message::Error, e->network(),
81                 tr("No free and valid nicks in nicklist found. use: /nick <othernick> to continue"),
82                 QString(), QString(), Message::None, e->timestamp());
83             emit newEvent(msgEvent);
84             return;
85         }
86         else {
87             nextNick = errnick + "_";
88         }
89     }
90     // FIXME Use a proper output event for this
91     coreNetwork(e)->putRawLine("NICK " + coreNetwork(e)->encodeServerString(nextNick));
92 }
93
94
95 void CoreSessionEventProcessor::processIrcEventNumeric(IrcEventNumeric *e)
96 {
97     switch (e->number()) {
98     // SASL authentication replies
99     // See: http://ircv3.net/specs/extensions/sasl-3.1.html
100
101     //case 900:  // RPL_LOGGEDIN
102     //case 901:  // RPL_LOGGEDOUT
103     // Don't use 900 or 901 for updating the local hostmask.  Unreal 3.2 gives it as the IP address
104     // even when cloaked.
105     // Every other reply should result in moving on
106     // TODO Handle errors to stop connection if appropriate
107     case 902:  // ERR_NICKLOCKED
108     case 903:  // RPL_SASLSUCCESS
109     case 904:  // ERR_SASLFAIL
110     case 905:  // ERR_SASLTOOLONG
111     case 906:  // ERR_SASLABORTED
112     case 907:  // ERR_SASLALREADY
113         // Move on to the next capability
114         coreNetwork(e)->sendNextCap();
115         break;
116
117     default:
118         break;
119     }
120 }
121
122
123 void CoreSessionEventProcessor::processIrcEventAuthenticate(IrcEvent *e)
124 {
125     if (!checkParamCount(e, 1))
126         return;
127
128     if (e->params().at(0) != "+") {
129         qWarning() << "Invalid AUTHENTICATE" << e;
130         return;
131     }
132
133     CoreNetwork *net = coreNetwork(e);
134
135 #ifdef HAVE_SSL
136     if (net->identityPtr()->sslCert().isNull()) {
137 #endif
138         QString construct = net->saslAccount();
139         construct.append(QChar(QChar::Null));
140         construct.append(net->saslAccount());
141         construct.append(QChar(QChar::Null));
142         construct.append(net->saslPassword());
143         QByteArray saslData = QByteArray(construct.toLatin1().toBase64());
144         saslData.prepend("AUTHENTICATE ");
145         net->putRawLine(saslData);
146 #ifdef HAVE_SSL
147     } else {
148         net->putRawLine("AUTHENTICATE +");
149     }
150 #endif
151 }
152
153 void CoreSessionEventProcessor::processIrcEventCap(IrcEvent *e)
154 {
155     // Handle capability negotiation
156     // See: http://ircv3.net/specs/core/capability-negotiation-3.2.html
157     // And: http://ircv3.net/specs/core/capability-negotiation-3.1.html
158
159     // All commands require at least 2 parameters
160     if (!checkParamCount(e, 2))
161         return;
162
163     CoreNetwork *coreNet = coreNetwork(e);
164     QString capCommand = e->params().at(1).trimmed().toUpper();
165     if (capCommand == "LS" || capCommand == "NEW") {
166         // Either we've gotten a list of capabilities, or new capabilities we may want
167         // Server: CAP * LS * :multi-prefix extended-join account-notify batch invite-notify tls
168         // Server: CAP * LS * :cap-notify server-time example.org/dummy-cap=dummyvalue example.org/second-dummy-cap
169         // Server: CAP * LS :userhost-in-names sasl=EXTERNAL,DH-AES,DH-BLOWFISH,ECDSA-NIST256P-CHALLENGE,PLAIN
170         bool capListFinished;
171         QStringList availableCaps;
172         if (e->params().count() == 4) {
173             // Middle of multi-line reply, ignore the asterisk
174             capListFinished = false;
175             availableCaps = e->params().at(3).split(' ');
176         } else {
177             // Single line reply
178             capListFinished = true;
179             if (e->params().count() >= 3) {
180                 // Some capabilities are specified, add them
181                 availableCaps = e->params().at(2).split(' ');
182             } else {
183                 // No capabilities available, add an empty list
184                 availableCaps = QStringList();
185             }
186         }
187         // Sort capabilities before requesting for consistency among networks.  This may avoid
188         // unexpected cases when some networks offer capabilities in a different order than
189         // others.  It also looks nicer in logs.  Not required.
190         availableCaps.sort();
191         // Store what capabilities are available
192         QString availableCapName, availableCapValue;
193         for (int i = 0; i < availableCaps.count(); ++i) {
194             // Capability may include values, e.g. CAP * LS :multi-prefix sasl=EXTERNAL
195             // Capability name comes before the first '='.  If no '=' exists, this gets the
196             // whole string instead.
197             availableCapName = availableCaps[i].section('=', 0, 0).trimmed();
198             // Some capabilities include multiple key=value pairs in the listing,
199             // e.g. "sts=duration=31536000,port=6697"
200             // Include everything after the first equal sign as part of the value.  If no '='
201             // exists, this gets an empty string.
202             availableCapValue = availableCaps[i].section('=', 1).trimmed();
203             // Only add the capability if it's non-empty
204             if (!availableCapName.isEmpty()) {
205                 coreNet->addCap(availableCapName, availableCapValue);
206             }
207         }
208
209         // Begin capability requests when capability listing complete
210         if (capListFinished)
211             coreNet->beginCapNegotiation();
212     } else if (capCommand == "ACK") {
213         // CAP ACK requires at least 3 parameters (no empty response allowed)
214         if (!checkParamCount(e, 3)) {
215             // If an invalid reply is sent, try to continue rather than getting stuck.
216             coreNet->sendNextCap();
217             return;
218         }
219
220         // Server: CAP * ACK :multi-prefix sasl
221         // Got the capabilities we want, handle as needed.
222         QStringList acceptedCaps;
223         acceptedCaps = e->params().at(2).split(' ');
224
225         // Store what capability was acknowledged
226         QString acceptedCap;
227
228         // Keep track of whether or not a capability requires further configuration.  Due to queuing
229         // logic in CoreNetwork::queueCap(), this shouldn't ever happen when more than one
230         // capability is requested, but it's better to handle edge cases or faulty servers.
231         bool capsRequireConfiguration = false;
232
233         for (int i = 0; i < acceptedCaps.count(); ++i) {
234             acceptedCap = acceptedCaps[i].trimmed().toLower();
235             // Mark this cap as accepted
236             coreNet->acknowledgeCap(acceptedCap);
237             if (!capsRequireConfiguration &&
238                     coreNet->capsRequiringConfiguration.contains(acceptedCap)) {
239                 capsRequireConfiguration = true;
240                 // Some capabilities (e.g. SASL) require further messages to finish.  If so, do NOT
241                 // send the next capability; it will be handled elsewhere in CoreNetwork.
242                 // Otherwise, allow moving on to the next capability.
243             }
244         }
245
246         if (!capsRequireConfiguration) {
247             // No additional configuration required, move on to the next capability
248             coreNet->sendNextCap();
249         }
250     } else if (capCommand == "NAK" || capCommand == "DEL") {
251         // CAP NAK/DEL require at least 3 parameters (no empty response allowed)
252         if (!checkParamCount(e, 3)) {
253             if (capCommand == "NAK") {
254                 // If an invalid reply is sent, try to continue rather than getting stuck.  This
255                 // only matters for denied caps, not removed caps.
256                 coreNet->sendNextCap();
257             }
258             return;
259         }
260
261         // Either something went wrong with the capabilities, or they are no longer supported
262         // > For CAP NAK
263         // Server: CAP * NAK :multi-prefix sasl
264         // > For CAP DEL
265         // Server: :irc.example.com CAP modernclient DEL :multi-prefix sasl
266         // CAP NAK and CAP DEL replies are always single-line
267
268         QStringList removedCaps;
269         removedCaps = e->params().at(2).split(' ');
270
271         // Store the capabilities that were denied or removed
272         QString removedCap;
273         for (int i = 0; i < removedCaps.count(); ++i) {
274             removedCap = removedCaps[i].trimmed().toLower();
275             // Mark this cap as removed.
276             // For CAP DEL, removes it from use.
277             // For CAP NAK when received before negotiation enabled these capabilities, removeCap()
278             // should do nothing.  This merely guards against non-spec servers sending an
279             // unsolicited CAP ACK then later removing that capability.
280             coreNet->removeCap(removedCap);
281         }
282
283         if (capCommand == "NAK") {
284             // Continue negotiation only if this is the result of denied caps, not removed caps
285             if (removedCaps.count() > 1) {
286                 // We've received a CAP NAK reply to multiple capabilities at once.  Unfortunately,
287                 // we don't know which capability failed and which ones are valid to re-request, so
288                 // individually retry each capability from the failed bundle.
289                 // See CoreNetwork::retryCapsIndividually() for more details.
290                 coreNet->retryCapsIndividually();
291                 // Still need to call sendNextCap() to carry on.
292             }
293             // Carry on with negotiation
294             coreNet->sendNextCap();
295         }
296     }
297 }
298
299 /* IRCv3 account-notify
300  * Log in:  ":nick!user@host ACCOUNT accountname"
301  * Log out: ":nick!user@host ACCOUNT *" */
302 void CoreSessionEventProcessor::processIrcEventAccount(IrcEvent *e)
303 {
304     if (!checkParamCount(e, 1))
305         return;
306
307     IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
308     if (ircuser) {
309         // WHOX uses '0' to indicate logged-out, account-notify and extended-join uses '*'.
310         // As '*' is used internally to represent logged-out, no need to handle that differently.
311         ircuser->setAccount(e->params().at(0));
312     } else {
313         qDebug() << "Received account-notify data for unknown user" << e->prefix();
314     }
315 }
316
317 /* IRCv3 away-notify - ":nick!user@host AWAY [:message]" */
318 void CoreSessionEventProcessor::processIrcEventAway(IrcEvent *e)
319 {
320     if (!checkParamCount(e, 1))
321         return;
322     // Don't use checkParamCount(e, 2) since the message is optional.  Some servers respond in a way
323     // that it counts as two parameters, but we shouldn't rely on that.
324
325     // Nick is sent as part of parameters in order to split user/server decoding
326     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
327     if (ircuser) {
328         // If two parameters are sent -and- the second parameter isn't empty, then user is away.
329         // Otherwise, mark them as not away.
330         if (e->params().count() >= 2 && !e->params().at(1).isEmpty()) {
331             ircuser->setAway(true);
332             ircuser->setAwayMessage(e->params().at(1));
333         } else {
334             ircuser->setAway(false);
335         }
336     } else {
337         qDebug() << "Received away-notify data for unknown user" << e->params().at(0);
338     }
339 }
340
341 /* IRCv3 chghost - ":nick!user@host CHGHOST newuser new.host.goes.here" */
342 void CoreSessionEventProcessor::processIrcEventChghost(IrcEvent *e)
343 {
344     if (!checkParamCount(e, 2))
345         return;
346
347     IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
348     if (ircuser) {
349         // Update with new user/hostname information.  setUser/setHost handles checking what
350         // actually changed.
351         ircuser->setUser(e->params().at(0));
352         ircuser->setHost(e->params().at(1));
353     } else {
354         qDebug() << "Received chghost data for unknown user" << e->prefix();
355     }
356 }
357
358 void CoreSessionEventProcessor::processIrcEventInvite(IrcEvent *e)
359 {
360     if (checkParamCount(e, 2)) {
361         e->network()->updateNickFromMask(e->prefix());
362     }
363 }
364
365 /*  JOIN: ":<nick!user@host> JOIN <channel>" */
366 void CoreSessionEventProcessor::processIrcEventJoin(IrcEvent *e)
367 {
368     if (e->testFlag(EventManager::Fake)) // generated by handleEarlyNetsplitJoin
369         return;
370
371     if (!checkParamCount(e, 1))
372         return;
373
374     CoreNetwork *net = coreNetwork(e);
375     QString channel = e->params()[0];
376     IrcUser *ircuser = net->updateNickFromMask(e->prefix());
377
378     if (net->capEnabled(IrcCap::EXTENDED_JOIN)) {
379         if (e->params().count() < 3) {
380             // Some IRC servers don't send extended-join events in all situations.  Rather than
381             // ignore the join entirely, treat it as a regular join with a debug-level log entry.
382             // See:  https://github.com/inspircd/inspircd/issues/821
383             qDebug() << "extended-join requires 3 params, got:" << e->params() << ", handling as a "
384                         "regular join";
385         } else {
386             // If logged in, :nick!user@host JOIN #channelname accountname :Real Name
387             // If logged out, :nick!user@host JOIN #channelname * :Real Name
388             // See:  http://ircv3.net/specs/extensions/extended-join-3.1.html
389             // WHOX uses '0' to indicate logged-out, account-notify and extended-join uses '*'.
390             // As '*' is used internally to represent logged-out, no need to handle that differently.
391             ircuser->setAccount(e->params()[1]);
392             // Update the user's real name, too
393             ircuser->setRealName(e->params()[2]);
394         }
395     }
396     // Else :nick!user@host JOIN #channelname
397
398     bool handledByNetsplit = false;
399     foreach(Netsplit* n, _netsplits.value(e->network())) {
400         handledByNetsplit = n->userJoined(e->prefix(), channel);
401         if (handledByNetsplit)
402             break;
403     }
404
405     // If using away-notify, check new users.  Works around buggy IRC servers
406     // forgetting to send :away messages for users who join channels when away.
407     if (net->capEnabled(IrcCap::AWAY_NOTIFY)) {
408         net->queueAutoWhoOneshot(ircuser->nick());
409     }
410
411     if (!handledByNetsplit)
412         ircuser->joinChannel(channel);
413     else
414         e->setFlag(EventManager::Netsplit);
415
416     if (net->isMe(ircuser)) {
417         net->setChannelJoined(channel);
418         // Mark the message as Self
419         e->setFlag(EventManager::Self);
420         // FIXME use event
421         net->putRawLine(net->serverEncode("MODE " + channel)); // we want to know the modes of the channel we just joined, so we ask politely
422     }
423 }
424
425
426 void CoreSessionEventProcessor::lateProcessIrcEventKick(IrcEvent *e)
427 {
428     if (checkParamCount(e, 2)) {
429         e->network()->updateNickFromMask(e->prefix());
430         IrcUser *victim = e->network()->ircUser(e->params().at(1));
431         if (victim) {
432             victim->partChannel(e->params().at(0));
433             //if(e->network()->isMe(victim)) e->network()->setKickedFromChannel(channel);
434         }
435     }
436 }
437
438
439 void CoreSessionEventProcessor::processIrcEventMode(IrcEvent *e)
440 {
441     if (!checkParamCount(e, 2))
442         return;
443
444     if (e->network()->isChannelName(e->params().first())) {
445         // Channel Modes
446
447         IrcChannel *channel = e->network()->ircChannel(e->params()[0]);
448         if (!channel) {
449             // we received mode information for a channel we're not in. that means probably we've just been kicked out or something like that
450             // anyways: we don't have a place to store the data --> discard the info.
451             return;
452         }
453
454         QString modes = e->params()[1];
455         bool add = true;
456         int paramOffset = 2;
457         for (int c = 0; c < modes.length(); c++) {
458             if (modes[c] == '+') {
459                 add = true;
460                 continue;
461             }
462             if (modes[c] == '-') {
463                 add = false;
464                 continue;
465             }
466
467             if (e->network()->prefixModes().contains(modes[c])) {
468                 // user channel modes (op, voice, etc...)
469                 if (paramOffset < e->params().count()) {
470                     IrcUser *ircUser = e->network()->ircUser(e->params()[paramOffset]);
471                     if (!ircUser) {
472                         qWarning() << Q_FUNC_INFO << "Unknown IrcUser:" << e->params()[paramOffset];
473                     }
474                     else {
475                         if (add) {
476                             bool handledByNetsplit = false;
477                             QHash<QString, Netsplit *> splits = _netsplits.value(e->network());
478                             foreach(Netsplit* n, _netsplits.value(e->network())) {
479                                 handledByNetsplit = n->userAlreadyJoined(ircUser->hostmask(), channel->name());
480                                 if (handledByNetsplit) {
481                                     n->addMode(ircUser->hostmask(), channel->name(), QString(modes[c]));
482                                     break;
483                                 }
484                             }
485                             if (!handledByNetsplit)
486                                 channel->addUserMode(ircUser, QString(modes[c]));
487                         }
488                         else
489                             channel->removeUserMode(ircUser, QString(modes[c]));
490                     }
491                 }
492                 else {
493                     qWarning() << "Received MODE with too few parameters:" << e->params();
494                 }
495                 ++paramOffset;
496             }
497             else {
498                 // regular channel modes
499                 QString value;
500                 Network::ChannelModeType modeType = e->network()->channelModeType(modes[c]);
501                 if (modeType == Network::A_CHANMODE || modeType == Network::B_CHANMODE || (modeType == Network::C_CHANMODE && add)) {
502                     if (paramOffset < e->params().count()) {
503                         value = e->params()[paramOffset];
504                     }
505                     else {
506                         qWarning() << "Received MODE with too few parameters:" << e->params();
507                     }
508                     ++paramOffset;
509                 }
510
511                 if (add)
512                     channel->addChannelMode(modes[c], value);
513                 else
514                     channel->removeChannelMode(modes[c], value);
515             }
516         }
517     }
518     else {
519         // pure User Modes
520         IrcUser *ircUser = e->network()->newIrcUser(e->params().first());
521         QString modeString(e->params()[1]);
522         QString addModes;
523         QString removeModes;
524         bool add = false;
525         for (int c = 0; c < modeString.count(); c++) {
526             if (modeString[c] == '+') {
527                 add = true;
528                 continue;
529             }
530             if (modeString[c] == '-') {
531                 add = false;
532                 continue;
533             }
534             if (add)
535                 addModes += modeString[c];
536             else
537                 removeModes += modeString[c];
538         }
539         if (!addModes.isEmpty())
540             ircUser->addUserModes(addModes);
541         if (!removeModes.isEmpty())
542             ircUser->removeUserModes(removeModes);
543
544         if (e->network()->isMe(ircUser)) {
545             // Mark the message as Self
546             e->setFlag(EventManager::Self);
547             coreNetwork(e)->updatePersistentModes(addModes, removeModes);
548         }
549     }
550 }
551
552
553 void CoreSessionEventProcessor::processIrcEventNick(IrcEvent *e)
554 {
555     if (checkParamCount(e, 1)) {
556         IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
557         if (!ircuser) {
558             qWarning() << Q_FUNC_INFO << "Unknown IrcUser!";
559             return;
560         }
561
562         if (e->network()->isMe(ircuser)) {
563             // Mark the message as Self
564             e->setFlag(EventManager::Self);
565         }
566
567         // Actual processing is handled in lateProcessIrcEventNick(), this just sets the event flag
568     }
569 }
570
571
572 void CoreSessionEventProcessor::lateProcessIrcEventNick(IrcEvent *e)
573 {
574     if (checkParamCount(e, 1)) {
575         IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
576         if (!ircuser) {
577             qWarning() << Q_FUNC_INFO << "Unknown IrcUser!";
578             return;
579         }
580         QString newnick = e->params().at(0);
581         QString oldnick = ircuser->nick();
582
583         // the order is cruicial
584         // otherwise the client would rename the buffer, see that the assigned ircuser doesn't match anymore
585         // and remove the ircuser from the querybuffer leading to a wrong on/offline state
586         ircuser->setNick(newnick);
587         coreSession()->renameBuffer(e->networkId(), newnick, oldnick);
588     }
589 }
590
591
592 void CoreSessionEventProcessor::processIrcEventPart(IrcEvent *e)
593 {
594     if (checkParamCount(e, 1)) {
595         IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
596         if (!ircuser) {
597             qWarning() << Q_FUNC_INFO<< "Unknown IrcUser!";
598             return;
599         }
600
601         if (e->network()->isMe(ircuser)) {
602             // Mark the message as Self
603             e->setFlag(EventManager::Self);
604         }
605
606         // Actual processing is handled in lateProcessIrcEventNick(), this just sets the event flag
607     }
608 }
609
610
611 void CoreSessionEventProcessor::lateProcessIrcEventPart(IrcEvent *e)
612 {
613     if (checkParamCount(e, 1)) {
614         IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
615         if (!ircuser) {
616             qWarning() << Q_FUNC_INFO<< "Unknown IrcUser!";
617             return;
618         }
619         QString channel = e->params().at(0);
620         ircuser->partChannel(channel);
621         if (e->network()->isMe(ircuser)) {
622             qobject_cast<CoreNetwork *>(e->network())->setChannelParted(channel);
623         }
624     }
625 }
626
627
628 void CoreSessionEventProcessor::processIrcEventPing(IrcEvent *e)
629 {
630     QString param = e->params().count() ? e->params().first() : QString();
631     // FIXME use events
632     // Take priority so this won't get stuck behind other queued messages.
633     coreNetwork(e)->putRawLine("PONG " + coreNetwork(e)->serverEncode(param), true);
634 }
635
636
637 void CoreSessionEventProcessor::processIrcEventPong(IrcEvent *e)
638 {
639     // Ensure we get at least one parameter
640     if (!checkParamCount(e, 1))
641         return;
642
643     // Some IRC servers respond with only one parameter, others respond with two, with the latter
644     // being the text sent.  Handle both situations.
645     QString timestamp;
646     if (e->params().count() < 2) {
647         // Only one parameter received
648         // :localhost PONG 02:43:49.565
649         timestamp = e->params().at(0);
650     } else {
651         // Two parameters received, pick the second
652         // :localhost PONG localhost :02:43:49.565
653         timestamp = e->params().at(1);
654     }
655
656     // The server is supposed to send back what we passed as parameter, and we send a timestamp.
657     // However, using quote and whatnot, one can send arbitrary pings, and IRC servers may decide to
658     // ignore our requests entirely and send whatever they want, so we have to do some sanity
659     // checks.
660     //
661     // Attempt to parse the timestamp
662     QTime sendTime = QTime::fromString(timestamp, "hh:mm:ss.zzz");
663     if (sendTime.isValid()) {
664         // Calculate latency from time difference, divided by 2 to account for round-trip time
665         e->network()->setLatency(sendTime.msecsTo(QTime::currentTime()) / 2);
666     } else {
667         // Just in case it's a wonky server, log a debug message to make this easier to track down
668         qDebug() << "Received valid PONG with invalid timestamp, parameters are" << e->params();
669     }
670 }
671
672
673 void CoreSessionEventProcessor::processIrcEventQuit(IrcEvent *e)
674 {
675     IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
676     if (!ircuser)
677         return;
678
679     if (e->network()->isMe(ircuser)) {
680         // Mark the message as Self
681         e->setFlag(EventManager::Self);
682     }
683
684     QString msg;
685     if (e->params().count() > 0)
686         msg = e->params()[0];
687
688     // check if netsplit
689     if (Netsplit::isNetsplit(msg)) {
690         Netsplit *n;
691         if (!_netsplits[e->network()].contains(msg)) {
692             n = new Netsplit(e->network(), this);
693             connect(n, SIGNAL(finished()), this, SLOT(handleNetsplitFinished()));
694             connect(n, SIGNAL(netsplitJoin(Network*, QString, QStringList, QStringList, QString)),
695                 this, SLOT(handleNetsplitJoin(Network*, QString, QStringList, QStringList, QString)));
696             connect(n, SIGNAL(netsplitQuit(Network*, QString, QStringList, QString)),
697                 this, SLOT(handleNetsplitQuit(Network*, QString, QStringList, QString)));
698             connect(n, SIGNAL(earlyJoin(Network*, QString, QStringList, QStringList)),
699                 this, SLOT(handleEarlyNetsplitJoin(Network*, QString, QStringList, QStringList)));
700             _netsplits[e->network()].insert(msg, n);
701         }
702         else {
703             n = _netsplits[e->network()][msg];
704         }
705         // add this user to the netsplit
706         n->userQuit(e->prefix(), ircuser->channels(), msg);
707         e->setFlag(EventManager::Netsplit);
708     }
709     // normal quit is handled in lateProcessIrcEventQuit()
710 }
711
712
713 void CoreSessionEventProcessor::lateProcessIrcEventQuit(IrcEvent *e)
714 {
715     if (e->testFlag(EventManager::Netsplit))
716         return;
717
718     IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
719     if (!ircuser)
720         return;
721
722     ircuser->quit();
723 }
724
725
726 void CoreSessionEventProcessor::processIrcEventTopic(IrcEvent *e)
727 {
728     if (checkParamCount(e, 2)) {
729         IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix());
730
731         if (e->network()->isMe(ircuser)) {
732             // Mark the message as Self
733             e->setFlag(EventManager::Self);
734         }
735
736         IrcChannel *channel = e->network()->ircChannel(e->params().at(0));
737         if (channel)
738             channel->setTopic(e->params().at(1));
739     }
740 }
741
742 /* ERROR - "ERROR :reason"
743 Example:  ERROR :Closing Link: nickname[xxx.xxx.xxx.xxx] (Large base64 image paste.)
744 See https://tools.ietf.org/html/rfc2812#section-3.7.4 */
745 void CoreSessionEventProcessor::processIrcEventError(IrcEvent *e)
746 {
747     if (!checkParamCount(e, 1))
748         return;
749
750     if (coreNetwork(e)->disconnectExpected()) {
751         // During QUIT, the server should send an error (often, but not always, "Closing Link"). As
752         // we're expecting it, don't show this to the user.
753         e->setFlag(EventManager::Silent);
754     }
755 }
756
757
758 #ifdef HAVE_QCA2
759 void CoreSessionEventProcessor::processKeyEvent(KeyEvent *e)
760 {
761     if (!Cipher::neededFeaturesAvailable()) {
762         emit newEvent(new MessageEvent(Message::Error, e->network(), tr("Unable to perform key exchange, missing qca-ossl plugin."), e->prefix(), e->target(), Message::None, e->timestamp()));
763         return;
764     }
765     CoreNetwork *net = qobject_cast<CoreNetwork*>(e->network());
766     Cipher *c = net->cipher(e->target());
767     if (!c) // happens when there is no CoreIrcChannel for the target (i.e. never?)
768         return;
769
770     if (e->exchangeType() == KeyEvent::Init) {
771         QByteArray pubKey = c->parseInitKeyX(e->key());
772         if (pubKey.isEmpty()) {
773             emit newEvent(new MessageEvent(Message::Error, e->network(), tr("Unable to parse the DH1080_INIT. Key exchange failed."), e->prefix(), e->target(), Message::None, e->timestamp()));
774             return;
775         } else {
776             net->setCipherKey(e->target(), c->key());
777             emit newEvent(new MessageEvent(Message::Info, e->network(), tr("Your key is set and messages will be encrypted."), e->prefix(), e->target(), Message::None, e->timestamp()));
778             QList<QByteArray> p;
779             p << net->serverEncode(e->target()) << net->serverEncode("DH1080_FINISH ")+pubKey;
780             net->putCmd("NOTICE", p);
781         }
782     } else {
783         if (c->parseFinishKeyX(e->key())) {
784             net->setCipherKey(e->target(), c->key());
785             emit newEvent(new MessageEvent(Message::Info, e->network(), tr("Your key is set and messages will be encrypted."), e->prefix(), e->target(), Message::None, e->timestamp()));
786         } else {
787             emit newEvent(new MessageEvent(Message::Info, e->network(), tr("Failed to parse DH1080_FINISH. Key exchange failed."), e->prefix(), e->target(), Message::None, e->timestamp()));
788         }
789     }
790 }
791 #endif
792
793
794 /* RPL_WELCOME */
795 void CoreSessionEventProcessor::processIrcEvent001(IrcEventNumeric *e)
796 {
797     e->network()->setCurrentServer(e->prefix());
798     e->network()->setMyNick(e->target());
799 }
800
801
802 /* RPL_ISUPPORT */
803 // TODO Complete 005 handling, also use sensible defaults for non-sent stuff
804 void CoreSessionEventProcessor::processIrcEvent005(IrcEvent *e)
805 {
806     if (!checkParamCount(e, 1))
807         return;
808
809     QString key, value;
810     for (int i = 0; i < e->params().count() - 1; i++) {
811         QString key = e->params()[i].section("=", 0, 0);
812         QString value = e->params()[i].section("=", 1);
813         e->network()->addSupport(key, value);
814     }
815
816     /* determine our prefixes here to get an accurate result */
817     e->network()->determinePrefixes();
818 }
819
820
821 /* RPL_UMODEIS - "<user_modes> [<user_mode_params>]" */
822 void CoreSessionEventProcessor::processIrcEvent221(IrcEvent *)
823 {
824     // TODO: save information in network object
825 }
826
827
828 /* RPL_STATSCONN - "Highest connection cout: 8000 (7999 clients)" */
829 void CoreSessionEventProcessor::processIrcEvent250(IrcEvent *)
830 {
831     // TODO: save information in network object
832 }
833
834
835 /* RPL_LOCALUSERS - "Current local user: 5024  Max: 7999 */
836 void CoreSessionEventProcessor::processIrcEvent265(IrcEvent *)
837 {
838     // TODO: save information in network object
839 }
840
841
842 /* RPL_GLOBALUSERS - "Current global users: 46093  Max: 47650" */
843 void CoreSessionEventProcessor::processIrcEvent266(IrcEvent *)
844 {
845     // TODO: save information in network object
846 }
847
848
849 /*
850 WHOIS-Message:
851    Replies 311 - 313, 317 - 319 are all replies generated in response to a WHOIS message.
852   and 301 (RPL_AWAY)
853               "<nick> :<away message>"
854 WHO-Message:
855    Replies 352 and 315 paired are used to answer a WHO message.
856
857 WHOWAS-Message:
858    Replies 314 and 369 are responses to a WHOWAS message.
859
860 */
861
862 /* RPL_AWAY - "<nick> :<away message>" */
863 void CoreSessionEventProcessor::processIrcEvent301(IrcEvent *e)
864 {
865     if (!checkParamCount(e, 2))
866         return;
867
868     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
869     if (ircuser) {
870         ircuser->setAway(true);
871         ircuser->setAwayMessage(e->params().at(1));
872         // lastAwayMessageTime is set in EventStringifier::processIrcEvent301(), no need to set it
873         // here too
874         //ircuser->setLastAwayMessageTime(now);
875     }
876 }
877
878
879 /* RPL_UNAWAY - ":You are no longer marked as being away" */
880 void CoreSessionEventProcessor::processIrcEvent305(IrcEvent *e)
881 {
882     IrcUser *me = e->network()->me();
883     if (me)
884         me->setAway(false);
885
886     if (e->network()->autoAwayActive()) {
887         e->network()->setAutoAwayActive(false);
888         e->setFlag(EventManager::Silent);
889     }
890 }
891
892
893 /* RPL_NOWAWAY - ":You have been marked as being away" */
894 void CoreSessionEventProcessor::processIrcEvent306(IrcEvent *e)
895 {
896     IrcUser *me = e->network()->me();
897     if (me)
898         me->setAway(true);
899 }
900
901
902 /* RPL_WHOISSERVICE - "<user> is registered nick" */
903 void CoreSessionEventProcessor::processIrcEvent307(IrcEvent *e)
904 {
905     if (!checkParamCount(e, 1))
906         return;
907
908     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
909     if (ircuser)
910         ircuser->setWhoisServiceReply(e->params().join(" "));
911 }
912
913
914 /* RPL_SUSERHOST - "<user> is available for help." */
915 void CoreSessionEventProcessor::processIrcEvent310(IrcEvent *e)
916 {
917     if (!checkParamCount(e, 1))
918         return;
919
920     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
921     if (ircuser)
922         ircuser->setSuserHost(e->params().join(" "));
923 }
924
925
926 /*  RPL_WHOISUSER - "<nick> <user> <host> * :<real name>" */
927 void CoreSessionEventProcessor::processIrcEvent311(IrcEvent *e)
928 {
929     if (!checkParamCount(e, 3))
930         return;
931
932     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
933     if (ircuser) {
934         ircuser->setUser(e->params().at(1));
935         ircuser->setHost(e->params().at(2));
936         ircuser->setRealName(e->params().last());
937     }
938 }
939
940
941 /*  RPL_WHOISSERVER -  "<nick> <server> :<server info>" */
942 void CoreSessionEventProcessor::processIrcEvent312(IrcEvent *e)
943 {
944     if (!checkParamCount(e, 2))
945         return;
946
947     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
948     if (ircuser)
949         ircuser->setServer(e->params().at(1));
950 }
951
952
953 /*  RPL_WHOISOPERATOR - "<nick> :is an IRC operator" */
954 void CoreSessionEventProcessor::processIrcEvent313(IrcEvent *e)
955 {
956     if (!checkParamCount(e, 1))
957         return;
958
959     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
960     if (ircuser)
961         ircuser->setIrcOperator(e->params().last());
962 }
963
964
965 /*  RPL_ENDOFWHO: "<name> :End of WHO list" */
966 void CoreSessionEventProcessor::processIrcEvent315(IrcEvent *e)
967 {
968     if (!checkParamCount(e, 1))
969         return;
970
971     if (coreNetwork(e)->setAutoWhoDone(e->params()[0]))
972         e->setFlag(EventManager::Silent);
973 }
974
975
976 /*  RPL_WHOISIDLE - "<nick> <integer> :seconds idle"
977    (real life: "<nick> <integer> <integer> :seconds idle, signon time) */
978 void CoreSessionEventProcessor::processIrcEvent317(IrcEvent *e)
979 {
980     if (!checkParamCount(e, 2))
981         return;
982
983     QDateTime loginTime;
984
985     int idleSecs = e->params()[1].toInt();
986     if (e->params().count() > 3) { // if we have more then 3 params we have the above mentioned "real life" situation
987         // Allow for 64-bit time
988         qint64 logintime = e->params()[2].toLongLong();
989         // Time in IRC protocol is defined as seconds.  Convert from seconds instead.
990         // See https://doc.qt.io/qt-5/qdatetime.html#fromSecsSinceEpoch
991 #if QT_VERSION >= 0x050800
992         loginTime = QDateTime::fromSecsSinceEpoch(logintime);
993 #else
994         // fromSecsSinceEpoch() was added in Qt 5.8.  Manually downconvert to seconds for
995         // now.
996         // See https://doc.qt.io/qt-5/qdatetime.html#fromMSecsSinceEpoch
997         loginTime = QDateTime::fromMSecsSinceEpoch((qint64)(logintime * 1000));
998 #endif
999     }
1000
1001     IrcUser *ircuser = e->network()->ircUser(e->params()[0]);
1002     if (ircuser) {
1003         ircuser->setIdleTime(e->timestamp().addSecs(-idleSecs));
1004         if (loginTime.isValid())
1005             ircuser->setLoginTime(loginTime);
1006     }
1007 }
1008
1009
1010 /* RPL_LIST -  "<channel> <# visible> :<topic>" */
1011 void CoreSessionEventProcessor::processIrcEvent322(IrcEvent *e)
1012 {
1013     if (!checkParamCount(e, 1))
1014         return;
1015
1016     QString channelName;
1017     quint32 userCount = 0;
1018     QString topic;
1019
1020     switch (e->params().count()) {
1021     case 3:
1022         topic = e->params()[2];
1023         [[clang::fallthrough]];
1024     case 2:
1025         userCount = e->params()[1].toUInt();
1026         [[clang::fallthrough]];
1027     case 1:
1028         channelName = e->params()[0];
1029         [[clang::fallthrough]];
1030     default:
1031         break;
1032     }
1033     if (coreSession()->ircListHelper()->addChannel(e->networkId(), channelName, userCount, topic))
1034         e->stop();  // consumed by IrcListHelper, so don't further process/show this event
1035 }
1036
1037
1038 /* RPL_LISTEND ":End of LIST" */
1039 void CoreSessionEventProcessor::processIrcEvent323(IrcEvent *e)
1040 {
1041     if (!checkParamCount(e, 1))
1042         return;
1043
1044     if (coreSession()->ircListHelper()->endOfChannelList(e->networkId()))
1045         e->stop();  // consumed by IrcListHelper, so don't further process/show this event
1046 }
1047
1048
1049 /* RPL_CHANNELMODEIS - "<channel> <mode> <mode params>" */
1050 void CoreSessionEventProcessor::processIrcEvent324(IrcEvent *e)
1051 {
1052     processIrcEventMode(e);
1053 }
1054
1055
1056 /*  RPL_WHOISACCOUNT - "<nick> <account> :is authed as" */
1057 void CoreSessionEventProcessor::processIrcEvent330(IrcEvent *e)
1058 {
1059     // Though the ":is authed as" remark should always be there, we should handle cases when it's
1060     // not included, too.
1061     if (!checkParamCount(e, 2))
1062         return;
1063
1064     IrcUser *ircuser = e->network()->ircUser(e->params().at(0));
1065     if (ircuser) {
1066         ircuser->setAccount(e->params().at(1));
1067     }
1068 }
1069
1070
1071 /* RPL_NOTOPIC */
1072 void CoreSessionEventProcessor::processIrcEvent331(IrcEvent *e)
1073 {
1074     if (!checkParamCount(e, 1))
1075         return;
1076
1077     IrcChannel *chan = e->network()->ircChannel(e->params()[0]);
1078     if (chan)
1079         chan->setTopic(QString());
1080 }
1081
1082
1083 /* RPL_TOPIC */
1084 void CoreSessionEventProcessor::processIrcEvent332(IrcEvent *e)
1085 {
1086     if (!checkParamCount(e, 2))
1087         return;
1088
1089     IrcChannel *chan = e->network()->ircChannel(e->params()[0]);
1090     if (chan)
1091         chan->setTopic(e->params()[1]);
1092 }
1093
1094
1095 /*  RPL_WHOREPLY: "<channel> <user> <host> <server> <nick>
1096               ( "H" / "G" > ["*"] [ ( "@" / "+" ) ] :<hopcount> <real name>" */
1097 void CoreSessionEventProcessor::processIrcEvent352(IrcEvent *e)
1098 {
1099     if (!checkParamCount(e, 6))
1100         return;
1101
1102     QString channel = e->params()[0];
1103     // Store the nick separate from ircuser for AutoWho check below
1104     QString nick = e->params()[4];
1105     IrcUser *ircuser = e->network()->ircUser(nick);
1106     if (ircuser) {
1107         // Only process the WHO information if an IRC user exists.  Don't create an IRC user here;
1108         // there's no way to track when the user quits, which would leave a phantom IrcUser lying
1109         // around.
1110         // NOTE:  Whenever MONITOR support is introduced, the IrcUser will be created by an
1111         // RPL_MONONLINE numeric before any WHO commands are run.
1112         processWhoInformation(e->network(), channel, ircuser, e->params()[3], e->params()[1],
1113                 e->params()[2], e->params()[5], e->params().last().section(" ", 1));
1114     }
1115
1116     // Check if channel name has a who in progress.
1117     // If not, then check if user nickname has a who in progress.  Use nick directly; don't use
1118     // ircuser as that may be deleted (e.g. nick joins channel, leaves before WHO reply received).
1119     if (coreNetwork(e)->isAutoWhoInProgress(channel) ||
1120         (coreNetwork(e)->isAutoWhoInProgress(nick))) {
1121         e->setFlag(EventManager::Silent);
1122     }
1123 }
1124
1125
1126 /* RPL_NAMREPLY */
1127 void CoreSessionEventProcessor::processIrcEvent353(IrcEvent *e)
1128 {
1129     if (!checkParamCount(e, 3))
1130         return;
1131
1132     // param[0] is either "=", "*" or "@" indicating a public, private or secret channel
1133     // we don't use this information at the time beeing
1134     QString channelname = e->params()[1];
1135
1136     IrcChannel *channel = e->network()->ircChannel(channelname);
1137     if (!channel) {
1138         qWarning() << Q_FUNC_INFO << "Received unknown target channel:" << channelname;
1139         return;
1140     }
1141
1142     QStringList nicks;
1143     QStringList modes;
1144
1145     // Cache result of multi-prefix to avoid unneeded casts and lookups with each iteration.
1146     bool _useCapMultiPrefix = coreNetwork(e)->capEnabled(IrcCap::MULTI_PREFIX);
1147
1148     foreach(QString nick, e->params()[2].split(' ', QString::SkipEmptyParts)) {
1149         QString mode;
1150
1151         if (_useCapMultiPrefix) {
1152             // If multi-prefix is enabled, all modes will be sent in NAMES replies.
1153             // :hades.arpa 353 guest = #tethys :~&@%+aji &@Attila @+alyx +KindOne Argure
1154             // See: http://ircv3.net/specs/extensions/multi-prefix-3.1.html
1155             while (e->network()->prefixes().contains(nick[0])) {
1156                 // Mode found in 1 left-most character, add it to the list.
1157                 // Note: sending multiple modes may cause a warning in older clients.
1158                 // In testing, the clients still seemed to function fine.
1159                 mode.append(e->network()->prefixToMode(nick[0]));
1160                 // Remove this mode from the nick
1161                 nick = nick.remove(0, 1);
1162             }
1163         } else if (e->network()->prefixes().contains(nick[0])) {
1164             // Multi-prefix is disabled and a mode prefix was found.
1165             mode = e->network()->prefixToMode(nick[0]);
1166             nick = nick.mid(1);
1167         }
1168
1169         // If userhost-in-names capability is enabled, the following will be
1170         // in the form "nick!user@host" rather than "nick".  This works without
1171         // special handling as the following use nickFromHost() as needed.
1172         // See: http://ircv3.net/specs/extensions/userhost-in-names-3.2.html
1173
1174         nicks << nick;
1175         modes << mode;
1176     }
1177
1178     channel->joinIrcUsers(nicks, modes);
1179 }
1180
1181
1182 /*  RPL_WHOSPCRPL: "<yournick> 152 #<channel> ~<ident> <host> <servname> <nick>
1183                     ("H"/ "G") <account> :<realname>"
1184 <channel> is * if not specific to any channel
1185 <account> is * if not logged in
1186 Follows HexChat's usage of 'whox'
1187 See https://github.com/hexchat/hexchat/blob/c874a9525c9b66f1d5ddcf6c4107d046eba7e2c5/src/common/proto-irc.c#L750
1188 And http://faerion.sourceforge.net/doc/irc/whox.var*/
1189 void CoreSessionEventProcessor::processIrcEvent354(IrcEvent *e)
1190 {
1191     // First only check if at least one parameter exists.  Otherwise, it'll stop the result from
1192     // being shown if the user chooses different parameters.
1193     if (!checkParamCount(e, 1))
1194         return;
1195
1196     if (e->params()[0].toUInt() != IrcCap::ACCOUNT_NOTIFY_WHOX_NUM) {
1197         // Ignore WHOX replies without expected number for we have no idea what fields are specified
1198         return;
1199     }
1200
1201     // Now we're fairly certain this is supposed to be an automated WHOX.  Bail out if it doesn't
1202     // match what we require - 9 parameters.
1203     if (!checkParamCount(e, 9))
1204         return;
1205
1206     QString channel = e->params()[1];
1207     QString nick = e->params()[5];
1208     IrcUser *ircuser = e->network()->ircUser(nick);
1209     if (ircuser) {
1210         // Only process the WHO information if an IRC user exists.  Don't create an IRC user here;
1211         // there's no way to track when the user quits, which would leave a phantom IrcUser lying
1212         // around.
1213         // NOTE:  Whenever MONITOR support is introduced, the IrcUser will be created by an
1214         // RPL_MONONLINE numeric before any WHO commands are run.
1215         processWhoInformation(e->network(), channel, ircuser, e->params()[4], e->params()[2],
1216                 e->params()[3], e->params()[6], e->params().last());
1217         // Don't use .section(" ", 1) with WHOX replies, for there's no hopcount to trim out
1218
1219         // As part of IRCv3 account-notify, check account name
1220         // WHOX uses '0' to indicate logged-out, account-notify and extended-join uses '*'.
1221         QString newAccount = e->params()[7];
1222         if (newAccount != "0") {
1223             // Account logged in, set account name
1224             ircuser->setAccount(newAccount);
1225         } else {
1226             // Account logged out, set account name to logged-out
1227             ircuser->setAccount("*");
1228         }
1229     }
1230
1231     // Check if channel name has a who in progress.
1232     // If not, then check if user nickname has a who in progress.  Use nick directly; don't use
1233     // ircuser as that may be deleted (e.g. nick joins channel, leaves before WHO reply received).
1234     if (coreNetwork(e)->isAutoWhoInProgress(channel) ||
1235         (coreNetwork(e)->isAutoWhoInProgress(nick))) {
1236         e->setFlag(EventManager::Silent);
1237     }
1238 }
1239
1240
1241 void CoreSessionEventProcessor::processWhoInformation (Network *net, const QString &targetChannel, IrcUser *ircUser,
1242                             const QString &server, const QString &user, const QString &host,
1243                             const QString &awayStateAndModes, const QString &realname)
1244 {
1245     ircUser->setUser(user);
1246     ircUser->setHost(host);
1247     ircUser->setServer(server);
1248     ircUser->setRealName(realname);
1249
1250     bool away = awayStateAndModes.contains("G", Qt::CaseInsensitive);
1251     ircUser->setAway(away);
1252
1253     if (net->capEnabled(IrcCap::MULTI_PREFIX)) {
1254         // If multi-prefix is enabled, all modes will be sent in WHO replies.
1255         // :kenny.chatspike.net 352 guest #test grawity broken.symlink *.chatspike.net grawity H@%+ :0 Mantas M.
1256         // See: http://ircv3.net/specs/extensions/multi-prefix-3.1.html
1257         QString uncheckedModes = awayStateAndModes;
1258         QString validModes = QString();
1259         while (!uncheckedModes.isEmpty()) {
1260             // Mode found in 1 left-most character, add it to the list
1261             if (net->prefixes().contains(uncheckedModes[0])) {
1262                 validModes.append(net->prefixToMode(uncheckedModes[0]));
1263             }
1264             // Remove this mode from the list of unchecked modes
1265             uncheckedModes = uncheckedModes.remove(0, 1);
1266         }
1267
1268         // Some IRC servers decide to not follow the spec, returning only -some- of the user
1269         // modes in WHO despite listing them all in NAMES.  For now, assume it can only add
1270         // and not take away.  *sigh*
1271         if (!validModes.isEmpty()) {
1272             if (targetChannel != "*") {
1273                 // Channel-specific modes received, apply to given channel only
1274                 IrcChannel *ircChan = net->ircChannel(targetChannel);
1275                 if (ircChan) {
1276                     // Do one mode at a time
1277                     // TODO Better way of syncing this without breaking protocol?
1278                     for (int i = 0; i < validModes.count(); ++i) {
1279                         ircChan->addUserMode(ircUser, validModes.at(i));
1280                     }
1281                 }
1282             } else {
1283                 // Modes apply to the user everywhere
1284                 ircUser->addUserModes(validModes);
1285             }
1286         }
1287     }
1288 }
1289
1290
1291 /* ERR_NOSUCHCHANNEL - "<channel name> :No such channel" */
1292 void CoreSessionEventProcessor::processIrcEvent403(IrcEventNumeric *e)
1293 {
1294     // If this is the result of an AutoWho, hide it.  It's confusing to show to the user.
1295     // Though the ":No such channel" remark should always be there, we should handle cases when it's
1296     // not included, too.
1297     if (!checkParamCount(e, 1))
1298         return;
1299
1300     QString channelOrNick = e->params()[0];
1301     // Check if channel name has a who in progress.
1302     // If not, then check if user nick exists and has a who in progress.
1303     if (coreNetwork(e)->isAutoWhoInProgress(channelOrNick)) {
1304         qDebug() << "Channel/nick" << channelOrNick << "no longer exists during AutoWho, ignoring";
1305         e->setFlag(EventManager::Silent);
1306     }
1307 }
1308
1309 /* ERR_ERRONEUSNICKNAME */
1310 void CoreSessionEventProcessor::processIrcEvent432(IrcEventNumeric *e)
1311 {
1312     if (!checkParamCount(e, 1))
1313         return;
1314
1315     QString errnick;
1316     if (e->params().count() < 2) {
1317         // handle unreal-ircd bug, where unreal ircd doesnt supply a TARGET in ERR_ERRONEUSNICKNAME during registration phase:
1318         // nick @@@
1319         // :irc.scortum.moep.net 432  @@@ :Erroneous Nickname: Illegal characters
1320         // correct server reply:
1321         // :irc.scortum.moep.net 432 * @@@ :Erroneous Nickname: Illegal characters
1322         e->params().prepend(e->target());
1323         e->setTarget("*");
1324     }
1325     errnick = e->params()[0];
1326
1327     tryNextNick(e, errnick, true /* erroneus */);
1328 }
1329
1330
1331 /* ERR_NICKNAMEINUSE */
1332 void CoreSessionEventProcessor::processIrcEvent433(IrcEventNumeric *e)
1333 {
1334     if (!checkParamCount(e, 1))
1335         return;
1336
1337     QString errnick = e->params().first();
1338
1339     // if there is a problem while connecting to the server -> we handle it
1340     // but only if our connection has not been finished yet...
1341     if (!e->network()->currentServer().isEmpty())
1342         return;
1343
1344     tryNextNick(e, errnick);
1345 }
1346
1347
1348 /* ERR_UNAVAILRESOURCE */
1349 void CoreSessionEventProcessor::processIrcEvent437(IrcEventNumeric *e)
1350 {
1351     if (!checkParamCount(e, 1))
1352         return;
1353
1354     QString errnick = e->params().first();
1355
1356     // if there is a problem while connecting to the server -> we handle it
1357     // but only if our connection has not been finished yet...
1358     if (!e->network()->currentServer().isEmpty())
1359         return;
1360
1361     if (!e->network()->isChannelName(errnick))
1362         tryNextNick(e, errnick);
1363 }
1364
1365
1366 /* template
1367 void CoreSessionEventProcessor::processIrcEvent(IrcEvent *e) {
1368   if(!checkParamCount(e, 1))
1369     return;
1370
1371 }
1372 */
1373
1374 /* Handle signals from Netsplit objects  */
1375
1376 void CoreSessionEventProcessor::handleNetsplitJoin(Network *net,
1377     const QString &channel,
1378     const QStringList &users,
1379     const QStringList &modes,
1380     const QString &quitMessage)
1381 {
1382     IrcChannel *ircChannel = net->ircChannel(channel);
1383     if (!ircChannel) {
1384         return;
1385     }
1386     QList<IrcUser *> ircUsers;
1387     QStringList newModes = modes;
1388     QStringList newUsers = users;
1389
1390     foreach(const QString &user, users) {
1391         IrcUser *iu = net->ircUser(nickFromMask(user));
1392         if (iu)
1393             ircUsers.append(iu);
1394         else { // the user already quit
1395             int idx = users.indexOf(user);
1396             newUsers.removeAt(idx);
1397             newModes.removeAt(idx);
1398         }
1399     }
1400
1401     ircChannel->joinIrcUsers(ircUsers, newModes);
1402     NetworkSplitEvent *event = new NetworkSplitEvent(EventManager::NetworkSplitJoin, net, channel, newUsers, quitMessage);
1403     emit newEvent(event);
1404 }
1405
1406
1407 void CoreSessionEventProcessor::handleNetsplitQuit(Network *net, const QString &channel, const QStringList &users, const QString &quitMessage)
1408 {
1409     NetworkSplitEvent *event = new NetworkSplitEvent(EventManager::NetworkSplitQuit, net, channel, users, quitMessage);
1410     emit newEvent(event);
1411     foreach(QString user, users) {
1412         IrcUser *iu = net->ircUser(nickFromMask(user));
1413         if (iu)
1414             iu->quit();
1415     }
1416 }
1417
1418
1419 void CoreSessionEventProcessor::handleEarlyNetsplitJoin(Network *net, const QString &channel, const QStringList &users, const QStringList &modes)
1420 {
1421     IrcChannel *ircChannel = net->ircChannel(channel);
1422     if (!ircChannel) {
1423         qDebug() << "handleEarlyNetsplitJoin(): channel " << channel << " invalid";
1424         return;
1425     }
1426     QList<NetworkEvent *> events;
1427     QList<IrcUser *> ircUsers;
1428     QStringList newModes = modes;
1429
1430     foreach(QString user, users) {
1431         IrcUser *iu = net->updateNickFromMask(user);
1432         if (iu) {
1433             ircUsers.append(iu);
1434             // fake event for scripts that consume join events
1435             events << new IrcEvent(EventManager::IrcEventJoin, net, iu->hostmask(), QStringList() << channel);
1436         }
1437         else {
1438             newModes.removeAt(users.indexOf(user));
1439         }
1440     }
1441     ircChannel->joinIrcUsers(ircUsers, newModes);
1442     foreach(NetworkEvent *event, events) {
1443         event->setFlag(EventManager::Fake); // ignore this in here!
1444         emit newEvent(event);
1445     }
1446 }
1447
1448
1449 void CoreSessionEventProcessor::handleNetsplitFinished()
1450 {
1451     Netsplit *n = qobject_cast<Netsplit *>(sender());
1452     Q_ASSERT(n);
1453     QHash<QString, Netsplit *> splithash  = _netsplits.take(n->network());
1454     splithash.remove(splithash.key(n));
1455     if (splithash.count())
1456         _netsplits[n->network()] = splithash;
1457     n->deleteLater();
1458 }
1459
1460
1461 void CoreSessionEventProcessor::destroyNetsplits(NetworkId netId)
1462 {
1463     Network *net = coreSession()->network(netId);
1464     if (!net)
1465         return;
1466
1467     QHash<QString, Netsplit *> splits = _netsplits.take(net);
1468     qDeleteAll(splits);
1469 }
1470
1471
1472 /*******************************/
1473 /******** CTCP HANDLING ********/
1474 /*******************************/
1475
1476 void CoreSessionEventProcessor::processCtcpEvent(CtcpEvent *e)
1477 {
1478     if (e->testFlag(EventManager::Self))
1479         return;  // ignore ctcp events generated by user input
1480
1481     if (e->type() != EventManager::CtcpEvent || e->ctcpType() != CtcpEvent::Query)
1482         return;
1483
1484     handle(e->ctcpCmd(), Q_ARG(CtcpEvent *, e));
1485 }
1486
1487
1488 void CoreSessionEventProcessor::defaultHandler(const QString &ctcpCmd, CtcpEvent *e)
1489 {
1490     // This handler is only there to avoid warnings for unknown CTCPs
1491     Q_UNUSED(e);
1492     Q_UNUSED(ctcpCmd);
1493 }
1494
1495
1496 void CoreSessionEventProcessor::handleCtcpAction(CtcpEvent *e)
1497 {
1498     // This handler is only there to feed CLIENTINFO
1499     Q_UNUSED(e);
1500 }
1501
1502
1503 void CoreSessionEventProcessor::handleCtcpClientinfo(CtcpEvent *e)
1504 {
1505     QStringList supportedHandlers;
1506     foreach(QString handler, providesHandlers())
1507     supportedHandlers << handler.toUpper();
1508     qSort(supportedHandlers);
1509     e->setReply(supportedHandlers.join(" "));
1510 }
1511
1512
1513 // http://www.irchelp.org/irchelp/rfc/ctcpspec.html
1514 // http://en.wikipedia.org/wiki/Direct_Client-to-Client
1515 void CoreSessionEventProcessor::handleCtcpDcc(CtcpEvent *e)
1516 {
1517     // DCC support is unfinished, experimental and potentially dangerous, so make it opt-in
1518     if (!Quassel::isOptionSet("enable-experimental-dcc")) {
1519         quInfo() << "DCC disabled, start core with --enable-experimental-dcc if you really want to try it out";
1520         return;
1521     }
1522
1523     // normal:  SEND <filename> <ip> <port> [<filesize>]
1524     // reverse: SEND <filename> <ip> 0 <filesize> <token>
1525     QStringList params = e->param().split(' ');
1526     if (params.count()) {
1527         QString cmd = params[0].toUpper();
1528         if (cmd == "SEND") {
1529             if (params.count() < 4) {
1530                 qWarning() << "Invalid DCC SEND request:" << e;  // TODO emit proper error to client
1531                 return;
1532             }
1533             QString filename = params[1];
1534             QHostAddress address;
1535             quint16 port = params[3].toUShort();
1536             quint64 size = 0;
1537             QString numIp = params[2]; // this is either IPv4 as a 32 bit value, or IPv6 (which always contains a colon)
1538             if (numIp.contains(':')) { // IPv6
1539                 if (!address.setAddress(numIp)) {
1540                     qWarning() << "Invalid IPv6:" << numIp;
1541                     return;
1542                 }
1543             }
1544             else {
1545                 address.setAddress(numIp.toUInt());
1546             }
1547
1548             if (port == 0) { // Reverse DCC is indicated by a 0 port
1549                 emit newEvent(new MessageEvent(Message::Error, e->network(), tr("Reverse DCC SEND not supported"), e->prefix(), e->target(), Message::None, e->timestamp()));
1550                 return;
1551             }
1552             if (port < 1024) {
1553                 qWarning() << "Privileged port requested:" << port; // FIXME ask user if this is ok
1554             }
1555
1556
1557             if (params.count() > 4) { // filesize is optional
1558                 size = params[4].toULong();
1559             }
1560
1561             // TODO: check if target is the right thing to use for the partner
1562             CoreTransfer *transfer = new CoreTransfer(Transfer::Direction::Receive, e->target(), filename, address, port, size, this);
1563             coreSession()->signalProxy()->synchronize(transfer);
1564             coreSession()->transferManager()->addTransfer(transfer);
1565         }
1566         else {
1567             emit newEvent(new MessageEvent(Message::Error, e->network(), tr("DCC %1 not supported").arg(cmd), e->prefix(), e->target(), Message::None, e->timestamp()));
1568             return;
1569         }
1570     }
1571 }
1572
1573
1574 void CoreSessionEventProcessor::handleCtcpPing(CtcpEvent *e)
1575 {
1576     e->setReply(e->param().isNull() ? "" : e->param());
1577 }
1578
1579
1580 void CoreSessionEventProcessor::handleCtcpTime(CtcpEvent *e)
1581 {
1582     // Explicitly specify the Qt default DateTime format string to allow for modification
1583     // Qt::TextDate default roughly corresponds to...
1584     // > ddd MMM d yyyy HH:mm:ss
1585     //
1586     // See https://doc.qt.io/qt-5/qdatetime.html#toString
1587     // And https://doc.qt.io/qt-5/qt.html#DateFormat-enum
1588 #if QT_VERSION > 0x050000
1589     // Append the timezone identifier "t", so other other IRC users have a frame of reference for
1590     // the current timezone.  This could be figured out before by manually comparing to UTC, so this
1591     // is just convenience.
1592
1593     // Alas, "t" was only added in Qt 5
1594     e->setReply(QDateTime::currentDateTime().toString("ddd MMM d yyyy HH:mm:ss t"));
1595 #else
1596     e->setReply(QDateTime::currentDateTime().toString("ddd MMM d yyyy HH:mm:ss"));
1597 #endif
1598 }
1599
1600
1601 void CoreSessionEventProcessor::handleCtcpVersion(CtcpEvent *e)
1602 {
1603     e->setReply(QString("Quassel IRC %1 (built on %2) -- https://www.quassel-irc.org")
1604         .arg(Quassel::buildInfo().plainVersionString).arg(Quassel::buildInfo().commitDate));
1605 }