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

Side by Side Diff: content/common/sandbox_init_win.cc

Issue 10690070: Restored missing broker initialization. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/service/service_main.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/public/common/sandbox_init.h" 5 #include "content/public/common/sandbox_init.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "content/common/sandbox_policy.h" 9 #include "content/common/sandbox_policy.h"
10 #include "content/public/common/content_switches.h" 10 #include "content/public/common/content_switches.h"
11 #include "sandbox/src/sandbox.h" 11 #include "sandbox/src/sandbox.h"
12 #include "sandbox/src/sandbox_types.h" 12 #include "sandbox/src/sandbox_types.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 bool InitializeSandbox( 16 bool InitializeSandbox(
17 sandbox::SandboxInterfaceInfo* sandbox_info) { 17 sandbox::SandboxInterfaceInfo* sandbox_info) {
18 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); 18 const CommandLine& command_line = *CommandLine::ForCurrentProcess();
19 std::string process_type = 19 std::string process_type =
20 command_line.GetSwitchValueASCII(switches::kProcessType); 20 command_line.GetSwitchValueASCII(switches::kProcessType);
21 sandbox::BrokerServices* broker_services = sandbox_info->broker_services;
22 if (broker_services && (process_type.empty() ||
23 process_type == switches::kNaClBrokerProcess ||
24 process_type == switches::kServiceProcess)) {
25 if (!sandbox::InitBrokerServices(broker_services))
26 return false;
27 }
28
21 if (process_type.empty() || process_type == switches::kNaClBrokerProcess) { 29 if (process_type.empty() || process_type == switches::kNaClBrokerProcess) {
22 // IMPORTANT: This piece of code needs to run as early as possible in the 30 // IMPORTANT: This piece of code needs to run as early as possible in the
23 // process because it will initialize the sandbox broker, which requires the 31 // process because it will initialize the sandbox broker, which requires the
24 // process to swap its window station. During this time all the UI will be 32 // process to swap its window station. During this time all the UI will be
Vitaly Buka (NO REVIEWS) 2012/07/03 05:01:09 Moved comment back and removed unnecessary changes
25 // broken. This has to run before threads and windows are created. 33 // broken. This has to run before threads and windows are created.
26 sandbox::BrokerServices* broker_services = sandbox_info->broker_services;
27 if (broker_services) { 34 if (broker_services) {
28 if (!sandbox::InitBrokerServices(broker_services))
29 return false;
30 if (!command_line.HasSwitch(switches::kNoSandbox)) { 35 if (!command_line.HasSwitch(switches::kNoSandbox)) {
31 bool use_winsta = !command_line.HasSwitch( 36 bool use_winsta = !command_line.HasSwitch(
32 switches::kDisableAltWinstation); 37 switches::kDisableAltWinstation);
33 // Precreate the desktop and window station used by the renderers. 38 // Precreate the desktop and window station used by the renderers.
34 sandbox::TargetPolicy* policy = broker_services->CreatePolicy(); 39 sandbox::TargetPolicy* policy = broker_services->CreatePolicy();
35 sandbox::ResultCode result = policy->CreateAlternateDesktop(use_winsta); 40 sandbox::ResultCode result = policy->CreateAlternateDesktop(use_winsta);
36 CHECK(sandbox::SBOX_ERROR_FAILED_TO_SWITCH_BACK_WINSTATION != result); 41 CHECK(sandbox::SBOX_ERROR_FAILED_TO_SWITCH_BACK_WINSTATION != result);
37 policy->Release(); 42 policy->Release();
38 } 43 }
39 } 44 }
(...skipping 15 matching lines...) Expand all
55 } else { 60 } else {
56 // Other process types might or might not be sandboxed. 61 // Other process types might or might not be sandboxed.
57 // TODO(cpu): clean this mess. 62 // TODO(cpu): clean this mess.
58 if (!target_services) 63 if (!target_services)
59 return true; 64 return true;
60 } 65 }
61 return sandbox::InitTargetServices(target_services); 66 return sandbox::InitTargetServices(target_services);
62 } 67 }
63 68
64 } // namespace content 69 } // namespace content
OLDNEW
« no previous file with comments | « chrome/service/service_main.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698