Design documents

Build system

Most of NaCl, including the trusted runtime and tests, is built using Scons. However, Chromium ignores NaCl‘s Scons build system and uses gn to build NaCl (in the same way as it ignores Webkit’s own build system). This is why there are *.gn and *.gni files in the NaCl tree, though the NaCl standalone build doesn‘t use them. These gn files cover NaCl’s trusted code but not tests.

sel_ldr

On some systems, the code that is normally in sel_ldr is statically linked into the Chromium executable. (The Gyp build also has a target to build a standalone sel_ldr, but this is mainly for testing purposes.)

Linking sel_ldr into Chromium has some advantages: * It reduces version skew issues. * It makes it easier to run sel_ldr inside the sandbox. On Linux, sel_ldr can be launched by forking Chromium's Zygote process, which is already set up to be sandboxed. This can also reduce per-instance startup costs a little. * It makes it easier for sel_ldr to link to Chromium-specific code (e.g. code specific to the Chromium Linux sandbox).

However, there also some good reasons to build sel_ldr as a separate executable: * On Windows 64, sel_ldr needs to be a 64-bit executable, while Chromium itself is 32-bit, so they cannot be linked together. * On ARM, sel_ldr needs to get control early in the process startup in order to reserve the bottom chunk of address space. * Even on x86-32, address space is relatively limited, so it would be beneficial to avoid loading non-NaCl Chromium code into sel_ldr's address space.

Platform support

PlatformChromium processNaCl processOuter sandbox supported?
Linux, x86-3232-bit32-bityes(1)
Linux, x86-6464-bit64-bit (currently)(2)yes(1)
Linux, ARM32-bit32-bitin principle, yes(1)
Windows, x86-3232-bit32-bityes
Windows, x86-6432-bit(3)64-bityes
Mac OS X, x86-3232-bit32-bityes(4)
Mac OS X, x86-64?32-bit?yes(4)
  1. NaCl supports the SUID sandbox but not, currently, the seccomp sandbox. See LinuxOuterSandbox.
  2. Alternatively, we could use a 32-bit sel_ldr process with 64-bit browser/renderer processes.
  3. For simplicity, Chromium uses the same 32-bit executable on both 32-bit and 64-bit Windows. However, we cannot use the 32-bit sel_ldr on Windows 64, because these versions of Windows drop support for setting up x86 segmentation, which the x86-32 version of NaCl relies on.
  4. Mac OS X uses the standard Chrome renderer sandbox for the renderer process (the Native Client plugin) and the sel_ldr process uses its own, very restrictive Chrome sandbox.

Policy on dependencies

Native Client should not #include files from the “chrome” directory in the Chromium source tree. However, #including files from other directories (such as “base”) might be OK. For some background, see [issue 469] (http://code.google.com/p/nativeclient/issues/detail?id=469).

See also

  • GypBuild