OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef SANDBOX_LINUX_SERVICES_NAMESPACE_SANDBOX_H_ | 5 #ifndef SANDBOX_LINUX_SERVICES_NAMESPACE_SANDBOX_H_ |
6 #define SANDBOX_LINUX_SERVICES_NAMESPACE_SANDBOX_H_ | 6 #define SANDBOX_LINUX_SERVICES_NAMESPACE_SANDBOX_H_ |
7 | 7 |
| 8 #include <sys/types.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 #include <vector> | 11 #include <vector> |
10 | 12 |
11 #include "base/command_line.h" | 13 #include "base/command_line.h" |
12 #include "base/macros.h" | 14 #include "base/macros.h" |
13 #include "base/process/launch.h" | 15 #include "base/process/launch.h" |
14 #include "base/process/process.h" | 16 #include "base/process/process.h" |
15 #include "sandbox/sandbox_export.h" | 17 #include "sandbox/sandbox_export.h" |
16 | 18 |
17 namespace sandbox { | 19 namespace sandbox { |
(...skipping 10 matching lines...) Expand all Loading... |
28 // not have an explicit signal handler registered. | 30 // not have an explicit signal handler registered. |
29 // If B dies, all the processes in the namespace will die. | 31 // If B dies, all the processes in the namespace will die. |
30 // B can fork() and the parent can assume the role of init(1), by using | 32 // B can fork() and the parent can assume the role of init(1), by using |
31 // CreateInitProcessReaper(). | 33 // CreateInitProcessReaper(). |
32 // 4. B chroots using Credentials::MoveToNewUserNS() and | 34 // 4. B chroots using Credentials::MoveToNewUserNS() and |
33 // Credentials::DropFileSystemAccess() | 35 // Credentials::DropFileSystemAccess() |
34 // 5. B drops capabilities gained by entering the new user namespace with | 36 // 5. B drops capabilities gained by entering the new user namespace with |
35 // Credentials::DropAllCapabilities(). | 37 // Credentials::DropAllCapabilities(). |
36 class SANDBOX_EXPORT NamespaceSandbox { | 38 class SANDBOX_EXPORT NamespaceSandbox { |
37 public: | 39 public: |
| 40 #if !defined(OS_NACL_NONSFI) |
| 41 static const int kDefaultExitCode = 1; |
| 42 |
38 // Launch a new process inside its own user/PID/network namespaces (depending | 43 // Launch a new process inside its own user/PID/network namespaces (depending |
39 // on kernel support). Requires at a minimum that user namespaces are | 44 // on kernel support). Requires at a minimum that user namespaces are |
40 // supported (use Credentials::CanCreateProcessInNewUserNS to check this). | 45 // supported (use Credentials::CanCreateProcessInNewUserNS to check this). |
41 // | 46 // |
42 // pre_exec_delegate and clone_flags fields of LaunchOptions should be nullptr | 47 // pre_exec_delegate and clone_flags fields of LaunchOptions should be nullptr |
43 // and 0, respectively, since this function makes a copy of options and | 48 // and 0, respectively, since this function makes a copy of options and |
44 // overrides them. | 49 // overrides them. |
45 static base::Process LaunchProcess(const base::CommandLine& cmdline, | 50 static base::Process LaunchProcess(const base::CommandLine& cmdline, |
46 const base::LaunchOptions& options); | 51 const base::LaunchOptions& options); |
47 static base::Process LaunchProcess(const std::vector<std::string>& argv, | 52 static base::Process LaunchProcess(const std::vector<std::string>& argv, |
48 const base::LaunchOptions& options); | 53 const base::LaunchOptions& options); |
49 | 54 |
| 55 // Forks a process in its own PID namespace. The child process is the init |
| 56 // process inside of the PID namespace, so if the child needs to fork further, |
| 57 // it should call CreateInitProcessReaper, which turns the init process into a |
| 58 // reaper process. |
| 59 // |
| 60 // Otherwise, the child should setup handlers for signals which should |
| 61 // terminate the process using InstallDefaultTerminationSignalHandlers or |
| 62 // InstallTerminationSignalHandler. This works around the fact that init |
| 63 // processes ignore such signals unless they have an explicit handler set. |
| 64 // |
| 65 // This function requries CAP_SYS_ADMIN. If |drop_capabilities_in_child| is |
| 66 // true, then capabilities are dropped in the child. |
| 67 static pid_t ForkInNewPidNamespace(bool drop_capabilities_in_child); |
| 68 |
| 69 // Installs a signal handler for: |
| 70 // |
| 71 // SIGHUP, SIGINT, SIGABRT, SIGQUIT, SIGPIPE, SIGTERM, SIGUSR1, SIGUSR2 |
| 72 // |
| 73 // that exits with kDefaultExitCode. These are signals whose default action is |
| 74 // to terminate the program (apart from SIGILL, SIGFPE, and SIGSEGV, which |
| 75 // will still terminate the process if e.g. an illegal instruction is |
| 76 // encountered, etc.). |
| 77 // |
| 78 // If any of these already had a signal handler installed, this function will |
| 79 // not override them. |
| 80 static void InstallDefaultTerminationSignalHandlers(); |
| 81 |
| 82 // Installs a signal handler for |sig| which exits with |exit_code|. If a |
| 83 // signal handler was already present for |sig|, does nothing and returns |
| 84 // false. |
| 85 static bool InstallTerminationSignalHandler(int sig, int exit_code); |
| 86 #endif // !defined(OS_NACL_NONSFI) |
| 87 |
50 // Returns whether the namespace sandbox created a new user, PID, and network | 88 // Returns whether the namespace sandbox created a new user, PID, and network |
51 // namespace. In particular, InNewUserNamespace should return true iff the | 89 // namespace. In particular, InNewUserNamespace should return true iff the |
52 // process was started via this class. | 90 // process was started via this class. |
53 static bool InNewUserNamespace(); | 91 static bool InNewUserNamespace(); |
54 static bool InNewPidNamespace(); | 92 static bool InNewPidNamespace(); |
55 static bool InNewNetNamespace(); | 93 static bool InNewNetNamespace(); |
56 | 94 |
57 private: | 95 private: |
58 DISALLOW_IMPLICIT_CONSTRUCTORS(NamespaceSandbox); | 96 DISALLOW_IMPLICIT_CONSTRUCTORS(NamespaceSandbox); |
59 }; | 97 }; |
60 | 98 |
61 } // namespace sandbox | 99 } // namespace sandbox |
62 | 100 |
63 #endif // SANDBOX_LINUX_SERVICES_NAMESPACE_SANDBOX_H_ | 101 #endif // SANDBOX_LINUX_SERVICES_NAMESPACE_SANDBOX_H_ |
OLD | NEW |