summaryrefslogtreecommitdiffstats
blob: f3972ab81a044575ddc793ef015783dda24430bb (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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/*
 * Copyright (c) 2015-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <string>

#include <Swiften/Base/API.h>
#include <Swiften/Crypto/CryptoProvider.h>
#include <Swiften/FileTransfer/FileTransferOptions.h>
#include <Swiften/FileTransfer/FileTransferTransporter.h>
#include <Swiften/FileTransfer/FileTransferTransporterFactory.h>
#include <Swiften/FileTransfer/IBBReceiveSession.h>
#include <Swiften/FileTransfer/IBBReceiveTransportSession.h>
#include <Swiften/FileTransfer/IBBSendSession.h>
#include <Swiften/FileTransfer/IBBSendTransportSession.h>
#include <Swiften/FileTransfer/SOCKS5BytestreamProxiesManager.h>
#include <Swiften/FileTransfer/SOCKS5BytestreamRegistry.h>
#include <Swiften/FileTransfer/SOCKS5BytestreamServerManager.h>
#include <Swiften/FileTransfer/TransportSession.h>
#include <Swiften/JID/JID.h>
#include <Swiften/StringCodecs/Hexify.h>

namespace Swift {

class DummyFileTransferTransporter : public FileTransferTransporter {
public:
    enum Role {
        Initiator,
        Responder
    };

public:
    DummyFileTransferTransporter(
            const JID& initiator,
            const JID& responder,
            Role role,
            SOCKS5BytestreamRegistry* s5bRegistry,
            SOCKS5BytestreamServerManager* /* s5bServerManager */,
            SOCKS5BytestreamProxiesManager* /* s5bProxy */,
            IDGenerator* /* idGenerator */,
            ConnectionFactory*,
            TimerFactory*,
            CryptoProvider* cryptoProvider,
            IQRouter* iqRouter,
            const FileTransferOptions& ftOptions) : initiator_(initiator), responder_(responder), role_(role), s5bRegistry_(s5bRegistry), crypto_(cryptoProvider), iqRouter_(iqRouter), ftOptions_(ftOptions) {

    }

    void initialize() {
        s5bSessionID_ = s5bRegistry_->generateSessionID();
    }

    virtual void startGeneratingLocalCandidates() {
        std::vector<JingleS5BTransportPayload::Candidate> candidates;
        if (ftOptions_.isDirectAllowed()) {
            JingleS5BTransportPayload::Candidate candidate;
            candidate.cid = "123";
            candidate.priority = 1235;
            candidates.push_back(candidate);
        }
        onLocalCandidatesGenerated(s5bSessionID_, candidates, getSOCKS5DstAddr());
    }

    virtual void stopGeneratingLocalCandidates() {
    }

    virtual void addRemoteCandidates(const std::vector<JingleS5BTransportPayload::Candidate>&, const std::string&) {
    }

    virtual void startTryingRemoteCandidates() {
        onRemoteCandidateSelectFinished(s5bSessionID_, boost::optional<JingleS5BTransportPayload::Candidate>());
    }

    virtual void stopTryingRemoteCandidates() {
    }

    virtual void startActivatingProxy(const JID& /* proxy */) {
    }

    virtual void stopActivatingProxy() {
    }

    virtual boost::shared_ptr<TransportSession> createIBBSendSession(const std::string& sessionID, unsigned int blockSize, boost::shared_ptr<ReadBytestream> stream) {
        boost::shared_ptr<IBBSendSession> ibbSession = boost::make_shared<IBBSendSession>(
                sessionID, initiator_, responder_, stream, iqRouter_);
        ibbSession->setBlockSize(blockSize);
        return boost::make_shared<IBBSendTransportSession>(ibbSession);
    }

    virtual boost::shared_ptr<TransportSession> createIBBReceiveSession(const std::string& sessionID, unsigned long long size, boost::shared_ptr<WriteBytestream> stream) {
        boost::shared_ptr<IBBReceiveSession> ibbSession = boost::make_shared<IBBReceiveSession>(
                sessionID, initiator_, responder_, size, stream, iqRouter_);
        return boost::make_shared<IBBReceiveTransportSession>(ibbSession);
    }

    virtual boost::shared_ptr<TransportSession> createRemoteCandidateSession(
            boost::shared_ptr<ReadBytestream>, const JingleS5BTransportPayload::Candidate& /* candidate */) {
        return boost::shared_ptr<TransportSession>();
    }

    virtual boost::shared_ptr<TransportSession> createRemoteCandidateSession(
            boost::shared_ptr<WriteBytestream>, const JingleS5BTransportPayload::Candidate& /* candidate */) {
        return boost::shared_ptr<TransportSession>();
    }

    virtual boost::shared_ptr<TransportSession> createLocalCandidateSession(
            boost::shared_ptr<ReadBytestream>, const JingleS5BTransportPayload::Candidate& /* candidate */) {
        return boost::shared_ptr<TransportSession>();
    }

    virtual boost::shared_ptr<TransportSession> createLocalCandidateSession(
            boost::shared_ptr<WriteBytestream>, const JingleS5BTransportPayload::Candidate& /* candidate */) {
        return boost::shared_ptr<TransportSession>();
    }

