123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- /*
- * Copyright (C) 2008-2012 The QXmpp developers
- *
- * Author:
- * Jeremy Lainé
- *
- * Source:
- * http://code.google.com/p/qxmpp
- *
- * This file is a part of QXmpp library.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- */
- #include <QDataStream>
- #include <QTcpServer>
- #include <QTcpSocket>
- #include <QTimer>
- #include "QXmppSocks.h"
- const static char SocksVersion = 5;
- enum AuthenticationMethod {
- NoAuthentication = 0,
- GSSAPI = 1,
- UsernamePassword = 2,
- };
- enum Command {
- ConnectCommand = 1,
- BindCommand = 2,
- AssociateCommand = 3,
- };
- enum AddressType {
- IPv4Address = 1,
- DomainName = 3,
- IPv6Address = 4,
- };
- enum ReplyType {
- Succeeded = 0,
- SocksFailure = 1,
- ConnectionNotAllowed = 2,
- NetworkUnreachable = 3,
- HostUnreachable = 4,
- ConnectionRefused = 5,
- TtlExpired = 6,
- CommandNotSupported = 7,
- AddressTypeNotSupported = 8,
- };
- enum State {
- ConnectState = 0,
- CommandState = 1,
- ReadyState = 2,
- };
- static QByteArray encodeHostAndPort(quint8 type, const QByteArray &host, quint16 port)
- {
- QByteArray buffer;
- QDataStream stream(&buffer, QIODevice::WriteOnly);
- // set host name
- quint8 hostLength = host.size();
- stream << type;
- stream << hostLength;
- stream.writeRawData(host.constData(), hostLength);
- // set port
- stream << port;
- return buffer;
- }
- static bool parseHostAndPort(const QByteArray buffer, quint8 &type, QByteArray &host, quint16 &port)
- {
- if (buffer.size() < 4)
- return false;
- QDataStream stream(buffer);
- // get host name
- quint8 hostLength;
- stream >> type;
- stream >> hostLength;
- if (buffer.size() < hostLength + 4)
- {
- qWarning("Invalid host length");
- return false;
- }
- host.resize(hostLength);
- stream.readRawData(host.data(), hostLength);
- // get port
- stream >> port;
- return true;
- }
- QXmppSocksClient::QXmppSocksClient(const QString &proxyHost, quint16 proxyPort, QObject *parent)
- : QTcpSocket(parent),
- m_proxyHost(proxyHost),
- m_proxyPort(proxyPort),
- m_step(ConnectState)
- {
- connect(this, SIGNAL(connected()), this, SLOT(slotConnected()));
- connect(this, SIGNAL(readyRead()), this, SLOT(slotReadyRead()));
- }
- void QXmppSocksClient::connectToHost(const QString &hostName, quint16 hostPort)
- {
- m_hostName = hostName;
- m_hostPort = hostPort;
- QTcpSocket::connectToHost(m_proxyHost, m_proxyPort);
- }
- void QXmppSocksClient::slotConnected()
- {
- m_step = ConnectState;
- // disconnect from signal
- disconnect(this, SIGNAL(connected()), this, SLOT(slotConnected()));
- // send connect to server
- QByteArray buffer;
- buffer.resize(3);
- buffer[0] = SocksVersion;
- buffer[1] = 0x01; // number of methods
- buffer[2] = NoAuthentication;
- write(buffer);
- }
- void QXmppSocksClient::slotReadyRead()
- {
- if (m_step == ConnectState)
- {
- m_step++;
- // receive connect to server response
- QByteArray buffer = readAll();
- if (buffer.size() != 2 || buffer.at(0) != SocksVersion || buffer.at(1) != NoAuthentication)
- {
- qWarning("QXmppSocksClient received an invalid response during handshake");
- close();
- return;
- }
- // send CONNECT command
- buffer.resize(3);
- buffer[0] = SocksVersion;
- buffer[1] = ConnectCommand;
- buffer[2] = 0x00; // reserved
- buffer.append(encodeHostAndPort(
- DomainName,
- m_hostName.toAscii(),
- m_hostPort));
- write(buffer);
- } else if (m_step == CommandState) {
- m_step++;
- // disconnect from signal
- disconnect(this, SIGNAL(readyRead()), this, SLOT(slotReadyRead()));
- // receive CONNECT response
- QByteArray buffer = readAll();
- if (buffer.size() < 6 ||
- buffer.at(0) != SocksVersion ||
- buffer.at(1) != Succeeded ||
- buffer.at(2) != 0)
- {
- qWarning("QXmppSocksClient received an invalid response to CONNECT command");
- close();
- return;
- }
- // parse host
- quint8 hostType;
- QByteArray hostName;
- quint16 hostPort;
- if (!parseHostAndPort(buffer.mid(3), hostType, hostName, hostPort))
- {
- qWarning("QXmppSocksClient could not parse type/host/port");
- close();
- return;
- }
- // FIXME : what do we do with the resulting name / port?
- // notify of connection
- emit ready();
- }
- }
- QXmppSocksServer::QXmppSocksServer(QObject *parent)
- : QObject(parent)
- {
- m_server = new QTcpServer(this);
- connect(m_server, SIGNAL(newConnection()), this, SLOT(slotNewConnection()));
- m_server_v6 = new QTcpServer(this);
- connect(m_server_v6, SIGNAL(newConnection()), this, SLOT(slotNewConnection()));
- }
- void QXmppSocksServer::close()
- {
- m_server->close();
- m_server_v6->close();
- }
- bool QXmppSocksServer::listen(quint16 port)
- {
- if (!m_server->listen(QHostAddress::Any, port))
- return false;
- m_server_v6->listen(QHostAddress::AnyIPv6, m_server->serverPort());
- return true;
- }
- quint16 QXmppSocksServer::serverPort() const
- {
- return m_server->serverPort();
- }
- void QXmppSocksServer::slotNewConnection()
- {
- QTcpServer *server = qobject_cast<QTcpServer*>(sender());
- if (!server)
- return;
- QTcpSocket *socket = server->nextPendingConnection();
- if (!socket)
- return;
- // register socket
- m_states.insert(socket, ConnectState);
- connect(socket, SIGNAL(readyRead()), this, SLOT(slotReadyRead()));
- }
- void QXmppSocksServer::slotReadyRead()
- {
- QTcpSocket *socket = qobject_cast<QTcpSocket*>(sender());
- if (!socket || !m_states.contains(socket))
- return;
- if (m_states.value(socket) == ConnectState)
- {
- m_states.insert(socket, CommandState);
- // receive connect to server request
- QByteArray buffer = socket->readAll();
- if (buffer.size() < 3 ||
- buffer.at(0) != SocksVersion ||
- buffer.at(1) + 2 != buffer.size())
- {
- qWarning("QXmppSocksServer received invalid handshake");
- socket->close();
- return;
- }
- // check authentication method
- bool foundMethod = false;
- for (int i = 2; i < buffer.size(); i++)
- {
- if (buffer.at(i) == NoAuthentication)
- {
- foundMethod = true;
- break;
- }
- }
- if (!foundMethod)
- {
- qWarning("QXmppSocksServer received bad authentication method");
- socket->close();
- return;
- }
- // send connect to server response
- buffer.resize(2);
- buffer[0] = SocksVersion;
- buffer[1] = NoAuthentication;
- socket->write(buffer);
- } else if (m_states.value(socket) == CommandState) {
- m_states.insert(socket, ReadyState);
- // disconnect from signals
- disconnect(socket, SIGNAL(readyRead()), this, SLOT(slotReadyRead()));
- // receive command
- QByteArray buffer = socket->readAll();
- if (buffer.size() < 4 ||
- buffer.at(0) != SocksVersion ||
- buffer.at(1) != ConnectCommand ||
- buffer.at(2) != 0x00)
- {
- qWarning("QXmppSocksServer received an invalid command");
- socket->close();
- return;
- }
- // parse host
- quint8 hostType;
- QByteArray hostName;
- quint16 hostPort;
- if (!parseHostAndPort(buffer.mid(3), hostType, hostName, hostPort))
- {
- qWarning("QXmppSocksServer could not parse type/host/port");
- socket->close();
- return;
- }
- // notify of connection
- emit newConnection(socket, hostName, hostPort);
- // send response
- buffer.resize(3);
- buffer[0] = SocksVersion;
- buffer[1] = Succeeded;
- buffer[2] = 0x00;
- buffer.append(encodeHostAndPort(
- DomainName,
- hostName,
- hostPort));
- socket->write(buffer);
- }
- }
|