1 /***************************************************************************
2 * Copyright (C) 2005-2014 by the Quassel Project *
3 * devel@quassel-irc.org *
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. *
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. *
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 ***************************************************************************/
21 #include "clientauthhandler.h"
23 // TODO: support system application proxy (new in Qt 4.6)
34 #include "clientsettings.h"
35 #include "peerfactory.h"
37 using namespace Protocol;
39 ClientAuthHandler::ClientAuthHandler(CoreAccount account, QObject *parent)
40 : AuthHandler(parent),
45 _connectionFeatures(0)
51 void ClientAuthHandler::connectToCore()
53 CoreAccountSettings s;
56 QSslSocket *socket = new QSslSocket(this);
57 // make sure the warning is shown if we happen to connect without SSL support later
58 s.setAccountValue("ShowNoClientSslWarning", true);
60 if (_account.useSsl()) {
61 if (s.accountValue("ShowNoClientSslWarning", true).toBool()) {
62 bool accepted = false;
63 emit handleNoSslInClient(&accepted);
65 emit errorMessage(tr("Unencrypted connection canceled"));
68 s.setAccountValue("ShowNoClientSslWarning", false);
71 QTcpSocket *socket = new QTcpSocket(this);
74 // TODO: Handle system proxy
75 #ifndef QT_NO_NETWORKPROXY
76 if (_account.useProxy()) {
77 QNetworkProxy proxy(_account.proxyType(), _account.proxyHostName(), _account.proxyPort(), _account.proxyUser(), _account.proxyPassword());
78 socket->setProxy(proxy);
83 connect(socket, SIGNAL(stateChanged(QAbstractSocket::SocketState)), SLOT(onSocketStateChanged(QAbstractSocket::SocketState)));
84 connect(socket, SIGNAL(readyRead()), SLOT(onReadyRead()));
85 connect(socket, SIGNAL(connected()), SLOT(onSocketConnected()));
87 emit statusMessage(tr("Connecting to %1...").arg(_account.accountName()));
88 socket->connectToHost(_account.hostName(), _account.port());
92 void ClientAuthHandler::onSocketStateChanged(QAbstractSocket::SocketState socketState)
97 case QAbstractSocket::HostLookupState:
99 text = tr("Looking up %1...").arg(_account.hostName());
101 case QAbstractSocket::ConnectingState:
103 text = tr("Connecting to %1...").arg(_account.hostName());
105 case QAbstractSocket::ConnectedState:
106 text = tr("Connected to %1").arg(_account.hostName());
108 case QAbstractSocket::ClosingState:
110 text = tr("Disconnecting from %1...").arg(_account.hostName());
112 case QAbstractSocket::UnconnectedState:
114 text = tr("Disconnected");
115 // Ensure the disconnected() signal is sent even if we haven't reached the Connected state yet.
116 // The baseclass implementation will make sure to only send the signal once.
117 // However, we do want to prefer a potential socket error signal that may be on route already, so
118 // give this a chance to overtake us by spinning the loop...
119 QTimer::singleShot(0, this, SLOT(onSocketDisconnected()));
126 if (!text.isEmpty()) {
127 emit statusMessage(text);
131 void ClientAuthHandler::onSocketError(QAbstractSocket::SocketError error)
133 if (_probing && error == QAbstractSocket::RemoteHostClosedError) {
138 _probing = false; // all other errors are unrelated to probing and should be handled
139 AuthHandler::onSocketError(error);
143 void ClientAuthHandler::onSocketDisconnected()
145 if (_probing && _legacy) {
146 // Remote host has closed the connection while probing
148 disconnect(socket(), SIGNAL(readyRead()), this, SLOT(onReadyRead()));
149 emit statusMessage(tr("Reconnecting in compatibility mode..."));
150 socket()->connectToHost(_account.hostName(), _account.port());
154 AuthHandler::onSocketDisconnected();
158 void ClientAuthHandler::onSocketConnected()
161 qWarning() << Q_FUNC_INFO << "Peer already exists!";
165 socket()->setSocketOption(QAbstractSocket::KeepAliveOption, true);
168 // First connection attempt, try probing for a capable core
171 QDataStream stream(socket()); // stream handles the endianness for us
173 quint32 magic = Protocol::magic;
175 if (_account.useSsl())
176 magic |= Protocol::Encryption;
178 magic |= Protocol::Compression;
182 // here goes the list of protocols we support, in order of preference
183 PeerFactory::ProtoList protos = PeerFactory::supportedProtocols();
184 for (int i = 0; i < protos.count(); ++i) {
185 quint32 reply = protos[i].first;
186 reply |= protos[i].second<<8;
187 if (i == protos.count() - 1)
188 reply |= 0x80000000; // end list
192 socket()->flush(); // make sure the probing data is sent immediately
196 // If we arrive here, it's the second connection attempt, meaning probing was not successful -> enable legacy support
198 qDebug() << "Legacy core detected, switching to compatibility mode";
200 RemotePeer *peer = PeerFactory::createPeer(PeerFactory::ProtoDescriptor(Protocol::LegacyProtocol, 0), this, socket(), Compressor::NoCompression, this);
201 // Only needed for the legacy peer, as all others check the protocol version before instantiation
202 connect(peer, SIGNAL(protocolVersionMismatch(int,int)), SLOT(onProtocolVersionMismatch(int,int)));
208 void ClientAuthHandler::onReadyRead()
210 if (socket()->bytesAvailable() < 4)
214 return; // make sure to not read more data than needed
217 disconnect(socket(), SIGNAL(readyRead()), this, SLOT(onReadyRead()));
220 socket()->read((char *)&reply, 4);
221 reply = qFromBigEndian<quint32>(reply);
223 Protocol::Type type = static_cast<Protocol::Type>(reply & 0xff);
224 quint16 protoFeatures = static_cast<quint16>(reply>>8 & 0xffff);
225 _connectionFeatures = static_cast<quint8>(reply>>24);
227 Compressor::CompressionLevel level;
228 if (_connectionFeatures & Protocol::Compression)
229 level = Compressor::BestCompression;
231 level = Compressor::NoCompression;
233 RemotePeer *peer = PeerFactory::createPeer(PeerFactory::ProtoDescriptor(type, protoFeatures), this, socket(), level, this);
235 qWarning() << "No valid protocol supported for this core!";
236 emit errorPopup(tr("<b>Incompatible Quassel Core!</b><br>"
237 "None of the protocols this client speaks are supported by the core you are trying to connect to."));
239 requestDisconnect(tr("Core speaks none of the protocols we support"));
243 if (peer->protocol() == Protocol::LegacyProtocol) {
244 connect(peer, SIGNAL(protocolVersionMismatch(int,int)), SLOT(onProtocolVersionMismatch(int,int)));
252 void ClientAuthHandler::onProtocolVersionMismatch(int actual, int expected)
254 emit errorPopup(tr("<b>The Quassel Core you are trying to connect to is too old!</b><br>"
255 "We need at least protocol v%1, but the core speaks v%2 only.").arg(expected, actual));
256 requestDisconnect(tr("Incompatible protocol version, connection to core refused"));
260 void ClientAuthHandler::setPeer(RemotePeer *peer)
262 qDebug().nospace() << "Using " << qPrintable(peer->protocolName()) << "...";
265 connect(_peer, SIGNAL(transferProgress(int,int)), SIGNAL(transferProgress(int,int)));
267 // The legacy protocol enables SSL later, after registration
268 if (!_account.useSsl() || _legacy)
270 // otherwise, do it now
272 checkAndEnableSsl(_connectionFeatures & Protocol::Encryption);
276 void ClientAuthHandler::startRegistration()
278 emit statusMessage(tr("Synchronizing to core..."));
280 // useSsl will be ignored by non-legacy peers
283 useSsl = _account.useSsl();
286 _peer->dispatch(RegisterClient(Quassel::buildInfo().fancyVersionString, useSsl));
290 void ClientAuthHandler::handle(const ClientDenied &msg)
292 emit errorPopup(msg.errorString);
293 requestDisconnect(tr("The core refused connection from this client"));
297 void ClientAuthHandler::handle(const ClientRegistered &msg)
299 _coreConfigured = msg.coreConfigured;
300 _backendInfo = msg.backendInfo;
302 Client::setCoreFeatures(static_cast<Quassel::Features>(msg.coreFeatures));
304 // The legacy protocol enables SSL at this point
305 if(_legacy && _account.useSsl())
306 checkAndEnableSsl(msg.sslSupported);
312 void ClientAuthHandler::onConnectionReady()
314 emit connectionReady();
315 emit statusMessage(tr("Connected to %1").arg(_account.accountName()));
317 if (!_coreConfigured) {
319 emit startCoreSetup(_backendInfo);
321 else // TODO: check if we need LoginEnabled
326 void ClientAuthHandler::setupCore(const SetupData &setupData)
328 _peer->dispatch(setupData);
332 void ClientAuthHandler::handle(const SetupFailed &msg)
334 emit coreSetupFailed(msg.errorString);
338 void ClientAuthHandler::handle(const SetupDone &msg)
342 emit coreSetupSuccessful();
346 void ClientAuthHandler::login(const QString &user, const QString &password, bool remember)
348 _account.setUser(user);
349 _account.setPassword(password);
350 _account.setStorePassword(remember);
355 void ClientAuthHandler::login(const QString &previousError)
357 emit statusMessage(tr("Logging in..."));
358 if (_account.user().isEmpty() || _account.password().isEmpty() || !previousError.isEmpty()) {
360 emit userAuthenticationRequired(&_account, &valid, previousError); // *must* be a synchronous call
361 if (!valid || _account.user().isEmpty() || _account.password().isEmpty()) {
362 requestDisconnect(tr("Login canceled"));
367 _peer->dispatch(Login(_account.user(), _account.password()));
371 void ClientAuthHandler::handle(const LoginFailed &msg)
373 login(msg.errorString);
377 void ClientAuthHandler::handle(const LoginSuccess &msg)
381 emit loginSuccessful(_account);
385 void ClientAuthHandler::handle(const SessionState &msg)
387 disconnect(socket(), 0, this, 0); // this is the last message we shall ever get
389 // give up ownership of the peer; CoreSession takes responsibility now
391 emit handshakeComplete(_peer, msg);
397 void ClientAuthHandler::checkAndEnableSsl(bool coreSupportsSsl)
400 Q_UNUSED(coreSupportsSsl);
402 CoreAccountSettings s;
403 if (coreSupportsSsl && _account.useSsl()) {
404 // Make sure the warning is shown next time we don't have SSL in the core
405 s.setAccountValue("ShowNoCoreSslWarning", true);
407 QSslSocket *sslSocket = qobject_cast<QSslSocket *>(socket());
409 connect(sslSocket, SIGNAL(encrypted()), SLOT(onSslSocketEncrypted()));
410 connect(sslSocket, SIGNAL(sslErrors(QList<QSslError>)), SLOT(onSslErrors()));
411 qDebug() << "Starting encryption...";
413 sslSocket->startClientEncryption();
416 if (s.accountValue("ShowNoCoreSslWarning", true).toBool()) {
417 bool accepted = false;
418 emit handleNoSslInCore(&accepted);
420 requestDisconnect(tr("Unencrypted connection cancelled"));
423 s.setAccountValue("ShowNoCoreSslWarning", false);
424 s.setAccountValue("SslCert", QString());
436 void ClientAuthHandler::onSslSocketEncrypted()
438 QSslSocket *socket = qobject_cast<QSslSocket *>(sender());
441 if (!socket->sslErrors().count()) {
442 // Cert is valid, so we don't want to store it as known
443 // That way, a warning will appear in case it becomes invalid at some point
444 CoreAccountSettings s;
445 s.setAccountValue("SSLCert", QString());
448 emit encrypted(true);
457 void ClientAuthHandler::onSslErrors()
459 QSslSocket *socket = qobject_cast<QSslSocket *>(sender());
462 CoreAccountSettings s;
463 QByteArray knownDigest = s.accountValue("SslCert").toByteArray();
465 if (knownDigest != socket->peerCertificate().digest()) {
466 bool accepted = false;
467 bool permanently = false;
468 emit handleSslErrors(socket, &accepted, &permanently);
471 requestDisconnect(tr("Unencrypted connection canceled"));
476 s.setAccountValue("SslCert", socket->peerCertificate().digest());
478 s.setAccountValue("SslCert", QString());
481 socket->ignoreSslErrors();
484 #endif /* HAVE_SSL */