1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/public/common/sandbox_init.h"
7 #include "base/command_line.h"
8 #include "base/file_path.h"
9 #include "base/logging.h"
10 #include "content/common/sandbox_mac.h"
11 #include "content/public/common/content_switches.h"
15 bool InitializeSandbox(int sandbox_type
, const FilePath
& allowed_dir
) {
16 // Warm up APIs before turning on the sandbox.
17 Sandbox::SandboxWarmup(sandbox_type
);
19 // Actually sandbox the process.
20 return Sandbox::EnableSandbox(sandbox_type
, allowed_dir
);
23 // Fill in |sandbox_type| and |allowed_dir| based on the command line, returns
24 // false if the current process type doesn't need to be sandboxed or if the
25 // sandbox was disabled from the command line.
26 bool GetSandboxTypeFromCommandLine(int* sandbox_type
,
27 FilePath
* allowed_dir
) {
32 *allowed_dir
= FilePath(); // Empty by default.
34 const CommandLine
& command_line
= *CommandLine::ForCurrentProcess();
35 if (command_line
.HasSwitch(switches::kNoSandbox
))
38 std::string process_type
=
39 command_line
.GetSwitchValueASCII(switches::kProcessType
);
40 if (process_type
.empty()) {
41 // Browser process isn't sandboxed.
43 } else if (process_type
== switches::kRendererProcess
) {
44 if (!command_line
.HasSwitch(switches::kDisable3DAPIs
) &&
45 !command_line
.HasSwitch(switches::kDisableExperimentalWebGL
) &&
46 command_line
.HasSwitch(switches::kInProcessWebGL
)) {
47 // TODO(kbr): this check seems to be necessary only on this
48 // platform because the sandbox is initialized later. Remove
49 // this once this flag is removed.
52 *sandbox_type
= SANDBOX_TYPE_RENDERER
;
54 } else if (process_type
== switches::kUtilityProcess
) {
55 // Utility process sandbox.
56 *sandbox_type
= SANDBOX_TYPE_UTILITY
;
58 command_line
.GetSwitchValuePath(switches::kUtilityProcessAllowedDir
);
59 } else if (process_type
== switches::kWorkerProcess
) {
60 // Worker process sandbox.
61 *sandbox_type
= SANDBOX_TYPE_WORKER
;
62 } else if (process_type
== switches::kGpuProcess
) {
63 *sandbox_type
= SANDBOX_TYPE_GPU
;
64 } else if ((process_type
== switches::kPluginProcess
) ||
65 (process_type
== switches::kServiceProcess
) ||
66 (process_type
== switches::kPpapiBrokerProcess
)) {
68 } else if (process_type
== switches::kPpapiPluginProcess
) {
69 *sandbox_type
= SANDBOX_TYPE_PPAPI
;
71 // Failsafe: If you hit an unreached here, is your new process type in need
73 NOTREACHED() << "Unknown process type " << process_type
;
79 bool InitializeSandbox() {
82 if (!GetSandboxTypeFromCommandLine(&sandbox_type
, &allowed_dir
))
84 return InitializeSandbox(sandbox_type
, allowed_dir
);
87 } // namespace content