Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 1 | /* Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
| 2 | * Use of this source code is governed by a BSD-style license that can be |
Will Drewry | 32ac9f5 | 2011-08-18 21:36:27 -0500 | [diff] [blame] | 3 | * found in the LICENSE file. |
| 4 | */ |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 5 | |
| 6 | /* The general pattern of use here: |
| 7 | * 1) Construct a minijail with minijail_new() |
| 8 | * 2) Apply the desired restrictions to it |
| 9 | * 3) Enter it, which locks the current process inside it, or: |
| 10 | * 3) Run a process inside it |
| 11 | * 4) Destroy it. |
| 12 | */ |
| 13 | |
| 14 | #ifndef LIBMINIJAIL_H_ |
| 15 | #define LIBMINIJAIL_H_ |
| 16 | |
| 17 | #include <stdint.h> |
| 18 | #include <sys/types.h> |
| 19 | |
| 20 | #ifdef __cplusplus |
| 21 | extern "C" { |
| 22 | #endif |
| 23 | |
| 24 | enum { |
| 25 | MINIJAIL_ERR_PRELOAD = 252, |
| 26 | MINIJAIL_ERR_JAIL = 253, |
| 27 | MINIJAIL_ERR_INIT = 254, |
| 28 | }; |
| 29 | |
| 30 | struct minijail; |
| 31 | |
| 32 | /* Allocates a new minijail with no restrictions. */ |
| 33 | struct minijail *minijail_new(void); |
| 34 | |
| 35 | /* These functions add restrictions to the minijail. They are not applied until |
| 36 | * minijail_enter() is called. See the documentation in minijail0.1 for |
| 37 | * explanations in detail of what the restrictions do. */ |
| 38 | void minijail_change_uid(struct minijail *j, uid_t uid); |
| 39 | void minijail_change_gid(struct minijail *j, gid_t gid); |
Will Drewry | 2ddaad0 | 2011-09-16 11:36:08 -0500 | [diff] [blame] | 40 | /* Stores user to change to and copies |user| for internal consistency. */ |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 41 | int minijail_change_user(struct minijail *j, const char *user); |
Will Drewry | 2ddaad0 | 2011-09-16 11:36:08 -0500 | [diff] [blame] | 42 | /* Does not take ownership of |group|. */ |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 43 | int minijail_change_group(struct minijail *j, const char *group); |
| 44 | void minijail_use_seccomp(struct minijail *j); |
Will Drewry | 32ac9f5 | 2011-08-18 21:36:27 -0500 | [diff] [blame] | 45 | void minijail_use_seccomp_filter(struct minijail *j); |
| 46 | void minijail_parse_seccomp_filters(struct minijail *j, const char *path); |
| 47 | int minijail_add_seccomp_filter(struct minijail *j, int nr, |
| 48 | const char *filter); |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 49 | void minijail_use_caps(struct minijail *j, uint64_t capmask); |
| 50 | void minijail_namespace_vfs(struct minijail *j); |
| 51 | void minijail_namespace_pids(struct minijail *j); |
| 52 | void minijail_remount_readonly(struct minijail *j); |
| 53 | void minijail_inherit_usergroups(struct minijail *j); |
| 54 | void minijail_disable_ptrace(struct minijail *j); |
| 55 | |
Will Drewry | 32ac9f5 | 2011-08-18 21:36:27 -0500 | [diff] [blame] | 56 | /* Exposes minijail's name-to-int mapping for system calls for the |
| 57 | * architecture it was built on. This is primarily exposed for |
| 58 | * minijail_add_seccomp_filter() and testing. |
| 59 | * Returns the system call number on success or -1 on failure. |
| 60 | */ |
| 61 | int minijail_lookup_syscall(const char *name); |
| 62 | |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 63 | /* Lock this process into the given minijail. Note that this procedure cannot fail, |
| 64 | * since there is no way to undo privilege-dropping; therefore, if any part of |
| 65 | * the privilege-drop fails, minijail_enter() will abort the entire process. |
| 66 | * |
| 67 | * Some restrictions cannot be enabled this way (pid namespaces) and attempting |
| 68 | * to do so will cause an abort. |
| 69 | */ |
| 70 | void minijail_enter(const struct minijail *j); |
| 71 | |
| 72 | /* Run the specified command in the given minijail, execve(3)-style. This is |
| 73 | * required if minijail_namespace_pids() was used. */ |
| 74 | int minijail_run(struct minijail *j, const char *filename, char *const argv[]); |
| 75 | |
| 76 | /* Kill the specified minijail. The minijail must have been created with pid |
| 77 | * namespacing; if it was, all processes inside it are atomically killed. */ |
| 78 | int minijail_kill(struct minijail *j); |
| 79 | |
| 80 | /* Wait for all processed in the specified minijail to exit. Returns the exit |
| 81 | * status of the _first_ process spawned in the jail. */ |
| 82 | int minijail_wait(struct minijail *j); |
| 83 | |
| 84 | /* Frees the given minijail. It does not matter if the process is inside the minijail or |
| 85 | * not. */ |
| 86 | void minijail_destroy(struct minijail *j); |
| 87 | |
| 88 | #ifdef __cplusplus |
| 89 | }; /* extern "C" */ |
| 90 | #endif |
| 91 | |
| 92 | #endif /* !LIBMINIJAIL_H_ */ |