OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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. |
| 4 |
| 5 #ifndef SANDBOX_MAC_BOOTSTRAP_SANDBOX_H_ |
| 6 #define SANDBOX_MAC_BOOTSTRAP_SANDBOX_H_ |
| 7 |
| 8 #include <mach/mach.h> |
| 9 |
| 10 #include <map> |
| 11 #include <string> |
| 12 |
| 13 #include "base/mac/scoped_mach_port.h" |
| 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/process/process_handle.h" |
| 16 #include "base/synchronization/lock.h" |
| 17 #include "sandbox/mac/policy.h" |
| 18 #include "sandbox/sandbox_export.h" |
| 19 |
| 20 namespace sandbox { |
| 21 |
| 22 class LaunchdInterceptionServer; |
| 23 |
| 24 // The BootstrapSandbox is a second-layer sandbox for Mac. It is used to limit |
| 25 // the bootstrap namespace attack surface of child processes. The parent |
| 26 // process creates an instance of this class and registers policies that it |
| 27 // can enforce on its children. |
| 28 // |
| 29 // With this sandbox, the bootstrap port of the parent process is replaced, so |
| 30 // that child processes is taken over by the sandbox. Bootstrap messages from |
| 31 // the parent are forwarded to launchd. Requests from the child that would |
| 32 // normally go to launchd are filtered based on the specified per-process |
| 33 // policies. If a request is permitted by the policy, it is forwarded on to |
| 34 // launchd for servicing. If it is not, then the sandbox will reply with a |
| 35 // primitive that does not grant additional capabilities to the receiver. |
| 36 // |
| 37 // Clients that which to use the sandbox must inform it of the creation and |
| 38 // death of child processes for which the sandbox should be enforced. The |
| 39 // client of the sandbox is intended to be an unsandboxed parent process that |
| 40 // fork()s sandboxed (and other unsandboxed) child processes. |
| 41 // |
| 42 // When the parent is ready to fork a new child process with this sandbox |
| 43 // being enforced, it should use the pair of methods PrepareToForkWithPolicy() |
| 44 // and FinishedFork(), and call fork() between them. The first method will |
| 45 // set the policy for the new process, and the second will finialize the |
| 46 // association between the process ID and sandbox policy ID. |
| 47 // |
| 48 // All methods of this class may be called from any thread, but |
| 49 // PrepareToForkWithPolicy() and FinishedFork() must be non-nested and balanced. |
| 50 class SANDBOX_EXPORT BootstrapSandbox { |
| 51 public: |
| 52 // Creates a new sandbox manager. Returns NULL on failure. |
| 53 static scoped_ptr<BootstrapSandbox> Create(); |
| 54 |
| 55 ~BootstrapSandbox(); |
| 56 |
| 57 // Registers a bootstrap policy associated it with an identifier. The |
| 58 // |sandbox_policy_id| must be greater than 0. |
| 59 void RegisterSandboxPolicy(int sandbox_policy_id, |
| 60 const BootstrapSandboxPolicy& policy); |
| 61 |
| 62 // Called in the parent prior to fork()ing a child. The policy registered |
| 63 // to |sandbox_policy_id| will be enforced on the new child. This must be |
| 64 // followed by a call to FinishedFork(). |
| 65 void PrepareToForkWithPolicy(int sandbox_policy_id); |
| 66 |
| 67 // Called in the parent after fork()ing a child. It records the |handle| |
| 68 // and associates it with the specified-above |sandbox_policy_id|. |
| 69 // If fork() failed and a new child was not created, pass kNullProcessHandle. |
| 70 void FinishedFork(base::ProcessHandle handle); |
| 71 |
| 72 // Called in the parent when a process has died. It cleans up the references |
| 73 // to the process. |
| 74 void ChildDied(base::ProcessHandle handle); |
| 75 |
| 76 // Looks up the policy for a given process ID. If no policy is associated |
| 77 // with the |pid|, this returns NULL. |
| 78 const BootstrapSandboxPolicy* PolicyForProcess(pid_t pid) const; |
| 79 |
| 80 mach_port_t real_bootstrap_port() const { return real_bootstrap_port_; } |
| 81 |
| 82 private: |
| 83 BootstrapSandbox(); |
| 84 |
| 85 // A Mach IPC message server that is used to intercept and filter bootstrap |
| 86 // requests. |
| 87 scoped_ptr<LaunchdInterceptionServer> server_; |
| 88 |
| 89 // The original bootstrap port of the process, which is connected to the |
| 90 // real launchd server. |
| 91 base::mac::ScopedMachPort real_bootstrap_port_; |
| 92 |
| 93 // The |lock_| protects all the following variables. |
| 94 mutable base::Lock lock_; |
| 95 |
| 96 // The sandbox_policy_id that will be enforced for the new child. |
| 97 int effective_policy_id_; |
| 98 |
| 99 // All the policies that have been registered with this sandbox manager. |
| 100 std::map<int, const BootstrapSandboxPolicy> policies_; |
| 101 |
| 102 // The association between process ID and sandbox policy ID. |
| 103 std::map<base::ProcessHandle, int> sandboxed_processes_; |
| 104 }; |
| 105 |
| 106 } // namespace sandbox |
| 107 |
| 108 #endif // SANDBOX_MAC_BOOTSTRAP_SANDBOX_H_ |
OLD | NEW |