// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021 // // 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) // #include "td/telegram/ConfigManager.h" #include "td/telegram/AuthManager.h" #include "td/telegram/ConfigShared.h" #include "td/telegram/ConnectionState.h" #include "td/telegram/Global.h" #include "td/telegram/JsonValue.h" #include "td/telegram/LinkManager.h" #include "td/telegram/logevent/LogEvent.h" #include "td/telegram/net/AuthDataShared.h" #include "td/telegram/net/ConnectionCreator.h" #include "td/telegram/net/DcId.h" #include "td/telegram/net/DcOptions.h" #include "td/telegram/net/NetQuery.h" #include "td/telegram/net/NetQueryDispatcher.h" #include "td/telegram/net/NetType.h" #include "td/telegram/net/PublicRsaKeyShared.h" #include "td/telegram/net/Session.h" #include "td/telegram/StateManager.h" #include "td/telegram/Td.h" #include "td/telegram/TdDb.h" #include "td/telegram/telegram_api.h" #include "td/mtproto/AuthData.h" #include "td/mtproto/AuthKey.h" #include "td/mtproto/RawConnection.h" #include "td/mtproto/RSA.h" #include "td/mtproto/TransportType.h" #if !TD_EMSCRIPTEN //FIXME #include "td/net/SslStream.h" #include "td/net/Wget.h" #endif #include "td/net/HttpQuery.h" #include "td/actor/actor.h" #include "td/utils/algorithm.h" #include "td/utils/base64.h" #include "td/utils/buffer.h" #include "td/utils/common.h" #include "td/utils/crypto.h" #include "td/utils/emoji.h" #include "td/utils/format.h" #include "td/utils/JsonBuilder.h" #include "td/utils/logging.h" #include "td/utils/misc.h" #include "td/utils/Parser.h" #include "td/utils/port/Clocks.h" #include "td/utils/Random.h" #include "td/utils/SliceBuilder.h" #include "td/utils/Time.h" #include "td/utils/tl_helpers.h" #include "td/utils/tl_parsers.h" #include "td/utils/UInt.h" #include #include #include #include namespace td { int VERBOSITY_NAME(config_recoverer) = VERBOSITY_NAME(INFO); Result HttpDate::to_unix_time(int32 year, int32 month, int32 day, int32 hour, int32 minute, int32 second) { if (year < 1970 || year > 2037) { return Status::Error("Invalid year"); } if (month < 1 || month > 12) { return Status::Error("Invalid month"); } if (day < 1 || day > days_in_month(year, month)) { return Status::Error("Invalid day"); } if (hour < 0 || hour >= 24) { return Status::Error("Invalid hour"); } if (minute < 0 || minute >= 60) { return Status::Error("Invalid minute"); } if (second < 0 || second > 60) { return Status::Error("Invalid second"); } int32 res = 0; for (int32 y = 1970; y < year; y++) { res += (is_leap(y) + 365) * seconds_in_day(); } for (int32 m = 1; m < month; m++) { res += days_in_month(year, m) * seconds_in_day(); } res += (day - 1) * seconds_in_day(); res += hour * 60 * 60; res += minute * 60; res += second; return res; } Result HttpDate::parse_http_date(string slice) { Parser p(slice); p.read_till(','); // ignore week day p.skip(','); p.skip_whitespaces(); p.skip_nofail('0'); TRY_RESULT(day, to_integer_safe(p.read_word())); auto month_name = p.read_word(); to_lower_inplace(month_name); TRY_RESULT(year, to_integer_safe(p.read_word())); p.skip_whitespaces(); p.skip_nofail('0'); TRY_RESULT(hour, to_integer_safe(p.read_till(':'))); p.skip(':'); p.skip_nofail('0'); TRY_RESULT(minute, to_integer_safe(p.read_till(':'))); p.skip(':'); p.skip_nofail('0'); TRY_RESULT(second, to_integer_safe(p.read_word())); auto gmt = p.read_word(); TRY_STATUS(std::move(p.status())); if (gmt != "GMT") { return Status::Error("Timezone must be GMT"); } static Slice month_names[12] = {"jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sep", "oct", "nov", "dec"}; int month = 0; for (int m = 1; m <= 12; m++) { if (month_names[m - 1] == month_name) { month = m; break; } } if (month == 0) { return Status::Error("Unknown month name"); } return HttpDate::to_unix_time(year, month, day, hour, minute, second); } Result decode_config(Slice input) { static auto rsa = mtproto::RSA::from_pem_public_key( "-----BEGIN RSA PUBLIC KEY-----\n" "MIIBCgKCAQEAyr+18Rex2ohtVy8sroGP\n" "BwXD3DOoKCSpjDqYoXgCqB7ioln4eDCFfOBUlfXUEvM/fnKCpF46VkAftlb4VuPD\n" "eQSS/ZxZYEGqHaywlroVnXHIjgqoxiAd192xRGreuXIaUKmkwlM9JID9WS2jUsTp\n" "zQ91L8MEPLJ/4zrBwZua8W5fECwCCh2c9G5IzzBm+otMS/YKwmR1olzRCyEkyAEj\n" "XWqBI9Ftv5eG8m0VkBzOG655WIYdyV0HfDK/NWcvGqa0w/nriMD6mDjKOryamw0O\n" "P9QuYgMN0C9xMW9y8SmP4h92OAWodTYgY1hZCxdv6cs5UnW9+PWvS+WIbkh+GaWY\n" "xwIDAQAB\n" "-----END RSA PUBLIC KEY-----\n") .move_as_ok(); if (input.size() < 344 || input.size() > 1024) { return Status::Error(PSLICE() << "Invalid " << tag("length", input.size())); } auto data_base64 = base64_filter(input); if (data_base64.size() != 344) { return Status::Error(PSLICE() << "Invalid " << tag("length", data_base64.size()) << " after base64_filter"); } TRY_RESULT(data_rsa, base64_decode(data_base64)); if (data_rsa.size() != 256) { return Status::Error(PSLICE() << "Invalid " << tag("length", data_rsa.size()) << " after base64_decode"); } MutableSlice data_rsa_slice(data_rsa); rsa.decrypt_signature(data_rsa_slice, data_rsa_slice); MutableSlice data_cbc = data_rsa_slice.substr(32); UInt256 key; UInt128 iv; as_slice(key).copy_from(data_rsa_slice.substr(0, 32)); as_slice(iv).copy_from(data_rsa_slice.substr(16, 16)); aes_cbc_decrypt(as_slice(key), as_slice(iv), data_cbc, data_cbc); CHECK(data_cbc.size() == 224); string hash(32, ' '); sha256(data_cbc.substr(0, 208), MutableSlice(hash)); if (data_cbc.substr(208) != Slice(hash).substr(0, 16)) { return Status::Error("SHA256 mismatch"); } TlParser len_parser{data_cbc}; int len = len_parser.fetch_int(); if (len < 8 || len > 208) { return Status::Error(PSLICE() << "Invalid " << tag("data length", len) << " after aes_cbc_decrypt"); } int constructor_id = len_parser.fetch_int(); if (constructor_id != telegram_api::help_configSimple::ID) { return Status::Error(PSLICE() << "Wrong " << tag("constructor", format::as_hex(constructor_id))); } BufferSlice raw_config(data_cbc.substr(8, len - 8)); TlBufferParser parser{&raw_config}; auto config = telegram_api::help_configSimple::fetch(parser); parser.fetch_end(); TRY_STATUS(parser.get_status()); return std::move(config); } static ActorOwn<> get_simple_config_impl(Promise promise, int32 scheduler_id, string url, string host, std::vector> headers, bool prefer_ipv6, std::function(HttpQuery &)> get_config, string content = string(), string content_type = string()) { VLOG(config_recoverer) << "Request simple config from " << url; #if TD_EMSCRIPTEN // FIXME return ActorOwn<>(); #else const int timeout = 10; const int ttl = 3; headers.emplace_back("Host", std::move(host)); headers.emplace_back("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) " "Chrome/77.0.3865.90 Safari/537.36"); return ActorOwn<>(create_actor_on_scheduler( "Wget", scheduler_id, PromiseCreator::lambda([get_config = std::move(get_config), promise = std::move(promise)](Result> r_query) mutable { promise.set_result([&]() -> Result { TRY_RESULT(http_query, std::move(r_query)); SimpleConfigResult res; res.r_http_date = HttpDate::parse_http_date(http_query->get_header("date").str()); auto r_config = get_config(*http_query); if (r_config.is_error()) { res.r_config = r_config.move_as_error(); } else { res.r_config = decode_config(r_config.ok()); } return std::move(res); }()); }), std::move(url), std::move(headers), timeout, ttl, prefer_ipv6, SslStream::VerifyPeer::Off, std::move(content), std::move(content_type))); #endif } ActorOwn<> get_simple_config_azure(Promise promise, const ConfigShared *shared_config, bool is_test, int32 scheduler_id) { string url = PSTRING() << "https://software-download.microsoft.com/" << (is_test ? "test" : "prod") << "v2/config.txt"; const bool prefer_ipv6 = shared_config == nullptr ? false : shared_config->get_option_boolean("prefer_ipv6"); return get_simple_config_impl(std::move(promise), scheduler_id, std::move(url), "tcdnb.azureedge.net", {}, prefer_ipv6, [](HttpQuery &http_query) -> Result { return http_query.content_.str(); }); } static ActorOwn<> get_simple_config_dns(Slice address, Slice host, Promise promise, const ConfigShared *shared_config, bool is_test, int32 scheduler_id) { string name = shared_config == nullptr ? string() : shared_config->get_option_string("dc_txt_domain_name"); const bool prefer_ipv6 = shared_config == nullptr ? false : shared_config->get_option_boolean("prefer_ipv6"); if (name.empty()) { name = is_test ? "tapv3.stel.com" : "apv3.stel.com"; } auto get_config = [](HttpQuery &http_query) -> Result { VLOG(config_recoverer) << "Receive DNS response " << http_query.content_; TRY_RESULT(json, json_decode(http_query.content_)); if (json.type() != JsonValue::Type::Object) { return Status::Error("Expected JSON object"); } auto &answer_object = json.get_object(); TRY_RESULT(answer, get_json_object_field(answer_object, "Answer", JsonValue::Type::Array, false)); auto &answer_array = answer.get_array(); vector parts; for (auto &answer_part : answer_array) { if (answer_part.type() != JsonValue::Type::Object) { return Status::Error("Expected JSON object"); } auto &data_object = answer_part.get_object(); TRY_RESULT(part, get_json_object_string_field(data_object, "data", false)); parts.push_back(std::move(part)); } if (parts.size() != 2) { return Status::Error("Expected data in two parts"); } string data; if (parts[0].size() < parts[1].size()) { data = parts[1] + parts[0]; } else { data = parts[0] + parts[1]; } return data; }; return get_simple_config_impl(std::move(promise), scheduler_id, PSTRING() << "https://" << address << "?name=" << url_encode(name) << "&type=TXT", host.str(), {{"Accept", "application/dns-json"}}, prefer_ipv6, std::move(get_config)); } ActorOwn<> get_simple_config_google_dns(Promise promise, const ConfigShared *shared_config, bool is_test, int32 scheduler_id) { return get_simple_config_dns("dns.google/resolve", "dns.google", std::move(promise), shared_config, is_test, scheduler_id); } ActorOwn<> get_simple_config_mozilla_dns(Promise promise, const ConfigShared *shared_config, bool is_test, int32 scheduler_id) { return get_simple_config_dns("mozilla.cloudflare-dns.com/dns-query", "mozilla.cloudflare-dns.com", std::move(promise), shared_config, is_test, scheduler_id); } static string generate_firebase_remote_config_payload() { unsigned char buf[17]; Random::secure_bytes(buf, sizeof(buf)); buf[0] = static_cast((buf[0] & 0xF0) | 0x07); auto app_instance_id = base64url_encode(Slice(buf, sizeof(buf))); app_instance_id.resize(22); return PSTRING() << "{\"app_id\":\"1:560508485281:web:4ee13a6af4e84d49e67ae0\",\"app_instance_id\":\"" << app_instance_id << "\"}"; } ActorOwn<> get_simple_config_firebase_remote_config(Promise promise, const ConfigShared *shared_config, bool is_test, int32 scheduler_id) { if (is_test) { promise.set_error(Status::Error(400, "Test config is not supported")); return ActorOwn<>(); } static const string payload = generate_firebase_remote_config_payload(); string url = "https://firebaseremoteconfig.googleapis.com/v1/projects/peak-vista-421/namespaces/" "firebase:fetch?key=AIzaSyC2-kAkpDsroixRXw-sTw-Wfqo4NxjMwwM"; const bool prefer_ipv6 = shared_config == nullptr ? false : shared_config->get_option_boolean("prefer_ipv6"); auto get_config = [](HttpQuery &http_query) -> Result { TRY_RESULT(json, json_decode(http_query.get_arg("entries"))); if (json.type() != JsonValue::Type::Object) { return Status::Error("Expected JSON object"); } auto &entries_object = json.get_object(); TRY_RESULT(config, get_json_object_string_field(entries_object, "ipconfigv3", false)); return std::move(config); }; return get_simple_config_impl(std::move(promise), scheduler_id, std::move(url), "firebaseremoteconfig.googleapis.com", {}, prefer_ipv6, std::move(get_config), payload, "application/json"); } ActorOwn<> get_simple_config_firebase_realtime(Promise promise, const ConfigShared *shared_config, bool is_test, int32 scheduler_id) { if (is_test) { promise.set_error(Status::Error(400, "Test config is not supported")); return ActorOwn<>(); } string url = "https://reserve-5a846.firebaseio.com/ipconfigv3.json"; const bool prefer_ipv6 = shared_config == nullptr ? false : shared_config->get_option_boolean("prefer_ipv6"); auto get_config = [](HttpQuery &http_query) -> Result { return http_query.get_arg("content").str(); }; return get_simple_config_impl(std::move(promise), scheduler_id, std::move(url), "reserve-5a846.firebaseio.com", {}, prefer_ipv6, std::move(get_config)); } ActorOwn<> get_simple_config_firebase_firestore(Promise promise, const ConfigShared *shared_config, bool is_test, int32 scheduler_id) { if (is_test) { promise.set_error(Status::Error(400, "Test config is not supported")); return ActorOwn<>(); } string url = "https://www.google.com/v1/projects/reserve-5a846/databases/(default)/documents/ipconfig/v3"; const bool prefer_ipv6 = shared_config == nullptr ? false : shared_config->get_option_boolean("prefer_ipv6"); auto get_config = [](HttpQuery &http_query) -> Result { TRY_RESULT(json, json_decode(http_query.get_arg("fields"))); if (json.type() != JsonValue::Type::Object) { return Status::Error("Expected JSON object"); } TRY_RESULT(data, get_json_object_field(json.get_object(), "data", JsonValue::Type::Object, false)); TRY_RESULT(config, get_json_object_string_field(data.get_object(), "stringValue", false)); return std::move(config); }; return get_simple_config_impl(std::move(promise), scheduler_id, std::move(url), "firestore.googleapis.com", {}, prefer_ipv6, std::move(get_config)); } static ActorOwn<> get_full_config(DcOption option, Promise> promise, ActorShared<> parent) { class SessionCallback final : public Session::Callback { public: SessionCallback(ActorShared<> parent, DcOption option) : parent_(std::move(parent)), option_(std::move(option)) { } void on_failed() final { } void on_closed() final { } void request_raw_connection(unique_ptr auth_data, Promise> promise) final { request_raw_connection_cnt_++; VLOG(config_recoverer) << "Request full config from " << option_.get_ip_address() << ", try = " << request_raw_connection_cnt_; if (request_raw_connection_cnt_ <= 2) { send_closure(G()->connection_creator(), &ConnectionCreator::request_raw_connection_by_ip, option_.get_ip_address(), mtproto::TransportType{mtproto::TransportType::ObfuscatedTcp, narrow_cast(option_.get_dc_id().get_raw_id()), option_.get_secret()}, std::move(promise)); } else { // Delay all queries except first forever delay_forever_.push_back(std::move(promise)); } } void on_tmp_auth_key_updated(mtproto::AuthKey auth_key) final { // nop } void on_server_salt_updated(std::vector server_salts) final { // nop } void on_update(BufferSlice &&update) final { // nop } void on_result(NetQueryPtr net_query) final { G()->net_query_dispatcher().dispatch(std::move(net_query)); } private: ActorShared<> parent_; DcOption option_; size_t request_raw_connection_cnt_{0}; std::vector>> delay_forever_; }; class SimpleAuthData final : public AuthDataShared { public: explicit SimpleAuthData(DcId dc_id) : dc_id_(dc_id) { } DcId dc_id() const final { return dc_id_; } const std::shared_ptr &public_rsa_key() final { return public_rsa_key_; } mtproto::AuthKey get_auth_key() final { string dc_key = G()->td_db()->get_binlog_pmc()->get(auth_key_key()); mtproto::AuthKey res; if (!dc_key.empty()) { unserialize(res, dc_key).ensure(); } return res; } AuthKeyState get_auth_key_state() final { return AuthDataShared::get_auth_key_state(get_auth_key()); } void set_auth_key(const mtproto::AuthKey &auth_key) final { G()->td_db()->get_binlog_pmc()->set(auth_key_key(), serialize(auth_key)); //notify(); } void update_server_time_difference(double diff) final { G()->update_server_time_difference(diff); } double get_server_time_difference() final { return G()->get_server_time_difference(); } void add_auth_key_listener(unique_ptr listener) final { if (listener->notify()) { auth_key_listeners_.push_back(std::move(listener)); } } void set_future_salts(const std::vector &future_salts) final { G()->td_db()->get_binlog_pmc()->set(future_salts_key(), serialize(future_salts)); } std::vector get_future_salts() final { string future_salts = G()->td_db()->get_binlog_pmc()->get(future_salts_key()); std::vector res; if (!future_salts.empty()) { unserialize(res, future_salts).ensure(); } return res; } private: DcId dc_id_; std::shared_ptr public_rsa_key_ = std::make_shared(DcId::empty(), G()->is_test_dc()); std::vector> auth_key_listeners_; void notify() { td::remove_if(auth_key_listeners_, [&](auto &listener) { return !listener->notify(); }); } string auth_key_key() const { return PSTRING() << "config_recovery_auth" << dc_id().get_raw_id(); } string future_salts_key() const { return PSTRING() << "config_recovery_salt" << dc_id().get_raw_id(); } }; class GetConfigActor final : public NetQueryCallback { public: GetConfigActor(DcOption option, Promise> promise, ActorShared<> parent) : option_(std::move(option)), promise_(std::move(promise)), parent_(std::move(parent)) { } private: void start_up() final { auto auth_data = std::make_shared(option_.get_dc_id()); int32 raw_dc_id = option_.get_dc_id().get_raw_id(); auto session_callback = make_unique(actor_shared(this, 1), std::move(option_)); int32 int_dc_id = raw_dc_id; if (G()->is_test_dc()) { int_dc_id += 10000; } session_ = create_actor("ConfigSession", std::move(session_callback), std::move(auth_data), raw_dc_id, int_dc_id, false /*is_main*/, true /*use_pfs*/, false /*is_cdn*/, false /*need_destroy_auth_key*/, mtproto::AuthKey(), std::vector()); auto query = G()->net_query_creator().create_unauth(telegram_api::help_getConfig(), DcId::empty()); query->total_timeout_limit_ = 60 * 60 * 24; query->set_callback(actor_shared(this)); query->dispatch_ttl_ = 0; send_closure(session_, &Session::send, std::move(query)); set_timeout_in(10); } void on_result(NetQueryPtr query) final { promise_.set_result(fetch_result(std::move(query))); } void hangup_shared() final { if (get_link_token() == 1) { if (promise_) { promise_.set_error(Status::Error("Failed")); } stop(); } } void hangup() final { session_.reset(); } void timeout_expired() final { promise_.set_error(Status::Error("Timeout expired")); session_.reset(); } DcOption option_; ActorOwn session_; Promise> promise_; ActorShared<> parent_; }; return ActorOwn<>( create_actor("GetConfigActor", std::move(option), std::move(promise), std::move(parent))); } class ConfigRecoverer final : public Actor { public: explicit ConfigRecoverer(ActorShared<> parent) : parent_(std::move(parent)) { connecting_since_ = Time::now(); } void on_dc_options_update(DcOptions dc_options) { dc_options_update_ = std::move(dc_options); update_dc_options(); loop(); } private: void on_network(bool has_network, uint32 network_generation) { has_network_ = has_network; if (network_generation_ != network_generation) { if (has_network_) { has_network_since_ = Time::now_cached(); } } loop(); } void on_online(bool is_online) { if (is_online_ == is_online) { return; } is_online_ = is_online; if (is_online) { if (simple_config_.dc_options.empty()) { simple_config_expires_at_ = 0; } if (full_config_ == nullptr) { full_config_expires_at_ = 0; } } loop(); } void on_connecting(bool is_connecting) { VLOG(config_recoverer) << "On connecting " << is_connecting; if (is_connecting && !is_connecting_) { connecting_since_ = Time::now_cached(); } is_connecting_ = is_connecting; loop(); } static bool check_phone_number_rules(Slice phone_number, Slice rules) { if (rules.empty() || phone_number.empty()) { return true; } bool found = false; for (auto prefix : full_split(rules, ',')) { if (prefix.empty()) { found = true; } else if (prefix[0] == '+' && begins_with(phone_number, prefix.substr(1))) { found = true; } else if (prefix[0] == '-' && begins_with(phone_number, prefix.substr(1))) { return false; } else { LOG(ERROR) << "Invalid prefix rule " << prefix; } } return found; } void on_simple_config(Result r_simple_config_result, bool dummy) { simple_config_query_.reset(); dc_options_i_ = 0; SimpleConfigResult cfg; if (r_simple_config_result.is_error()) { cfg.r_http_date = r_simple_config_result.error().clone(); cfg.r_config = r_simple_config_result.move_as_error(); } else { cfg = r_simple_config_result.move_as_ok(); } if (cfg.r_http_date.is_ok() && (date_option_i_ == 0 || cfg.r_config.is_error())) { G()->update_dns_time_difference(cfg.r_http_date.ok() - Time::now()); } else if (cfg.r_config.is_ok()) { G()->update_dns_time_difference(cfg.r_config.ok()->date_ - Time::now()); } date_option_i_ = (date_option_i_ + 1) % 2; do_on_simple_config(std::move(cfg.r_config)); update_dc_options(); loop(); } void do_on_simple_config(Result r_simple_config) { if (r_simple_config.is_ok()) { auto config = r_simple_config.move_as_ok(); VLOG(config_recoverer) << "Receive raw " << to_string(config); if (config->expires_ >= G()->unix_time()) { string phone_number = G()->shared_config().get_option_string("my_phone_number"); simple_config_.dc_options.clear(); for (auto &rule : config->rules_) { if (check_phone_number_rules(phone_number, rule->phone_prefix_rules_) && DcId::is_valid(rule->dc_id_)) { DcId dc_id = DcId::internal(rule->dc_id_); for (auto &ip_port : rule->ips_) { DcOption option(dc_id, *ip_port); if (option.is_valid()) { simple_config_.dc_options.push_back(std::move(option)); } } } } VLOG(config_recoverer) << "Got SimpleConfig " << simple_config_; } else { VLOG(config_recoverer) << "Config has expired at " << config->expires_; } simple_config_expires_at_ = get_config_expire_time(); simple_config_at_ = Time::now_cached(); for (size_t i = 1; i < simple_config_.dc_options.size(); i++) { std::swap(simple_config_.dc_options[i], simple_config_.dc_options[Random::fast(0, static_cast(i))]); } } else { VLOG(config_recoverer) << "Get SimpleConfig error " << r_simple_config.error(); simple_config_ = DcOptions(); simple_config_expires_at_ = get_failed_config_expire_time(); } } void on_full_config(Result> r_full_config, bool dummy) { full_config_query_.reset(); if (r_full_config.is_ok()) { full_config_ = r_full_config.move_as_ok(); VLOG(config_recoverer) << "Receive " << to_string(full_config_); full_config_expires_at_ = get_config_expire_time(); send_closure(G()->connection_creator(), &ConnectionCreator::on_dc_options, DcOptions(full_config_->dc_options_)); } else { VLOG(config_recoverer) << "Failed to get config: " << r_full_config.error(); full_config_ = nullptr; full_config_expires_at_ = get_failed_config_expire_time(); } loop(); } static bool expect_blocking() { return G()->shared_config().get_option_boolean("expect_blocking", true); } double get_config_expire_time() const { auto offline_delay = is_online_ ? 0 : 5 * 60; auto expire_time = expect_blocking() ? Random::fast(2 * 60, 3 * 60) : Random::fast(20 * 60, 30 * 60); return Time::now() + offline_delay + expire_time; } double get_failed_config_expire_time() const { auto offline_delay = is_online_ ? 0 : 5 * 60; auto expire_time = expect_blocking() ? Random::fast(5, 7) : Random::fast(15, 30); return Time::now() + offline_delay + expire_time; } bool is_connecting_{false}; double connecting_since_{0}; bool is_online_{false}; bool has_network_{false}; double has_network_since_{0}; uint32 network_generation_{0}; DcOptions simple_config_; double simple_config_expires_at_{0}; double simple_config_at_{0}; ActorOwn<> simple_config_query_; DcOptions dc_options_update_; DcOptions dc_options_; // dc_options_update_ + simple_config_ double dc_options_at_{0}; size_t dc_options_i_; size_t date_option_i_{0}; tl_object_ptr full_config_; double full_config_expires_at_{0}; ActorOwn<> full_config_query_; uint32 ref_cnt_{1}; bool close_flag_{false}; uint32 simple_config_turn_{0}; ActorShared<> parent_; void hangup_shared() final { ref_cnt_--; try_stop(); } void hangup() final { ref_cnt_--; close_flag_ = true; full_config_query_.reset(); simple_config_query_.reset(); try_stop(); } void try_stop() { if (ref_cnt_ == 0) { stop(); } } double max_connecting_delay() const { return expect_blocking() ? 5 : 20; } void loop() final { if (close_flag_) { return; } if (is_connecting_) { VLOG(config_recoverer) << "Failed to connect for " << Time::now() - connecting_since_; } else { VLOG(config_recoverer) << "Successfully connected in " << Time::now() - connecting_since_; } Timestamp wakeup_timestamp; auto check_timeout = [&](Timestamp timestamp) { if (timestamp.at() < Time::now_cached()) { return true; } wakeup_timestamp.relax(timestamp); return false; }; bool has_connecting_problem = is_connecting_ && check_timeout(Timestamp::at(connecting_since_ + max_connecting_delay())); bool is_valid_simple_config = !check_timeout(Timestamp::at(simple_config_expires_at_)); if (!is_valid_simple_config && !simple_config_.dc_options.empty()) { simple_config_ = DcOptions(); update_dc_options(); } bool need_simple_config = has_connecting_problem && !is_valid_simple_config && simple_config_query_.empty(); bool has_dc_options = !dc_options_.dc_options.empty(); bool is_valid_full_config = !check_timeout(Timestamp::at(full_config_expires_at_)); bool need_full_config = has_connecting_problem && has_dc_options && !is_valid_full_config && full_config_query_.empty() && check_timeout(Timestamp::at(dc_options_at_ + (expect_blocking() ? 5 : 10))); if (need_simple_config) { ref_cnt_++; VLOG(config_recoverer) << "Ask simple config with turn " << simple_config_turn_; auto promise = PromiseCreator::lambda([actor_id = actor_shared(this)](Result r_simple_config) { send_closure(actor_id, &ConfigRecoverer::on_simple_config, std::move(r_simple_config), false); }); auto get_simple_config = [&] { switch (simple_config_turn_ % 10) { case 6: return get_simple_config_azure; case 2: return get_simple_config_firebase_remote_config; case 4: return get_simple_config_firebase_realtime; case 9: return get_simple_config_firebase_firestore; case 0: case 3: case 8: return get_simple_config_google_dns; case 1: case 5: case 7: default: return get_simple_config_mozilla_dns; } }(); simple_config_query_ = get_simple_config(std::move(promise), &G()->shared_config(), G()->is_test_dc(), G()->get_gc_scheduler_id()); simple_config_turn_++; } if (need_full_config) { ref_cnt_++; VLOG(config_recoverer) << "Ask full config with dc_options_i_ = " << dc_options_i_; full_config_query_ = get_full_config( dc_options_.dc_options[dc_options_i_], PromiseCreator::lambda( [actor_id = actor_id(this)](Result> r_full_config) { send_closure(actor_id, &ConfigRecoverer::on_full_config, std::move(r_full_config), false); }), actor_shared(this)); dc_options_i_ = (dc_options_i_ + 1) % dc_options_.dc_options.size(); } if (wakeup_timestamp) { VLOG(config_recoverer) << "Wakeup in " << format::as_time(wakeup_timestamp.in()); set_timeout_at(wakeup_timestamp.at()); } else { VLOG(config_recoverer) << "Wakeup never"; } } void start_up() final { class StateCallback final : public StateManager::Callback { public: explicit StateCallback(ActorId parent) : parent_(std::move(parent)) { } bool on_state(ConnectionState state) final { send_closure(parent_, &ConfigRecoverer::on_connecting, state == ConnectionState::Connecting); return parent_.is_alive(); } bool on_network(NetType network_type, uint32 network_generation) final { send_closure(parent_, &ConfigRecoverer::on_network, network_type != NetType::None, network_generation); return parent_.is_alive(); } bool on_online(bool online_flag) final { send_closure(parent_, &ConfigRecoverer::on_online, online_flag); return parent_.is_alive(); } private: ActorId parent_; }; send_closure(G()->state_manager(), &StateManager::add_callback, make_unique(actor_id(this))); } void update_dc_options() { auto new_dc_options = simple_config_.dc_options; new_dc_options.insert(new_dc_options.begin(), dc_options_update_.dc_options.begin(), dc_options_update_.dc_options.end()); if (new_dc_options != dc_options_.dc_options) { dc_options_.dc_options = std::move(new_dc_options); dc_options_i_ = 0; dc_options_at_ = Time::now(); } } }; ConfigManager::ConfigManager(ActorShared<> parent) : parent_(std::move(parent)) { lazy_request_flood_control_.add_limit(20, 1); } void ConfigManager::start_up() { config_recoverer_ = create_actor("Recoverer", create_reference()); send_closure(config_recoverer_, &ConfigRecoverer::on_dc_options_update, load_dc_options_update()); auto expire_time = load_config_expire_time(); if (expire_time.is_in_past() || true) { request_config(); } else { expire_time_ = expire_time; set_timeout_in(expire_time_.in()); } } ActorShared<> ConfigManager::create_reference() { ref_cnt_++; return actor_shared(this, REFCNT_TOKEN); } void ConfigManager::hangup_shared() { LOG_CHECK(get_link_token() == REFCNT_TOKEN) << "Expected REFCNT_TOKEN, got " << get_link_token(); ref_cnt_--; try_stop(); } void ConfigManager::hangup() { ref_cnt_--; config_recoverer_.reset(); try_stop(); } void ConfigManager::loop() { if (expire_time_ && expire_time_.is_in_past()) { request_config(); expire_time_ = {}; } } void ConfigManager::try_stop() { if (ref_cnt_ == 0) { stop(); } } void ConfigManager::request_config() { if (G()->close_flag()) { return; } if (config_sent_cnt_ != 0) { return; } lazy_request_flood_control_.add_event(static_cast(Timestamp::now().at())); request_config_from_dc_impl(DcId::main()); } void ConfigManager::lazy_request_config() { if (G()->close_flag()) { return; } if (config_sent_cnt_ != 0) { return; } expire_time_.relax(Timestamp::at(lazy_request_flood_control_.get_wakeup_at())); set_timeout_at(expire_time_.at()); } void ConfigManager::try_request_app_config() { if (get_app_config_queries_.size() + reget_app_config_queries_.size() != 1) { return; } auto query = G()->net_query_creator().create_unauth(telegram_api::help_getAppConfig()); query->total_timeout_limit_ = 60 * 60 * 24; G()->net_query_dispatcher().dispatch_with_callback(std::move(query), actor_shared(this, 1)); } void ConfigManager::get_app_config(Promise> &&promise) { TRY_STATUS_PROMISE(promise, G()->close_status()); auto auth_manager = G()->td().get_actor_unsafe()->auth_manager_.get(); if (auth_manager != nullptr && auth_manager->is_bot()) { return promise.set_value(nullptr); } get_app_config_queries_.push_back(std::move(promise)); try_request_app_config(); } void ConfigManager::reget_app_config(Promise &&promise) { if (G()->close_flag()) { return promise.set_error(Status::Error(500, "Request aborted")); } auto auth_manager = G()->td().get_actor_unsafe()->auth_manager_.get(); if (auth_manager != nullptr && auth_manager->is_bot()) { return promise.set_value(Unit()); } reget_app_config_queries_.push_back(std::move(promise)); try_request_app_config(); } void ConfigManager::get_content_settings(Promise &&promise) { TRY_STATUS_PROMISE(promise, G()->close_status()); auto auth_manager = G()->td().get_actor_unsafe()->auth_manager_.get(); if (auth_manager == nullptr || !auth_manager->is_authorized() || auth_manager->is_bot()) { return promise.set_value(Unit()); } get_content_settings_queries_.push_back(std::move(promise)); if (get_content_settings_queries_.size() == 1) { G()->net_query_dispatcher().dispatch_with_callback( G()->net_query_creator().create(telegram_api::account_getContentSettings()), actor_shared(this, 2)); } } void ConfigManager::set_content_settings(bool ignore_sensitive_content_restrictions, Promise &&promise) { TRY_STATUS_PROMISE(promise, G()->close_status()); last_set_content_settings_ = ignore_sensitive_content_restrictions; auto &queries = set_content_settings_queries_[ignore_sensitive_content_restrictions]; queries.push_back(std::move(promise)); if (!is_set_content_settings_request_sent_) { is_set_content_settings_request_sent_ = true; int32 flags = 0; if (ignore_sensitive_content_restrictions) { flags |= telegram_api::account_setContentSettings::SENSITIVE_ENABLED_MASK; } G()->net_query_dispatcher().dispatch_with_callback( G()->net_query_creator().create(telegram_api::account_setContentSettings(flags, false /*ignored*/)), actor_shared(this, 3 + static_cast(ignore_sensitive_content_restrictions))); } } void ConfigManager::get_global_privacy_settings(Promise &&promise) { TRY_STATUS_PROMISE(promise, G()->close_status()); auto auth_manager = G()->td().get_actor_unsafe()->auth_manager_.get(); if (auth_manager == nullptr || !auth_manager->is_authorized() || auth_manager->is_bot()) { return promise.set_value(Unit()); } get_global_privacy_settings_queries_.push_back(std::move(promise)); if (get_global_privacy_settings_queries_.size() == 1) { G()->net_query_dispatcher().dispatch_with_callback( G()->net_query_creator().create(telegram_api::account_getGlobalPrivacySettings()), actor_shared(this, 5)); } } void ConfigManager::set_archive_and_mute(bool archive_and_mute, Promise &&promise) { TRY_STATUS_PROMISE(promise, G()->close_status()); if (archive_and_mute) { remove_suggested_action(suggested_actions_, SuggestedAction{SuggestedAction::Type::EnableArchiveAndMuteNewChats}); } last_set_archive_and_mute_ = archive_and_mute; auto &queries = set_archive_and_mute_queries_[archive_and_mute]; queries.push_back(std::move(promise)); if (!is_set_archive_and_mute_request_sent_) { is_set_archive_and_mute_request_sent_ = true; int32 flags = telegram_api::globalPrivacySettings::ARCHIVE_AND_MUTE_NEW_NONCONTACT_PEERS_MASK; auto settings = make_tl_object(flags, archive_and_mute); G()->net_query_dispatcher().dispatch_with_callback( G()->net_query_creator().create(telegram_api::account_setGlobalPrivacySettings(std::move(settings))), actor_shared(this, 6 + static_cast(archive_and_mute))); } } void ConfigManager::on_dc_options_update(DcOptions dc_options) { save_dc_options_update(dc_options); if (!dc_options.dc_options.empty()) { expire_time_ = Timestamp::now(); save_config_expire(expire_time_); set_timeout_in(expire_time_.in()); } send_closure(config_recoverer_, &ConfigRecoverer::on_dc_options_update, std::move(dc_options)); } void ConfigManager::request_config_from_dc_impl(DcId dc_id) { config_sent_cnt_++; auto query = G()->net_query_creator().create_unauth(telegram_api::help_getConfig(), dc_id); query->total_timeout_limit_ = 60 * 60 * 24; G()->net_query_dispatcher().dispatch_with_callback(std::move(query), actor_shared(this, 8)); } void ConfigManager::do_set_ignore_sensitive_content_restrictions(bool ignore_sensitive_content_restrictions) { G()->shared_config().set_option_boolean("ignore_sensitive_content_restrictions", ignore_sensitive_content_restrictions); bool have_ignored_restriction_reasons = G()->shared_config().have_option("ignored_restriction_reasons"); if (have_ignored_restriction_reasons != ignore_sensitive_content_restrictions) { reget_app_config(Auto()); } } void ConfigManager::do_set_archive_and_mute(bool archive_and_mute) { if (archive_and_mute) { remove_suggested_action(suggested_actions_, SuggestedAction{SuggestedAction::Type::EnableArchiveAndMuteNewChats}); } G()->shared_config().set_option_boolean("archive_and_mute_new_chats_from_unknown_users", archive_and_mute); } void ConfigManager::hide_suggested_action(SuggestedAction suggested_action) { remove_suggested_action(suggested_actions_, suggested_action); } void ConfigManager::dismiss_suggested_action(SuggestedAction suggested_action, Promise &&promise) { auto action_str = suggested_action.get_suggested_action_str(); if (action_str.empty()) { return promise.set_value(Unit()); } if (!td::contains(suggested_actions_, suggested_action)) { return promise.set_value(Unit()); } dismiss_suggested_action_request_count_++; auto type = static_cast(suggested_action.type_); auto &queries = dismiss_suggested_action_queries_[type]; queries.push_back(std::move(promise)); if (queries.size() == 1) { G()->net_query_dispatcher().dispatch_with_callback( G()->net_query_creator().create( telegram_api::help_dismissSuggestion(make_tl_object(), action_str)), actor_shared(this, 100 + type)); } } void ConfigManager::on_result(NetQueryPtr res) { auto token = get_link_token(); if (token >= 100 && token <= 200) { auto type = static_cast(token - 100); SuggestedAction suggested_action{static_cast(type)}; auto promises = std::move(dismiss_suggested_action_queries_[type]); dismiss_suggested_action_queries_.erase(type); CHECK(!promises.empty()); CHECK(dismiss_suggested_action_request_count_ >= promises.size()); dismiss_suggested_action_request_count_ -= promises.size(); auto result_ptr = fetch_result(std::move(res)); if (result_ptr.is_error()) { for (auto &promise : promises) { promise.set_error(result_ptr.error().clone()); } return; } remove_suggested_action(suggested_actions_, suggested_action); reget_app_config(Auto()); for (auto &promise : promises) { promise.set_value(Unit()); } return; } if (token == 6 || token == 7) { is_set_archive_and_mute_request_sent_ = false; bool archive_and_mute = (token == 7); auto promises = std::move(set_archive_and_mute_queries_[archive_and_mute]); set_archive_and_mute_queries_[archive_and_mute].clear(); CHECK(!promises.empty()); auto result_ptr = fetch_result(std::move(res)); if (result_ptr.is_error()) { for (auto &promise : promises) { promise.set_error(result_ptr.error().clone()); } } else { if (last_set_archive_and_mute_ == archive_and_mute) { do_set_archive_and_mute(archive_and_mute); } for (auto &promise : promises) { promise.set_value(Unit()); } } if (!set_archive_and_mute_queries_[!archive_and_mute].empty()) { if (archive_and_mute == last_set_archive_and_mute_) { promises = std::move(set_archive_and_mute_queries_[!archive_and_mute]); set_archive_and_mute_queries_[!archive_and_mute].clear(); for (auto &promise : promises) { promise.set_value(Unit()); } } else { set_archive_and_mute(!archive_and_mute, Auto()); } } return; } if (token == 5) { auto promises = std::move(get_global_privacy_settings_queries_); get_global_privacy_settings_queries_.clear(); CHECK(!promises.empty()); auto result_ptr = fetch_result(std::move(res)); if (result_ptr.is_error()) { for (auto &promise : promises) { promise.set_error(result_ptr.error().clone()); } return; } auto result = result_ptr.move_as_ok(); if ((result->flags_ & telegram_api::globalPrivacySettings::ARCHIVE_AND_MUTE_NEW_NONCONTACT_PEERS_MASK) != 0) { do_set_archive_and_mute(result->archive_and_mute_new_noncontact_peers_); } else { LOG(ERROR) << "Receive wrong response: " << to_string(result); } for (auto &promise : promises) { promise.set_value(Unit()); } return; } if (token == 3 || token == 4) { is_set_content_settings_request_sent_ = false; bool ignore_sensitive_content_restrictions = (token == 4); auto promises = std::move(set_content_settings_queries_[ignore_sensitive_content_restrictions]); set_content_settings_queries_[ignore_sensitive_content_restrictions].clear(); CHECK(!promises.empty()); auto result_ptr = fetch_result(std::move(res)); if (result_ptr.is_error()) { for (auto &promise : promises) { promise.set_error(result_ptr.error().clone()); } } else { if (G()->shared_config().get_option_boolean("can_ignore_sensitive_content_restrictions") && last_set_content_settings_ == ignore_sensitive_content_restrictions) { do_set_ignore_sensitive_content_restrictions(ignore_sensitive_content_restrictions); } for (auto &promise : promises) { promise.set_value(Unit()); } } if (!set_content_settings_queries_[!ignore_sensitive_content_restrictions].empty()) { if (ignore_sensitive_content_restrictions == last_set_content_settings_) { promises = std::move(set_content_settings_queries_[!ignore_sensitive_content_restrictions]); set_content_settings_queries_[!ignore_sensitive_content_restrictions].clear(); for (auto &promise : promises) { promise.set_value(Unit()); } } else { set_content_settings(!ignore_sensitive_content_restrictions, Auto()); } } return; } if (token == 2) { auto promises = std::move(get_content_settings_queries_); get_content_settings_queries_.clear(); CHECK(!promises.empty()); auto result_ptr = fetch_result(std::move(res)); if (result_ptr.is_error()) { for (auto &promise : promises) { promise.set_error(result_ptr.error().clone()); } return; } auto result = result_ptr.move_as_ok(); do_set_ignore_sensitive_content_restrictions(result->sensitive_enabled_); G()->shared_config().set_option_boolean("can_ignore_sensitive_content_restrictions", result->sensitive_can_change_); for (auto &promise : promises) { promise.set_value(Unit()); } return; } if (token == 1) { auto promises = std::move(get_app_config_queries_); get_app_config_queries_.clear(); auto unit_promises = std::move(reget_app_config_queries_); reget_app_config_queries_.clear(); CHECK(!promises.empty() || !unit_promises.empty()); auto result_ptr = fetch_result(std::move(res)); if (result_ptr.is_error()) { for (auto &promise : promises) { promise.set_error(result_ptr.error().clone()); } for (auto &promise : unit_promises) { promise.set_error(result_ptr.error().clone()); } return; } auto result = result_ptr.move_as_ok(); process_app_config(result); for (auto &promise : promises) { promise.set_value(convert_json_value_object(result)); } for (auto &promise : unit_promises) { promise.set_value(Unit()); } return; } CHECK(token == 8); CHECK(config_sent_cnt_ > 0); config_sent_cnt_--; auto r_config = fetch_result(std::move(res)); if (r_config.is_error()) { if (!G()->close_flag()) { LOG(WARNING) << "Failed to get config: " << r_config.error(); expire_time_ = Timestamp::in(60.0); // try again in a minute set_timeout_in(expire_time_.in()); } } else { on_dc_options_update(DcOptions()); process_config(r_config.move_as_ok()); } } void ConfigManager::save_dc_options_update(const DcOptions &dc_options) { if (dc_options.dc_options.empty()) { G()->td_db()->get_binlog_pmc()->erase("dc_options_update"); return; } G()->td_db()->get_binlog_pmc()->set("dc_options_update", log_event_store(dc_options).as_slice().str()); } DcOptions ConfigManager::load_dc_options_update() { auto log_event_dc_options = G()->td_db()->get_binlog_pmc()->get("dc_options_update"); DcOptions dc_options; if (!log_event_dc_options.empty()) { log_event_parse(dc_options, log_event_dc_options).ensure(); } return dc_options; } Timestamp ConfigManager::load_config_expire_time() { auto expires_in = to_integer(G()->td_db()->get_binlog_pmc()->get("config_expire")) - Clocks::system(); if (expires_in < 0 || expires_in > 60 * 60 /* 1 hour */) { return Timestamp::now(); } else { return Timestamp::in(expires_in); } } void ConfigManager::save_config_expire(Timestamp timestamp) { G()->td_db()->get_binlog_pmc()->set("config_expire", to_string(static_cast(Clocks::system() + timestamp.in()))); } void ConfigManager::process_config(tl_object_ptr config) { bool is_from_main_dc = G()->net_query_dispatcher().get_main_dc_id().get_value() == config->this_dc_; LOG(INFO) << to_string(config); auto reload_in = clamp(config->expires_ - config->date_, 60, 86400); save_config_expire(Timestamp::in(reload_in)); reload_in -= Random::fast(0, reload_in / 5); if (!is_from_main_dc) { reload_in = 0; } expire_time_ = Timestamp::in(reload_in); set_timeout_at(expire_time_.at()); LOG_IF(ERROR, config->test_mode_ != G()->is_test_dc()) << "Wrong parameter is_test"; ConfigShared &shared_config = G()->shared_config(); // Do not save dc_options in config, because it will be interpreted and saved by ConnectionCreator. send_closure(G()->connection_creator(), &ConnectionCreator::on_dc_options, DcOptions(config->dc_options_)); shared_config.set_option_integer("recent_stickers_limit", config->stickers_recent_limit_); shared_config.set_option_integer("favorite_stickers_limit", config->stickers_faved_limit_); shared_config.set_option_integer("saved_animations_limit", config->saved_gifs_limit_); shared_config.set_option_integer("channels_read_media_period", config->channels_read_media_period_); shared_config.set_option_boolean("test_mode", config->test_mode_); shared_config.set_option_integer("forwarded_message_count_max", config->forwarded_count_max_); shared_config.set_option_integer("basic_group_size_max", config->chat_size_max_); shared_config.set_option_integer("supergroup_size_max", config->megagroup_size_max_); shared_config.set_option_integer("pinned_chat_count_max", config->pinned_dialogs_count_max_); shared_config.set_option_integer("pinned_archived_chat_count_max", config->pinned_infolder_count_max_); if (is_from_main_dc || !shared_config.have_option("expect_blocking")) { shared_config.set_option_boolean("expect_blocking", config->blocked_mode_); } if (is_from_main_dc || !shared_config.have_option("dc_txt_domain_name")) { shared_config.set_option_string("dc_txt_domain_name", config->dc_txt_domain_name_); } if (is_from_main_dc || !shared_config.have_option("t_me_url")) { auto url = config->me_url_prefix_; if (!url.empty()) { if (url.back() != '/') { url.push_back('/'); } shared_config.set_option_string("t_me_url", url); } } if (is_from_main_dc) { shared_config.set_option_integer("webfile_dc_id", config->webfile_dc_id_); if ((config->flags_ & telegram_api::config::TMP_SESSIONS_MASK) != 0) { shared_config.set_option_integer("session_count", config->tmp_sessions_); } else { shared_config.set_option_empty("session_count"); } if ((config->flags_ & telegram_api::config::SUGGESTED_LANG_CODE_MASK) != 0) { shared_config.set_option_string("suggested_language_pack_id", config->suggested_lang_code_); shared_config.set_option_integer("language_pack_version", config->lang_pack_version_); shared_config.set_option_integer("base_language_pack_version", config->base_lang_pack_version_); } else { shared_config.set_option_empty("suggested_language_pack_id"); shared_config.set_option_empty("language_pack_version"); shared_config.set_option_empty("base_language_pack_version"); } } if (is_from_main_dc) { shared_config.set_option_integer("edit_time_limit", config->edit_time_limit_); shared_config.set_option_boolean("revoke_pm_inbox", config->revoke_pm_inbox_); shared_config.set_option_integer("revoke_time_limit", config->revoke_time_limit_); shared_config.set_option_integer("revoke_pm_time_limit", config->revoke_pm_time_limit_); shared_config.set_option_integer("rating_e_decay", config->rating_e_decay_); shared_config.set_option_boolean("calls_enabled", config->phonecalls_enabled_); } shared_config.set_option_integer("call_ring_timeout_ms", config->call_ring_timeout_ms_); shared_config.set_option_integer("call_connect_timeout_ms", config->call_connect_timeout_ms_); shared_config.set_option_integer("call_packet_timeout_ms", config->call_packet_timeout_ms_); shared_config.set_option_integer("call_receive_timeout_ms", config->call_receive_timeout_ms_); shared_config.set_option_integer("message_text_length_max", config->message_length_max_); shared_config.set_option_integer("message_caption_length_max", config->caption_length_max_); if (config->gif_search_username_.empty()) { shared_config.set_option_empty("animation_search_bot_username"); } else { shared_config.set_option_string("animation_search_bot_username", config->gif_search_username_); } if (config->venue_search_username_.empty()) { shared_config.set_option_empty("venue_search_bot_username"); } else { shared_config.set_option_string("venue_search_bot_username", config->venue_search_username_); } if (config->img_search_username_.empty()) { shared_config.set_option_empty("photo_search_bot_username"); } else { shared_config.set_option_string("photo_search_bot_username", config->img_search_username_); } auto fix_timeout_ms = [](int32 timeout_ms) { return clamp(timeout_ms, 1000, 86400 * 1000); }; shared_config.set_option_integer("online_update_period_ms", fix_timeout_ms(config->online_update_period_ms_)); shared_config.set_option_integer("online_cloud_timeout_ms", fix_timeout_ms(config->online_cloud_timeout_ms_)); shared_config.set_option_integer("notification_cloud_delay_ms", fix_timeout_ms(config->notify_cloud_delay_ms_)); shared_config.set_option_integer("notification_default_delay_ms", fix_timeout_ms(config->notify_default_delay_ms_)); // delete outdated options shared_config.set_option_empty("suggested_language_code"); shared_config.set_option_empty("chat_big_size"); shared_config.set_option_empty("group_size_max"); shared_config.set_option_empty("saved_gifs_limit"); shared_config.set_option_empty("sessions_count"); shared_config.set_option_empty("forwarded_messages_count_max"); shared_config.set_option_empty("broadcast_size_max"); shared_config.set_option_empty("group_chat_size_max"); shared_config.set_option_empty("chat_size_max"); shared_config.set_option_empty("megagroup_size_max"); shared_config.set_option_empty("offline_blur_timeout_ms"); shared_config.set_option_empty("offline_idle_timeout_ms"); shared_config.set_option_empty("notify_cloud_delay_ms"); shared_config.set_option_empty("notify_default_delay_ms"); shared_config.set_option_empty("large_chat_size"); // TODO implement online status updates // shared_config.set_option_integer("offline_blur_timeout_ms", config->offline_blur_timeout_ms_); // shared_config.set_option_integer("offline_idle_timeout_ms", config->offline_idle_timeout_ms_); // shared_config.set_option_integer("push_chat_period_ms", config->push_chat_period_ms_); // shared_config.set_option_integer("push_chat_limit", config->push_chat_limit_); if (is_from_main_dc) { reget_app_config(Auto()); if (!shared_config.have_option("can_ignore_sensitive_content_restrictions") || !shared_config.have_option("ignore_sensitive_content_restrictions")) { get_content_settings(Auto()); } if (!shared_config.have_option("archive_and_mute_new_chats_from_unknown_users")) { get_global_privacy_settings(Auto()); } } } void ConfigManager::process_app_config(tl_object_ptr &config) { CHECK(config != nullptr); LOG(INFO) << "Receive app config " << to_string(config); const bool archive_and_mute = G()->shared_config().get_option_boolean("archive_and_mute_new_chats_from_unknown_users"); string autologin_token; vector autologin_domains; vector url_auth_domains; vector> new_values; string ignored_restriction_reasons; vector dice_emojis; std::unordered_map dice_emoji_index; std::unordered_map dice_emoji_success_value; vector emoji_sounds; string animation_search_provider; string animation_search_emojis; vector suggested_actions; bool can_archive_and_mute_new_chats_from_unknown_users = false; int64 chat_read_mark_expire_period = 0; int64 chat_read_mark_size_threshold = 0; double animated_emoji_zoom = 0.0; if (config->get_id() == telegram_api::jsonObject::ID) { for (auto &key_value : static_cast(config.get())->value_) { Slice key = key_value->key_; telegram_api::JSONValue *value = key_value->value_.get(); if (key == "test" || key == "wallet_enabled" || key == "wallet_blockchain_name" || key == "wallet_config" || key == "stickers_emoji_cache_time") { continue; } if (key == "ignore_restriction_reasons") { if (value->get_id() == telegram_api::jsonArray::ID) { auto reasons = std::move(static_cast(value)->value_); for (auto &reason : reasons) { auto reason_name = get_json_value_string(std::move(reason), "ignore_restriction_reasons"); if (!reason_name.empty() && reason_name.find(',') == string::npos) { if (!ignored_restriction_reasons.empty()) { ignored_restriction_reasons += ','; } ignored_restriction_reasons += reason_name; } else { LOG(ERROR) << "Receive unexpected restriction reason " << reason_name; } } } else { LOG(ERROR) << "Receive unexpected ignore_restriction_reasons " << to_string(*value); } continue; } if (key == "emojies_animated_zoom") { animated_emoji_zoom = get_json_value_double(std::move(key_value->value_), "emojies_animated_zoom"); continue; } if (key == "emojies_send_dice") { if (value->get_id() == telegram_api::jsonArray::ID) { auto emojis = std::move(static_cast(value)->value_); for (auto &emoji : emojis) { auto emoji_text = get_json_value_string(std::move(emoji), "emojies_send_dice"); if (!emoji_text.empty()) { dice_emoji_index[emoji_text] = dice_emojis.size(); dice_emojis.push_back(emoji_text); } else { LOG(ERROR) << "Receive empty dice emoji"; } } } else { LOG(ERROR) << "Receive unexpected emojies_send_dice " << to_string(*value); } continue; } if (key == "emojies_send_dice_success") { if (value->get_id() == telegram_api::jsonObject::ID) { auto success_values = std::move(static_cast(value)->value_); for (auto &success_value : success_values) { CHECK(success_value != nullptr); if (success_value->value_->get_id() == telegram_api::jsonObject::ID) { int32 dice_value = -1; int32 frame_start = -1; for (auto &dice_key_value : static_cast(success_value->value_.get())->value_) { if (dice_key_value->value_->get_id() != telegram_api::jsonNumber::ID) { continue; } auto current_value = get_json_value_int(std::move(dice_key_value->value_), Slice()); if (dice_key_value->key_ == "value") { dice_value = current_value; } if (dice_key_value->key_ == "frame_start") { frame_start = current_value; } } if (dice_value < 0 || frame_start < 0) { LOG(ERROR) << "Receive unexpected dice success value " << to_string(success_value); } else { dice_emoji_success_value[success_value->key_] = PSTRING() << dice_value << ':' << frame_start; } } else { LOG(ERROR) << "Receive unexpected dice success value " << to_string(success_value); } } } else { LOG(ERROR) << "Receive unexpected emojies_send_dice_success " << to_string(*value); } continue; } if (key == "emojies_sounds") { if (value->get_id() == telegram_api::jsonObject::ID) { auto sounds = std::move(static_cast(value)->value_); for (auto &sound : sounds) { CHECK(sound != nullptr); if (sound->value_->get_id() == telegram_api::jsonObject::ID) { string id; string access_hash; string file_reference_base64; for (auto &sound_key_value : static_cast(sound->value_.get())->value_) { if (sound_key_value->value_->get_id() != telegram_api::jsonString::ID) { continue; } auto current_value = get_json_value_string(std::move(sound_key_value->value_), Slice()); if (sound_key_value->key_ == "id") { id = std::move(current_value); } if (sound_key_value->key_ == "access_hash") { access_hash = std::move(current_value); } if (sound_key_value->key_ == "file_reference_base64") { file_reference_base64 = std::move(current_value); } } if (to_integer_safe(id).is_error() || to_integer_safe(access_hash).is_error() || !is_base64url(file_reference_base64) || !is_emoji(sound->key_)) { LOG(ERROR) << "Receive unexpected sound value " << to_string(sound); } else { emoji_sounds.push_back(sound->key_); emoji_sounds.push_back(PSTRING() << id << ':' << access_hash << ':' << file_reference_base64); } } else { LOG(ERROR) << "Receive unexpected emoji sound " << to_string(sound); } } } else { LOG(ERROR) << "Receive unexpected emojies_sounds " << to_string(*value); } continue; } if (key == "gif_search_branding") { animation_search_provider = get_json_value_string(std::move(key_value->value_), "gif_search_branding"); continue; } if (key == "gif_search_emojies") { if (value->get_id() == telegram_api::jsonArray::ID) { auto emojis = std::move(static_cast(value)->value_); for (auto &emoji : emojis) { auto emoji_str = get_json_value_string(std::move(emoji), "gif_search_emojies"); if (!emoji_str.empty() && emoji_str.find(',') == string::npos) { if (!animation_search_emojis.empty()) { animation_search_emojis += ','; } animation_search_emojis += emoji_str; } else { LOG(ERROR) << "Receive unexpected animation search emoji " << emoji_str; } } } else { LOG(ERROR) << "Receive unexpected gif_search_emojies " << to_string(*value); } continue; } if (key == "pending_suggestions") { if (value->get_id() == telegram_api::jsonArray::ID) { auto actions = std::move(static_cast(value)->value_); for (auto &action : actions) { auto action_str = get_json_value_string(std::move(action), "pending_suggestions"); SuggestedAction suggested_action(action_str); if (!suggested_action.is_empty()) { if (archive_and_mute && suggested_action == SuggestedAction{SuggestedAction::Type::EnableArchiveAndMuteNewChats}) { LOG(INFO) << "Skip EnableArchiveAndMuteNewChats suggested action"; } else { suggested_actions.push_back(suggested_action); } } else { LOG(ERROR) << "Receive unsupported suggested action " << action_str; } } } else { LOG(ERROR) << "Receive unexpected pending_suggestions " << to_string(*value); } continue; } if (key == "autoarchive_setting_available") { can_archive_and_mute_new_chats_from_unknown_users = get_json_value_bool(std::move(key_value->value_), "autoarchive_setting_available"); continue; } if (key == "autologin_token") { autologin_token = get_json_value_string(std::move(key_value->value_), "autologin_token"); continue; } if (key == "autologin_domains") { if (value->get_id() == telegram_api::jsonArray::ID) { auto domains = std::move(static_cast(value)->value_); for (auto &domain : domains) { autologin_domains.push_back(get_json_value_string(std::move(domain), "autologin_domains")); } } else { LOG(ERROR) << "Receive unexpected autologin_domains " << to_string(*value); } continue; } if (key == "url_auth_domains") { if (value->get_id() == telegram_api::jsonArray::ID) { auto domains = std::move(static_cast(value)->value_); for (auto &domain : domains) { autologin_domains.push_back(get_json_value_string(std::move(domain), "url_auth_domains")); } } else { LOG(ERROR) << "Receive unexpected url_auth_domains " << to_string(*value); } continue; } if (key == "round_video_encoding") { if (value->get_id() == telegram_api::jsonObject::ID) { auto video_note_settings = std::move(static_cast(value)->value_); for (auto &video_note_setting : video_note_settings) { CHECK(video_note_setting != nullptr); if (video_note_setting->key_ != "diameter" && video_note_setting->key_ != "video_bitrate" && video_note_setting->key_ != "audio_bitrate" && video_note_setting->key_ != "max_size") { continue; } if (video_note_setting->value_->get_id() == telegram_api::jsonNumber::ID) { auto setting_value = get_json_value_int(std::move(video_note_setting->value_), Slice()); if (setting_value > 0) { if (video_note_setting->key_ == "diameter") { G()->shared_config().set_option_integer("suggested_video_note_length", setting_value); } if (video_note_setting->key_ == "video_bitrate") { G()->shared_config().set_option_integer("suggested_video_note_video_bitrate", setting_value); } if (video_note_setting->key_ == "audio_bitrate") { G()->shared_config().set_option_integer("suggested_video_note_audio_bitrate", setting_value); } if (video_note_setting->key_ == "max_size") { G()->shared_config().set_option_integer("video_note_size_max", setting_value); } } } else { LOG(ERROR) << "Receive unexpected video note setting " << to_string(video_note_setting); } } } else { LOG(ERROR) << "Receive unexpected round_video_encoding " << to_string(*value); } continue; } if (key == "chat_read_mark_expire_period") { chat_read_mark_expire_period = get_json_value_int(std::move(key_value->value_), "chat_read_mark_expire_period"); continue; } if (key == "chat_read_mark_size_threshold") { chat_read_mark_size_threshold = get_json_value_int(std::move(key_value->value_), "chat_read_mark_size_threshold"); continue; } new_values.push_back(std::move(key_value)); } } else { LOG(ERROR) << "Receive wrong app config " << to_string(config); } config = make_tl_object(std::move(new_values)); send_closure(G()->link_manager(), &LinkManager::update_autologin_domains, std::move(autologin_token), std::move(autologin_domains), std::move(url_auth_domains)); ConfigShared &shared_config = G()->shared_config(); if (ignored_restriction_reasons.empty()) { shared_config.set_option_empty("ignored_restriction_reasons"); if (shared_config.get_option_boolean("ignore_sensitive_content_restrictions", true)) { get_content_settings(Auto()); } } else { shared_config.set_option_string("ignored_restriction_reasons", ignored_restriction_reasons); if (!shared_config.get_option_boolean("can_ignore_sensitive_content_restrictions")) { get_content_settings(Auto()); } } if (!dice_emojis.empty()) { vector dice_success_values(dice_emojis.size()); for (auto &it : dice_emoji_success_value) { if (dice_emoji_index.find(it.first) == dice_emoji_index.end()) { LOG(ERROR) << "Can't find emoji " << it.first; continue; } dice_success_values[dice_emoji_index[it.first]] = it.second; } shared_config.set_option_string("dice_success_values", implode(dice_success_values, ',')); shared_config.set_option_string("dice_emojis", implode(dice_emojis, '\x01')); } shared_config.set_option_string("emoji_sounds", implode(emoji_sounds, ',')); if (animated_emoji_zoom <= 0 || animated_emoji_zoom > 2.0) { shared_config.set_option_empty("animated_emoji_zoom"); } else { shared_config.set_option_integer("animated_emoji_zoom", static_cast(animated_emoji_zoom * 1e9)); } if (animation_search_provider.empty()) { shared_config.set_option_empty("animation_search_provider"); } else { shared_config.set_option_string("animation_search_provider", animation_search_provider); } if (animation_search_emojis.empty()) { shared_config.set_option_empty("animation_search_emojis"); } else { shared_config.set_option_string("animation_search_emojis", animation_search_emojis); } if (!can_archive_and_mute_new_chats_from_unknown_users) { shared_config.set_option_empty("can_archive_and_mute_new_chats_from_unknown_users"); } else { shared_config.set_option_boolean("can_archive_and_mute_new_chats_from_unknown_users", can_archive_and_mute_new_chats_from_unknown_users); } if (chat_read_mark_expire_period <= 0) { shared_config.set_option_empty("chat_read_mark_expire_period"); } else { shared_config.set_option_integer("chat_read_mark_expire_period", chat_read_mark_expire_period); } if (chat_read_mark_size_threshold <= 0) { shared_config.set_option_empty("chat_read_mark_size_threshold"); } else { shared_config.set_option_integer("chat_read_mark_size_threshold", chat_read_mark_size_threshold); } shared_config.set_option_empty("default_ton_blockchain_config"); shared_config.set_option_empty("default_ton_blockchain_name"); // do not update suggested actions while changing content settings or dismissing an action if (!is_set_content_settings_request_sent_ && dismiss_suggested_action_request_count_ == 0) { update_suggested_actions(suggested_actions_, std::move(suggested_actions)); } } void ConfigManager::get_current_state(vector> &updates) const { if (!suggested_actions_.empty()) { updates.push_back(get_update_suggested_actions_object(suggested_actions_, {})); } } } // namespace td