1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/browser_switcher/browser_switcher_service.h"
#include <algorithm>
#include <optional>
#include <string>
#include <utility>
#include "base/functional/bind.h"
#include "base/metrics/histogram_macros.h"
#include "base/syslog_logging.h"
#include "base/task/single_thread_task_runner.h"
#include "chrome/browser/browser_switcher/alternative_browser_driver.h"
#include "chrome/browser/browser_switcher/browser_switcher_prefs.h"
#include "chrome/browser/browser_switcher/browser_switcher_sitelist.h"
#include "chrome/browser/browser_switcher/ieem_sitelist_parser.h"
#include "chrome/browser/profiles/profile.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/file_url_loader.h"
#include "content/public/browser/shared_cors_origin_access_list.h"
#include "content/public/browser/storage_partition.h"
#include "net/base/load_flags.h"
#include "net/traffic_annotation/network_traffic_annotation.h"
#include "services/network/public/cpp/resource_request.h"
namespace browser_switcher {
namespace {
// How long to wait after |BrowserSwitcherService| is created before initiating
// the sitelist fetch. Non-zero values are used for testing.
//
// TODO(nicolaso): get rid of this.
const base::TimeDelta kFetchSitelistDelay = base::TimeDelta();
// How long to wait after a fetch to re-fetch the sitelist to keep it fresh.
const base::TimeDelta kRefreshSitelistDelay = base::Minutes(30);
// How many times to re-try fetching the XML file for the sitelist.
const int kFetchNumRetries = 1;
constexpr net::NetworkTrafficAnnotationTag traffic_annotation =
net::DefineNetworkTrafficAnnotation("browser_switcher_ieem_sitelist", R"(
semantics {
sender: "Legacy Browser Support "
description:
"Legacy Browser Support may download Internet Explorer's "
"Enterprise Mode SiteList XML, to load the list of URLs to open in "
"an alternative browser. This is often on the organization's "
"intranet. For more information on Internet Explorer's Enterprise "
"Mode, see: "
"https://docs.microsoft.com/internet-explorer/ie11-deploy-guide"
"/what-is-enterprise-mode"
trigger:
"1 minute after browser startup, and then refreshes every 30 "
"minutes afterwards. Only happens if Legacy Browser Support is "
"enabled via enterprise policies."
data:
"Up to 3 (plus retries) HTTP or HTTPS GET requests to the URLs "
"configured in Internet Explorer's SiteList policy, and Chrome's "
"BrowserSwitcherExternalSitelistUrl and "
"BrowserSwitcherExternalGreylistUrl policies."
destination: OTHER
destination_other:
"URL configured in Internet Explorer's SiteList policy, and URLs "
"configured in Chrome's BrowserSwitcherExternalSitelistUrl and "
"BrowserSwitcherExternalGreylistUrl policies."
}
policy {
cookies_allowed: NO
setting: "This feature cannot be disabled by settings."
chrome_policy: {
BrowserSwitcherEnabled: {
BrowserSwitcherEnabled: false
}
}
})");
} // namespace
RulesetSource::RulesetSource(
std::string pref_name_,
GURL url_,
bool contains_inverted_rules_,
base::OnceCallback<void(ParsedXml xml)> parsed_callback_)
: pref_name(std::move(pref_name_)),
url(std::move(url_)),
contains_inverted_rules(contains_inverted_rules_),
parsed_callback(std::move(parsed_callback_)) {}
RulesetSource::RulesetSource(RulesetSource&&) = default;
RulesetSource::~RulesetSource() = default;
XmlDownloader::XmlDownloader(Profile* profile,
BrowserSwitcherService* service,
base::TimeDelta first_fetch_delay,
base::RepeatingCallback<void()> all_done_callback)
: service_(service), all_done_callback_(std::move(all_done_callback)) {
file_url_factory_.Bind(
content::CreateFileURLLoaderFactory(base::FilePath(), nullptr));
other_url_factory_ = profile->GetDefaultStoragePartition()
->GetURLLoaderFactoryForBrowserProcess();
sources_ = service_->GetRulesetSources();
for (auto& source : sources_) {
if (!source.url.is_valid())
DoneParsing(&source, ParsedXml({}, {}, std::nullopt));
}
// Fetch in 1 minute.
ScheduleRefresh(first_fetch_delay);
}
XmlDownloader::~XmlDownloader() = default;
bool XmlDownloader::HasValidSources() const {
return std::ranges::any_of(sources_, [](const RulesetSource& source) {
return source.url.is_valid();
});
}
base::Time XmlDownloader::last_refresh_time() const {
return last_refresh_time_;
}
base::Time XmlDownloader::next_refresh_time() const {
return next_refresh_time_;
}
void XmlDownloader::FetchXml() {
for (auto& source : sources_) {
if (!source.url.is_valid()) {
DoneParsing(&source, ParsedXml({}));
continue;
}
auto request = std::make_unique<network::ResourceRequest>();
request->url = source.url;
request->site_for_cookies = net::SiteForCookies::FromUrl(source.url);
request->load_flags = net::LOAD_BYPASS_CACHE | net::LOAD_DISABLE_CACHE;
request->credentials_mode = network::mojom::CredentialsMode::kInclude;
request->priority = net::IDLE;
source.url_loader = network::SimpleURLLoader::Create(std::move(request),
traffic_annotation);
source.url_loader->SetRetryOptions(
kFetchNumRetries,
network::SimpleURLLoader::RetryMode::RETRY_ON_NETWORK_CHANGE);
source.url_loader->DownloadToStringOfUnboundedSizeUntilCrashAndDie(
GetURLLoaderFactoryForURL(source.url),
base::BindOnce(&XmlDownloader::ParseXml, weak_ptr_factory_.GetWeakPtr(),
base::Unretained(&source)));
}
}
network::mojom::URLLoaderFactory* XmlDownloader::GetURLLoaderFactoryForURL(
const GURL& url) {
if (url.SchemeIsFile())
return file_url_factory_.get();
return other_url_factory_.get();
}
void XmlDownloader::ParseXml(RulesetSource* source,
std::unique_ptr<std::string> bytes) {
if (!bytes) {
DoneParsing(source, ParsedXml({}, {}, "could not fetch XML"));
return;
}
ParseIeemXml(
*bytes, service_->prefs().GetParsingMode(),
base::BindOnce(&XmlDownloader::DoneParsing,
weak_ptr_factory_.GetWeakPtr(), base::Unretained(source)));
}
void XmlDownloader::DoneParsing(RulesetSource* source, ParsedXml xml) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// Special processing for "greylist" XML.
if (source->contains_inverted_rules) {
// BrowserSwitcherExternalGreylistUrl is special: all the rules are part of
// the greylist, regardless of what <open-in> says in the XML.
//
// Merge all the rules into |greylist|, and clear |sitelist|.
xml.rules.greylist.insert(xml.rules.greylist.end(),
xml.rules.sitelist.begin(),
xml.rules.sitelist.end());
xml.rules.sitelist.clear();
// Greylists can't contain any negative rules either, so remove the leading
// "!".
for (auto& rule : xml.rules.greylist) {
if (base::StartsWith(rule, "!", base::CompareCase::SENSITIVE))
rule.erase(0, 1);
}
}
if (xml.error)
LOG(ERROR) << *xml.error;
std::move(source->parsed_callback).Run(std::move(xml));
// Run the "all done" callback if this was the last ruleset.
counter_++;
DCHECK(counter_ <= sources_.size());
if (counter_ == sources_.size()) {
all_done_callback_.Run();
if (HasValidSources())
last_refresh_time_ = base::Time::Now();
ScheduleRefresh(service_->refresh_delay());
}
}
void XmlDownloader::ScheduleRefresh(base::TimeDelta delay) {
// Avoid doing unnecessary work.
if (!HasValidSources())
return;
// Refresh in 30 minutes, so the sitelists are never too stale.
base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE,
base::BindOnce(&XmlDownloader::Refresh, weak_ptr_factory_.GetWeakPtr()),
delay);
next_refresh_time_ = base::Time::Now() + delay;
}
void XmlDownloader::Refresh() {
sources_ = service_->GetRulesetSources();
counter_ = 0;
FetchXml();
}
BrowserSwitcherService::BrowserSwitcherService(Profile* profile)
: profile_(profile),
prefs_(profile),
driver_(new AlternativeBrowserDriverImpl(&prefs_)),
sitelist_(new BrowserSwitcherSitelistImpl(&prefs_)) {
prefs_subscription_ =
prefs().RegisterPrefsChangedCallback(base::BindRepeating(
&BrowserSwitcherService::OnBrowserSwitcherPrefsChanged,
base::Unretained(this)));
if (prefs_.IsEnabled()) {
UMA_HISTOGRAM_ENUMERATION("BrowserSwitcher.AlternativeBrowser",
driver_->GetBrowserType());
}
}
BrowserSwitcherService::~BrowserSwitcherService() = default;
void BrowserSwitcherService::Init() {
LoadRulesFromPrefs();
StartDownload(fetch_delay());
}
void BrowserSwitcherService::OnAllRulesetsLoadedForTesting(
base::OnceCallback<void()> cb) {
all_rulesets_loaded_callback_for_testing_ = std::move(cb);
}
void BrowserSwitcherService::StartDownload(base::TimeDelta delay) {
// This destroys the previous XmlDownloader, which cancels any scheduled
// refresh operations.
sitelist_downloader_ = std::make_unique<XmlDownloader>(
profile_, this, delay,
base::BindRepeating(&BrowserSwitcherService::OnAllRulesetsParsed,
base::Unretained(this)));
}
void BrowserSwitcherService::Shutdown() {
prefs_.Shutdown();
}
AlternativeBrowserDriver* BrowserSwitcherService::driver() {
return driver_.get();
}
BrowserSwitcherSitelist* BrowserSwitcherService::sitelist() {
return sitelist_.get();
}
BrowserSwitcherPrefs& BrowserSwitcherService::prefs() {
return prefs_;
}
Profile* BrowserSwitcherService::profile() {
return profile_;
}
XmlDownloader* BrowserSwitcherService::sitelist_downloader() {
return sitelist_downloader_.get();
}
base::TimeDelta BrowserSwitcherService::fetch_delay() {
return fetch_delay_;
}
base::TimeDelta BrowserSwitcherService::refresh_delay() {
return refresh_delay_;
}
void BrowserSwitcherService::SetDriverForTesting(
std::unique_ptr<AlternativeBrowserDriver> driver) {
driver_ = std::move(driver);
}
void BrowserSwitcherService::SetSitelistForTesting(
std::unique_ptr<BrowserSwitcherSitelist> sitelist) {
sitelist_ = std::move(sitelist);
}
std::vector<RulesetSource> BrowserSwitcherService::GetRulesetSources() {
std::vector<RulesetSource> sources;
GURL sitelist_url = prefs_.GetExternalSitelistUrl();
sources.emplace_back(
prefs::kExternalSitelistUrl, sitelist_url, /* invert_rules */ false,
base::BindOnce(&BrowserSwitcherService::OnExternalSitelistParsed,
weak_ptr_factory_.GetWeakPtr()));
GURL greylist_url = prefs_.GetExternalGreylistUrl();
sources.emplace_back(
prefs::kExternalGreylistUrl, greylist_url, /* invert_rules */ true,
base::BindOnce(&BrowserSwitcherService::OnExternalGreylistParsed,
weak_ptr_factory_.GetWeakPtr()));
return sources;
}
void BrowserSwitcherService::LoadRulesFromPrefs() {
if (prefs().GetExternalSitelistUrl().is_valid())
sitelist()->SetExternalSitelist(prefs().GetCachedExternalSitelist());
if (prefs().GetExternalGreylistUrl().is_valid())
sitelist()->SetExternalGreylist(prefs().GetCachedExternalGreylist());
}
void BrowserSwitcherService::OnAllRulesetsParsed() {
callback_list_.Notify(this);
if (all_rulesets_loaded_callback_for_testing_)
std::move(all_rulesets_loaded_callback_for_testing_).Run();
}
base::CallbackListSubscription
BrowserSwitcherService::RegisterAllRulesetsParsedCallback(
AllRulesetsParsedCallback callback) {
return callback_list_.Add(callback);
}
void BrowserSwitcherService::OnBrowserSwitcherPrefsChanged(
BrowserSwitcherPrefs* prefs,
const std::vector<std::string>& changed_prefs) {
// Record |BrowserSwitcher.AlternativeBrowser| when the
// |BrowserSwitcherEnabled| or |AlternativeBrowserPath| policies change.
bool should_record_metrics =
std::ranges::any_of(changed_prefs, [](const std::string& pref) {
return pref == prefs::kEnabled ||
pref == prefs::kAlternativeBrowserPath;
});
if (should_record_metrics && prefs_.IsEnabled()) {
UMA_HISTOGRAM_ENUMERATION("BrowserSwitcher.AlternativeBrowser",
driver_->GetBrowserType());
}
auto sources = GetRulesetSources();
// Re-download if one of the URLs or the ParsingMode changed. O(n^2), but n<=3
// so it's fast.
auto it = std::ranges::find(changed_prefs, prefs::kParsingMode);
bool parsing_mode_changed = it != changed_prefs.end();
bool should_redownload =
parsing_mode_changed ||
std::ranges::any_of(
sources,
[&changed_prefs](const std::string& pref_name) {
auto it = std::ranges::find(changed_prefs, pref_name);
return it != changed_prefs.end();
},
&RulesetSource::pref_name);
if (should_redownload)
StartDownload(fetch_delay());
}
void BrowserSwitcherService::OnExternalSitelistParsed(ParsedXml xml) {
if (xml.error) {
SYSLOG(INFO) << "Unable to parse IEEM SiteList: " << *xml.error;
} else {
VLOG(2) << "Done parsing external SiteList for sitelist rules. "
<< "Applying rules to future navigations.";
if (prefs().GetExternalSitelistUrl().is_valid())
prefs().SetCachedExternalSitelist(xml.rules);
sitelist()->SetExternalSitelist(std::move(xml.rules));
}
}
void BrowserSwitcherService::OnExternalGreylistParsed(ParsedXml xml) {
if (xml.error) {
SYSLOG(INFO) << "Unable to parse IEEM SiteList: " << *xml.error;
} else {
VLOG(2) << "Done parsing external SiteList for greylist rules. "
<< "Applying rules to future navigations.";
DCHECK(xml.rules.sitelist.empty());
if (prefs().GetExternalGreylistUrl().is_valid()) {
prefs().SetCachedExternalGreylist(xml.rules);
}
sitelist()->SetExternalGreylist(std::move(xml.rules));
}
}
base::TimeDelta BrowserSwitcherService::fetch_delay_ = kFetchSitelistDelay;
base::TimeDelta BrowserSwitcherService::refresh_delay_ = kRefreshSitelistDelay;
// static
void BrowserSwitcherService::SetFetchDelayForTesting(base::TimeDelta delay) {
fetch_delay_ = delay;
}
// static
void BrowserSwitcherService::SetRefreshDelayForTesting(base::TimeDelta delay) {
refresh_delay_ = delay;
}
} // namespace browser_switcher
|