2018-12-31 20:04:05 +01:00
|
|
|
//
|
2018-01-02 14:42:31 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2018
|
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)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/telegram/td_api.h"
|
2018-05-18 14:57:40 +02:00
|
|
|
#include "td/telegram/telegram_api.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-06-26 01:43:11 +02:00
|
|
|
#include "td/telegram/net/DcId.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/net/DcOptions.h"
|
|
|
|
#include "td/telegram/net/DcOptionsSet.h"
|
2018-05-08 22:02:15 +02:00
|
|
|
#include "td/telegram/net/NetQuery.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/StateManager.h"
|
|
|
|
|
2018-04-30 19:01:18 +02:00
|
|
|
#include "td/mtproto/IStreamTransport.h"
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/actor/actor.h"
|
|
|
|
#include "td/actor/PromiseFuture.h"
|
|
|
|
#include "td/actor/SignalSlot.h"
|
|
|
|
|
|
|
|
#include "td/net/NetStats.h"
|
|
|
|
|
|
|
|
#include "td/utils/FloodControlStrict.h"
|
2018-09-27 15:37:15 +02:00
|
|
|
#include "td/utils/logging.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/port/IPAddress.h"
|
|
|
|
#include "td/utils/port/SocketFd.h"
|
|
|
|
#include "td/utils/Slice.h"
|
|
|
|
#include "td/utils/Status.h"
|
2018-05-15 18:44:24 +02:00
|
|
|
#include "td/utils/StringBuilder.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/Time.h"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <memory>
|
2018-05-15 14:21:09 +02:00
|
|
|
#include <unordered_map>
|
2018-12-31 20:04:05 +01:00
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
namespace mtproto {
|
|
|
|
class RawConnection;
|
|
|
|
} // namespace mtproto
|
|
|
|
namespace detail {
|
|
|
|
class StatsCallback;
|
|
|
|
}
|
|
|
|
class GetHostByNameActor;
|
|
|
|
} // namespace td
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2018-09-26 01:59:29 +02:00
|
|
|
extern int VERBOSITY_NAME(connections);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
class Proxy {
|
|
|
|
public:
|
|
|
|
static Proxy socks5(string server, int32 port, string user, string password) {
|
|
|
|
Proxy proxy;
|
|
|
|
proxy.type_ = Type::Socks5;
|
|
|
|
proxy.server_ = std::move(server);
|
|
|
|
proxy.port_ = std::move(port);
|
|
|
|
proxy.user_ = std::move(user);
|
|
|
|
proxy.password_ = std::move(password);
|
|
|
|
return proxy;
|
|
|
|
}
|
|
|
|
|
2018-07-27 02:54:25 +02:00
|
|
|
static Proxy http_tcp(string server, int32 port, string user, string password) {
|
2018-07-26 15:49:18 +02:00
|
|
|
Proxy proxy;
|
2018-07-27 02:54:25 +02:00
|
|
|
proxy.type_ = Type::HttpTcp;
|
|
|
|
proxy.server_ = std::move(server);
|
|
|
|
proxy.port_ = std::move(port);
|
|
|
|
proxy.user_ = std::move(user);
|
|
|
|
proxy.password_ = std::move(password);
|
|
|
|
return proxy;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Proxy http_caching(string server, int32 port, string user, string password) {
|
|
|
|
Proxy proxy;
|
|
|
|
proxy.type_ = Type::HttpCaching;
|
2018-07-26 15:49:18 +02:00
|
|
|
proxy.server_ = std::move(server);
|
|
|
|
proxy.port_ = std::move(port);
|
|
|
|
proxy.user_ = std::move(user);
|
|
|
|
proxy.password_ = std::move(password);
|
|
|
|
return proxy;
|
|
|
|
}
|
|
|
|
|
2018-05-08 16:48:30 +02:00
|
|
|
static Proxy mtproto(string server, int32 port, string secret) {
|
|
|
|
Proxy proxy;
|
|
|
|
proxy.type_ = Type::Mtproto;
|
|
|
|
proxy.server_ = std::move(server);
|
|
|
|
proxy.port_ = std::move(port);
|
|
|
|
proxy.secret_ = std::move(secret);
|
|
|
|
return proxy;
|
|
|
|
}
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
CSlice server() const {
|
|
|
|
return server_;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32 port() const {
|
|
|
|
return port_;
|
|
|
|
}
|
|
|
|
|
|
|
|
CSlice user() const {
|
|
|
|
return user_;
|
|
|
|
}
|
|
|
|
|
|
|
|
CSlice password() const {
|
|
|
|
return password_;
|
|
|
|
}
|
|
|
|
|
2018-05-08 16:48:30 +02:00
|
|
|
CSlice secret() const {
|
|
|
|
return secret_;
|
|
|
|
}
|
|
|
|
|
2018-07-27 02:54:25 +02:00
|
|
|
enum class Type : int32 { None, Socks5, Mtproto, HttpTcp, HttpCaching };
|
2018-12-31 20:04:05 +01:00
|
|
|
Type type() const {
|
|
|
|
return type_;
|
|
|
|
}
|
|
|
|
|
2018-02-19 22:44:52 +01:00
|
|
|
template <class T>
|
|
|
|
void parse(T &parser);
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void store(T &storer) const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
private:
|
|
|
|
Type type_{Type::None};
|
|
|
|
string server_;
|
2018-02-19 22:44:52 +01:00
|
|
|
int32 port_ = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
string user_;
|
|
|
|
string password_;
|
2018-05-08 16:48:30 +02:00
|
|
|
string secret_;
|
2018-02-19 22:44:52 +01:00
|
|
|
};
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-02-19 22:44:52 +01:00
|
|
|
inline bool operator==(const Proxy &lhs, const Proxy &rhs) {
|
|
|
|
return lhs.type() == rhs.type() && lhs.server() == rhs.server() && lhs.port() == rhs.port() &&
|
2018-05-08 16:48:30 +02:00
|
|
|
lhs.user() == rhs.user() && lhs.password() == rhs.password() && lhs.secret() == rhs.secret();
|
2018-02-19 22:44:52 +01:00
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-02-19 22:44:52 +01:00
|
|
|
inline bool operator!=(const Proxy &lhs, const Proxy &rhs) {
|
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-05-15 18:44:24 +02:00
|
|
|
StringBuilder &operator<<(StringBuilder &string_builder, const Proxy &proxy);
|
|
|
|
|
2018-05-08 22:02:15 +02:00
|
|
|
class ConnectionCreator : public NetQueryCallback {
|
2018-12-31 20:04:05 +01:00
|
|
|
public:
|
|
|
|
explicit ConnectionCreator(ActorShared<> parent);
|
|
|
|
ConnectionCreator(ConnectionCreator &&other);
|
|
|
|
ConnectionCreator &operator=(ConnectionCreator &&other);
|
|
|
|
~ConnectionCreator() override;
|
2018-05-15 14:21:09 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_dc_options(DcOptions new_dc_options);
|
|
|
|
void on_dc_update(DcId dc_id, string ip_port, Promise<> promise);
|
2018-05-15 14:21:09 +02:00
|
|
|
void on_pong(size_t hash);
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_mtproto_error(size_t hash);
|
|
|
|
void request_raw_connection(DcId dc_id, bool allow_media_only, bool is_media,
|
2018-09-27 03:19:03 +02:00
|
|
|
Promise<unique_ptr<mtproto::RawConnection>> promise, size_t hash = 0);
|
|
|
|
void request_raw_connection_by_ip(IPAddress ip_address, Promise<unique_ptr<mtproto::RawConnection>> promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void set_net_stats_callback(std::shared_ptr<NetStatsCallback> common_callback,
|
|
|
|
std::shared_ptr<NetStatsCallback> media_callback);
|
|
|
|
|
2018-07-27 17:10:45 +02:00
|
|
|
void add_proxy(int32 old_proxy_id, string server, int32 port, bool enable,
|
|
|
|
td_api::object_ptr<td_api::ProxyType> proxy_type, Promise<td_api::object_ptr<td_api::proxy>> promise);
|
2018-05-14 21:00:38 +02:00
|
|
|
void enable_proxy(int32 proxy_id, Promise<Unit> promise);
|
|
|
|
void disable_proxy(Promise<Unit> promise);
|
|
|
|
void remove_proxy(int32 proxy_id, Promise<Unit> promise);
|
|
|
|
void get_proxies(Promise<td_api::object_ptr<td_api::proxies>> promise);
|
2018-05-17 20:08:51 +02:00
|
|
|
void get_proxy_link(int32 proxy_id, Promise<string> promise);
|
2018-05-14 21:00:38 +02:00
|
|
|
void ping_proxy(int32 proxy_id, Promise<double> promise);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
ActorShared<> parent_;
|
|
|
|
DcOptionsSet dc_options_set_;
|
|
|
|
bool network_flag_ = false;
|
|
|
|
uint32 network_generation_ = 0;
|
|
|
|
bool online_flag_ = false;
|
2018-05-14 21:00:38 +02:00
|
|
|
bool is_inited_ = false;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-05-15 14:21:09 +02:00
|
|
|
static constexpr int32 MAX_PROXY_LAST_USED_SAVE_DELAY = 60;
|
2018-05-14 21:00:38 +02:00
|
|
|
std::map<int32, Proxy> proxies_;
|
2018-05-15 14:21:09 +02:00
|
|
|
std::unordered_map<int32, int32> proxy_last_used_date_;
|
|
|
|
std::unordered_map<int32, int32> proxy_last_used_saved_date_;
|
2018-05-14 21:00:38 +02:00
|
|
|
int32 max_proxy_id_ = 0;
|
|
|
|
int32 active_proxy_id_ = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
ActorOwn<GetHostByNameActor> get_host_by_name_actor_;
|
|
|
|
IPAddress proxy_ip_address_;
|
|
|
|
Timestamp resolve_proxy_timestamp_;
|
|
|
|
uint64 resolve_proxy_query_token_{0};
|
|
|
|
|
2018-05-08 22:02:15 +02:00
|
|
|
uint64 get_proxy_info_query_token_{0};
|
|
|
|
Timestamp get_proxy_info_timestamp_;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
struct ClientInfo {
|
|
|
|
class Backoff {
|
|
|
|
#if TD_ANDROID || TD_DARWIN_IOS || TD_DARWIN_WATCH_OS || TD_TIZEN
|
|
|
|
static constexpr int32 MAX_BACKOFF = 300;
|
|
|
|
#else
|
|
|
|
static constexpr int32 MAX_BACKOFF = 16;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
public:
|
|
|
|
void add_event(int32 now) {
|
|
|
|
wakeup_at_ = now + next_delay_;
|
2018-02-12 11:37:54 +01:00
|
|
|
next_delay_ = min(MAX_BACKOFF, next_delay_ * 2);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
int32 get_wakeup_at() const {
|
|
|
|
return wakeup_at_;
|
|
|
|
}
|
|
|
|
void clear() {
|
|
|
|
*this = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int32 wakeup_at_{0};
|
|
|
|
int32 next_delay_ = 1;
|
|
|
|
};
|
|
|
|
ClientInfo();
|
|
|
|
|
|
|
|
Backoff backoff;
|
|
|
|
FloodControlStrict flood_control;
|
|
|
|
FloodControlStrict flood_control_online;
|
|
|
|
FloodControlStrict mtproto_error_flood_control;
|
|
|
|
Slot slot;
|
|
|
|
size_t pending_connections{0};
|
|
|
|
size_t checking_connections{0};
|
2018-09-27 03:19:03 +02:00
|
|
|
std::vector<std::pair<unique_ptr<mtproto::RawConnection>, double>> ready_connections;
|
|
|
|
std::vector<Promise<unique_ptr<mtproto::RawConnection>>> queries;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static constexpr double READY_CONNECTIONS_TIMEOUT = 10;
|
|
|
|
|
|
|
|
bool inited{false};
|
|
|
|
size_t hash{0};
|
|
|
|
DcId dc_id;
|
|
|
|
bool allow_media_only;
|
|
|
|
bool is_media;
|
|
|
|
};
|
|
|
|
std::map<size_t, ClientInfo> clients_;
|
|
|
|
|
|
|
|
std::shared_ptr<NetStatsCallback> media_net_stats_callback_;
|
|
|
|
std::shared_ptr<NetStatsCallback> common_net_stats_callback_;
|
|
|
|
|
|
|
|
ActorShared<> ref_cnt_guard_;
|
|
|
|
int ref_cnt_{0};
|
|
|
|
ActorShared<ConnectionCreator> create_reference(int64 token);
|
|
|
|
bool close_flag_{false};
|
2018-05-08 22:02:15 +02:00
|
|
|
uint64 current_token_ = 0;
|
2018-06-04 17:55:38 +02:00
|
|
|
std::map<uint64, std::pair<bool, ActorShared<>>> children_;
|
|
|
|
|
|
|
|
struct PingMainDcRequest {
|
|
|
|
Promise<double> promise;
|
|
|
|
size_t left_queries = 0;
|
|
|
|
Result<double> result;
|
|
|
|
};
|
|
|
|
std::map<uint64, PingMainDcRequest> ping_main_dc_requests_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-05-08 22:02:15 +02:00
|
|
|
uint64 next_token() {
|
2018-12-31 20:04:05 +01:00
|
|
|
return ++current_token_;
|
|
|
|
}
|
2018-05-14 21:00:38 +02:00
|
|
|
|
2018-09-17 20:15:11 +02:00
|
|
|
void set_active_proxy_id(int32 proxy_id, bool from_binlog = false);
|
2018-05-14 21:00:38 +02:00
|
|
|
void enable_proxy_impl(int32 proxy_id);
|
|
|
|
void disable_proxy_impl();
|
|
|
|
void on_proxy_changed(bool from_db);
|
|
|
|
static string get_proxy_database_key(int32 proxy_id);
|
|
|
|
static string get_proxy_used_database_key(int32 proxy_id);
|
2018-05-15 14:21:09 +02:00
|
|
|
void save_proxy_last_used_date(int32 delay);
|
2018-05-14 21:00:38 +02:00
|
|
|
td_api::object_ptr<td_api::proxy> get_proxy_object(int32 proxy_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void start_up() override;
|
|
|
|
void hangup_shared() override;
|
|
|
|
void hangup() override;
|
|
|
|
void loop() override;
|
|
|
|
|
2018-05-08 22:02:15 +02:00
|
|
|
void on_result(NetQueryPtr query) override;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void save_dc_options();
|
|
|
|
Result<SocketFd> do_request_connection(DcId dc_id, bool allow_media_only);
|
2018-09-27 03:19:03 +02:00
|
|
|
Result<std::pair<unique_ptr<mtproto::RawConnection>, bool>> do_request_raw_connection(DcId dc_id,
|
|
|
|
bool allow_media_only,
|
|
|
|
bool is_media, size_t hash);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void on_network(bool network_flag, uint32 network_generation);
|
|
|
|
void on_online(bool online_flag);
|
|
|
|
|
2018-05-16 21:35:27 +02:00
|
|
|
static void update_mtproto_header(const Proxy &proxy);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void client_wakeup(size_t hash);
|
|
|
|
void client_loop(ClientInfo &client);
|
|
|
|
struct ConnectionData {
|
|
|
|
SocketFd socket_fd;
|
|
|
|
StateManager::ConnectionToken connection_token;
|
2018-09-27 03:19:03 +02:00
|
|
|
unique_ptr<detail::StatsCallback> stats_callback;
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
2018-04-30 19:01:18 +02:00
|
|
|
void client_create_raw_connection(Result<ConnectionData> r_connection_data, bool check_mode,
|
|
|
|
mtproto::TransportType transport_type, size_t hash, string debug_str,
|
|
|
|
uint32 network_generation);
|
2018-09-27 03:19:03 +02:00
|
|
|
void client_add_connection(size_t hash, Result<unique_ptr<mtproto::RawConnection>> r_raw_connection, bool check_flag);
|
2018-12-31 20:04:05 +01:00
|
|
|
void client_set_timeout_at(ClientInfo &client, double wakeup_at);
|
|
|
|
|
2018-05-08 22:02:15 +02:00
|
|
|
void on_get_proxy_info(telegram_api::object_ptr<telegram_api::help_ProxyData> proxy_data_ptr);
|
|
|
|
|
|
|
|
void schedule_get_proxy_info(int32 expires);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void on_proxy_resolved(Result<IPAddress> ip_address, bool dummy);
|
|
|
|
|
|
|
|
static DcOptions get_default_dc_options(bool is_test);
|
2018-05-18 22:43:38 +02:00
|
|
|
|
|
|
|
struct FindConnectionExtra {
|
|
|
|
DcOptionsSet::Stat *stat{nullptr};
|
|
|
|
mtproto::TransportType transport_type;
|
|
|
|
string debug_str;
|
|
|
|
IPAddress mtproto_ip;
|
|
|
|
bool check_mode{false};
|
|
|
|
};
|
|
|
|
class ProxyInfo;
|
2018-06-04 00:17:59 +02:00
|
|
|
|
|
|
|
static Result<mtproto::TransportType> get_transport_type(const ProxyInfo &proxy,
|
|
|
|
const DcOptionsSet::ConnectionInfo &info);
|
|
|
|
|
2018-05-19 17:05:38 +02:00
|
|
|
Result<SocketFd> find_connection(const ProxyInfo &proxy, DcId dc_id, bool allow_media_only,
|
|
|
|
FindConnectionExtra &extra);
|
2018-06-04 00:17:59 +02:00
|
|
|
|
2018-05-18 22:43:38 +02:00
|
|
|
void ping_proxy_resolved(int32 proxy_id, IPAddress ip_address, Promise<double> promise);
|
2018-06-04 00:17:59 +02:00
|
|
|
|
2018-05-18 22:43:38 +02:00
|
|
|
void ping_proxy_socket_fd(SocketFd socket_fd, mtproto::TransportType transport_type, Promise<double> promise);
|
2018-06-04 17:55:38 +02:00
|
|
|
|
|
|
|
void on_ping_main_dc_result(uint64 token, Result<double> result);
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|