Finish 64-bit time conversion, modify protocol
[quassel.git] / src / core / corenetwork.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 <QHostInfo>
22
23 #include "corenetwork.h"
24
25 #include "core.h"
26 #include "coreidentity.h"
27 #include "corenetworkconfig.h"
28 #include "coresession.h"
29 #include "coreuserinputhandler.h"
30 #include "networkevent.h"
31
32 // IRCv3 capabilities
33 #include "irccap.h"
34
35 INIT_SYNCABLE_OBJECT(CoreNetwork)
36 CoreNetwork::CoreNetwork(const NetworkId &networkid, CoreSession *session)
37     : Network(networkid, session),
38     _coreSession(session),
39     _userInputHandler(new CoreUserInputHandler(this)),
40     _autoReconnectCount(0),
41     _quitRequested(false),
42     _disconnectExpected(false),
43
44     _previousConnectionAttemptFailed(false),
45     _lastUsedServerIndex(0),
46
47     _lastPingTime(0),
48     _pingCount(0),
49     _sendPings(false),
50     _requestedUserModes('-')
51 {
52     _autoReconnectTimer.setSingleShot(true);
53     connect(&_socketCloseTimer, SIGNAL(timeout()), this, SLOT(socketCloseTimeout()));
54
55     setPingInterval(networkConfig()->pingInterval());
56     connect(&_pingTimer, SIGNAL(timeout()), this, SLOT(sendPing()));
57
58     setAutoWhoDelay(networkConfig()->autoWhoDelay());
59     setAutoWhoInterval(networkConfig()->autoWhoInterval());
60
61     QHash<QString, QString> channels = coreSession()->persistentChannels(networkId());
62     foreach(QString chan, channels.keys()) {
63         _channelKeys[chan.toLower()] = channels[chan];
64     }
65
66     QHash<QString, QByteArray> bufferCiphers = coreSession()->bufferCiphers(networkId());
67     foreach(QString buffer, bufferCiphers.keys()) {
68         storeChannelCipherKey(buffer.toLower(), bufferCiphers[buffer]);
69     }
70
71     connect(networkConfig(), SIGNAL(pingTimeoutEnabledSet(bool)), SLOT(enablePingTimeout(bool)));
72     connect(networkConfig(), SIGNAL(pingIntervalSet(int)), SLOT(setPingInterval(int)));
73     connect(networkConfig(), SIGNAL(autoWhoEnabledSet(bool)), SLOT(setAutoWhoEnabled(bool)));
74     connect(networkConfig(), SIGNAL(autoWhoIntervalSet(int)), SLOT(setAutoWhoInterval(int)));
75     connect(networkConfig(), SIGNAL(autoWhoDelaySet(int)), SLOT(setAutoWhoDelay(int)));
76
77     connect(&_autoReconnectTimer, SIGNAL(timeout()), this, SLOT(doAutoReconnect()));
78     connect(&_autoWhoTimer, SIGNAL(timeout()), this, SLOT(sendAutoWho()));
79     connect(&_autoWhoCycleTimer, SIGNAL(timeout()), this, SLOT(startAutoWhoCycle()));
80     connect(&_tokenBucketTimer, SIGNAL(timeout()), this, SLOT(checkTokenBucket()));
81
82     connect(&socket, SIGNAL(connected()), this, SLOT(socketInitialized()));
83     connect(&socket, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(socketError(QAbstractSocket::SocketError)));
84     connect(&socket, SIGNAL(stateChanged(QAbstractSocket::SocketState)), this, SLOT(socketStateChanged(QAbstractSocket::SocketState)));
85     connect(&socket, SIGNAL(readyRead()), this, SLOT(socketHasData()));
86 #ifdef HAVE_SSL
87     connect(&socket, SIGNAL(encrypted()), this, SLOT(socketInitialized()));
88     connect(&socket, SIGNAL(sslErrors(const QList<QSslError> &)), this, SLOT(sslErrors(const QList<QSslError> &)));
89 #endif
90     connect(this, SIGNAL(newEvent(Event *)), coreSession()->eventManager(), SLOT(postEvent(Event *)));
91
92     // Custom rate limiting
93     // These react to the user changing settings in the client
94     connect(this, SIGNAL(useCustomMessageRateSet(bool)), SLOT(updateRateLimiting()));
95     connect(this, SIGNAL(messageRateBurstSizeSet(quint32)), SLOT(updateRateLimiting()));
96     connect(this, SIGNAL(messageRateDelaySet(quint32)), SLOT(updateRateLimiting()));
97     connect(this, SIGNAL(unlimitedMessageRateSet(bool)), SLOT(updateRateLimiting()));
98
99     // IRCv3 capability handling
100     // These react to CAP messages from the server
101     connect(this, SIGNAL(capAdded(QString)), this, SLOT(serverCapAdded(QString)));
102     connect(this, SIGNAL(capAcknowledged(QString)), this, SLOT(serverCapAcknowledged(QString)));
103     connect(this, SIGNAL(capRemoved(QString)), this, SLOT(serverCapRemoved(QString)));
104
105     if (Quassel::isOptionSet("oidentd")) {
106         connect(this, SIGNAL(socketInitialized(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)), Core::instance()->oidentdConfigGenerator(), SLOT(addSocket(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)), Qt::BlockingQueuedConnection);
107         connect(this, SIGNAL(socketDisconnected(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)), Core::instance()->oidentdConfigGenerator(), SLOT(removeSocket(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)));
108     }
109 }
110
111
112 CoreNetwork::~CoreNetwork()
113 {
114     // Request a proper disconnect, but don't count as user-requested disconnect
115     if (socketConnected()) {
116         // Only try if the socket's fully connected (not initializing or disconnecting).
117         // Force an immediate disconnect, jumping the command queue.  Ensures the proper QUIT is
118         // shown even if other messages are queued.
119         disconnectFromIrc(false, QString(), false, true);
120         // Process the putCmd events that trigger the quit.  Without this, shutting down the core
121         // results in abrubtly closing the socket rather than sending the QUIT as expected.
122         QCoreApplication::processEvents();
123         // Wait briefly for each network to disconnect.  Sometimes it takes a little while to send.
124         if (!forceDisconnect()) {
125             qWarning() << "Timed out quitting network" << networkName() <<
126                           "(user ID " << userId() << ")";
127         }
128     }
129     disconnect(&socket, 0, this, 0); // this keeps the socket from triggering events during clean up
130     delete _userInputHandler;
131 }
132
133
134 bool CoreNetwork::forceDisconnect(int msecs)
135 {
136     if (socket.state() == QAbstractSocket::UnconnectedState) {
137         // Socket already disconnected.
138         return true;
139     }
140     // Request a socket-level disconnect if not already happened
141     socket.disconnectFromHost();
142     // Return the result of waiting for disconnect; true if successful, otherwise false
143     return socket.waitForDisconnected(msecs);
144 }
145
146
147 QString CoreNetwork::channelDecode(const QString &bufferName, const QByteArray &string) const
148 {
149     if (!bufferName.isEmpty()) {
150         IrcChannel *channel = ircChannel(bufferName);
151         if (channel)
152             return channel->decodeString(string);
153     }
154     return decodeString(string);
155 }
156
157
158 QString CoreNetwork::userDecode(const QString &userNick, const QByteArray &string) const
159 {
160     IrcUser *user = ircUser(userNick);
161     if (user)
162         return user->decodeString(string);
163     return decodeString(string);
164 }
165
166
167 QByteArray CoreNetwork::channelEncode(const QString &bufferName, const QString &string) const
168 {
169     if (!bufferName.isEmpty()) {
170         IrcChannel *channel = ircChannel(bufferName);
171         if (channel)
172             return channel->encodeString(string);
173     }
174     return encodeString(string);
175 }
176
177
178 QByteArray CoreNetwork::userEncode(const QString &userNick, const QString &string) const
179 {
180     IrcUser *user = ircUser(userNick);
181     if (user)
182         return user->encodeString(string);
183     return encodeString(string);
184 }
185
186
187 void CoreNetwork::connectToIrc(bool reconnecting)
188 {
189     if (!reconnecting && useAutoReconnect() && _autoReconnectCount == 0) {
190         _autoReconnectTimer.setInterval(autoReconnectInterval() * 1000);
191         if (unlimitedReconnectRetries())
192             _autoReconnectCount = -1;
193         else
194             _autoReconnectCount = autoReconnectRetries();
195     }
196     if (serverList().isEmpty()) {
197         qWarning() << "Server list empty, ignoring connect request!";
198         return;
199     }
200     CoreIdentity *identity = identityPtr();
201     if (!identity) {
202         qWarning() << "Invalid identity configures, ignoring connect request!";
203         return;
204     }
205
206     // cleaning up old quit reason
207     _quitReason.clear();
208
209     // Reset capability negotiation tracking, also handling server changes during reconnect
210     _capsQueuedIndividual.clear();
211     _capsQueuedBundled.clear();
212     clearCaps();
213     _capNegotiationActive = false;
214     _capInitialNegotiationEnded = false;
215
216     // use a random server?
217     if (useRandomServer()) {
218         _lastUsedServerIndex = qrand() % serverList().size();
219     }
220     else if (_previousConnectionAttemptFailed) {
221         // cycle to next server if previous connection attempt failed
222         _previousConnectionAttemptFailed = false;
223         displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Connection failed. Cycling to next Server"));
224         if (++_lastUsedServerIndex >= serverList().size()) {
225             _lastUsedServerIndex = 0;
226         }
227     }
228     else {
229         // Start out with the top server in the list
230         _lastUsedServerIndex = 0;
231     }
232
233     Server server = usedServer();
234     displayStatusMsg(tr("Connecting to %1:%2...").arg(server.host).arg(server.port));
235     displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Connecting to %1:%2...").arg(server.host).arg(server.port));
236
237     if (server.useProxy) {
238         QNetworkProxy proxy((QNetworkProxy::ProxyType)server.proxyType, server.proxyHost, server.proxyPort, server.proxyUser, server.proxyPass);
239         socket.setProxy(proxy);
240     }
241     else {
242         socket.setProxy(QNetworkProxy::NoProxy);
243     }
244
245     enablePingTimeout();
246
247     // Qt caches DNS entries for a minute, resulting in round-robin (e.g. for chat.freenode.net) not working if several users
248     // connect at a similar time. QHostInfo::fromName(), however, always performs a fresh lookup, overwriting the cache entry.
249     if (! server.useProxy) {
250         //Avoid hostname lookups when a proxy is specified. The lookups won't use the proxy and may therefore leak the DNS
251         //hostname of the server. Qt's DNS cache also isn't used by the proxy so we don't need to refresh the entry.
252         QHostInfo::fromName(server.host);
253     }
254 #ifdef HAVE_SSL
255     if (server.useSsl) {
256         CoreIdentity *identity = identityPtr();
257         if (identity) {
258             socket.setLocalCertificate(identity->sslCert());
259             socket.setPrivateKey(identity->sslKey());
260         }
261         socket.connectToHostEncrypted(server.host, server.port);
262     }
263     else {
264         socket.connectToHost(server.host, server.port);
265     }
266 #else
267     socket.connectToHost(server.host, server.port);
268 #endif
269 }
270
271
272 void CoreNetwork::disconnectFromIrc(bool requested, const QString &reason, bool withReconnect,
273                                     bool forceImmediate)
274 {
275     // Disconnecting from the network, should expect a socket close or error
276     _disconnectExpected = true;
277     _quitRequested = requested; // see socketDisconnected();
278     if (!withReconnect) {
279         _autoReconnectTimer.stop();
280         _autoReconnectCount = 0; // prohibiting auto reconnect
281     }
282     disablePingTimeout();
283     _msgQueue.clear();
284
285     IrcUser *me_ = me();
286     if (me_) {
287         QString awayMsg;
288         if (me_->isAway())
289             awayMsg = me_->awayMessage();
290         Core::setAwayMessage(userId(), networkId(), awayMsg);
291     }
292
293     if (reason.isEmpty() && identityPtr())
294         _quitReason = identityPtr()->quitReason();
295     else
296         _quitReason = reason;
297
298     displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Disconnecting. (%1)").arg((!requested && !withReconnect) ? tr("Core Shutdown") : _quitReason));
299     if (socket.state() == QAbstractSocket::UnconnectedState) {
300         socketDisconnected();
301     } else {
302         if (socket.state() == QAbstractSocket::ConnectedState) {
303             userInputHandler()->issueQuit(_quitReason, forceImmediate);
304         } else {
305             socket.close();
306         }
307         if (requested || withReconnect) {
308             // the irc server has 10 seconds to close the socket
309             _socketCloseTimer.start(10000);
310         }
311     }
312 }
313
314
315 void CoreNetwork::userInput(BufferInfo buf, QString msg)
316 {
317     userInputHandler()->handleUserInput(buf, msg);
318 }
319
320
321 void CoreNetwork::putRawLine(const QByteArray s, const bool prepend)
322 {
323     if (_tokenBucket > 0 || (_skipMessageRates && _msgQueue.size() == 0)) {
324         // If there's tokens remaining, ...
325         // Or rate limits don't apply AND no messages are in queue (to prevent out-of-order), ...
326         // Send the message now.
327         writeToSocket(s);
328     } else {
329         // Otherwise, queue the message for later
330         if (prepend) {
331             // Jump to the start, skipping other messages
332             _msgQueue.prepend(s);
333         } else {
334             // Add to back, waiting in order
335             _msgQueue.append(s);
336         }
337     }
338 }
339
340
341 void CoreNetwork::putCmd(const QString &cmd, const QList<QByteArray> &params, const QByteArray &prefix, const bool prepend)
342 {
343     QByteArray msg;
344
345     if (!prefix.isEmpty())
346         msg += ":" + prefix + " ";
347     msg += cmd.toUpper().toLatin1();
348
349     for (int i = 0; i < params.size(); i++) {
350         msg += " ";
351
352         if (i == params.size() - 1 && (params[i].contains(' ') || (!params[i].isEmpty() && params[i][0] == ':')))
353             msg += ":";
354
355         msg += params[i];
356     }
357
358     putRawLine(msg, prepend);
359 }
360
361
362 void CoreNetwork::putCmd(const QString &cmd, const QList<QList<QByteArray>> &params, const QByteArray &prefix, const bool prependAll)
363 {
364     QListIterator<QList<QByteArray>> i(params);
365     while (i.hasNext()) {
366         QList<QByteArray> msg = i.next();
367         putCmd(cmd, msg, prefix, prependAll);
368     }
369 }
370
371
372 void CoreNetwork::setChannelJoined(const QString &channel)
373 {
374     queueAutoWhoOneshot(channel); // check this new channel first
375
376     Core::setChannelPersistent(userId(), networkId(), channel, true);
377     Core::setPersistentChannelKey(userId(), networkId(), channel, _channelKeys[channel.toLower()]);
378 }
379
380
381 void CoreNetwork::setChannelParted(const QString &channel)
382 {
383     removeChannelKey(channel);
384     _autoWhoQueue.removeAll(channel.toLower());
385     _autoWhoPending.remove(channel.toLower());
386
387     Core::setChannelPersistent(userId(), networkId(), channel, false);
388 }
389
390
391 void CoreNetwork::addChannelKey(const QString &channel, const QString &key)
392 {
393     if (key.isEmpty()) {
394         removeChannelKey(channel);
395     }
396     else {
397         _channelKeys[channel.toLower()] = key;
398     }
399 }
400
401
402 void CoreNetwork::removeChannelKey(const QString &channel)
403 {
404     _channelKeys.remove(channel.toLower());
405 }
406
407
408 #ifdef HAVE_QCA2
409 Cipher *CoreNetwork::cipher(const QString &target)
410 {
411     if (target.isEmpty())
412         return 0;
413
414     if (!Cipher::neededFeaturesAvailable())
415         return 0;
416
417     CoreIrcChannel *channel = qobject_cast<CoreIrcChannel *>(ircChannel(target));
418     if (channel) {
419         return channel->cipher();
420     }
421     CoreIrcUser *user = qobject_cast<CoreIrcUser *>(ircUser(target));
422     if (user) {
423         return user->cipher();
424     } else if (!isChannelName(target)) {
425         return qobject_cast<CoreIrcUser*>(newIrcUser(target))->cipher();
426     }
427     return 0;
428 }
429
430
431 QByteArray CoreNetwork::cipherKey(const QString &target) const
432 {
433     CoreIrcChannel *c = qobject_cast<CoreIrcChannel*>(ircChannel(target));
434     if (c)
435         return c->cipher()->key();
436
437     CoreIrcUser *u = qobject_cast<CoreIrcUser*>(ircUser(target));
438     if (u)
439         return u->cipher()->key();
440
441     return QByteArray();
442 }
443
444
445 void CoreNetwork::setCipherKey(const QString &target, const QByteArray &key)
446 {
447     CoreIrcChannel *c = qobject_cast<CoreIrcChannel*>(ircChannel(target));
448     if (c) {
449         c->setEncrypted(c->cipher()->setKey(key));
450         coreSession()->setBufferCipher(networkId(), target, key);
451         return;
452     }
453
454     CoreIrcUser *u = qobject_cast<CoreIrcUser*>(ircUser(target));
455     if (!u && !isChannelName(target))
456         u = qobject_cast<CoreIrcUser*>(newIrcUser(target));
457
458     if (u) {
459         u->setEncrypted(u->cipher()->setKey(key));
460         coreSession()->setBufferCipher(networkId(), target, key);
461         return;
462     }
463 }
464
465
466 bool CoreNetwork::cipherUsesCBC(const QString &target)
467 {
468     CoreIrcChannel *c = qobject_cast<CoreIrcChannel*>(ircChannel(target));
469     if (c)
470         return c->cipher()->usesCBC();
471     CoreIrcUser *u = qobject_cast<CoreIrcUser*>(ircUser(target));
472     if (u)
473         return u->cipher()->usesCBC();
474
475     return false;
476 }
477 #endif /* HAVE_QCA2 */
478
479 bool CoreNetwork::setAutoWhoDone(const QString &channel)
480 {
481     QString chan = channel.toLower();
482     if (_autoWhoPending.value(chan, 0) <= 0)
483         return false;
484     if (--_autoWhoPending[chan] <= 0)
485         _autoWhoPending.remove(chan);
486     return true;
487 }
488
489
490 void CoreNetwork::setMyNick(const QString &mynick)
491 {
492     Network::setMyNick(mynick);
493     if (connectionState() == Network::Initializing)
494         networkInitialized();
495 }
496
497
498 void CoreNetwork::socketHasData()
499 {
500     while (socket.canReadLine()) {
501         QByteArray s = socket.readLine();
502         if (s.endsWith("\r\n"))
503             s.chop(2);
504         else if (s.endsWith("\n"))
505             s.chop(1);
506         NetworkDataEvent *event = new NetworkDataEvent(EventManager::NetworkIncoming, this, s);
507         event->setTimestamp(QDateTime::currentDateTimeUtc());
508         emit newEvent(event);
509     }
510 }
511
512
513 void CoreNetwork::socketError(QAbstractSocket::SocketError error)
514 {
515     // Ignore socket closed errors if expected
516     if (_disconnectExpected && error == QAbstractSocket::RemoteHostClosedError) {
517         return;
518     }
519
520     _previousConnectionAttemptFailed = true;
521     qWarning() << qPrintable(tr("Could not connect to %1 (%2)").arg(networkName(), socket.errorString()));
522     emit connectionError(socket.errorString());
523     displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Connection failure: %1").arg(socket.errorString()));
524     emitConnectionError(socket.errorString());
525     if (socket.state() < QAbstractSocket::ConnectedState) {
526         socketDisconnected();
527     }
528 }
529
530
531 void CoreNetwork::socketInitialized()
532 {
533     CoreIdentity *identity = identityPtr();
534     if (!identity) {
535         qCritical() << "Identity invalid!";
536         disconnectFromIrc();
537         return;
538     }
539
540     Server server = usedServer();
541
542 #ifdef HAVE_SSL
543     // Non-SSL connections enter here only once, always emit socketInitialized(...) in these cases
544     // SSL connections call socketInitialized() twice, only emit socketInitialized(...) on the first (not yet encrypted) run
545     if (!server.useSsl || !socket.isEncrypted()) {
546         emit socketInitialized(identity, localAddress(), localPort(), peerAddress(), peerPort());
547     }
548
549     if (server.useSsl && !socket.isEncrypted()) {
550         // We'll finish setup once we're encrypted, and called again
551         return;
552     }
553 #else
554     emit socketInitialized(identity, localAddress(), localPort(), peerAddress(), peerPort());
555 #endif
556
557     socket.setSocketOption(QAbstractSocket::KeepAliveOption, true);
558
559     // Update the TokenBucket, force-enabling unlimited message rates for initial registration and
560     // capability negotiation.  networkInitialized() will call updateRateLimiting() without the
561     // force flag to apply user preferences.  When making changes, ensure that this still happens!
562     // As Quassel waits for CAP ACK/NAK and AUTHENTICATE replies, this shouldn't ever fill the IRC
563     // server receive queue and cause a kill.  "Shouldn't" being the operative word; the real world
564     // is a scary place.
565     updateRateLimiting(true);
566     // Fill up the token bucket as we're connecting from scratch
567     resetTokenBucket();
568
569     // Request capabilities as per IRCv3.2 specifications
570     // Older servers should ignore this; newer servers won't downgrade to RFC1459
571     displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Requesting capability list..."));
572     putRawLine(serverEncode(QString("CAP LS 302")));
573
574     if (!server.password.isEmpty()) {
575         putRawLine(serverEncode(QString("PASS %1").arg(server.password)));
576     }
577     QString nick;
578     if (identity->nicks().isEmpty()) {
579         nick = "quassel";
580         qWarning() << "CoreNetwork::socketInitialized(): no nicks supplied for identity Id" << identity->id();
581     }
582     else {
583         nick = identity->nicks()[0];
584     }
585     putRawLine(serverEncode(QString("NICK %1").arg(nick)));
586     putRawLine(serverEncode(QString("USER %1 8 * :%2").arg(identity->ident(), identity->realName())));
587 }
588
589
590 void CoreNetwork::socketDisconnected()
591 {
592     disablePingTimeout();
593     _msgQueue.clear();
594
595     _autoWhoCycleTimer.stop();
596     _autoWhoTimer.stop();
597     _autoWhoQueue.clear();
598     _autoWhoPending.clear();
599
600     _socketCloseTimer.stop();
601
602     _tokenBucketTimer.stop();
603
604     IrcUser *me_ = me();
605     if (me_) {
606         foreach(QString channel, me_->channels())
607         displayMsg(Message::Quit, BufferInfo::ChannelBuffer, channel, _quitReason, me_->hostmask());
608     }
609
610     setConnected(false);
611     emit disconnected(networkId());
612     emit socketDisconnected(identityPtr(), localAddress(), localPort(), peerAddress(), peerPort());
613     // Reset disconnect expectations
614     _disconnectExpected = false;
615     if (_quitRequested) {
616         _quitRequested = false;
617         setConnectionState(Network::Disconnected);
618         Core::setNetworkConnected(userId(), networkId(), false);
619     }
620     else if (_autoReconnectCount != 0) {
621         setConnectionState(Network::Reconnecting);
622         if (_autoReconnectCount == -1 || _autoReconnectCount == autoReconnectRetries())
623             doAutoReconnect();  // first try is immediate
624         else
625             _autoReconnectTimer.start();
626     }
627 }
628
629
630 void CoreNetwork::socketStateChanged(QAbstractSocket::SocketState socketState)
631 {
632     Network::ConnectionState state;
633     switch (socketState) {
634     case QAbstractSocket::UnconnectedState:
635         state = Network::Disconnected;
636         socketDisconnected();
637         break;
638     case QAbstractSocket::HostLookupState:
639     case QAbstractSocket::ConnectingState:
640         state = Network::Connecting;
641         break;
642     case QAbstractSocket::ConnectedState:
643         state = Network::Initializing;
644         break;
645     case QAbstractSocket::ClosingState:
646         state = Network::Disconnecting;
647         break;
648     default:
649         state = Network::Disconnected;
650     }
651     setConnectionState(state);
652 }
653
654
655 void CoreNetwork::networkInitialized()
656 {
657     setConnectionState(Network::Initialized);
658     setConnected(true);
659     _disconnectExpected = false;
660     _quitRequested = false;
661
662     // Update the TokenBucket with specified rate-limiting settings, removing the force-unlimited
663     // flag used for initial registration and capability negotiation.
664     updateRateLimiting();
665
666     if (useAutoReconnect()) {
667         // reset counter
668         _autoReconnectCount = unlimitedReconnectRetries() ? -1 : autoReconnectRetries();
669     }
670
671     // restore away state
672     QString awayMsg = Core::awayMessage(userId(), networkId());
673     if (!awayMsg.isEmpty()) {
674         // Don't re-apply any timestamp formatting in order to preserve escaped percent signs, e.g.
675         // '%%%%%%%%' -> '%%%%'  If processed again, it'd result in '%%'.
676         userInputHandler()->handleAway(BufferInfo(), awayMsg, true);
677     }
678
679     sendPerform();
680
681     _sendPings = true;
682
683     if (networkConfig()->autoWhoEnabled()) {
684         _autoWhoCycleTimer.start();
685         _autoWhoTimer.start();
686         startAutoWhoCycle(); // FIXME wait for autojoin to be completed
687     }
688
689     Core::bufferInfo(userId(), networkId(), BufferInfo::StatusBuffer); // create status buffer
690     Core::setNetworkConnected(userId(), networkId(), true);
691 }
692
693
694 void CoreNetwork::sendPerform()
695 {
696     BufferInfo statusBuf = BufferInfo::fakeStatusBuffer(networkId());
697
698     // do auto identify
699     if (useAutoIdentify() && !autoIdentifyService().isEmpty() && !autoIdentifyPassword().isEmpty()) {
700         userInputHandler()->handleMsg(statusBuf, QString("%1 IDENTIFY %2").arg(autoIdentifyService(), autoIdentifyPassword()));
701     }
702
703     // restore old user modes if server default mode is set.
704     IrcUser *me_ = me();
705     if (me_) {
706         if (!me_->userModes().isEmpty()) {
707             restoreUserModes();
708         }
709         else {
710             connect(me_, SIGNAL(userModesSet(QString)), this, SLOT(restoreUserModes()));
711             connect(me_, SIGNAL(userModesAdded(QString)), this, SLOT(restoreUserModes()));
712         }
713     }
714
715     // send perform list
716     foreach(QString line, perform()) {
717         if (!line.isEmpty()) userInput(statusBuf, line);
718     }
719
720     // rejoin channels we've been in
721     if (rejoinChannels()) {
722         QStringList channels, keys;
723         foreach(QString chan, coreSession()->persistentChannels(networkId()).keys()) {
724             QString key = channelKey(chan);
725             if (!key.isEmpty()) {
726                 channels.prepend(chan);
727                 keys.prepend(key);
728             }
729             else {
730                 channels.append(chan);
731             }
732         }
733         QString joinString = QString("%1 %2").arg(channels.join(",")).arg(keys.join(",")).trimmed();
734         if (!joinString.isEmpty())
735             userInputHandler()->handleJoin(statusBuf, joinString);
736     }
737 }
738
739
740 void CoreNetwork::restoreUserModes()
741 {
742     IrcUser *me_ = me();
743     Q_ASSERT(me_);
744
745     disconnect(me_, SIGNAL(userModesSet(QString)), this, SLOT(restoreUserModes()));
746     disconnect(me_, SIGNAL(userModesAdded(QString)), this, SLOT(restoreUserModes()));
747
748     QString modesDelta = Core::userModes(userId(), networkId());
749     QString currentModes = me_->userModes();
750
751     QString addModes, removeModes;
752     if (modesDelta.contains('-')) {
753         addModes = modesDelta.section('-', 0, 0);
754         removeModes = modesDelta.section('-', 1);
755     }
756     else {
757         addModes = modesDelta;
758     }
759
760     addModes.remove(QRegExp(QString("[%1]").arg(currentModes)));
761     if (currentModes.isEmpty())
762         removeModes = QString();
763     else
764         removeModes.remove(QRegExp(QString("[^%1]").arg(currentModes)));
765
766     if (addModes.isEmpty() && removeModes.isEmpty())
767         return;
768
769     if (!addModes.isEmpty())
770         addModes = '+' + addModes;
771     if (!removeModes.isEmpty())
772         removeModes = '-' + removeModes;
773
774     // don't use InputHandler::handleMode() as it keeps track of our persistent mode changes
775     putRawLine(serverEncode(QString("MODE %1 %2%3").arg(me_->nick()).arg(addModes).arg(removeModes)));
776 }
777
778
779 void CoreNetwork::updateIssuedModes(const QString &requestedModes)
780 {
781     QString addModes;
782     QString removeModes;
783     bool addMode = true;
784
785     for (int i = 0; i < requestedModes.length(); i++) {
786         if (requestedModes[i] == '+') {
787             addMode = true;
788             continue;
789         }
790         if (requestedModes[i] == '-') {
791             addMode = false;
792             continue;
793         }
794         if (addMode) {
795             addModes += requestedModes[i];
796         }
797         else {
798             removeModes += requestedModes[i];
799         }
800     }
801
802     QString addModesOld = _requestedUserModes.section('-', 0, 0);
803     QString removeModesOld = _requestedUserModes.section('-', 1);
804
805     addModes.remove(QRegExp(QString("[%1]").arg(addModesOld))); // deduplicate
806     addModesOld.remove(QRegExp(QString("[%1]").arg(removeModes))); // update
807     addModes += addModesOld;
808
809     removeModes.remove(QRegExp(QString("[%1]").arg(removeModesOld))); // deduplicate
810     removeModesOld.remove(QRegExp(QString("[%1]").arg(addModes))); // update
811     removeModes += removeModesOld;
812
813     _requestedUserModes = QString("%1-%2").arg(addModes).arg(removeModes);
814 }
815
816
817 void CoreNetwork::updatePersistentModes(QString addModes, QString removeModes)
818 {
819     QString persistentUserModes = Core::userModes(userId(), networkId());
820
821     QString requestedAdd = _requestedUserModes.section('-', 0, 0);
822     QString requestedRemove = _requestedUserModes.section('-', 1);
823
824     QString persistentAdd, persistentRemove;
825     if (persistentUserModes.contains('-')) {
826         persistentAdd = persistentUserModes.section('-', 0, 0);
827         persistentRemove = persistentUserModes.section('-', 1);
828     }
829     else {
830         persistentAdd = persistentUserModes;
831     }
832
833     // remove modes we didn't issue
834     if (requestedAdd.isEmpty())
835         addModes = QString();
836     else
837         addModes.remove(QRegExp(QString("[^%1]").arg(requestedAdd)));
838
839     if (requestedRemove.isEmpty())
840         removeModes = QString();
841     else
842         removeModes.remove(QRegExp(QString("[^%1]").arg(requestedRemove)));
843
844     // deduplicate
845     persistentAdd.remove(QRegExp(QString("[%1]").arg(addModes)));
846     persistentRemove.remove(QRegExp(QString("[%1]").arg(removeModes)));
847
848     // update
849     persistentAdd.remove(QRegExp(QString("[%1]").arg(removeModes)));
850     persistentRemove.remove(QRegExp(QString("[%1]").arg(addModes)));
851
852     // update issued mode list
853     requestedAdd.remove(QRegExp(QString("[%1]").arg(addModes)));
854     requestedRemove.remove(QRegExp(QString("[%1]").arg(removeModes)));
855     _requestedUserModes = QString("%1-%2").arg(requestedAdd).arg(requestedRemove);
856
857     persistentAdd += addModes;
858     persistentRemove += removeModes;
859     Core::setUserModes(userId(), networkId(), QString("%1-%2").arg(persistentAdd).arg(persistentRemove));
860 }
861
862
863 void CoreNetwork::resetPersistentModes()
864 {
865     _requestedUserModes = QString('-');
866     Core::setUserModes(userId(), networkId(), QString());
867 }
868
869
870 void CoreNetwork::setUseAutoReconnect(bool use)
871 {
872     Network::setUseAutoReconnect(use);
873     if (!use)
874         _autoReconnectTimer.stop();
875 }
876
877
878 void CoreNetwork::setAutoReconnectInterval(quint32 interval)
879 {
880     Network::setAutoReconnectInterval(interval);
881     _autoReconnectTimer.setInterval(interval * 1000);
882 }
883
884
885 void CoreNetwork::setAutoReconnectRetries(quint16 retries)
886 {
887     Network::setAutoReconnectRetries(retries);
888     if (_autoReconnectCount != 0) {
889         if (unlimitedReconnectRetries())
890             _autoReconnectCount = -1;
891         else
892             _autoReconnectCount = autoReconnectRetries();
893     }
894 }
895
896
897 void CoreNetwork::doAutoReconnect()
898 {
899     if (connectionState() != Network::Disconnected && connectionState() != Network::Reconnecting) {
900         qWarning() << "CoreNetwork::doAutoReconnect(): Cannot reconnect while not being disconnected!";
901         return;
902     }
903     if (_autoReconnectCount > 0 || _autoReconnectCount == -1)
904         _autoReconnectCount--;  // -2 means we delay the next reconnect
905     connectToIrc(true);
906 }
907
908
909 void CoreNetwork::sendPing()
910 {
911     qint64 now = QDateTime::currentDateTime().toMSecsSinceEpoch();
912     if (_pingCount != 0) {
913         qDebug() << "UserId:" << userId() << "Network:" << networkName() << "missed" << _pingCount << "pings."
914                  << "BA:" << socket.bytesAvailable() << "BTW:" << socket.bytesToWrite();
915     }
916     if ((int)_pingCount >= networkConfig()->maxPingCount()
917             && (now - _lastPingTime) <= (_pingTimer.interval() + (1 * 1000))) {
918         // In transitioning to 64-bit time, the interval no longer needs converted down to seconds.
919         // However, to reduce the risk of breaking things by changing past behavior, we still allow
920         // up to 1 second missed instead of enforcing a stricter 1 millisecond allowance.
921         //
922         // the second check compares the actual elapsed time since the last ping and the pingTimer interval
923         // if the interval is shorter then the actual elapsed time it means that this thread was somehow blocked
924         // and unable to even handle a ping answer. So we ignore those misses.
925         disconnectFromIrc(false, QString("No Ping reply in %1 seconds.").arg(_pingCount * _pingTimer.interval() / 1000), true /* withReconnect */);
926     }
927     else {
928         _lastPingTime = now;
929         _pingCount++;
930         // Don't send pings until the network is initialized
931         if(_sendPings)
932             userInputHandler()->handlePing(BufferInfo(), QString());
933     }
934 }
935
936
937 void CoreNetwork::enablePingTimeout(bool enable)
938 {
939     if (!enable)
940         disablePingTimeout();
941     else {
942         resetPingTimeout();
943         if (networkConfig()->pingTimeoutEnabled())
944             _pingTimer.start();
945     }
946 }
947
948
949 void CoreNetwork::disablePingTimeout()
950 {
951     _pingTimer.stop();
952     _sendPings = false;
953     resetPingTimeout();
954 }
955
956
957 void CoreNetwork::setPingInterval(int interval)
958 {
959     _pingTimer.setInterval(interval * 1000);
960 }
961
962
963 /******** Custom Rate Limiting ********/
964
965 void CoreNetwork::updateRateLimiting(const bool forceUnlimited)
966 {
967     // Verify and apply custom rate limiting options, always resetting the delay and burst size
968     // (safe-guarding against accidentally starting the timer), but don't reset the token bucket as
969     // this may be called while connected to a server.
970
971     if (useCustomMessageRate() || forceUnlimited) {
972         // Custom message rates enabled, or chosen by means of forcing unlimited.  Let's go for it!
973
974         _messageDelay = messageRateDelay();
975
976         _burstSize = messageRateBurstSize();
977         if (_burstSize < 1) {
978             qWarning() << "Invalid messageRateBurstSize data, cannot have zero message burst size!"
979                        << _burstSize;
980             // Can't go slower than one message at a time
981             _burstSize = 1;
982         }
983
984         if (_tokenBucket > _burstSize) {
985             // Don't let the token bucket exceed the maximum
986             _tokenBucket = _burstSize;
987             // To fill up the token bucket, use resetRateLimiting().  Don't do that here, otherwise
988             // changing the rate-limit settings while connected to a server will incorrectly reset
989             // the token bucket.
990         }
991
992         // Toggle the timer according to whether or not rate limiting is enabled
993         // If we're here, either useCustomMessageRate or forceUnlimited is true.  Thus, the logic is
994         // _skipMessageRates = ((useCustomMessageRate && unlimitedMessageRate) || forceUnlimited)
995         // Override user preferences if called with force unlimited, only used during connect.
996         _skipMessageRates = (unlimitedMessageRate() || forceUnlimited);
997         if (_skipMessageRates) {
998             // If the message queue already contains messages, they need sent before disabling the
999             // timer.  Set the timer to a rapid pace and let it disable itself.
1000             if (_msgQueue.size() > 0) {
1001                 qDebug() << "Outgoing message queue contains messages while disabling rate "
1002                             "limiting.  Sending remaining queued messages...";
1003                 // Promptly run the timer again to clear the messages.  Rate limiting is disabled,
1004                 // so nothing should cause this to block.. in theory.  However, don't directly call
1005                 // fillBucketAndProcessQueue() in order to keep it on a separate thread.
1006                 //
1007                 // TODO If testing shows this isn't needed, it can be simplified to a direct call.
1008                 // Hesitant to change it without a wide variety of situations to verify behavior.
1009                 _tokenBucketTimer.start(100);
1010             } else {
1011                 // No rate limiting, disable the timer
1012                 _tokenBucketTimer.stop();
1013             }
1014         } else {
1015             // Rate limiting enabled, enable the timer
1016             _tokenBucketTimer.start(_messageDelay);
1017         }
1018     } else {
1019         // Custom message rates disabled.  Go for the default.
1020
1021         _skipMessageRates = false;  // Enable rate-limiting by default
1022         _messageDelay = 2200;       // This seems to be a safe value (2.2 seconds delay)
1023         _burstSize = 5;             // 5 messages at once
1024         if (_tokenBucket > _burstSize) {
1025             // TokenBucket to avoid sending too much at once.  Don't let the token bucket exceed the
1026             // maximum.
1027             _tokenBucket = _burstSize;
1028             // To fill up the token bucket, use resetRateLimiting().  Don't do that here, otherwise
1029             // changing the rate-limit settings while connected to a server will incorrectly reset
1030             // the token bucket.
1031         }
1032         // Rate limiting enabled, enable the timer
1033         _tokenBucketTimer.start(_messageDelay);
1034     }
1035 }
1036
1037 void CoreNetwork::resetTokenBucket()
1038 {
1039     // Fill up the token bucket to the maximum
1040     _tokenBucket = _burstSize;
1041 }
1042
1043
1044 /******** IRCv3 Capability Negotiation ********/
1045
1046 void CoreNetwork::serverCapAdded(const QString &capability)
1047 {
1048     // Check if it's a known capability; if so, add it to the list
1049     // Handle special cases first
1050     if (capability == IrcCap::SASL) {
1051         // Only request SASL if it's enabled
1052         if (networkInfo().useSasl)
1053             queueCap(capability);
1054     } else if (IrcCap::knownCaps.contains(capability)) {
1055         // Handling for general known capabilities
1056         queueCap(capability);
1057     }
1058 }
1059
1060 void CoreNetwork::serverCapAcknowledged(const QString &capability)
1061 {
1062     // This may be called multiple times in certain situations.
1063
1064     // Handle core-side configuration
1065     if (capability == IrcCap::AWAY_NOTIFY) {
1066         // away-notify enabled, stop the autoWho timers, handle manually
1067         setAutoWhoEnabled(false);
1068     }
1069
1070     // Handle capabilities that require further messages sent to the IRC server
1071     // If you change this list, ALSO change the list in CoreNetwork::capsRequiringServerMessages
1072     if (capability == IrcCap::SASL) {
1073         // If SASL mechanisms specified, limit to what's accepted for authentication
1074         // if the current identity has a cert set, use SASL EXTERNAL
1075         // FIXME use event
1076 #ifdef HAVE_SSL
1077         if (!identityPtr()->sslCert().isNull()) {
1078             if (saslMaybeSupports(IrcCap::SaslMech::EXTERNAL)) {
1079                 // EXTERNAL authentication supported, send request
1080                 putRawLine(serverEncode("AUTHENTICATE EXTERNAL"));
1081             } else {
1082                 displayMsg(Message::Error, BufferInfo::StatusBuffer, "",
1083                            tr("SASL EXTERNAL authentication not supported"));
1084                 sendNextCap();
1085             }
1086         } else {
1087 #endif
1088             if (saslMaybeSupports(IrcCap::SaslMech::PLAIN)) {
1089                 // PLAIN authentication supported, send request
1090                 // Only working with PLAIN atm, blowfish later
1091                 putRawLine(serverEncode("AUTHENTICATE PLAIN"));
1092             } else {
1093                 displayMsg(Message::Error, BufferInfo::StatusBuffer, "",
1094                            tr("SASL PLAIN authentication not supported"));
1095                 sendNextCap();
1096             }
1097 #ifdef HAVE_SSL
1098         }
1099 #endif
1100     }
1101 }
1102
1103 void CoreNetwork::serverCapRemoved(const QString &capability)
1104 {
1105     // This may be called multiple times in certain situations.
1106
1107     // Handle special cases here
1108     if (capability == IrcCap::AWAY_NOTIFY) {
1109         // away-notify disabled, enable autoWho according to configuration
1110         setAutoWhoEnabled(networkConfig()->autoWhoEnabled());
1111     }
1112 }
1113
1114 void CoreNetwork::queueCap(const QString &capability)
1115 {
1116     // IRCv3 specs all use lowercase capability names
1117     QString _capLowercase = capability.toLower();
1118
1119     if(capsRequiringConfiguration.contains(_capLowercase)) {
1120         // The capability requires additional configuration before being acknowledged (e.g. SASL),
1121         // so we should negotiate it separately from all other capabilities.  Otherwise new
1122         // capabilities will be requested while still configuring the previous one.
1123         if (!_capsQueuedIndividual.contains(_capLowercase)) {
1124             _capsQueuedIndividual.append(_capLowercase);
1125         }
1126     } else {
1127         // The capability doesn't need any special configuration, so it should be safe to try
1128         // bundling together with others.  "Should" being the imperative word, as IRC servers can do
1129         // anything.
1130         if (!_capsQueuedBundled.contains(_capLowercase)) {
1131             _capsQueuedBundled.append(_capLowercase);
1132         }
1133     }
1134 }
1135
1136 QString CoreNetwork::takeQueuedCaps()
1137 {
1138     // Clear the record of the most recently negotiated capability bundle.  Does nothing if the list
1139     // is empty.
1140     _capsQueuedLastBundle.clear();
1141
1142     // First, negotiate all the standalone capabilities that require additional configuration.
1143     if (!_capsQueuedIndividual.empty()) {
1144         // We have an individual capability available.  Take the first and pass it back.
1145         return _capsQueuedIndividual.takeFirst();
1146     } else if (!_capsQueuedBundled.empty()) {
1147         // We have capabilities available that can be grouped.  Try to fit in as many as within the
1148         // maximum length.
1149         // See CoreNetwork::maxCapRequestLength
1150
1151         // Response must have at least one capability regardless of max length for anything to
1152         // happen.
1153         QString capBundle = _capsQueuedBundled.takeFirst();
1154         QString nextCap("");
1155         while (!_capsQueuedBundled.empty()) {
1156             // As long as capabilities remain, get the next...
1157             nextCap = _capsQueuedBundled.first();
1158             if ((capBundle.length() + 1 + nextCap.length()) <= maxCapRequestLength) {
1159                 // [capability + 1 for a space + this new capability] fit within length limits
1160                 // Add it to formatted list
1161                 capBundle.append(" " + nextCap);
1162                 // Add it to most recent bundle of requested capabilities (simplifies retry logic)
1163                 _capsQueuedLastBundle.append(nextCap);
1164                 // Then remove it from the queue
1165                 _capsQueuedBundled.removeFirst();
1166             } else {
1167                 // We've reached the length limit for a single capability request, stop adding more
1168                 break;
1169             }
1170         }
1171         // Return this space-separated set of capabilities, removing any extra spaces
1172         return capBundle.trimmed();
1173     } else {
1174         // No capabilities left to negotiate, return an empty string.
1175         return QString();
1176     }
1177 }
1178
1179 void CoreNetwork::retryCapsIndividually()
1180 {
1181     // The most recent set of capabilities got denied by the IRC server.  As we don't know what got
1182     // denied, try each capability individually.
1183     if (_capsQueuedLastBundle.empty()) {
1184         // No most recently tried capability set, just return.
1185         return;
1186         // Note: there's little point in retrying individually requested caps during negotiation.
1187         // We know the individual capability was the one that failed, and it's not likely it'll
1188         // suddenly start working within a few seconds.  'cap-notify' provides a better system for
1189         // handling capability removal and addition.
1190     }
1191
1192     // This should be fairly rare, e.g. services restarting during negotiation, so simplicity wins
1193     // over efficiency.  If this becomes an issue, implement a binary splicing system instead,
1194     // keeping track of which halves of the group fail, dividing the set each time.
1195
1196     // Add most recently tried capability set to individual list, re-requesting them one at a time
1197     _capsQueuedIndividual.append(_capsQueuedLastBundle);
1198     // Warn of this issue to explain the slower login.  Servers usually shouldn't trigger this.
1199     displayMsg(Message::Server, BufferInfo::StatusBuffer, "",
1200                tr("Could not negotiate some capabilities, retrying individually (%1)...")
1201                .arg(_capsQueuedLastBundle.join(", ")));
1202     // Capabilities are already removed from the capability bundle queue via takeQueuedCaps(), no
1203     // need to remove them here.
1204     // Clear the most recently tried set to reduce risk that mistakes elsewhere causes retrying
1205     // indefinitely.
1206     _capsQueuedLastBundle.clear();
1207 }
1208
1209 void CoreNetwork::beginCapNegotiation()
1210 {
1211     // Don't begin negotiation if no capabilities are queued to request
1212     if (!capNegotiationInProgress()) {
1213         // If the server doesn't have any capabilities, but supports CAP LS, continue on with the
1214         // normal connection.
1215         displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("No capabilities available"));
1216         endCapNegotiation();
1217         return;
1218     }
1219
1220     _capNegotiationActive = true;
1221     displayMsg(Message::Server, BufferInfo::StatusBuffer, "",
1222                tr("Ready to negotiate (found: %1)").arg(caps().join(", ")));
1223
1224     // Build a list of queued capabilities, starting with individual, then bundled, only adding the
1225     // comma separator between the two if needed (both individual and bundled caps exist).
1226     QString queuedCapsDisplay =
1227             _capsQueuedIndividual.join(", ")
1228             + ((!_capsQueuedIndividual.empty() && !_capsQueuedBundled.empty()) ? ", " : "")
1229             + _capsQueuedBundled.join(", ");
1230     displayMsg(Message::Server, BufferInfo::StatusBuffer, "",
1231                tr("Negotiating capabilities (requesting: %1)...").arg(queuedCapsDisplay));
1232
1233     sendNextCap();
1234 }
1235
1236 void CoreNetwork::sendNextCap()
1237 {
1238     if (capNegotiationInProgress()) {
1239         // Request the next set of capabilities and remove them from the list
1240         putRawLine(serverEncode(QString("CAP REQ :%1").arg(takeQueuedCaps())));
1241     } else {
1242         // No pending desired capabilities, capability negotiation finished
1243         // If SASL requested but not available, print a warning
1244         if (networkInfo().useSasl && !capEnabled(IrcCap::SASL))
1245             displayMsg(Message::Error, BufferInfo::StatusBuffer, "",
1246                        tr("SASL authentication currently not supported by server"));
1247
1248         if (_capNegotiationActive) {
1249             displayMsg(Message::Server, BufferInfo::StatusBuffer, "",
1250                    tr("Capability negotiation finished (enabled: %1)").arg(capsEnabled().join(", ")));
1251             _capNegotiationActive = false;
1252         }
1253
1254         endCapNegotiation();
1255     }
1256 }
1257
1258 void CoreNetwork::endCapNegotiation()
1259 {
1260     // If nick registration is already complete, CAP END is not required
1261     if (!_capInitialNegotiationEnded) {
1262         putRawLine(serverEncode(QString("CAP END")));
1263         _capInitialNegotiationEnded = true;
1264     }
1265 }
1266
1267 /******** AutoWHO ********/
1268
1269 void CoreNetwork::startAutoWhoCycle()
1270 {
1271     if (!_autoWhoQueue.isEmpty()) {
1272         _autoWhoCycleTimer.stop();
1273         return;
1274     }
1275     _autoWhoQueue = channels();
1276 }
1277
1278 void CoreNetwork::queueAutoWhoOneshot(const QString &channelOrNick)
1279 {
1280     // Prepend so these new channels/nicks are the first to be checked
1281     // Don't allow duplicates
1282     if (!_autoWhoQueue.contains(channelOrNick.toLower())) {
1283         _autoWhoQueue.prepend(channelOrNick.toLower());
1284     }
1285     if (capEnabled(IrcCap::AWAY_NOTIFY)) {
1286         // When away-notify is active, the timer's stopped.  Start a new cycle to who this channel.
1287         setAutoWhoEnabled(true);
1288     }
1289 }
1290
1291
1292 void CoreNetwork::setAutoWhoDelay(int delay)
1293 {
1294     _autoWhoTimer.setInterval(delay * 1000);
1295 }
1296
1297
1298 void CoreNetwork::setAutoWhoInterval(int interval)
1299 {
1300     _autoWhoCycleTimer.setInterval(interval * 1000);
1301 }
1302
1303
1304 void CoreNetwork::setAutoWhoEnabled(bool enabled)
1305 {
1306     if (enabled && isConnected() && !_autoWhoTimer.isActive())
1307         _autoWhoTimer.start();
1308     else if (!enabled) {
1309         _autoWhoTimer.stop();
1310         _autoWhoCycleTimer.stop();
1311     }
1312 }
1313
1314
1315 void CoreNetwork::sendAutoWho()
1316 {
1317     // Don't send autowho if there are still some pending
1318     if (_autoWhoPending.count())
1319         return;
1320
1321     while (!_autoWhoQueue.isEmpty()) {
1322         QString chanOrNick = _autoWhoQueue.takeFirst();
1323         // Check if it's a known channel or nick
1324         IrcChannel *ircchan = ircChannel(chanOrNick);
1325         IrcUser *ircuser = ircUser(chanOrNick);
1326         if (ircchan) {
1327             // Apply channel limiting rules
1328             // If using away-notify, don't impose channel size limits in order to capture away
1329             // state of everyone.  Auto-who won't run on a timer so network impact is minimal.
1330             if (networkConfig()->autoWhoNickLimit() > 0
1331                 && ircchan->ircUsers().count() >= networkConfig()->autoWhoNickLimit()
1332                 && !capEnabled(IrcCap::AWAY_NOTIFY))
1333                 continue;
1334             _autoWhoPending[chanOrNick.toLower()]++;
1335         } else if (ircuser) {
1336             // Checking a nick, add it to the pending list
1337             _autoWhoPending[ircuser->nick().toLower()]++;
1338         } else {
1339             // Not a channel or a nick, skip it
1340             qDebug() << "Skipping who polling of unknown channel or nick" << chanOrNick;
1341             continue;
1342         }
1343         if (supports("WHOX")) {
1344             // Use WHO extended to poll away users and/or user accounts
1345             // See http://faerion.sourceforge.net/doc/irc/whox.var
1346             // And https://github.com/hexchat/hexchat/blob/c874a9525c9b66f1d5ddcf6c4107d046eba7e2c5/src/common/proto-irc.c#L750
1347             putRawLine(serverEncode(QString("WHO %1 %%chtsunfra,%2")
1348                                     .arg(serverEncode(chanOrNick), QString::number(IrcCap::ACCOUNT_NOTIFY_WHOX_NUM))));
1349         } else {
1350             putRawLine(serverEncode(QString("WHO %1").arg(chanOrNick)));
1351         }
1352         break;
1353     }
1354
1355     if (_autoWhoQueue.isEmpty() && networkConfig()->autoWhoEnabled() && !_autoWhoCycleTimer.isActive()
1356         && !capEnabled(IrcCap::AWAY_NOTIFY)) {
1357         // Timer was stopped, means a new cycle is due immediately
1358         // Don't run a new cycle if using away-notify; server will notify as appropriate
1359         _autoWhoCycleTimer.start();
1360         startAutoWhoCycle();
1361     } else if (capEnabled(IrcCap::AWAY_NOTIFY) && _autoWhoCycleTimer.isActive()) {
1362         // Don't run another who cycle if away-notify is enabled
1363         _autoWhoCycleTimer.stop();
1364     }
1365 }
1366
1367
1368 #ifdef HAVE_SSL
1369 void CoreNetwork::sslErrors(const QList<QSslError> &sslErrors)
1370 {
1371     Server server = usedServer();
1372     if (server.sslVerify) {
1373         // Treat the SSL error as a hard error
1374         QString sslErrorMessage = tr("Encrypted connection couldn't be verified, disconnecting "
1375                                      "since verification is required");
1376         if (!sslErrors.empty()) {
1377             // Add the error reason if known
1378             sslErrorMessage.append(tr(" (Reason: %1)").arg(sslErrors.first().errorString()));
1379         }
1380         displayMsg(Message::Error, BufferInfo::StatusBuffer, "", sslErrorMessage);
1381
1382         // Disconnect, triggering a reconnect in case it's a temporary issue with certificate
1383         // validity, network trouble, etc.
1384         disconnectFromIrc(false, QString("Encrypted connection not verified"), true /* withReconnect */);
1385     } else {
1386         // Treat the SSL error as a warning, continue to connect anyways
1387         QString sslErrorMessage = tr("Encrypted connection couldn't be verified, continuing "
1388                                      "since verification is not required");
1389         if (!sslErrors.empty()) {
1390             // Add the error reason if known
1391             sslErrorMessage.append(tr(" (Reason: %1)").arg(sslErrors.first().errorString()));
1392         }
1393         displayMsg(Message::Info, BufferInfo::StatusBuffer, "", sslErrorMessage);
1394
1395         // Proceed with the connection
1396         socket.ignoreSslErrors();
1397     }
1398 }
1399
1400
1401 #endif  // HAVE_SSL
1402
1403 void CoreNetwork::checkTokenBucket()
1404 {
1405     if (_skipMessageRates) {
1406         if (_msgQueue.size() == 0) {
1407             // Message queue emptied; stop the timer and bail out
1408             _tokenBucketTimer.stop();
1409             return;
1410         }
1411         // Otherwise, we're emptying the queue, continue on as normal
1412     }
1413
1414     // Process whatever messages are pending
1415     fillBucketAndProcessQueue();
1416 }
1417
1418
1419 void CoreNetwork::fillBucketAndProcessQueue()
1420 {
1421     // If there's less tokens than burst size, refill the token bucket by 1
1422     if (_tokenBucket < _burstSize) {
1423         _tokenBucket++;
1424     }
1425
1426     // As long as there's tokens available and messages remaining, sending messages from the queue
1427     while (_msgQueue.size() > 0 && _tokenBucket > 0) {
1428         writeToSocket(_msgQueue.takeFirst());
1429     }
1430 }
1431
1432
1433 void CoreNetwork::writeToSocket(const QByteArray &data)
1434 {
1435     socket.write(data);
1436     socket.write("\r\n");
1437     if (!_skipMessageRates) {
1438         // Only subtract from the token bucket if message rate limiting is enabled
1439         _tokenBucket--;
1440     }
1441 }
1442
1443
1444 Network::Server CoreNetwork::usedServer() const
1445 {
1446     if (_lastUsedServerIndex < serverList().count())
1447         return serverList()[_lastUsedServerIndex];
1448
1449     if (!serverList().isEmpty())
1450         return serverList()[0];
1451
1452     return Network::Server();
1453 }
1454
1455
1456 void CoreNetwork::requestConnect() const
1457 {
1458     if (connectionState() != Disconnected) {
1459         qWarning() << "Requesting connect while already being connected!";
1460         return;
1461     }
1462     QMetaObject::invokeMethod(const_cast<CoreNetwork *>(this), "connectToIrc", Qt::QueuedConnection);
1463 }
1464
1465
1466 void CoreNetwork::requestDisconnect() const
1467 {
1468     if (connectionState() == Disconnected) {
1469         qWarning() << "Requesting disconnect while not being connected!";
1470         return;
1471     }
1472     userInputHandler()->handleQuit(BufferInfo(), QString());
1473 }
1474
1475
1476 void CoreNetwork::requestSetNetworkInfo(const NetworkInfo &info)
1477 {
1478     Network::Server currentServer = usedServer();
1479     setNetworkInfo(info);
1480     Core::updateNetwork(coreSession()->user(), info);
1481
1482     // the order of the servers might have changed,
1483     // so we try to find the previously used server
1484     _lastUsedServerIndex = 0;
1485     for (int i = 0; i < serverList().count(); i++) {
1486         Network::Server server = serverList()[i];
1487         if (server.host == currentServer.host && server.port == currentServer.port) {
1488             _lastUsedServerIndex = i;
1489             break;
1490         }
1491     }
1492 }
1493
1494
1495 QList<QList<QByteArray>> CoreNetwork::splitMessage(const QString &cmd, const QString &message, std::function<QList<QByteArray>(QString &)> cmdGenerator)
1496 {
1497     QString wrkMsg(message);
1498     QList<QList<QByteArray>> msgsToSend;
1499
1500     // do while (wrkMsg.size() > 0)
1501     do {
1502         // First, check to see if the whole message can be sent at once.  The
1503         // cmdGenerator function is passed in by the caller and is used to encode
1504         // and encrypt (if applicable) the message, since different callers might
1505         // want to use different encoding or encode different values.
1506         int splitPos = wrkMsg.size();
1507         QList<QByteArray> initialSplitMsgEnc = cmdGenerator(wrkMsg);
1508         int initialOverrun = userInputHandler()->lastParamOverrun(cmd, initialSplitMsgEnc);
1509
1510         if (initialOverrun) {
1511             // If the message was too long to be sent, first try splitting it along
1512             // word boundaries with QTextBoundaryFinder.
1513             QString splitMsg(wrkMsg);
1514             QTextBoundaryFinder qtbf(QTextBoundaryFinder::Word, splitMsg);
1515             qtbf.setPosition(initialSplitMsgEnc[1].size() - initialOverrun);
1516             QList<QByteArray> splitMsgEnc;
1517             int overrun = initialOverrun;
1518
1519             while (overrun) {
1520                 splitPos = qtbf.toPreviousBoundary();
1521
1522                 // splitPos==-1 means the QTBF couldn't find a split point at all and
1523                 // splitPos==0 means the QTBF could only find a boundary at the beginning of
1524                 // the string.  Neither one of these works for us.
1525                 if (splitPos > 0) {
1526                     // If a split point could be found, split the message there, calculate the
1527                     // overrun, and continue with the loop.
1528                     splitMsg = splitMsg.left(splitPos);
1529                     splitMsgEnc = cmdGenerator(splitMsg);
1530                     overrun = userInputHandler()->lastParamOverrun(cmd, splitMsgEnc);
1531                 }
1532                 else {
1533                     // If a split point could not be found (the beginning of the message
1534                     // is reached without finding a split point short enough to send) and we
1535                     // are still in Word mode, switch to Grapheme mode.  We also need to restore
1536                     // the full wrkMsg to splitMsg, since splitMsg may have been cut down during
1537                     // the previous attempt to find a split point.
1538                     if (qtbf.type() == QTextBoundaryFinder::Word) {
1539                         splitMsg = wrkMsg;
1540                         splitPos = splitMsg.size();
1541                         QTextBoundaryFinder graphemeQtbf(QTextBoundaryFinder::Grapheme, splitMsg);
1542                         graphemeQtbf.setPosition(initialSplitMsgEnc[1].size() - initialOverrun);
1543                         qtbf = graphemeQtbf;
1544                     }
1545                     else {
1546                         // If the QTBF fails to find a split point in Grapheme mode, we give up.
1547                         // This should never happen, but it should be handled anyway.
1548                         qWarning() << "Unexpected failure to split message!";
1549                         return msgsToSend;
1550                     }
1551                 }
1552             }
1553
1554             // Once a message of sendable length has been found, remove it from the wrkMsg and
1555             // add it to the list of messages to be sent.
1556             wrkMsg.remove(0, splitPos);
1557             msgsToSend.append(splitMsgEnc);
1558         }
1559         else{
1560             // If the entire remaining message is short enough to be sent all at once, remove
1561             // it from the wrkMsg and add it to the list of messages to be sent.
1562             wrkMsg.remove(0, splitPos);
1563             msgsToSend.append(initialSplitMsgEnc);
1564         }
1565     } while (wrkMsg.size() > 0);
1566
1567     return msgsToSend;
1568 }