Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1269)

Unified Diff: content/gpu/gpu_main.cc

Issue 14271005: Refactor GPU init to allow ARM sandboxing. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/gpu/gpu_main.cc
diff --git a/content/gpu/gpu_main.cc b/content/gpu/gpu_main.cc
index 270a52b7508a06f82c8cc97cd3fff72c2937315b..9c3d924f9bc8c904ec268fcd7a86476ce51dd67a 100644
--- a/content/gpu/gpu_main.cc
+++ b/content/gpu/gpu_main.cc
@@ -54,7 +54,10 @@ const int kGpuTimeout = 10000;
namespace content {
namespace {
-void WarmUpSandbox(const GPUInfo&, bool);
+void WarmUpSandboxInitial();
+void WarmUpSandboxComplete(const GPUInfo&, bool);
+void DoInitializeSandbox(scoped_refptr<GpuWatchdogThread>, GPUInfo&);
+void DoLowerToken(GPUInfo&);
}
// Main function for starting the Gpu process.
@@ -170,12 +173,20 @@ int GpuMain(const MainFunctionParams& parameters) {
command_line.GetSwitchValueASCII(switches::kGpuDriverVersion);
GetContentClient()->SetGpuInfo(gpu_info);
- // We need to track that information for the WarmUpSandbox function.
+ WarmUpSandboxInitial();
+
+ bool initialized_sandbox = false;
+#if defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL)
jln (very slow on Chromium) 2013/04/16 19:45:54 Are these ifdef really the best way ? Can we have
Jorge Lucangeli Obes 2013/04/16 21:26:29 The only way I see to have driver information at t
+ DoInitializeSandbox(watchdog_thread, gpu_info);
+ initialized_sandbox = true;
+#endif
+
+ // We need to track this information for the WarmUpSandbox function.
bool initialized_gl_context = false;
// Load and initialize the GL implementation and locate the GL entry points.
if (gfx::GLSurface::InitializeOneOff()) {
// We need to collect GL strings (VENDOR, RENDERER) for blacklisting
- // purpose. However, on Mac we don't actually use them. As documented in
+ // purposes. However, on Mac we don't actually use them. As documented in
// crbug.com/222934, due to some driver issues, glGetString could take
// multiple seconds to finish, which in turn cause the GPU process to crash.
// By skipping the following code on Mac, we don't really lose anything,
@@ -222,47 +233,18 @@ int GpuMain(const MainFunctionParams& parameters) {
watchdog_thread = NULL;
}
- {
- const bool should_initialize_gl_context = !initialized_gl_context &&
- !dead_on_arrival;
- // Warm up the current process before enabling the sandbox.
- WarmUpSandbox(gpu_info, should_initialize_gl_context);
- }
+ const bool should_initialize_gl_context = !initialized_gl_context &&
+ !dead_on_arrival;
+ // Finish warming up the current process.
+ WarmUpSandboxComplete(gpu_info, should_initialize_gl_context);
#if defined(OS_LINUX)
- {
- TRACE_EVENT0("gpu", "Initialize sandbox");
- bool do_init_sandbox = true;
-
-#if defined(OS_CHROMEOS) && defined(NDEBUG)
- // On Chrome OS and when not on a debug build, initialize
- // the GPU process' sandbox only for Intel GPUs.
- do_init_sandbox = gpu_info.gpu.vendor_id == 0x8086; // Intel GPU.
-#endif
-
- if (do_init_sandbox) {
- if (watchdog_thread.get())
- watchdog_thread->Stop();
- gpu_info.sandboxed = LinuxSandbox::InitializeSandbox();
- if (watchdog_thread.get())
- watchdog_thread->Start();
- }
- }
+ if (!initialized_sandbox)
jln (very slow on Chromium) 2013/04/16 19:45:54 Wouldn't it make sense to also move "WarmUpSandbox
Jorge Lucangeli Obes 2013/04/16 21:26:29 Done.
+ DoInitializeSandbox(watchdog_thread, gpu_info);
#endif
#if defined(OS_WIN)
- {
- TRACE_EVENT0("gpu", "Lower token");
- // For windows, if the target_services interface is not zero, the process
- // is sandboxed and we must call LowerToken() before rendering untrusted
- // content.
- sandbox::TargetServices* target_services =
- parameters.sandbox_info->target_services;
- if (target_services) {
- target_services->LowerToken();
- gpu_info.sandboxed = true;
- }
- }
+ DoLowerToken(gpu_info);
jln (very slow on Chromium) 2013/04/16 19:45:54 Maybe rename to StartWindowsSandbox() ? It's quite
Jorge Lucangeli Obes 2013/04/16 21:26:29 Done.
#endif
GpuProcess gpu_process;
@@ -315,8 +297,7 @@ void CreateDummyGlContext() {
}
#endif
-void WarmUpSandbox(const GPUInfo& gpu_info,
- bool should_initialize_gl_context) {
+void WarmUpSandboxInitial() {
{
TRACE_EVENT0("gpu", "Warm up rand");
// Warm up the random subsystem, which needs to be done pre-sandbox on all
@@ -342,17 +323,6 @@ void WarmUpSandbox(const GPUInfo& gpu_info,
VaapiVideoDecodeAccelerator::PreSandboxInitialization();
#endif
-#if defined(OS_LINUX)
- // We special case Optimus since the vendor_id we see may not be Nvidia.
- bool uses_nvidia_driver = (gpu_info.gpu.vendor_id == 0x10de && // NVIDIA.
- gpu_info.driver_vendor == "NVIDIA") ||
- gpu_info.optimus;
- if (uses_nvidia_driver && should_initialize_gl_context) {
- // We need this on Nvidia to pre-open /dev/nvidiactl and /dev/nvidia0.
- CreateDummyGlContext();
- }
-#endif
-
#if defined(OS_WIN)
{
TRACE_EVENT0("gpu", "Preload setupapi.dll");
@@ -368,6 +338,48 @@ void WarmUpSandbox(const GPUInfo& gpu_info,
#endif
}
+void WarmUpSandboxComplete(const GPUInfo& gpu_info,
jln (very slow on Chromium) 2013/04/16 19:45:54 Nit: for some reason I have the impression that Wa
+ bool should_initialize_gl_context) {
+#if defined(OS_LINUX)
+ // We special case Optimus since the vendor_id we see may not be Nvidia.
+ bool uses_nvidia_driver = (gpu_info.gpu.vendor_id == 0x10de && // NVIDIA.
+ gpu_info.driver_vendor == "NVIDIA") ||
+ gpu_info.optimus;
+ if (uses_nvidia_driver && should_initialize_gl_context) {
+ // We need this on Nvidia to pre-open /dev/nvidiactl and /dev/nvidia0.
+ CreateDummyGlContext();
+ }
+#endif
+}
+
+#if defined(OS_LINUX)
+void DoInitializeSandbox(scoped_refptr<GpuWatchdogThread> watchdog_thread,
jln (very slow on Chromium) 2013/04/16 19:45:54 I think a raw pointer to the watchdog_thread is be
Jorge Lucangeli Obes 2013/04/16 21:26:29 Done.
+ GPUInfo& gpu_info) {
jln (very slow on Chromium) 2013/04/16 19:45:54 Non const references are evil (and forbidden). Jus
Jorge Lucangeli Obes 2013/04/16 21:26:29 Done.
+ TRACE_EVENT0("gpu", "Initialize sandbox");
+
+ if (watchdog_thread.get())
+ watchdog_thread->Stop();
jln (very slow on Chromium) 2013/04/16 19:45:54 Do you want to take this opportunity to add a comm
Jorge Lucangeli Obes 2013/04/16 21:26:29 Done.
+ gpu_info.sandboxed = LinuxSandbox::InitializeSandbox();
+ if (watchdog_thread.get())
+ watchdog_thread->Start();
+}
+#endif
+
+#if defined(OS_WIN)
+bool DoLowerToken(GPUInfo& gpu_info) {
jln (very slow on Chromium) 2013/04/16 19:45:54 Same remark regarding non const references.
Jorge Lucangeli Obes 2013/04/16 21:26:29 Done.
+ TRACE_EVENT0("gpu", "Lower token");
+ // For Windows, if the target_services interface is not zero, the process
+ // is sandboxed and we must call LowerToken() before rendering untrusted
+ // content.
+ sandbox::TargetServices* target_services =
+ parameters.sandbox_info->target_services;
+ if (target_services) {
+ target_services->LowerToken();
+ gpu_info.sandboxed = true;
+ }
+}
+#endif
+
} // namespace.
} // namespace content
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698