#include "content/child/child_process.h"
#include <string.h>
#include "arkweb/build/features/features.h"
#include "base/clang_profiling_buildflags.h"
#include "base/functional/bind.h"
#include "base/message_loop/message_pump_type.h"
#include "base/process/process_handle.h"
#include "base/synchronization/waitable_event.h"
#include "base/task/thread_pool/thread_pool_instance.h"
#include "base/threading/hang_watcher.h"
#include "base/threading/platform_thread_metrics.h"
#include "base/threading/thread.h"
#include "base/threading/thread_id_name_manager.h"
#include "build/build_config.h"
#include "build/config/compiler/compiler_buildflags.h"
#include "components/performance_manager/scenario_api/performance_scenarios.h"
#include "content/child/child_thread_impl.h"
#include "content/common/process_visibility_tracker.h"
#include "content/public/common/content_features.h"
#include "mojo/public/cpp/bindings/interface_endpoint_client.h"
#include "sandbox/policy/sandbox_type.h"
#include "services/network/public/cpp/features.h"
#include "services/network/public/cpp/sequence_manager_configurator.h"
#include "services/tracing/public/cpp/trace_startup.h"
#include "third_party/blink/public/common/features.h"
#include "content/public/common/content_switches.h"
#if BUILDFLAG(CLANG_PROFILING_INSIDE_SANDBOX)
#include "base/test/clang_profiling.h"
#endif
#if BUILDFLAG(IS_ANDROID)
#include "content/common/android/cpu_time_metrics.h"
#endif
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
#include "content/child/sandboxed_process_thread_type_handler.h"
#endif
#if BUILDFLAG(IS_ARKWEB)
#include "arkweb/chromium_ext/content/child/child_process_utils.h"
#endif
namespace content {
namespace {
constinit thread_local ChildProcess* child_process = nullptr;
class ChildIOThread : public base::Thread {
public:
ChildIOThread() : base::Thread("Chrome_ChildIOThread") {}
ChildIOThread(const ChildIOThread&) = delete;
ChildIOThread(ChildIOThread&&) = delete;
ChildIOThread& operator=(const ChildIOThread&) = delete;
ChildIOThread& operator=(ChildIOThread&&) = delete;
void Run(base::RunLoop* run_loop) override {
mojo::InterfaceEndpointClient::SetThreadNameSuffixForMetrics(
"ChildIOThread");
#if BUILDFLAG(IS_ANDROID)
base::PlatformThreadPriorityMonitor::Get().RegisterCurrentThread(
"IOThread");
#endif
base::ScopedClosureRunner unregister_thread_closure;
if (base::HangWatcher::IsIOThreadHangWatchingEnabled()) {
unregister_thread_closure = base::HangWatcher::RegisterThread(
base::HangWatcher::ThreadType::kIOThread);
}
base::Thread::Run(run_loop);
}
};
}
ChildProcess::ChildProcess(base::ThreadType io_thread_type,
std::unique_ptr<base::ThreadPoolInstance::InitParams>
thread_pool_init_params,
bool is_renderer)
: resetter_(&child_process, this, nullptr),
io_thread_(std::make_unique<ChildIOThread>()),
is_renderer_(is_renderer) {
auto* thread_pool = base::ThreadPoolInstance::Get();
DCHECK(thread_pool);
if (!thread_pool->WasStartedUnsafe()) {
if (thread_pool_init_params)
thread_pool->Start(*thread_pool_init_params.get());
else
thread_pool->StartWithDefaultParams();
initialized_thread_pool_ = true;
}
ProcessVisibilityTracker::GetInstance();
#if BUILDFLAG(IS_ANDROID)
SetupCpuTimeMetrics();
#endif
base::Thread::Options thread_options(base::MessagePumpType::IO, 0);
thread_options.thread_type = io_thread_type;
#if BUILDFLAG(IS_ANDROID) || (BUILDFLAG(ARKWEB_FLING) && BUILDFLAG(ARKWEB_SCROLL_PERFORMANCE))
thread_options.thread_type = base::ThreadType::kDisplayCritical;
#endif
if (base::FeatureList::IsEnabled(features::kIOThreadInteractiveThreadType)) {
thread_options.thread_type = base::ThreadType::kInteractive;
}
if (base::FeatureList::IsEnabled(
network::features::kNetworkServiceTaskScheduler) &&
base::ThreadIdNameManager::GetInstance()->GetName(
base::PlatformThread::CurrentId()) ==
std::string_view("network.CrUtilityMain")) {
network::ConfigureSequenceManager(thread_options);
}
scenario_priority_boost_ =
std::make_unique<base::TaskMonitoringScopedBoostPriority>(
base::ThreadType::kInteractive,
base::BindRepeating(&ChildProcess::ShouldBoostIOThreadPriority,
base::Unretained(this)));
if (base::FeatureList::IsEnabled(
features::kBoostThreadsPriorityDuringInputScenario)) {
thread_options.task_observer = scenario_priority_boost_.get();
}
CHECK(io_thread_->StartWithOptions(std::move(thread_options)));
io_thread_runner_ = io_thread_->task_runner();
implUtils = new ChildProcessUtils(this);
}
ChildProcess::ChildProcess(
scoped_refptr<base::SingleThreadTaskRunner> io_thread_runner)
: resetter_(&child_process, this, nullptr),
io_thread_runner_(std::move(io_thread_runner)) {
implUtils = new ChildProcessUtils(this);
}
ChildProcess::~ChildProcess() {
DCHECK_EQ(child_process, this);
shutdown_event_.Signal();
if (main_thread_) {
#if BUILDFLAG(ARKWEB_PERFORMANCE_SCHEDULING)
implUtils->ReportIoThreadStatus(false, main_thread_->IsInBrowserProcess());
#endif
main_thread_->Shutdown();
if (main_thread_->ShouldBeDestroyed()) {
main_thread_.reset();
} else {
main_thread_.release();
}
}
if (io_thread_) {
io_thread_->Stop();
io_thread_.reset();
}
if (initialized_thread_pool_) {
DCHECK(base::ThreadPoolInstance::Get());
base::ThreadPoolInstance::Get()->Shutdown();
}
#if BUILDFLAG(CLANG_PROFILING_INSIDE_SANDBOX) && BUILDFLAG(CLANG_PGO_PROFILING)
base::WriteClangProfilingProfile();
#endif
delete implUtils;
}
#if BUILDFLAG(ARKWEB_PERFORMANCE_SCHEDULING)
void ChildProcess::ReportCompositorKeyThread(bool is_created) {
if (implUtils) {
implUtils->ReportCompositorKeyThread(is_created, main_thread_->IsInBrowserProcess());
}
}
#endif
ChildThreadImpl* ChildProcess::main_thread() {
return main_thread_.get();
}
void ChildProcess::set_main_thread(ChildThreadImpl* thread) {
main_thread_.reset(thread);
#if BUILDFLAG(ARKWEB_PERFORMANCE_SCHEDULING)
implUtils->ReportIoThreadStatus(true, main_thread_->IsInBrowserProcess());
#endif
}
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
void ChildProcess::SetIOThreadType(base::ThreadType thread_type) {
if (!io_thread_) {
return;
}
if (SandboxedProcessThreadTypeHandler* sandboxed_process_thread_type_handler =
SandboxedProcessThreadTypeHandler::Get()) {
sandboxed_process_thread_type_handler->HandleThreadTypeChange(
io_thread_->GetThreadId(), base::ThreadType::kDisplayCritical);
}
}
#endif
void ChildProcess::AddRefProcess() {
DCHECK(!main_thread_.get() ||
main_thread_->main_thread_runner()->BelongsToCurrentThread());
ref_count_++;
}
void ChildProcess::ReleaseProcess() {
DCHECK(!main_thread_.get() ||
main_thread_->main_thread_runner()->BelongsToCurrentThread());
DCHECK(ref_count_);
if (--ref_count_)
return;
if (main_thread_)
main_thread_->OnProcessFinalRelease();
}
ChildProcess* ChildProcess::current() {
return child_process;
}
base::WaitableEvent* ChildProcess::GetShutDownEvent() {
return &shutdown_event_;
}
bool ChildProcess::ShouldBoostIOThreadPriority() {
DCHECK(base::FeatureList::IsEnabled(
features::kBoostThreadsPriorityDuringInputScenario));
performance_scenarios::ScenarioPattern no_input{
.input = {performance_scenarios::InputScenario::kNoInput},
};
performance_scenarios::ScenarioScope scope =
is_renderer_ ? performance_scenarios::ScenarioScope::kCurrentProcess
: performance_scenarios::ScenarioScope::kGlobal;
return !performance_scenarios::CurrentScenariosMatch(scope, no_input);
}
}