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
|
// Copyright (c) 2009 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 "chrome/browser/child_process_launcher.h"
#include "base/command_line.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/scoped_ptr.h"
#include "base/thread.h"
#include "chrome/browser/chrome_thread.h"
#include "chrome/common/chrome_descriptors.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/process_watcher.h"
#include "chrome/common/result_codes.h"
#include "ipc/ipc_sync_channel.h"
#if defined(OS_WIN)
#include "chrome/browser/sandbox_policy.h"
#elif defined(OS_LINUX)
#include "base/singleton.h"
#include "chrome/browser/crash_handler_host_linux.h"
#include "chrome/browser/zygote_host_linux.h"
#include "chrome/browser/renderer_host/render_sandbox_host_linux.h"
#endif
namespace {
class LauncherThread : public base::Thread {
public:
LauncherThread() : base::Thread("LauncherThread") { }
};
static base::LazyInstance<LauncherThread> launcher(base::LINKER_INITIALIZED);
}
// Having the functionality of ChildProcessLauncher be in an internal
// ref counted object allows us to automatically terminate the process when the
// parent class destructs, while still holding on to state that we need.
class ChildProcessLauncher::Context
: public base::RefCountedThreadSafe<ChildProcessLauncher::Context> {
public:
Context() : starting_(true), zygote_(false) {}
void Launch(CommandLine* cmd_line, int ipcfd, Client* client) {
client_ = client;
CHECK(ChromeThread::GetCurrentThreadIdentifier(&client_thread_id_));
if (!launcher.Get().message_loop())
launcher.Get().Start();
launcher.Get().message_loop()->PostTask(
FROM_HERE,
NewRunnableMethod(
this, &Context::LaunchInternal, ipcfd, cmd_line));
}
void ResetClient() {
// No need for locking as this function gets called on the same thread that
// client_ would be used.
CHECK(ChromeThread::CurrentlyOn(client_thread_id_));
client_ = NULL;
}
private:
friend class base::RefCountedThreadSafe<ChildProcessLauncher::Context>;
friend class ChildProcessLauncher;
~Context() {
Terminate();
}
void LaunchInternal(int ipcfd, CommandLine* cmd_line) {
scoped_ptr<CommandLine> cmd_line_deleter(cmd_line);
base::ProcessHandle handle = base::kNullProcessHandle;
bool zygote = false;
#if defined(OS_WIN)
handle = sandbox::StartProcess(cmd_line);
#elif defined(OS_POSIX)
#if defined(OS_LINUX)
// On Linux, normally spawn processes with zygotes. We can't do this when
// we're spawning child processes through an external program (i.e. there is
// a command prefix) like GDB so fall through to the POSIX case then.
if (!CommandLine::ForCurrentProcess()->HasSwitch(
switches::kRendererCmdPrefix)) {
zygote = true;
base::GlobalDescriptors::Mapping mapping;
mapping.push_back(std::pair<uint32_t, int>(kPrimaryIPCChannel, ipcfd));
const int crash_signal_fd =
Singleton<RendererCrashHandlerHostLinux>()->GetDeathSignalSocket();
if (crash_signal_fd >= 0) {
mapping.push_back(std::pair<uint32_t, int>(kCrashDumpSignal,
crash_signal_fd));
}
handle = Singleton<ZygoteHost>()->ForkRenderer(cmd_line->argv(), mapping);
}
#endif
if (!zygote) {
base::file_handle_mapping_vector fds_to_map;
fds_to_map.push_back(std::make_pair(ipcfd, kPrimaryIPCChannel + 3));
#if defined(OS_LINUX)
// On Linux, we need to add some extra file descriptors for crash handling
// and the sandbox.
const int crash_signal_fd =
Singleton<RendererCrashHandlerHostLinux>()->GetDeathSignalSocket();
if (crash_signal_fd >= 0) {
fds_to_map.push_back(std::make_pair(crash_signal_fd,
kCrashDumpSignal + 3));
}
const int sandbox_fd =
Singleton<RenderSandboxHostLinux>()->GetRendererSocket();
fds_to_map.push_back(std::make_pair(sandbox_fd, kSandboxIPCChannel + 3));
#endif // defined(OS_LINUX)
// Actually launch the app.
if (!base::LaunchApp(cmd_line->argv(), fds_to_map, false, &handle))
handle = base::kNullProcessHandle;
}
#endif
ChromeThread::PostTask(
client_thread_id_, FROM_HERE,
NewRunnableMethod(
this, &ChildProcessLauncher::Context::Notify, handle, zygote));
}
void Notify(base::ProcessHandle handle, bool zygote) {
starting_ = false;
process_.set_handle(handle);
zygote_ = zygote;
if (client_) {
client_->OnProcessLaunched();
} else {
Terminate();
}
}
void Terminate() {
if (!process_.handle())
return;
// On Posix, EnsureProcessTerminated can lead to 2 seconds of sleep! So
// don't this on the UI/IO threads.
launcher.Get().message_loop()->PostTask(
FROM_HERE,
NewRunnableFunction(
&ChildProcessLauncher::Context::TerminateInternal,
process_.handle(), zygote_));
process_.set_handle(base::kNullProcessHandle);
}
static void TerminateInternal(base::ProcessHandle handle, bool zygote) {
base::Process process(handle);
// Client has gone away, so just kill the process. Using exit code 0
// means that UMA won't treat this as a crash.
process.Terminate(ResultCodes::NORMAL_EXIT);
// On POSIX, we must additionally reap the child.
#if defined(OS_POSIX)
if (zygote) {
#if defined(OS_LINUX)
// If the renderer was created via a zygote, we have to proxy the reaping
// through the zygote process.
Singleton<ZygoteHost>()->EnsureProcessTerminated(handle);
#endif // defined(OS_LINUX)
} else {
ProcessWatcher::EnsureProcessTerminated(handle);
}
#endif
process.Close();
}
Client* client_;
ChromeThread::ID client_thread_id_;
base::Process process_;
bool starting_;
bool zygote_;
};
ChildProcessLauncher::ChildProcessLauncher(CommandLine* cmd_line,
IPC::SyncChannel* channel,
Client* client) {
context_ = new Context();
int ipcfd = 0;
#if defined(OS_POSIX)
ipcfd = channel->GetClientFileDescriptor();
#endif
context_->Launch(cmd_line, ipcfd, client);
}
ChildProcessLauncher::~ChildProcessLauncher() {
context_->ResetClient();
}
bool ChildProcessLauncher::IsStarting() {
return context_->starting_;
}
base::ProcessHandle ChildProcessLauncher::GetHandle() {
DCHECK(!context_->starting_);
return context_->process_.handle();
}
bool ChildProcessLauncher::DidProcessCrash() {
bool did_crash, child_exited;
base::ProcessHandle handle = context_->process_.handle();
#if defined(OS_LINUX)
if (context_->zygote_) {
did_crash = Singleton<ZygoteHost>()->DidProcessCrash(handle, &child_exited);
} else
#endif
{
did_crash = base::DidProcessCrash(&child_exited, handle);
}
// POSIX: If the process crashed, then the kernel closed the socket for it
// and so the child has already died by the time we get here. Since
// DidProcessCrash called waitpid with WNOHANG, it'll reap the process.
// However, if DidProcessCrash didn't reap the child, we'll need to in
// Terminate via ProcessWatcher. So we can't close the handle here.
//
// This is moot on Windows where |child_exited| will always be true.
if (child_exited)
context_->process_.Close();
return did_crash;
}
void ChildProcessLauncher::SetProcessBackgrounded(bool background) {
DCHECK(!context_->starting_);
context_->process_.SetProcessBackgrounded(background);
}
|