current highlighted search result is no longer reset when the search string changes...
[quassel.git] / src / core / networkconnection.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20 #include "networkconnection.h"
21
22 #include <QMetaObject>
23 #include <QMetaMethod>
24 #include <QDateTime>
25
26 #include "util.h"
27 #include "core.h"
28 #include "coresession.h"
29
30 #include "ircchannel.h"
31 #include "ircuser.h"
32 #include "identity.h"
33
34 #include "ircserverhandler.h"
35 #include "userinputhandler.h"
36 #include "ctcphandler.h"
37
38 #include "logger.h"
39
40 NetworkConnection::NetworkConnection(Network *network, CoreSession *session)
41   : QObject(network),
42     _connectionState(Network::Disconnected),
43     _network(network),
44     _coreSession(session),
45     _ircServerHandler(new IrcServerHandler(this)),
46     _userInputHandler(new UserInputHandler(this)),
47     _ctcpHandler(new CtcpHandler(this)),
48     _autoReconnectCount(0),
49     _quitRequested(false),
50
51     _previousConnectionAttemptFailed(false),
52     _lastUsedServerlistIndex(0),
53
54     // TODO make autowho configurable (possibly per-network)
55     _autoWhoEnabled(true),
56     _autoWhoInterval(90),
57     _autoWhoNickLimit(0), // unlimited
58     _autoWhoDelay(3),
59
60     // TokenBucket to avaid sending too much at once
61     _messagesPerSecond(1),
62     _burstSize(5),
63     _tokenBucket(5) // init with a full bucket
64 {
65   _autoReconnectTimer.setSingleShot(true);
66   _socketCloseTimer.setSingleShot(true);
67   connect(&_socketCloseTimer, SIGNAL(timeout()), this, SLOT(socketCloseTimeout()));
68
69   _pingTimer.setInterval(60000);
70   connect(&_pingTimer, SIGNAL(timeout()), this, SLOT(sendPing()));
71
72   _autoWhoTimer.setInterval(_autoWhoDelay * 1000);
73   _autoWhoCycleTimer.setInterval(_autoWhoInterval * 1000);
74   
75   _tokenBucketTimer.start(_messagesPerSecond * 1000);
76
77   QHash<QString, QString> channels = coreSession()->persistentChannels(networkId());
78   foreach(QString chan, channels.keys()) {
79     _channelKeys[chan.toLower()] = channels[chan];
80   }
81
82   connect(&_autoReconnectTimer, SIGNAL(timeout()), this, SLOT(doAutoReconnect()));
83   connect(&_autoWhoTimer, SIGNAL(timeout()), this, SLOT(sendAutoWho()));
84   connect(&_autoWhoCycleTimer, SIGNAL(timeout()), this, SLOT(startAutoWhoCycle()));
85   connect(&_tokenBucketTimer, SIGNAL(timeout()), this, SLOT(fillBucketAndProcessQueue()));
86
87   connect(network, SIGNAL(currentServerSet(const QString &)), this, SLOT(networkInitialized(const QString &)));
88   connect(network, SIGNAL(useAutoReconnectSet(bool)), this, SLOT(autoReconnectSettingsChanged()));
89   connect(network, SIGNAL(autoReconnectIntervalSet(quint32)), this, SLOT(autoReconnectSettingsChanged()));
90   connect(network, SIGNAL(autoReconnectRetriesSet(quint16)), this, SLOT(autoReconnectSettingsChanged()));
91
92 #ifdef HAVE_SSL
93   connect(&socket, SIGNAL(encrypted()), this, SLOT(socketEncrypted()));
94   connect(&socket, SIGNAL(sslErrors(const QList<QSslError> &)), this, SLOT(sslErrors(const QList<QSslError> &)));
95 #endif
96   connect(&socket, SIGNAL(connected()), this, SLOT(socketConnected()));
97
98   connect(&socket, SIGNAL(disconnected()), this, SLOT(socketDisconnected()));
99   connect(&socket, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(socketError(QAbstractSocket::SocketError)));
100   connect(&socket, SIGNAL(stateChanged(QAbstractSocket::SocketState)), this, SLOT(socketStateChanged(QAbstractSocket::SocketState)));
101   connect(&socket, SIGNAL(readyRead()), this, SLOT(socketHasData()));
102
103   connect(_ircServerHandler, SIGNAL(nickChanged(const QString &, const QString &)),
104           this, SLOT(nickChanged(const QString &, const QString &)));
105
106   network->proxy()->attachSignal(this, SIGNAL(sslErrors(const QVariant &)));
107 }
108
109 NetworkConnection::~NetworkConnection() {
110   if(connectionState() != Network::Disconnected && connectionState() != Network::Reconnecting)
111     disconnectFromIrc(false); // clean up, but this does not count as requested disconnect!
112   disconnect(&socket, 0, this, 0); // this keeps the socket from triggering events during clean up
113   delete _ircServerHandler;
114   delete _userInputHandler;
115   delete _ctcpHandler;
116 }
117
118 void NetworkConnection::setConnectionState(Network::ConnectionState state) {
119   _connectionState = state;
120   network()->setConnectionState(state);
121   emit connectionStateChanged(state);
122 }
123
124 QString NetworkConnection::serverDecode(const QByteArray &string) const {
125   return network()->decodeServerString(string);
126 }
127
128 QString NetworkConnection::channelDecode(const QString &bufferName, const QByteArray &string) const {
129   if(!bufferName.isEmpty()) {
130     IrcChannel *channel = network()->ircChannel(bufferName);
131     if(channel) return channel->decodeString(string);
132   }
133   return network()->decodeString(string);
134 }
135
136 QString NetworkConnection::userDecode(const QString &userNick, const QByteArray &string) const {
137   IrcUser *user = network()->ircUser(userNick);
138   if(user) return user->decodeString(string);
139   return network()->decodeString(string);
140 }
141
142 QByteArray NetworkConnection::serverEncode(const QString &string) const {
143   return network()->encodeServerString(string);
144 }
145
146 QByteArray NetworkConnection::channelEncode(const QString &bufferName, const QString &string) const {
147   if(!bufferName.isEmpty()) {
148     IrcChannel *channel = network()->ircChannel(bufferName);
149     if(channel) return channel->encodeString(string);
150   }
151   return network()->encodeString(string);
152 }
153
154 QByteArray NetworkConnection::userEncode(const QString &userNick, const QString &string) const {
155   IrcUser *user = network()->ircUser(userNick);
156   if(user) return user->encodeString(string);
157   return network()->encodeString(string);
158 }
159
160 void NetworkConnection::autoReconnectSettingsChanged() {
161   if(!network()->useAutoReconnect()) {
162     _autoReconnectTimer.stop();
163     _autoReconnectCount = 0;
164   } else {
165     _autoReconnectTimer.setInterval(network()->autoReconnectInterval() * 1000);
166     if(_autoReconnectCount != 0) {
167       if(network()->unlimitedReconnectRetries()) _autoReconnectCount = -1;
168       else _autoReconnectCount = network()->autoReconnectRetries();
169     }
170   }
171 }
172
173 void NetworkConnection::connectToIrc(bool reconnecting) {
174   if(!reconnecting && network()->useAutoReconnect() && _autoReconnectCount == 0) {
175     _autoReconnectTimer.setInterval(network()->autoReconnectInterval() * 1000);
176     if(network()->unlimitedReconnectRetries()) _autoReconnectCount = -1;
177     else _autoReconnectCount = network()->autoReconnectRetries();
178   }
179   QVariantList serverList = network()->serverList();
180   Identity *identity = coreSession()->identity(network()->identity());
181   if(!serverList.count()) {
182     qWarning() << "Server list empty, ignoring connect request!";
183     return;
184   }
185   if(!identity) {
186     qWarning() << "Invalid identity configures, ignoring connect request!";
187     return;
188   }
189   // use a random server?
190   if(network()->useRandomServer()) {
191     _lastUsedServerlistIndex = qrand() % serverList.size();
192   } else if(_previousConnectionAttemptFailed) {
193     // cycle to next server if previous connection attempt failed
194     displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Connection failed. Cycling to next Server"));
195     if(++_lastUsedServerlistIndex == serverList.size()) {
196       _lastUsedServerlistIndex = 0;
197     }
198   }
199   _previousConnectionAttemptFailed = false;
200
201   QString host = serverList[_lastUsedServerlistIndex].toMap()["Host"].toString();
202   quint16 port = serverList[_lastUsedServerlistIndex].toMap()["Port"].toUInt();
203   displayStatusMsg(tr("Connecting to %1:%2...").arg(host).arg(port));
204   displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Connecting to %1:%2...").arg(host).arg(port));
205   socket.connectToHost(host, port);
206 }
207
208 void NetworkConnection::networkInitialized(const QString &currentServer) {
209   if(currentServer.isEmpty()) return;
210
211   if(network()->useAutoReconnect() && !network()->unlimitedReconnectRetries()) {
212     _autoReconnectCount = network()->autoReconnectRetries(); // reset counter
213   }
214
215   sendPerform();
216
217   // now we are initialized
218   setConnectionState(Network::Initialized);
219   network()->setConnected(true);
220   emit connected(networkId());
221
222   _pingTimer.start();
223
224   if(_autoWhoEnabled) {
225     _autoWhoCycleTimer.start();
226     _autoWhoTimer.start();
227     startAutoWhoCycle();  // FIXME wait for autojoin to be completed
228   }
229 }
230
231 void NetworkConnection::sendPerform() {
232   BufferInfo statusBuf = Core::bufferInfo(coreSession()->user(), network()->networkId(), BufferInfo::StatusBuffer);
233   // do auto identify
234   if(network()->useAutoIdentify() && !network()->autoIdentifyService().isEmpty() && !network()->autoIdentifyPassword().isEmpty()) {
235     userInputHandler()->handleMsg(statusBuf, QString("%1 IDENTIFY %2").arg(network()->autoIdentifyService(), network()->autoIdentifyPassword()));
236   }
237   // send perform list
238   foreach(QString line, network()->perform()) {
239     if(!line.isEmpty()) userInput(statusBuf, line);
240   }
241
242   // rejoin channels we've been in
243   QStringList channels, keys;
244   foreach(QString chan, persistentChannels()) {
245     QString key = channelKey(chan);
246     if(!key.isEmpty()) {
247       channels.prepend(chan); keys.prepend(key);
248     } else {
249       channels.append(chan);
250     }
251   }
252   QString joinString = QString("%1 %2").arg(channels.join(",")).arg(keys.join(",")).trimmed();
253   if(!joinString.isEmpty()) userInputHandler()->handleJoin(statusBuf, joinString);
254 }
255
256 void NetworkConnection::disconnectFromIrc(bool requested) {
257   _quitRequested = requested; // see socketDisconnected();
258   _autoReconnectTimer.stop();
259   _autoReconnectCount = 0; // prohibiting auto reconnect
260   displayMsg(Message::Server, BufferInfo::StatusBuffer, "", tr("Disconnecting."));
261   if(socket.state() == QAbstractSocket::UnconnectedState) {
262     socketDisconnected();
263   } else if(socket.state() < QAbstractSocket::ConnectedState) {
264     socket.close();
265     // we might be in a state waiting for a timeout... we don't care... set a disconnected state
266     socketDisconnected();
267   } else {
268     _socketCloseTimer.start(10000); // the irc server has 10 seconds to close the socket
269   }
270 }
271
272 void NetworkConnection::socketHasData() {
273   while(socket.canReadLine()) {
274     QByteArray s = socket.readLine().trimmed();
275     ircServerHandler()->handleServerMsg(s);
276   }
277 }
278
279 void NetworkConnection::socketError(QAbstractSocket::SocketError) {
280   _previousConnectionAttemptFailed = true;
281   qWarning() << qPrintable(tr("Could not connect to %1 (%2)").arg(network()->networkName(), socket.errorString()));
282   emit connectionError(socket.errorString());
283   emit displayMsg(Message::Error, BufferInfo::StatusBuffer, "", tr("Connection failure: %1").arg(socket.errorString()));
284   network()->emitConnectionError(socket.errorString());
285   if(socket.state() < QAbstractSocket::ConnectedState) {
286     socketDisconnected();
287   }
288   // mark last connection attempt as failed
289   
290   //qDebug() << "exiting...";
291   //exit(1);
292 }
293
294 #ifdef HAVE_SSL
295
296 void NetworkConnection::sslErrors(const QList<QSslError> &sslErrors) {
297   Q_UNUSED(sslErrors)
298   socket.ignoreSslErrors();
299   /* TODO errorhandling
300   QVariantMap errmsg;
301   QVariantList errnums;
302   foreach(QSslError err, errors) errnums << err.error();
303   errmsg["SslErrors"] = errnums;
304   errmsg["SslCert"] = socket.peerCertificate().toPem();
305   errmsg["PeerAddress"] = socket.peerAddress().toString();
306   errmsg["PeerPort"] = socket.peerPort();
307   errmsg["PeerName"] = socket.peerName();
308   emit sslErrors(errmsg);
309   disconnectFromIrc();
310   */
311 }
312
313 void NetworkConnection::socketEncrypted() {
314   //qDebug() << "encrypted!";
315   socketInitialized();
316 }
317
318 #endif  // HAVE_SSL
319
320 void NetworkConnection::socketConnected() {
321 #ifndef HAVE_SSL
322   socketInitialized();
323   return;
324 #else
325   if(!network()->serverList()[_lastUsedServerlistIndex].toMap()["UseSSL"].toBool()) {
326     socketInitialized();
327     return;
328   }
329   //qDebug() << "starting handshake";
330   socket.startClientEncryption();
331 #endif
332 }
333
334 void NetworkConnection::socketInitialized() {
335   //emit connected(networkId());  initialize first!
336   Identity *identity = coreSession()->identity(network()->identity());
337   if(!identity) {
338     qCritical() << "Identity invalid!";
339     disconnectFromIrc();
340     return;
341   }
342   QString passwd = network()->serverList()[_lastUsedServerlistIndex].toMap()["Password"].toString();
343   if(!passwd.isEmpty()) {
344     putRawLine(serverEncode(QString("PASS %1").arg(passwd)));
345   }
346   putRawLine(serverEncode(QString("NICK :%1").arg(identity->nicks()[0])));  // FIXME: try more nicks if error occurs
347   putRawLine(serverEncode(QString("USER %1 8 * :%2").arg(identity->ident(), identity->realName())));
348 }
349
350 void NetworkConnection::socketStateChanged(QAbstractSocket::SocketState socketState) {
351   Network::ConnectionState state;
352   switch(socketState) {
353     case QAbstractSocket::UnconnectedState:
354       state = Network::Disconnected;
355       break;
356     case QAbstractSocket::HostLookupState:
357     case QAbstractSocket::ConnectingState:
358       state = Network::Connecting;
359       break;
360     case QAbstractSocket::ConnectedState:
361       state = Network::Initializing;
362       break;
363     case QAbstractSocket::ClosingState:
364       state = Network::Disconnecting;
365       break;
366     default:
367       state = Network::Disconnected;
368   }
369   setConnectionState(state);
370 }
371
372 void NetworkConnection::socketCloseTimeout() {
373   socket.disconnectFromHost();
374 }
375
376 void NetworkConnection::socketDisconnected() {
377   _pingTimer.stop();
378   _autoWhoCycleTimer.stop();
379   _autoWhoTimer.stop();
380   _autoWhoQueue.clear();
381   _autoWhoInProgress.clear();
382
383   _socketCloseTimer.stop();
384   
385   network()->setConnected(false);
386   emit disconnected(networkId());
387   if(_quitRequested) {
388     setConnectionState(Network::Disconnected);
389     emit quitRequested(networkId());
390   } else if(_autoReconnectCount != 0) {
391     setConnectionState(Network::Reconnecting);
392     if(_autoReconnectCount == network()->autoReconnectRetries())
393       doAutoReconnect(); // first try is immediate
394     else
395       _autoReconnectTimer.start();
396   }
397 }
398
399 void NetworkConnection::doAutoReconnect() {
400   if(connectionState() != Network::Disconnected && connectionState() != Network::Reconnecting) {
401     qWarning() << "NetworkConnection::doAutoReconnect(): Cannot reconnect while not being disconnected!";
402     return;
403   }
404   if(_autoReconnectCount > 0) _autoReconnectCount--;
405   connectToIrc(true);
406 }
407
408 // FIXME switch to BufferId
409 void NetworkConnection::userInput(BufferInfo buf, QString msg) {
410   userInputHandler()->handleUserInput(buf, msg);
411 }
412
413 void NetworkConnection::putRawLine(QByteArray s) {
414   if(_tokenBucket > 0) {
415     // qDebug() << "putRawLine: " << s;
416     writeToSocket(s);
417   } else {
418     _msgQueue.append(s);
419   }
420 }
421
422 void NetworkConnection::writeToSocket(QByteArray s) {
423   s += "\r\n";
424   // qDebug() << "writeToSocket: " << s.size();
425   socket.write(s);
426   _tokenBucket--;
427 }
428
429 void NetworkConnection::fillBucketAndProcessQueue() {
430   if(_tokenBucket < _burstSize) {
431     _tokenBucket++;
432   }
433
434   while(_msgQueue.size() > 0 && _tokenBucket > 0) {
435     writeToSocket(_msgQueue.takeFirst());
436   }
437 }
438
439 // returns 0 if the message will not be chopped by the irc server or number of chopped bytes if message is too long
440 int NetworkConnection::lastParamOverrun(const QString &cmd, const QList<QByteArray> &params) {
441   //the server will pass our message that trunkated to 512 bytes including CRLF with the following format:
442   // ":prefix COMMAND param0 param1 :lastparam"
443   // where prefix = "nickname!user@host"
444   // that means that the last message can be as long as:
445   // 512 - nicklen - userlen - hostlen - commandlen - sum(param[0]..param[n-1])) - 2 (for CRLF) - 4 (":!@" + 1space between prefix and command) - max(paramcount - 1, 0) (space for simple params) - 2 (space and colon for last param)
446   IrcUser *me = network()->me();
447   int maxLen = 480 - cmd.toAscii().count(); // educated guess in case we don't know us (yet?)
448
449   if(me)
450     maxLen = 512 - serverEncode(me->nick()).count() - serverEncode(me->user()).count() - serverEncode(me->host()).count() - cmd.toAscii().count() - 6;
451
452   if(!params.isEmpty()) {
453     for(int i = 0; i < params.count() - 1; i++) {
454       maxLen -= (params[i].count() + 1);
455     }
456     maxLen -= 2; // " :" last param separator;
457     
458     if(params.last().count() > maxLen) {
459       return params.last().count() - maxLen;
460     } else {
461       return 0;
462     }
463   } else {
464     return 0;
465   }
466 }
467
468 void NetworkConnection::putCmd(const QString &cmd, const QList<QByteArray> &params, const QByteArray &prefix) {
469   QByteArray msg;
470   if(cmd == "PRIVMSG" && params.count() > 1) {
471     int overrun = lastParamOverrun(cmd, params);
472     if(overrun) {
473       QList<QByteArray> paramCopy1 = params;
474       paramCopy1.removeLast();
475       QList<QByteArray> paramCopy2 = paramCopy1;
476
477       QByteArray lastPart = params.last();
478       QByteArray splitter(" .,-");
479       int maxSplitPos = params.last().count() - overrun;
480       int splitPos = -1;
481       for(int i = 0; i < splitter.size(); i++) {
482         splitPos = qMax(splitPos, lastPart.lastIndexOf(splitter[i], maxSplitPos));
483       }
484       if(splitPos <= 0) {
485         splitPos = maxSplitPos;
486       }
487       
488       paramCopy1 << lastPart.left(splitPos);
489       paramCopy2 << lastPart.mid(splitPos);
490       putCmd(cmd, paramCopy1, prefix);
491       putCmd(cmd, paramCopy2, prefix);
492       return;
493     }
494   }
495      
496   if(!prefix.isEmpty())
497     msg += ":" + prefix + " ";
498   msg += cmd.toUpper().toAscii();
499
500   for(int i = 0; i < params.size() - 1; i++) {
501     msg += " " + params[i];
502   }
503   if(!params.isEmpty())
504     msg += " :" + params.last();
505
506   putRawLine(msg);
507 }
508
509 void NetworkConnection::sendPing() {
510   userInputHandler()->handlePing(BufferInfo(), QString());
511 }
512
513 void NetworkConnection::sendAutoWho() {
514   while(!_autoWhoQueue.isEmpty()) {
515     QString chan = _autoWhoQueue.takeFirst();
516     IrcChannel *ircchan = network()->ircChannel(chan);
517     if(!ircchan) continue;
518     if(_autoWhoNickLimit > 0 && ircchan->ircUsers().count() > _autoWhoNickLimit) continue;
519     _autoWhoInProgress[chan]++;
520     putRawLine("WHO " + serverEncode(chan));
521     if(_autoWhoQueue.isEmpty() && _autoWhoEnabled && !_autoWhoCycleTimer.isActive()) {
522       // Timer was stopped, means a new cycle is due immediately
523       _autoWhoCycleTimer.start();
524       startAutoWhoCycle();
525     }
526     break;
527   }
528 }
529
530 void NetworkConnection::startAutoWhoCycle() {
531   if(!_autoWhoQueue.isEmpty()) {
532     _autoWhoCycleTimer.stop();
533     return;
534   }
535   _autoWhoQueue = network()->channels();
536 }
537
538 bool NetworkConnection::setAutoWhoDone(const QString &channel) {
539   if(_autoWhoInProgress.value(channel.toLower(), 0) <= 0) return false;
540   _autoWhoInProgress[channel.toLower()]--;
541   return true;
542 }
543
544 void NetworkConnection::setChannelJoined(const QString &channel) {
545   emit channelJoined(networkId(), channel, _channelKeys[channel.toLower()]);
546   _autoWhoQueue.prepend(channel.toLower()); // prepend so this new chan is the first to be checked
547 }
548
549 void NetworkConnection::setChannelParted(const QString &channel) {
550   removeChannelKey(channel);
551   _autoWhoQueue.removeAll(channel.toLower());
552   _autoWhoInProgress.remove(channel.toLower());
553   emit channelParted(networkId(), channel);
554 }
555
556 void NetworkConnection::addChannelKey(const QString &channel, const QString &key) {
557   if(key.isEmpty()) {
558     removeChannelKey(channel);
559   } else {
560     _channelKeys[channel.toLower()] = key;
561   }
562 }
563
564 void NetworkConnection::removeChannelKey(const QString &channel) {
565   _channelKeys.remove(channel.toLower());
566 }
567
568 void NetworkConnection::nickChanged(const QString &newNick, const QString &oldNick) {
569   emit nickChanged(networkId(), newNick, oldNick);
570 }
571
572 /* Exception classes for message handling */
573 NetworkConnection::ParseError::ParseError(QString cmd, QString prefix, QStringList params) {
574   Q_UNUSED(prefix);
575   _msg = QString("Command Parse Error: ") + cmd + params.join(" ");
576 }
577
578 NetworkConnection::UnknownCmdError::UnknownCmdError(QString cmd, QString prefix, QStringList params) {
579   Q_UNUSED(prefix);
580   _msg = QString("Unknown Command: ") + cmd + params.join(" ");
581 }
582