Elly Jones | e58176c | 2012-01-23 11:46:17 -0500 | [diff] [blame] | 1 | /* Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 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 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 6 | /* |
| 7 | * The general pattern of use here: |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 8 | * 1) Construct a minijail with minijail_new() |
| 9 | * 2) Apply the desired restrictions to it |
| 10 | * 3) Enter it, which locks the current process inside it, or: |
| 11 | * 3) Run a process inside it |
| 12 | * 4) Destroy it. |
| 13 | */ |
| 14 | |
Elly Jones | e1749eb | 2011-10-07 13:54:59 -0400 | [diff] [blame] | 15 | #ifndef _LIBMINIJAIL_H_ |
| 16 | #define _LIBMINIJAIL_H_ |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 17 | |
| 18 | #include <stdint.h> |
| 19 | #include <sys/types.h> |
| 20 | |
| 21 | #ifdef __cplusplus |
| 22 | extern "C" { |
| 23 | #endif |
| 24 | |
| 25 | enum { |
Elly Jones | e1749eb | 2011-10-07 13:54:59 -0400 | [diff] [blame] | 26 | MINIJAIL_ERR_PRELOAD = 252, |
| 27 | MINIJAIL_ERR_JAIL = 253, |
| 28 | MINIJAIL_ERR_INIT = 254, |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 29 | }; |
| 30 | |
| 31 | struct minijail; |
| 32 | |
| 33 | /* Allocates a new minijail with no restrictions. */ |
| 34 | struct minijail *minijail_new(void); |
| 35 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 36 | /* |
| 37 | * These functions add restrictions to the minijail. They are not applied until |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 38 | * minijail_enter() is called. See the documentation in minijail0.1 for |
Elly Jones | e1749eb | 2011-10-07 13:54:59 -0400 | [diff] [blame] | 39 | * explanations in detail of what the restrictions do. |
| 40 | */ |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 41 | void minijail_change_uid(struct minijail *j, uid_t uid); |
| 42 | void minijail_change_gid(struct minijail *j, gid_t gid); |
Jorge Lucangeli Obes | d16ac49 | 2015-12-03 14:44:35 -0800 | [diff] [blame] | 43 | /* Copies |list|. */ |
Jorge Lucangeli Obes | bc67f44 | 2016-01-08 14:43:45 -0800 | [diff] [blame] | 44 | void minijail_set_supplementary_gids(struct minijail *j, size_t size, |
| 45 | const gid_t *list); |
Lutz Justen | 13807cb | 2017-01-03 17:11:55 +0100 | [diff] [blame] | 46 | void minijail_keep_supplementary_gids(struct minijail *j); |
Will Drewry | 2ddaad0 | 2011-09-16 11:36:08 -0500 | [diff] [blame] | 47 | /* Stores user to change to and copies |user| for internal consistency. */ |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 48 | int minijail_change_user(struct minijail *j, const char *user); |
Will Drewry | 2ddaad0 | 2011-09-16 11:36:08 -0500 | [diff] [blame] | 49 | /* Does not take ownership of |group|. */ |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 50 | int minijail_change_group(struct minijail *j, const char *group); |
| 51 | void minijail_use_seccomp(struct minijail *j); |
Jorge Lucangeli Obes | c2c9bcc | 2012-05-01 09:30:24 -0700 | [diff] [blame] | 52 | void minijail_no_new_privs(struct minijail *j); |
Will Drewry | 32ac9f5 | 2011-08-18 21:36:27 -0500 | [diff] [blame] | 53 | void minijail_use_seccomp_filter(struct minijail *j); |
Jorge Lucangeli Obes | 1365061 | 2016-09-02 11:27:29 -0400 | [diff] [blame] | 54 | void minijail_set_seccomp_filter_tsync(struct minijail *j); |
Will Drewry | 32ac9f5 | 2011-08-18 21:36:27 -0500 | [diff] [blame] | 55 | void minijail_parse_seccomp_filters(struct minijail *j, const char *path); |
Jorge Lucangeli Obes | 4d4b3be | 2016-08-16 16:58:14 -0400 | [diff] [blame] | 56 | void minijail_parse_seccomp_filters_from_fd(struct minijail *j, int fd); |
Jorge Lucangeli Obes | bda833c | 2012-07-31 16:25:56 -0700 | [diff] [blame] | 57 | void minijail_log_seccomp_filter_failures(struct minijail *j); |
Jorge Lucangeli Obes | f9fcdbe | 2016-02-19 15:04:09 -0800 | [diff] [blame] | 58 | /* 'minijail_use_caps' and 'minijail_capbset_drop' are mutually exclusive. */ |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 59 | void minijail_use_caps(struct minijail *j, uint64_t capmask); |
Jorge Lucangeli Obes | f9fcdbe | 2016-02-19 15:04:09 -0800 | [diff] [blame] | 60 | void minijail_capbset_drop(struct minijail *j, uint64_t capmask); |
Peter Qiu | 2860c46 | 2015-12-16 15:13:06 -0800 | [diff] [blame] | 61 | void minijail_reset_signal_mask(struct minijail *j); |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 62 | void minijail_namespace_vfs(struct minijail *j); |
Jorge Lucangeli Obes | 1563b5b | 2014-07-10 07:01:53 -0700 | [diff] [blame] | 63 | void minijail_namespace_enter_vfs(struct minijail *j, const char *ns_path); |
Chirantan Ekbote | 866bb3a | 2017-02-07 12:26:42 -0800 | [diff] [blame] | 64 | void minijail_new_session_keyring(struct minijail *j); |
| 65 | |
Jorge Lucangeli Obes | a521bee | 2016-03-03 13:47:57 -0800 | [diff] [blame] | 66 | /* |
| 67 | * This option is *dangerous* as it negates most of the functionality of |
| 68 | * minijail_namespace_vfs(). You very likely don't need this. |
| 69 | */ |
| 70 | void minijail_skip_remount_private(struct minijail *j); |
Dylan Reid | f794247 | 2015-11-18 17:55:26 -0800 | [diff] [blame] | 71 | void minijail_namespace_ipc(struct minijail *j); |
Elly Fong-Jones | 6c08630 | 2013-03-20 17:15:28 -0400 | [diff] [blame] | 72 | void minijail_namespace_net(struct minijail *j); |
Dylan Reid | 1102f5a | 2015-09-15 11:52:20 -0700 | [diff] [blame] | 73 | void minijail_namespace_enter_net(struct minijail *j, const char *ns_path); |
Dylan Reid | 4cbc2a5 | 2016-06-17 19:06:07 -0700 | [diff] [blame] | 74 | void minijail_namespace_cgroups(struct minijail *j); |
Luis Hector Chavez | 43ff080 | 2016-10-07 12:21:07 -0700 | [diff] [blame] | 75 | /* Closes all open file descriptors after forking. */ |
| 76 | void minijail_close_open_fds(struct minijail *j); |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 77 | /* |
| 78 | * Implies namespace_vfs and remount_proc_readonly. |
Elly Jones | 761b741 | 2012-06-13 15:49:52 -0400 | [diff] [blame] | 79 | * WARNING: this is NOT THREAD SAFE. See the block comment in </libminijail.c>. |
| 80 | */ |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 81 | void minijail_namespace_pids(struct minijail *j); |
Yu-Hsi Chiang | 10e9123 | 2015-08-05 14:40:45 +0800 | [diff] [blame] | 82 | void minijail_namespace_user(struct minijail *j); |
Jorge Lucangeli Obes | 200299c | 2016-09-23 15:21:57 -0400 | [diff] [blame] | 83 | void minijail_namespace_user_disable_setgroups(struct minijail *j); |
Yu-Hsi Chiang | 10e9123 | 2015-08-05 14:40:45 +0800 | [diff] [blame] | 84 | int minijail_uidmap(struct minijail *j, const char *uidmap); |
| 85 | int minijail_gidmap(struct minijail *j, const char *gidmap); |
Dylan Reid | 791f577 | 2015-09-14 20:02:42 -0700 | [diff] [blame] | 86 | void minijail_remount_proc_readonly(struct minijail *j); |
Yu-Hsi Chiang | 3e954ec | 2015-07-28 16:48:14 +0800 | [diff] [blame] | 87 | void minijail_run_as_init(struct minijail *j); |
Yu-Hsi Chiang | 3cc05ea | 2015-08-11 11:23:17 +0800 | [diff] [blame] | 88 | int minijail_write_pid_file(struct minijail *j, const char *path); |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 89 | void minijail_inherit_usergroups(struct minijail *j); |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 90 | /* |
| 91 | * Changes the jailed process's syscall table to the alt_syscall table |
Andrew Bresticker | eac2894 | 2015-11-11 16:04:46 -0800 | [diff] [blame] | 92 | * named |table|. |
| 93 | */ |
| 94 | int minijail_use_alt_syscall(struct minijail *j, const char *table); |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 95 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 96 | /* |
Dylan Reid | 605ce7f | 2016-01-19 19:21:00 -0800 | [diff] [blame] | 97 | * Adds the jailed process to the cgroup given by |path|. |path| should be the |
| 98 | * full path to the cgroups "tasks" file. |
| 99 | * Example: /sys/fs/cgroup/cpu/jailed_procs/tasks adds to the "jailed_procs" cpu |
| 100 | * cgroup. |
| 101 | */ |
| 102 | int minijail_add_to_cgroup(struct minijail *j, const char *path); |
| 103 | |
| 104 | /* |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 105 | * minijail_enter_chroot: enables chroot() restriction for @j |
Elly Jones | 51a5b6c | 2011-10-12 19:09:26 -0400 | [diff] [blame] | 106 | * @j minijail to apply restriction to |
| 107 | * @dir directory to chroot() to. Owned by caller. |
| 108 | * |
| 109 | * Enters @dir, binding all bind mounts specified with minijail_bind() into |
| 110 | * place. Requires @dir to contain all necessary directories for bind mounts |
| 111 | * (i.e., if you have requested a bind mount at /etc, /etc must exist in @dir.) |
| 112 | * |
| 113 | * Returns 0 on success. |
| 114 | */ |
| 115 | int minijail_enter_chroot(struct minijail *j, const char *dir); |
Yu-Hsi Chiang | 64d65a7 | 2015-08-13 17:43:27 +0800 | [diff] [blame] | 116 | int minijail_enter_pivot_root(struct minijail *j, const char *dir); |
Elly Jones | 51a5b6c | 2011-10-12 19:09:26 -0400 | [diff] [blame] | 117 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 118 | /* |
| 119 | * minijail_get_original_path: returns the path of a given file outside of the |
Dylan Reid | 08946cc | 2015-09-16 19:10:57 -0700 | [diff] [blame] | 120 | * chroot. |
| 121 | * @j minijail to obtain the path from. |
| 122 | * @chroot_path path inside of the chroot() to. |
| 123 | * |
| 124 | * When executing a binary in a chroot or pivot_root, return path to the binary |
| 125 | * outside of the chroot. |
| 126 | * |
| 127 | * Returns a string containing the path. This must be freed by the caller. |
| 128 | */ |
| 129 | char *minijail_get_original_path(struct minijail *j, const char *chroot_path); |
| 130 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 131 | /* |
Martin Pelikán | ab9eb44 | 2017-01-25 11:53:58 +1100 | [diff] [blame] | 132 | * minijail_mount_tmp: enables mounting of a 64M tmpfs filesystem on /tmp. |
Lee Campbell | 11af062 | 2014-05-22 12:36:04 -0700 | [diff] [blame] | 133 | * As be rules of bind mounts, /tmp must exist in chroot. |
| 134 | */ |
| 135 | void minijail_mount_tmp(struct minijail *j); |
| 136 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 137 | /* |
Martin Pelikán | ab9eb44 | 2017-01-25 11:53:58 +1100 | [diff] [blame] | 138 | * minijail_mount_tmp_size: enables mounting of a tmpfs filesystem on /tmp. |
| 139 | * As be rules of bind mounts, /tmp must exist in chroot. Size is in bytes. |
| 140 | */ |
| 141 | void minijail_mount_tmp_size(struct minijail *j, size_t size); |
| 142 | |
| 143 | /* |
Dylan Reid | 81e2397 | 2016-05-18 14:06:35 -0700 | [diff] [blame] | 144 | * minijail_mount_with_data: when entering minijail @j, |
| 145 | * mounts @src at @dst with @flags and @data. |
| 146 | * @j minijail to bind inside |
| 147 | * @src source to bind |
| 148 | * @dest location to bind (inside chroot) |
| 149 | * @type type of filesystem |
| 150 | * @flags flags passed to mount |
| 151 | * @data data arguments passed to mount(2), e.g. "mode=755" |
| 152 | * |
| 153 | * This may be called multiple times; all mounts will be applied in the order |
| 154 | * of minijail_mount() calls. |
| 155 | */ |
| 156 | int minijail_mount_with_data(struct minijail *j, const char *src, |
| 157 | const char *dest, const char *type, |
| 158 | unsigned long flags, const char *data); |
| 159 | |
| 160 | /* |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 161 | * minijail_mount: when entering minijail @j, mounts @src at @dst with @flags |
Dylan Reid | 648b220 | 2015-10-23 00:50:00 -0700 | [diff] [blame] | 162 | * @j minijail to bind inside |
| 163 | * @src source to bind |
| 164 | * @dest location to bind (inside chroot) |
| 165 | * @type type of filesystem |
| 166 | * @flags flags passed to mount |
| 167 | * |
Dylan Reid | 81e2397 | 2016-05-18 14:06:35 -0700 | [diff] [blame] | 168 | * This may be called multiple times; all mounts will be applied in the order |
Dylan Reid | 648b220 | 2015-10-23 00:50:00 -0700 | [diff] [blame] | 169 | * of minijail_mount() calls. |
| 170 | */ |
| 171 | int minijail_mount(struct minijail *j, const char *src, const char *dest, |
Jorge Lucangeli Obes | d16ac49 | 2015-12-03 14:44:35 -0800 | [diff] [blame] | 172 | const char *type, unsigned long flags); |
Dylan Reid | 648b220 | 2015-10-23 00:50:00 -0700 | [diff] [blame] | 173 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 174 | /* |
| 175 | * minijail_bind: bind-mounts @src into @j as @dest, optionally writeable |
Elly Jones | 51a5b6c | 2011-10-12 19:09:26 -0400 | [diff] [blame] | 176 | * @j minijail to bind inside |
| 177 | * @src source to bind |
| 178 | * @dest location to bind (inside chroot) |
| 179 | * @writeable 1 if the bind mount should be writeable |
| 180 | * |
| 181 | * This may be called multiple times; all bindings will be applied in the order |
| 182 | * of minijail_bind() calls. |
| 183 | */ |
| 184 | int minijail_bind(struct minijail *j, const char *src, const char *dest, |
Jorge Lucangeli Obes | 2f61ee4 | 2014-06-16 11:08:18 -0700 | [diff] [blame] | 185 | int writeable); |
Elly Jones | 51a5b6c | 2011-10-12 19:09:26 -0400 | [diff] [blame] | 186 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 187 | /* |
Jorge Lucangeli Obes | deca9f2 | 2016-07-01 09:49:39 -0400 | [diff] [blame] | 188 | * Lock this process into the given minijail. Note that this procedure cannot |
| 189 | * fail, since there is no way to undo privilege-dropping; therefore, if any |
| 190 | * part of the privilege-drop fails, minijail_enter() will abort the entire |
| 191 | * process. |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 192 | * |
| 193 | * Some restrictions cannot be enabled this way (pid namespaces) and attempting |
| 194 | * to do so will cause an abort. |
| 195 | */ |
| 196 | void minijail_enter(const struct minijail *j); |
| 197 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 198 | /* |
| 199 | * Run the specified command in the given minijail, execve(2)-style. This is |
Elly Jones | e1749eb | 2011-10-07 13:54:59 -0400 | [diff] [blame] | 200 | * required if minijail_namespace_pids() was used. |
| 201 | */ |
| 202 | int minijail_run(struct minijail *j, const char *filename, |
| 203 | char *const argv[]); |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 204 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 205 | /* |
| 206 | * Run the specified command in the given minijail, execve(2)-style. |
Jorge Lucangeli Obes | 5471450 | 2015-09-30 10:08:45 -0700 | [diff] [blame] | 207 | * Used with static binaries, or on systems without support for LD_PRELOAD. |
Lee Campbell | 1e4fc6a | 2014-06-06 17:40:02 -0700 | [diff] [blame] | 208 | */ |
Jorge Lucangeli Obes | 5471450 | 2015-09-30 10:08:45 -0700 | [diff] [blame] | 209 | int minijail_run_no_preload(struct minijail *j, const char *filename, |
| 210 | char *const argv[]); |
Lee Campbell | 1e4fc6a | 2014-06-06 17:40:02 -0700 | [diff] [blame] | 211 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 212 | /* |
| 213 | * Run the specified command in the given minijail, execve(2)-style. |
Jorge Lucangeli Obes | 9807d03 | 2012-04-17 13:36:00 -0700 | [diff] [blame] | 214 | * Update |*pchild_pid| with the pid of the child. |
| 215 | */ |
| 216 | int minijail_run_pid(struct minijail *j, const char *filename, |
| 217 | char *const argv[], pid_t *pchild_pid); |
| 218 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 219 | /* |
| 220 | * Run the specified command in the given minijail, execve(2)-style. |
Jorge Lucangeli Obes | df4bd35 | 2012-08-29 19:12:28 -0700 | [diff] [blame] | 221 | * Update |*pstdin_fd| with a fd that allows writing to the child's |
| 222 | * standard input. |
| 223 | */ |
| 224 | int minijail_run_pipe(struct minijail *j, const char *filename, |
| 225 | char *const argv[], int *pstdin_fd); |
| 226 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 227 | /* |
| 228 | * Run the specified command in the given minijail, execve(2)-style. |
Jorge Lucangeli Obes | df4bd35 | 2012-08-29 19:12:28 -0700 | [diff] [blame] | 229 | * Update |*pchild_pid| with the pid of the child. |
| 230 | * Update |*pstdin_fd| with a fd that allows writing to the child's |
| 231 | * standard input. |
Jorge Lucangeli Obes | 339a113 | 2013-02-15 16:53:47 -0800 | [diff] [blame] | 232 | * Update |*pstdout_fd| with a fd that allows reading from the child's |
| 233 | * standard output. |
| 234 | * Update |*pstderr_fd| with a fd that allows reading from the child's |
| 235 | * standard error. |
| 236 | */ |
| 237 | int minijail_run_pid_pipes(struct minijail *j, const char *filename, |
| 238 | char *const argv[], pid_t *pchild_pid, |
| 239 | int *pstdin_fd, int *pstdout_fd, int *pstderr_fd); |
| 240 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 241 | /* |
| 242 | * Run the specified command in the given minijail, execve(2)-style. |
Samuel Tan | 63187f4 | 2015-10-16 13:01:53 -0700 | [diff] [blame] | 243 | * Update |*pchild_pid| with the pid of the child. |
| 244 | * Update |*pstdin_fd| with a fd that allows writing to the child's |
| 245 | * standard input. |
| 246 | * Update |*pstdout_fd| with a fd that allows reading from the child's |
| 247 | * standard output. |
| 248 | * Update |*pstderr_fd| with a fd that allows reading from the child's |
| 249 | * standard error. |
| 250 | * Used with static binaries, or on systems without support for LD_PRELOAD. |
| 251 | */ |
| 252 | int minijail_run_pid_pipes_no_preload(struct minijail *j, const char *filename, |
| 253 | char *const argv[], pid_t *pchild_pid, |
Jorge Lucangeli Obes | 43a6a86 | 2015-12-04 14:53:36 -0800 | [diff] [blame] | 254 | int *pstdin_fd, int *pstdout_fd, |
| 255 | int *pstderr_fd); |
Samuel Tan | 63187f4 | 2015-10-16 13:01:53 -0700 | [diff] [blame] | 256 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 257 | /* |
| 258 | * Kill the specified minijail. The minijail must have been created with pid |
Elly Jones | e1749eb | 2011-10-07 13:54:59 -0400 | [diff] [blame] | 259 | * namespacing; if it was, all processes inside it are atomically killed. |
| 260 | */ |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 261 | int minijail_kill(struct minijail *j); |
| 262 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 263 | /* |
Jorge Lucangeli Obes | deca9f2 | 2016-07-01 09:49:39 -0400 | [diff] [blame] | 264 | * Wait for all processes in the specified minijail to exit. Returns the exit |
Elly Jones | e1749eb | 2011-10-07 13:54:59 -0400 | [diff] [blame] | 265 | * status of the _first_ process spawned in the jail. |
| 266 | */ |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 267 | int minijail_wait(struct minijail *j); |
| 268 | |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 269 | /* |
Jorge Lucangeli Obes | deca9f2 | 2016-07-01 09:49:39 -0400 | [diff] [blame] | 270 | * Frees the given minijail. It does not matter if the process is inside the |
| 271 | * minijail or not. |
Jorge Lucangeli Obes | d0a6e2f | 2015-11-24 14:21:21 -0800 | [diff] [blame] | 272 | */ |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 273 | void minijail_destroy(struct minijail *j); |
| 274 | |
| 275 | #ifdef __cplusplus |
Elly Jones | e1749eb | 2011-10-07 13:54:59 -0400 | [diff] [blame] | 276 | }; /* extern "C" */ |
Elly Jones | cd7a904 | 2011-07-22 13:56:51 -0400 | [diff] [blame] | 277 | #endif |
| 278 | |
Elly Jones | e1749eb | 2011-10-07 13:54:59 -0400 | [diff] [blame] | 279 | #endif /* !_LIBMINIJAIL_H_ */ |