private:
    std::string getSOCKS5DstAddr() const {
        std::string result;
        if (role_ == Initiator) {
            result = getInitiatorCandidateSOCKS5DstAddr();
        }
        else {
            result = getResponderCandidateSOCKS5DstAddr();
        }
        return result;
    }

    std::string getInitiatorCandidateSOCKS5DstAddr() const {
        return Hexify::hexify(crypto_->getSHA1Hash(createSafeByteArray(s5bSessionID_ + initiator_.toString() + responder_.toString())));
    }

    std::string getResponderCandidateSOCKS5DstAddr() const {
        return Hexify::hexify(crypto_->getSHA1Hash(createSafeByteArray(s5bSessionID_ + responder_.toString() + initiator_.toString())));
    }


private:
    JID initiator_;
    JID responder_;
    Role role_;
    SOCKS5BytestreamRegistry* s5bRegistry_;
    CryptoProvider* crypto_;
    std::string s5bSessionID_;
    IQRouter* iqRouter_;
    FileTransferOptions ftOptions_;
};

class DummyFileTransferTransporterFactory : public FileTransferTransporterFactory {
public:
        DummyFileTransferTransporterFactory(
            SOCKS5BytestreamRegistry* s5bRegistry,
            SOCKS5BytestreamServerManager* s5bServerManager,
            SOCKS5BytestreamProxiesManager* s5bProxy,
            IDGenerator* idGenerator,
            ConnectionFactory* connectionFactory,
            TimerFactory* timerFactory,
            CryptoProvider* cryptoProvider,
            IQRouter* iqRouter) : s5bRegistry_(s5bRegistry), s5bServerManager_(s5bServerManager), s5bProxy_(s5bProxy), idGenerator_(idGenerator), connectionFactory_(connectionFactory), timerFactory_(timerFactory), cryptoProvider_(cryptoProvider), iqRouter_(iqRouter) {

        }

    virtual ~DummyFileTransferTransporterFactory() {
    }

    virtual FileTransferTransporter* createInitiatorTransporter(const JID& initiator, const JID& responder, const FileTransferOptions& options) {
            DummyFileTransferTransporter* transporter = new DummyFileTransferTransporter(
                initiator,
                responder,
                DummyFileTransferTransporter::Initiator,
                s5bRegistry_,
                s5bServerManager_,
                s5bProxy_,
                idGenerator_,
                connectionFactory_,
                timerFactory_,
                cryptoProvider_,
                iqRouter_,
                options);
            transporter->initialize();
            return transporter;
    }

    virtual FileTransferTransporter* createResponderTransporter(const JID& /* initiator */, const JID& /* responder */, const std::string& /* s5bSessionID */, const FileTransferOptions& /* options */) {
        return nullptr;
    }

private:
    SOCKS5BytestreamRegistry* s5bRegistry_;
    SOCKS5BytestreamServerManager* s5bServerManager_;
    SOCKS5BytestreamProxiesManager* s5bProxy_;
    IDGenerator* idGenerator_;
    ConnectionFactory* connectionFactory_;
    TimerFactory* timerFactory_;
    CryptoProvider* cryptoProvider_;
    IQRouter* iqRouter_;
};

}