2018-10-11 13:52:12 +00:00
|
|
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/browser_process_impl.h"
|
2018-10-11 13:52:12 +00:00
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2018-11-06 06:10:04 +00:00
|
|
|
#include <utility>
|
|
|
|
|
2020-07-22 05:34:34 +00:00
|
|
|
#include "base/command_line.h"
|
2021-05-26 19:16:55 +00:00
|
|
|
#include "base/files/file_path.h"
|
|
|
|
#include "base/path_service.h"
|
2021-06-15 00:32:56 +00:00
|
|
|
#include "chrome/common/chrome_paths.h"
|
2018-11-06 06:10:04 +00:00
|
|
|
#include "chrome/common/chrome_switches.h"
|
2021-05-26 19:16:55 +00:00
|
|
|
#include "components/os_crypt/os_crypt.h"
|
2018-11-06 06:10:04 +00:00
|
|
|
#include "components/prefs/in_memory_pref_store.h"
|
2021-05-26 19:16:55 +00:00
|
|
|
#include "components/prefs/json_pref_store.h"
|
2018-11-06 06:10:04 +00:00
|
|
|
#include "components/prefs/overlay_user_pref_store.h"
|
|
|
|
#include "components/prefs/pref_registry.h"
|
|
|
|
#include "components/prefs/pref_registry_simple.h"
|
|
|
|
#include "components/prefs/pref_service_factory.h"
|
|
|
|
#include "components/proxy_config/pref_proxy_config_tracker_impl.h"
|
|
|
|
#include "components/proxy_config/proxy_config_dictionary.h"
|
|
|
|
#include "components/proxy_config/proxy_config_pref_names.h"
|
2020-01-15 00:20:30 +00:00
|
|
|
#include "content/public/browser/child_process_security_policy.h"
|
2018-11-06 06:10:04 +00:00
|
|
|
#include "content/public/common/content_switches.h"
|
2021-05-26 19:16:55 +00:00
|
|
|
#include "electron/fuses.h"
|
2020-01-15 00:20:30 +00:00
|
|
|
#include "extensions/common/constants.h"
|
2018-11-06 06:10:04 +00:00
|
|
|
#include "net/proxy_resolution/proxy_config.h"
|
|
|
|
#include "net/proxy_resolution/proxy_config_service.h"
|
|
|
|
#include "net/proxy_resolution/proxy_config_with_annotation.h"
|
2018-11-07 13:23:09 +00:00
|
|
|
#include "services/network/public/cpp/network_switches.h"
|
2021-05-26 19:16:55 +00:00
|
|
|
#include "shell/common/electron_paths.h"
|
2018-10-11 13:52:12 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINTING)
|
2018-11-09 03:42:34 +00:00
|
|
|
#include "chrome/browser/printing/print_job_manager.h"
|
2018-10-13 01:57:04 +00:00
|
|
|
#endif
|
2018-11-09 03:42:34 +00:00
|
|
|
|
|
|
|
BrowserProcessImpl::BrowserProcessImpl() {
|
2018-10-11 13:52:12 +00:00
|
|
|
g_browser_process = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
BrowserProcessImpl::~BrowserProcessImpl() {
|
|
|
|
g_browser_process = nullptr;
|
|
|
|
}
|
|
|
|
|
2018-11-06 06:10:04 +00:00
|
|
|
// static
|
|
|
|
void BrowserProcessImpl::ApplyProxyModeFromCommandLine(
|
|
|
|
ValueMapPrefStore* pref_store) {
|
|
|
|
if (!pref_store)
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto* command_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
|
|
|
|
if (command_line->HasSwitch(switches::kNoProxyServer)) {
|
2018-10-25 16:48:25 +00:00
|
|
|
pref_store->SetValue(
|
|
|
|
proxy_config::prefs::kProxy,
|
|
|
|
std::make_unique<base::Value>(ProxyConfigDictionary::CreateDirect()),
|
|
|
|
WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
|
2018-11-06 06:10:04 +00:00
|
|
|
} else if (command_line->HasSwitch(switches::kProxyPacUrl)) {
|
|
|
|
std::string pac_script_url =
|
|
|
|
command_line->GetSwitchValueASCII(switches::kProxyPacUrl);
|
2018-10-25 16:48:25 +00:00
|
|
|
pref_store->SetValue(
|
|
|
|
proxy_config::prefs::kProxy,
|
|
|
|
std::make_unique<base::Value>(ProxyConfigDictionary::CreatePacScript(
|
|
|
|
pac_script_url, false /* pac_mandatory */)),
|
|
|
|
WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
|
2018-11-06 06:10:04 +00:00
|
|
|
} else if (command_line->HasSwitch(switches::kProxyAutoDetect)) {
|
|
|
|
pref_store->SetValue(proxy_config::prefs::kProxy,
|
2018-10-25 16:48:25 +00:00
|
|
|
std::make_unique<base::Value>(
|
|
|
|
ProxyConfigDictionary::CreateAutoDetect()),
|
2018-11-06 06:10:04 +00:00
|
|
|
WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
|
|
|
|
} else if (command_line->HasSwitch(switches::kProxyServer)) {
|
|
|
|
std::string proxy_server =
|
|
|
|
command_line->GetSwitchValueASCII(switches::kProxyServer);
|
|
|
|
std::string bypass_list =
|
|
|
|
command_line->GetSwitchValueASCII(switches::kProxyBypassList);
|
|
|
|
pref_store->SetValue(
|
|
|
|
proxy_config::prefs::kProxy,
|
2018-10-25 16:48:25 +00:00
|
|
|
std::make_unique<base::Value>(ProxyConfigDictionary::CreateFixedServers(
|
|
|
|
proxy_server, bypass_list)),
|
2018-11-06 06:10:04 +00:00
|
|
|
WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-06 07:05:30 +00:00
|
|
|
BuildState* BrowserProcessImpl::GetBuildState() {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-08-24 00:52:17 +00:00
|
|
|
breadcrumbs::BreadcrumbPersistentStorageManager*
|
|
|
|
BrowserProcessImpl::GetBreadcrumbPersistentStorageManager() {
|
|
|
|
NOTIMPLEMENTED();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-11-06 06:10:04 +00:00
|
|
|
void BrowserProcessImpl::PostEarlyInitialization() {
|
|
|
|
PrefServiceFactory prefs_factory;
|
|
|
|
auto pref_registry = base::MakeRefCounted<PrefRegistrySimple>();
|
|
|
|
PrefProxyConfigTrackerImpl::RegisterPrefs(pref_registry.get());
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2021-05-26 19:16:55 +00:00
|
|
|
OSCrypt::RegisterLocalPrefs(pref_registry.get());
|
|
|
|
#endif
|
|
|
|
|
2018-11-06 06:10:04 +00:00
|
|
|
auto pref_store = base::MakeRefCounted<ValueMapPrefStore>();
|
|
|
|
ApplyProxyModeFromCommandLine(pref_store.get());
|
|
|
|
prefs_factory.set_command_line_prefs(std::move(pref_store));
|
2021-05-26 19:16:55 +00:00
|
|
|
|
|
|
|
// Only use a persistent prefs store when cookie encryption is enabled as that
|
|
|
|
// is the only key that needs it
|
2021-08-05 22:12:54 +00:00
|
|
|
base::FilePath prefs_path;
|
2022-05-09 14:26:57 +00:00
|
|
|
CHECK(base::PathService::Get(electron::DIR_SESSION_DATA, &prefs_path));
|
2021-08-05 22:12:54 +00:00
|
|
|
prefs_path = prefs_path.Append(FILE_PATH_LITERAL("Local State"));
|
|
|
|
base::ThreadRestrictions::ScopedAllowIO allow_io;
|
|
|
|
scoped_refptr<JsonPrefStore> user_pref_store =
|
|
|
|
base::MakeRefCounted<JsonPrefStore>(prefs_path);
|
|
|
|
user_pref_store->ReadPrefs();
|
|
|
|
prefs_factory.set_user_prefs(user_pref_store);
|
2018-11-06 06:10:04 +00:00
|
|
|
local_state_ = prefs_factory.Create(std::move(pref_registry));
|
|
|
|
}
|
|
|
|
|
2019-07-03 01:22:09 +00:00
|
|
|
void BrowserProcessImpl::PreCreateThreads() {
|
2020-01-15 00:20:30 +00:00
|
|
|
// chrome-extension:// URLs are safe to request anywhere, but may only
|
|
|
|
// commit (including in iframes) in extension processes.
|
|
|
|
content::ChildProcessSecurityPolicy::GetInstance()
|
|
|
|
->RegisterWebSafeIsolatedScheme(extensions::kExtensionScheme, true);
|
2018-11-06 06:10:04 +00:00
|
|
|
// Must be created before the IOThread.
|
|
|
|
// Once IOThread class is no longer needed,
|
|
|
|
// this can be created on first use.
|
2019-03-26 01:10:48 +00:00
|
|
|
if (!SystemNetworkContextManager::GetInstance())
|
|
|
|
SystemNetworkContextManager::CreateInstance(local_state_.get());
|
2018-11-06 06:10:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BrowserProcessImpl::PostMainMessageLoopRun() {
|
2019-03-26 01:10:48 +00:00
|
|
|
if (local_state_)
|
|
|
|
local_state_->CommitPendingWrite();
|
|
|
|
|
2018-11-06 06:10:04 +00:00
|
|
|
// This expects to be destroyed before the task scheduler is torn down.
|
2019-03-26 01:10:48 +00:00
|
|
|
SystemNetworkContextManager::DeleteInstance();
|
2018-11-06 06:10:04 +00:00
|
|
|
}
|
|
|
|
|
2018-10-11 13:52:12 +00:00
|
|
|
bool BrowserProcessImpl::IsShuttingDown() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
metrics_services_manager::MetricsServicesManager*
|
|
|
|
BrowserProcessImpl::GetMetricsServicesManager() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
metrics::MetricsService* BrowserProcessImpl::metrics_service() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
ProfileManager* BrowserProcessImpl::profile_manager() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
PrefService* BrowserProcessImpl::local_state() {
|
2018-11-06 06:10:04 +00:00
|
|
|
DCHECK(local_state_.get());
|
|
|
|
return local_state_.get();
|
2018-10-11 13:52:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
scoped_refptr<network::SharedURLLoaderFactory>
|
|
|
|
BrowserProcessImpl::shared_url_loader_factory() {
|
2018-11-07 14:24:05 +00:00
|
|
|
return system_network_context_manager()->GetSharedURLLoaderFactory();
|
2018-10-11 13:52:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
variations::VariationsService* BrowserProcessImpl::variations_service() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
BrowserProcessPlatformPart* BrowserProcessImpl::platform_part() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
extensions::EventRouterForwarder*
|
|
|
|
BrowserProcessImpl::extension_event_router_forwarder() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
NotificationUIManager* BrowserProcessImpl::notification_ui_manager() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
NotificationPlatformBridge* BrowserProcessImpl::notification_platform_bridge() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
SystemNetworkContextManager*
|
|
|
|
BrowserProcessImpl::system_network_context_manager() {
|
2019-03-26 01:10:48 +00:00
|
|
|
DCHECK(SystemNetworkContextManager::GetInstance());
|
|
|
|
return SystemNetworkContextManager::GetInstance();
|
2018-10-11 13:52:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
network::NetworkQualityTracker* BrowserProcessImpl::network_quality_tracker() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
policy::ChromeBrowserPolicyConnector*
|
|
|
|
BrowserProcessImpl::browser_policy_connector() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
policy::PolicyService* BrowserProcessImpl::policy_service() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
IconManager* BrowserProcessImpl::icon_manager() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
GpuModeManager* BrowserProcessImpl::gpu_mode_manager() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
printing::PrintPreviewDialogController*
|
|
|
|
BrowserProcessImpl::print_preview_dialog_controller() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
printing::BackgroundPrintingManager*
|
|
|
|
BrowserProcessImpl::background_printing_manager() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
IntranetRedirectDetector* BrowserProcessImpl::intranet_redirect_detector() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
DownloadStatusUpdater* BrowserProcessImpl::download_status_updater() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
DownloadRequestLimiter* BrowserProcessImpl::download_request_limiter() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
BackgroundModeManager* BrowserProcessImpl::background_mode_manager() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
StatusTray* BrowserProcessImpl::status_tray() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
safe_browsing::SafeBrowsingService*
|
|
|
|
BrowserProcessImpl::safe_browsing_service() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2019-01-09 22:55:35 +00:00
|
|
|
subresource_filter::RulesetService*
|
2018-10-11 13:52:12 +00:00
|
|
|
BrowserProcessImpl::subresource_filter_ruleset_service() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
component_updater::ComponentUpdateService*
|
|
|
|
BrowserProcessImpl::component_updater() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
MediaFileSystemRegistry* BrowserProcessImpl::media_file_system_registry() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
WebRtcLogUploader* BrowserProcessImpl::webrtc_log_uploader() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
network_time::NetworkTimeTracker* BrowserProcessImpl::network_time_tracker() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
gcm::GCMDriver* BrowserProcessImpl::gcm_driver() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2019-01-10 00:47:31 +00:00
|
|
|
resource_coordinator::ResourceCoordinatorParts*
|
|
|
|
BrowserProcessImpl::resource_coordinator_parts() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-10-11 13:52:12 +00:00
|
|
|
resource_coordinator::TabManager* BrowserProcessImpl::GetTabManager() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-06-05 02:03:31 +00:00
|
|
|
SerialPolicyAllowedPorts* BrowserProcessImpl::serial_policy_allowed_ports() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2022-02-25 18:17:35 +00:00
|
|
|
HidPolicyAllowedDevices* BrowserProcessImpl::hid_policy_allowed_devices() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-10-11 13:52:12 +00:00
|
|
|
void BrowserProcessImpl::SetApplicationLocale(const std::string& locale) {
|
|
|
|
locale_ = locale;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& BrowserProcessImpl::GetApplicationLocale() {
|
|
|
|
return locale_;
|
|
|
|
}
|
|
|
|
|
|
|
|
printing::PrintJobManager* BrowserProcessImpl::print_job_manager() {
|
2018-11-09 03:42:34 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINTING)
|
|
|
|
if (!print_job_manager_)
|
2019-09-16 22:12:00 +00:00
|
|
|
print_job_manager_ = std::make_unique<printing::PrintJobManager>();
|
2018-10-11 13:52:12 +00:00
|
|
|
return print_job_manager_.get();
|
2018-11-09 03:42:34 +00:00
|
|
|
#else
|
|
|
|
return nullptr;
|
|
|
|
#endif
|
2018-10-11 13:52:12 +00:00
|
|
|
}
|
2019-05-01 20:42:49 +00:00
|
|
|
|
|
|
|
StartupData* BrowserProcessImpl::startup_data() {
|
|
|
|
return nullptr;
|
|
|
|
}
|