Merge pull request #5 from Tucos/feat-keyx
[quassel.git] / src / core / corenetwork.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2013 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 #ifndef CORENETWORK_H
22 #define CORENETWORK_H
23
24 #include "network.h"
25 #include "coreircchannel.h"
26 #include "coreircuser.h"
27
28 #include <QTimer>
29
30 #ifdef HAVE_SSL
31 # include <QSslSocket>
32 # include <QSslError>
33 #else
34 # include <QTcpSocket>
35 #endif
36
37 #ifdef HAVE_QCA2
38 #  include "cipher.h"
39 #endif
40
41 #include "coresession.h"
42
43 class CoreIdentity;
44 class CoreUserInputHandler;
45 class CoreIgnoreListManager;
46 class Event;
47
48 class CoreNetwork : public Network
49 {
50     SYNCABLE_OBJECT
51         Q_OBJECT
52
53 public:
54     CoreNetwork(const NetworkId &networkid, CoreSession *session);
55     ~CoreNetwork();
56     inline virtual const QMetaObject *syncMetaObject() const { return &Network::staticMetaObject; }
57
58     inline CoreIdentity *identityPtr() const { return coreSession()->identity(identity()); }
59     inline CoreSession *coreSession() const { return _coreSession; }
60     inline CoreNetworkConfig *networkConfig() const { return coreSession()->networkConfig(); }
61
62     inline CoreUserInputHandler *userInputHandler() const { return _userInputHandler; }
63     inline CoreIgnoreListManager *ignoreListManager() { return coreSession()->ignoreListManager(); }
64
65     //! Decode a string using the server (network) decoding.
66     inline QString serverDecode(const QByteArray &string) const { return decodeServerString(string); }
67
68     //! Decode a string using a channel-specific encoding if one is set (and use the standard encoding else).
69     QString channelDecode(const QString &channelName, const QByteArray &string) const;
70
71     //! Decode a string using an IrcUser-specific encoding, if one exists (using the standaed encoding else).
72     QString userDecode(const QString &userNick, const QByteArray &string) const;
73
74     //! Encode a string using the server (network) encoding.
75     inline QByteArray serverEncode(const QString &string) const { return encodeServerString(string); }
76
77     //! Encode a string using the channel-specific encoding, if set, and use the standard encoding else.
78     QByteArray channelEncode(const QString &channelName, const QString &string) const;
79
80     //! Encode a string using the user-specific encoding, if set, and use the standard encoding else.
81     QByteArray userEncode(const QString &userNick, const QString &string) const;
82
83     inline QString channelKey(const QString &channel) const { return _channelKeys.value(channel.toLower(), QString()); }
84
85     inline bool isAutoWhoInProgress(const QString &channel) const { return _autoWhoPending.value(channel.toLower(), 0); }
86
87     inline UserId userId() const { return _coreSession->user(); }
88
89     inline QAbstractSocket::SocketState socketState() const { return socket.state(); }
90     inline bool socketConnected() const { return socket.state() == QAbstractSocket::ConnectedState; }
91     inline QHostAddress localAddress() const { return socket.localAddress(); }
92     inline QHostAddress peerAddress() const { return socket.peerAddress(); }
93     inline quint16 localPort() const { return socket.localPort(); }
94     inline quint16 peerPort() const { return socket.peerPort(); }
95
96 public slots:
97     virtual void setMyNick(const QString &mynick);
98
99     virtual void requestConnect() const;
100     virtual void requestDisconnect() const;
101     virtual void requestSetNetworkInfo(const NetworkInfo &info);
102
103     virtual void setUseAutoReconnect(bool);
104     virtual void setAutoReconnectInterval(quint32);
105     virtual void setAutoReconnectRetries(quint16);
106
107     void setPingInterval(int interval);
108
109     void connectToIrc(bool reconnecting = false);
110     void disconnectFromIrc(bool requested = true, const QString &reason = QString(), bool withReconnect = false);
111
112     void userInput(BufferInfo bufferInfo, QString msg);
113     void putRawLine(QByteArray input);
114     void putCmd(const QString &cmd, const QList<QByteArray> &params, const QByteArray &prefix = QByteArray());
115
116     void setChannelJoined(const QString &channel);
117     void setChannelParted(const QString &channel);
118     void addChannelKey(const QString &channel, const QString &key);
119     void removeChannelKey(const QString &channel);
120
121     // Blowfish stuff
122 #ifdef HAVE_QCA2
123     Cipher *cipher(const QString &recipient);
124     QByteArray cipherKey(const QString &recipient) const;
125     void setCipherKey(const QString &recipient, const QByteArray &key);
126 #endif
127
128     void setAutoWhoEnabled(bool enabled);
129     void setAutoWhoInterval(int interval);
130     void setAutoWhoDelay(int delay);
131
132     bool setAutoWhoDone(const QString &channel);
133
134     void updateIssuedModes(const QString &requestedModes);
135     void updatePersistentModes(QString addModes, QString removeModes);
136     void resetPersistentModes();
137
138     Server usedServer() const;
139
140     inline void resetPingTimeout() { _pingCount = 0; }
141
142     inline void displayMsg(Message::Type msgType, BufferInfo::Type bufferType, const QString &target, const QString &text, const QString &sender = "", Message::Flags flags = Message::None)
143     {
144         emit displayMsg(networkId(), msgType, bufferType, target, text, sender, flags);
145     }
146
147
148 signals:
149     void recvRawServerMsg(QString);
150     void displayStatusMsg(QString);
151     void displayMsg(NetworkId, Message::Type, BufferInfo::Type, const QString &target, const QString &text, const QString &sender = "", Message::Flags flags = Message::None);
152     void disconnected(NetworkId networkId);
153     void connectionError(const QString &errorMsg);
154
155     void quitRequested(NetworkId networkId);
156     void sslErrors(const QVariant &errorData);
157
158     void newEvent(Event *event);
159     void socketInitialized(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort);
160     void socketDisconnected(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort);
161
162 protected:
163     inline virtual IrcChannel *ircChannelFactory(const QString &channelname) { return new CoreIrcChannel(channelname, this); }
164     inline virtual IrcUser *ircUserFactory(const QString &hostmask) { return new CoreIrcUser(hostmask, this); }
165
166 protected slots:
167     // TODO: remove cached cipher keys, when appropriate
168     //virtual void removeIrcUser(IrcUser *ircuser);
169     //virtual void removeIrcChannel(IrcChannel *ircChannel);
170     //virtual void removeChansAndUsers();
171
172 private slots:
173     void socketHasData();
174     void socketError(QAbstractSocket::SocketError);
175     void socketInitialized();
176     inline void socketCloseTimeout() { socket.disconnectFromHost(); }
177     void socketDisconnected();
178     void socketStateChanged(QAbstractSocket::SocketState);
179     void networkInitialized();
180
181     void sendPerform();
182     void restoreUserModes();
183     void doAutoReconnect();
184     void sendPing();
185     void enablePingTimeout(bool enable = true);
186     void disablePingTimeout();
187     void sendAutoWho();
188     void startAutoWhoCycle();
189
190 #ifdef HAVE_SSL
191     void sslErrors(const QList<QSslError> &errors);
192 #endif
193
194     void fillBucketAndProcessQueue();
195
196     void writeToSocket(const QByteArray &data);
197
198 private:
199     CoreSession *_coreSession;
200
201 #ifdef HAVE_SSL
202     QSslSocket socket;
203 #else
204     QTcpSocket socket;
205 #endif
206
207     CoreUserInputHandler *_userInputHandler;
208
209     QHash<QString, QString> _channelKeys; // stores persistent channels and their passwords, if any
210
211     QTimer _autoReconnectTimer;
212     int _autoReconnectCount;
213
214     QTimer _socketCloseTimer;
215
216     /* this flag triggers quitRequested() once the socket is closed
217      * it is needed to determine whether or not the connection needs to be
218      * in the automatic session restore. */
219     bool _quitRequested;
220     QString _quitReason;
221
222     bool _previousConnectionAttemptFailed;
223     int _lastUsedServerIndex;
224
225     QTimer _pingTimer;
226     uint _lastPingTime;
227     uint _pingCount;
228
229     QStringList _autoWhoQueue;
230     QHash<QString, int> _autoWhoPending;
231     QTimer _autoWhoTimer, _autoWhoCycleTimer;
232
233     QTimer _tokenBucketTimer;
234     int _messageDelay;      // token refill speed in ms
235     int _burstSize;         // size of the token bucket
236     int _tokenBucket;       // the virtual bucket that holds the tokens
237     QList<QByteArray> _msgQueue;
238
239     QString _requestedUserModes; // 2 strings separated by a '-' character. first part are requested modes to add, the second to remove
240
241     // Blowfish key map
242     QHash<QString, QByteArray> _cipherKeys;
243 };
244
245
246 #endif //CORENETWORK_H