blob: 4e46da585cc5659308e6d10a20039de8e7f201d6 [file] [log] [blame]
Jorge Lucangeli Obesd613ab22015-03-03 14:22:50 -08001/* 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#define _BSD_SOURCE
Arthur Gautier7a569072016-04-23 17:25:20 +00007#define _DEFAULT_SOURCE
Elly Jonescd7a9042011-07-22 13:56:51 -04008#define _GNU_SOURCE
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07009
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080010#include <asm/unistd.h>
Will Drewry32ac9f52011-08-18 21:36:27 -050011#include <ctype.h>
Luis Hector Chavez43ff0802016-10-07 12:21:07 -070012#include <dirent.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040013#include <errno.h>
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -070014#include <fcntl.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040015#include <grp.h>
16#include <inttypes.h>
Will Drewryfe4a3722011-09-16 14:50:50 -050017#include <limits.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040018#include <linux/capability.h>
Mike Frysinger7559dfe2016-11-15 18:58:39 -050019#include <net/if.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040020#include <pwd.h>
21#include <sched.h>
22#include <signal.h>
Will Drewry2f54b6a2011-09-16 13:45:31 -050023#include <stdarg.h>
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -070024#include <stdbool.h>
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080025#include <stddef.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040026#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040029#include <sys/capability.h>
30#include <sys/mount.h>
Will Drewryf89aef52011-09-16 16:48:57 -050031#include <sys/param.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040032#include <sys/prctl.h>
Mike Frysinger7559dfe2016-11-15 18:58:39 -050033#include <sys/socket.h>
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -070034#include <sys/stat.h>
35#include <sys/types.h>
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080036#include <sys/user.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040037#include <sys/wait.h>
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -070038#include <syscall.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040039#include <unistd.h>
40
41#include "libminijail.h"
42#include "libminijail-private.h"
43
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -070044#include "signal_handler.h"
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080045#include "syscall_filter.h"
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -040046#include "syscall_wrapper.h"
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070047#include "util.h"
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080048
Lei Zhangeee31552012-10-17 21:27:10 -070049#ifdef HAVE_SECUREBITS_H
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -070050# include <linux/securebits.h>
Lei Zhangeee31552012-10-17 21:27:10 -070051#else
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -070052# define SECURE_ALL_BITS 0x55
53# define SECURE_ALL_LOCKS (SECURE_ALL_BITS << 1)
54#endif
55/* For kernels < 4.3. */
56#define OLD_SECURE_ALL_BITS 0x15
57#define OLD_SECURE_ALL_LOCKS (OLD_SECURE_ALL_BITS << 1)
58
59/*
60 * Assert the value of SECURE_ALL_BITS at compile-time.
61 * Brillo devices are currently compiled against 4.4 kernel headers. Kernel 4.3
62 * added a new securebit.
63 * When a new securebit is added, the new SECURE_ALL_BITS mask will return EPERM
64 * when used on older kernels. The compile-time assert will catch this situation
65 * at compile time.
66 */
67#ifdef __BRILLO__
68_Static_assert(SECURE_ALL_BITS == 0x55, "SECURE_ALL_BITS == 0x55.");
Lei Zhangeee31552012-10-17 21:27:10 -070069#endif
70
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -070071/* Until these are reliably available in linux/prctl.h. */
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080072#ifndef PR_SET_SECCOMP
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -070073# define PR_SET_SECCOMP 22
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080074#endif
75
Andrew Brestickereac28942015-11-11 16:04:46 -080076#ifndef PR_ALT_SYSCALL
77# define PR_ALT_SYSCALL 0x43724f53
78#endif
79
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -040080/* Seccomp filter related flags. */
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080081#ifndef PR_SET_NO_NEW_PRIVS
82# define PR_SET_NO_NEW_PRIVS 38
83#endif
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -040084
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080085#ifndef SECCOMP_MODE_FILTER
86# define SECCOMP_MODE_FILTER 2 /* uses user-supplied filter. */
Will Drewry32ac9f52011-08-18 21:36:27 -050087#endif
88
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -040089#ifndef SECCOMP_SET_MODE_STRICT
90# define SECCOMP_SET_MODE_STRICT 0
91#endif
92#ifndef SECCOMP_SET_MODE_FILTER
93# define SECCOMP_SET_MODE_FILTER 1
94#endif
95
96#ifndef SECCOMP_FILTER_FLAG_TSYNC
97# define SECCOMP_FILTER_FLAG_TSYNC 1
98#endif
99/* End seccomp filter related flags. */
100
Dylan Reid4cbc2a52016-06-17 19:06:07 -0700101/* New cgroup namespace might not be in linux-headers yet. */
102#ifndef CLONE_NEWCGROUP
103# define CLONE_NEWCGROUP 0x02000000
104#endif
105
Dylan Reid605ce7f2016-01-19 19:21:00 -0800106#define MAX_CGROUPS 10 /* 10 different controllers supported by Linux. */
107
Dylan Reid648b2202015-10-23 00:50:00 -0700108struct mountpoint {
Elly Jones51a5b6c2011-10-12 19:09:26 -0400109 char *src;
110 char *dest;
Dylan Reid648b2202015-10-23 00:50:00 -0700111 char *type;
Dylan Reid81e23972016-05-18 14:06:35 -0700112 char *data;
113 int has_data;
Dylan Reid648b2202015-10-23 00:50:00 -0700114 unsigned long flags;
115 struct mountpoint *next;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400116};
117
Will Drewryf89aef52011-09-16 16:48:57 -0500118struct minijail {
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700119 /*
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700120 * WARNING: if you add a flag here you need to make sure it's
121 * accounted for in minijail_pre{enter|exec}() below.
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700122 */
Elly Jonese1749eb2011-10-07 13:54:59 -0400123 struct {
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -0700124 int uid : 1;
125 int gid : 1;
126 int usergroups : 1;
127 int suppl_gids : 1;
128 int use_caps : 1;
129 int capbset_drop : 1;
130 int vfs : 1;
131 int enter_vfs : 1;
132 int skip_remount_private : 1;
133 int pids : 1;
134 int ipc : 1;
135 int net : 1;
136 int enter_net : 1;
137 int ns_cgroups : 1;
138 int userns : 1;
139 int disable_setgroups : 1;
140 int seccomp : 1;
141 int remount_proc_ro : 1;
142 int no_new_privs : 1;
143 int seccomp_filter : 1;
144 int seccomp_filter_tsync : 1;
145 int seccomp_filter_logging : 1;
146 int chroot : 1;
147 int pivot_root : 1;
148 int mount_tmp : 1;
149 int do_init : 1;
150 int pid_file : 1;
151 int cgroups : 1;
152 int alt_syscall : 1;
153 int reset_signal_mask : 1;
154 int close_open_fds : 1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400155 } flags;
156 uid_t uid;
157 gid_t gid;
158 gid_t usergid;
159 char *user;
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800160 size_t suppl_gid_count;
161 gid_t *suppl_gid_list;
Elly Jonese1749eb2011-10-07 13:54:59 -0400162 uint64_t caps;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800163 uint64_t cap_bset;
Elly Jonese1749eb2011-10-07 13:54:59 -0400164 pid_t initpid;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700165 int mountns_fd;
Dylan Reid1102f5a2015-09-15 11:52:20 -0700166 int netns_fd;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400167 char *chrootdir;
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800168 char *pid_file_path;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800169 char *uidmap;
170 char *gidmap;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800171 size_t filter_len;
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800172 struct sock_fprog *filter_prog;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800173 char *alt_syscall_table;
Dylan Reid648b2202015-10-23 00:50:00 -0700174 struct mountpoint *mounts_head;
175 struct mountpoint *mounts_tail;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800176 size_t mounts_count;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800177 char *cgroups[MAX_CGROUPS];
178 size_t cgroup_count;
Will Drewryf89aef52011-09-16 16:48:57 -0500179};
180
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700181/*
182 * Strip out flags meant for the parent.
183 * We keep things that are not inherited across execve(2) (e.g. capabilities),
184 * or are easier to set after execve(2) (e.g. seccomp filters).
185 */
186void minijail_preenter(struct minijail *j)
187{
188 j->flags.vfs = 0;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700189 j->flags.enter_vfs = 0;
Shuhei Takahashi3da40312016-03-07 17:37:49 +0900190 j->flags.skip_remount_private = 0;
Dylan Reid791f5772015-09-14 20:02:42 -0700191 j->flags.remount_proc_ro = 0;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700192 j->flags.pids = 0;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800193 j->flags.do_init = 0;
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800194 j->flags.pid_file = 0;
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800195 j->flags.cgroups = 0;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700196}
197
198/*
199 * Strip out flags meant for the child.
200 * We keep things that are inherited across execve(2).
201 */
202void minijail_preexec(struct minijail *j)
203{
204 int vfs = j->flags.vfs;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700205 int enter_vfs = j->flags.enter_vfs;
Jorge Lucangeli Obes87bf01d2016-03-08 11:20:03 -0800206 int skip_remount_private = j->flags.skip_remount_private;
Dylan Reid791f5772015-09-14 20:02:42 -0700207 int remount_proc_ro = j->flags.remount_proc_ro;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800208 int userns = j->flags.userns;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700209 if (j->user)
210 free(j->user);
211 j->user = NULL;
Jorge Lucangeli Obese81a52f2015-12-04 16:05:23 -0800212 if (j->suppl_gid_list)
213 free(j->suppl_gid_list);
214 j->suppl_gid_list = NULL;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700215 memset(&j->flags, 0, sizeof(j->flags));
216 /* Now restore anything we meant to keep. */
217 j->flags.vfs = vfs;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700218 j->flags.enter_vfs = enter_vfs;
Jorge Lucangeli Obes87bf01d2016-03-08 11:20:03 -0800219 j->flags.skip_remount_private = skip_remount_private;
Dylan Reid791f5772015-09-14 20:02:42 -0700220 j->flags.remount_proc_ro = remount_proc_ro;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800221 j->flags.userns = userns;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700222 /* Note, |pids| will already have been used before this call. */
223}
224
225/* Minijail API. */
226
Will Drewry6ac91122011-10-21 16:38:58 -0500227struct minijail API *minijail_new(void)
Elly Jonese1749eb2011-10-07 13:54:59 -0400228{
Elly Jones51a5b6c2011-10-12 19:09:26 -0400229 return calloc(1, sizeof(struct minijail));
Elly Jonescd7a9042011-07-22 13:56:51 -0400230}
231
Will Drewry6ac91122011-10-21 16:38:58 -0500232void API minijail_change_uid(struct minijail *j, uid_t uid)
Elly Jonese1749eb2011-10-07 13:54:59 -0400233{
234 if (uid == 0)
235 die("useless change to uid 0");
236 j->uid = uid;
237 j->flags.uid = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400238}
239
Will Drewry6ac91122011-10-21 16:38:58 -0500240void API minijail_change_gid(struct minijail *j, gid_t gid)
Elly Jonese1749eb2011-10-07 13:54:59 -0400241{
242 if (gid == 0)
243 die("useless change to gid 0");
244 j->gid = gid;
245 j->flags.gid = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400246}
247
Jorge Lucangeli Obesbc67f442016-01-08 14:43:45 -0800248void API minijail_set_supplementary_gids(struct minijail *j, size_t size,
249 const gid_t *list)
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800250{
Jorge Lucangeli Obes06940be2015-12-04 18:09:21 -0800251 size_t i;
252
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800253 if (j->flags.usergroups)
254 die("cannot inherit *and* set supplementary groups");
255
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800256 if (size == 0) {
257 /* Clear supplementary groups. */
258 j->suppl_gid_list = NULL;
259 j->suppl_gid_count = 0;
260 j->flags.suppl_gids = 1;
Jorge Lucangeli Obesbc67f442016-01-08 14:43:45 -0800261 return;
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800262 }
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800263
264 /* Copy the gid_t array. */
265 j->suppl_gid_list = calloc(size, sizeof(gid_t));
266 if (!j->suppl_gid_list) {
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800267 die("failed to allocate internal supplementary group array");
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800268 }
Jorge Lucangeli Obes06940be2015-12-04 18:09:21 -0800269 for (i = 0; i < size; i++) {
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800270 j->suppl_gid_list[i] = list[i];
271 }
272 j->suppl_gid_count = size;
273 j->flags.suppl_gids = 1;
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800274}
275
Will Drewry6ac91122011-10-21 16:38:58 -0500276int API minijail_change_user(struct minijail *j, const char *user)
Elly Jonese1749eb2011-10-07 13:54:59 -0400277{
278 char *buf = NULL;
279 struct passwd pw;
280 struct passwd *ppw = NULL;
281 ssize_t sz = sysconf(_SC_GETPW_R_SIZE_MAX);
282 if (sz == -1)
283 sz = 65536; /* your guess is as good as mine... */
Elly Joneseb300c52011-09-22 14:35:43 -0400284
Elly Jonesdd3e8512012-01-23 15:13:38 -0500285 /*
286 * sysconf(_SC_GETPW_R_SIZE_MAX), under glibc, is documented to return
Elly Jonese1749eb2011-10-07 13:54:59 -0400287 * the maximum needed size of the buffer, so we don't have to search.
288 */
289 buf = malloc(sz);
290 if (!buf)
291 return -ENOMEM;
292 getpwnam_r(user, &pw, buf, sz, &ppw);
Elly Jonesdd3e8512012-01-23 15:13:38 -0500293 /*
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800294 * We're safe to free the buffer here. The strings inside |pw| point
295 * inside |buf|, but we don't use any of them; this leaves the pointers
Jorge Lucangeli Obes87bf01d2016-03-08 11:20:03 -0800296 * dangling but it's safe. |ppw| points at |pw| if getpwnam_r(3)
297 * succeeded.
Elly Jonesdd3e8512012-01-23 15:13:38 -0500298 */
Elly Jonese1749eb2011-10-07 13:54:59 -0400299 free(buf);
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700300 /* getpwnam_r(3) does *not* set errno when |ppw| is NULL. */
Elly Jonese1749eb2011-10-07 13:54:59 -0400301 if (!ppw)
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700302 return -1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400303 minijail_change_uid(j, ppw->pw_uid);
304 j->user = strdup(user);
305 if (!j->user)
306 return -ENOMEM;
307 j->usergid = ppw->pw_gid;
308 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -0400309}
310
Will Drewry6ac91122011-10-21 16:38:58 -0500311int API minijail_change_group(struct minijail *j, const char *group)
Elly Jonese1749eb2011-10-07 13:54:59 -0400312{
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -0700313 char *buf = NULL;
Yabin Cui1b21c8f2015-07-22 10:34:45 -0700314 struct group gr;
315 struct group *pgr = NULL;
Elly Jonese1749eb2011-10-07 13:54:59 -0400316 ssize_t sz = sysconf(_SC_GETGR_R_SIZE_MAX);
317 if (sz == -1)
318 sz = 65536; /* and mine is as good as yours, really */
Elly Joneseb300c52011-09-22 14:35:43 -0400319
Elly Jonesdd3e8512012-01-23 15:13:38 -0500320 /*
321 * sysconf(_SC_GETGR_R_SIZE_MAX), under glibc, is documented to return
Elly Jonese1749eb2011-10-07 13:54:59 -0400322 * the maximum needed size of the buffer, so we don't have to search.
323 */
324 buf = malloc(sz);
325 if (!buf)
326 return -ENOMEM;
327 getgrnam_r(group, &gr, buf, sz, &pgr);
Elly Jonesdd3e8512012-01-23 15:13:38 -0500328 /*
329 * We're safe to free the buffer here. The strings inside gr point
330 * inside buf, but we don't use any of them; this leaves the pointers
331 * dangling but it's safe. pgr points at gr if getgrnam_r succeeded.
332 */
Elly Jonese1749eb2011-10-07 13:54:59 -0400333 free(buf);
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700334 /* getgrnam_r(3) does *not* set errno when |pgr| is NULL. */
Elly Jonese1749eb2011-10-07 13:54:59 -0400335 if (!pgr)
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700336 return -1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400337 minijail_change_gid(j, pgr->gr_gid);
338 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -0400339}
340
Will Drewry6ac91122011-10-21 16:38:58 -0500341void API minijail_use_seccomp(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400342{
343 j->flags.seccomp = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400344}
345
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -0700346void API minijail_no_new_privs(struct minijail *j)
347{
348 j->flags.no_new_privs = 1;
349}
350
Will Drewry6ac91122011-10-21 16:38:58 -0500351void API minijail_use_seccomp_filter(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400352{
353 j->flags.seccomp_filter = 1;
Will Drewry32ac9f52011-08-18 21:36:27 -0500354}
355
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400356void API minijail_set_seccomp_filter_tsync(struct minijail *j)
357{
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -0400358 if (j->filter_len > 0 && j->filter_prog != NULL) {
359 die("minijail_set_seccomp_filter_tsync() must be called "
360 "before minijail_parse_seccomp_filters()");
361 }
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400362 j->flags.seccomp_filter_tsync = 1;
363}
364
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700365void API minijail_log_seccomp_filter_failures(struct minijail *j)
366{
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -0400367 if (j->filter_len > 0 && j->filter_prog != NULL) {
368 die("minijail_log_seccomp_filter_failures() must be called "
369 "before minijail_parse_seccomp_filters()");
370 }
371 j->flags.seccomp_filter_logging = 1;
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700372}
373
Will Drewry6ac91122011-10-21 16:38:58 -0500374void API minijail_use_caps(struct minijail *j, uint64_t capmask)
Elly Jonese1749eb2011-10-07 13:54:59 -0400375{
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800376 /*
377 * 'minijail_use_caps' configures a runtime-capabilities-only
378 * environment, including a bounding set matching the thread's runtime
379 * (permitted|inheritable|effective) sets.
380 * Therefore, it will override any existing bounding set configurations
381 * since the latter would allow gaining extra runtime capabilities from
382 * file capabilities.
383 */
384 if (j->flags.capbset_drop) {
385 warn("overriding bounding set configuration");
386 j->cap_bset = 0;
387 j->flags.capbset_drop = 0;
388 }
Elly Jonese1749eb2011-10-07 13:54:59 -0400389 j->caps = capmask;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800390 j->flags.use_caps = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400391}
392
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800393void API minijail_capbset_drop(struct minijail *j, uint64_t capmask)
394{
395 if (j->flags.use_caps) {
396 /*
397 * 'minijail_use_caps' will have already configured a capability
398 * bounding set matching the (permitted|inheritable|effective)
399 * sets. Abort if the user tries to configure a separate
400 * bounding set. 'minijail_capbset_drop' and 'minijail_use_caps'
401 * are mutually exclusive.
402 */
403 die("runtime capabilities already configured, can't drop "
404 "bounding set separately");
405 }
406 j->cap_bset = capmask;
407 j->flags.capbset_drop = 1;
408}
409
410void API minijail_reset_signal_mask(struct minijail *j)
411{
Peter Qiu2860c462015-12-16 15:13:06 -0800412 j->flags.reset_signal_mask = 1;
413}
414
Will Drewry6ac91122011-10-21 16:38:58 -0500415void API minijail_namespace_vfs(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400416{
417 j->flags.vfs = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400418}
419
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700420void API minijail_namespace_enter_vfs(struct minijail *j, const char *ns_path)
421{
Ricky Zhoubce609d2016-03-02 21:47:56 -0800422 int ns_fd = open(ns_path, O_RDONLY | O_CLOEXEC);
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700423 if (ns_fd < 0) {
424 pdie("failed to open namespace '%s'", ns_path);
425 }
426 j->mountns_fd = ns_fd;
427 j->flags.enter_vfs = 1;
428}
429
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800430void API minijail_skip_remount_private(struct minijail *j)
431{
432 j->flags.skip_remount_private = 1;
433}
434
Will Drewry6ac91122011-10-21 16:38:58 -0500435void API minijail_namespace_pids(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400436{
Elly Jonese58176c2012-01-23 11:46:17 -0500437 j->flags.vfs = 1;
Dylan Reid791f5772015-09-14 20:02:42 -0700438 j->flags.remount_proc_ro = 1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400439 j->flags.pids = 1;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800440 j->flags.do_init = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400441}
442
Dylan Reidf7942472015-11-18 17:55:26 -0800443void API minijail_namespace_ipc(struct minijail *j)
444{
445 j->flags.ipc = 1;
446}
447
Elly Fong-Jones6c086302013-03-20 17:15:28 -0400448void API minijail_namespace_net(struct minijail *j)
449{
450 j->flags.net = 1;
451}
452
Dylan Reid1102f5a2015-09-15 11:52:20 -0700453void API minijail_namespace_enter_net(struct minijail *j, const char *ns_path)
454{
Ricky Zhoubce609d2016-03-02 21:47:56 -0800455 int ns_fd = open(ns_path, O_RDONLY | O_CLOEXEC);
Dylan Reid1102f5a2015-09-15 11:52:20 -0700456 if (ns_fd < 0) {
457 pdie("failed to open namespace '%s'", ns_path);
458 }
459 j->netns_fd = ns_fd;
460 j->flags.enter_net = 1;
461}
462
Dylan Reid4cbc2a52016-06-17 19:06:07 -0700463void API minijail_namespace_cgroups(struct minijail *j)
464{
465 j->flags.ns_cgroups = 1;
466}
467
Luis Hector Chavez43ff0802016-10-07 12:21:07 -0700468void API minijail_close_open_fds(struct minijail *j)
469{
470 j->flags.close_open_fds = 1;
471}
472
Dylan Reid791f5772015-09-14 20:02:42 -0700473void API minijail_remount_proc_readonly(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400474{
475 j->flags.vfs = 1;
Dylan Reid791f5772015-09-14 20:02:42 -0700476 j->flags.remount_proc_ro = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400477}
478
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800479void API minijail_namespace_user(struct minijail *j)
480{
481 j->flags.userns = 1;
482}
483
Jorge Lucangeli Obes200299c2016-09-23 15:21:57 -0400484void API minijail_namespace_user_disable_setgroups(struct minijail *j)
485{
486 j->flags.disable_setgroups = 1;
487}
488
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800489int API minijail_uidmap(struct minijail *j, const char *uidmap)
490{
491 j->uidmap = strdup(uidmap);
492 if (!j->uidmap)
493 return -ENOMEM;
Yu-Hsi Chiang1912c5b2015-08-31 18:59:49 +0800494 char *ch;
495 for (ch = j->uidmap; *ch; ch++) {
496 if (*ch == ',')
497 *ch = '\n';
498 }
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800499 return 0;
500}
501
502int API minijail_gidmap(struct minijail *j, const char *gidmap)
503{
504 j->gidmap = strdup(gidmap);
505 if (!j->gidmap)
506 return -ENOMEM;
Yu-Hsi Chiang1912c5b2015-08-31 18:59:49 +0800507 char *ch;
508 for (ch = j->gidmap; *ch; ch++) {
509 if (*ch == ',')
510 *ch = '\n';
511 }
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800512 return 0;
513}
514
Will Drewry6ac91122011-10-21 16:38:58 -0500515void API minijail_inherit_usergroups(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400516{
517 j->flags.usergroups = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400518}
519
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800520void API minijail_run_as_init(struct minijail *j)
521{
522 /*
523 * Since the jailed program will become 'init' in the new PID namespace,
524 * Minijail does not need to fork an 'init' process.
525 */
526 j->flags.do_init = 0;
527}
528
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700529int API minijail_enter_chroot(struct minijail *j, const char *dir)
530{
Elly Jones51a5b6c2011-10-12 19:09:26 -0400531 if (j->chrootdir)
532 return -EINVAL;
533 j->chrootdir = strdup(dir);
534 if (!j->chrootdir)
535 return -ENOMEM;
536 j->flags.chroot = 1;
537 return 0;
538}
539
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +0800540int API minijail_enter_pivot_root(struct minijail *j, const char *dir)
541{
542 if (j->chrootdir)
543 return -EINVAL;
544 j->chrootdir = strdup(dir);
545 if (!j->chrootdir)
546 return -ENOMEM;
547 j->flags.pivot_root = 1;
548 return 0;
549}
550
Dylan Reida14e08d2015-10-22 21:05:29 -0700551char API *minijail_get_original_path(struct minijail *j,
552 const char *path_inside_chroot)
553{
Dylan Reid648b2202015-10-23 00:50:00 -0700554 struct mountpoint *b;
Dylan Reida14e08d2015-10-22 21:05:29 -0700555
Dylan Reid648b2202015-10-23 00:50:00 -0700556 b = j->mounts_head;
Dylan Reida14e08d2015-10-22 21:05:29 -0700557 while (b) {
558 /*
559 * If |path_inside_chroot| is the exact destination of a
Dylan Reid648b2202015-10-23 00:50:00 -0700560 * mount, then the original path is exactly the source of
561 * the mount.
Dylan Reida14e08d2015-10-22 21:05:29 -0700562 * for example: "-b /some/path/exe,/chroot/path/exe"
Dylan Reid648b2202015-10-23 00:50:00 -0700563 * mount source = /some/path/exe, mount dest =
564 * /chroot/path/exe Then when getting the original path of
565 * "/chroot/path/exe", the source of that mount,
566 * "/some/path/exe" is what should be returned.
Dylan Reida14e08d2015-10-22 21:05:29 -0700567 */
568 if (!strcmp(b->dest, path_inside_chroot))
569 return strdup(b->src);
570
571 /*
572 * If |path_inside_chroot| is within the destination path of a
Dylan Reid648b2202015-10-23 00:50:00 -0700573 * mount, take the suffix of the chroot path relative to the
574 * mount destination path, and append it to the mount source
575 * path.
Dylan Reida14e08d2015-10-22 21:05:29 -0700576 */
577 if (!strncmp(b->dest, path_inside_chroot, strlen(b->dest))) {
578 const char *relative_path =
579 path_inside_chroot + strlen(b->dest);
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400580 return path_join(b->src, relative_path);
Dylan Reida14e08d2015-10-22 21:05:29 -0700581 }
582 b = b->next;
583 }
584
585 /* If there is a chroot path, append |path_inside_chroot| to that. */
586 if (j->chrootdir)
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400587 return path_join(j->chrootdir, path_inside_chroot);
Dylan Reida14e08d2015-10-22 21:05:29 -0700588
589 /* No chroot, so the path outside is the same as it is inside. */
590 return strdup(path_inside_chroot);
Dylan Reid08946cc2015-09-16 19:10:57 -0700591}
592
Lee Campbell11af0622014-05-22 12:36:04 -0700593void API minijail_mount_tmp(struct minijail *j)
594{
595 j->flags.mount_tmp = 1;
596}
597
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800598int API minijail_write_pid_file(struct minijail *j, const char *path)
599{
600 j->pid_file_path = strdup(path);
601 if (!j->pid_file_path)
602 return -ENOMEM;
603 j->flags.pid_file = 1;
604 return 0;
605}
606
Dylan Reid605ce7f2016-01-19 19:21:00 -0800607int API minijail_add_to_cgroup(struct minijail *j, const char *path)
608{
609 if (j->cgroup_count >= MAX_CGROUPS)
610 return -ENOMEM;
611 j->cgroups[j->cgroup_count] = strdup(path);
612 if (!j->cgroups[j->cgroup_count])
613 return -ENOMEM;
614 j->cgroup_count++;
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800615 j->flags.cgroups = 1;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800616 return 0;
617}
618
Dylan Reid81e23972016-05-18 14:06:35 -0700619int API minijail_mount_with_data(struct minijail *j, const char *src,
620 const char *dest, const char *type,
621 unsigned long flags, const char *data)
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700622{
Dylan Reid648b2202015-10-23 00:50:00 -0700623 struct mountpoint *m;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400624
625 if (*dest != '/')
626 return -EINVAL;
Dylan Reid648b2202015-10-23 00:50:00 -0700627 m = calloc(1, sizeof(*m));
628 if (!m)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400629 return -ENOMEM;
Dylan Reid648b2202015-10-23 00:50:00 -0700630 m->dest = strdup(dest);
631 if (!m->dest)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400632 goto error;
Dylan Reid648b2202015-10-23 00:50:00 -0700633 m->src = strdup(src);
634 if (!m->src)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400635 goto error;
Dylan Reid648b2202015-10-23 00:50:00 -0700636 m->type = strdup(type);
637 if (!m->type)
638 goto error;
Dylan Reid81e23972016-05-18 14:06:35 -0700639 if (data) {
640 m->data = strdup(data);
641 if (!m->data)
642 goto error;
643 m->has_data = 1;
644 }
Dylan Reid648b2202015-10-23 00:50:00 -0700645 m->flags = flags;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400646
Jorge Lucangeli Obes6c755d22016-01-28 15:24:40 -0800647 info("mount %s -> %s type '%s'", src, dest, type);
Elly Jones51a5b6c2011-10-12 19:09:26 -0400648
Elly Jonesdd3e8512012-01-23 15:13:38 -0500649 /*
Dylan Reid648b2202015-10-23 00:50:00 -0700650 * Force vfs namespacing so the mounts don't leak out into the
Elly Jones51a5b6c2011-10-12 19:09:26 -0400651 * containing vfs namespace.
652 */
653 minijail_namespace_vfs(j);
654
Dylan Reid648b2202015-10-23 00:50:00 -0700655 if (j->mounts_tail)
656 j->mounts_tail->next = m;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400657 else
Dylan Reid648b2202015-10-23 00:50:00 -0700658 j->mounts_head = m;
659 j->mounts_tail = m;
660 j->mounts_count++;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400661
662 return 0;
663
664error:
Dylan Reid81e23972016-05-18 14:06:35 -0700665 free(m->type);
Dylan Reid648b2202015-10-23 00:50:00 -0700666 free(m->src);
667 free(m->dest);
668 free(m);
Elly Jones51a5b6c2011-10-12 19:09:26 -0400669 return -ENOMEM;
670}
671
Dylan Reid81e23972016-05-18 14:06:35 -0700672int API minijail_mount(struct minijail *j, const char *src, const char *dest,
673 const char *type, unsigned long flags)
674{
675 return minijail_mount_with_data(j, src, dest, type, flags, NULL);
676}
677
Dylan Reid648b2202015-10-23 00:50:00 -0700678int API minijail_bind(struct minijail *j, const char *src, const char *dest,
679 int writeable)
680{
681 unsigned long flags = MS_BIND;
682
683 if (!writeable)
684 flags |= MS_RDONLY;
685
686 return minijail_mount(j, src, dest, "", flags);
687}
688
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400689static void clear_seccomp_options(struct minijail *j)
690{
691 j->flags.seccomp_filter = 0;
692 j->flags.seccomp_filter_tsync = 0;
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -0400693 j->flags.seccomp_filter_logging = 0;
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400694 j->filter_len = 0;
695 j->filter_prog = NULL;
696 j->flags.no_new_privs = 0;
697}
698
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400699static int seccomp_should_parse_filters(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400700{
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400701 if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, NULL) == -1) {
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400702 /*
703 * |errno| will be set to EINVAL when seccomp has not been
704 * compiled into the kernel. On certain platforms and kernel
705 * versions this is not a fatal failure. In that case, and only
706 * in that case, disable seccomp and skip loading the filters.
707 */
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400708 if ((errno == EINVAL) && seccomp_can_softfail()) {
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400709 warn("not loading seccomp filters, seccomp filter not "
710 "supported");
711 clear_seccomp_options(j);
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400712 return 0;
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -0700713 }
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400714 /*
715 * If |errno| != EINVAL or seccomp_can_softfail() is false,
716 * we can proceed. Worst case scenario minijail_enter() will
717 * abort() if seccomp fails.
718 */
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -0700719 }
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400720 if (j->flags.seccomp_filter_tsync) {
721 /* Are the seccomp(2) syscall and the TSYNC option supported? */
722 if (sys_seccomp(SECCOMP_SET_MODE_FILTER,
723 SECCOMP_FILTER_FLAG_TSYNC, NULL) == -1) {
724 int saved_errno = errno;
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -0400725 if (saved_errno == ENOSYS && seccomp_can_softfail()) {
726 warn("seccomp(2) syscall not supported");
727 clear_seccomp_options(j);
728 return 0;
729 } else if (saved_errno == EINVAL &&
730 seccomp_can_softfail()) {
731 warn(
732 "seccomp filter thread sync not supported");
733 clear_seccomp_options(j);
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400734 return 0;
735 }
736 /*
737 * Similar logic here. If seccomp_can_softfail() is
738 * false, or |errno| != ENOSYS, or |errno| != EINVAL,
739 * we can proceed. Worst case scenario minijail_enter()
740 * will abort() if seccomp or TSYNC fail.
741 */
742 }
743 }
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400744 return 1;
745}
746
747static int parse_seccomp_filters(struct minijail *j, FILE *policy_file)
748{
749 struct sock_fprog *fprog = malloc(sizeof(struct sock_fprog));
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -0400750 int use_ret_trap =
751 j->flags.seccomp_filter_tsync || j->flags.seccomp_filter_logging;
752 int allow_logging = j->flags.seccomp_filter_logging;
753
754 if (compile_filter(policy_file, fprog, use_ret_trap, allow_logging)) {
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400755 free(fprog);
756 return -1;
757 }
758
759 j->filter_len = fprog->len;
760 j->filter_prog = fprog;
761 return 0;
762}
763
764void API minijail_parse_seccomp_filters(struct minijail *j, const char *path)
765{
766 if (!seccomp_should_parse_filters(j))
767 return;
768
Elly Jonese1749eb2011-10-07 13:54:59 -0400769 FILE *file = fopen(path, "r");
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800770 if (!file) {
Jorge Lucangeli Obes224e4272012-08-02 14:31:39 -0700771 pdie("failed to open seccomp filter file '%s'", path);
Elly Jonese1749eb2011-10-07 13:54:59 -0400772 }
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800773
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400774 if (parse_seccomp_filters(j, file) != 0) {
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700775 die("failed to compile seccomp filter BPF program in '%s'",
776 path);
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800777 }
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400778 fclose(file);
779}
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800780
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400781void API minijail_parse_seccomp_filters_from_fd(struct minijail *j, int fd)
782{
783 if (!seccomp_should_parse_filters(j))
784 return;
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800785
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400786 FILE *file = fdopen(fd, "r");
787 if (!file) {
788 pdie("failed to associate stream with fd %d", fd);
789 }
790
791 if (parse_seccomp_filters(j, file) != 0) {
792 die("failed to compile seccomp filter BPF program from fd %d",
793 fd);
794 }
Elly Jonese1749eb2011-10-07 13:54:59 -0400795 fclose(file);
Will Drewry32ac9f52011-08-18 21:36:27 -0500796}
797
Andrew Brestickereac28942015-11-11 16:04:46 -0800798int API minijail_use_alt_syscall(struct minijail *j, const char *table)
799{
800 j->alt_syscall_table = strdup(table);
801 if (!j->alt_syscall_table)
802 return -ENOMEM;
803 j->flags.alt_syscall = 1;
804 return 0;
805}
806
Will Drewryf89aef52011-09-16 16:48:57 -0500807struct marshal_state {
Elly Jonese1749eb2011-10-07 13:54:59 -0400808 size_t available;
809 size_t total;
810 char *buf;
Will Drewryf89aef52011-09-16 16:48:57 -0500811};
812
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800813void marshal_state_init(struct marshal_state *state, char *buf,
814 size_t available)
Elly Jonese1749eb2011-10-07 13:54:59 -0400815{
816 state->available = available;
817 state->buf = buf;
818 state->total = 0;
Will Drewryf89aef52011-09-16 16:48:57 -0500819}
820
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800821void marshal_append(struct marshal_state *state, void *src, size_t length)
Elly Jonese1749eb2011-10-07 13:54:59 -0400822{
823 size_t copy_len = MIN(state->available, length);
Will Drewryf89aef52011-09-16 16:48:57 -0500824
Elly Jonese1749eb2011-10-07 13:54:59 -0400825 /* Up to |available| will be written. */
826 if (copy_len) {
827 memcpy(state->buf, src, copy_len);
828 state->buf += copy_len;
829 state->available -= copy_len;
830 }
831 /* |total| will contain the expected length. */
832 state->total += length;
Will Drewryf89aef52011-09-16 16:48:57 -0500833}
834
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400835void marshal_mount(struct marshal_state *state, const struct mountpoint *m)
Dylan Reid81e23972016-05-18 14:06:35 -0700836{
837 marshal_append(state, m->src, strlen(m->src) + 1);
838 marshal_append(state, m->dest, strlen(m->dest) + 1);
839 marshal_append(state, m->type, strlen(m->type) + 1);
840 marshal_append(state, (char *)&m->has_data, sizeof(m->has_data));
841 if (m->has_data)
842 marshal_append(state, m->data, strlen(m->data) + 1);
843 marshal_append(state, (char *)&m->flags, sizeof(m->flags));
844}
845
Will Drewry6ac91122011-10-21 16:38:58 -0500846void minijail_marshal_helper(struct marshal_state *state,
847 const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400848{
Dylan Reid648b2202015-10-23 00:50:00 -0700849 struct mountpoint *m = NULL;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800850 size_t i;
851
Elly Jonese1749eb2011-10-07 13:54:59 -0400852 marshal_append(state, (char *)j, sizeof(*j));
853 if (j->user)
854 marshal_append(state, j->user, strlen(j->user) + 1);
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800855 if (j->suppl_gid_list) {
856 marshal_append(state, j->suppl_gid_list,
857 j->suppl_gid_count * sizeof(gid_t));
858 }
Elly Jones51a5b6c2011-10-12 19:09:26 -0400859 if (j->chrootdir)
860 marshal_append(state, j->chrootdir, strlen(j->chrootdir) + 1);
Andrew Brestickereac28942015-11-11 16:04:46 -0800861 if (j->alt_syscall_table) {
862 marshal_append(state, j->alt_syscall_table,
863 strlen(j->alt_syscall_table) + 1);
864 }
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800865 if (j->flags.seccomp_filter && j->filter_prog) {
866 struct sock_fprog *fp = j->filter_prog;
867 marshal_append(state, (char *)fp->filter,
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800868 fp->len * sizeof(struct sock_filter));
Elly Jonese1749eb2011-10-07 13:54:59 -0400869 }
Dylan Reid648b2202015-10-23 00:50:00 -0700870 for (m = j->mounts_head; m; m = m->next) {
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400871 marshal_mount(state, m);
Elly Jones51a5b6c2011-10-12 19:09:26 -0400872 }
Dylan Reid605ce7f2016-01-19 19:21:00 -0800873 for (i = 0; i < j->cgroup_count; ++i)
874 marshal_append(state, j->cgroups[i], strlen(j->cgroups[i]) + 1);
Will Drewryf89aef52011-09-16 16:48:57 -0500875}
876
Will Drewry6ac91122011-10-21 16:38:58 -0500877size_t API minijail_size(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400878{
879 struct marshal_state state;
880 marshal_state_init(&state, NULL, 0);
881 minijail_marshal_helper(&state, j);
882 return state.total;
Will Drewry2ddaad02011-09-16 11:36:08 -0500883}
884
Elly Jonese1749eb2011-10-07 13:54:59 -0400885int minijail_marshal(const struct minijail *j, char *buf, size_t available)
886{
887 struct marshal_state state;
888 marshal_state_init(&state, buf, available);
889 minijail_marshal_helper(&state, j);
890 return (state.total > available);
Will Drewry2ddaad02011-09-16 11:36:08 -0500891}
892
Elly Jonese1749eb2011-10-07 13:54:59 -0400893int minijail_unmarshal(struct minijail *j, char *serialized, size_t length)
894{
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800895 size_t i;
896 size_t count;
Will Drewrybee7ba72011-10-21 20:47:01 -0500897 int ret = -EINVAL;
898
Elly Jonese1749eb2011-10-07 13:54:59 -0400899 if (length < sizeof(*j))
Will Drewrybee7ba72011-10-21 20:47:01 -0500900 goto out;
Elly Jonese1749eb2011-10-07 13:54:59 -0400901 memcpy((void *)j, serialized, sizeof(*j));
902 serialized += sizeof(*j);
903 length -= sizeof(*j);
Will Drewryf89aef52011-09-16 16:48:57 -0500904
Will Drewrybee7ba72011-10-21 20:47:01 -0500905 /* Potentially stale pointers not used as signals. */
Jorge Lucangeli Obes3b2e6e42016-08-04 12:26:19 -0400906 j->pid_file_path = NULL;
907 j->uidmap = NULL;
908 j->gidmap = NULL;
Dylan Reid648b2202015-10-23 00:50:00 -0700909 j->mounts_head = NULL;
910 j->mounts_tail = NULL;
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800911 j->filter_prog = NULL;
Will Drewrybee7ba72011-10-21 20:47:01 -0500912
Elly Jonese1749eb2011-10-07 13:54:59 -0400913 if (j->user) { /* stale pointer */
Elly Jones51a5b6c2011-10-12 19:09:26 -0400914 char *user = consumestr(&serialized, &length);
915 if (!user)
Will Drewrybee7ba72011-10-21 20:47:01 -0500916 goto clear_pointers;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400917 j->user = strdup(user);
Will Drewrybee7ba72011-10-21 20:47:01 -0500918 if (!j->user)
919 goto clear_pointers;
Elly Jonese1749eb2011-10-07 13:54:59 -0400920 }
Will Drewryf89aef52011-09-16 16:48:57 -0500921
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800922 if (j->suppl_gid_list) { /* stale pointer */
923 if (j->suppl_gid_count > NGROUPS_MAX) {
924 goto bad_gid_list;
925 }
926 size_t gid_list_size = j->suppl_gid_count * sizeof(gid_t);
927 void *gid_list_bytes =
928 consumebytes(gid_list_size, &serialized, &length);
929 if (!gid_list_bytes)
930 goto bad_gid_list;
931
932 j->suppl_gid_list = calloc(j->suppl_gid_count, sizeof(gid_t));
933 if (!j->suppl_gid_list)
934 goto bad_gid_list;
935
936 memcpy(j->suppl_gid_list, gid_list_bytes, gid_list_size);
937 }
938
Elly Jonesa8d1e1b2011-10-21 15:38:00 -0400939 if (j->chrootdir) { /* stale pointer */
940 char *chrootdir = consumestr(&serialized, &length);
941 if (!chrootdir)
Will Drewrybee7ba72011-10-21 20:47:01 -0500942 goto bad_chrootdir;
Elly Jonesa8d1e1b2011-10-21 15:38:00 -0400943 j->chrootdir = strdup(chrootdir);
Will Drewrybee7ba72011-10-21 20:47:01 -0500944 if (!j->chrootdir)
945 goto bad_chrootdir;
Elly Jonesa8d1e1b2011-10-21 15:38:00 -0400946 }
947
Andrew Brestickereac28942015-11-11 16:04:46 -0800948 if (j->alt_syscall_table) { /* stale pointer */
949 char *alt_syscall_table = consumestr(&serialized, &length);
950 if (!alt_syscall_table)
951 goto bad_syscall_table;
952 j->alt_syscall_table = strdup(alt_syscall_table);
953 if (!j->alt_syscall_table)
954 goto bad_syscall_table;
955 }
956
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800957 if (j->flags.seccomp_filter && j->filter_len > 0) {
958 size_t ninstrs = j->filter_len;
959 if (ninstrs > (SIZE_MAX / sizeof(struct sock_filter)) ||
960 ninstrs > USHRT_MAX)
961 goto bad_filters;
962
963 size_t program_len = ninstrs * sizeof(struct sock_filter);
964 void *program = consumebytes(program_len, &serialized, &length);
965 if (!program)
966 goto bad_filters;
967
968 j->filter_prog = malloc(sizeof(struct sock_fprog));
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800969 if (!j->filter_prog)
970 goto bad_filters;
971
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800972 j->filter_prog->len = ninstrs;
973 j->filter_prog->filter = malloc(program_len);
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800974 if (!j->filter_prog->filter)
975 goto bad_filter_prog_instrs;
976
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800977 memcpy(j->filter_prog->filter, program, program_len);
Elly Jonese1749eb2011-10-07 13:54:59 -0400978 }
Elly Jones51a5b6c2011-10-12 19:09:26 -0400979
Dylan Reid648b2202015-10-23 00:50:00 -0700980 count = j->mounts_count;
981 j->mounts_count = 0;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400982 for (i = 0; i < count; ++i) {
Dylan Reid648b2202015-10-23 00:50:00 -0700983 unsigned long *flags;
Dylan Reid81e23972016-05-18 14:06:35 -0700984 int *has_data;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400985 const char *dest;
Dylan Reid648b2202015-10-23 00:50:00 -0700986 const char *type;
Dylan Reid81e23972016-05-18 14:06:35 -0700987 const char *data = NULL;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400988 const char *src = consumestr(&serialized, &length);
989 if (!src)
Dylan Reid648b2202015-10-23 00:50:00 -0700990 goto bad_mounts;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400991 dest = consumestr(&serialized, &length);
992 if (!dest)
Dylan Reid648b2202015-10-23 00:50:00 -0700993 goto bad_mounts;
994 type = consumestr(&serialized, &length);
995 if (!type)
996 goto bad_mounts;
Dylan Reid81e23972016-05-18 14:06:35 -0700997 has_data = consumebytes(sizeof(*has_data), &serialized,
998 &length);
999 if (!has_data)
1000 goto bad_mounts;
1001 if (*has_data) {
1002 data = consumestr(&serialized, &length);
1003 if (!data)
1004 goto bad_mounts;
1005 }
Dylan Reid648b2202015-10-23 00:50:00 -07001006 flags = consumebytes(sizeof(*flags), &serialized, &length);
1007 if (!flags)
1008 goto bad_mounts;
Dylan Reid81e23972016-05-18 14:06:35 -07001009 if (minijail_mount_with_data(j, src, dest, type, *flags, data))
Dylan Reid648b2202015-10-23 00:50:00 -07001010 goto bad_mounts;
Elly Jones51a5b6c2011-10-12 19:09:26 -04001011 }
1012
Dylan Reid605ce7f2016-01-19 19:21:00 -08001013 count = j->cgroup_count;
1014 j->cgroup_count = 0;
1015 for (i = 0; i < count; ++i) {
1016 char *cgroup = consumestr(&serialized, &length);
1017 if (!cgroup)
1018 goto bad_cgroups;
1019 j->cgroups[i] = strdup(cgroup);
1020 if (!j->cgroups[i])
1021 goto bad_cgroups;
1022 ++j->cgroup_count;
1023 }
1024
Elly Jonese1749eb2011-10-07 13:54:59 -04001025 return 0;
Will Drewrybee7ba72011-10-21 20:47:01 -05001026
Dylan Reid605ce7f2016-01-19 19:21:00 -08001027bad_cgroups:
1028 while (j->mounts_head) {
1029 struct mountpoint *m = j->mounts_head;
1030 j->mounts_head = j->mounts_head->next;
Dylan Reid81e23972016-05-18 14:06:35 -07001031 free(m->data);
Dylan Reid605ce7f2016-01-19 19:21:00 -08001032 free(m->type);
1033 free(m->dest);
1034 free(m->src);
1035 free(m);
1036 }
1037 for (i = 0; i < j->cgroup_count; ++i)
1038 free(j->cgroups[i]);
Dylan Reid648b2202015-10-23 00:50:00 -07001039bad_mounts:
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08001040 if (j->flags.seccomp_filter && j->filter_len > 0) {
1041 free(j->filter_prog->filter);
1042 free(j->filter_prog);
1043 }
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001044bad_filter_prog_instrs:
1045 if (j->filter_prog)
1046 free(j->filter_prog);
Will Drewrybee7ba72011-10-21 20:47:01 -05001047bad_filters:
Andrew Brestickereac28942015-11-11 16:04:46 -08001048 if (j->alt_syscall_table)
1049 free(j->alt_syscall_table);
1050bad_syscall_table:
Will Drewrybee7ba72011-10-21 20:47:01 -05001051 if (j->chrootdir)
1052 free(j->chrootdir);
1053bad_chrootdir:
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001054 if (j->suppl_gid_list)
1055 free(j->suppl_gid_list);
1056bad_gid_list:
Will Drewrybee7ba72011-10-21 20:47:01 -05001057 if (j->user)
1058 free(j->user);
1059clear_pointers:
1060 j->user = NULL;
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001061 j->suppl_gid_list = NULL;
Will Drewrybee7ba72011-10-21 20:47:01 -05001062 j->chrootdir = NULL;
Andrew Brestickereac28942015-11-11 16:04:46 -08001063 j->alt_syscall_table = NULL;
Dylan Reid605ce7f2016-01-19 19:21:00 -08001064 j->cgroup_count = 0;
Will Drewrybee7ba72011-10-21 20:47:01 -05001065out:
1066 return ret;
Will Drewry2ddaad02011-09-16 11:36:08 -05001067}
1068
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001069/*
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -04001070 * setup_mount_destination: Ensures the mount target exists.
1071 * Creates it if needed and possible.
Dylan Reideec77962016-06-30 19:35:10 -07001072 */
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001073static int setup_mount_destination(const char *source, const char *dest,
1074 uid_t uid, uid_t gid)
Dylan Reideec77962016-06-30 19:35:10 -07001075{
1076 int rc;
1077 struct stat st_buf;
1078
1079 rc = stat(dest, &st_buf);
1080 if (rc == 0) /* destination exists */
1081 return 0;
1082
1083 /*
1084 * Try to create the destination.
1085 * Either make a directory or touch a file depending on the source type.
1086 * If the source doesn't exist, assume it is a filesystem type such as
1087 * "tmpfs" and create a directory to mount it on.
1088 */
1089 rc = stat(source, &st_buf);
1090 if (rc || S_ISDIR(st_buf.st_mode) || S_ISBLK(st_buf.st_mode)) {
1091 if (mkdir(dest, 0700))
1092 return -errno;
1093 } else {
1094 int fd = open(dest, O_RDWR | O_CREAT, 0700);
1095 if (fd < 0)
1096 return -errno;
1097 close(fd);
1098 }
1099 return chown(dest, uid, gid);
1100}
1101
1102/*
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001103 * mount_one: Applies mounts from @m for @j, recursing as needed.
Dylan Reid648b2202015-10-23 00:50:00 -07001104 * @j Minijail these mounts are for
1105 * @m Head of list of mounts
Elly Jones51a5b6c2011-10-12 19:09:26 -04001106 *
1107 * Returns 0 for success.
1108 */
Dylan Reid648b2202015-10-23 00:50:00 -07001109static int mount_one(const struct minijail *j, struct mountpoint *m)
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -07001110{
Dylan Reid648b2202015-10-23 00:50:00 -07001111 int ret;
1112 char *dest;
1113 int remount_ro = 0;
1114
Jorge Lucangeli Obes2b12ba42016-01-26 10:37:51 -08001115 /* |dest| has a leading "/". */
Dylan Reid648b2202015-10-23 00:50:00 -07001116 if (asprintf(&dest, "%s%s", j->chrootdir, m->dest) < 0)
Elly Jones51a5b6c2011-10-12 19:09:26 -04001117 return -ENOMEM;
Dylan Reid648b2202015-10-23 00:50:00 -07001118
Dylan Reideec77962016-06-30 19:35:10 -07001119 if (setup_mount_destination(m->src, dest, j->uid, j->gid))
1120 pdie("creating mount target '%s' failed", dest);
1121
Dylan Reid648b2202015-10-23 00:50:00 -07001122 /*
Jorge Lucangeli Obes2b12ba42016-01-26 10:37:51 -08001123 * R/O bind mounts have to be remounted since 'bind' and 'ro'
1124 * can't both be specified in the original bind mount.
1125 * Remount R/O after the initial mount.
Dylan Reid648b2202015-10-23 00:50:00 -07001126 */
1127 if ((m->flags & MS_BIND) && (m->flags & MS_RDONLY)) {
1128 remount_ro = 1;
1129 m->flags &= ~MS_RDONLY;
Elly Jonesa1059632011-12-15 15:17:07 -05001130 }
Dylan Reid648b2202015-10-23 00:50:00 -07001131
Dylan Reid81e23972016-05-18 14:06:35 -07001132 ret = mount(m->src, dest, m->type, m->flags, m->data);
Dylan Reid648b2202015-10-23 00:50:00 -07001133 if (ret)
1134 pdie("mount: %s -> %s", m->src, dest);
1135
1136 if (remount_ro) {
1137 m->flags |= MS_RDONLY;
1138 ret = mount(m->src, dest, NULL,
Dylan Reid81e23972016-05-18 14:06:35 -07001139 m->flags | MS_REMOUNT, m->data);
Dylan Reid648b2202015-10-23 00:50:00 -07001140 if (ret)
1141 pdie("bind ro: %s -> %s", m->src, dest);
1142 }
1143
Elly Jones51a5b6c2011-10-12 19:09:26 -04001144 free(dest);
Dylan Reid648b2202015-10-23 00:50:00 -07001145 if (m->next)
1146 return mount_one(j, m->next);
Elly Jones51a5b6c2011-10-12 19:09:26 -04001147 return ret;
1148}
1149
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001150static int enter_chroot(const struct minijail *j)
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -07001151{
Elly Jones51a5b6c2011-10-12 19:09:26 -04001152 int ret;
Dylan Reid648b2202015-10-23 00:50:00 -07001153
1154 if (j->mounts_head && (ret = mount_one(j, j->mounts_head)))
Elly Jones51a5b6c2011-10-12 19:09:26 -04001155 return ret;
1156
1157 if (chroot(j->chrootdir))
1158 return -errno;
1159
1160 if (chdir("/"))
1161 return -errno;
1162
1163 return 0;
1164}
1165
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001166static int enter_pivot_root(const struct minijail *j)
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001167{
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001168 int ret, oldroot, newroot;
Dylan Reid648b2202015-10-23 00:50:00 -07001169
1170 if (j->mounts_head && (ret = mount_one(j, j->mounts_head)))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001171 return ret;
1172
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001173 /*
1174 * Keep the fd for both old and new root.
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001175 * It will be used in fchdir(2) later.
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001176 */
Ricky Zhoubce609d2016-03-02 21:47:56 -08001177 oldroot = open("/", O_DIRECTORY | O_RDONLY | O_CLOEXEC);
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001178 if (oldroot < 0)
1179 pdie("failed to open / for fchdir");
Ricky Zhoubce609d2016-03-02 21:47:56 -08001180 newroot = open(j->chrootdir, O_DIRECTORY | O_RDONLY | O_CLOEXEC);
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001181 if (newroot < 0)
1182 pdie("failed to open %s for fchdir", j->chrootdir);
1183
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001184 /*
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001185 * To ensure j->chrootdir is the root of a filesystem,
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001186 * do a self bind mount.
1187 */
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001188 if (mount(j->chrootdir, j->chrootdir, "bind", MS_BIND | MS_REC, ""))
1189 pdie("failed to bind mount '%s'", j->chrootdir);
1190 if (chdir(j->chrootdir))
1191 return -errno;
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001192 if (syscall(SYS_pivot_root, ".", "."))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001193 pdie("pivot_root");
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001194
1195 /*
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001196 * Now the old root is mounted on top of the new root. Use fchdir(2) to
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001197 * change to the old root and unmount it.
1198 */
1199 if (fchdir(oldroot))
1200 pdie("failed to fchdir to old /");
Hidehiko Abe097b7192016-03-16 18:00:36 +09001201
1202 /*
Jorge Lucangeli Obesdf7fab12016-06-01 17:15:31 -07001203 * If j->flags.skip_remount_private was enabled for minijail_enter(),
1204 * there could be a shared mount point under |oldroot|. In that case,
1205 * mounts under this shared mount point will be unmounted below, and
1206 * this unmounting will propagate to the original mount namespace
1207 * (because the mount point is shared). To prevent this unexpected
1208 * unmounting, remove these mounts from their peer groups by recursively
1209 * remounting them as MS_PRIVATE.
Hidehiko Abe097b7192016-03-16 18:00:36 +09001210 */
1211 if (mount(NULL, ".", NULL, MS_REC | MS_PRIVATE, NULL))
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001212 pdie("failed to mount(/, private) before umount(/)");
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001213 /* The old root might be busy, so use lazy unmount. */
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001214 if (umount2(".", MNT_DETACH))
1215 pdie("umount(/)");
1216 /* Change back to the new root. */
1217 if (fchdir(newroot))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001218 return -errno;
Ricky Zhoubce609d2016-03-02 21:47:56 -08001219 if (close(oldroot))
1220 return -errno;
1221 if (close(newroot))
1222 return -errno;
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001223 if (chroot("/"))
1224 return -errno;
Jorge Lucangeli Obes46a55092015-10-12 15:31:59 -07001225 /* Set correct CWD for getcwd(3). */
1226 if (chdir("/"))
1227 return -errno;
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001228
1229 return 0;
1230}
1231
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001232static int mount_tmp(void)
Lee Campbell11af0622014-05-22 12:36:04 -07001233{
Jorge Lucangeli Obes3901da62015-03-03 13:55:11 -08001234 return mount("none", "/tmp", "tmpfs", 0, "size=64M,mode=777");
Lee Campbell11af0622014-05-22 12:36:04 -07001235}
1236
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001237static int remount_proc_readonly(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001238{
1239 const char *kProcPath = "/proc";
1240 const unsigned int kSafeFlags = MS_NODEV | MS_NOEXEC | MS_NOSUID;
Elly Jonesdd3e8512012-01-23 15:13:38 -05001241 /*
1242 * Right now, we're holding a reference to our parent's old mount of
Elly Jonese1749eb2011-10-07 13:54:59 -04001243 * /proc in our namespace, which means using MS_REMOUNT here would
1244 * mutate our parent's mount as well, even though we're in a VFS
Jorge Lucangeli Obesdf7fab12016-06-01 17:15:31 -07001245 * namespace (!). Instead, remove their mount from our namespace lazily
1246 * (MNT_DETACH) and make our own.
Elly Jonese1749eb2011-10-07 13:54:59 -04001247 */
Jorge Lucangeli Obesdf7fab12016-06-01 17:15:31 -07001248 if (umount2(kProcPath, MNT_DETACH)) {
1249 /*
1250 * If we are in a new user namespace, umount(2) will fail.
1251 * See http://man7.org/linux/man-pages/man7/user_namespaces.7.html
1252 */
1253 if (j->flags.userns) {
1254 info("umount(/proc, MNT_DETACH) failed, "
1255 "this is expected when using user namespaces");
1256 } else {
1257 return -errno;
1258 }
1259 }
Elly Jonese1749eb2011-10-07 13:54:59 -04001260 if (mount("", kProcPath, "proc", kSafeFlags | MS_RDONLY, ""))
1261 return -errno;
1262 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -04001263}
1264
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001265static void kill_child_and_die(const struct minijail *j, const char *msg)
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001266{
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001267 kill(j->initpid, SIGKILL);
1268 die("%s", msg);
Dylan Reid605ce7f2016-01-19 19:21:00 -08001269}
1270
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001271static void write_pid_file_or_die(const struct minijail *j)
Dylan Reid605ce7f2016-01-19 19:21:00 -08001272{
Keshav Santhanamdb6dab42016-08-10 16:33:34 -07001273 if (write_pid_to_path(j->initpid, j->pid_file_path))
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001274 kill_child_and_die(j, "failed to write pid file");
Dylan Reid605ce7f2016-01-19 19:21:00 -08001275}
1276
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001277static void add_to_cgroups_or_die(const struct minijail *j)
Dylan Reid605ce7f2016-01-19 19:21:00 -08001278{
1279 size_t i;
1280
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001281 for (i = 0; i < j->cgroup_count; ++i) {
Keshav Santhanamdb6dab42016-08-10 16:33:34 -07001282 if (write_pid_to_path(j->initpid, j->cgroups[i]))
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001283 kill_child_and_die(j, "failed to add to cgroups");
1284 }
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001285}
1286
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001287static void write_ugid_maps_or_die(const struct minijail *j)
1288{
1289 if (j->uidmap && write_proc_file(j->initpid, j->uidmap, "uid_map") != 0)
1290 kill_child_and_die(j, "failed to write uid_map");
Jorge Lucangeli Obes200299c2016-09-23 15:21:57 -04001291 if (j->gidmap && j->flags.disable_setgroups &&
1292 write_proc_file(j->initpid, "deny", "setgroups") != 0)
1293 kill_child_and_die(j, "failed to disable setgroups(2)");
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001294 if (j->gidmap && write_proc_file(j->initpid, j->gidmap, "gid_map") != 0)
1295 kill_child_and_die(j, "failed to write gid_map");
1296}
1297
1298static void enter_user_namespace(const struct minijail *j)
1299{
1300 if (j->uidmap && setresuid(0, 0, 0))
1301 pdie("user_namespaces: setresuid(0, 0, 0) failed");
1302 if (j->gidmap && setresgid(0, 0, 0))
1303 pdie("user_namespaces: setresgid(0, 0, 0) failed");
1304}
1305
1306static void parent_setup_complete(int *pipe_fds)
1307{
1308 close(pipe_fds[0]);
1309 close(pipe_fds[1]);
1310}
1311
1312/*
1313 * wait_for_parent_setup: Called by the child process to wait for any
1314 * further parent-side setup to complete before continuing.
1315 */
1316static void wait_for_parent_setup(int *pipe_fds)
1317{
1318 char buf;
1319
1320 close(pipe_fds[1]);
1321
1322 /* Wait for parent to complete setup and close the pipe. */
1323 if (read(pipe_fds[0], &buf, 1) != 0)
1324 die("failed to sync with parent");
1325 close(pipe_fds[0]);
1326}
1327
1328static void drop_ugid(const struct minijail *j)
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001329{
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -08001330 if (j->flags.usergroups && j->flags.suppl_gids) {
1331 die("tried to inherit *and* set supplementary groups;"
1332 " can only do one");
1333 }
1334
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001335 if (j->flags.usergroups) {
1336 if (initgroups(j->user, j->usergid))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001337 pdie("initgroups(%s, %d) failed", j->user, j->usergid);
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -08001338 } else if (j->flags.suppl_gids) {
1339 if (setgroups(j->suppl_gid_count, j->suppl_gid_list)) {
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001340 pdie("setgroups(suppl_gids) failed");
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -08001341 }
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001342 } else {
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001343 /*
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -08001344 * Only attempt to clear supplementary groups if we are changing
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001345 * users.
1346 */
Jorge Lucangeli Obes24499562016-12-01 11:59:27 -05001347 if ((j->flags.uid || j->flags.gid) && setgroups(0, NULL))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001348 pdie("setgroups(0, NULL) failed");
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001349 }
1350
1351 if (j->flags.gid && setresgid(j->gid, j->gid, j->gid))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001352 pdie("setresgid(%d, %d, %d) failed", j->gid, j->gid, j->gid);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001353
1354 if (j->flags.uid && setresuid(j->uid, j->uid, j->uid))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001355 pdie("setresuid(%d, %d, %d) failed", j->uid, j->uid, j->uid);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001356}
1357
Mike Frysinger3adfef72013-05-09 17:19:08 -04001358/*
1359 * We specifically do not use cap_valid() as that only tells us the last
1360 * valid cap we were *compiled* against (i.e. what the version of kernel
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001361 * headers says). If we run on a different kernel version, then it's not
Mike Frysinger3adfef72013-05-09 17:19:08 -04001362 * uncommon for that to be less (if an older kernel) or more (if a newer
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001363 * kernel).
1364 * Normally, we suck up the answer via /proc. On Android, not all processes are
1365 * guaranteed to be able to access '/proc/sys/kernel/cap_last_cap' so we
1366 * programmatically find the value by calling prctl(PR_CAPBSET_READ).
Mike Frysinger3adfef72013-05-09 17:19:08 -04001367 */
Jorge Lucangeli Obes20342742015-10-27 11:39:59 -07001368static unsigned int get_last_valid_cap()
Mike Frysinger3adfef72013-05-09 17:19:08 -04001369{
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001370 unsigned int last_valid_cap = 0;
1371 if (is_android()) {
1372 for (; prctl(PR_CAPBSET_READ, last_valid_cap, 0, 0, 0) >= 0;
1373 ++last_valid_cap);
Mike Frysinger3adfef72013-05-09 17:19:08 -04001374
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001375 /* |last_valid_cap| will be the first failing value. */
1376 if (last_valid_cap > 0) {
1377 last_valid_cap--;
1378 }
1379 } else {
1380 const char cap_file[] = "/proc/sys/kernel/cap_last_cap";
1381 FILE *fp = fopen(cap_file, "re");
1382 if (fscanf(fp, "%u", &last_valid_cap) != 1)
1383 pdie("fscanf(%s)", cap_file);
1384 fclose(fp);
1385 }
Dylan Reidf682d472015-09-17 21:39:07 -07001386 return last_valid_cap;
Mike Frysinger3adfef72013-05-09 17:19:08 -04001387}
1388
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001389static void drop_capbset(uint64_t keep_mask, unsigned int last_valid_cap)
1390{
1391 const uint64_t one = 1;
1392 unsigned int i;
1393 for (i = 0; i < sizeof(keep_mask) * 8 && i <= last_valid_cap; ++i) {
1394 if (keep_mask & (one << i))
1395 continue;
1396 if (prctl(PR_CAPBSET_DROP, i))
1397 pdie("could not drop capability from bounding set");
1398 }
1399}
1400
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001401static void drop_caps(const struct minijail *j, unsigned int last_valid_cap)
Elly Jonese1749eb2011-10-07 13:54:59 -04001402{
Jorge Lucangeli Obes7ea269e2016-02-26 22:07:09 -08001403 if (!j->flags.use_caps)
1404 return;
1405
Elly Jonese1749eb2011-10-07 13:54:59 -04001406 cap_t caps = cap_get_proc();
Kees Cook323878a2013-02-05 15:35:24 -08001407 cap_value_t flag[1];
Kees Cooke5609ac2013-02-06 14:12:41 -08001408 const uint64_t one = 1;
Elly Jonese1749eb2011-10-07 13:54:59 -04001409 unsigned int i;
1410 if (!caps)
1411 die("can't get process caps");
1412 if (cap_clear_flag(caps, CAP_INHERITABLE))
1413 die("can't clear inheritable caps");
1414 if (cap_clear_flag(caps, CAP_EFFECTIVE))
1415 die("can't clear effective caps");
1416 if (cap_clear_flag(caps, CAP_PERMITTED))
1417 die("can't clear permitted caps");
Dylan Reidf682d472015-09-17 21:39:07 -07001418 for (i = 0; i < sizeof(j->caps) * 8 && i <= last_valid_cap; ++i) {
Kees Cook323878a2013-02-05 15:35:24 -08001419 /* Keep CAP_SETPCAP for dropping bounding set bits. */
Kees Cooke5609ac2013-02-06 14:12:41 -08001420 if (i != CAP_SETPCAP && !(j->caps & (one << i)))
Elly Jonese1749eb2011-10-07 13:54:59 -04001421 continue;
Kees Cook323878a2013-02-05 15:35:24 -08001422 flag[0] = i;
1423 if (cap_set_flag(caps, CAP_EFFECTIVE, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04001424 die("can't add effective cap");
Kees Cook323878a2013-02-05 15:35:24 -08001425 if (cap_set_flag(caps, CAP_PERMITTED, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04001426 die("can't add permitted cap");
Kees Cook323878a2013-02-05 15:35:24 -08001427 if (cap_set_flag(caps, CAP_INHERITABLE, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04001428 die("can't add inheritable cap");
1429 }
1430 if (cap_set_proc(caps))
Kees Cook323878a2013-02-05 15:35:24 -08001431 die("can't apply initial cleaned capset");
1432
1433 /*
1434 * Instead of dropping bounding set first, do it here in case
1435 * the caller had a more permissive bounding set which could
1436 * have been used above to raise a capability that wasn't already
1437 * present. This requires CAP_SETPCAP, so we raised/kept it above.
1438 */
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001439 drop_capbset(j->caps, last_valid_cap);
Kees Cook323878a2013-02-05 15:35:24 -08001440
1441 /* If CAP_SETPCAP wasn't specifically requested, now we remove it. */
Kees Cooke5609ac2013-02-06 14:12:41 -08001442 if ((j->caps & (one << CAP_SETPCAP)) == 0) {
Kees Cook323878a2013-02-05 15:35:24 -08001443 flag[0] = CAP_SETPCAP;
1444 if (cap_set_flag(caps, CAP_EFFECTIVE, 1, flag, CAP_CLEAR))
1445 die("can't clear effective cap");
1446 if (cap_set_flag(caps, CAP_PERMITTED, 1, flag, CAP_CLEAR))
1447 die("can't clear permitted cap");
1448 if (cap_set_flag(caps, CAP_INHERITABLE, 1, flag, CAP_CLEAR))
1449 die("can't clear inheritable cap");
1450 }
1451
1452 if (cap_set_proc(caps))
1453 die("can't apply final cleaned capset");
1454
1455 cap_free(caps);
Elly Jonescd7a9042011-07-22 13:56:51 -04001456}
1457
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001458static void set_seccomp_filter(const struct minijail *j)
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001459{
1460 /*
1461 * Set no_new_privs. See </kernel/seccomp.c> and </kernel/sys.c>
1462 * in the kernel source tree for an explanation of the parameters.
1463 */
1464 if (j->flags.no_new_privs) {
1465 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0))
1466 pdie("prctl(PR_SET_NO_NEW_PRIVS)");
1467 }
1468
1469 /*
Jorge Lucangeli Obes2413f372016-04-06 18:43:10 -07001470 * Code running with ASan
1471 * (https://github.com/google/sanitizers/wiki/AddressSanitizer)
1472 * will make system calls not included in the syscall filter policy,
1473 * which will likely crash the program. Skip setting seccomp filter in
1474 * that case.
1475 * 'running_with_asan()' has no inputs and is completely defined at
1476 * build time, so this cannot be used by an attacker to skip setting
1477 * seccomp filter.
1478 */
1479 if (j->flags.seccomp_filter && running_with_asan()) {
1480 warn("running with ASan, not setting seccomp filter");
1481 return;
1482 }
1483
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -04001484 if (j->flags.seccomp_filter) {
1485 if (j->flags.seccomp_filter_logging) {
1486 /*
1487 * If logging seccomp filter failures,
1488 * install the SIGSYS handler first.
1489 */
1490 if (install_sigsys_handler())
1491 pdie("failed to install SIGSYS handler");
1492 warn("logging seccomp filter failures");
1493 } else if (j->flags.seccomp_filter_tsync) {
1494 /*
1495 * If setting thread sync,
1496 * reset the SIGSYS signal handler so that
1497 * the entire thread group is killed.
1498 */
1499 if (signal(SIGSYS, SIG_DFL) == SIG_ERR)
1500 pdie("failed to reset SIGSYS disposition");
1501 info("reset SIGSYS disposition");
1502 }
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001503 }
1504
1505 /*
1506 * Install the syscall filter.
1507 */
1508 if (j->flags.seccomp_filter) {
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -04001509 if (j->flags.seccomp_filter_tsync) {
1510 if (sys_seccomp(SECCOMP_SET_MODE_FILTER,
1511 SECCOMP_FILTER_FLAG_TSYNC,
1512 j->filter_prog)) {
1513 pdie("seccomp(tsync) failed");
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001514 }
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -04001515 } else {
1516 if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER,
1517 j->filter_prog)) {
1518 pdie("prctl(seccomp_filter) failed");
1519 }
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001520 }
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001521 }
1522}
1523
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001524static void config_net_loopback(void)
Mike Frysinger7559dfe2016-11-15 18:58:39 -05001525{
1526 static const char ifname[] = "lo";
1527 int sock;
1528 struct ifreq ifr;
1529
1530 /* Make sure people don't try to add really long names. */
1531 _Static_assert(sizeof(ifname) <= IFNAMSIZ, "interface name too long");
1532
1533 sock = socket(AF_LOCAL, SOCK_DGRAM|SOCK_CLOEXEC, 0);
1534 if (sock < 0)
1535 pdie("socket(AF_LOCAL) failed");
1536
1537 /*
1538 * Do the equiv of `ip link set up lo`. The kernel will assign
1539 * IPv4 (127.0.0.1) & IPv6 (::1) addresses automatically!
1540 */
1541 strcpy(ifr.ifr_name, ifname);
1542 if (ioctl(sock, SIOCGIFFLAGS, &ifr) < 0)
1543 pdie("ioctl(SIOCGIFFLAGS) failed");
1544
1545 /* The kernel preserves ifr.ifr_name for use. */
1546 ifr.ifr_flags |= IFF_UP | IFF_RUNNING;
1547 if (ioctl(sock, SIOCSIFFLAGS, &ifr) < 0)
1548 pdie("ioctl(SIOCSIFFLAGS) failed");
1549
1550 close(sock);
1551}
1552
Will Drewry6ac91122011-10-21 16:38:58 -05001553void API minijail_enter(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001554{
Dylan Reidf682d472015-09-17 21:39:07 -07001555 /*
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08001556 * If we're dropping caps, get the last valid cap from /proc now,
1557 * since /proc can be unmounted before drop_caps() is called.
Dylan Reidf682d472015-09-17 21:39:07 -07001558 */
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08001559 unsigned int last_valid_cap = 0;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001560 if (j->flags.capbset_drop || j->flags.use_caps)
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08001561 last_valid_cap = get_last_valid_cap();
Dylan Reidf682d472015-09-17 21:39:07 -07001562
Elly Jonese1749eb2011-10-07 13:54:59 -04001563 if (j->flags.pids)
1564 die("tried to enter a pid-namespaced jail;"
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -07001565 " try minijail_run()?");
Elly Jonescd7a9042011-07-22 13:56:51 -04001566
Elly Jonese1749eb2011-10-07 13:54:59 -04001567 if (j->flags.usergroups && !j->user)
1568 die("usergroup inheritance without username");
Elly Jonescd7a9042011-07-22 13:56:51 -04001569
Elly Jonesdd3e8512012-01-23 15:13:38 -05001570 /*
1571 * We can't recover from failures if we've dropped privileges partially,
Elly Jonese1749eb2011-10-07 13:54:59 -04001572 * so we don't even try. If any of our operations fail, we abort() the
1573 * entire process.
1574 */
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -07001575 if (j->flags.enter_vfs && setns(j->mountns_fd, CLONE_NEWNS))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001576 pdie("setns(CLONE_NEWNS) failed");
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -07001577
Jorge Lucangeli Obes805be392015-10-12 15:55:59 -07001578 if (j->flags.vfs) {
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08001579 if (unshare(CLONE_NEWNS))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001580 pdie("unshare(CLONE_NEWNS) failed");
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08001581 /*
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001582 * Unless asked not to, remount all filesystems as private.
1583 * If they are shared, new bind mounts will creep out of our
1584 * namespace.
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08001585 * https://www.kernel.org/doc/Documentation/filesystems/sharedsubtree.txt
1586 */
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001587 if (!j->flags.skip_remount_private) {
1588 if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001589 pdie("mount(NULL, /, NULL, MS_REC | MS_PRIVATE,"
1590 " NULL) failed");
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001591 }
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08001592 }
Elly Fong-Jones6c086302013-03-20 17:15:28 -04001593
Dylan Reidf7942472015-11-18 17:55:26 -08001594 if (j->flags.ipc && unshare(CLONE_NEWIPC)) {
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001595 pdie("unshare(CLONE_NEWIPC) failed");
Dylan Reidf7942472015-11-18 17:55:26 -08001596 }
1597
Dylan Reid1102f5a2015-09-15 11:52:20 -07001598 if (j->flags.enter_net) {
1599 if (setns(j->netns_fd, CLONE_NEWNET))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001600 pdie("setns(CLONE_NEWNET) failed");
Mike Frysinger7559dfe2016-11-15 18:58:39 -05001601 } else if (j->flags.net) {
1602 if (unshare(CLONE_NEWNET))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001603 pdie("unshare(CLONE_NEWNET) failed");
1604 config_net_loopback();
Dylan Reid1102f5a2015-09-15 11:52:20 -07001605 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001606
Dylan Reid4cbc2a52016-06-17 19:06:07 -07001607 if (j->flags.ns_cgroups && unshare(CLONE_NEWCGROUP))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001608 pdie("unshare(CLONE_NEWCGROUP) failed");
Dylan Reid4cbc2a52016-06-17 19:06:07 -07001609
Elly Jones51a5b6c2011-10-12 19:09:26 -04001610 if (j->flags.chroot && enter_chroot(j))
1611 pdie("chroot");
1612
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001613 if (j->flags.pivot_root && enter_pivot_root(j))
1614 pdie("pivot_root");
1615
Jorge Lucangeli Obes3901da62015-03-03 13:55:11 -08001616 if (j->flags.mount_tmp && mount_tmp())
Lee Campbell11af0622014-05-22 12:36:04 -07001617 pdie("mount_tmp");
1618
Dylan Reid791f5772015-09-14 20:02:42 -07001619 if (j->flags.remount_proc_ro && remount_proc_readonly(j))
Elly Jonese1749eb2011-10-07 13:54:59 -04001620 pdie("remount");
Elly Jonescd7a9042011-07-22 13:56:51 -04001621
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001622 /*
1623 * If we're only dropping capabilities from the bounding set, but not
1624 * from the thread's (permitted|inheritable|effective) sets, do it now.
1625 */
1626 if (j->flags.capbset_drop) {
1627 drop_capbset(j->cap_bset, last_valid_cap);
1628 }
1629
1630 if (j->flags.use_caps) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05001631 /*
1632 * POSIX capabilities are a bit tricky. If we drop our
Elly Jonese1749eb2011-10-07 13:54:59 -04001633 * capability to change uids, our attempt to use setuid()
1634 * below will fail. Hang on to root caps across setuid(), then
1635 * lock securebits.
1636 */
1637 if (prctl(PR_SET_KEEPCAPS, 1))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001638 pdie("prctl(PR_SET_KEEPCAPS) failed");
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -07001639
1640 /*
1641 * Kernels 4.3+ define a new securebit
1642 * (SECURE_NO_CAP_AMBIENT_RAISE), so using the SECURE_ALL_BITS
1643 * and SECURE_ALL_LOCKS masks from newer kernel headers will
1644 * return EPERM on older kernels. Detect this, and retry with
1645 * the right mask for older (2.6.26-4.2) kernels.
1646 */
1647 int securebits_ret = prctl(PR_SET_SECUREBITS,
1648 SECURE_ALL_BITS | SECURE_ALL_LOCKS);
1649 if (securebits_ret < 0) {
1650 if (errno == EPERM) {
1651 /* Possibly running on kernel < 4.3. */
1652 securebits_ret = prctl(
1653 PR_SET_SECUREBITS,
1654 OLD_SECURE_ALL_BITS | OLD_SECURE_ALL_LOCKS);
1655 }
1656 }
1657 if (securebits_ret < 0)
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001658 pdie("prctl(PR_SET_SECUREBITS) failed");
Elly Jonese1749eb2011-10-07 13:54:59 -04001659 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001660
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07001661 if (j->flags.no_new_privs) {
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08001662 /*
1663 * If we're setting no_new_privs, we can drop privileges
1664 * before setting seccomp filter. This way filter policies
1665 * don't need to allow privilege-dropping syscalls.
1666 */
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001667 drop_ugid(j);
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08001668 drop_caps(j, last_valid_cap);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001669 set_seccomp_filter(j);
Elly Jonese1749eb2011-10-07 13:54:59 -04001670 } else {
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001671 /*
1672 * If we're not setting no_new_privs,
1673 * we need to set seccomp filter *before* dropping privileges.
1674 * WARNING: this means that filter policies *must* allow
1675 * setgroups()/setresgid()/setresuid() for dropping root and
1676 * capget()/capset()/prctl() for dropping caps.
1677 */
1678 set_seccomp_filter(j);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001679 drop_ugid(j);
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08001680 drop_caps(j, last_valid_cap);
Elly Jonese1749eb2011-10-07 13:54:59 -04001681 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001682
Elly Jonesdd3e8512012-01-23 15:13:38 -05001683 /*
Andrew Brestickereac28942015-11-11 16:04:46 -08001684 * Select the specified alternate syscall table. The table must not
1685 * block prctl(2) if we're using seccomp as well.
1686 */
1687 if (j->flags.alt_syscall) {
1688 if (prctl(PR_ALT_SYSCALL, 1, j->alt_syscall_table))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001689 pdie("prctl(PR_ALT_SYSCALL) failed");
Andrew Brestickereac28942015-11-11 16:04:46 -08001690 }
1691
1692 /*
Elly Jonesdd3e8512012-01-23 15:13:38 -05001693 * seccomp has to come last since it cuts off all the other
Elly Jonese1749eb2011-10-07 13:54:59 -04001694 * privilege-dropping syscalls :)
1695 */
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001696 if (j->flags.seccomp && prctl(PR_SET_SECCOMP, 1)) {
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -04001697 if ((errno == EINVAL) && seccomp_can_softfail()) {
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001698 warn("seccomp not supported");
1699 return;
1700 }
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001701 pdie("prctl(PR_SET_SECCOMP) failed");
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001702 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001703}
1704
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04001705/* TODO(wad): will visibility affect this variable? */
Elly Jonescd7a9042011-07-22 13:56:51 -04001706static int init_exitstatus = 0;
1707
Will Drewry6ac91122011-10-21 16:38:58 -05001708void init_term(int __attribute__ ((unused)) sig)
Elly Jonese1749eb2011-10-07 13:54:59 -04001709{
1710 _exit(init_exitstatus);
Elly Jonescd7a9042011-07-22 13:56:51 -04001711}
1712
Jorge Lucangeli Obes963eeec2016-08-10 16:02:43 -04001713void init(pid_t rootpid)
Elly Jonese1749eb2011-10-07 13:54:59 -04001714{
1715 pid_t pid;
1716 int status;
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04001717 /* So that we exit with the right status. */
Elly Jonese1749eb2011-10-07 13:54:59 -04001718 signal(SIGTERM, init_term);
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04001719 /* TODO(wad): self jail with seccomp filters here. */
Elly Jonese1749eb2011-10-07 13:54:59 -04001720 while ((pid = wait(&status)) > 0) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05001721 /*
1722 * This loop will only end when either there are no processes
Elly Jonese1749eb2011-10-07 13:54:59 -04001723 * left inside our pid namespace or we get a signal.
1724 */
1725 if (pid == rootpid)
1726 init_exitstatus = status;
1727 }
1728 if (!WIFEXITED(init_exitstatus))
1729 _exit(MINIJAIL_ERR_INIT);
1730 _exit(WEXITSTATUS(init_exitstatus));
Elly Jonescd7a9042011-07-22 13:56:51 -04001731}
1732
Will Drewry6ac91122011-10-21 16:38:58 -05001733int API minijail_from_fd(int fd, struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001734{
1735 size_t sz = 0;
1736 size_t bytes = read(fd, &sz, sizeof(sz));
1737 char *buf;
1738 int r;
1739 if (sizeof(sz) != bytes)
1740 return -EINVAL;
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001741 if (sz > USHRT_MAX) /* arbitrary sanity check */
Elly Jonese1749eb2011-10-07 13:54:59 -04001742 return -E2BIG;
1743 buf = malloc(sz);
1744 if (!buf)
1745 return -ENOMEM;
1746 bytes = read(fd, buf, sz);
1747 if (bytes != sz) {
1748 free(buf);
1749 return -EINVAL;
1750 }
1751 r = minijail_unmarshal(j, buf, sz);
1752 free(buf);
1753 return r;
Will Drewry2f54b6a2011-09-16 13:45:31 -05001754}
1755
Will Drewry6ac91122011-10-21 16:38:58 -05001756int API minijail_to_fd(struct minijail *j, int fd)
Elly Jonese1749eb2011-10-07 13:54:59 -04001757{
1758 char *buf;
1759 size_t sz = minijail_size(j);
1760 ssize_t written;
1761 int r;
Elly Jonescd7a9042011-07-22 13:56:51 -04001762
Elly Jonese1749eb2011-10-07 13:54:59 -04001763 if (!sz)
1764 return -EINVAL;
1765 buf = malloc(sz);
1766 r = minijail_marshal(j, buf, sz);
1767 if (r) {
1768 free(buf);
1769 return r;
1770 }
1771 /* Sends [size][minijail]. */
1772 written = write(fd, &sz, sizeof(sz));
1773 if (written != sizeof(sz)) {
1774 free(buf);
1775 return -EFAULT;
1776 }
1777 written = write(fd, buf, sz);
1778 if (written < 0 || (size_t) written != sz) {
1779 free(buf);
1780 return -EFAULT;
1781 }
1782 free(buf);
1783 return 0;
Will Drewry2f54b6a2011-09-16 13:45:31 -05001784}
Elly Jonescd7a9042011-07-22 13:56:51 -04001785
Will Drewry6ac91122011-10-21 16:38:58 -05001786int setup_preload(void)
Elly Jonese1749eb2011-10-07 13:54:59 -04001787{
Daniel Erat5b7a3182015-08-19 16:06:22 -06001788#if defined(__ANDROID__)
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -07001789 /* Don't use LDPRELOAD on Brillo. */
1790 return 0;
1791#else
Elly Jonese1749eb2011-10-07 13:54:59 -04001792 char *oldenv = getenv(kLdPreloadEnvVar) ? : "";
1793 char *newenv = malloc(strlen(oldenv) + 2 + strlen(PRELOADPATH));
1794 if (!newenv)
1795 return -ENOMEM;
Elly Jonescd7a9042011-07-22 13:56:51 -04001796
Elly Jonese1749eb2011-10-07 13:54:59 -04001797 /* Only insert a separating space if we have something to separate... */
1798 sprintf(newenv, "%s%s%s", oldenv, strlen(oldenv) ? " " : "",
1799 PRELOADPATH);
Elly Jonescd7a9042011-07-22 13:56:51 -04001800
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001801 /* setenv() makes a copy of the string we give it. */
Elly Jonese1749eb2011-10-07 13:54:59 -04001802 setenv(kLdPreloadEnvVar, newenv, 1);
1803 free(newenv);
1804 return 0;
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -07001805#endif
Elly Jonescd7a9042011-07-22 13:56:51 -04001806}
1807
Will Drewry6ac91122011-10-21 16:38:58 -05001808int setup_pipe(int fds[2])
Elly Jonese1749eb2011-10-07 13:54:59 -04001809{
1810 int r = pipe(fds);
1811 char fd_buf[11];
1812 if (r)
1813 return r;
1814 r = snprintf(fd_buf, sizeof(fd_buf), "%d", fds[0]);
1815 if (r <= 0)
1816 return -EINVAL;
1817 setenv(kFdEnvVar, fd_buf, 1);
1818 return 0;
Will Drewryf89aef52011-09-16 16:48:57 -05001819}
1820
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001821int setup_pipe_end(int fds[2], size_t index)
1822{
1823 if (index > 1)
1824 return -1;
1825
1826 close(fds[1 - index]);
1827 return fds[index];
1828}
1829
1830int setup_and_dupe_pipe_end(int fds[2], size_t index, int fd)
1831{
1832 if (index > 1)
1833 return -1;
1834
1835 close(fds[1 - index]);
1836 /* dup2(2) the corresponding end of the pipe into |fd|. */
1837 return dup2(fds[index], fd);
1838}
1839
Luis Hector Chavez43ff0802016-10-07 12:21:07 -07001840int close_open_fds(int *inheritable_fds, size_t size)
1841{
1842 const char *kFdPath = "/proc/self/fd";
1843
1844 DIR *d = opendir(kFdPath);
1845 struct dirent *dir_entry;
1846
1847 if (d == NULL)
1848 return -1;
1849 int dir_fd = dirfd(d);
1850 while ((dir_entry = readdir(d)) != NULL) {
1851 size_t i;
1852 char *end;
1853 bool should_close = true;
1854 const int fd = strtol(dir_entry->d_name, &end, 10);
1855
1856 if ((*end) != '\0') {
1857 continue;
1858 }
1859 /*
1860 * We might have set up some pipes that we want to share with
1861 * the parent process, and should not be closed.
1862 */
1863 for (i = 0; i < size; ++i) {
1864 if (fd == inheritable_fds[i]) {
1865 should_close = false;
1866 break;
1867 }
1868 }
1869 /* Also avoid closing the directory fd. */
1870 if (should_close && fd != dir_fd)
1871 close(fd);
1872 }
1873 closedir(d);
1874 return 0;
1875}
1876
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001877int minijail_run_internal(struct minijail *j, const char *filename,
1878 char *const argv[], pid_t *pchild_pid,
1879 int *pstdin_fd, int *pstdout_fd, int *pstderr_fd,
1880 int use_preload);
1881
Will Drewry6ac91122011-10-21 16:38:58 -05001882int API minijail_run(struct minijail *j, const char *filename,
1883 char *const argv[])
Elly Jonese1749eb2011-10-07 13:54:59 -04001884{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001885 return minijail_run_internal(j, filename, argv, NULL, NULL, NULL, NULL,
1886 true);
Jorge Lucangeli Obes9807d032012-04-17 13:36:00 -07001887}
1888
1889int API minijail_run_pid(struct minijail *j, const char *filename,
1890 char *const argv[], pid_t *pchild_pid)
1891{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001892 return minijail_run_internal(j, filename, argv, pchild_pid,
1893 NULL, NULL, NULL, true);
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001894}
1895
1896int API minijail_run_pipe(struct minijail *j, const char *filename,
Jorge Lucangeli Obes6537a562012-09-05 10:39:40 -07001897 char *const argv[], int *pstdin_fd)
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001898{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001899 return minijail_run_internal(j, filename, argv, NULL, pstdin_fd,
1900 NULL, NULL, true);
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001901}
1902
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001903int API minijail_run_pid_pipes(struct minijail *j, const char *filename,
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -07001904 char *const argv[], pid_t *pchild_pid,
1905 int *pstdin_fd, int *pstdout_fd, int *pstderr_fd)
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001906{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001907 return minijail_run_internal(j, filename, argv, pchild_pid,
1908 pstdin_fd, pstdout_fd, pstderr_fd, true);
1909}
1910
1911int API minijail_run_no_preload(struct minijail *j, const char *filename,
1912 char *const argv[])
1913{
1914 return minijail_run_internal(j, filename, argv, NULL, NULL, NULL, NULL,
1915 false);
1916}
1917
Samuel Tan63187f42015-10-16 13:01:53 -07001918int API minijail_run_pid_pipes_no_preload(struct minijail *j,
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001919 const char *filename,
1920 char *const argv[],
Samuel Tan63187f42015-10-16 13:01:53 -07001921 pid_t *pchild_pid,
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001922 int *pstdin_fd, int *pstdout_fd,
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001923 int *pstderr_fd)
1924{
Samuel Tan63187f42015-10-16 13:01:53 -07001925 return minijail_run_internal(j, filename, argv, pchild_pid,
1926 pstdin_fd, pstdout_fd, pstderr_fd, false);
1927}
1928
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001929int minijail_run_internal(struct minijail *j, const char *filename,
1930 char *const argv[], pid_t *pchild_pid,
1931 int *pstdin_fd, int *pstdout_fd, int *pstderr_fd,
1932 int use_preload)
1933{
Elly Jonese1749eb2011-10-07 13:54:59 -04001934 char *oldenv, *oldenv_copy = NULL;
1935 pid_t child_pid;
1936 int pipe_fds[2];
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001937 int stdin_fds[2];
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001938 int stdout_fds[2];
1939 int stderr_fds[2];
Dylan Reidce5b55e2016-01-13 11:04:16 -08001940 int child_sync_pipe_fds[2];
1941 int sync_child = 0;
Elly Jonese1749eb2011-10-07 13:54:59 -04001942 int ret;
Elly Jonesa05d7bb2012-06-14 14:09:27 -04001943 /* We need to remember this across the minijail_preexec() call. */
1944 int pid_namespace = j->flags.pids;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08001945 int do_init = j->flags.do_init;
Ben Chan541c7e52011-08-26 14:55:53 -07001946
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001947 if (use_preload) {
1948 oldenv = getenv(kLdPreloadEnvVar);
1949 if (oldenv) {
1950 oldenv_copy = strdup(oldenv);
1951 if (!oldenv_copy)
1952 return -ENOMEM;
1953 }
1954
1955 if (setup_preload())
1956 return -EFAULT;
Elly Jonese1749eb2011-10-07 13:54:59 -04001957 }
Will Drewryf89aef52011-09-16 16:48:57 -05001958
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001959 if (!use_preload) {
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04001960 if (j->flags.use_caps && j->caps != 0)
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001961 die("non-empty capabilities are not supported without "
1962 "LD_PRELOAD");
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001963 }
Will Drewry2f54b6a2011-09-16 13:45:31 -05001964
Elly Jonesdd3e8512012-01-23 15:13:38 -05001965 /*
Jorge Lucangeli Obesaa235b92016-11-23 13:48:15 -05001966 * Make the process group ID of this process equal to its PID.
1967 * In the non-interactive case (e.g. when the parent process is started
1968 * from init) this ensures the parent process and the jailed process
1969 * can be killed together.
1970 * When the parent process is started from the console this ensures
1971 * the call to setsid(2) in the jailed process succeeds.
1972 *
Jorge Lucangeli Obes3c84df12015-05-14 17:37:58 -07001973 * Don't fail on EPERM, since setpgid(0, 0) can only EPERM when
1974 * the process is already a process group leader.
1975 */
1976 if (setpgid(0 /* use calling PID */, 0 /* make PGID = PID */)) {
1977 if (errno != EPERM) {
Jorge Lucangeli Obesaa235b92016-11-23 13:48:15 -05001978 pdie("setpgid(0, 0) failed");
Jorge Lucangeli Obes3c84df12015-05-14 17:37:58 -07001979 }
1980 }
1981
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001982 if (use_preload) {
1983 /*
1984 * Before we fork(2) and execve(2) the child process, we need
1985 * to open a pipe(2) to send the minijail configuration over.
1986 */
1987 if (setup_pipe(pipe_fds))
1988 return -EFAULT;
1989 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001990
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001991 /*
1992 * If we want to write to the child process' standard input,
1993 * create the pipe(2) now.
1994 */
1995 if (pstdin_fd) {
1996 if (pipe(stdin_fds))
1997 return -EFAULT;
1998 }
1999
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002000 /*
2001 * If we want to read from the child process' standard output,
2002 * create the pipe(2) now.
2003 */
2004 if (pstdout_fd) {
2005 if (pipe(stdout_fds))
2006 return -EFAULT;
2007 }
2008
2009 /*
2010 * If we want to read from the child process' standard error,
2011 * create the pipe(2) now.
2012 */
2013 if (pstderr_fd) {
2014 if (pipe(stderr_fds))
2015 return -EFAULT;
2016 }
2017
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002018 /*
Jorge Lucangeli Obesab6fa6f2016-08-04 15:42:48 -04002019 * If we want to set up a new uid/gid map in the user namespace,
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -08002020 * or if we need to add the child process to cgroups, create the pipe(2)
2021 * to sync between parent and child.
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002022 */
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -08002023 if (j->flags.userns || j->flags.cgroups) {
Dylan Reidce5b55e2016-01-13 11:04:16 -08002024 sync_child = 1;
2025 if (pipe(child_sync_pipe_fds))
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002026 return -EFAULT;
2027 }
2028
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08002029 /*
2030 * Use sys_clone() if and only if we're creating a pid namespace.
Elly Jones761b7412012-06-13 15:49:52 -04002031 *
2032 * tl;dr: WARNING: do not mix pid namespaces and multithreading.
2033 *
2034 * In multithreaded programs, there are a bunch of locks inside libc,
2035 * some of which may be held by other threads at the time that we call
2036 * minijail_run_pid(). If we call fork(), glibc does its level best to
2037 * ensure that we hold all of these locks before it calls clone()
2038 * internally and drop them after clone() returns, but when we call
2039 * sys_clone(2) directly, all that gets bypassed and we end up with a
2040 * child address space where some of libc's important locks are held by
2041 * other threads (which did not get cloned, and hence will never release
2042 * those locks). This is okay so long as we call exec() immediately
2043 * after, but a bunch of seemingly-innocent libc functions like setenv()
2044 * take locks.
2045 *
2046 * Hence, only call sys_clone() if we need to, in order to get at pid
2047 * namespacing. If we follow this path, the child's address space might
2048 * have broken locks; you may only call functions that do not acquire
2049 * any locks.
2050 *
2051 * Unfortunately, fork() acquires every lock it can get its hands on, as
2052 * previously detailed, so this function is highly likely to deadlock
2053 * later on (see "deadlock here") if we're multithreaded.
2054 *
2055 * We might hack around this by having the clone()d child (init of the
2056 * pid namespace) return directly, rather than leaving the clone()d
2057 * process hanging around to be init for the new namespace (and having
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08002058 * its fork()ed child return in turn), but that process would be
2059 * crippled with its libc locks potentially broken. We might try
2060 * fork()ing in the parent before we clone() to ensure that we own all
2061 * the locks, but then we have to have the forked child hanging around
2062 * consuming resources (and possibly having file descriptors / shared
2063 * memory regions / etc attached). We'd need to keep the child around to
2064 * avoid having its children get reparented to init.
Elly Jones761b7412012-06-13 15:49:52 -04002065 *
2066 * TODO(ellyjones): figure out if the "forked child hanging around"
2067 * problem is fixable or not. It would be nice if we worked in this
2068 * case.
2069 */
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002070 if (pid_namespace) {
2071 int clone_flags = CLONE_NEWPID | SIGCHLD;
2072 if (j->flags.userns)
2073 clone_flags |= CLONE_NEWUSER;
2074 child_pid = syscall(SYS_clone, clone_flags, NULL);
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002075 } else {
Elly Jones761b7412012-06-13 15:49:52 -04002076 child_pid = fork();
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002077 }
Elly Jones761b7412012-06-13 15:49:52 -04002078
Elly Jonese1749eb2011-10-07 13:54:59 -04002079 if (child_pid < 0) {
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002080 if (use_preload) {
2081 free(oldenv_copy);
2082 }
Lee Campbell1e4fc6a2014-06-06 17:40:02 -07002083 die("failed to fork child");
Elly Jonese1749eb2011-10-07 13:54:59 -04002084 }
Will Drewryf89aef52011-09-16 16:48:57 -05002085
Elly Jonese1749eb2011-10-07 13:54:59 -04002086 if (child_pid) {
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002087 if (use_preload) {
2088 /* Restore parent's LD_PRELOAD. */
2089 if (oldenv_copy) {
2090 setenv(kLdPreloadEnvVar, oldenv_copy, 1);
2091 free(oldenv_copy);
2092 } else {
2093 unsetenv(kLdPreloadEnvVar);
2094 }
2095 unsetenv(kFdEnvVar);
Elly Jonese1749eb2011-10-07 13:54:59 -04002096 }
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002097
Elly Jonese1749eb2011-10-07 13:54:59 -04002098 j->initpid = child_pid;
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002099
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08002100 if (j->flags.pid_file)
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04002101 write_pid_file_or_die(j);
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08002102
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -08002103 if (j->flags.cgroups)
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04002104 add_to_cgroups_or_die(j);
Dylan Reid605ce7f2016-01-19 19:21:00 -08002105
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002106 if (j->flags.userns)
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04002107 write_ugid_maps_or_die(j);
Dylan Reidce5b55e2016-01-13 11:04:16 -08002108
2109 if (sync_child)
2110 parent_setup_complete(child_sync_pipe_fds);
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002111
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002112 if (use_preload) {
2113 /* Send marshalled minijail. */
2114 close(pipe_fds[0]); /* read endpoint */
2115 ret = minijail_to_fd(j, pipe_fds[1]);
2116 close(pipe_fds[1]); /* write endpoint */
2117 if (ret) {
2118 kill(j->initpid, SIGKILL);
2119 die("failed to send marshalled minijail");
2120 }
Elly Jonese1749eb2011-10-07 13:54:59 -04002121 }
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002122
Jorge Lucangeli Obes9807d032012-04-17 13:36:00 -07002123 if (pchild_pid)
2124 *pchild_pid = child_pid;
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002125
2126 /*
2127 * If we want to write to the child process' standard input,
2128 * set up the write end of the pipe.
2129 */
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002130 if (pstdin_fd)
2131 *pstdin_fd = setup_pipe_end(stdin_fds,
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002132 1 /* write end */);
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002133
2134 /*
2135 * If we want to read from the child process' standard output,
2136 * set up the read end of the pipe.
2137 */
2138 if (pstdout_fd)
2139 *pstdout_fd = setup_pipe_end(stdout_fds,
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002140 0 /* read end */);
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002141
2142 /*
2143 * If we want to read from the child process' standard error,
2144 * set up the read end of the pipe.
2145 */
2146 if (pstderr_fd)
2147 *pstderr_fd = setup_pipe_end(stderr_fds,
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002148 0 /* read end */);
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002149
Elly Jonese1749eb2011-10-07 13:54:59 -04002150 return 0;
2151 }
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04002152 /* Child process. */
Elly Jonese1749eb2011-10-07 13:54:59 -04002153 free(oldenv_copy);
Ben Chan541c7e52011-08-26 14:55:53 -07002154
Peter Qiu2860c462015-12-16 15:13:06 -08002155 if (j->flags.reset_signal_mask) {
2156 sigset_t signal_mask;
2157 if (sigemptyset(&signal_mask) != 0)
2158 pdie("sigemptyset failed");
2159 if (sigprocmask(SIG_SETMASK, &signal_mask, NULL) != 0)
2160 pdie("sigprocmask failed");
2161 }
2162
Luis Hector Chavez43ff0802016-10-07 12:21:07 -07002163 if (j->flags.close_open_fds) {
2164 const size_t kMaxInheritableFdsSize = 10;
2165 int inheritable_fds[kMaxInheritableFdsSize];
2166 size_t size = 0;
2167 if (use_preload) {
2168 inheritable_fds[size++] = pipe_fds[0];
2169 inheritable_fds[size++] = pipe_fds[1];
2170 }
2171 if (sync_child) {
2172 inheritable_fds[size++] = child_sync_pipe_fds[0];
2173 inheritable_fds[size++] = child_sync_pipe_fds[1];
2174 }
2175 if (pstdin_fd) {
2176 inheritable_fds[size++] = stdin_fds[0];
2177 inheritable_fds[size++] = stdin_fds[1];
2178 }
2179 if (pstdout_fd) {
2180 inheritable_fds[size++] = stdout_fds[0];
2181 inheritable_fds[size++] = stdout_fds[1];
2182 }
2183 if (pstderr_fd) {
2184 inheritable_fds[size++] = stderr_fds[0];
2185 inheritable_fds[size++] = stderr_fds[1];
2186 }
2187
2188 if (close_open_fds(inheritable_fds, size) < 0)
2189 die("failed to close open file descriptors");
2190 }
2191
Dylan Reidce5b55e2016-01-13 11:04:16 -08002192 if (sync_child)
2193 wait_for_parent_setup(child_sync_pipe_fds);
2194
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002195 if (j->flags.userns)
Dylan Reidce5b55e2016-01-13 11:04:16 -08002196 enter_user_namespace(j);
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002197
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002198 /*
2199 * If we want to write to the jailed process' standard input,
2200 * set up the read end of the pipe.
2201 */
2202 if (pstdin_fd) {
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002203 if (setup_and_dupe_pipe_end(stdin_fds, 0 /* read end */,
2204 STDIN_FILENO) < 0)
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002205 die("failed to set up stdin pipe");
2206 }
2207
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002208 /*
2209 * If we want to read from the jailed process' standard output,
2210 * set up the write end of the pipe.
2211 */
2212 if (pstdout_fd) {
2213 if (setup_and_dupe_pipe_end(stdout_fds, 1 /* write end */,
2214 STDOUT_FILENO) < 0)
2215 die("failed to set up stdout pipe");
2216 }
2217
2218 /*
2219 * If we want to read from the jailed process' standard error,
2220 * set up the write end of the pipe.
2221 */
2222 if (pstderr_fd) {
2223 if (setup_and_dupe_pipe_end(stderr_fds, 1 /* write end */,
2224 STDERR_FILENO) < 0)
2225 die("failed to set up stderr pipe");
2226 }
2227
Jorge Lucangeli Obesaa235b92016-11-23 13:48:15 -05002228 /*
2229 * If any of stdin, stdout, or stderr are TTYs, create a new session.
2230 * This prevents the jailed process from using the TIOCSTI ioctl
2231 * to push characters into the parent process terminal's input buffer,
2232 * therefore escaping the jail.
2233 */
2234 if (isatty(STDIN_FILENO) || isatty(STDOUT_FILENO) ||
2235 isatty(STDERR_FILENO)) {
2236 if (setsid() < 0) {
2237 pdie("setsid() failed");
2238 }
2239 }
2240
Dylan Reid791f5772015-09-14 20:02:42 -07002241 /* If running an init program, let it decide when/how to mount /proc. */
2242 if (pid_namespace && !do_init)
2243 j->flags.remount_proc_ro = 0;
2244
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002245 if (use_preload) {
2246 /* Strip out flags that cannot be inherited across execve(2). */
2247 minijail_preexec(j);
2248 } else {
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04002249 /*
2250 * If not using LD_PRELOAD, do all jailing before execve(2).
2251 * Note that PID namespaces can only be entered on fork(2),
2252 * so that flag is still cleared.
2253 */
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002254 j->flags.pids = 0;
2255 }
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04002256 /* Jail this process, then execve(2) the target. */
Elly Jonese1749eb2011-10-07 13:54:59 -04002257 minijail_enter(j);
Elly Jonescd7a9042011-07-22 13:56:51 -04002258
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08002259 if (pid_namespace && do_init) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05002260 /*
2261 * pid namespace: this process will become init inside the new
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08002262 * namespace. We don't want all programs we might exec to have
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002263 * to know how to be init. Normally (do_init == 1) we fork off
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08002264 * a child to actually run the program. If |do_init == 0|, we
2265 * let the program keep pid 1 and be init.
Elly Jones761b7412012-06-13 15:49:52 -04002266 *
2267 * If we're multithreaded, we'll probably deadlock here. See
2268 * WARNING above.
Elly Jonese1749eb2011-10-07 13:54:59 -04002269 */
2270 child_pid = fork();
Jorge Lucangeli Obes963eeec2016-08-10 16:02:43 -04002271 if (child_pid < 0) {
Elly Jonese1749eb2011-10-07 13:54:59 -04002272 _exit(child_pid);
Jorge Lucangeli Obes963eeec2016-08-10 16:02:43 -04002273 } else if (child_pid > 0) {
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -04002274 /*
2275 * Best effort. Don't bother checking the return value.
2276 */
Jorge Lucangeli Obes963eeec2016-08-10 16:02:43 -04002277 prctl(PR_SET_NAME, "minijail-init");
2278 init(child_pid); /* Never returns. */
2279 }
Elly Jonese1749eb2011-10-07 13:54:59 -04002280 }
Elly Jonescd7a9042011-07-22 13:56:51 -04002281
Elly Jonesdd3e8512012-01-23 15:13:38 -05002282 /*
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002283 * If we aren't pid-namespaced, or the jailed program asked to be init:
Elly Jonese1749eb2011-10-07 13:54:59 -04002284 * calling process
2285 * -> execve()-ing process
2286 * If we are:
2287 * calling process
2288 * -> init()-ing process
2289 * -> execve()-ing process
2290 */
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04002291 ret = execve(filename, argv, environ);
2292 if (ret == -1) {
2293 pwarn("execve(%s) failed", filename);
2294 }
2295 _exit(ret);
Elly Jonescd7a9042011-07-22 13:56:51 -04002296}
2297
Will Drewry6ac91122011-10-21 16:38:58 -05002298int API minijail_kill(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04002299{
2300 int st;
2301 if (kill(j->initpid, SIGTERM))
2302 return -errno;
2303 if (waitpid(j->initpid, &st, 0) < 0)
2304 return -errno;
2305 return st;
Elly Jonescd7a9042011-07-22 13:56:51 -04002306}
2307
Will Drewry6ac91122011-10-21 16:38:58 -05002308int API minijail_wait(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04002309{
2310 int st;
2311 if (waitpid(j->initpid, &st, 0) < 0)
2312 return -errno;
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08002313
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07002314 if (!WIFEXITED(st)) {
Jorge Lucangeli Obes18d1eba2014-04-18 13:58:20 -07002315 int error_status = st;
2316 if (WIFSIGNALED(st)) {
2317 int signum = WTERMSIG(st);
mukesh agrawalc420a262013-06-11 17:22:42 -07002318 warn("child process %d received signal %d",
Jorge Lucangeli Obes18d1eba2014-04-18 13:58:20 -07002319 j->initpid, signum);
2320 /*
2321 * We return MINIJAIL_ERR_JAIL if the process received
2322 * SIGSYS, which happens when a syscall is blocked by
2323 * seccomp filters.
2324 * If not, we do what bash(1) does:
2325 * $? = 128 + signum
2326 */
2327 if (signum == SIGSYS) {
2328 error_status = MINIJAIL_ERR_JAIL;
2329 } else {
2330 error_status = 128 + signum;
2331 }
2332 }
2333 return error_status;
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07002334 }
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08002335
2336 int exit_status = WEXITSTATUS(st);
2337 if (exit_status != 0)
mukesh agrawalc420a262013-06-11 17:22:42 -07002338 info("child process %d exited with status %d",
2339 j->initpid, exit_status);
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08002340
2341 return exit_status;
Elly Jonescd7a9042011-07-22 13:56:51 -04002342}
2343
Will Drewry6ac91122011-10-21 16:38:58 -05002344void API minijail_destroy(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04002345{
Dylan Reid605ce7f2016-01-19 19:21:00 -08002346 size_t i;
2347
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08002348 if (j->flags.seccomp_filter && j->filter_prog) {
2349 free(j->filter_prog->filter);
2350 free(j->filter_prog);
Elly Jonese1749eb2011-10-07 13:54:59 -04002351 }
Dylan Reid648b2202015-10-23 00:50:00 -07002352 while (j->mounts_head) {
2353 struct mountpoint *m = j->mounts_head;
2354 j->mounts_head = j->mounts_head->next;
Dylan Reid81e23972016-05-18 14:06:35 -07002355 free(m->data);
Dylan Reid648b2202015-10-23 00:50:00 -07002356 free(m->type);
2357 free(m->dest);
2358 free(m->src);
2359 free(m);
Elly Jones51a5b6c2011-10-12 19:09:26 -04002360 }
Dylan Reid648b2202015-10-23 00:50:00 -07002361 j->mounts_tail = NULL;
Elly Jonese1749eb2011-10-07 13:54:59 -04002362 if (j->user)
2363 free(j->user);
Jorge Lucangeli Obese81a52f2015-12-04 16:05:23 -08002364 if (j->suppl_gid_list)
2365 free(j->suppl_gid_list);
Will Drewrybee7ba72011-10-21 20:47:01 -05002366 if (j->chrootdir)
2367 free(j->chrootdir);
Jorge Lucangeli Obes3b2e6e42016-08-04 12:26:19 -04002368 if (j->pid_file_path)
2369 free(j->pid_file_path);
2370 if (j->uidmap)
2371 free(j->uidmap);
2372 if (j->gidmap)
2373 free(j->gidmap);
Andrew Brestickereac28942015-11-11 16:04:46 -08002374 if (j->alt_syscall_table)
2375 free(j->alt_syscall_table);
Dylan Reid605ce7f2016-01-19 19:21:00 -08002376 for (i = 0; i < j->cgroup_count; ++i)
2377 free(j->cgroups[i]);
Elly Jonese1749eb2011-10-07 13:54:59 -04002378 free(j);
Elly Jonescd7a9042011-07-22 13:56:51 -04002379}