2018-12-31 20:04:05 +01:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// 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)
|
|
|
|
//
|
2020-08-13 15:57:28 +02:00
|
|
|
#include "td/telegram/ConfigManager.h"
|
|
|
|
#include "td/telegram/net/DcId.h"
|
|
|
|
#include "td/telegram/net/PublicRsaKeyShared.h"
|
|
|
|
#include "td/telegram/net/Session.h"
|
|
|
|
#include "td/telegram/NotificationManager.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-05-22 20:17:24 +02:00
|
|
|
#include "td/mtproto/AuthData.h"
|
2019-01-31 12:26:06 +01:00
|
|
|
#include "td/mtproto/DhHandshake.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/mtproto/Handshake.h"
|
|
|
|
#include "td/mtproto/HandshakeActor.h"
|
2019-05-06 18:59:49 +02:00
|
|
|
#include "td/mtproto/Ping.h"
|
2019-05-22 20:17:24 +02:00
|
|
|
#include "td/mtproto/PingConnection.h"
|
2019-07-09 04:01:12 +02:00
|
|
|
#include "td/mtproto/ProxySecret.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/mtproto/RawConnection.h"
|
2020-05-17 16:07:16 +02:00
|
|
|
#include "td/mtproto/RSA.h"
|
2019-06-26 16:13:07 +02:00
|
|
|
#include "td/mtproto/TlsInit.h"
|
2019-01-31 03:13:59 +01:00
|
|
|
#include "td/mtproto/TransportType.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-01-24 18:08:29 +01:00
|
|
|
#include "td/net/GetHostByNameActor.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/net/Socks5.h"
|
2018-07-26 02:28:02 +02:00
|
|
|
#include "td/net/TransparentProxy.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-08-13 15:57:28 +02:00
|
|
|
#include "td/actor/actor.h"
|
2020-11-23 01:24:36 +01:00
|
|
|
#include "td/actor/ConcurrentScheduler.h"
|
2020-08-13 15:57:28 +02:00
|
|
|
#include "td/actor/PromiseFuture.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-01-29 16:16:52 +01:00
|
|
|
#include "td/utils/base64.h"
|
2019-02-12 22:26:36 +01:00
|
|
|
#include "td/utils/common.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/logging.h"
|
2019-07-23 00:50:12 +02:00
|
|
|
#include "td/utils/port/Clocks.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/port/IPAddress.h"
|
|
|
|
#include "td/utils/port/SocketFd.h"
|
2019-05-22 20:17:24 +02:00
|
|
|
#include "td/utils/Random.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/Status.h"
|
2020-08-13 15:57:28 +02:00
|
|
|
#include "td/utils/tests.h"
|
2019-05-22 20:17:24 +02:00
|
|
|
#include "td/utils/Time.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
REGISTER_TESTS(mtproto);
|
|
|
|
|
|
|
|
using namespace td;
|
|
|
|
|
2019-02-04 02:32:32 +01:00
|
|
|
TEST(Mtproto, GetHostByNameActor) {
|
2019-02-04 03:46:17 +01:00
|
|
|
SET_VERBOSITY_LEVEL(VERBOSITY_NAME(ERROR));
|
2019-01-24 10:47:54 +01:00
|
|
|
ConcurrentScheduler sched;
|
2019-02-04 02:32:32 +01:00
|
|
|
int threads_n = 1;
|
2019-01-24 10:47:54 +01:00
|
|
|
sched.init(threads_n);
|
|
|
|
|
|
|
|
int cnt = 1;
|
2019-02-04 02:32:32 +01:00
|
|
|
vector<ActorOwn<GetHostByNameActor>> actors;
|
2019-01-24 10:47:54 +01:00
|
|
|
{
|
|
|
|
auto guard = sched.get_main_guard();
|
|
|
|
|
2019-02-04 03:46:17 +01:00
|
|
|
auto run = [&](ActorId<GetHostByNameActor> actor_id, string host, bool prefer_ipv6, bool allow_ok,
|
|
|
|
bool allow_error) {
|
|
|
|
auto promise = PromiseCreator::lambda([&cnt, &actors, num = cnt, host, allow_ok,
|
|
|
|
allow_error](Result<IPAddress> r_ip_address) {
|
|
|
|
if (r_ip_address.is_error() && !allow_error) {
|
2019-02-04 02:32:32 +01:00
|
|
|
LOG(ERROR) << num << " \"" << host << "\" " << r_ip_address.error();
|
2019-01-24 10:47:54 +01:00
|
|
|
}
|
2019-02-04 03:46:17 +01:00
|
|
|
if (r_ip_address.is_ok() && !allow_ok && (r_ip_address.ok().is_ipv6() || r_ip_address.ok().get_ipv4() != 0)) {
|
|
|
|
LOG(ERROR) << num << " \"" << host << "\" " << r_ip_address.ok();
|
|
|
|
}
|
2019-01-24 10:47:54 +01:00
|
|
|
if (--cnt == 0) {
|
2019-02-04 02:32:32 +01:00
|
|
|
actors.clear();
|
2019-01-24 10:47:54 +01:00
|
|
|
Scheduler::instance()->finish();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
cnt++;
|
2020-11-21 13:34:51 +01:00
|
|
|
send_closure_later(actor_id, &GetHostByNameActor::run, host, 443, prefer_ipv6, std::move(promise));
|
2019-01-24 10:47:54 +01:00
|
|
|
};
|
|
|
|
|
2019-02-04 04:32:10 +01:00
|
|
|
std::vector<std::string> hosts = {"127.0.0.2",
|
|
|
|
"1.1.1.1",
|
|
|
|
"localhost",
|
|
|
|
"web.telegram.org",
|
|
|
|
"web.telegram.org.",
|
|
|
|
"москва.рф",
|
|
|
|
"",
|
|
|
|
"%",
|
|
|
|
" ",
|
|
|
|
"a",
|
|
|
|
"\x80",
|
2020-05-16 16:50:58 +02:00
|
|
|
"[]",
|
2019-02-04 04:32:10 +01:00
|
|
|
"127.0.0.1.",
|
|
|
|
"0x12.0x34.0x56.0x78",
|
|
|
|
"0x7f.001",
|
2020-05-16 16:50:58 +02:00
|
|
|
"2001:0db8:85a3:0000:0000:8a2e:0370:7334",
|
2020-05-16 22:54:40 +02:00
|
|
|
"[2001:0db8:85a3:0000:0000:8a2e:0370:7334]",
|
|
|
|
"[[2001:0db8:85a3:0000:0000:8a2e:0370:7334]]"};
|
2019-02-04 02:36:13 +01:00
|
|
|
for (auto types : {vector<GetHostByNameActor::ResolverType>{GetHostByNameActor::ResolverType::Native},
|
|
|
|
vector<GetHostByNameActor::ResolverType>{GetHostByNameActor::ResolverType::Google},
|
|
|
|
vector<GetHostByNameActor::ResolverType>{GetHostByNameActor::ResolverType::Google,
|
|
|
|
GetHostByNameActor::ResolverType::Google,
|
|
|
|
GetHostByNameActor::ResolverType::Native}}) {
|
2019-02-04 02:32:32 +01:00
|
|
|
GetHostByNameActor::Options options;
|
2019-02-04 02:36:13 +01:00
|
|
|
options.resolver_types = types;
|
2019-02-04 02:32:32 +01:00
|
|
|
options.scheduler_id = threads_n;
|
|
|
|
|
|
|
|
auto actor = create_actor<GetHostByNameActor>("GetHostByNameActor", std::move(options));
|
|
|
|
auto actor_id = actor.get();
|
|
|
|
actors.push_back(std::move(actor));
|
|
|
|
|
2019-02-04 00:29:37 +01:00
|
|
|
for (auto host : hosts) {
|
2019-01-24 18:07:24 +01:00
|
|
|
for (auto prefer_ipv6 : {false, true}) {
|
2020-05-16 22:54:40 +02:00
|
|
|
bool allow_ok = host.size() > 2 && host[1] != '[';
|
2019-02-04 05:24:05 +01:00
|
|
|
bool allow_both = host == "127.0.0.1." || host == "localhost" || (host == "москва.рф" && prefer_ipv6);
|
|
|
|
bool allow_error = !allow_ok || allow_both;
|
2019-02-04 03:46:17 +01:00
|
|
|
run(actor_id, host, prefer_ipv6, allow_ok, allow_error);
|
2019-01-24 18:07:24 +01:00
|
|
|
}
|
2019-01-24 14:07:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cnt--;
|
|
|
|
sched.start();
|
|
|
|
while (sched.run_main(10)) {
|
2019-01-24 18:08:29 +01:00
|
|
|
// empty
|
2019-01-24 14:07:11 +01:00
|
|
|
}
|
|
|
|
sched.finish();
|
|
|
|
}
|
2019-01-24 18:08:29 +01:00
|
|
|
|
2019-07-10 20:11:16 +02:00
|
|
|
TEST(Time, to_unix_time) {
|
2019-07-11 13:25:20 +02:00
|
|
|
ASSERT_EQ(0, HttpDate::to_unix_time(1970, 1, 1, 0, 0, 0).move_as_ok());
|
|
|
|
ASSERT_EQ(60 * 60 + 60 + 1, HttpDate::to_unix_time(1970, 1, 1, 1, 1, 1).move_as_ok());
|
|
|
|
ASSERT_EQ(24 * 60 * 60, HttpDate::to_unix_time(1970, 1, 2, 0, 0, 0).move_as_ok());
|
|
|
|
ASSERT_EQ(31 * 24 * 60 * 60, HttpDate::to_unix_time(1970, 2, 1, 0, 0, 0).move_as_ok());
|
|
|
|
ASSERT_EQ(365 * 24 * 60 * 60, HttpDate::to_unix_time(1971, 1, 1, 0, 0, 0).move_as_ok());
|
|
|
|
ASSERT_EQ(1562780559, HttpDate::to_unix_time(2019, 7, 10, 17, 42, 39).move_as_ok());
|
2019-07-10 20:11:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(Time, parse_http_date) {
|
2019-07-11 13:25:20 +02:00
|
|
|
ASSERT_EQ(784887151, HttpDate::parse_http_date("Tue, 15 Nov 1994 08:12:31 GMT").move_as_ok());
|
2019-07-10 20:11:16 +02:00
|
|
|
}
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
TEST(Mtproto, config) {
|
|
|
|
ConcurrentScheduler sched;
|
|
|
|
int threads_n = 0;
|
|
|
|
sched.init(threads_n);
|
|
|
|
|
2018-05-24 17:09:27 +02:00
|
|
|
int cnt = 1;
|
2018-12-31 20:04:05 +01:00
|
|
|
{
|
2018-09-18 15:43:16 +02:00
|
|
|
auto guard = sched.get_main_guard();
|
2018-03-12 19:04:03 +01:00
|
|
|
|
2018-05-24 17:09:27 +02:00
|
|
|
auto run = [&](auto &func, bool is_test) {
|
2019-07-11 22:32:45 +02:00
|
|
|
auto promise = PromiseCreator::lambda([&, num = cnt](Result<SimpleConfigResult> r_simple_config_result) {
|
|
|
|
if (r_simple_config_result.is_ok()) {
|
|
|
|
auto simple_config_result = r_simple_config_result.move_as_ok();
|
|
|
|
auto date = simple_config_result.r_http_date.is_ok()
|
|
|
|
? to_string(simple_config_result.r_http_date.ok())
|
|
|
|
: (PSTRING() << simple_config_result.r_http_date.error());
|
|
|
|
auto config = simple_config_result.r_config.is_ok() ? to_string(simple_config_result.r_config.ok())
|
|
|
|
: (PSTRING() << simple_config_result.r_config.error());
|
|
|
|
LOG(ERROR) << num << " " << date << " " << config;
|
2018-05-24 17:09:27 +02:00
|
|
|
} else {
|
2019-07-11 22:32:45 +02:00
|
|
|
LOG(ERROR) << num << " " << r_simple_config_result.error();
|
2018-05-24 17:09:27 +02:00
|
|
|
}
|
|
|
|
if (--cnt == 0) {
|
|
|
|
Scheduler::instance()->finish();
|
|
|
|
}
|
|
|
|
});
|
2018-05-24 18:27:56 +02:00
|
|
|
cnt++;
|
2018-06-30 15:35:37 +02:00
|
|
|
func(std::move(promise), nullptr, is_test, -1).release();
|
2018-05-24 17:09:27 +02:00
|
|
|
};
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-05-24 17:09:27 +02:00
|
|
|
run(get_simple_config_azure, false);
|
|
|
|
run(get_simple_config_google_dns, false);
|
2019-10-03 21:20:15 +02:00
|
|
|
run(get_simple_config_mozilla_dns, false);
|
2018-05-24 17:09:27 +02:00
|
|
|
run(get_simple_config_azure, true);
|
|
|
|
run(get_simple_config_google_dns, true);
|
2019-10-03 21:20:15 +02:00
|
|
|
run(get_simple_config_mozilla_dns, true);
|
2019-11-19 15:58:24 +01:00
|
|
|
run(get_simple_config_firebase_remote_config, false);
|
2019-11-19 17:01:12 +01:00
|
|
|
run(get_simple_config_firebase_realtime, false);
|
2019-11-19 17:26:39 +01:00
|
|
|
run(get_simple_config_firebase_firestore, false);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
2018-05-24 17:09:27 +02:00
|
|
|
cnt--;
|
2020-11-21 13:34:51 +01:00
|
|
|
if (cnt != 0) {
|
|
|
|
sched.start();
|
|
|
|
while (sched.run_main(10)) {
|
|
|
|
// empty;
|
|
|
|
}
|
|
|
|
sched.finish();
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(Mtproto, encrypted_config) {
|
|
|
|
string data =
|
2018-05-24 17:09:27 +02:00
|
|
|
" hO//tt \b\n\tiwPVovorKtIYtQ8y2ik7CqfJiJ4pJOCLRa4fBmNPixuRPXnBFF/3mTAAZoSyHq4SNylGHz0Cv1/"
|
|
|
|
"FnWWdEV+BPJeOTk+ARHcNkuJBt0CqnfcVCoDOpKqGyq0U31s2MOpQvHgAG+Tlpg02syuH0E4dCGRw5CbJPARiynteb9y5fT5x/"
|
|
|
|
"kmdp6BMR5tWQSQF0liH16zLh8BDSIdiMsikdcwnAvBwdNhRqQBqGx9MTh62MDmlebjtczE9Gz0z5cscUO2yhzGdphgIy6SP+"
|
|
|
|
"bwaqLWYF0XdPGjKLMUEJW+rou6fbL1t/EUXPtU0XmQAnO0Fh86h+AqDMOe30N4qKrPQ== ";
|
2018-12-31 20:04:05 +01:00
|
|
|
auto config = decode_config(data).move_as_ok();
|
|
|
|
}
|
|
|
|
|
|
|
|
class TestPingActor : public Actor {
|
|
|
|
public:
|
|
|
|
TestPingActor(IPAddress ip_address, Status *result) : ip_address_(ip_address), result_(result) {
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
IPAddress ip_address_;
|
2018-09-27 03:19:03 +02:00
|
|
|
unique_ptr<mtproto::PingConnection> ping_connection_;
|
2018-12-31 20:04:05 +01:00
|
|
|
Status *result_;
|
2020-05-30 02:10:35 +02:00
|
|
|
bool is_inited_ = false;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void start_up() override {
|
2020-05-30 02:10:35 +02:00
|
|
|
auto r_socket = SocketFd::open(ip_address_);
|
|
|
|
if (r_socket.is_error()) {
|
|
|
|
LOG(ERROR) << "Failed to open socket: " << r_socket.error();
|
|
|
|
return stop();
|
|
|
|
}
|
|
|
|
|
2019-05-06 18:59:49 +02:00
|
|
|
ping_connection_ = mtproto::PingConnection::create_req_pq(
|
2019-07-09 04:01:12 +02:00
|
|
|
make_unique<mtproto::RawConnection>(
|
2020-05-30 02:10:35 +02:00
|
|
|
r_socket.move_as_ok(), mtproto::TransportType{mtproto::TransportType::Tcp, 0, mtproto::ProxySecret()},
|
|
|
|
nullptr),
|
2018-06-04 18:58:54 +02:00
|
|
|
3);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-09-11 00:20:41 +02:00
|
|
|
Scheduler::subscribe(ping_connection_->get_poll_info().extract_pollable_fd(this));
|
2020-05-30 02:10:35 +02:00
|
|
|
is_inited_ = true;
|
2018-12-31 20:04:05 +01:00
|
|
|
set_timeout_in(10);
|
|
|
|
yield();
|
|
|
|
}
|
|
|
|
void tear_down() override {
|
2020-05-30 02:10:35 +02:00
|
|
|
if (is_inited_) {
|
|
|
|
Scheduler::unsubscribe_before_close(ping_connection_->get_poll_info().get_pollable_fd_ref());
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
Scheduler::instance()->finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
void loop() override {
|
|
|
|
auto status = ping_connection_->flush();
|
|
|
|
if (status.is_error()) {
|
|
|
|
*result_ = std::move(status);
|
|
|
|
return stop();
|
|
|
|
}
|
|
|
|
if (ping_connection_->was_pong()) {
|
2018-05-19 22:45:13 +02:00
|
|
|
LOG(INFO) << "GOT PONG";
|
2018-12-31 20:04:05 +01:00
|
|
|
return stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void timeout_expired() override {
|
|
|
|
*result_ = Status::Error("Timeout expired");
|
|
|
|
stop();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static IPAddress get_default_ip_address() {
|
|
|
|
IPAddress ip_address;
|
2018-09-04 17:51:28 +02:00
|
|
|
#if TD_EMSCRIPTEN
|
|
|
|
ip_address.init_host_port("venus.web.telegram.org/apiws", 443).ensure();
|
|
|
|
#else
|
2018-12-31 20:04:05 +01:00
|
|
|
ip_address.init_ipv4_port("149.154.167.40", 80).ensure();
|
2018-09-04 17:51:28 +02:00
|
|
|
#endif
|
2018-12-31 20:04:05 +01:00
|
|
|
return ip_address;
|
|
|
|
}
|
|
|
|
|
2018-05-23 18:49:05 +02:00
|
|
|
static int32 get_default_dc_id() {
|
|
|
|
return 10002;
|
|
|
|
}
|
|
|
|
|
2018-12-28 01:54:54 +01:00
|
|
|
class Mtproto_ping : public Test {
|
2018-12-31 20:04:05 +01:00
|
|
|
public:
|
|
|
|
using Test::Test;
|
|
|
|
bool step() final {
|
|
|
|
if (!is_inited_) {
|
|
|
|
sched_.init(0);
|
|
|
|
sched_.create_actor_unsafe<TestPingActor>(0, "Pinger", get_default_ip_address(), &result_).release();
|
|
|
|
sched_.start();
|
|
|
|
is_inited_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ret = sched_.run_main(10);
|
|
|
|
if (ret) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
sched_.finish();
|
|
|
|
if (result_.is_error()) {
|
|
|
|
LOG(ERROR) << result_;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool is_inited_ = false;
|
|
|
|
ConcurrentScheduler sched_;
|
|
|
|
Status result_;
|
|
|
|
};
|
2018-12-19 15:49:13 +01:00
|
|
|
RegisterTest<Mtproto_ping> mtproto_ping("Mtproto_ping");
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-09-27 03:19:03 +02:00
|
|
|
class HandshakeContext : public mtproto::AuthKeyHandshakeContext {
|
2018-12-31 20:04:05 +01:00
|
|
|
public:
|
|
|
|
DhCallback *get_dh_callback() override {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
PublicRsaKeyInterface *get_public_rsa_key_interface() override {
|
|
|
|
return &public_rsa_key;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2019-01-02 00:43:37 +01:00
|
|
|
PublicRsaKeyShared public_rsa_key{DcId::empty(), false};
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class HandshakeTestActor : public Actor {
|
|
|
|
public:
|
2018-05-23 18:49:05 +02:00
|
|
|
HandshakeTestActor(int32 dc_id, Status *result) : dc_id_(dc_id), result_(result) {
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2018-05-24 18:27:56 +02:00
|
|
|
int32 dc_id_ = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
Status *result_;
|
|
|
|
bool wait_for_raw_connection_ = false;
|
2018-09-27 03:19:03 +02:00
|
|
|
unique_ptr<mtproto::RawConnection> raw_connection_;
|
2018-12-31 20:04:05 +01:00
|
|
|
bool wait_for_handshake_ = false;
|
2018-09-27 03:19:03 +02:00
|
|
|
unique_ptr<mtproto::AuthKeyHandshake> handshake_;
|
2018-12-31 20:04:05 +01:00
|
|
|
Status status_;
|
|
|
|
bool wait_for_result_ = false;
|
|
|
|
|
|
|
|
void tear_down() override {
|
|
|
|
if (raw_connection_) {
|
|
|
|
raw_connection_->close();
|
|
|
|
}
|
|
|
|
finish(Status::Error("Interrupted"));
|
|
|
|
}
|
|
|
|
void loop() override {
|
|
|
|
if (!wait_for_raw_connection_ && !raw_connection_) {
|
2020-05-30 02:10:35 +02:00
|
|
|
auto r_socket = SocketFd::open(get_default_ip_address());
|
|
|
|
if (r_socket.is_error()) {
|
|
|
|
finish(Status::Error(PSTRING() << "Failed to open socket: " << r_socket.error()));
|
|
|
|
return stop();
|
|
|
|
}
|
|
|
|
|
2019-07-09 04:01:12 +02:00
|
|
|
raw_connection_ = make_unique<mtproto::RawConnection>(
|
2020-05-30 02:10:35 +02:00
|
|
|
r_socket.move_as_ok(), mtproto::TransportType{mtproto::TransportType::Tcp, 0, mtproto::ProxySecret()},
|
|
|
|
nullptr);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
if (!wait_for_handshake_ && !handshake_) {
|
2019-07-22 05:37:26 +02:00
|
|
|
handshake_ = make_unique<mtproto::AuthKeyHandshake>(dc_id_, 3600);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
if (raw_connection_ && handshake_) {
|
|
|
|
if (wait_for_result_) {
|
|
|
|
wait_for_result_ = false;
|
|
|
|
if (status_.is_error()) {
|
|
|
|
finish(std::move(status_));
|
|
|
|
return stop();
|
|
|
|
}
|
|
|
|
if (!handshake_->is_ready_for_finish()) {
|
|
|
|
finish(Status::Error("Key is not ready.."));
|
|
|
|
return stop();
|
|
|
|
}
|
|
|
|
finish(Status::OK());
|
|
|
|
return stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
wait_for_result_ = true;
|
2018-09-27 03:19:03 +02:00
|
|
|
create_actor<mtproto::HandshakeActor>(
|
|
|
|
"HandshakeActor", std::move(handshake_), std::move(raw_connection_), make_unique<HandshakeContext>(), 10.0,
|
|
|
|
PromiseCreator::lambda([self = actor_id(this)](Result<unique_ptr<mtproto::RawConnection>> raw_connection) {
|
2018-12-31 20:04:05 +01:00
|
|
|
send_closure(self, &HandshakeTestActor::got_connection, std::move(raw_connection), 1);
|
|
|
|
}),
|
2018-09-27 03:19:03 +02:00
|
|
|
PromiseCreator::lambda([self = actor_id(this)](Result<unique_ptr<mtproto::AuthKeyHandshake>> handshake) {
|
2018-12-31 20:04:05 +01:00
|
|
|
send_closure(self, &HandshakeTestActor::got_handshake, std::move(handshake), 1);
|
|
|
|
}))
|
|
|
|
.release();
|
|
|
|
wait_for_raw_connection_ = true;
|
|
|
|
wait_for_handshake_ = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-27 03:19:03 +02:00
|
|
|
void got_connection(Result<unique_ptr<mtproto::RawConnection>> r_raw_connection, int32 dummy) {
|
2018-12-31 20:04:05 +01:00
|
|
|
CHECK(wait_for_raw_connection_);
|
|
|
|
wait_for_raw_connection_ = false;
|
|
|
|
if (r_raw_connection.is_ok()) {
|
|
|
|
raw_connection_ = r_raw_connection.move_as_ok();
|
|
|
|
status_ = Status::OK();
|
|
|
|
} else {
|
|
|
|
status_ = r_raw_connection.move_as_error();
|
|
|
|
}
|
|
|
|
// TODO: save error
|
|
|
|
loop();
|
|
|
|
}
|
|
|
|
|
2018-09-27 03:19:03 +02:00
|
|
|
void got_handshake(Result<unique_ptr<mtproto::AuthKeyHandshake>> r_handshake, int32 dummy) {
|
2018-12-31 20:04:05 +01:00
|
|
|
CHECK(wait_for_handshake_);
|
|
|
|
wait_for_handshake_ = false;
|
|
|
|
CHECK(r_handshake.is_ok());
|
|
|
|
handshake_ = r_handshake.move_as_ok();
|
|
|
|
loop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void finish(Status status) {
|
|
|
|
if (!result_) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
*result_ = std::move(status);
|
|
|
|
result_ = nullptr;
|
|
|
|
Scheduler::instance()->finish();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-12-28 01:54:54 +01:00
|
|
|
class Mtproto_handshake : public Test {
|
2018-12-31 20:04:05 +01:00
|
|
|
public:
|
|
|
|
using Test::Test;
|
|
|
|
bool step() final {
|
|
|
|
if (!is_inited_) {
|
|
|
|
sched_.init(0);
|
2018-05-23 18:49:05 +02:00
|
|
|
sched_.create_actor_unsafe<HandshakeTestActor>(0, "HandshakeTestActor", get_default_dc_id(), &result_).release();
|
2018-12-31 20:04:05 +01:00
|
|
|
sched_.start();
|
|
|
|
is_inited_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ret = sched_.run_main(10);
|
|
|
|
if (ret) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
sched_.finish();
|
|
|
|
if (result_.is_error()) {
|
|
|
|
LOG(ERROR) << result_;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool is_inited_ = false;
|
|
|
|
ConcurrentScheduler sched_;
|
|
|
|
Status result_;
|
|
|
|
};
|
2018-12-19 15:49:13 +01:00
|
|
|
RegisterTest<Mtproto_handshake> mtproto_handshake("Mtproto_handshake");
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
class Socks5TestActor : public Actor {
|
|
|
|
public:
|
|
|
|
void start_up() override {
|
|
|
|
auto promise = PromiseCreator::lambda([actor_id = actor_id(this)](Result<SocketFd> res) {
|
|
|
|
send_closure(actor_id, &Socks5TestActor::on_result, std::move(res), false);
|
|
|
|
});
|
|
|
|
|
2018-07-26 02:28:02 +02:00
|
|
|
class Callback : public TransparentProxy::Callback {
|
2018-12-31 20:04:05 +01:00
|
|
|
public:
|
|
|
|
explicit Callback(Promise<SocketFd> promise) : promise_(std::move(promise)) {
|
|
|
|
}
|
|
|
|
void set_result(Result<SocketFd> result) override {
|
|
|
|
promise_.set_result(std::move(result));
|
|
|
|
}
|
|
|
|
void on_connected() override {
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Promise<SocketFd> promise_;
|
|
|
|
};
|
|
|
|
|
|
|
|
IPAddress socks5_ip;
|
|
|
|
socks5_ip.init_ipv4_port("131.191.89.104", 43077).ensure();
|
2020-05-16 22:32:32 +02:00
|
|
|
IPAddress mtproto_ip_address = get_default_ip_address();
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
auto r_socket = SocketFd::open(socks5_ip);
|
2020-05-30 02:10:35 +02:00
|
|
|
if (r_socket.is_error()) {
|
|
|
|
return promise.set_error(Status::Error(PSTRING() << "Failed to open socket: " << r_socket.error()));
|
|
|
|
}
|
2020-05-16 22:32:32 +02:00
|
|
|
create_actor<Socks5>("socks5", r_socket.move_as_ok(), mtproto_ip_address, "", "",
|
2020-08-27 00:27:34 +02:00
|
|
|
make_unique<Callback>(std::move(promise)), actor_shared(this))
|
2018-12-31 20:04:05 +01:00
|
|
|
.release();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void on_result(Result<SocketFd> res, bool dummy) {
|
|
|
|
res.ensure();
|
|
|
|
Scheduler::instance()->finish();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST(Mtproto, socks5) {
|
|
|
|
return;
|
|
|
|
ConcurrentScheduler sched;
|
|
|
|
int threads_n = 0;
|
|
|
|
sched.init(threads_n);
|
|
|
|
|
2018-10-27 02:03:15 +02:00
|
|
|
sched.create_actor_unsafe<Socks5TestActor>(0, "Socks5TestActor").release();
|
2018-12-31 20:04:05 +01:00
|
|
|
sched.start();
|
|
|
|
while (sched.run_main(10)) {
|
|
|
|
// empty;
|
|
|
|
}
|
|
|
|
sched.finish();
|
|
|
|
}
|
2019-01-29 16:16:52 +01:00
|
|
|
|
|
|
|
TEST(Mtproto, notifications) {
|
2019-03-25 01:12:06 +01:00
|
|
|
vector<string> pushes = {
|
2019-01-29 16:16:52 +01:00
|
|
|
"eyJwIjoiSkRnQ3NMRWxEaWhyVWRRN1pYM3J1WVU4TlRBMFhMb0N6UWRNdzJ1cWlqMkdRbVR1WXVvYXhUeFJHaG1QQm8yVElYZFBzX2N3b2RIb3lY"
|
|
|
|
"b2drVjM1dVl0UzdWeElNX1FNMDRKMG1mV3ZZWm4zbEtaVlJ0aFVBNGhYUWlaN0pfWDMyZDBLQUlEOWgzRnZwRjNXUFRHQWRaVkdFYzg3bnFPZ3hD"
|
|
|
|
"NUNMRkM2SU9fZmVqcEpaV2RDRlhBWWpwc1k2aktrbVNRdFZ1MzE5ZW04UFVieXZudFpfdTNud2hjQ0czMk96TGp4S1kyS1lzU21JZm1GMzRmTmw1"
|
|
|
|
"QUxaa2JvY2s2cE5rZEdrak9qYmRLckJyU0ZtWU8tQ0FsRE10dEplZFFnY1U5bVJQdU80b1d2NG5sb1VXS19zSlNTaXdIWEZyb1pWTnZTeFJ0Z1dN"
|
2019-03-25 01:12:06 +01:00
|
|
|
"ZyJ9",
|
|
|
|
"eyJwIjoiSkRnQ3NMRWxEaWlZby1GRWJndk9WaTFkUFdPVmZndzBBWHYwTWNzWDFhWEtNZC03T1Q2WWNfT0taRURHZDJsZ0h0WkhMSllyVG50RE95"
|
|
|
|
"TkY1aXJRQlZ4UUFLQlRBekhPTGZIS3BhQXdoaWd5b3NQd0piWnJVV2xRWmh4eEozUFUzZjBNRTEwX0xNT0pFN0xsVUFaY2dabUNaX2V1QmNPZWNK"
|
|
|
|
"VERxRkpIRGZjN2pBOWNrcFkyNmJRT2dPUEhCeHlEMUVrNVdQcFpLTnlBODVuYzQ1eHFPdERqcU5aVmFLU3pKb2VIcXBQMnJqR29kN2M5YkxsdGd5"
|
|
|
|
"Q0NGd2NBU3dJeDc3QWNWVXY1UnVZIn0"};
|
2019-01-29 16:16:52 +01:00
|
|
|
string key =
|
|
|
|
"uBa5yu01a-nJJeqsR3yeqMs6fJLYXjecYzFcvS6jIwS3nefBIr95LWrTm-IbRBNDLrkISz1Sv0KYpDzhU8WFRk1D0V_"
|
|
|
|
"qyO7XsbDPyrYxRBpGxofJUINSjb1uCxoSdoh1_F0UXEA2fWWKKVxL0DKUQssZfbVj3AbRglsWpH-jDK1oc6eBydRiS3i4j-"
|
|
|
|
"H0yJkEMoKRgaF9NaYI4u26oIQ-Ez46kTVU-R7e3acdofOJKm7HIKan_5ZMg82Dvec2M6vc_"
|
|
|
|
"I54Vs28iBx8IbBO1y5z9WSScgW3JCvFFKP2MXIu7Jow5-cpUx6jXdzwRUb9RDApwAFKi45zpv8eb3uPCDAmIQ";
|
2019-03-25 01:12:06 +01:00
|
|
|
vector<string> decrypted_payloads = {
|
2019-03-25 09:08:48 +01:00
|
|
|
"eyJsb2Nfa2V5IjoiTUVTU0FHRV9URVhUIiwibG9jX2FyZ3MiOlsiQXJzZW55IFNtaXJub3YiLCJhYmNkZWZnIl0sImN1c3RvbSI6eyJtc2dfaWQi"
|
|
|
|
"OiI1OTAwNDciLCJmcm9tX2lkIjoiNjI4MTQifSwiYmFkZ2UiOiI0MDkifQ",
|
2019-03-25 01:12:06 +01:00
|
|
|
"eyJsb2Nfa2V5IjoiIiwibG9jX2FyZ3MiOltdLCJjdXN0b20iOnsiY2hhbm5lbF9pZCI6IjExNzY4OTU0OTciLCJtYXhfaWQiOiIxMzU5In0sImJh"
|
|
|
|
"ZGdlIjoiMCJ9"};
|
2019-01-29 16:16:52 +01:00
|
|
|
key = base64url_decode(key).move_as_ok();
|
|
|
|
|
2019-03-25 01:12:06 +01:00
|
|
|
for (size_t i = 0; i < pushes.size(); i++) {
|
|
|
|
auto push = base64url_decode(pushes[i]).move_as_ok();
|
|
|
|
auto decrypted_payload = base64url_decode(decrypted_payloads[i]).move_as_ok();
|
|
|
|
|
|
|
|
auto key_id = DhHandshake::calc_key_id(key);
|
|
|
|
ASSERT_EQ(key_id, NotificationManager::get_push_receiver_id(push).ok());
|
|
|
|
ASSERT_EQ(decrypted_payload, NotificationManager::decrypt_push(key_id, key, push).ok());
|
|
|
|
}
|
2019-01-29 16:16:52 +01:00
|
|
|
}
|
2019-05-06 18:59:49 +02:00
|
|
|
|
|
|
|
class FastPingTestActor : public Actor {
|
|
|
|
public:
|
|
|
|
explicit FastPingTestActor(Status *result) : result_(result) {
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Status *result_;
|
|
|
|
unique_ptr<mtproto::RawConnection> connection_;
|
|
|
|
unique_ptr<mtproto::AuthKeyHandshake> handshake_;
|
|
|
|
ActorOwn<> fast_ping_;
|
|
|
|
int iteration_{0};
|
|
|
|
|
|
|
|
void start_up() override {
|
|
|
|
// Run handshake to create key and salt
|
2020-05-30 02:10:35 +02:00
|
|
|
auto r_socket = SocketFd::open(get_default_ip_address());
|
|
|
|
if (r_socket.is_error()) {
|
|
|
|
*result_ = Status::Error(PSTRING() << "Failed to open socket: " << r_socket.error());
|
|
|
|
return stop();
|
|
|
|
}
|
|
|
|
|
2019-07-09 04:01:12 +02:00
|
|
|
auto raw_connection = make_unique<mtproto::RawConnection>(
|
2020-05-30 02:10:35 +02:00
|
|
|
r_socket.move_as_ok(), mtproto::TransportType{mtproto::TransportType::Tcp, 0, mtproto::ProxySecret()}, nullptr);
|
2019-05-06 18:59:49 +02:00
|
|
|
auto handshake = make_unique<mtproto::AuthKeyHandshake>(get_default_dc_id(), 60 * 100 /*temp*/);
|
|
|
|
create_actor<mtproto::HandshakeActor>(
|
|
|
|
"HandshakeActor", std::move(handshake), std::move(raw_connection), make_unique<HandshakeContext>(), 10.0,
|
|
|
|
PromiseCreator::lambda([self = actor_id(this)](Result<unique_ptr<mtproto::RawConnection>> raw_connection) {
|
|
|
|
send_closure(self, &FastPingTestActor::got_connection, std::move(raw_connection), 1);
|
|
|
|
}),
|
|
|
|
PromiseCreator::lambda([self = actor_id(this)](Result<unique_ptr<mtproto::AuthKeyHandshake>> handshake) {
|
|
|
|
send_closure(self, &FastPingTestActor::got_handshake, std::move(handshake), 1);
|
|
|
|
}))
|
|
|
|
.release();
|
|
|
|
}
|
|
|
|
void got_connection(Result<unique_ptr<mtproto::RawConnection>> r_raw_connection, int32 dummy) {
|
|
|
|
if (r_raw_connection.is_error()) {
|
|
|
|
*result_ = r_raw_connection.move_as_error();
|
2020-01-30 13:14:02 +01:00
|
|
|
LOG(INFO) << "Receive " << *result_ << " instead of a connection";
|
2019-05-06 18:59:49 +02:00
|
|
|
return stop();
|
|
|
|
}
|
|
|
|
connection_ = r_raw_connection.move_as_ok();
|
|
|
|
loop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void got_handshake(Result<unique_ptr<mtproto::AuthKeyHandshake>> r_handshake, int32 dummy) {
|
|
|
|
if (r_handshake.is_error()) {
|
|
|
|
*result_ = r_handshake.move_as_error();
|
2020-01-30 13:14:02 +01:00
|
|
|
LOG(INFO) << "Receive " << *result_ << " instead of a handshake";
|
2019-05-06 18:59:49 +02:00
|
|
|
return stop();
|
|
|
|
}
|
|
|
|
handshake_ = r_handshake.move_as_ok();
|
|
|
|
loop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void got_raw_connection(Result<unique_ptr<mtproto::RawConnection>> r_connection) {
|
|
|
|
if (r_connection.is_error()) {
|
|
|
|
*result_ = r_connection.move_as_error();
|
2020-01-30 13:14:02 +01:00
|
|
|
LOG(INFO) << "Receive " << *result_ << " instead of a handshake";
|
2019-05-06 18:59:49 +02:00
|
|
|
return stop();
|
|
|
|
}
|
|
|
|
connection_ = r_connection.move_as_ok();
|
2019-06-02 02:17:30 +02:00
|
|
|
LOG(INFO) << "RTT: " << connection_->rtt_;
|
2019-05-06 18:59:49 +02:00
|
|
|
connection_->rtt_ = 0;
|
|
|
|
loop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void loop() override {
|
|
|
|
if (handshake_ && connection_) {
|
2019-06-02 02:17:30 +02:00
|
|
|
LOG(INFO) << "Iteration " << iteration_;
|
2019-05-06 18:59:49 +02:00
|
|
|
if (iteration_ == 6) {
|
|
|
|
return stop();
|
|
|
|
}
|
|
|
|
unique_ptr<mtproto::AuthData> auth_data;
|
|
|
|
if (iteration_ % 2 == 0) {
|
|
|
|
auth_data = make_unique<mtproto::AuthData>();
|
2020-01-30 02:06:15 +01:00
|
|
|
auth_data->set_tmp_auth_key(handshake_->get_auth_key());
|
2020-01-08 18:30:07 +01:00
|
|
|
auth_data->set_server_time_difference(handshake_->get_server_time_diff());
|
|
|
|
auth_data->set_server_salt(handshake_->get_server_salt(), Time::now());
|
2019-05-06 18:59:49 +02:00
|
|
|
auth_data->set_future_salts({mtproto::ServerSalt{0u, 1e20, 1e30}}, Time::now());
|
|
|
|
auth_data->set_use_pfs(true);
|
|
|
|
uint64 session_id = 0;
|
|
|
|
do {
|
|
|
|
Random::secure_bytes(reinterpret_cast<uint8 *>(&session_id), sizeof(session_id));
|
|
|
|
} while (session_id == 0);
|
|
|
|
auth_data->set_session_id(session_id);
|
|
|
|
}
|
|
|
|
iteration_++;
|
|
|
|
fast_ping_ = create_ping_actor(
|
|
|
|
"", std::move(connection_), std::move(auth_data),
|
|
|
|
PromiseCreator::lambda([self = actor_id(this)](Result<unique_ptr<mtproto::RawConnection>> r_raw_connection) {
|
|
|
|
send_closure(self, &FastPingTestActor::got_raw_connection, std::move(r_raw_connection));
|
|
|
|
}),
|
|
|
|
ActorShared<>());
|
|
|
|
}
|
|
|
|
}
|
2020-01-30 13:14:02 +01:00
|
|
|
|
|
|
|
void tear_down() override {
|
|
|
|
Scheduler::instance()->finish();
|
|
|
|
}
|
2019-05-06 18:59:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class Mtproto_FastPing : public Test {
|
|
|
|
public:
|
|
|
|
using Test::Test;
|
|
|
|
bool step() final {
|
|
|
|
if (!is_inited_) {
|
|
|
|
sched_.init(0);
|
|
|
|
sched_.create_actor_unsafe<FastPingTestActor>(0, "FastPingTestActor", &result_).release();
|
|
|
|
sched_.start();
|
|
|
|
is_inited_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ret = sched_.run_main(10);
|
|
|
|
if (ret) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
sched_.finish();
|
|
|
|
if (result_.is_error()) {
|
|
|
|
LOG(ERROR) << result_;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool is_inited_ = false;
|
|
|
|
ConcurrentScheduler sched_;
|
|
|
|
Status result_;
|
|
|
|
};
|
|
|
|
RegisterTest<Mtproto_FastPing> mtproto_fastping("Mtproto_FastPing");
|
2019-06-25 23:06:27 +02:00
|
|
|
|
2019-07-01 15:18:28 +02:00
|
|
|
TEST(Mtproto, Grease) {
|
|
|
|
std::string s(10000, '0');
|
2019-07-09 05:56:06 +02:00
|
|
|
mtproto::Grease::init(s);
|
2019-06-25 23:06:27 +02:00
|
|
|
for (auto c : s) {
|
2019-07-01 15:18:28 +02:00
|
|
|
CHECK((c & 0xF) == 0xA);
|
2019-06-25 23:06:27 +02:00
|
|
|
}
|
|
|
|
for (size_t i = 1; i < s.size(); i += 2) {
|
|
|
|
CHECK(s[i] != s[i - 1]);
|
|
|
|
}
|
2019-07-01 15:18:28 +02:00
|
|
|
}
|
|
|
|
|
2019-07-07 02:35:30 +02:00
|
|
|
TEST(Mtproto, TlsTransport) {
|
2019-06-25 23:06:27 +02:00
|
|
|
SET_VERBOSITY_LEVEL(VERBOSITY_NAME(ERROR));
|
|
|
|
ConcurrentScheduler sched;
|
|
|
|
int threads_n = 1;
|
|
|
|
sched.init(threads_n);
|
|
|
|
{
|
|
|
|
auto guard = sched.get_main_guard();
|
2019-07-07 02:35:30 +02:00
|
|
|
class RunTest : public Actor {
|
|
|
|
void start_up() override {
|
|
|
|
class Callback : public TransparentProxy::Callback {
|
|
|
|
public:
|
|
|
|
void set_result(Result<SocketFd> result) override {
|
2020-07-15 15:38:04 +02:00
|
|
|
if (result.is_ok()) {
|
|
|
|
LOG(ERROR) << "Unexpectedly succeeded to connect to MTProto proxy";
|
|
|
|
} else if (result.error().message() != "Response hash mismatch") {
|
|
|
|
LOG(ERROR) << "Receive unexpected result " << result.error();
|
2020-05-30 02:10:35 +02:00
|
|
|
}
|
2019-07-07 02:35:30 +02:00
|
|
|
Scheduler::instance()->finish();
|
|
|
|
}
|
|
|
|
void on_connected() override {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const std::string domain = "www.google.com";
|
|
|
|
IPAddress ip_address;
|
2020-01-30 13:14:02 +01:00
|
|
|
auto resolve_status = ip_address.init_host_port(domain, 443);
|
|
|
|
if (resolve_status.is_error()) {
|
|
|
|
LOG(ERROR) << resolve_status;
|
|
|
|
Scheduler::instance()->finish();
|
|
|
|
return;
|
|
|
|
}
|
2020-05-30 02:10:35 +02:00
|
|
|
auto r_socket = SocketFd::open(ip_address);
|
|
|
|
if (r_socket.is_error()) {
|
|
|
|
LOG(ERROR) << "Failed to open socket: " << r_socket.error();
|
|
|
|
Scheduler::instance()->finish();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
create_actor<mtproto::TlsInit>("TlsInit", r_socket.move_as_ok(), domain, "0123456789secret",
|
|
|
|
make_unique<Callback>(), ActorShared<>(), Clocks::system() - Time::now())
|
2019-07-07 02:35:30 +02:00
|
|
|
.release();
|
2019-06-25 23:06:27 +02:00
|
|
|
}
|
|
|
|
};
|
2019-07-07 02:35:30 +02:00
|
|
|
create_actor<RunTest>("RunTest").release();
|
2019-06-25 23:06:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sched.start();
|
|
|
|
while (sched.run_main(10)) {
|
|
|
|
// empty
|
|
|
|
}
|
|
|
|
sched.finish();
|
|
|
|
}
|