1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/utility_process_host_impl.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/command_line.h"
#include "base/lazy_instance.h"
#include "base/message_loop/message_loop.h"
#include "base/run_loop.h"
#include "base/sequenced_task_runner.h"
#include "base/strings/utf_string_conversions.h"
#include "base/synchronization/lock.h"
#include "base/synchronization/waitable_event.h"
#include "content/browser/browser_child_process_host_impl.h"
#include "content/browser/renderer_host/render_process_host_impl.h"
#include "content/common/child_process_host_impl.h"
#include "content/common/utility_messages.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/content_browser_client.h"
#include "content/public/browser/utility_process_host_client.h"
#include "content/public/common/content_switches.h"
#include "content/public/common/process_type.h"
#include "content/public/common/sandboxed_process_launcher_delegate.h"
#include "ipc/ipc_switches.h"
#include "ui/base/ui_base_switches.h"
namespace content {
// NOTE: changes to this class need to be reviewed by the security team.
class UtilitySandboxedProcessLauncherDelegate
: public SandboxedProcessLauncherDelegate {
public:
UtilitySandboxedProcessLauncherDelegate(const base::FilePath& exposed_dir,
bool launch_elevated, bool no_sandbox,
base::EnvironmentMap& env,
ChildProcessHost* host)
: exposed_dir_(exposed_dir),
#if defined(OS_WIN)
launch_elevated_(launch_elevated)
#elif defined(OS_POSIX)
env_(env),
no_sandbox_(no_sandbox),
ipc_fd_(host->TakeClientFileDescriptor())
#endif // OS_WIN
{}
~UtilitySandboxedProcessLauncherDelegate() override {}
#if defined(OS_WIN)
virtual bool ShouldLaunchElevated() override {
return launch_elevated_;
}
virtual void PreSandbox(bool* disable_default_policy,
base::FilePath* exposed_dir) override {
*exposed_dir = exposed_dir_;
}
#elif defined(OS_POSIX)
bool ShouldUseZygote() override {
return !no_sandbox_ && exposed_dir_.empty();
}
base::EnvironmentMap GetEnvironment() override { return env_; }
base::ScopedFD TakeIpcFd() override { return ipc_fd_.Pass(); }
#endif // OS_WIN
private:
base::FilePath exposed_dir_;
#if defined(OS_WIN)
bool launch_elevated_;
#elif defined(OS_POSIX)
base::EnvironmentMap env_;
bool no_sandbox_;
base::ScopedFD ipc_fd_;
#endif // OS_WIN
};
UtilityMainThreadFactoryFunction g_utility_main_thread_factory = NULL;
UtilityProcessHost* UtilityProcessHost::Create(
const scoped_refptr<UtilityProcessHostClient>& client,
const scoped_refptr<base::SequencedTaskRunner>& client_task_runner) {
return new UtilityProcessHostImpl(client, client_task_runner);
}
void UtilityProcessHostImpl::RegisterUtilityMainThreadFactory(
UtilityMainThreadFactoryFunction create) {
g_utility_main_thread_factory = create;
}
UtilityProcessHostImpl::UtilityProcessHostImpl(
const scoped_refptr<UtilityProcessHostClient>& client,
const scoped_refptr<base::SequencedTaskRunner>& client_task_runner)
: client_(client),
client_task_runner_(client_task_runner),
is_batch_mode_(false),
is_mdns_enabled_(false),
no_sandbox_(false),
run_elevated_(false),
#if defined(OS_LINUX)
child_flags_(ChildProcessHost::CHILD_ALLOW_SELF),
#else
child_flags_(ChildProcessHost::CHILD_NORMAL),
#endif
started_(false) {
}
UtilityProcessHostImpl::~UtilityProcessHostImpl() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
if (is_batch_mode_)
EndBatchMode();
}
bool UtilityProcessHostImpl::Send(IPC::Message* message) {
if (!StartProcess())
return false;
return process_->Send(message);
}
bool UtilityProcessHostImpl::StartBatchMode() {
CHECK(!is_batch_mode_);
is_batch_mode_ = StartProcess();
Send(new UtilityMsg_BatchMode_Started());
return is_batch_mode_;
}
void UtilityProcessHostImpl::EndBatchMode() {
CHECK(is_batch_mode_);
is_batch_mode_ = false;
Send(new UtilityMsg_BatchMode_Finished());
}
void UtilityProcessHostImpl::SetExposedDir(const base::FilePath& dir) {
exposed_dir_ = dir;
}
void UtilityProcessHostImpl::EnableMDns() {
is_mdns_enabled_ = true;
}
void UtilityProcessHostImpl::DisableSandbox() {
no_sandbox_ = true;
}
#if defined(OS_WIN)
void UtilityProcessHostImpl::ElevatePrivileges() {
no_sandbox_ = true;
run_elevated_ = true;
}
#endif
const ChildProcessData& UtilityProcessHostImpl::GetData() {
return process_->GetData();
}
#if defined(OS_POSIX)
void UtilityProcessHostImpl::SetEnv(const base::EnvironmentMap& env) {
env_ = env;
}
#endif // OS_POSIX
bool UtilityProcessHostImpl::StartProcess() {
if (started_)
return true;
started_ = true;
if (is_batch_mode_)
return true;
// Name must be set or metrics_service will crash in any test which
// launches a UtilityProcessHost.
process_.reset(new BrowserChildProcessHostImpl(PROCESS_TYPE_UTILITY, this));
process_->SetName(base::ASCIIToUTF16("utility process"));
std::string channel_id = process_->GetHost()->CreateChannel();
if (channel_id.empty())
return false;
if (RenderProcessHost::run_renderer_in_process()) {
DCHECK(g_utility_main_thread_factory);
// See comment in RenderProcessHostImpl::Init() for the background on why we
// support single process mode this way.
in_process_thread_.reset(g_utility_main_thread_factory(channel_id));
in_process_thread_->Start();
} else {
const base::CommandLine& browser_command_line =
*base::CommandLine::ForCurrentProcess();
int child_flags = child_flags_;
#if defined(OS_POSIX)
bool has_cmd_prefix = browser_command_line.HasSwitch(
switches::kUtilityCmdPrefix);
// When running under gdb, forking /proc/self/exe ends up forking the gdb
// executable instead of Chromium. It is almost safe to assume that no
// updates will happen while a developer is running with
// |switches::kUtilityCmdPrefix|. See ChildProcessHost::GetChildPath() for
// a similar case with Valgrind.
if (has_cmd_prefix)
child_flags = ChildProcessHost::CHILD_NORMAL;
#endif
base::FilePath exe_path = ChildProcessHost::GetChildPath(child_flags);
if (exe_path.empty()) {
NOTREACHED() << "Unable to get utility process binary name.";
return false;
}
base::CommandLine* cmd_line = new base::CommandLine(exe_path);
cmd_line->AppendSwitchASCII(switches::kProcessType,
switches::kUtilityProcess);
cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id);
std::string locale = GetContentClient()->browser()->GetApplicationLocale();
cmd_line->AppendSwitchASCII(switches::kLang, locale);
if (no_sandbox_ || browser_command_line.HasSwitch(switches::kNoSandbox))
cmd_line->AppendSwitch(switches::kNoSandbox);
#if defined(OS_MACOSX)
if (browser_command_line.HasSwitch(switches::kEnableSandboxLogging))
cmd_line->AppendSwitch(switches::kEnableSandboxLogging);
#endif
if (browser_command_line.HasSwitch(switches::kDebugPluginLoading))
cmd_line->AppendSwitch(switches::kDebugPluginLoading);
#if defined(OS_POSIX)
if (has_cmd_prefix) {
// Launch the utility child process with some prefix
// (usually "xterm -e gdb --args").
cmd_line->PrependWrapper(browser_command_line.GetSwitchValueNative(
switches::kUtilityCmdPrefix));
}
if (!exposed_dir_.empty()) {
cmd_line->AppendSwitchPath(switches::kUtilityProcessAllowedDir,
exposed_dir_);
}
#endif
if (is_mdns_enabled_)
cmd_line->AppendSwitch(switches::kUtilityProcessEnableMDns);
#if defined(OS_WIN)
// Let the utility process know if it is intended to be elevated.
if (run_elevated_)
cmd_line->AppendSwitch(switches::kUtilityProcessRunningElevated);
#endif
process_->Launch(
new UtilitySandboxedProcessLauncherDelegate(exposed_dir_,
run_elevated_,
no_sandbox_, env_,
process_->GetHost()),
cmd_line);
}
return true;
}
bool UtilityProcessHostImpl::OnMessageReceived(const IPC::Message& message) {
if (!client_.get())
return true;
client_task_runner_->PostTask(
FROM_HERE,
base::Bind(
base::IgnoreResult(&UtilityProcessHostClient::OnMessageReceived),
client_.get(),
message));
return true;
}
void UtilityProcessHostImpl::OnProcessLaunchFailed() {
if (!client_.get())
return;
client_task_runner_->PostTask(
FROM_HERE,
base::Bind(&UtilityProcessHostClient::OnProcessLaunchFailed,
client_.get()));
}
void UtilityProcessHostImpl::OnProcessCrashed(int exit_code) {
if (!client_.get())
return;
client_task_runner_->PostTask(
FROM_HERE,
base::Bind(&UtilityProcessHostClient::OnProcessCrashed, client_.get(),
exit_code));
}
} // namespace content
|