Improve reliability of SSL connections
[quassel.git] / src / core / corenetwork.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2014 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 "corenetwork.h"
22
23 #include "core.h"
24 #include "coreidentity.h"
25 #include "corenetworkconfig.h"
26 #include "coresession.h"
27 #include "coreuserinputhandler.h"
28 #include "networkevent.h"
29
30 INIT_SYNCABLE_OBJECT(CoreNetwork)
31 CoreNetwork::CoreNetwork(const NetworkId &networkid, CoreSession *session)
32     : Network(networkid, session),
33     _coreSession(session),
34     _userInputHandler(new CoreUserInputHandler(this)),
35     _autoReconnectCount(0),
36     _quitRequested(false),
37
38     _previousConnectionAttemptFailed(false),
39     _lastUsedServerIndex(0),
40
41     _lastPingTime(0),
42     _pingCount(0),
43     _sendPings(false),
44     _requestedUserModes('-')
45 {
46     _autoReconnectTimer.setSingleShot(true);
47     connect(&_socketCloseTimer, SIGNAL(timeout()), this, SLOT(socketCloseTimeout()));
48
49     setPingInterval(networkConfig()->pingInterval());
50     connect(&_pingTimer, SIGNAL(timeout()), this, SLOT(sendPing()));
51
52     setAutoWhoDelay(networkConfig()->autoWhoDelay());
53     setAutoWhoInterval(networkConfig()->autoWhoInterval());
54
55     QHash<QString, QString> channels = coreSession()->persistentChannels(networkId());
56     foreach(QString chan, channels.keys()) {
57         _channelKeys[chan.toLower()] = channels[chan];
58     }
59
60     connect(networkConfig(), SIGNAL(pingTimeoutEnabledSet(bool)), SLOT(enablePingTimeout(bool)));
61     connect(networkConfig(), SIGNAL(pingIntervalSet(int)), SLOT(setPingInterval(int)));
62     connect(networkConfig(), SIGNAL(autoWhoEnabledSet(bool)), SLOT(setAutoWhoEnabled(bool)));
63     connect(networkConfig(), SIGNAL(autoWhoIntervalSet(int)), SLOT(setAutoWhoInterval(int)));
64     connect(networkConfig(), SIGNAL(autoWhoDelaySet(int)), SLOT(setAutoWhoDelay(int)));
65
66     connect(&_autoReconnectTimer, SIGNAL(timeout()), this, SLOT(doAutoReconnect()));
67     connect(&_autoWhoTimer, SIGNAL(timeout()), this, SLOT(sendAutoWho()));
68     connect(&_autoWhoCycleTimer, SIGNAL(timeout()), this, SLOT(startAutoWhoCycle()));
69     connect(&_tokenBucketTimer, SIGNAL(timeout()), this, SLOT(fillBucketAndProcessQueue()));
70
71     connect(&socket, SIGNAL(connected()), this, SLOT(socketInitialized()));
72     connect(&socket, SIGNAL(disconnected()), this, SLOT(socketDisconnected()));
73     connect(&socket, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(socketError(QAbstractSocket::SocketError)));
74     connect(&socket, SIGNAL(stateChanged(QAbstractSocket::SocketState)), this, SLOT(socketStateChanged(QAbstractSocket::SocketState)));
75     connect(&socket, SIGNAL(readyRead()), this, SLOT(socketHasData()));
76 #ifdef HAVE_SSL
77     connect(&socket, SIGNAL(encrypted()), this, SLOT(socketInitialized()));
78     connect(&socket, SIGNAL(sslErrors(const QList<QSslError> &)), this, SLOT(sslErrors(const QList<QSslError> &)));
79 #endif
80     connect(this, SIGNAL(newEvent(Event *)), coreSession()->eventManager(), SLOT(postEvent(Event *)));
81
82     if (Quassel::isOptionSet("oidentd")) {
83         connect(this, SIGNAL(socketInitialized(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)), Core::instance()->oidentdConfigGenerator(), SLOT(addSocket(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)), Qt::BlockingQueuedConnection);
84         connect(this, SIGNAL(socketDisconnected(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)), Core::instance()->oidentdConfigGenerator(), SLOT(removeSocket(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)));
85     }
86 }
87
88
89 CoreNetwork::~CoreNetwork()
90 {
91     if (connectionState() != Disconnected && connectionState() != Network::Reconnecting)
92         disconnectFromIrc(false);  // clean up, but this does not count as requested disconnect!
93     disconnect(&socket, 0, this, 0); // this keeps the socket from triggering events during clean up
94     delete _userInputHandler;
95 }
96
97
98 QString CoreNetwork::channelDecode(const QString &bufferName, const QByteArray &string) const
99 {
100     if (!bufferName.isEmpty()) {
101         IrcChannel *channel = ircChannel(bufferName);
102         if (channel)
103             return channel->decodeString(string);
104     }
105     return decodeString(string);
106 }
107
108
109 QString CoreNetwork::userDecode(const QString &userNick, const QByteArray &string) const
110 {
111     IrcUser *user = ircUser(userNick);
112     if (user)
113         return user->decodeString(string);
114     return decodeString(string);
115 }
116
117
118 QByteArray CoreNetwork::channelEncode(const QString &bufferName, const QString &string) const
119 {
120     if (!bufferName.isEmpty()) {
121         IrcChannel *channel = ircChannel(bufferName);
122         if (channel)
123             return channel->encodeString(string);
124     }
125     return encodeString(string);
126 }
127
128
129 QByteArray CoreNetwork::userEncode(const QString &userNick, const QString &string) const
130 {
131     IrcUser *user = ircUser(userNick);
132     if (user)
133         return user->encodeString(string);
134     return encodeString(string);
135 }
136
137
138 void CoreNetwork::connectToIrc(bool reconnecting)
139 {
140     if (!reconnecting && useAutoReconnect() && _autoReconnectCount == 0) {
141         _autoReconnectTimer.setInterval(autoReconnectInterval() * 1000);
142         if (unlimitedReconnectRetries())
143             _autoReconnectCount = -1;
144         else
145             _autoReconnectCount = autoReconnectRetries();
146     }
147     if (serverList().isEmpty()) {
148         qWarning() << "Server list empty, ignoring connect request!";
149         return;
150     }
151     CoreIdentity *identity = identityPtr();
152     if (!identity) {
153         qWarning() << "Invalid identity configures, ignoring connect request!";
154         return;
155     }
156
157     // cleaning up old quit reason
158     _quitReason.clear();
159
160     // use a random server?
161     if (useRandomServer()) {
162         _lastUsedServerIndex = qrand() % serverList().size();
163     }
164     else if (_previousConnectionAttemptFailed) {
165         // cycle to next server if previous connection attempt failed
166         displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Connection failed. Cycling to next Server"));
167         if (++_lastUsedServerIndex >= serverList().size()) {
168             _lastUsedServerIndex = 0;
169         }
170     }
171     _previousConnectionAttemptFailed = false;
172
173     Server server = usedServer();
174     displayStatusMsg(tr("Connecting to %1:%2...").arg(server.host).arg(server.port));
175     displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Connecting to %1:%2...").arg(server.host).arg(server.port));
176
177     if (server.useProxy) {
178         QNetworkProxy proxy((QNetworkProxy::ProxyType)server.proxyType, server.proxyHost, server.proxyPort, server.proxyUser, server.proxyPass);
179         socket.setProxy(proxy);
180     }
181     else {
182         socket.setProxy(QNetworkProxy::NoProxy);
183     }
184
185     enablePingTimeout();
186
187 #ifdef HAVE_SSL
188     socket.setProtocol((QSsl::SslProtocol)server.sslVersion);
189     if (server.useSsl) {
190         CoreIdentity *identity = identityPtr();
191         if (identity) {
192             socket.setLocalCertificate(identity->sslCert());
193             socket.setPrivateKey(identity->sslKey());
194         }
195         socket.connectToHostEncrypted(server.host, server.port);
196     }
197     else {
198         socket.connectToHost(server.host, server.port);
199     }
200 #else
201     socket.connectToHost(server.host, server.port);
202 #endif
203 }
204
205
206 void CoreNetwork::disconnectFromIrc(bool requested, const QString &reason, bool withReconnect)
207 {
208     _quitRequested = requested; // see socketDisconnected();
209     if (!withReconnect) {
210         _autoReconnectTimer.stop();
211         _autoReconnectCount = 0; // prohibiting auto reconnect
212     }
213     disablePingTimeout();
214     _msgQueue.clear();
215
216     IrcUser *me_ = me();
217     if (me_) {
218         QString awayMsg;
219         if (me_->isAway())
220             awayMsg = me_->awayMessage();
221         Core::setAwayMessage(userId(), networkId(), awayMsg);
222     }
223
224     if (reason.isEmpty() && identityPtr())
225         _quitReason = identityPtr()->quitReason();
226     else
227         _quitReason = reason;
228
229     displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Disconnecting. (%1)").arg((!requested && !withReconnect) ? tr("Core Shutdown") : _quitReason));
230     switch (socket.state()) {
231     case QAbstractSocket::ConnectedState:
232         userInputHandler()->issueQuit(_quitReason);
233         if (requested || withReconnect) {
234             // the irc server has 10 seconds to close the socket
235             _socketCloseTimer.start(10000);
236             break;
237         }
238     default:
239         socket.close();
240         socketDisconnected();
241     }
242 }
243
244
245 void CoreNetwork::userInput(BufferInfo buf, QString msg)
246 {
247     userInputHandler()->handleUserInput(buf, msg);
248 }
249
250
251 void CoreNetwork::putRawLine(QByteArray s)
252 {
253     if (_tokenBucket > 0)
254         writeToSocket(s);
255     else
256         _msgQueue.append(s);
257 }
258
259
260 void CoreNetwork::putCmd(const QString &cmd, const QList<QByteArray> &params, const QByteArray &prefix)
261 {
262     QByteArray msg;
263
264     if (!prefix.isEmpty())
265         msg += ":" + prefix + " ";
266     msg += cmd.toUpper().toAscii();
267
268     for (int i = 0; i < params.size() - 1; i++) {
269         msg += " " + params[i];
270     }
271     if (!params.isEmpty())
272         msg += " :" + params.last();
273
274     putRawLine(msg);
275 }
276
277
278 void CoreNetwork::setChannelJoined(const QString &channel)
279 {
280     _autoWhoQueue.prepend(channel.toLower()); // prepend so this new chan is the first to be checked
281
282     Core::setChannelPersistent(userId(), networkId(), channel, true);
283     Core::setPersistentChannelKey(userId(), networkId(), channel, _channelKeys[channel.toLower()]);
284 }
285
286
287 void CoreNetwork::setChannelParted(const QString &channel)
288 {
289     removeChannelKey(channel);
290     _autoWhoQueue.removeAll(channel.toLower());
291     _autoWhoPending.remove(channel.toLower());
292
293     Core::setChannelPersistent(userId(), networkId(), channel, false);
294 }
295
296
297 void CoreNetwork::addChannelKey(const QString &channel, const QString &key)
298 {
299     if (key.isEmpty()) {
300         removeChannelKey(channel);
301     }
302     else {
303         _channelKeys[channel.toLower()] = key;
304     }
305 }
306
307
308 void CoreNetwork::removeChannelKey(const QString &channel)
309 {
310     _channelKeys.remove(channel.toLower());
311 }
312
313
314 #ifdef HAVE_QCA2
315 Cipher *CoreNetwork::cipher(const QString &target)
316 {
317     if (target.isEmpty())
318         return 0;
319
320     if (!Cipher::neededFeaturesAvailable())
321         return 0;
322
323     CoreIrcChannel *channel = qobject_cast<CoreIrcChannel *>(ircChannel(target));
324     if (channel) {
325         return channel->cipher();
326     }
327     CoreIrcUser *user = qobject_cast<CoreIrcUser *>(ircUser(target));
328     if (user) {
329         return user->cipher();
330     } else if (!isChannelName(target)) {
331         return qobject_cast<CoreIrcUser*>(newIrcUser(target))->cipher();
332     }
333     return 0;
334 }
335
336
337 QByteArray CoreNetwork::cipherKey(const QString &target) const
338 {
339     CoreIrcChannel *c = qobject_cast<CoreIrcChannel*>(ircChannel(target));
340     if (c)
341         return c->cipher()->key();
342
343     CoreIrcUser *u = qobject_cast<CoreIrcUser*>(ircUser(target));
344     if (u)
345         return u->cipher()->key();
346
347     return QByteArray();
348 }
349
350
351 void CoreNetwork::setCipherKey(const QString &target, const QByteArray &key)
352 {
353     CoreIrcChannel *c = qobject_cast<CoreIrcChannel*>(ircChannel(target));
354     if (c) {
355         c->setEncrypted(c->cipher()->setKey(key));
356         return;
357     }
358
359     CoreIrcUser *u = qobject_cast<CoreIrcUser*>(ircUser(target));
360     if (!u && !isChannelName(target))
361         u = qobject_cast<CoreIrcUser*>(newIrcUser(target));
362
363     if (u) {
364         u->setEncrypted(u->cipher()->setKey(key));
365         return;
366     }
367 }
368
369
370 bool CoreNetwork::cipherUsesCBC(const QString &target)
371 {
372     CoreIrcChannel *c = qobject_cast<CoreIrcChannel*>(ircChannel(target));
373     if (c)
374         return c->cipher()->usesCBC();
375     CoreIrcUser *u = qobject_cast<CoreIrcUser*>(ircUser(target));
376     if (u)
377         return u->cipher()->usesCBC();
378
379     return false;
380 }
381 #endif /* HAVE_QCA2 */
382
383 bool CoreNetwork::setAutoWhoDone(const QString &channel)
384 {
385     QString chan = channel.toLower();
386     if (_autoWhoPending.value(chan, 0) <= 0)
387         return false;
388     if (--_autoWhoPending[chan] <= 0)
389         _autoWhoPending.remove(chan);
390     return true;
391 }
392
393
394 void CoreNetwork::setMyNick(const QString &mynick)
395 {
396     Network::setMyNick(mynick);
397     if (connectionState() == Network::Initializing)
398         networkInitialized();
399 }
400
401
402 void CoreNetwork::socketHasData()
403 {
404     while (socket.canReadLine()) {
405         QByteArray s = socket.readLine();
406         s.chop(2);
407         NetworkDataEvent *event = new NetworkDataEvent(EventManager::NetworkIncoming, this, s);
408 #if QT_VERSION >= 0x040700
409         event->setTimestamp(QDateTime::currentDateTimeUtc());
410 #else
411         event->setTimestamp(QDateTime::currentDateTime().toUTC());
412 #endif
413         emit newEvent(event);
414     }
415 }
416
417
418 void CoreNetwork::socketError(QAbstractSocket::SocketError error)
419 {
420     if (_quitRequested && error == QAbstractSocket::RemoteHostClosedError)
421         return;
422
423     _previousConnectionAttemptFailed = true;
424     qWarning() << qPrintable(tr("Could not connect to %1 (%2)").arg(networkName(), socket.errorString()));
425     emit connectionError(socket.errorString());
426     displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Connection failure: %1").arg(socket.errorString()));
427     emitConnectionError(socket.errorString());
428     if (socket.state() < QAbstractSocket::ConnectedState) {
429         socketDisconnected();
430     }
431 }
432
433
434 void CoreNetwork::socketInitialized()
435 {
436     Server server = usedServer();
437 #ifdef HAVE_SSL
438     if (server.useSsl && !socket.isEncrypted())
439         return;
440 #endif
441
442     CoreIdentity *identity = identityPtr();
443     if (!identity) {
444         qCritical() << "Identity invalid!";
445         disconnectFromIrc();
446         return;
447     }
448
449     emit socketInitialized(identity, localAddress(), localPort(), peerAddress(), peerPort());
450
451     // TokenBucket to avoid sending too much at once
452     _messageDelay = 2200;  // this seems to be a safe value (2.2 seconds delay)
453     _burstSize = 5;
454     _tokenBucket = _burstSize; // init with a full bucket
455     _tokenBucketTimer.start(_messageDelay);
456
457     if (networkInfo().useSasl) {
458         putRawLine(serverEncode(QString("CAP REQ :sasl")));
459     }
460     if (!server.password.isEmpty()) {
461         putRawLine(serverEncode(QString("PASS %1").arg(server.password)));
462     }
463     QString nick;
464     if (identity->nicks().isEmpty()) {
465         nick = "quassel";
466         qWarning() << "CoreNetwork::socketInitialized(): no nicks supplied for identity Id" << identity->id();
467     }
468     else {
469         nick = identity->nicks()[0];
470     }
471     putRawLine(serverEncode(QString("NICK :%1").arg(nick)));
472     putRawLine(serverEncode(QString("USER %1 8 * :%2").arg(identity->ident(), identity->realName())));
473 }
474
475
476 void CoreNetwork::socketDisconnected()
477 {
478     disablePingTimeout();
479     _msgQueue.clear();
480
481     _autoWhoCycleTimer.stop();
482     _autoWhoTimer.stop();
483     _autoWhoQueue.clear();
484     _autoWhoPending.clear();
485
486     _socketCloseTimer.stop();
487
488     _tokenBucketTimer.stop();
489
490     IrcUser *me_ = me();
491     if (me_) {
492         foreach(QString channel, me_->channels())
493         displayMsg(Message::Quit, BufferInfo::ChannelBuffer, channel, _quitReason, me_->hostmask());
494     }
495
496     setConnected(false);
497     emit disconnected(networkId());
498     emit socketDisconnected(identityPtr(), localAddress(), localPort(), peerAddress(), peerPort());
499     if (_quitRequested) {
500         _quitRequested = false;
501         setConnectionState(Network::Disconnected);
502         Core::setNetworkConnected(userId(), networkId(), false);
503     }
504     else if (_autoReconnectCount != 0) {
505         setConnectionState(Network::Reconnecting);
506         if (_autoReconnectCount == -1 || _autoReconnectCount == autoReconnectRetries())
507             doAutoReconnect();  // first try is immediate
508         else
509             _autoReconnectTimer.start();
510     }
511 }
512
513
514 void CoreNetwork::socketStateChanged(QAbstractSocket::SocketState socketState)
515 {
516     Network::ConnectionState state;
517     switch (socketState) {
518     case QAbstractSocket::UnconnectedState:
519         state = Network::Disconnected;
520         break;
521     case QAbstractSocket::HostLookupState:
522     case QAbstractSocket::ConnectingState:
523         state = Network::Connecting;
524         break;
525     case QAbstractSocket::ConnectedState:
526         state = Network::Initializing;
527         break;
528     case QAbstractSocket::ClosingState:
529         state = Network::Disconnecting;
530         break;
531     default:
532         state = Network::Disconnected;
533     }
534     setConnectionState(state);
535 }
536
537
538 void CoreNetwork::networkInitialized()
539 {
540     setConnectionState(Network::Initialized);
541     setConnected(true);
542     _quitRequested = false;
543
544     if (useAutoReconnect()) {
545         // reset counter
546         _autoReconnectCount = unlimitedReconnectRetries() ? -1 : autoReconnectRetries();
547     }
548
549     // restore away state
550     QString awayMsg = Core::awayMessage(userId(), networkId());
551     if (!awayMsg.isEmpty())
552         userInputHandler()->handleAway(BufferInfo(), Core::awayMessage(userId(), networkId()));
553
554     sendPerform();
555
556     _sendPings = true;
557
558     if (networkConfig()->autoWhoEnabled()) {
559         _autoWhoCycleTimer.start();
560         _autoWhoTimer.start();
561         startAutoWhoCycle(); // FIXME wait for autojoin to be completed
562     }
563
564     Core::bufferInfo(userId(), networkId(), BufferInfo::StatusBuffer); // create status buffer
565     Core::setNetworkConnected(userId(), networkId(), true);
566 }
567
568
569 void CoreNetwork::sendPerform()
570 {
571     BufferInfo statusBuf = BufferInfo::fakeStatusBuffer(networkId());
572
573     // do auto identify
574     if (useAutoIdentify() && !autoIdentifyService().isEmpty() && !autoIdentifyPassword().isEmpty()) {
575         userInputHandler()->handleMsg(statusBuf, QString("%1 IDENTIFY %2").arg(autoIdentifyService(), autoIdentifyPassword()));
576     }
577
578     // restore old user modes if server default mode is set.
579     IrcUser *me_ = me();
580     if (me_) {
581         if (!me_->userModes().isEmpty()) {
582             restoreUserModes();
583         }
584         else {
585             connect(me_, SIGNAL(userModesSet(QString)), this, SLOT(restoreUserModes()));
586             connect(me_, SIGNAL(userModesAdded(QString)), this, SLOT(restoreUserModes()));
587         }
588     }
589
590     // send perform list
591     foreach(QString line, perform()) {
592         if (!line.isEmpty()) userInput(statusBuf, line);
593     }
594
595     // rejoin channels we've been in
596     if (rejoinChannels()) {
597         QStringList channels, keys;
598         foreach(QString chan, coreSession()->persistentChannels(networkId()).keys()) {
599             QString key = channelKey(chan);
600             if (!key.isEmpty()) {
601                 channels.prepend(chan);
602                 keys.prepend(key);
603             }
604             else {
605                 channels.append(chan);
606             }
607         }
608         QString joinString = QString("%1 %2").arg(channels.join(",")).arg(keys.join(",")).trimmed();
609         if (!joinString.isEmpty())
610             userInputHandler()->handleJoin(statusBuf, joinString);
611     }
612 }
613
614
615 void CoreNetwork::restoreUserModes()
616 {
617     IrcUser *me_ = me();
618     Q_ASSERT(me_);
619
620     disconnect(me_, SIGNAL(userModesSet(QString)), this, SLOT(restoreUserModes()));
621     disconnect(me_, SIGNAL(userModesAdded(QString)), this, SLOT(restoreUserModes()));
622
623     QString modesDelta = Core::userModes(userId(), networkId());
624     QString currentModes = me_->userModes();
625
626     QString addModes, removeModes;
627     if (modesDelta.contains('-')) {
628         addModes = modesDelta.section('-', 0, 0);
629         removeModes = modesDelta.section('-', 1);
630     }
631     else {
632         addModes = modesDelta;
633     }
634
635     addModes.remove(QRegExp(QString("[%1]").arg(currentModes)));
636     if (currentModes.isEmpty())
637         removeModes = QString();
638     else
639         removeModes.remove(QRegExp(QString("[^%1]").arg(currentModes)));
640
641     if (addModes.isEmpty() && removeModes.isEmpty())
642         return;
643
644     if (!addModes.isEmpty())
645         addModes = '+' + addModes;
646     if (!removeModes.isEmpty())
647         removeModes = '-' + removeModes;
648
649     // don't use InputHandler::handleMode() as it keeps track of our persistent mode changes
650     putRawLine(serverEncode(QString("MODE %1 %2%3").arg(me_->nick()).arg(addModes).arg(removeModes)));
651 }
652
653
654 void CoreNetwork::updateIssuedModes(const QString &requestedModes)
655 {
656     QString addModes;
657     QString removeModes;
658     bool addMode = true;
659
660     for (int i = 0; i < requestedModes.length(); i++) {
661         if (requestedModes[i] == '+') {
662             addMode = true;
663             continue;
664         }
665         if (requestedModes[i] == '-') {
666             addMode = false;
667             continue;
668         }
669         if (addMode) {
670             addModes += requestedModes[i];
671         }
672         else {
673             removeModes += requestedModes[i];
674         }
675     }
676
677     QString addModesOld = _requestedUserModes.section('-', 0, 0);
678     QString removeModesOld = _requestedUserModes.section('-', 1);
679
680     addModes.remove(QRegExp(QString("[%1]").arg(addModesOld))); // deduplicate
681     addModesOld.remove(QRegExp(QString("[%1]").arg(removeModes))); // update
682     addModes += addModesOld;
683
684     removeModes.remove(QRegExp(QString("[%1]").arg(removeModesOld))); // deduplicate
685     removeModesOld.remove(QRegExp(QString("[%1]").arg(addModes))); // update
686     removeModes += removeModesOld;
687
688     _requestedUserModes = QString("%1-%2").arg(addModes).arg(removeModes);
689 }
690
691
692 void CoreNetwork::updatePersistentModes(QString addModes, QString removeModes)
693 {
694     QString persistentUserModes = Core::userModes(userId(), networkId());
695
696     QString requestedAdd = _requestedUserModes.section('-', 0, 0);
697     QString requestedRemove = _requestedUserModes.section('-', 1);
698
699     QString persistentAdd, persistentRemove;
700     if (persistentUserModes.contains('-')) {
701         persistentAdd = persistentUserModes.section('-', 0, 0);
702         persistentRemove = persistentUserModes.section('-', 1);
703     }
704     else {
705         persistentAdd = persistentUserModes;
706     }
707
708     // remove modes we didn't issue
709     if (requestedAdd.isEmpty())
710         addModes = QString();
711     else
712         addModes.remove(QRegExp(QString("[^%1]").arg(requestedAdd)));
713
714     if (requestedRemove.isEmpty())
715         removeModes = QString();
716     else
717         removeModes.remove(QRegExp(QString("[^%1]").arg(requestedRemove)));
718
719     // deduplicate
720     persistentAdd.remove(QRegExp(QString("[%1]").arg(addModes)));
721     persistentRemove.remove(QRegExp(QString("[%1]").arg(removeModes)));
722
723     // update
724     persistentAdd.remove(QRegExp(QString("[%1]").arg(removeModes)));
725     persistentRemove.remove(QRegExp(QString("[%1]").arg(addModes)));
726
727     // update issued mode list
728     requestedAdd.remove(QRegExp(QString("[%1]").arg(addModes)));
729     requestedRemove.remove(QRegExp(QString("[%1]").arg(removeModes)));
730     _requestedUserModes = QString("%1-%2").arg(requestedAdd).arg(requestedRemove);
731
732     persistentAdd += addModes;
733     persistentRemove += removeModes;
734     Core::setUserModes(userId(), networkId(), QString("%1-%2").arg(persistentAdd).arg(persistentRemove));
735 }
736
737
738 void CoreNetwork::resetPersistentModes()
739 {
740     _requestedUserModes = QString('-');
741     Core::setUserModes(userId(), networkId(), QString());
742 }
743
744
745 void CoreNetwork::setUseAutoReconnect(bool use)
746 {
747     Network::setUseAutoReconnect(use);
748     if (!use)
749         _autoReconnectTimer.stop();
750 }
751
752
753 void CoreNetwork::setAutoReconnectInterval(quint32 interval)
754 {
755     Network::setAutoReconnectInterval(interval);
756     _autoReconnectTimer.setInterval(interval * 1000);
757 }
758
759
760 void CoreNetwork::setAutoReconnectRetries(quint16 retries)
761 {
762     Network::setAutoReconnectRetries(retries);
763     if (_autoReconnectCount != 0) {
764         if (unlimitedReconnectRetries())
765             _autoReconnectCount = -1;
766         else
767             _autoReconnectCount = autoReconnectRetries();
768     }
769 }
770
771
772 void CoreNetwork::doAutoReconnect()
773 {
774     if (connectionState() != Network::Disconnected && connectionState() != Network::Reconnecting) {
775         qWarning() << "CoreNetwork::doAutoReconnect(): Cannot reconnect while not being disconnected!";
776         return;
777     }
778     if (_autoReconnectCount > 0 || _autoReconnectCount == -1)
779         _autoReconnectCount--;  // -2 means we delay the next reconnect
780     connectToIrc(true);
781 }
782
783
784 void CoreNetwork::sendPing()
785 {
786     uint now = QDateTime::currentDateTime().toTime_t();
787     if (_pingCount != 0) {
788         qDebug() << "UserId:" << userId() << "Network:" << networkName() << "missed" << _pingCount << "pings."
789                  << "BA:" << socket.bytesAvailable() << "BTW:" << socket.bytesToWrite();
790     }
791     if ((int)_pingCount >= networkConfig()->maxPingCount() && now - _lastPingTime <= (uint)(_pingTimer.interval() / 1000) + 1) {
792         // the second check compares the actual elapsed time since the last ping and the pingTimer interval
793         // if the interval is shorter then the actual elapsed time it means that this thread was somehow blocked
794         // and unable to even handle a ping answer. So we ignore those misses.
795         disconnectFromIrc(false, QString("No Ping reply in %1 seconds.").arg(_pingCount * _pingTimer.interval() / 1000), true /* withReconnect */);
796     }
797     else {
798         _lastPingTime = now;
799         _pingCount++;
800         // Don't send pings until the network is initialized
801         if(_sendPings)
802             userInputHandler()->handlePing(BufferInfo(), QString());
803     }
804 }
805
806
807 void CoreNetwork::enablePingTimeout(bool enable)
808 {
809     if (!enable)
810         disablePingTimeout();
811     else {
812         resetPingTimeout();
813         if (networkConfig()->pingTimeoutEnabled())
814             _pingTimer.start();
815     }
816 }
817
818
819 void CoreNetwork::disablePingTimeout()
820 {
821     _pingTimer.stop();
822     _sendPings = false;
823     resetPingTimeout();
824 }
825
826
827 void CoreNetwork::setPingInterval(int interval)
828 {
829     _pingTimer.setInterval(interval * 1000);
830 }
831
832
833 /******** AutoWHO ********/
834
835 void CoreNetwork::startAutoWhoCycle()
836 {
837     if (!_autoWhoQueue.isEmpty()) {
838         _autoWhoCycleTimer.stop();
839         return;
840     }
841     _autoWhoQueue = channels();
842 }
843
844
845 void CoreNetwork::setAutoWhoDelay(int delay)
846 {
847     _autoWhoTimer.setInterval(delay * 1000);
848 }
849
850
851 void CoreNetwork::setAutoWhoInterval(int interval)
852 {
853     _autoWhoCycleTimer.setInterval(interval * 1000);
854 }
855
856
857 void CoreNetwork::setAutoWhoEnabled(bool enabled)
858 {
859     if (enabled && isConnected() && !_autoWhoTimer.isActive())
860         _autoWhoTimer.start();
861     else if (!enabled) {
862         _autoWhoTimer.stop();
863         _autoWhoCycleTimer.stop();
864     }
865 }
866
867
868 void CoreNetwork::sendAutoWho()
869 {
870     // Don't send autowho if there are still some pending
871     if (_autoWhoPending.count())
872         return;
873
874     while (!_autoWhoQueue.isEmpty()) {
875         QString chan = _autoWhoQueue.takeFirst();
876         IrcChannel *ircchan = ircChannel(chan);
877         if (!ircchan) continue;
878         if (networkConfig()->autoWhoNickLimit() > 0 && ircchan->ircUsers().count() >= networkConfig()->autoWhoNickLimit())
879             continue;
880         _autoWhoPending[chan]++;
881         putRawLine("WHO " + serverEncode(chan));
882         break;
883     }
884     if (_autoWhoQueue.isEmpty() && networkConfig()->autoWhoEnabled() && !_autoWhoCycleTimer.isActive()) {
885         // Timer was stopped, means a new cycle is due immediately
886         _autoWhoCycleTimer.start();
887         startAutoWhoCycle();
888     }
889 }
890
891
892 #ifdef HAVE_SSL
893 void CoreNetwork::sslErrors(const QList<QSslError> &sslErrors)
894 {
895     Q_UNUSED(sslErrors)
896     socket.ignoreSslErrors();
897     // TODO errorhandling
898 }
899
900
901 #endif  // HAVE_SSL
902
903 void CoreNetwork::fillBucketAndProcessQueue()
904 {
905     if (_tokenBucket < _burstSize) {
906         _tokenBucket++;
907     }
908
909     while (_msgQueue.size() > 0 && _tokenBucket > 0) {
910         writeToSocket(_msgQueue.takeFirst());
911     }
912 }
913
914
915 void CoreNetwork::writeToSocket(const QByteArray &data)
916 {
917     socket.write(data);
918     socket.write("\r\n");
919     _tokenBucket--;
920 }
921
922
923 Network::Server CoreNetwork::usedServer() const
924 {
925     if (_lastUsedServerIndex < serverList().count())
926         return serverList()[_lastUsedServerIndex];
927
928     if (!serverList().isEmpty())
929         return serverList()[0];
930
931     return Network::Server();
932 }
933
934
935 void CoreNetwork::requestConnect() const
936 {
937     if (connectionState() != Disconnected) {
938         qWarning() << "Requesting connect while already being connected!";
939         return;
940     }
941     QMetaObject::invokeMethod(const_cast<CoreNetwork *>(this), "connectToIrc", Qt::QueuedConnection);
942 }
943
944
945 void CoreNetwork::requestDisconnect() const
946 {
947     if (connectionState() == Disconnected) {
948         qWarning() << "Requesting disconnect while not being connected!";
949         return;
950     }
951     userInputHandler()->handleQuit(BufferInfo(), QString());
952 }
953
954
955 void CoreNetwork::requestSetNetworkInfo(const NetworkInfo &info)
956 {
957     Network::Server currentServer = usedServer();
958     setNetworkInfo(info);
959     Core::updateNetwork(coreSession()->user(), info);
960
961     // the order of the servers might have changed,
962     // so we try to find the previously used server
963     _lastUsedServerIndex = 0;
964     for (int i = 0; i < serverList().count(); i++) {
965         Network::Server server = serverList()[i];
966         if (server.host == currentServer.host && server.port == currentServer.port) {
967             _lastUsedServerIndex = i;
968             break;
969         }
970     }
971 }