summaryrefslogtreecommitdiffstats
blob: 46cfb3a38684fc5c9c24e491a9b8a942524cccd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#include <Swiften/FileTransfer/SOCKS5BytestreamServerSession.h>

#include <boost/bind.hpp>
#include <iostream>

#include <Swiften/Base/ByteArray.h>
#include <Swiften/FileTransfer/SOCKS5BytestreamRegistry.h>
#include <Swiften/FileTransfer/BytestreamException.h>

namespace Swift {

SOCKS5BytestreamServerSession::SOCKS5BytestreamServerSession(boost::shared_ptr<Connection> connection, SOCKS5BytestreamRegistry* bytestreams) : connection(connection), bytestreams(bytestreams), state(Initial), chunkSize(4096) {
}

SOCKS5BytestreamServerSession::~SOCKS5BytestreamServerSession() {
	if (state != Finished && state != Initial) {
		std::cerr << "Warning: SOCKS5BytestremServerSession unfinished" << std::endl;
		finish(false);
	}
}

void SOCKS5BytestreamServerSession::start() {
	connection->onDataRead.connect(boost::bind(&SOCKS5BytestreamServerSession::handleDataRead, this, _1));
	state = WaitingForAuthentication;
}

void SOCKS5BytestreamServerSession::stop() {
	finish(false);
}

void SOCKS5BytestreamServerSession::handleDataRead(const ByteArray& data) {
	unprocessedData += data;
	process();
}

void SOCKS5BytestreamServerSession::process() {
	if (state == WaitingForAuthentication) {
		if (unprocessedData.getSize() >= 2) {
			size_t authCount = unprocessedData[1];
			size_t i = 2;
			while (i < 2 + authCount && i < unprocessedData.getSize()) {
				// Skip authentication mechanism
				++i;
			}
			if (i == 2 + authCount) {
				// Authentication message is complete
				if (i != unprocessedData.getSize()) {
					std::cerr << "SOCKS5BytestreamServerSession: Junk after authentication mechanism";
				}
				unprocessedData.clear();
				connection->write(ByteArray("\x05\x00", 2));
				state = WaitingForRequest;
			}
		}
	}
	else if (state == WaitingForRequest) {
		if (unprocessedData.getSize() >= 5) {
			ByteArray requestID;
			size_t i = 5;
			size_t hostnameSize = unprocessedData[4];
			while (i < 5 + hostnameSize && i < unprocessedData.getSize()) {
				requestID += unprocessedData[i];
				++i;
			}
			// Skip the port:
			i += 2;
			if (i >= unprocessedData.getSize()) {
				if (i != unprocessedData.getSize()) {
					std::cerr << "SOCKS5BytestreamServerSession: Junk after authentication mechanism";
				}
				bytestream = bytestreams->getBytestream(requestID.toString());
				ByteArray result("\x05", 1);
				result += bytestream ? 0x0 : 0x4;
				result += ByteArray("\x00\x03", 2);
				result += static_cast<char>(requestID.getSize());
				result += requestID + ByteArray("\x00\x00", 2);
				if (!bytestream) {
					connection->write(result);
					finish(true);
				}
				else {
					state = SendingData;
					connection->onDataWritten.connect(boost::bind(&SOCKS5BytestreamServerSession::sendData, this));
					connection->write(result);
				}
			}
		}
	}
}

void SOCKS5BytestreamServerSession::sendData() {
	if (!bytestream->isFinished()) {
		try {
			connection->write(bytestream->read(chunkSize));
		}
		catch (const BytestreamException&) {
			finish(true);
		}
	}
	else {
		finish(false);
	}
}

void SOCKS5BytestreamServerSession::finish(bool error) {
	connection->onDataWritten.disconnect(boost::bind(&SOCKS5BytestreamServerSession::sendData, this));
	connection->onDataRead.disconnect(boost::bind(&SOCKS5BytestreamServerSession::handleDataRead, this, _1));
	bytestream.reset();
	state = Finished;
	onFinished(error);
}

}