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
301
302
303
304
305
306
307
308
309
310
311
312
313
|
// Copyright (c) 2010 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 "build/build_config.h"
#include "chrome/browser/nacl_host/nacl_process_host.h"
#if defined(OS_POSIX)
#include <fcntl.h>
#endif
#include "base/command_line.h"
#include "base/metrics/nacl_histogram.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/renderer_host/resource_message_filter.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/logging_chrome.h"
#include "chrome/common/nacl_cmd_line.h"
#include "chrome/common/nacl_messages.h"
#include "chrome/common/render_messages.h"
#include "ipc/ipc_switches.h"
#if defined(OS_POSIX)
#include "ipc/ipc_channel_posix.h"
#elif defined(OS_WIN)
#include "chrome/browser/nacl_host/nacl_broker_service_win.h"
#endif
namespace {
#if !defined(DISABLE_NACL)
void SetCloseOnExec(nacl::Handle fd) {
#if defined(OS_POSIX)
int flags = fcntl(fd, F_GETFD);
CHECK(flags != -1);
int rc = fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
CHECK(rc == 0);
#endif
}
#endif
} // namespace
NaClProcessHost::NaClProcessHost(
ResourceDispatcherHost *resource_dispatcher_host,
const std::wstring& url)
: BrowserChildProcessHost(NACL_LOADER_PROCESS, resource_dispatcher_host),
resource_dispatcher_host_(resource_dispatcher_host),
reply_msg_(NULL),
running_on_wow64_(false) {
set_name(url);
#if defined(OS_WIN)
CheckIsWow64();
#endif
}
NaClProcessHost::~NaClProcessHost() {
if (!reply_msg_)
return;
// nacl::Close() is not available at link time if DISABLE_NACL is
// defined, but we still compile a bunch of other code from this
// file anyway. TODO(mseaborn): Make this less messy.
#ifndef DISABLE_NACL
for (size_t i = 0; i < sockets_for_renderer_.size(); i++) {
nacl::Close(sockets_for_renderer_[i]);
}
for (size_t i = 0; i < sockets_for_sel_ldr_.size(); i++) {
nacl::Close(sockets_for_sel_ldr_[i]);
}
#endif
// OnProcessLaunched didn't get called because the process couldn't launch.
// Don't keep the renderer hanging.
reply_msg_->set_reply_error();
resource_message_filter_->Send(reply_msg_);
}
bool NaClProcessHost::Launch(ResourceMessageFilter* resource_message_filter,
int socket_count,
IPC::Message* reply_msg) {
#ifdef DISABLE_NACL
NOTIMPLEMENTED() << "Native Client disabled at build time";
return false;
#else
// Place an arbitrary limit on the number of sockets to limit
// exposure in case the renderer is compromised. We can increase
// this if necessary.
if (socket_count > 8) {
return false;
}
// Rather than creating a socket pair in the renderer, and passing
// one side through the browser to sel_ldr, socket pairs are created
// in the browser and then passed to the renderer and sel_ldr.
//
// This is mainly for the benefit of Windows, where sockets cannot
// be passed in messages, but are copied via DuplicateHandle().
// This means the sandboxed renderer cannot send handles to the
// browser process.
for (int i = 0; i < socket_count; i++) {
nacl::Handle pair[2];
// Create a connected socket
if (nacl::SocketPair(pair) == -1)
return false;
sockets_for_renderer_.push_back(pair[0]);
sockets_for_sel_ldr_.push_back(pair[1]);
SetCloseOnExec(pair[0]);
SetCloseOnExec(pair[1]);
}
// Launch the process
if (!LaunchSelLdr()) {
return false;
}
UmaNaclHistogramEnumeration(NACL_STARTED);
resource_message_filter_ = resource_message_filter;
reply_msg_ = reply_msg;
return true;
#endif // DISABLE_NACL
}
bool NaClProcessHost::LaunchSelLdr() {
if (!CreateChannel())
return false;
// Build command line for nacl.
FilePath exe_path = GetChildPath(true);
if (exe_path.empty())
return false;
CommandLine* cmd_line = new CommandLine(exe_path);
nacl::CopyNaClCommandLineArguments(cmd_line);
cmd_line->AppendSwitchASCII(switches::kProcessType,
switches::kNaClLoaderProcess);
cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id());
// On Windows we might need to start the broker process to launch a new loader
#if defined(OS_WIN)
if (running_on_wow64_) {
NaClBrokerService::GetInstance()->Init(resource_dispatcher_host_);
return NaClBrokerService::GetInstance()->LaunchLoader(this,
ASCIIToWide(channel_id()));
} else {
BrowserChildProcessHost::Launch(FilePath(), cmd_line);
}
#elif defined(OS_POSIX)
BrowserChildProcessHost::Launch(true, // use_zygote
base::environment_vector(),
cmd_line);
#endif
return true;
}
void NaClProcessHost::OnProcessLaunchedByBroker(base::ProcessHandle handle) {
set_handle(handle);
OnProcessLaunched();
}
bool NaClProcessHost::DidChildCrash() {
if (running_on_wow64_)
return base::DidProcessCrash(NULL, handle());
return BrowserChildProcessHost::DidChildCrash();
}
void NaClProcessHost::OnChildDied() {
#if defined(OS_WIN)
NaClBrokerService::GetInstance()->OnLoaderDied();
#endif
BrowserChildProcessHost::OnChildDied();
}
void NaClProcessHost::OnProcessLaunched() {
std::vector<nacl::FileDescriptor> handles_for_renderer;
base::ProcessHandle nacl_process_handle;
for (size_t i = 0; i < sockets_for_renderer_.size(); i++) {
#if defined(OS_WIN)
// Copy the handle into the renderer process.
HANDLE handle_in_renderer;
DuplicateHandle(base::GetCurrentProcessHandle(),
reinterpret_cast<HANDLE>(sockets_for_renderer_[i]),
resource_message_filter_->handle(),
&handle_in_renderer,
GENERIC_READ | GENERIC_WRITE,
FALSE,
DUPLICATE_CLOSE_SOURCE);
handles_for_renderer.push_back(
reinterpret_cast<nacl::FileDescriptor>(handle_in_renderer));
#else
// No need to dup the imc_handle - we don't pass it anywhere else so
// it cannot be closed.
nacl::FileDescriptor imc_handle;
imc_handle.fd = sockets_for_renderer_[i];
imc_handle.auto_close = true;
handles_for_renderer.push_back(imc_handle);
#endif
}
#if defined(OS_WIN)
// Copy the process handle into the renderer process.
DuplicateHandle(base::GetCurrentProcessHandle(),
handle(),
resource_message_filter_->handle(),
&nacl_process_handle,
PROCESS_DUP_HANDLE,
FALSE,
0);
#else
// We use pid as process handle on Posix
nacl_process_handle = handle();
#endif
// Get the pid of the NaCl process
base::ProcessId nacl_process_id = base::GetProcId(handle());
ViewHostMsg_LaunchNaCl::WriteReplyParams(
reply_msg_, handles_for_renderer, nacl_process_handle, nacl_process_id);
resource_message_filter_->Send(reply_msg_);
resource_message_filter_ = NULL;
reply_msg_ = NULL;
sockets_for_renderer_.clear();
SendStartMessage();
}
void NaClProcessHost::SendStartMessage() {
std::vector<nacl::FileDescriptor> handles_for_sel_ldr;
for (size_t i = 0; i < sockets_for_sel_ldr_.size(); i++) {
#if defined(OS_WIN)
HANDLE channel;
if (!DuplicateHandle(GetCurrentProcess(),
reinterpret_cast<HANDLE>(sockets_for_sel_ldr_[i]),
handle(),
&channel,
GENERIC_READ | GENERIC_WRITE,
FALSE, DUPLICATE_CLOSE_SOURCE)) {
return;
}
handles_for_sel_ldr.push_back(
reinterpret_cast<nacl::FileDescriptor>(channel));
#else
nacl::FileDescriptor channel;
channel.fd = dup(sockets_for_sel_ldr_[i]);
if (channel.fd < 0) {
LOG(ERROR) << "Failed to dup() a file descriptor";
return;
}
channel.auto_close = true;
handles_for_sel_ldr.push_back(channel);
#endif
}
#if defined(OS_MACOSX)
// For dynamic loading support, NaCl requires a file descriptor that
// was created in /tmp, since those created with shm_open() are not
// mappable with PROT_EXEC. Rather than requiring an extra IPC
// round trip out of the sandbox, we create an FD here.
base::SharedMemory memory_buffer;
if (!memory_buffer.CreateAnonymous(/* size= */ 1)) {
LOG(ERROR) << "Failed to allocate memory buffer";
return;
}
nacl::FileDescriptor memory_fd;
memory_fd.fd = dup(memory_buffer.handle().fd);
if (memory_fd.fd < 0) {
LOG(ERROR) << "Failed to dup() a file descriptor";
return;
}
memory_fd.auto_close = true;
handles_for_sel_ldr.push_back(memory_fd);
#endif
Send(new NaClProcessMsg_Start(handles_for_sel_ldr));
sockets_for_sel_ldr_.clear();
}
void NaClProcessHost::OnMessageReceived(const IPC::Message& msg) {
NOTREACHED() << "Invalid message with type = " << msg.type();
}
URLRequestContext* NaClProcessHost::GetRequestContext(
uint32 request_id,
const ViewHostMsg_Resource_Request& request_data) {
return NULL;
}
#if defined(OS_WIN)
// TODO(gregoryd): invoke CheckIsWow64 only once, not for each NaClProcessHost
typedef BOOL (WINAPI *LPFN_ISWOW64PROCESS) (HANDLE, PBOOL);
void NaClProcessHost::CheckIsWow64() {
LPFN_ISWOW64PROCESS fnIsWow64Process;
fnIsWow64Process = (LPFN_ISWOW64PROCESS) GetProcAddress(
GetModuleHandle(TEXT("kernel32")),
"IsWow64Process");
if (fnIsWow64Process != NULL) {
BOOL bIsWow64 = FALSE;
if (fnIsWow64Process(GetCurrentProcess(),&bIsWow64)) {
if (bIsWow64) {
running_on_wow64_ = true;
}
}
}
}
#endif
|