2017-10-28 02:10:06 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2016-06-11 05:27:24 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "GPUProcessImpl.h"
|
|
|
|
#include "mozilla/ipc/IOThreadChild.h"
|
2016-10-12 10:08:37 +03:00
|
|
|
#include "nsXPCOM.h"
|
2021-06-09 07:56:48 +03:00
|
|
|
#include "mozilla/ipc/ProcessUtils.h"
|
2021-10-26 22:42:03 +03:00
|
|
|
#include "mozilla/GeckoArgs.h"
|
2016-06-11 05:27:24 +03:00
|
|
|
|
2017-04-24 19:46:09 +03:00
|
|
|
#if defined(OS_WIN) && defined(MOZ_SANDBOX)
|
|
|
|
# include "mozilla/sandboxTarget.h"
|
2019-11-07 12:56:07 +03:00
|
|
|
#elif defined(__OpenBSD__) && defined(MOZ_SANDBOX)
|
|
|
|
# include "mozilla/SandboxSettings.h"
|
2017-04-24 19:46:09 +03:00
|
|
|
#endif
|
|
|
|
|
2016-06-11 05:27:24 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
using namespace ipc;
|
|
|
|
|
|
|
|
GPUProcessImpl::GPUProcessImpl(ProcessId aParentPid)
|
|
|
|
: ProcessChild(aParentPid) {}
|
|
|
|
|
2020-03-04 18:39:20 +03:00
|
|
|
GPUProcessImpl::~GPUProcessImpl() = default;
|
2016-06-11 05:27:24 +03:00
|
|
|
|
2017-02-05 08:52:38 +03:00
|
|
|
bool GPUProcessImpl::Init(int aArgc, char* aArgv[]) {
|
2017-04-24 19:46:09 +03:00
|
|
|
#if defined(MOZ_SANDBOX) && defined(OS_WIN)
|
|
|
|
mozilla::SandboxTarget::Instance()->StartSandbox();
|
2019-11-07 12:56:07 +03:00
|
|
|
#elif defined(__OpenBSD__) && defined(MOZ_SANDBOX)
|
|
|
|
StartOpenBSDSandbox(GeckoProcessType_GPU);
|
2017-04-24 19:46:09 +03:00
|
|
|
#endif
|
2019-05-26 05:33:12 +03:00
|
|
|
|
2021-10-26 22:42:03 +03:00
|
|
|
Maybe<const char*> parentBuildID =
|
|
|
|
geckoargs::sParentBuildID.Get(aArgc, aArgv);
|
|
|
|
if (parentBuildID.isNothing()) {
|
|
|
|
return false;
|
2018-05-08 17:31:44 +03:00
|
|
|
}
|
2017-04-24 19:46:09 +03:00
|
|
|
|
2021-10-26 22:42:03 +03:00
|
|
|
if (!ProcessChild::InitPrefs(aArgc, aArgv)) {
|
2019-05-26 05:33:12 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-10-26 22:42:03 +03:00
|
|
|
return mGPU.Init(ParentPid(), *parentBuildID,
|
2021-06-22 21:17:23 +03:00
|
|
|
IOThreadChild::TakeInitialPort());
|
2016-06-11 05:27:24 +03:00
|
|
|
}
|
|
|
|
|
2016-10-12 10:08:37 +03:00
|
|
|
void GPUProcessImpl::CleanUp() { NS_ShutdownXPCOM(nullptr); }
|
2016-06-11 05:27:24 +03:00
|
|
|
|
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|