Add tests for Android AX TextChange{Added|Removed}Count
[chromium-blink-merge.git] / content / zygote / zygote_main_linux.cc
blobfd472fe907689908c731bef59da0c0a65a05a526
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/zygote/zygote_main.h"
7 #include <dlfcn.h>
8 #include <fcntl.h>
9 #include <pthread.h>
10 #include <signal.h>
11 #include <string.h>
12 #include <sys/socket.h>
13 #include <sys/types.h>
14 #include <unistd.h>
16 #include <vector>
18 #include "base/basictypes.h"
19 #include "base/bind.h"
20 #include "base/command_line.h"
21 #include "base/compiler_specific.h"
22 #include "base/memory/scoped_vector.h"
23 #include "base/native_library.h"
24 #include "base/pickle.h"
25 #include "base/posix/eintr_wrapper.h"
26 #include "base/posix/unix_domain_socket_linux.h"
27 #include "base/rand_util.h"
28 #include "base/strings/safe_sprintf.h"
29 #include "base/strings/string_number_conversions.h"
30 #include "base/sys_info.h"
31 #include "build/build_config.h"
32 #include "content/common/child_process_sandbox_support_impl_linux.h"
33 #include "content/common/font_config_ipc_linux.h"
34 #include "content/common/sandbox_linux/sandbox_debug_handling_linux.h"
35 #include "content/common/sandbox_linux/sandbox_linux.h"
36 #include "content/common/zygote_commands_linux.h"
37 #include "content/public/common/content_switches.h"
38 #include "content/public/common/main_function_params.h"
39 #include "content/public/common/sandbox_linux.h"
40 #include "content/public/common/zygote_fork_delegate_linux.h"
41 #include "content/zygote/zygote_linux.h"
42 #include "crypto/nss_util.h"
43 #include "sandbox/linux/services/credentials.h"
44 #include "sandbox/linux/services/init_process_reaper.h"
45 #include "sandbox/linux/services/libc_urandom_override.h"
46 #include "sandbox/linux/services/namespace_sandbox.h"
47 #include "sandbox/linux/services/thread_helpers.h"
48 #include "sandbox/linux/suid/client/setuid_sandbox_client.h"
49 #include "third_party/icu/source/i18n/unicode/timezone.h"
50 #include "third_party/skia/include/ports/SkFontConfigInterface.h"
52 #if defined(OS_LINUX)
53 #include <sys/prctl.h>
54 #endif
56 #if defined(USE_OPENSSL)
57 #include <openssl/rand.h>
58 #endif
60 #if defined(ENABLE_PLUGINS)
61 #include "content/common/pepper_plugin_list.h"
62 #include "content/public/common/pepper_plugin_info.h"
63 #endif
65 #if defined(ENABLE_WEBRTC)
66 #include "third_party/libjingle/overrides/init_webrtc.h"
67 #endif
69 #if defined(SANITIZER_COVERAGE)
70 #include <sanitizer/common_interface_defs.h>
71 #include <sanitizer/coverage_interface.h>
72 #endif
74 namespace content {
76 namespace {
78 void CloseFds(const std::vector<int>& fds) {
79 for (const auto& it : fds) {
80 PCHECK(0 == IGNORE_EINTR(close(it)));
84 void RunTwoClosures(const base::Closure* first, const base::Closure* second) {
85 first->Run();
86 second->Run();
89 } // namespace
91 // See http://code.google.com/p/chromium/wiki/LinuxZygote
93 static void ProxyLocaltimeCallToBrowser(time_t input, struct tm* output,
94 char* timezone_out,
95 size_t timezone_out_len) {
96 base::Pickle request;
97 request.WriteInt(LinuxSandbox::METHOD_LOCALTIME);
98 request.WriteString(
99 std::string(reinterpret_cast<char*>(&input), sizeof(input)));
101 uint8_t reply_buf[512];
102 const ssize_t r = base::UnixDomainSocket::SendRecvMsg(
103 GetSandboxFD(), reply_buf, sizeof(reply_buf), NULL, request);
104 if (r == -1) {
105 memset(output, 0, sizeof(struct tm));
106 return;
109 base::Pickle reply(reinterpret_cast<char*>(reply_buf), r);
110 base::PickleIterator iter(reply);
111 std::string result, timezone;
112 if (!iter.ReadString(&result) ||
113 !iter.ReadString(&timezone) ||
114 result.size() != sizeof(struct tm)) {
115 memset(output, 0, sizeof(struct tm));
116 return;
119 memcpy(output, result.data(), sizeof(struct tm));
120 if (timezone_out_len) {
121 const size_t copy_len = std::min(timezone_out_len - 1, timezone.size());
122 memcpy(timezone_out, timezone.data(), copy_len);
123 timezone_out[copy_len] = 0;
124 output->tm_zone = timezone_out;
125 } else {
126 output->tm_zone = NULL;
130 static bool g_am_zygote_or_renderer = false;
132 // Sandbox interception of libc calls.
134 // Because we are running in a sandbox certain libc calls will fail (localtime
135 // being the motivating example - it needs to read /etc/localtime). We need to
136 // intercept these calls and proxy them to the browser. However, these calls
137 // may come from us or from our libraries. In some cases we can't just change
138 // our code.
140 // It's for these cases that we have the following setup:
142 // We define global functions for those functions which we wish to override.
143 // Since we will be first in the dynamic resolution order, the dynamic linker
144 // will point callers to our versions of these functions. However, we have the
145 // same binary for both the browser and the renderers, which means that our
146 // overrides will apply in the browser too.
148 // The global |g_am_zygote_or_renderer| is true iff we are in a zygote or
149 // renderer process. It's set in ZygoteMain and inherited by the renderers when
150 // they fork. (This means that it'll be incorrect for global constructor
151 // functions and before ZygoteMain is called - beware).
153 // Our replacement functions can check this global and either proxy
154 // the call to the browser over the sandbox IPC
155 // (http://code.google.com/p/chromium/wiki/LinuxSandboxIPC) or they can use
156 // dlsym with RTLD_NEXT to resolve the symbol, ignoring any symbols in the
157 // current module.
159 // Other avenues:
161 // Our first attempt involved some assembly to patch the GOT of the current
162 // module. This worked, but was platform specific and doesn't catch the case
163 // where a library makes a call rather than current module.
165 // We also considered patching the function in place, but this would again by
166 // platform specific and the above technique seems to work well enough.
168 typedef struct tm* (*LocaltimeFunction)(const time_t* timep);
169 typedef struct tm* (*LocaltimeRFunction)(const time_t* timep,
170 struct tm* result);
172 static pthread_once_t g_libc_localtime_funcs_guard = PTHREAD_ONCE_INIT;
173 static LocaltimeFunction g_libc_localtime;
174 static LocaltimeFunction g_libc_localtime64;
175 static LocaltimeRFunction g_libc_localtime_r;
176 static LocaltimeRFunction g_libc_localtime64_r;
178 static void InitLibcLocaltimeFunctions() {
179 g_libc_localtime = reinterpret_cast<LocaltimeFunction>(
180 dlsym(RTLD_NEXT, "localtime"));
181 g_libc_localtime64 = reinterpret_cast<LocaltimeFunction>(
182 dlsym(RTLD_NEXT, "localtime64"));
183 g_libc_localtime_r = reinterpret_cast<LocaltimeRFunction>(
184 dlsym(RTLD_NEXT, "localtime_r"));
185 g_libc_localtime64_r = reinterpret_cast<LocaltimeRFunction>(
186 dlsym(RTLD_NEXT, "localtime64_r"));
188 if (!g_libc_localtime || !g_libc_localtime_r) {
189 // http://code.google.com/p/chromium/issues/detail?id=16800
191 // Nvidia's libGL.so overrides dlsym for an unknown reason and replaces
192 // it with a version which doesn't work. In this case we'll get a NULL
193 // result. There's not a lot we can do at this point, so we just bodge it!
194 LOG(ERROR) << "Your system is broken: dlsym doesn't work! This has been "
195 "reported to be caused by Nvidia's libGL. You should expect"
196 " time related functions to misbehave. "
197 "http://code.google.com/p/chromium/issues/detail?id=16800";
200 if (!g_libc_localtime)
201 g_libc_localtime = gmtime;
202 if (!g_libc_localtime64)
203 g_libc_localtime64 = g_libc_localtime;
204 if (!g_libc_localtime_r)
205 g_libc_localtime_r = gmtime_r;
206 if (!g_libc_localtime64_r)
207 g_libc_localtime64_r = g_libc_localtime_r;
210 // Define localtime_override() function with asm name "localtime", so that all
211 // references to localtime() will resolve to this function. Notice that we need
212 // to set visibility attribute to "default" to export the symbol, as it is set
213 // to "hidden" by default in chrome per build/common.gypi.
214 __attribute__ ((__visibility__("default")))
215 struct tm* localtime_override(const time_t* timep) __asm__ ("localtime");
217 __attribute__ ((__visibility__("default")))
218 struct tm* localtime_override(const time_t* timep) {
219 if (g_am_zygote_or_renderer) {
220 static struct tm time_struct;
221 static char timezone_string[64];
222 ProxyLocaltimeCallToBrowser(*timep, &time_struct, timezone_string,
223 sizeof(timezone_string));
224 return &time_struct;
225 } else {
226 CHECK_EQ(0, pthread_once(&g_libc_localtime_funcs_guard,
227 InitLibcLocaltimeFunctions));
228 struct tm* res = g_libc_localtime(timep);
229 #if defined(MEMORY_SANITIZER)
230 if (res) __msan_unpoison(res, sizeof(*res));
231 if (res->tm_zone) __msan_unpoison_string(res->tm_zone);
232 #endif
233 return res;
237 // Use same trick to override localtime64(), localtime_r() and localtime64_r().
238 __attribute__ ((__visibility__("default")))
239 struct tm* localtime64_override(const time_t* timep) __asm__ ("localtime64");
241 __attribute__ ((__visibility__("default")))
242 struct tm* localtime64_override(const time_t* timep) {
243 if (g_am_zygote_or_renderer) {
244 static struct tm time_struct;
245 static char timezone_string[64];
246 ProxyLocaltimeCallToBrowser(*timep, &time_struct, timezone_string,
247 sizeof(timezone_string));
248 return &time_struct;
249 } else {
250 CHECK_EQ(0, pthread_once(&g_libc_localtime_funcs_guard,
251 InitLibcLocaltimeFunctions));
252 struct tm* res = g_libc_localtime64(timep);
253 #if defined(MEMORY_SANITIZER)
254 if (res) __msan_unpoison(res, sizeof(*res));
255 if (res->tm_zone) __msan_unpoison_string(res->tm_zone);
256 #endif
257 return res;
261 __attribute__ ((__visibility__("default")))
262 struct tm* localtime_r_override(const time_t* timep,
263 struct tm* result) __asm__ ("localtime_r");
265 __attribute__ ((__visibility__("default")))
266 struct tm* localtime_r_override(const time_t* timep, struct tm* result) {
267 if (g_am_zygote_or_renderer) {
268 ProxyLocaltimeCallToBrowser(*timep, result, NULL, 0);
269 return result;
270 } else {
271 CHECK_EQ(0, pthread_once(&g_libc_localtime_funcs_guard,
272 InitLibcLocaltimeFunctions));
273 struct tm* res = g_libc_localtime_r(timep, result);
274 #if defined(MEMORY_SANITIZER)
275 if (res) __msan_unpoison(res, sizeof(*res));
276 if (res->tm_zone) __msan_unpoison_string(res->tm_zone);
277 #endif
278 return res;
282 __attribute__ ((__visibility__("default")))
283 struct tm* localtime64_r_override(const time_t* timep,
284 struct tm* result) __asm__ ("localtime64_r");
286 __attribute__ ((__visibility__("default")))
287 struct tm* localtime64_r_override(const time_t* timep, struct tm* result) {
288 if (g_am_zygote_or_renderer) {
289 ProxyLocaltimeCallToBrowser(*timep, result, NULL, 0);
290 return result;
291 } else {
292 CHECK_EQ(0, pthread_once(&g_libc_localtime_funcs_guard,
293 InitLibcLocaltimeFunctions));
294 struct tm* res = g_libc_localtime64_r(timep, result);
295 #if defined(MEMORY_SANITIZER)
296 if (res) __msan_unpoison(res, sizeof(*res));
297 if (res->tm_zone) __msan_unpoison_string(res->tm_zone);
298 #endif
299 return res;
303 #if defined(ENABLE_PLUGINS)
304 // Loads the (native) libraries but does not initialize them (i.e., does not
305 // call PPP_InitializeModule). This is needed by the zygote on Linux to get
306 // access to the plugins before entering the sandbox.
307 void PreloadPepperPlugins() {
308 std::vector<PepperPluginInfo> plugins;
309 ComputePepperPluginList(&plugins);
310 for (size_t i = 0; i < plugins.size(); ++i) {
311 if (!plugins[i].is_internal) {
312 base::NativeLibraryLoadError error;
313 base::NativeLibrary library = base::LoadNativeLibrary(plugins[i].path,
314 &error);
315 VLOG_IF(1, !library) << "Unable to load plugin "
316 << plugins[i].path.value() << " "
317 << error.ToString();
319 (void)library; // Prevent release-mode warning.
323 #endif
325 // This function triggers the static and lazy construction of objects that need
326 // to be created before imposing the sandbox.
327 static void ZygotePreSandboxInit() {
328 base::RandUint64();
330 base::SysInfo::AmountOfPhysicalMemory();
331 base::SysInfo::MaxSharedMemorySize();
332 base::SysInfo::NumberOfProcessors();
334 // ICU DateFormat class (used in base/time_format.cc) needs to get the
335 // Olson timezone ID by accessing the zoneinfo files on disk. After
336 // TimeZone::createDefault is called once here, the timezone ID is
337 // cached and there's no more need to access the file system.
338 scoped_ptr<icu::TimeZone> zone(icu::TimeZone::createDefault());
340 #if defined(USE_OPENSSL)
341 // Pass BoringSSL a copy of the /dev/urandom file descriptor so RAND_bytes
342 // will work inside the sandbox.
343 RAND_set_urandom_fd(base::GetUrandomFD());
344 #endif
345 #if !defined(USE_OPENSSL) || defined(USE_NSS_CERTS)
346 // NSS libraries are loaded before sandbox is activated. This is to allow
347 // successful initialization of NSS which tries to load extra library files.
349 // TODO(davidben): This can be removed from USE_OPENSSL builds when remoting
350 // no longer depends on it. https://crbug.com/506323.
351 crypto::LoadNSSLibraries();
352 #endif
353 #if defined(ENABLE_PLUGINS)
354 // Ensure access to the Pepper plugins before the sandbox is turned on.
355 PreloadPepperPlugins();
356 #endif
357 #if defined(ENABLE_WEBRTC)
358 InitializeWebRtcModule();
359 #endif
360 SkFontConfigInterface::SetGlobal(
361 new FontConfigIPC(GetSandboxFD()))->unref();
364 static bool CreateInitProcessReaper(base::Closure* post_fork_parent_callback) {
365 // The current process becomes init(1), this function returns from a
366 // newly created process.
367 const bool init_created =
368 sandbox::CreateInitProcessReaper(post_fork_parent_callback);
369 if (!init_created) {
370 LOG(ERROR) << "Error creating an init process to reap zombies";
371 return false;
373 return true;
376 // Enter the setuid sandbox. This requires the current process to have been
377 // created through the setuid sandbox.
378 static bool EnterSuidSandbox(sandbox::SetuidSandboxClient* setuid_sandbox,
379 base::Closure* post_fork_parent_callback) {
380 DCHECK(setuid_sandbox);
381 DCHECK(setuid_sandbox->IsSuidSandboxChild());
383 // Use the SUID sandbox. This still allows the seccomp sandbox to
384 // be enabled by the process later.
386 if (!setuid_sandbox->IsSuidSandboxUpToDate()) {
387 LOG(WARNING) <<
388 "You are using a wrong version of the setuid binary!\n"
389 "Please read "
390 "https://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment."
391 "\n\n";
394 if (!setuid_sandbox->ChrootMe())
395 return false;
397 if (setuid_sandbox->IsInNewPIDNamespace()) {
398 CHECK_EQ(1, getpid())
399 << "The SUID sandbox created a new PID namespace but Zygote "
400 "is not the init process. Please, make sure the SUID "
401 "binary is up to date.";
404 if (getpid() == 1) {
405 // The setuid sandbox has created a new PID namespace and we need
406 // to assume the role of init.
407 CHECK(CreateInitProcessReaper(post_fork_parent_callback));
410 CHECK(SandboxDebugHandling::SetDumpableStatusAndHandlers());
411 return true;
414 static void DropAllCapabilities(int proc_fd) {
415 CHECK(sandbox::Credentials::DropAllCapabilities(proc_fd));
418 static void EnterNamespaceSandbox(LinuxSandbox* linux_sandbox,
419 base::Closure* post_fork_parent_callback) {
420 linux_sandbox->EngageNamespaceSandbox();
422 if (getpid() == 1) {
423 base::Closure drop_all_caps_callback =
424 base::Bind(&DropAllCapabilities, linux_sandbox->proc_fd());
425 base::Closure callback = base::Bind(
426 &RunTwoClosures, &drop_all_caps_callback, post_fork_parent_callback);
427 CHECK(CreateInitProcessReaper(&callback));
431 #if defined(SANITIZER_COVERAGE)
432 static int g_sanitizer_message_length = 1 * 1024 * 1024;
434 // A helper process which collects code coverage data from the renderers over a
435 // socket and dumps it to a file. See http://crbug.com/336212 for discussion.
436 static void SanitizerCoverageHelper(int socket_fd, int file_fd) {
437 scoped_ptr<char[]> buffer(new char[g_sanitizer_message_length]);
438 while (true) {
439 ssize_t received_size = HANDLE_EINTR(
440 recv(socket_fd, buffer.get(), g_sanitizer_message_length, 0));
441 PCHECK(received_size >= 0);
442 if (received_size == 0)
443 // All clients have closed the socket. We should die.
444 _exit(0);
445 PCHECK(file_fd >= 0);
446 ssize_t written_size = 0;
447 while (written_size < received_size) {
448 ssize_t write_res =
449 HANDLE_EINTR(write(file_fd, buffer.get() + written_size,
450 received_size - written_size));
451 PCHECK(write_res >= 0);
452 written_size += write_res;
454 PCHECK(0 == HANDLE_EINTR(fsync(file_fd)));
458 // fds[0] is the read end, fds[1] is the write end.
459 static void CreateSanitizerCoverageSocketPair(int fds[2]) {
460 PCHECK(0 == socketpair(AF_UNIX, SOCK_SEQPACKET, 0, fds));
461 PCHECK(0 == shutdown(fds[0], SHUT_WR));
462 PCHECK(0 == shutdown(fds[1], SHUT_RD));
464 // Find the right buffer size for sending coverage data.
465 // The kernel will silently set the buffer size to the allowed maximum when
466 // the specified size is too large, so we set our desired size and read it
467 // back.
468 int* buf_size = &g_sanitizer_message_length;
469 socklen_t option_length = sizeof(*buf_size);
470 PCHECK(0 == setsockopt(fds[1], SOL_SOCKET, SO_SNDBUF,
471 buf_size, option_length));
472 PCHECK(0 == getsockopt(fds[1], SOL_SOCKET, SO_SNDBUF,
473 buf_size, &option_length));
474 DCHECK_EQ(sizeof(*buf_size), option_length);
475 // The kernel returns the doubled buffer size.
476 *buf_size /= 2;
477 PCHECK(*buf_size > 0);
480 static pid_t ForkSanitizerCoverageHelper(
481 int child_fd,
482 int parent_fd,
483 base::ScopedFD file_fd,
484 const std::vector<int>& extra_fds_to_close) {
485 pid_t pid = fork();
486 PCHECK(pid >= 0);
487 if (pid == 0) {
488 // In the child.
489 PCHECK(0 == IGNORE_EINTR(close(parent_fd)));
490 CloseFds(extra_fds_to_close);
491 SanitizerCoverageHelper(child_fd, file_fd.get());
492 _exit(0);
493 } else {
494 // In the parent.
495 PCHECK(0 == IGNORE_EINTR(close(child_fd)));
496 return pid;
500 #endif // defined(SANITIZER_COVERAGE)
502 static void EnterLayerOneSandbox(LinuxSandbox* linux_sandbox,
503 const bool using_layer1_sandbox,
504 base::Closure* post_fork_parent_callback) {
505 DCHECK(linux_sandbox);
507 ZygotePreSandboxInit();
509 // Check that the pre-sandbox initialization didn't spawn threads.
510 #if !defined(THREAD_SANITIZER)
511 DCHECK(sandbox::ThreadHelpers::IsSingleThreaded());
512 #endif
514 sandbox::SetuidSandboxClient* setuid_sandbox =
515 linux_sandbox->setuid_sandbox_client();
516 if (setuid_sandbox->IsSuidSandboxChild()) {
517 CHECK(EnterSuidSandbox(setuid_sandbox, post_fork_parent_callback))
518 << "Failed to enter setuid sandbox";
519 } else if (sandbox::NamespaceSandbox::InNewUserNamespace()) {
520 EnterNamespaceSandbox(linux_sandbox, post_fork_parent_callback);
521 } else {
522 CHECK(!using_layer1_sandbox);
526 bool ZygoteMain(const MainFunctionParams& params,
527 ScopedVector<ZygoteForkDelegate> fork_delegates) {
528 g_am_zygote_or_renderer = true;
529 sandbox::InitLibcUrandomOverrides();
531 std::vector<int> fds_to_close_post_fork;
533 LinuxSandbox* linux_sandbox = LinuxSandbox::GetInstance();
535 #if defined(SANITIZER_COVERAGE)
536 const std::string sancov_file_name =
537 "zygote." + base::Uint64ToString(base::RandUint64());
538 base::ScopedFD sancov_file_fd(
539 __sanitizer_maybe_open_cov_file(sancov_file_name.c_str()));
540 int sancov_socket_fds[2] = {-1, -1};
541 CreateSanitizerCoverageSocketPair(sancov_socket_fds);
542 linux_sandbox->sanitizer_args()->coverage_sandboxed = 1;
543 linux_sandbox->sanitizer_args()->coverage_fd = sancov_socket_fds[1];
544 linux_sandbox->sanitizer_args()->coverage_max_block_size =
545 g_sanitizer_message_length;
546 // Zygote termination will block until the helper process exits, which will
547 // not happen until the write end of the socket is closed everywhere. Make
548 // sure the init process does not hold on to it.
549 fds_to_close_post_fork.push_back(sancov_socket_fds[0]);
550 fds_to_close_post_fork.push_back(sancov_socket_fds[1]);
551 #endif // SANITIZER_COVERAGE
553 // Skip pre-initializing sandbox under --no-sandbox for crbug.com/444900.
554 if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
555 switches::kNoSandbox)) {
556 // This will pre-initialize the various sandboxes that need it.
557 linux_sandbox->PreinitializeSandbox();
560 const bool using_setuid_sandbox =
561 linux_sandbox->setuid_sandbox_client()->IsSuidSandboxChild();
562 const bool using_namespace_sandbox =
563 sandbox::NamespaceSandbox::InNewUserNamespace();
564 const bool using_layer1_sandbox =
565 using_setuid_sandbox || using_namespace_sandbox;
567 if (using_setuid_sandbox) {
568 linux_sandbox->setuid_sandbox_client()->CloseDummyFile();
571 if (using_layer1_sandbox) {
572 // Let the ZygoteHost know we're booting up.
573 CHECK(base::UnixDomainSocket::SendMsg(kZygoteSocketPairFd,
574 kZygoteBootMessage,
575 sizeof(kZygoteBootMessage),
576 std::vector<int>()));
579 VLOG(1) << "ZygoteMain: initializing " << fork_delegates.size()
580 << " fork delegates";
581 for (ZygoteForkDelegate* fork_delegate : fork_delegates) {
582 fork_delegate->Init(GetSandboxFD(), using_layer1_sandbox);
585 const std::vector<int> sandbox_fds_to_close_post_fork =
586 linux_sandbox->GetFileDescriptorsToClose();
588 fds_to_close_post_fork.insert(fds_to_close_post_fork.end(),
589 sandbox_fds_to_close_post_fork.begin(),
590 sandbox_fds_to_close_post_fork.end());
591 base::Closure post_fork_parent_callback =
592 base::Bind(&CloseFds, fds_to_close_post_fork);
594 // Turn on the first layer of the sandbox if the configuration warrants it.
595 EnterLayerOneSandbox(linux_sandbox, using_layer1_sandbox,
596 &post_fork_parent_callback);
598 // Extra children and file descriptors created that the Zygote must have
599 // knowledge of.
600 std::vector<pid_t> extra_children;
601 std::vector<int> extra_fds;
603 #if defined(SANITIZER_COVERAGE)
604 pid_t sancov_helper_pid = ForkSanitizerCoverageHelper(
605 sancov_socket_fds[0], sancov_socket_fds[1], sancov_file_fd.Pass(),
606 sandbox_fds_to_close_post_fork);
607 // It's important that the zygote reaps the helper before dying. Otherwise,
608 // the destruction of the PID namespace could kill the helper before it
609 // completes its I/O tasks. |sancov_helper_pid| will exit once the last
610 // renderer holding the write end of |sancov_socket_fds| closes it.
611 extra_children.push_back(sancov_helper_pid);
612 // Sanitizer code in the renderers will inherit the write end of the socket
613 // from the zygote. We must keep it open until the very end of the zygote's
614 // lifetime, even though we don't explicitly use it.
615 extra_fds.push_back(sancov_socket_fds[1]);
616 #endif // SANITIZER_COVERAGE
618 const int sandbox_flags = linux_sandbox->GetStatus();
620 const bool setuid_sandbox_engaged = sandbox_flags & kSandboxLinuxSUID;
621 CHECK_EQ(using_setuid_sandbox, setuid_sandbox_engaged);
623 const bool namespace_sandbox_engaged = sandbox_flags & kSandboxLinuxUserNS;
624 CHECK_EQ(using_namespace_sandbox, namespace_sandbox_engaged);
626 Zygote zygote(sandbox_flags, fork_delegates.Pass(), extra_children,
627 extra_fds);
628 // This function call can return multiple times, once per fork().
629 return zygote.ProcessRequests();
632 } // namespace content