Re-enable index-basics-workers test to see if still times
[chromium-blink-merge.git] / content / browser / ppapi_plugin_process_host.cc
blob9956326899b0f6ed274fe9bf59212f2a5565721b
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
3 // found in the LICENSE file.
5 #include "content/browser/ppapi_plugin_process_host.h"
7 #include <string>
9 #include "base/base_switches.h"
10 #include "base/command_line.h"
11 #include "base/files/file_path.h"
12 #include "base/process_util.h"
13 #include "base/utf_string_conversions.h"
14 #include "content/browser/browser_child_process_host_impl.h"
15 #include "content/browser/plugin_service_impl.h"
16 #include "content/browser/renderer_host/render_message_filter.h"
17 #include "content/common/child_process_host_impl.h"
18 #include "content/common/child_process_messages.h"
19 #include "content/public/browser/content_browser_client.h"
20 #include "content/public/common/content_switches.h"
21 #include "content/public/common/pepper_plugin_info.h"
22 #include "content/public/common/process_type.h"
23 #include "ipc/ipc_switches.h"
24 #include "net/base/network_change_notifier.h"
25 #include "ppapi/proxy/ppapi_messages.h"
26 #include "ui/base/ui_base_switches.h"
27 #include "webkit/plugins/plugin_switches.h"
29 #if defined(OS_WIN)
30 #include "content/common/sandbox_win.h"
31 #include "content/public/common/sandboxed_process_launcher_delegate.h"
32 #include "sandbox/win/src/sandbox_policy.h"
33 #endif
35 namespace content {
37 #if defined(OS_WIN)
38 // NOTE: changes to this class need to be reviewed by the security team.
39 class PpapiPluginSandboxedProcessLauncherDelegate
40 : public content::SandboxedProcessLauncherDelegate {
41 public:
42 explicit PpapiPluginSandboxedProcessLauncherDelegate(bool is_broker)
43 : is_broker_(is_broker) {}
44 virtual ~PpapiPluginSandboxedProcessLauncherDelegate() {}
46 virtual void ShouldSandbox(bool* in_sandbox) OVERRIDE {
47 if (is_broker_)
48 *in_sandbox = false;
51 virtual void PreSpawnTarget(sandbox::TargetPolicy* policy,
52 bool* success) {
53 if (is_broker_)
54 return;
55 // The Pepper process as locked-down as a renderer execpt that it can
56 // create the server side of chrome pipes.
57 sandbox::ResultCode result;
58 result = policy->AddRule(sandbox::TargetPolicy::SUBSYS_NAMED_PIPES,
59 sandbox::TargetPolicy::NAMEDPIPES_ALLOW_ANY,
60 L"\\\\.\\pipe\\chrome.*");
61 *success = (result == sandbox::SBOX_ALL_OK);
64 private:
65 bool is_broker_;
67 DISALLOW_COPY_AND_ASSIGN(PpapiPluginSandboxedProcessLauncherDelegate);
69 #endif // OS_WIN
71 class PpapiPluginProcessHost::PluginNetworkObserver
72 : public net::NetworkChangeNotifier::IPAddressObserver,
73 public net::NetworkChangeNotifier::ConnectionTypeObserver {
74 public:
75 explicit PluginNetworkObserver(PpapiPluginProcessHost* process_host)
76 : process_host_(process_host) {
77 net::NetworkChangeNotifier::AddIPAddressObserver(this);
78 net::NetworkChangeNotifier::AddConnectionTypeObserver(this);
81 virtual ~PluginNetworkObserver() {
82 net::NetworkChangeNotifier::RemoveConnectionTypeObserver(this);
83 net::NetworkChangeNotifier::RemoveIPAddressObserver(this);
86 // IPAddressObserver implementation.
87 virtual void OnIPAddressChanged() OVERRIDE {
88 // TODO(brettw) bug 90246: This doesn't seem correct. The online/offline
89 // notification seems like it should be sufficient, but I don't see that
90 // when I unplug and replug my network cable. Sending this notification when
91 // "something" changes seems to make Flash reasonably happy, but seems
92 // wrong. We should really be able to provide the real online state in
93 // OnConnectionTypeChanged().
94 process_host_->Send(new PpapiMsg_SetNetworkState(true));
97 // ConnectionTypeObserver implementation.
98 virtual void OnConnectionTypeChanged(
99 net::NetworkChangeNotifier::ConnectionType type) OVERRIDE {
100 process_host_->Send(new PpapiMsg_SetNetworkState(
101 type != net::NetworkChangeNotifier::CONNECTION_NONE));
104 private:
105 PpapiPluginProcessHost* const process_host_;
108 PpapiPluginProcessHost::~PpapiPluginProcessHost() {
109 DVLOG(1) << "PpapiPluginProcessHost" << (is_broker_ ? "[broker]" : "")
110 << "~PpapiPluginProcessHost()";
111 CancelRequests();
114 // static
115 PpapiPluginProcessHost* PpapiPluginProcessHost::CreatePluginHost(
116 const PepperPluginInfo& info,
117 const base::FilePath& profile_data_directory,
118 net::HostResolver* host_resolver) {
119 PpapiPluginProcessHost* plugin_host = new PpapiPluginProcessHost(
120 info, profile_data_directory, host_resolver);
121 if (plugin_host->Init(info))
122 return plugin_host;
124 NOTREACHED(); // Init is not expected to fail.
125 return NULL;
128 // static
129 PpapiPluginProcessHost* PpapiPluginProcessHost::CreateBrokerHost(
130 const PepperPluginInfo& info) {
131 PpapiPluginProcessHost* plugin_host =
132 new PpapiPluginProcessHost();
133 if (plugin_host->Init(info))
134 return plugin_host;
136 NOTREACHED(); // Init is not expected to fail.
137 return NULL;
140 // static
141 void PpapiPluginProcessHost::DidCreateOutOfProcessInstance(
142 int plugin_process_id,
143 int32 pp_instance,
144 const PepperRendererInstanceData& instance_data) {
145 for (PpapiPluginProcessHostIterator iter; !iter.Done(); ++iter) {
146 if (iter->process_.get() &&
147 iter->process_->GetData().id == plugin_process_id) {
148 // Found the plugin.
149 iter->host_impl_->AddInstance(pp_instance, instance_data);
150 return;
153 // We'll see this passed with a 0 process ID for the browser tag stuff that
154 // is currently in the process of being removed.
156 // TODO(brettw) When old browser tag impl is removed
157 // (PepperPluginDelegateImpl::CreateBrowserPluginModule passes a 0 plugin
158 // process ID) this should be converted to a NOTREACHED().
159 DCHECK(plugin_process_id == 0)
160 << "Renderer sent a bad plugin process host ID";
163 // static
164 void PpapiPluginProcessHost::DidDeleteOutOfProcessInstance(
165 int plugin_process_id,
166 int32 pp_instance) {
167 for (PpapiPluginProcessHostIterator iter; !iter.Done(); ++iter) {
168 if (iter->process_.get() &&
169 iter->process_->GetData().id == plugin_process_id) {
170 // Found the plugin.
171 iter->host_impl_->DeleteInstance(pp_instance);
172 return;
175 // Note: It's possible that the plugin process has already been deleted by
176 // the time this message is received. For example, it could have crashed.
177 // That's OK, we can just ignore this message.
180 // static
181 void PpapiPluginProcessHost::FindByName(
182 const string16& name,
183 std::vector<PpapiPluginProcessHost*>* hosts) {
184 for (PpapiPluginProcessHostIterator iter; !iter.Done(); ++iter) {
185 if (iter->process_.get() && iter->process_->GetData().name == name)
186 hosts->push_back(*iter);
190 bool PpapiPluginProcessHost::Send(IPC::Message* message) {
191 return process_->Send(message);
194 void PpapiPluginProcessHost::OpenChannelToPlugin(Client* client) {
195 if (process_->GetHost()->IsChannelOpening()) {
196 // The channel is already in the process of being opened. Put
197 // this "open channel" request into a queue of requests that will
198 // be run once the channel is open.
199 pending_requests_.push_back(client);
200 return;
203 // We already have an open channel, send a request right away to plugin.
204 RequestPluginChannel(client);
207 PpapiPluginProcessHost::PpapiPluginProcessHost(
208 const PepperPluginInfo& info,
209 const base::FilePath& profile_data_directory,
210 net::HostResolver* host_resolver)
211 : permissions_(
212 ppapi::PpapiPermissions::GetForCommandLine(info.permissions)),
213 profile_data_directory_(profile_data_directory),
214 is_broker_(false) {
215 process_.reset(new BrowserChildProcessHostImpl(
216 PROCESS_TYPE_PPAPI_PLUGIN, this));
218 filter_ = new PepperMessageFilter(permissions_, host_resolver);
220 host_impl_.reset(new BrowserPpapiHostImpl(this, permissions_, info.name,
221 profile_data_directory,
222 false));
224 process_->GetHost()->AddFilter(filter_.get());
225 process_->GetHost()->AddFilter(host_impl_->message_filter());
227 GetContentClient()->browser()->DidCreatePpapiPlugin(host_impl_.get());
229 // Only request network status updates if the plugin has dev permissions.
230 if (permissions_.HasPermission(ppapi::PERMISSION_DEV))
231 network_observer_.reset(new PluginNetworkObserver(this));
234 PpapiPluginProcessHost::PpapiPluginProcessHost()
235 : is_broker_(true) {
236 process_.reset(new BrowserChildProcessHostImpl(
237 PROCESS_TYPE_PPAPI_BROKER, this));
239 ppapi::PpapiPermissions permissions; // No permissions.
240 // The plugin name and profile data directory shouldn't be needed for the
241 // broker.
242 std::string plugin_name;
243 base::FilePath profile_data_directory;
244 host_impl_.reset(new BrowserPpapiHostImpl(this, permissions, plugin_name,
245 profile_data_directory,
246 false));
249 bool PpapiPluginProcessHost::Init(const PepperPluginInfo& info) {
250 plugin_path_ = info.path;
251 if (info.name.empty()) {
252 process_->SetName(plugin_path_.BaseName().LossyDisplayName());
253 } else {
254 process_->SetName(UTF8ToUTF16(info.name));
257 std::string channel_id = process_->GetHost()->CreateChannel();
258 if (channel_id.empty())
259 return false;
261 const CommandLine& browser_command_line = *CommandLine::ForCurrentProcess();
262 CommandLine::StringType plugin_launcher =
263 browser_command_line.GetSwitchValueNative(switches::kPpapiPluginLauncher);
265 #if defined(OS_LINUX)
266 int flags = plugin_launcher.empty() ? ChildProcessHost::CHILD_ALLOW_SELF :
267 ChildProcessHost::CHILD_NORMAL;
268 #else
269 int flags = ChildProcessHost::CHILD_NORMAL;
270 #endif
271 base::FilePath exe_path = ChildProcessHost::GetChildPath(flags);
272 if (exe_path.empty())
273 return false;
275 CommandLine* cmd_line = new CommandLine(exe_path);
276 cmd_line->AppendSwitchASCII(switches::kProcessType,
277 is_broker_ ? switches::kPpapiBrokerProcess
278 : switches::kPpapiPluginProcess);
279 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id);
281 // These switches are forwarded to both plugin and broker pocesses.
282 static const char* kCommonForwardSwitches[] = {
283 switches::kVModule
285 cmd_line->CopySwitchesFrom(browser_command_line, kCommonForwardSwitches,
286 arraysize(kCommonForwardSwitches));
288 if (!is_broker_) {
289 // TODO(vtl): Stop passing flash args in the command line, or windows is
290 // going to explode.
291 static const char* kPluginForwardSwitches[] = {
292 switches::kDisableSeccompFilterSandbox,
293 #if defined(OS_MACOSX)
294 switches::kEnableSandboxLogging,
295 #endif
296 switches::kNoSandbox,
297 switches::kPpapiFlashArgs,
298 switches::kPpapiStartupDialog,
300 cmd_line->CopySwitchesFrom(browser_command_line, kPluginForwardSwitches,
301 arraysize(kPluginForwardSwitches));
304 std::string locale = GetContentClient()->browser()->GetApplicationLocale();
305 if (!locale.empty()) {
306 // Pass on the locale so the plugin will know what language we're using.
307 cmd_line->AppendSwitchASCII(switches::kLang, locale);
310 if (!plugin_launcher.empty())
311 cmd_line->PrependWrapper(plugin_launcher);
313 // On posix, never use the zygote for the broker. Also, only use the zygote if
314 // the plugin is sandboxed, and we are not using a plugin launcher - having a
315 // plugin launcher means we need to use another process instead of just
316 // forking the zygote.
317 #if defined(OS_POSIX)
318 bool use_zygote = !is_broker_ && plugin_launcher.empty() && info.is_sandboxed;
319 if (!info.is_sandboxed)
320 cmd_line->AppendSwitchASCII(switches::kNoSandbox, std::string());
321 #endif // OS_POSIX
322 process_->Launch(
323 #if defined(OS_WIN)
324 new PpapiPluginSandboxedProcessLauncherDelegate(is_broker_),
325 #elif defined(OS_POSIX)
326 use_zygote,
327 base::EnvironmentVector(),
328 #endif
329 cmd_line);
330 return true;
333 void PpapiPluginProcessHost::RequestPluginChannel(Client* client) {
334 base::ProcessHandle process_handle;
335 int renderer_child_id;
336 client->GetPpapiChannelInfo(&process_handle, &renderer_child_id);
338 base::ProcessId process_id = (process_handle == base::kNullProcessHandle) ?
339 0 : base::GetProcId(process_handle);
341 // We can't send any sync messages from the browser because it might lead to
342 // a hang. See the similar code in PluginProcessHost for more description.
343 PpapiMsg_CreateChannel* msg = new PpapiMsg_CreateChannel(
344 process_id, renderer_child_id, client->OffTheRecord());
345 msg->set_unblock(true);
346 if (Send(msg)) {
347 sent_requests_.push(client);
348 } else {
349 client->OnPpapiChannelOpened(IPC::ChannelHandle(), base::kNullProcessId, 0);
353 void PpapiPluginProcessHost::OnProcessLaunched() {
354 host_impl_->set_plugin_process_handle(process_->GetHandle());
357 void PpapiPluginProcessHost::OnProcessCrashed(int exit_code) {
358 PluginServiceImpl::GetInstance()->RegisterPluginCrash(plugin_path_);
361 bool PpapiPluginProcessHost::OnMessageReceived(const IPC::Message& msg) {
362 bool handled = true;
363 IPC_BEGIN_MESSAGE_MAP(PpapiPluginProcessHost, msg)
364 IPC_MESSAGE_HANDLER(PpapiHostMsg_ChannelCreated,
365 OnRendererPluginChannelCreated)
366 IPC_MESSAGE_UNHANDLED(handled = false)
367 IPC_END_MESSAGE_MAP()
368 DCHECK(handled);
369 return handled;
372 // Called when the browser <--> plugin channel has been established.
373 void PpapiPluginProcessHost::OnChannelConnected(int32 peer_pid) {
374 // This will actually load the plugin. Errors will actually not be reported
375 // back at this point. Instead, the plugin will fail to establish the
376 // connections when we request them on behalf of the renderer(s).
377 Send(new PpapiMsg_LoadPlugin(plugin_path_, permissions_));
379 // Process all pending channel requests from the renderers.
380 for (size_t i = 0; i < pending_requests_.size(); i++)
381 RequestPluginChannel(pending_requests_[i]);
382 pending_requests_.clear();
385 // Called when the browser <--> plugin channel has an error. This normally
386 // means the plugin has crashed.
387 void PpapiPluginProcessHost::OnChannelError() {
388 DVLOG(1) << "PpapiPluginProcessHost" << (is_broker_ ? "[broker]" : "")
389 << "::OnChannelError()";
390 // We don't need to notify the renderers that were communicating with the
391 // plugin since they have their own channels which will go into the error
392 // state at the same time. Instead, we just need to notify any renderers
393 // that have requested a connection but have not yet received one.
394 CancelRequests();
397 void PpapiPluginProcessHost::CancelRequests() {
398 DVLOG(1) << "PpapiPluginProcessHost" << (is_broker_ ? "[broker]" : "")
399 << "CancelRequests()";
400 for (size_t i = 0; i < pending_requests_.size(); i++) {
401 pending_requests_[i]->OnPpapiChannelOpened(IPC::ChannelHandle(),
402 base::kNullProcessId, 0);
404 pending_requests_.clear();
406 while (!sent_requests_.empty()) {
407 sent_requests_.front()->OnPpapiChannelOpened(IPC::ChannelHandle(),
408 base::kNullProcessId, 0);
409 sent_requests_.pop();
413 // Called when a new plugin <--> renderer channel has been created.
414 void PpapiPluginProcessHost::OnRendererPluginChannelCreated(
415 const IPC::ChannelHandle& channel_handle) {
416 if (sent_requests_.empty())
417 return;
419 // All requests should be processed FIFO, so the next item in the
420 // sent_requests_ queue should be the one that the plugin just created.
421 Client* client = sent_requests_.front();
422 sent_requests_.pop();
424 const ChildProcessData& data = process_->GetData();
425 client->OnPpapiChannelOpened(channel_handle, base::GetProcId(data.handle),
426 data.id);
429 } // namespace content