#include "content/public/app/content_main.h"
#include "base/allocator/buildflags.h"
#include "base/allocator/partition_alloc_support.h"
#include "base/at_exit.h"
#include "base/base_switches.h"
#include "base/command_line.h"
#include "base/compiler_specific.h"
#include "base/debug/debugger.h"
#include "base/debug/stack_trace.h"
#include "base/feature_list.h"
#include "base/i18n/icu_util.h"
#include "base/logging.h"
#include "base/message_loop/message_pump_type.h"
#include "base/process/launch.h"
#include "base/process/memory.h"
#include "base/process/process.h"
#include "base/run_loop.h"
#include "base/strings/string_number_conversions.h"
#include "base/task/single_thread_task_executor.h"
#include "base/task/thread_pool/thread_pool_instance.h"
#include "base/threading/platform_thread.h"
#include "base/threading/thread.h"
#include "base/trace_event/trace_config.h"
#include "base/trace_event/trace_log.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "components/tracing/common/trace_to_console.h"
#include "components/tracing/common/tracing_switches.h"
#include "content/app/content_main_runner_impl.h"
#include "content/common/mojo_core_library_support.h"
#include "content/common/set_process_title.h"
#include "content/public/app/content_main_delegate.h"
#include "content/public/common/content_switches.h"
#include "mojo/core/embedder/configuration.h"
#include "mojo/core/embedder/embedder.h"
#include "mojo/core/embedder/scoped_ipc_support.h"
#include "mojo/public/cpp/platform/platform_channel.h"
#include "mojo/public/cpp/system/dynamic_library_support.h"
#include "sandbox/policy/sandbox_type.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
#include "ui/base/ui_base_paths.h"
#include "ui/base/ui_base_switches.h"
#if BUILDFLAG(IS_WIN)
#include <windows.h>
#include "base/win/process_startup_helper.h"
#include "base/win/win_util.h"
#include "base/win/windows_version.h"
#include "ui/base/win/atl_module.h"
#endif
#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_ANDROID)
#include <locale.h>
#include <signal.h>
#include "content/common/shared_file_util.h"
#endif
#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
#include "base/files/scoped_file.h"
#endif
#if BUILDFLAG(IS_MAC)
#include "base/mac/scoped_nsautorelease_pool.h"
#include "content/app/mac_init.h"
#endif
#if BUILDFLAG(IS_APPLE)
#if BUILDFLAG(USE_ALLOCATOR_SHIM)
#include "base/allocator/partition_allocator/shim/allocator_shim.h"
#endif
#endif
namespace content {
namespace {
#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_ANDROID)
#if !BUILDFLAG(IS_OHOS)
void SetupSignalHandlers() {
CHECK_NE(SIG_ERR, signal(SIGPIPE, SIG_IGN));
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableInProcessStackTraces)) {
return;
}
sigset_t empty_signal_set;
CHECK_EQ(0, sigemptyset(&empty_signal_set));
CHECK_EQ(0, sigprocmask(SIG_SETMASK, &empty_signal_set, nullptr));
struct sigaction sigact;
memset(&sigact, 0, sizeof(sigact));
sigact.sa_handler = SIG_DFL;
static const int signals_to_reset[] = {SIGHUP, SIGINT, SIGQUIT, SIGILL,
SIGABRT, SIGFPE, SIGSEGV, SIGALRM,
SIGTERM, SIGCHLD, SIGBUS, SIGTRAP};
for (int signal_to_reset : signals_to_reset)
CHECK_EQ(0, sigaction(signal_to_reset, &sigact, nullptr));
}
#endif
#endif
bool IsSubprocess() {
auto type = base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
switches::kProcessType);
return type == switches::kGpuProcess ||
type == switches::kPpapiPluginProcess ||
type == switches::kRendererProcess ||
type == switches::kUtilityProcess || type == switches::kZygoteProcess;
}
void CommonSubprocessInit() {
#if BUILDFLAG(IS_WIN)
if (base::win::IsUser32AndGdi32Available()) {
PostThreadMessage(GetCurrentThreadId(), WM_NULL, 0, 0);
MSG msg;
PeekMessage(&msg, nullptr, 0, 0, PM_REMOVE);
}
#endif
#if !defined(OFFICIAL_BUILD) && BUILDFLAG(IS_WIN)
base::RouteStdioToConsole(false);
LoadLibraryA("dbghelp.dll");
#endif
}
void InitTimeTicksAtUnixEpoch() {
const auto* command_line = base::CommandLine::ForCurrentProcess();
if (!command_line->HasSwitch(switches::kTimeTicksAtUnixEpoch)) {
return;
}
std::string time_ticks_at_unix_epoch_as_string =
command_line->GetSwitchValueASCII(switches::kTimeTicksAtUnixEpoch);
int64_t time_ticks_at_unix_epoch_delta_micro;
if (!base::StringToInt64(time_ticks_at_unix_epoch_as_string,
&time_ticks_at_unix_epoch_delta_micro)) {
return;
}
base::TimeDelta time_ticks_at_unix_epoch_delta =
base::Microseconds(time_ticks_at_unix_epoch_delta_micro);
base::TimeTicks time_ticks_at_unix_epoch =
base::TimeTicks() + time_ticks_at_unix_epoch_delta;
base::TimeTicks::SetSharedUnixEpoch(time_ticks_at_unix_epoch);
}
}
ContentMainParams::ContentMainParams(ContentMainDelegate* delegate)
: delegate(delegate) {}
ContentMainParams::~ContentMainParams() = default;
ContentMainParams::ContentMainParams(ContentMainParams&&) = default;
ContentMainParams& ContentMainParams::operator=(ContentMainParams&&) = default;
int ContentMainInitialize(ContentMainParams params,
ContentMainRunner* content_main_runner) {
base::FeatureList::FailOnFeatureAccessWithoutFeatureList();
#if BUILDFLAG(IS_CHROMEOS_LACROS)
base::PlatformThread::SetCurrentThreadType(base::ThreadType::kDefault);
#endif
int exit_code = -1;
static bool is_initialized = false;
#if !BUILDFLAG(IS_ANDROID)
DCHECK(!is_initialized);
#endif
if (is_initialized) {
content_main_runner->ReInitializeParams(std::move(params));
} else {
is_initialized = true;
#if BUILDFLAG(IS_APPLE) && BUILDFLAG(USE_ALLOCATOR_SHIM)
allocator_shim::InitializeAllocatorShim();
#endif
base::EnableTerminationOnOutOfMemory();
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
const int kNoOverrideIfAlreadySet = 0;
setenv("DBUS_SESSION_BUS_ADDRESS", "disabled:", kNoOverrideIfAlreadySet);
#endif
#if BUILDFLAG(IS_WIN)
base::win::RegisterInvalidParamHandler();
ui::win::CreateATLModuleIfNeeded();
#endif
#if !BUILDFLAG(IS_ANDROID)
int argc = 0;
const char** argv = nullptr;
#if !BUILDFLAG(IS_WIN)
argc = params.argc;
argv = params.argv;
#endif
base::CommandLine::Init(argc, argv);
#if BUILDFLAG(IS_POSIX)
PopulateFileDescriptorStoreFromFdTable();
#endif
base::EnableTerminationOnHeapCorruption();
SetProcessTitleFromCommandLine(argv);
#endif
InitTimeTicksAtUnixEpoch();
#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_ANDROID)
setlocale(LC_ALL, "");
setlocale(LC_NUMERIC, "C");
#if !BUILDFLAG(IS_OHOS)
SetupSignalHandlers();
#endif
#endif
#if BUILDFLAG(IS_WIN)
base::win::SetupCRT(*base::CommandLine::ForCurrentProcess());
#endif
#if BUILDFLAG(IS_MAC)
InitializeMac();
#endif
#if BUILDFLAG(IS_IOS)
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
#if !TARGET_OS_SIMULATOR
command_line->AppendSwitch(switches::kSingleProcess);
#endif
command_line->AppendSwitch(switches::kEnableViewport);
command_line->AppendSwitch(switches::kUseMobileUserAgent);
#endif
#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX)
base::subtle::EnableFDOwnershipEnforcement(true);
#endif
ui::RegisterPathProvider();
exit_code = content_main_runner->Initialize(std::move(params));
if (exit_code >= 0) {
return exit_code;
}
#if BUILDFLAG(IS_WIN)
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableLogging)) {
base::RouteStdioToConsole(true);
}
#endif
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
::switches::kTraceToConsole)) {
base::trace_event::TraceConfig trace_config =
tracing::GetConfigForTraceToConsole();
base::trace_event::TraceLog::GetInstance()->SetEnabled(
trace_config, base::trace_event::TraceLog::RECORDING_MODE);
}
}
if (IsSubprocess())
CommonSubprocessInit();
return exit_code;
}
int NO_STACK_PROTECTOR
ContentMainRun(ContentMainRunner* content_main_runner) {
return content_main_runner->Run();
}
void ContentMainShutdown(ContentMainRunner* content_main_runner) {
#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)
content_main_runner->Shutdown();
#endif
}
int NO_STACK_PROTECTOR
RunContentProcess(ContentMainParams params,
ContentMainRunner* content_main_runner) {
#if BUILDFLAG(IS_MAC)
std::unique_ptr<base::mac::ScopedNSAutoreleasePool> autorelease_pool =
std::make_unique<base::mac::ScopedNSAutoreleasePool>();
params.autorelease_pool = autorelease_pool.get();
#endif
int exit_code = ContentMainInitialize(std::move(params), content_main_runner);
if (exit_code >= 0)
return exit_code;
exit_code = ContentMainRun(content_main_runner);
#if BUILDFLAG(IS_MAC)
params.autorelease_pool = nullptr;
autorelease_pool.reset();
#endif
ContentMainShutdown(content_main_runner);
return exit_code;
}
int NO_STACK_PROTECTOR ContentMain(ContentMainParams params) {
auto runner = ContentMainRunner::Create();
return RunContentProcess(std::move(params), runner.get());
}
}