OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_CREDENTIALS_H_ | 5 #ifndef SANDBOX_LINUX_SERVICES_CREDENTIALS_H_ |
6 #define SANDBOX_LINUX_SERVICES_CREDENTIALS_H_ | 6 #define SANDBOX_LINUX_SERVICES_CREDENTIALS_H_ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 // Link errors are tedious to track, raise a compile-time error instead. | 9 // Link errors are tedious to track, raise a compile-time error instead. |
10 #if defined(OS_ANDROID) | 10 #if defined(OS_ANDROID) |
11 #error "Android is not supported." | 11 #error "Android is not supported." |
12 #endif // defined(OS_ANDROID). | 12 #endif // defined(OS_ANDROID). |
13 | 13 |
14 #include <string> | 14 #include <string> |
| 15 #include <vector> |
15 | 16 |
16 #include "base/basictypes.h" | 17 #include "base/basictypes.h" |
17 #include "base/compiler_specific.h" | 18 #include "base/compiler_specific.h" |
18 #include "base/memory/scoped_ptr.h" | 19 #include "base/memory/scoped_ptr.h" |
| 20 #include "sandbox/linux/system_headers/capability.h" |
19 #include "sandbox/sandbox_export.h" | 21 #include "sandbox/sandbox_export.h" |
20 | 22 |
21 namespace sandbox { | 23 namespace sandbox { |
22 | 24 |
| 25 // For brevity, we only expose enums for the subset of capabilities we use. |
| 26 // This can be expanded as the need arises. |
| 27 enum class LinuxCapability { |
| 28 kCapSysChroot, |
| 29 kCapSysAdmin, |
| 30 }; |
| 31 |
23 // This class should be used to manipulate the current process' credentials. | 32 // This class should be used to manipulate the current process' credentials. |
24 // It is currently a stub used to manipulate POSIX.1e capabilities as | 33 // It is currently a stub used to manipulate POSIX.1e capabilities as |
25 // implemented by the Linux kernel. | 34 // implemented by the Linux kernel. |
26 class SANDBOX_EXPORT Credentials { | 35 class SANDBOX_EXPORT Credentials { |
27 public: | 36 public: |
28 // Drop all capabilities in the effective, inheritable and permitted sets for | 37 // Drop all capabilities in the effective, inheritable and permitted sets for |
29 // the current process. For security reasons, since capabilities are | 38 // the current thread. For security reasons, since capabilities are |
30 // per-thread, the caller is responsible for ensuring it is single-threaded | 39 // per-thread, the caller is responsible for ensuring it is single-threaded |
31 // when calling this API. | 40 // when calling this API. |
32 // |proc_fd| must be a file descriptor to /proc/ and remains owned by | 41 // |proc_fd| must be a file descriptor to /proc/ and remains owned by |
33 // the caller. | 42 // the caller. |
34 static bool DropAllCapabilities(int proc_fd) WARN_UNUSED_RESULT; | 43 static bool DropAllCapabilities(int proc_fd) WARN_UNUSED_RESULT; |
35 // A similar API which assumes that it can open /proc/self/ by itself. | 44 // A similar API which assumes that it can open /proc/self/ by itself. |
36 static bool DropAllCapabilities() WARN_UNUSED_RESULT; | 45 static bool DropAllCapabilities() WARN_UNUSED_RESULT; |
| 46 // Sets the effective and permitted capability sets for the current thread to |
| 47 // the list of capabiltiies in |caps|. All other capability flags are cleared. |
| 48 static bool SetCapabilities(int proc_fd, |
| 49 const std::vector<LinuxCapability>& caps) |
| 50 WARN_UNUSED_RESULT; |
| 51 |
| 52 // Returns true if the current thread has either the effective, permitted, or |
| 53 // inheritable flag set for the given capability. |
| 54 static bool HasCapability(LinuxCapability cap); |
37 | 55 |
38 // Return true iff there is any capability in any of the capabilities sets | 56 // Return true iff there is any capability in any of the capabilities sets |
39 // of the current process. | 57 // of the current thread. |
40 static bool HasAnyCapability(); | 58 static bool HasAnyCapability(); |
41 // Returns the capabilities of the current process in textual form, as | |
42 // documented in libcap2's cap_to_text(3). This is mostly useful for | |
43 // debugging and tests. | |
44 static scoped_ptr<std::string> GetCurrentCapString(); | |
45 | 59 |
46 // Returns whether the kernel supports CLONE_NEWUSER and whether it would be | 60 // Returns whether the kernel supports CLONE_NEWUSER and whether it would be |
47 // possible to immediately move to a new user namespace. There is no point | 61 // possible to immediately move to a new user namespace. There is no point |
48 // in using this method right before calling MoveToNewUserNS(), simply call | 62 // in using this method right before calling MoveToNewUserNS(), simply call |
49 // MoveToNewUserNS() immediately. This method is only useful to test the | 63 // MoveToNewUserNS() immediately. This method is only useful to test the |
50 // ability to move to a user namespace ahead of time. | 64 // ability to move to a user namespace ahead of time. |
51 static bool CanCreateProcessInNewUserNS(); | 65 static bool CanCreateProcessInNewUserNS(); |
52 | 66 |
53 // Move the current process to a new "user namespace" as supported by Linux | 67 // Move the current process to a new "user namespace" as supported by Linux |
54 // 3.8+ (CLONE_NEWUSER). | 68 // 3.8+ (CLONE_NEWUSER). |
(...skipping 18 matching lines...) Loading... |
73 // - DropAllCapabilities() must be called to prevent escapes. | 87 // - DropAllCapabilities() must be called to prevent escapes. |
74 static bool DropFileSystemAccess(int proc_fd) WARN_UNUSED_RESULT; | 88 static bool DropFileSystemAccess(int proc_fd) WARN_UNUSED_RESULT; |
75 | 89 |
76 private: | 90 private: |
77 DISALLOW_IMPLICIT_CONSTRUCTORS(Credentials); | 91 DISALLOW_IMPLICIT_CONSTRUCTORS(Credentials); |
78 }; | 92 }; |
79 | 93 |
80 } // namespace sandbox. | 94 } // namespace sandbox. |
81 | 95 |
82 #endif // SANDBOX_LINUX_SERVICES_CREDENTIALS_H_ | 96 #endif // SANDBOX_LINUX_SERVICES_CREDENTIALS_H_ |
OLD | NEW |