211 lines
5.7 KiB
C++
211 lines
5.7 KiB
C++
//
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
#pragma once
|
|
|
|
#include "td/mtproto/IStreamTransport.h"
|
|
#include "td/mtproto/ProxySecret.h"
|
|
#include "td/mtproto/TlsReaderByteFlow.h"
|
|
#include "td/mtproto/TransportType.h"
|
|
|
|
#include "td/utils/AesCtrByteFlow.h"
|
|
#include "td/utils/buffer.h"
|
|
#include "td/utils/ByteFlow.h"
|
|
#include "td/utils/common.h"
|
|
#include "td/utils/crypto.h"
|
|
#include "td/utils/port/detail/PollableFd.h"
|
|
#include "td/utils/Status.h"
|
|
#include "td/utils/UInt.h"
|
|
|
|
namespace td {
|
|
namespace mtproto {
|
|
namespace tcp {
|
|
|
|
class ITransport {
|
|
// Writes packet into message.
|
|
// Returns 0 if everything is ok, and [expected_size] otherwise.
|
|
// There is no sense to call this function when [stream->size > expected_size]
|
|
//
|
|
// (tpc is stream-base protocol. So the input message is a stream, not a slice)
|
|
virtual size_t read_from_stream(ChainBufferReader *stream, BufferSlice *message, uint32 *quick_ack) = 0;
|
|
|
|
// Writes header inplace.
|
|
virtual void write_prepare_inplace(BufferWriter *message, bool quick_ack) = 0;
|
|
|
|
// Writes first several bytes into output stream.
|
|
virtual void init_output_stream(ChainBufferWriter *stream) = 0;
|
|
|
|
virtual bool support_quick_ack() const = 0;
|
|
|
|
public:
|
|
ITransport() = default;
|
|
ITransport(const ITransport &) = delete;
|
|
ITransport &operator=(const ITransport &) = delete;
|
|
ITransport(ITransport &&) = delete;
|
|
ITransport &operator=(ITransport &&) = delete;
|
|
virtual ~ITransport() = default;
|
|
};
|
|
|
|
class AbridgedTransport final : public ITransport {
|
|
public:
|
|
size_t read_from_stream(ChainBufferReader *stream, BufferSlice *message, uint32 *quick_ack) final;
|
|
void write_prepare_inplace(BufferWriter *message, bool quick_ack) final;
|
|
void init_output_stream(ChainBufferWriter *stream) final;
|
|
bool support_quick_ack() const final {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
class IntermediateTransport final : public ITransport {
|
|
public:
|
|
explicit IntermediateTransport(bool with_padding) : with_padding_(with_padding) {
|
|
}
|
|
size_t read_from_stream(ChainBufferReader *stream, BufferSlice *message, uint32 *quick_ack) final;
|
|
void write_prepare_inplace(BufferWriter *message, bool quick_ack) final;
|
|
void init_output_stream(ChainBufferWriter *stream) final;
|
|
bool support_quick_ack() const final {
|
|
return true;
|
|
}
|
|
bool with_padding() const {
|
|
return with_padding_;
|
|
}
|
|
|
|
private:
|
|
bool with_padding_;
|
|
};
|
|
|
|
using TransportImpl = IntermediateTransport;
|
|
|
|
class OldTransport final : public IStreamTransport {
|
|
public:
|
|
OldTransport() = default;
|
|
Result<size_t> read_next(BufferSlice *message, uint32 *quick_ack) final TD_WARN_UNUSED_RESULT {
|
|
return impl_.read_from_stream(input_, message, quick_ack);
|
|
}
|
|
bool support_quick_ack() const final {
|
|
return impl_.support_quick_ack();
|
|
}
|
|
void write(BufferWriter &&message, bool quick_ack) final {
|
|
impl_.write_prepare_inplace(&message, quick_ack);
|
|
output_->append(message.as_buffer_slice());
|
|
}
|
|
void init(ChainBufferReader *input, ChainBufferWriter *output) final {
|
|
input_ = input;
|
|
output_ = output;
|
|
impl_.init_output_stream(output_);
|
|
}
|
|
bool can_read() const final {
|
|
return true;
|
|
}
|
|
bool can_write() const final {
|
|
return true;
|
|
}
|
|
|
|
size_t max_prepend_size() const final {
|
|
return 4;
|
|
}
|
|
|
|
size_t max_append_size() const final {
|
|
return 15;
|
|
}
|
|
|
|
TransportType get_type() const final {
|
|
return TransportType{TransportType::Tcp, 0, ProxySecret()};
|
|
}
|
|
|
|
bool use_random_padding() const final {
|
|
return false;
|
|
}
|
|
|
|
private:
|
|
TransportImpl impl_{false};
|
|
ChainBufferReader *input_{nullptr};
|
|
ChainBufferWriter *output_{nullptr};
|
|
};
|
|
|
|
class ObfuscatedTransport final : public IStreamTransport {
|
|
public:
|
|
ObfuscatedTransport(int16 dc_id, ProxySecret secret)
|
|
: dc_id_(dc_id), secret_(std::move(secret)), impl_(secret_.use_random_padding()) {
|
|
}
|
|
|
|
Result<size_t> read_next(BufferSlice *message, uint32 *quick_ack) final TD_WARN_UNUSED_RESULT;
|
|
|
|
bool support_quick_ack() const final {
|
|
return impl_.support_quick_ack();
|
|
}
|
|
|
|
void write(BufferWriter &&message, bool quick_ack) final;
|
|
|
|
void init(ChainBufferReader *input, ChainBufferWriter *output) final;
|
|
|
|
bool can_read() const final {
|
|
return true;
|
|
}
|
|
|
|
bool can_write() const final {
|
|
return true;
|
|
}
|
|
|
|
size_t max_prepend_size() const final {
|
|
size_t res = 4;
|
|
if (secret_.emulate_tls()) {
|
|
res += 5;
|
|
if (is_first_tls_packet_) {
|
|
res += 6;
|
|
}
|
|
}
|
|
res += header_.size();
|
|
if (res & 3) {
|
|
res += 4 - (res & 3);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
size_t max_append_size() const final {
|
|
return 15;
|
|
}
|
|
|
|
TransportType get_type() const final {
|
|
return TransportType{TransportType::ObfuscatedTcp, dc_id_, secret_};
|
|
}
|
|
|
|
bool use_random_padding() const final {
|
|
return secret_.use_random_padding();
|
|
}
|
|
|
|
private:
|
|
int16 dc_id_;
|
|
bool is_first_tls_packet_{true};
|
|
ProxySecret secret_;
|
|
std::string header_;
|
|
TransportImpl impl_;
|
|
TlsReaderByteFlow tls_reader_byte_flow_;
|
|
AesCtrByteFlow aes_ctr_byte_flow_;
|
|
ByteFlowSink byte_flow_sink_;
|
|
ChainBufferReader *input_ = nullptr;
|
|
|
|
static constexpr int32 MAX_TLS_PACKET_LENGTH = 2878;
|
|
|
|
// TODO: use ByteFlow?
|
|
// One problem is that BufferedFd owns output_buffer_
|
|
// The other problem is that first 56 bytes must be sent unencrypted.
|
|
UInt256 output_key_;
|
|
AesCtrState output_state_;
|
|
ChainBufferWriter *output_ = nullptr;
|
|
|
|
void do_write_tls(BufferWriter &&message);
|
|
void do_write_tls(BufferBuilder &&builder);
|
|
void do_write_main(BufferWriter &&message);
|
|
void do_write(BufferSlice &&message);
|
|
};
|
|
|
|
using Transport = ObfuscatedTransport;
|
|
|
|
} // namespace tcp
|
|
} // namespace mtproto
|
|
} // namespace td
|