#include "content/child/child_process.h"
#include <string.h>
#include "base/clang_profiling_buildflags.h"
#include "base/command_line.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/thread.h"
#include "build/build_config.h"
#include "build/config/compiler/compiler_buildflags.h"
#include "content/child/child_thread_impl.h"
#include "content/common/android/cpu_time_metrics.h"
#include "content/common/mojo_core_library_support.h"
#include "content/common/process_visibility_tracker.h"
#include "content/public/common/content_switches.h"
#include "gpu/ipc/common/nweb_native_window_tracker.h"
#include "mojo/public/cpp/system/dynamic_library_support.h"
#include "sandbox/policy/sandbox_type.h"
#include "services/tracing/public/cpp/trace_startup.h"
#include "third_party/abseil-cpp/absl/base/attributes.h"
#include "third_party/blink/public/common/features.h"
#if BUILDFLAG(CLANG_PROFILING_INSIDE_SANDBOX)
#include "base/test/clang_profiling.h"
#endif
#if BUILDFLAG(IS_OHOS)
#include "base/threading/platform_thread.h"
#include "res_sched_client_adapter.h"
#endif
namespace content {
namespace {
ABSL_CONST_INIT 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 {
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)
: resetter_(&child_process, this, nullptr),
io_thread_(std::make_unique<ChildIOThread>()) {
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
const base::CommandLine& command_line =
*base::CommandLine::ForCurrentProcess();
const bool is_embedded_in_browser_process =
!command_line.HasSwitch(switches::kProcessType);
if (IsMojoCoreSharedLibraryEnabled() && !is_embedded_in_browser_process) {
MojoInitializeFlags flags = MOJO_INITIALIZE_FLAG_NONE;
if (sandbox::policy::IsUnsandboxedSandboxType(
sandbox::policy::SandboxTypeFromCommandLine(command_line))) {
flags |= MOJO_INITIALIZE_FLAG_FORCE_DIRECT_SHARED_MEMORY_ALLOCATION;
}
CHECK_EQ(MOJO_RESULT_OK, mojo::InitializeCoreLibrary(flags));
}
#endif
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;
}
tracing::InitTracingPostThreadPoolStartAndFeatureList(
false);
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(IS_OHOS) && defined(OHOS_SCROLL_PERFORMANCE))
thread_options.thread_type = base::ThreadType::kCompositing;
#endif
CHECK(io_thread_->StartWithOptions(std::move(thread_options)));
}
ChildProcess::~ChildProcess() {
DCHECK_EQ(child_process, this);
shutdown_event_.Signal();
if (main_thread_) {
#if BUILDFLAG(IS_OHOS)
ReportIoThreadStatus(false);
#endif
main_thread_->Shutdown();
if (main_thread_->ShouldBeDestroyed()) {
main_thread_.reset();
} else {
main_thread_.release();
}
}
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)
base::WriteClangProfilingProfile();
#endif
}
#if BUILDFLAG(IS_OHOS)
void ChildProcess::ReportIoThreadStatus(bool is_created) {
if (!main_thread_) {
return;
}
using namespace OHOS::NWeb;
ResSchedStatusAdapter status = is_created ?
ResSchedStatusAdapter::THREAD_CREATED : ResSchedStatusAdapter::THREAD_DESTROYED;
auto type = base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
switches::kProcessType);
if (main_thread_->IsInBrowserProcess()) {
ResSchedClientAdapter::ReportKeyThread(
status, base::GetCurrentRealPid(), io_thread_->GetThreadRealId(), ResSchedRoleAdapter::USER_INTERACT);
} else if (type == switches::kGpuProcess) {
if (NWebNativeWindowTracker::Get() &&
NWebNativeWindowTracker::Get()->g_browser_client_) {
LOG(DEBUG) << "get native window success pid:" << base::GetCurrentRealPid()
<< ", tid = " << io_thread_->GetThreadRealId();
NWebNativeWindowTracker::Get()->g_browser_client_ -> ReportThread(
status, base::GetCurrentRealPid(), io_thread_->GetThreadRealId(),
ResSchedRoleAdapter::USER_INTERACT);
}
} else {
main_thread_->ReportKeyThread(
static_cast<int32_t>(status), base::GetCurrentRealPid(), io_thread_->GetThreadRealId(),
static_cast<int32_t>(ResSchedRoleAdapter::USER_INTERACT));
}
}
void ChildProcess::ReportCompositorKeyThread(bool is_created) {
if (!main_thread_) {
LOG(WARNING) << "main thread is nullptr, can not report key"
<< base::PlatformThread::CurrentRealId() << " id created: " << is_created;
return;
}
if (main_thread_->IsInBrowserProcess()) {
return;
}
using namespace OHOS::NWeb;
ResSchedStatusAdapter status = is_created ?
ResSchedStatusAdapter::THREAD_CREATED : ResSchedStatusAdapter::THREAD_DESTROYED;
main_thread_->ReportKeyThread(
static_cast<int32_t>(status), base::GetCurrentRealPid(), base::PlatformThread::CurrentRealId(),
static_cast<int32_t>(ResSchedRoleAdapter::IMPORTANT_DISPLAY));
LOG(DEBUG) << "child process pid: "
<< base::GetCurrentRealPid() << ", tid: " << base::PlatformThread::CurrentRealId() << " id created: " << is_created;
}
#endif
ChildThreadImpl* ChildProcess::main_thread() {
return main_thread_.get();
}
void ChildProcess::set_main_thread(ChildThreadImpl* thread) {
main_thread_.reset(thread);
#if BUILDFLAG(IS_OHOS)
ReportIoThreadStatus(true);
#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_;
}
}