mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
chrome: Fix shutdown crashes with multi-threaded-message-loop (fixes issue #3403)
This commit is contained in:
@ -15,8 +15,10 @@
|
|||||||
#include "libcef/common/resource_util.h"
|
#include "libcef/common/resource_util.h"
|
||||||
#include "libcef/renderer/chrome/chrome_content_renderer_client_cef.h"
|
#include "libcef/renderer/chrome/chrome_content_renderer_client_cef.h"
|
||||||
|
|
||||||
|
#include "base/base_switches.h"
|
||||||
#include "base/command_line.h"
|
#include "base/command_line.h"
|
||||||
#include "base/lazy_instance.h"
|
#include "base/lazy_instance.h"
|
||||||
|
#include "base/threading/threading_features.h"
|
||||||
#include "chrome/common/chrome_switches.h"
|
#include "chrome/common/chrome_switches.h"
|
||||||
#include "components/embedder_support/switches.h"
|
#include "components/embedder_support/switches.h"
|
||||||
#include "content/public/common/content_switches.h"
|
#include "content/public/common/content_switches.h"
|
||||||
@ -124,6 +126,29 @@ absl::optional<int> ChromeMainDelegateCef::BasicStartupComplete() {
|
|||||||
switches::kUncaughtExceptionStackSize,
|
switches::kUncaughtExceptionStackSize,
|
||||||
base::NumberToString(settings_->uncaught_exception_stack_size));
|
base::NumberToString(settings_->uncaught_exception_stack_size));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::vector<std::string> disable_features;
|
||||||
|
|
||||||
|
if (!!settings_->multi_threaded_message_loop &&
|
||||||
|
base::kEnableHangWatcher.default_state ==
|
||||||
|
base::FEATURE_ENABLED_BY_DEFAULT) {
|
||||||
|
// Disable EnableHangWatcher when running with multi-threaded-message-loop
|
||||||
|
// to avoid shutdown crashes (see issue #3403).
|
||||||
|
disable_features.push_back(base::kEnableHangWatcher.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!disable_features.empty()) {
|
||||||
|
DCHECK(!base::FeatureList::GetInstance());
|
||||||
|
std::string disable_features_str =
|
||||||
|
command_line->GetSwitchValueASCII(switches::kDisableFeatures);
|
||||||
|
for (auto feature_str : disable_features) {
|
||||||
|
if (!disable_features_str.empty())
|
||||||
|
disable_features_str += ",";
|
||||||
|
disable_features_str += feature_str;
|
||||||
|
}
|
||||||
|
command_line->AppendSwitchASCII(switches::kDisableFeatures,
|
||||||
|
disable_features_str);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (application_) {
|
if (application_) {
|
||||||
|
@ -74,6 +74,7 @@ void ChromeMainRunnerDelegate::AfterUIThreadShutdown() {
|
|||||||
static_cast<ChromeContentBrowserClient*>(
|
static_cast<ChromeContentBrowserClient*>(
|
||||||
CefAppManager::Get()->GetContentClient()->browser())
|
CefAppManager::Get()->GetContentClient()->browser())
|
||||||
->CleanupOnUIThread();
|
->CleanupOnUIThread();
|
||||||
|
main_delegate_->CleanupOnUIThread();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ChromeMainRunnerDelegate::AfterMainThreadShutdown() {
|
void ChromeMainRunnerDelegate::AfterMainThreadShutdown() {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
diff --git chrome/app/chrome_main_delegate.cc chrome/app/chrome_main_delegate.cc
|
diff --git chrome/app/chrome_main_delegate.cc chrome/app/chrome_main_delegate.cc
|
||||||
index 377b2eb646b0a..9163f80176102 100644
|
index 377b2eb646b0a..740f2e9c8a05e 100644
|
||||||
--- chrome/app/chrome_main_delegate.cc
|
--- chrome/app/chrome_main_delegate.cc
|
||||||
+++ chrome/app/chrome_main_delegate.cc
|
+++ chrome/app/chrome_main_delegate.cc
|
||||||
@@ -39,6 +39,7 @@
|
@@ -39,6 +39,7 @@
|
||||||
@ -19,7 +19,18 @@ index 377b2eb646b0a..9163f80176102 100644
|
|||||||
#if BUILDFLAG(IS_WIN)
|
#if BUILDFLAG(IS_WIN)
|
||||||
// Reach out to chrome_elf for the truth on the user data directory.
|
// Reach out to chrome_elf for the truth on the user data directory.
|
||||||
// Note that in tests, this links to chrome_elf_test_stubs.
|
// Note that in tests, this links to chrome_elf_test_stubs.
|
||||||
@@ -867,7 +870,9 @@ void ChromeMainDelegate::CommonEarlyInitialization() {
|
@@ -621,6 +624,10 @@ ChromeMainDelegate::ChromeMainDelegate(base::TimeTicks exe_entry_point_ticks) {
|
||||||
|
|
||||||
|
ChromeMainDelegate::~ChromeMainDelegate() = default;
|
||||||
|
|
||||||
|
+void ChromeMainDelegate::CleanupOnUIThread() {
|
||||||
|
+ heap_profiler_controller_.reset();
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
absl::optional<int> ChromeMainDelegate::PostEarlyInitialization(
|
||||||
|
InvokedIn invoked_in) {
|
||||||
|
DCHECK(base::ThreadPoolInstance::Get());
|
||||||
|
@@ -867,7 +874,9 @@ void ChromeMainDelegate::CommonEarlyInitialization() {
|
||||||
}
|
}
|
||||||
|
|
||||||
#if BUILDFLAG(IS_WIN)
|
#if BUILDFLAG(IS_WIN)
|
||||||
@ -29,7 +40,7 @@ index 377b2eb646b0a..9163f80176102 100644
|
|||||||
base::sequence_manager::internal::ThreadControllerPowerMonitor::
|
base::sequence_manager::internal::ThreadControllerPowerMonitor::
|
||||||
InitializeOnMainThread();
|
InitializeOnMainThread();
|
||||||
base::InitializePlatformThreadFeatures();
|
base::InitializePlatformThreadFeatures();
|
||||||
@@ -1190,6 +1195,7 @@ void ChromeMainDelegate::PreSandboxStartup() {
|
@@ -1190,6 +1199,7 @@ void ChromeMainDelegate::PreSandboxStartup() {
|
||||||
std::string process_type =
|
std::string process_type =
|
||||||
command_line.GetSwitchValueASCII(switches::kProcessType);
|
command_line.GetSwitchValueASCII(switches::kProcessType);
|
||||||
|
|
||||||
@ -37,7 +48,7 @@ index 377b2eb646b0a..9163f80176102 100644
|
|||||||
crash_reporter::InitializeCrashKeys();
|
crash_reporter::InitializeCrashKeys();
|
||||||
|
|
||||||
#if BUILDFLAG(IS_POSIX)
|
#if BUILDFLAG(IS_POSIX)
|
||||||
@@ -1200,6 +1206,7 @@ void ChromeMainDelegate::PreSandboxStartup() {
|
@@ -1200,6 +1210,7 @@ void ChromeMainDelegate::PreSandboxStartup() {
|
||||||
InitMacCrashReporter(command_line, process_type);
|
InitMacCrashReporter(command_line, process_type);
|
||||||
SetUpInstallerPreferences(command_line);
|
SetUpInstallerPreferences(command_line);
|
||||||
#endif
|
#endif
|
||||||
@ -45,7 +56,7 @@ index 377b2eb646b0a..9163f80176102 100644
|
|||||||
|
|
||||||
#if BUILDFLAG(IS_WIN)
|
#if BUILDFLAG(IS_WIN)
|
||||||
child_process_logging::Init();
|
child_process_logging::Init();
|
||||||
@@ -1402,6 +1409,7 @@ void ChromeMainDelegate::PreSandboxStartup() {
|
@@ -1402,6 +1413,7 @@ void ChromeMainDelegate::PreSandboxStartup() {
|
||||||
CHECK(!loaded_locale.empty()) << "Locale could not be found for " << locale;
|
CHECK(!loaded_locale.empty()) << "Locale could not be found for " << locale;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -53,7 +64,7 @@ index 377b2eb646b0a..9163f80176102 100644
|
|||||||
#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_MAC)
|
#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_MAC)
|
||||||
// Zygote needs to call InitCrashReporter() in RunZygote().
|
// Zygote needs to call InitCrashReporter() in RunZygote().
|
||||||
if (process_type != switches::kZygoteProcess) {
|
if (process_type != switches::kZygoteProcess) {
|
||||||
@@ -1441,6 +1449,7 @@ void ChromeMainDelegate::PreSandboxStartup() {
|
@@ -1441,6 +1453,7 @@ void ChromeMainDelegate::PreSandboxStartup() {
|
||||||
// After all the platform Breakpads have been initialized, store the command
|
// After all the platform Breakpads have been initialized, store the command
|
||||||
// line for crash reporting.
|
// line for crash reporting.
|
||||||
crash_keys::SetCrashKeysFromCommandLine(command_line);
|
crash_keys::SetCrashKeysFromCommandLine(command_line);
|
||||||
@ -61,7 +72,7 @@ index 377b2eb646b0a..9163f80176102 100644
|
|||||||
|
|
||||||
#if BUILDFLAG(ENABLE_PDF)
|
#if BUILDFLAG(ENABLE_PDF)
|
||||||
MaybePatchGdiGetFontData();
|
MaybePatchGdiGetFontData();
|
||||||
@@ -1530,6 +1539,7 @@ void ChromeMainDelegate::ZygoteForked() {
|
@@ -1530,6 +1543,7 @@ void ChromeMainDelegate::ZygoteForked() {
|
||||||
SetUpProfilingShutdownHandler();
|
SetUpProfilingShutdownHandler();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -69,7 +80,7 @@ index 377b2eb646b0a..9163f80176102 100644
|
|||||||
// Needs to be called after we have chrome::DIR_USER_DATA. BrowserMain sets
|
// Needs to be called after we have chrome::DIR_USER_DATA. BrowserMain sets
|
||||||
// this up for the browser process in a different manner.
|
// this up for the browser process in a different manner.
|
||||||
const base::CommandLine* command_line =
|
const base::CommandLine* command_line =
|
||||||
@@ -1546,6 +1556,7 @@ void ChromeMainDelegate::ZygoteForked() {
|
@@ -1546,6 +1560,7 @@ void ChromeMainDelegate::ZygoteForked() {
|
||||||
|
|
||||||
// Reset the command line for the newly spawned process.
|
// Reset the command line for the newly spawned process.
|
||||||
crash_keys::SetCrashKeysFromCommandLine(*command_line);
|
crash_keys::SetCrashKeysFromCommandLine(*command_line);
|
||||||
@ -77,6 +88,19 @@ index 377b2eb646b0a..9163f80176102 100644
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
||||||
|
diff --git chrome/app/chrome_main_delegate.h chrome/app/chrome_main_delegate.h
|
||||||
|
index de1b45f921123..077894e4a42c9 100644
|
||||||
|
--- chrome/app/chrome_main_delegate.h
|
||||||
|
+++ chrome/app/chrome_main_delegate.h
|
||||||
|
@@ -52,6 +52,8 @@ class ChromeMainDelegate : public content::ContentMainDelegate {
|
||||||
|
|
||||||
|
~ChromeMainDelegate() override;
|
||||||
|
|
||||||
|
+ virtual void CleanupOnUIThread();
|
||||||
|
+
|
||||||
|
protected:
|
||||||
|
// content::ContentMainDelegate:
|
||||||
|
absl::optional<int> BasicStartupComplete() override;
|
||||||
diff --git chrome/browser/chrome_browser_main.cc chrome/browser/chrome_browser_main.cc
|
diff --git chrome/browser/chrome_browser_main.cc chrome/browser/chrome_browser_main.cc
|
||||||
index d1ddad3b91515..9fd596595b0ff 100644
|
index d1ddad3b91515..9fd596595b0ff 100644
|
||||||
--- chrome/browser/chrome_browser_main.cc
|
--- chrome/browser/chrome_browser_main.cc
|
||||||
|
Reference in New Issue
Block a user