blob: c7561413748f5a8c5d9346345cf46a3c956b5866 [file] [log] [blame]
Elly Jonese58176c2012-01-23 11:46:17 -05001/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Elly Jonescd7a9042011-07-22 13:56:51 -04002 * Use of this source code is governed by a BSD-style license that can be
Will Drewry32ac9f52011-08-18 21:36:27 -05003 * found in the LICENSE file.
4 */
Elly Jonescd7a9042011-07-22 13:56:51 -04005
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
Elly Jonese1749eb2011-10-07 13:54:59 -040014#ifndef _LIBMINIJAIL_H_
15#define _LIBMINIJAIL_H_
Elly Jonescd7a9042011-07-22 13:56:51 -040016
17#include <stdint.h>
18#include <sys/types.h>
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24enum {
Elly Jonese1749eb2011-10-07 13:54:59 -040025 MINIJAIL_ERR_PRELOAD = 252,
26 MINIJAIL_ERR_JAIL = 253,
27 MINIJAIL_ERR_INIT = 254,
Elly Jonescd7a9042011-07-22 13:56:51 -040028};
29
30struct minijail;
31
32/* Allocates a new minijail with no restrictions. */
33struct 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
Elly Jonese1749eb2011-10-07 13:54:59 -040037 * explanations in detail of what the restrictions do.
38 */
Elly Jonescd7a9042011-07-22 13:56:51 -040039void minijail_change_uid(struct minijail *j, uid_t uid);
40void minijail_change_gid(struct minijail *j, gid_t gid);
Will Drewry2ddaad02011-09-16 11:36:08 -050041/* Stores user to change to and copies |user| for internal consistency. */
Elly Jonescd7a9042011-07-22 13:56:51 -040042int minijail_change_user(struct minijail *j, const char *user);
Will Drewry2ddaad02011-09-16 11:36:08 -050043/* Does not take ownership of |group|. */
Elly Jonescd7a9042011-07-22 13:56:51 -040044int minijail_change_group(struct minijail *j, const char *group);
45void minijail_use_seccomp(struct minijail *j);
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -070046void minijail_no_new_privs(struct minijail *j);
Will Drewry32ac9f52011-08-18 21:36:27 -050047void minijail_use_seccomp_filter(struct minijail *j);
48void minijail_parse_seccomp_filters(struct minijail *j, const char *path);
Elly Jonescd7a9042011-07-22 13:56:51 -040049void minijail_use_caps(struct minijail *j, uint64_t capmask);
50void minijail_namespace_vfs(struct minijail *j);
Elly Jones761b7412012-06-13 15:49:52 -040051/* Implies namespace_vfs and remount_readonly.
52 * WARNING: this is NOT THREAD SAFE. See the block comment in </libminijail.c>.
53 */
Elly Jonescd7a9042011-07-22 13:56:51 -040054void minijail_namespace_pids(struct minijail *j);
55void minijail_remount_readonly(struct minijail *j);
56void minijail_inherit_usergroups(struct minijail *j);
57void minijail_disable_ptrace(struct minijail *j);
58
Elly Jones51a5b6c2011-10-12 19:09:26 -040059/* minijail_enter_chroot: enables chroot() restriction for @j
60 * @j minijail to apply restriction to
61 * @dir directory to chroot() to. Owned by caller.
62 *
63 * Enters @dir, binding all bind mounts specified with minijail_bind() into
64 * place. Requires @dir to contain all necessary directories for bind mounts
65 * (i.e., if you have requested a bind mount at /etc, /etc must exist in @dir.)
66 *
67 * Returns 0 on success.
68 */
69int minijail_enter_chroot(struct minijail *j, const char *dir);
70
71/* minijail_bind: bind-mounts @src into @j as @dest, optionally writeable
72 * @j minijail to bind inside
73 * @src source to bind
74 * @dest location to bind (inside chroot)
75 * @writeable 1 if the bind mount should be writeable
76 *
77 * This may be called multiple times; all bindings will be applied in the order
78 * of minijail_bind() calls.
79 */
80int minijail_bind(struct minijail *j, const char *src, const char *dest,
81 int writeable);
82
Will Drewry32ac9f52011-08-18 21:36:27 -050083/* Exposes minijail's name-to-int mapping for system calls for the
84 * architecture it was built on. This is primarily exposed for
85 * minijail_add_seccomp_filter() and testing.
86 * Returns the system call number on success or -1 on failure.
87 */
88int minijail_lookup_syscall(const char *name);
89
Elly Jonescd7a9042011-07-22 13:56:51 -040090/* Lock this process into the given minijail. Note that this procedure cannot fail,
91 * since there is no way to undo privilege-dropping; therefore, if any part of
92 * the privilege-drop fails, minijail_enter() will abort the entire process.
93 *
94 * Some restrictions cannot be enabled this way (pid namespaces) and attempting
95 * to do so will cause an abort.
96 */
97void minijail_enter(const struct minijail *j);
98
99/* Run the specified command in the given minijail, execve(3)-style. This is
Elly Jonese1749eb2011-10-07 13:54:59 -0400100 * required if minijail_namespace_pids() was used.
101 */
102int minijail_run(struct minijail *j, const char *filename,
103 char *const argv[]);
Elly Jonescd7a9042011-07-22 13:56:51 -0400104
Jorge Lucangeli Obes9807d032012-04-17 13:36:00 -0700105/* Run the specified command in the given minijail, execve(3)-style.
106 * Update |*pchild_pid| with the pid of the child.
107 */
108int minijail_run_pid(struct minijail *j, const char *filename,
109 char *const argv[], pid_t *pchild_pid);
110
Elly Jonescd7a9042011-07-22 13:56:51 -0400111/* Kill the specified minijail. The minijail must have been created with pid
Elly Jonese1749eb2011-10-07 13:54:59 -0400112 * namespacing; if it was, all processes inside it are atomically killed.
113 */
Elly Jonescd7a9042011-07-22 13:56:51 -0400114int minijail_kill(struct minijail *j);
115
116/* Wait for all processed in the specified minijail to exit. Returns the exit
Elly Jonese1749eb2011-10-07 13:54:59 -0400117 * status of the _first_ process spawned in the jail.
118 */
Elly Jonescd7a9042011-07-22 13:56:51 -0400119int minijail_wait(struct minijail *j);
120
121/* Frees the given minijail. It does not matter if the process is inside the minijail or
122 * not. */
123void minijail_destroy(struct minijail *j);
124
125#ifdef __cplusplus
Elly Jonese1749eb2011-10-07 13:54:59 -0400126}; /* extern "C" */
Elly Jonescd7a9042011-07-22 13:56:51 -0400127#endif
128
Elly Jonese1749eb2011-10-07 13:54:59 -0400129#endif /* !_LIBMINIJAIL_H_ */