blob: cb03d5ea30a1797dca8840de309ea029449ddfb3 [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>
Elly Jonescd7a9042011-07-22 13:56:51 -040012#include <errno.h>
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -070013#include <fcntl.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040014#include <grp.h>
15#include <inttypes.h>
Will Drewryfe4a3722011-09-16 14:50:50 -050016#include <limits.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040017#include <linux/capability.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040018#include <pwd.h>
19#include <sched.h>
20#include <signal.h>
Will Drewry2f54b6a2011-09-16 13:45:31 -050021#include <stdarg.h>
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -070022#include <stdbool.h>
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080023#include <stddef.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040024#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <syscall.h>
28#include <sys/capability.h>
29#include <sys/mount.h>
Will Drewryf89aef52011-09-16 16:48:57 -050030#include <sys/param.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040031#include <sys/prctl.h>
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -070032#include <sys/stat.h>
33#include <sys/types.h>
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080034#include <sys/user.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040035#include <sys/wait.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040036#include <unistd.h>
37
38#include "libminijail.h"
39#include "libminijail-private.h"
40
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -070041#include "signal_handler.h"
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080042#include "syscall_filter.h"
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070043#include "util.h"
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080044
Lei Zhangeee31552012-10-17 21:27:10 -070045#ifdef HAVE_SECUREBITS_H
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -070046# include <linux/securebits.h>
Lei Zhangeee31552012-10-17 21:27:10 -070047#else
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -070048# define SECURE_ALL_BITS 0x55
49# define SECURE_ALL_LOCKS (SECURE_ALL_BITS << 1)
50#endif
51/* For kernels < 4.3. */
52#define OLD_SECURE_ALL_BITS 0x15
53#define OLD_SECURE_ALL_LOCKS (OLD_SECURE_ALL_BITS << 1)
54
55/*
56 * Assert the value of SECURE_ALL_BITS at compile-time.
57 * Brillo devices are currently compiled against 4.4 kernel headers. Kernel 4.3
58 * added a new securebit.
59 * When a new securebit is added, the new SECURE_ALL_BITS mask will return EPERM
60 * when used on older kernels. The compile-time assert will catch this situation
61 * at compile time.
62 */
63#ifdef __BRILLO__
64_Static_assert(SECURE_ALL_BITS == 0x55, "SECURE_ALL_BITS == 0x55.");
Lei Zhangeee31552012-10-17 21:27:10 -070065#endif
66
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -070067/* Until these are reliably available in linux/prctl.h. */
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080068#ifndef PR_SET_SECCOMP
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -070069# define PR_SET_SECCOMP 22
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080070#endif
71
Andrew Brestickereac28942015-11-11 16:04:46 -080072#ifndef PR_ALT_SYSCALL
73# define PR_ALT_SYSCALL 0x43724f53
74#endif
75
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080076/* For seccomp_filter using BPF. */
77#ifndef PR_SET_NO_NEW_PRIVS
78# define PR_SET_NO_NEW_PRIVS 38
79#endif
80#ifndef SECCOMP_MODE_FILTER
81# define SECCOMP_MODE_FILTER 2 /* uses user-supplied filter. */
Will Drewry32ac9f52011-08-18 21:36:27 -050082#endif
83
Dylan Reid4cbc2a52016-06-17 19:06:07 -070084/* New cgroup namespace might not be in linux-headers yet. */
85#ifndef CLONE_NEWCGROUP
86# define CLONE_NEWCGROUP 0x02000000
87#endif
88
Dylan Reid605ce7f2016-01-19 19:21:00 -080089#define MAX_CGROUPS 10 /* 10 different controllers supported by Linux. */
90
Dylan Reid648b2202015-10-23 00:50:00 -070091struct mountpoint {
Elly Jones51a5b6c2011-10-12 19:09:26 -040092 char *src;
93 char *dest;
Dylan Reid648b2202015-10-23 00:50:00 -070094 char *type;
Dylan Reid81e23972016-05-18 14:06:35 -070095 char *data;
96 int has_data;
Dylan Reid648b2202015-10-23 00:50:00 -070097 unsigned long flags;
98 struct mountpoint *next;
Elly Jones51a5b6c2011-10-12 19:09:26 -040099};
100
Will Drewryf89aef52011-09-16 16:48:57 -0500101struct minijail {
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700102 /*
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700103 * WARNING: if you add a flag here you need to make sure it's
104 * accounted for in minijail_pre{enter|exec}() below.
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700105 */
Elly Jonese1749eb2011-10-07 13:54:59 -0400106 struct {
107 int uid:1;
108 int gid:1;
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800109 int usergroups:1;
110 int suppl_gids:1;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800111 int use_caps:1;
112 int capbset_drop:1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400113 int vfs:1;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700114 int enter_vfs:1;
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800115 int skip_remount_private:1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400116 int pids:1;
Dylan Reidf7942472015-11-18 17:55:26 -0800117 int ipc:1;
Elly Fong-Jones6c086302013-03-20 17:15:28 -0400118 int net:1;
Dylan Reid1102f5a2015-09-15 11:52:20 -0700119 int enter_net:1;
Dylan Reid4cbc2a52016-06-17 19:06:07 -0700120 int ns_cgroups:1;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800121 int userns:1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400122 int seccomp:1;
Dylan Reid791f5772015-09-14 20:02:42 -0700123 int remount_proc_ro:1;
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -0700124 int no_new_privs:1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400125 int seccomp_filter:1;
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700126 int log_seccomp_filter:1;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400127 int chroot:1;
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +0800128 int pivot_root:1;
Lee Campbell11af0622014-05-22 12:36:04 -0700129 int mount_tmp:1;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800130 int do_init:1;
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800131 int pid_file:1;
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800132 int cgroups:1;
Andrew Brestickereac28942015-11-11 16:04:46 -0800133 int alt_syscall:1;
Peter Qiu2860c462015-12-16 15:13:06 -0800134 int reset_signal_mask:1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400135 } flags;
136 uid_t uid;
137 gid_t gid;
138 gid_t usergid;
139 char *user;
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800140 size_t suppl_gid_count;
141 gid_t *suppl_gid_list;
Elly Jonese1749eb2011-10-07 13:54:59 -0400142 uint64_t caps;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800143 uint64_t cap_bset;
Elly Jonese1749eb2011-10-07 13:54:59 -0400144 pid_t initpid;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700145 int mountns_fd;
Dylan Reid1102f5a2015-09-15 11:52:20 -0700146 int netns_fd;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400147 char *chrootdir;
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800148 char *pid_file_path;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800149 char *uidmap;
150 char *gidmap;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800151 size_t filter_len;
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800152 struct sock_fprog *filter_prog;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800153 char *alt_syscall_table;
Dylan Reid648b2202015-10-23 00:50:00 -0700154 struct mountpoint *mounts_head;
155 struct mountpoint *mounts_tail;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800156 size_t mounts_count;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800157 char *cgroups[MAX_CGROUPS];
158 size_t cgroup_count;
Will Drewryf89aef52011-09-16 16:48:57 -0500159};
160
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700161/*
162 * Strip out flags meant for the parent.
163 * We keep things that are not inherited across execve(2) (e.g. capabilities),
164 * or are easier to set after execve(2) (e.g. seccomp filters).
165 */
166void minijail_preenter(struct minijail *j)
167{
168 j->flags.vfs = 0;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700169 j->flags.enter_vfs = 0;
Shuhei Takahashi3da40312016-03-07 17:37:49 +0900170 j->flags.skip_remount_private = 0;
Dylan Reid791f5772015-09-14 20:02:42 -0700171 j->flags.remount_proc_ro = 0;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700172 j->flags.pids = 0;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800173 j->flags.do_init = 0;
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800174 j->flags.pid_file = 0;
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800175 j->flags.cgroups = 0;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700176}
177
178/*
179 * Strip out flags meant for the child.
180 * We keep things that are inherited across execve(2).
181 */
182void minijail_preexec(struct minijail *j)
183{
184 int vfs = j->flags.vfs;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700185 int enter_vfs = j->flags.enter_vfs;
Jorge Lucangeli Obes87bf01d2016-03-08 11:20:03 -0800186 int skip_remount_private = j->flags.skip_remount_private;
Dylan Reid791f5772015-09-14 20:02:42 -0700187 int remount_proc_ro = j->flags.remount_proc_ro;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800188 int userns = j->flags.userns;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700189 if (j->user)
190 free(j->user);
191 j->user = NULL;
Jorge Lucangeli Obese81a52f2015-12-04 16:05:23 -0800192 if (j->suppl_gid_list)
193 free(j->suppl_gid_list);
194 j->suppl_gid_list = NULL;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700195 memset(&j->flags, 0, sizeof(j->flags));
196 /* Now restore anything we meant to keep. */
197 j->flags.vfs = vfs;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700198 j->flags.enter_vfs = enter_vfs;
Jorge Lucangeli Obes87bf01d2016-03-08 11:20:03 -0800199 j->flags.skip_remount_private = skip_remount_private;
Dylan Reid791f5772015-09-14 20:02:42 -0700200 j->flags.remount_proc_ro = remount_proc_ro;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800201 j->flags.userns = userns;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700202 /* Note, |pids| will already have been used before this call. */
203}
204
205/* Minijail API. */
206
Will Drewry6ac91122011-10-21 16:38:58 -0500207struct minijail API *minijail_new(void)
Elly Jonese1749eb2011-10-07 13:54:59 -0400208{
Elly Jones51a5b6c2011-10-12 19:09:26 -0400209 return calloc(1, sizeof(struct minijail));
Elly Jonescd7a9042011-07-22 13:56:51 -0400210}
211
Will Drewry6ac91122011-10-21 16:38:58 -0500212void API minijail_change_uid(struct minijail *j, uid_t uid)
Elly Jonese1749eb2011-10-07 13:54:59 -0400213{
214 if (uid == 0)
215 die("useless change to uid 0");
216 j->uid = uid;
217 j->flags.uid = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400218}
219
Will Drewry6ac91122011-10-21 16:38:58 -0500220void API minijail_change_gid(struct minijail *j, gid_t gid)
Elly Jonese1749eb2011-10-07 13:54:59 -0400221{
222 if (gid == 0)
223 die("useless change to gid 0");
224 j->gid = gid;
225 j->flags.gid = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400226}
227
Jorge Lucangeli Obesbc67f442016-01-08 14:43:45 -0800228void API minijail_set_supplementary_gids(struct minijail *j, size_t size,
229 const gid_t *list)
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800230{
Jorge Lucangeli Obes06940be2015-12-04 18:09:21 -0800231 size_t i;
232
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800233 if (j->flags.usergroups)
234 die("cannot inherit *and* set supplementary groups");
235
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800236 if (size == 0) {
237 /* Clear supplementary groups. */
238 j->suppl_gid_list = NULL;
239 j->suppl_gid_count = 0;
240 j->flags.suppl_gids = 1;
Jorge Lucangeli Obesbc67f442016-01-08 14:43:45 -0800241 return;
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800242 }
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800243
244 /* Copy the gid_t array. */
245 j->suppl_gid_list = calloc(size, sizeof(gid_t));
246 if (!j->suppl_gid_list) {
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800247 die("failed to allocate internal supplementary group array");
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800248 }
Jorge Lucangeli Obes06940be2015-12-04 18:09:21 -0800249 for (i = 0; i < size; i++) {
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800250 j->suppl_gid_list[i] = list[i];
251 }
252 j->suppl_gid_count = size;
253 j->flags.suppl_gids = 1;
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800254}
255
Will Drewry6ac91122011-10-21 16:38:58 -0500256int API minijail_change_user(struct minijail *j, const char *user)
Elly Jonese1749eb2011-10-07 13:54:59 -0400257{
258 char *buf = NULL;
259 struct passwd pw;
260 struct passwd *ppw = NULL;
261 ssize_t sz = sysconf(_SC_GETPW_R_SIZE_MAX);
262 if (sz == -1)
263 sz = 65536; /* your guess is as good as mine... */
Elly Joneseb300c52011-09-22 14:35:43 -0400264
Elly Jonesdd3e8512012-01-23 15:13:38 -0500265 /*
266 * sysconf(_SC_GETPW_R_SIZE_MAX), under glibc, is documented to return
Elly Jonese1749eb2011-10-07 13:54:59 -0400267 * the maximum needed size of the buffer, so we don't have to search.
268 */
269 buf = malloc(sz);
270 if (!buf)
271 return -ENOMEM;
272 getpwnam_r(user, &pw, buf, sz, &ppw);
Elly Jonesdd3e8512012-01-23 15:13:38 -0500273 /*
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800274 * We're safe to free the buffer here. The strings inside |pw| point
275 * inside |buf|, but we don't use any of them; this leaves the pointers
Jorge Lucangeli Obes87bf01d2016-03-08 11:20:03 -0800276 * dangling but it's safe. |ppw| points at |pw| if getpwnam_r(3)
277 * succeeded.
Elly Jonesdd3e8512012-01-23 15:13:38 -0500278 */
Elly Jonese1749eb2011-10-07 13:54:59 -0400279 free(buf);
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700280 /* getpwnam_r(3) does *not* set errno when |ppw| is NULL. */
Elly Jonese1749eb2011-10-07 13:54:59 -0400281 if (!ppw)
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700282 return -1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400283 minijail_change_uid(j, ppw->pw_uid);
284 j->user = strdup(user);
285 if (!j->user)
286 return -ENOMEM;
287 j->usergid = ppw->pw_gid;
288 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -0400289}
290
Will Drewry6ac91122011-10-21 16:38:58 -0500291int API minijail_change_group(struct minijail *j, const char *group)
Elly Jonese1749eb2011-10-07 13:54:59 -0400292{
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -0700293 char *buf = NULL;
Yabin Cui1b21c8f2015-07-22 10:34:45 -0700294 struct group gr;
295 struct group *pgr = NULL;
Elly Jonese1749eb2011-10-07 13:54:59 -0400296 ssize_t sz = sysconf(_SC_GETGR_R_SIZE_MAX);
297 if (sz == -1)
298 sz = 65536; /* and mine is as good as yours, really */
Elly Joneseb300c52011-09-22 14:35:43 -0400299
Elly Jonesdd3e8512012-01-23 15:13:38 -0500300 /*
301 * sysconf(_SC_GETGR_R_SIZE_MAX), under glibc, is documented to return
Elly Jonese1749eb2011-10-07 13:54:59 -0400302 * the maximum needed size of the buffer, so we don't have to search.
303 */
304 buf = malloc(sz);
305 if (!buf)
306 return -ENOMEM;
307 getgrnam_r(group, &gr, buf, sz, &pgr);
Elly Jonesdd3e8512012-01-23 15:13:38 -0500308 /*
309 * We're safe to free the buffer here. The strings inside gr point
310 * inside buf, but we don't use any of them; this leaves the pointers
311 * dangling but it's safe. pgr points at gr if getgrnam_r succeeded.
312 */
Elly Jonese1749eb2011-10-07 13:54:59 -0400313 free(buf);
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700314 /* getgrnam_r(3) does *not* set errno when |pgr| is NULL. */
Elly Jonese1749eb2011-10-07 13:54:59 -0400315 if (!pgr)
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700316 return -1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400317 minijail_change_gid(j, pgr->gr_gid);
318 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -0400319}
320
Will Drewry6ac91122011-10-21 16:38:58 -0500321void API minijail_use_seccomp(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400322{
323 j->flags.seccomp = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400324}
325
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -0700326void API minijail_no_new_privs(struct minijail *j)
327{
328 j->flags.no_new_privs = 1;
329}
330
Will Drewry6ac91122011-10-21 16:38:58 -0500331void API minijail_use_seccomp_filter(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400332{
333 j->flags.seccomp_filter = 1;
Will Drewry32ac9f52011-08-18 21:36:27 -0500334}
335
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700336void API minijail_log_seccomp_filter_failures(struct minijail *j)
337{
338 j->flags.log_seccomp_filter = 1;
339}
340
Will Drewry6ac91122011-10-21 16:38:58 -0500341void API minijail_use_caps(struct minijail *j, uint64_t capmask)
Elly Jonese1749eb2011-10-07 13:54:59 -0400342{
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800343 /*
344 * 'minijail_use_caps' configures a runtime-capabilities-only
345 * environment, including a bounding set matching the thread's runtime
346 * (permitted|inheritable|effective) sets.
347 * Therefore, it will override any existing bounding set configurations
348 * since the latter would allow gaining extra runtime capabilities from
349 * file capabilities.
350 */
351 if (j->flags.capbset_drop) {
352 warn("overriding bounding set configuration");
353 j->cap_bset = 0;
354 j->flags.capbset_drop = 0;
355 }
Elly Jonese1749eb2011-10-07 13:54:59 -0400356 j->caps = capmask;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800357 j->flags.use_caps = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400358}
359
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800360void API minijail_capbset_drop(struct minijail *j, uint64_t capmask)
361{
362 if (j->flags.use_caps) {
363 /*
364 * 'minijail_use_caps' will have already configured a capability
365 * bounding set matching the (permitted|inheritable|effective)
366 * sets. Abort if the user tries to configure a separate
367 * bounding set. 'minijail_capbset_drop' and 'minijail_use_caps'
368 * are mutually exclusive.
369 */
370 die("runtime capabilities already configured, can't drop "
371 "bounding set separately");
372 }
373 j->cap_bset = capmask;
374 j->flags.capbset_drop = 1;
375}
376
377void API minijail_reset_signal_mask(struct minijail *j)
378{
Peter Qiu2860c462015-12-16 15:13:06 -0800379 j->flags.reset_signal_mask = 1;
380}
381
Will Drewry6ac91122011-10-21 16:38:58 -0500382void API minijail_namespace_vfs(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400383{
384 j->flags.vfs = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400385}
386
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700387void API minijail_namespace_enter_vfs(struct minijail *j, const char *ns_path)
388{
Ricky Zhoubce609d2016-03-02 21:47:56 -0800389 int ns_fd = open(ns_path, O_RDONLY | O_CLOEXEC);
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700390 if (ns_fd < 0) {
391 pdie("failed to open namespace '%s'", ns_path);
392 }
393 j->mountns_fd = ns_fd;
394 j->flags.enter_vfs = 1;
395}
396
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800397void API minijail_skip_remount_private(struct minijail *j)
398{
399 j->flags.skip_remount_private = 1;
400}
401
Will Drewry6ac91122011-10-21 16:38:58 -0500402void API minijail_namespace_pids(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400403{
Elly Jonese58176c2012-01-23 11:46:17 -0500404 j->flags.vfs = 1;
Dylan Reid791f5772015-09-14 20:02:42 -0700405 j->flags.remount_proc_ro = 1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400406 j->flags.pids = 1;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800407 j->flags.do_init = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400408}
409
Dylan Reidf7942472015-11-18 17:55:26 -0800410void API minijail_namespace_ipc(struct minijail *j)
411{
412 j->flags.ipc = 1;
413}
414
Elly Fong-Jones6c086302013-03-20 17:15:28 -0400415void API minijail_namespace_net(struct minijail *j)
416{
417 j->flags.net = 1;
418}
419
Dylan Reid1102f5a2015-09-15 11:52:20 -0700420void API minijail_namespace_enter_net(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);
Dylan Reid1102f5a2015-09-15 11:52:20 -0700423 if (ns_fd < 0) {
424 pdie("failed to open namespace '%s'", ns_path);
425 }
426 j->netns_fd = ns_fd;
427 j->flags.enter_net = 1;
428}
429
Dylan Reid4cbc2a52016-06-17 19:06:07 -0700430void API minijail_namespace_cgroups(struct minijail *j)
431{
432 j->flags.ns_cgroups = 1;
433}
434
Dylan Reid791f5772015-09-14 20:02:42 -0700435void API minijail_remount_proc_readonly(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400436{
437 j->flags.vfs = 1;
Dylan Reid791f5772015-09-14 20:02:42 -0700438 j->flags.remount_proc_ro = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400439}
440
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800441void API minijail_namespace_user(struct minijail *j)
442{
443 j->flags.userns = 1;
444}
445
446int API minijail_uidmap(struct minijail *j, const char *uidmap)
447{
448 j->uidmap = strdup(uidmap);
449 if (!j->uidmap)
450 return -ENOMEM;
Yu-Hsi Chiang1912c5b2015-08-31 18:59:49 +0800451 char *ch;
452 for (ch = j->uidmap; *ch; ch++) {
453 if (*ch == ',')
454 *ch = '\n';
455 }
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800456 return 0;
457}
458
459int API minijail_gidmap(struct minijail *j, const char *gidmap)
460{
461 j->gidmap = strdup(gidmap);
462 if (!j->gidmap)
463 return -ENOMEM;
Yu-Hsi Chiang1912c5b2015-08-31 18:59:49 +0800464 char *ch;
465 for (ch = j->gidmap; *ch; ch++) {
466 if (*ch == ',')
467 *ch = '\n';
468 }
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800469 return 0;
470}
471
Will Drewry6ac91122011-10-21 16:38:58 -0500472void API minijail_inherit_usergroups(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400473{
474 j->flags.usergroups = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400475}
476
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800477void API minijail_run_as_init(struct minijail *j)
478{
479 /*
480 * Since the jailed program will become 'init' in the new PID namespace,
481 * Minijail does not need to fork an 'init' process.
482 */
483 j->flags.do_init = 0;
484}
485
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700486int API minijail_enter_chroot(struct minijail *j, const char *dir)
487{
Elly Jones51a5b6c2011-10-12 19:09:26 -0400488 if (j->chrootdir)
489 return -EINVAL;
490 j->chrootdir = strdup(dir);
491 if (!j->chrootdir)
492 return -ENOMEM;
493 j->flags.chroot = 1;
494 return 0;
495}
496
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +0800497int API minijail_enter_pivot_root(struct minijail *j, const char *dir)
498{
499 if (j->chrootdir)
500 return -EINVAL;
501 j->chrootdir = strdup(dir);
502 if (!j->chrootdir)
503 return -ENOMEM;
504 j->flags.pivot_root = 1;
505 return 0;
506}
507
Dylan Reida14e08d2015-10-22 21:05:29 -0700508char API *minijail_get_original_path(struct minijail *j,
509 const char *path_inside_chroot)
510{
Dylan Reid648b2202015-10-23 00:50:00 -0700511 struct mountpoint *b;
Dylan Reida14e08d2015-10-22 21:05:29 -0700512
Dylan Reid648b2202015-10-23 00:50:00 -0700513 b = j->mounts_head;
Dylan Reida14e08d2015-10-22 21:05:29 -0700514 while (b) {
515 /*
516 * If |path_inside_chroot| is the exact destination of a
Dylan Reid648b2202015-10-23 00:50:00 -0700517 * mount, then the original path is exactly the source of
518 * the mount.
Dylan Reida14e08d2015-10-22 21:05:29 -0700519 * for example: "-b /some/path/exe,/chroot/path/exe"
Dylan Reid648b2202015-10-23 00:50:00 -0700520 * mount source = /some/path/exe, mount dest =
521 * /chroot/path/exe Then when getting the original path of
522 * "/chroot/path/exe", the source of that mount,
523 * "/some/path/exe" is what should be returned.
Dylan Reida14e08d2015-10-22 21:05:29 -0700524 */
525 if (!strcmp(b->dest, path_inside_chroot))
526 return strdup(b->src);
527
528 /*
529 * If |path_inside_chroot| is within the destination path of a
Dylan Reid648b2202015-10-23 00:50:00 -0700530 * mount, take the suffix of the chroot path relative to the
531 * mount destination path, and append it to the mount source
532 * path.
Dylan Reida14e08d2015-10-22 21:05:29 -0700533 */
534 if (!strncmp(b->dest, path_inside_chroot, strlen(b->dest))) {
535 const char *relative_path =
536 path_inside_chroot + strlen(b->dest);
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400537 return path_join(b->src, relative_path);
Dylan Reida14e08d2015-10-22 21:05:29 -0700538 }
539 b = b->next;
540 }
541
542 /* If there is a chroot path, append |path_inside_chroot| to that. */
543 if (j->chrootdir)
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400544 return path_join(j->chrootdir, path_inside_chroot);
Dylan Reida14e08d2015-10-22 21:05:29 -0700545
546 /* No chroot, so the path outside is the same as it is inside. */
547 return strdup(path_inside_chroot);
Dylan Reid08946cc2015-09-16 19:10:57 -0700548}
549
Lee Campbell11af0622014-05-22 12:36:04 -0700550void API minijail_mount_tmp(struct minijail *j)
551{
552 j->flags.mount_tmp = 1;
553}
554
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800555int API minijail_write_pid_file(struct minijail *j, const char *path)
556{
557 j->pid_file_path = strdup(path);
558 if (!j->pid_file_path)
559 return -ENOMEM;
560 j->flags.pid_file = 1;
561 return 0;
562}
563
Dylan Reid605ce7f2016-01-19 19:21:00 -0800564int API minijail_add_to_cgroup(struct minijail *j, const char *path)
565{
566 if (j->cgroup_count >= MAX_CGROUPS)
567 return -ENOMEM;
568 j->cgroups[j->cgroup_count] = strdup(path);
569 if (!j->cgroups[j->cgroup_count])
570 return -ENOMEM;
571 j->cgroup_count++;
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800572 j->flags.cgroups = 1;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800573 return 0;
574}
575
Dylan Reid81e23972016-05-18 14:06:35 -0700576int API minijail_mount_with_data(struct minijail *j, const char *src,
577 const char *dest, const char *type,
578 unsigned long flags, const char *data)
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700579{
Dylan Reid648b2202015-10-23 00:50:00 -0700580 struct mountpoint *m;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400581
582 if (*dest != '/')
583 return -EINVAL;
Dylan Reid648b2202015-10-23 00:50:00 -0700584 m = calloc(1, sizeof(*m));
585 if (!m)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400586 return -ENOMEM;
Dylan Reid648b2202015-10-23 00:50:00 -0700587 m->dest = strdup(dest);
588 if (!m->dest)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400589 goto error;
Dylan Reid648b2202015-10-23 00:50:00 -0700590 m->src = strdup(src);
591 if (!m->src)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400592 goto error;
Dylan Reid648b2202015-10-23 00:50:00 -0700593 m->type = strdup(type);
594 if (!m->type)
595 goto error;
Dylan Reid81e23972016-05-18 14:06:35 -0700596 if (data) {
597 m->data = strdup(data);
598 if (!m->data)
599 goto error;
600 m->has_data = 1;
601 }
Dylan Reid648b2202015-10-23 00:50:00 -0700602 m->flags = flags;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400603
Jorge Lucangeli Obes6c755d22016-01-28 15:24:40 -0800604 info("mount %s -> %s type '%s'", src, dest, type);
Elly Jones51a5b6c2011-10-12 19:09:26 -0400605
Elly Jonesdd3e8512012-01-23 15:13:38 -0500606 /*
Dylan Reid648b2202015-10-23 00:50:00 -0700607 * Force vfs namespacing so the mounts don't leak out into the
Elly Jones51a5b6c2011-10-12 19:09:26 -0400608 * containing vfs namespace.
609 */
610 minijail_namespace_vfs(j);
611
Dylan Reid648b2202015-10-23 00:50:00 -0700612 if (j->mounts_tail)
613 j->mounts_tail->next = m;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400614 else
Dylan Reid648b2202015-10-23 00:50:00 -0700615 j->mounts_head = m;
616 j->mounts_tail = m;
617 j->mounts_count++;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400618
619 return 0;
620
621error:
Dylan Reid81e23972016-05-18 14:06:35 -0700622 free(m->type);
Dylan Reid648b2202015-10-23 00:50:00 -0700623 free(m->src);
624 free(m->dest);
625 free(m);
Elly Jones51a5b6c2011-10-12 19:09:26 -0400626 return -ENOMEM;
627}
628
Dylan Reid81e23972016-05-18 14:06:35 -0700629int API minijail_mount(struct minijail *j, const char *src, const char *dest,
630 const char *type, unsigned long flags)
631{
632 return minijail_mount_with_data(j, src, dest, type, flags, NULL);
633}
634
Dylan Reid648b2202015-10-23 00:50:00 -0700635int API minijail_bind(struct minijail *j, const char *src, const char *dest,
636 int writeable)
637{
638 unsigned long flags = MS_BIND;
639
640 if (!writeable)
641 flags |= MS_RDONLY;
642
643 return minijail_mount(j, src, dest, "", flags);
644}
645
Will Drewry6ac91122011-10-21 16:38:58 -0500646void API minijail_parse_seccomp_filters(struct minijail *j, const char *path)
Elly Jonese1749eb2011-10-07 13:54:59 -0400647{
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -0700648 if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, NULL)) {
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400649 if ((errno == EINVAL) && seccomp_can_softfail()) {
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -0800650 warn("not loading seccomp filter,"
651 " seccomp not supported");
Jeff Vander Stoep2885bef2016-01-11 15:22:42 -0800652 j->flags.seccomp_filter = 0;
653 j->flags.log_seccomp_filter = 0;
654 j->filter_len = 0;
655 j->filter_prog = NULL;
656 j->flags.no_new_privs = 0;
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -0700657 }
658 }
Elly Jonese1749eb2011-10-07 13:54:59 -0400659 FILE *file = fopen(path, "r");
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800660 if (!file) {
Jorge Lucangeli Obes224e4272012-08-02 14:31:39 -0700661 pdie("failed to open seccomp filter file '%s'", path);
Elly Jonese1749eb2011-10-07 13:54:59 -0400662 }
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800663
664 struct sock_fprog *fprog = malloc(sizeof(struct sock_fprog));
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700665 if (compile_filter(file, fprog, j->flags.log_seccomp_filter)) {
666 die("failed to compile seccomp filter BPF program in '%s'",
667 path);
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800668 }
669
670 j->filter_len = fprog->len;
671 j->filter_prog = fprog;
672
Elly Jonese1749eb2011-10-07 13:54:59 -0400673 fclose(file);
Will Drewry32ac9f52011-08-18 21:36:27 -0500674}
675
Andrew Brestickereac28942015-11-11 16:04:46 -0800676int API minijail_use_alt_syscall(struct minijail *j, const char *table)
677{
678 j->alt_syscall_table = strdup(table);
679 if (!j->alt_syscall_table)
680 return -ENOMEM;
681 j->flags.alt_syscall = 1;
682 return 0;
683}
684
Will Drewryf89aef52011-09-16 16:48:57 -0500685struct marshal_state {
Elly Jonese1749eb2011-10-07 13:54:59 -0400686 size_t available;
687 size_t total;
688 char *buf;
Will Drewryf89aef52011-09-16 16:48:57 -0500689};
690
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800691void marshal_state_init(struct marshal_state *state, char *buf,
692 size_t available)
Elly Jonese1749eb2011-10-07 13:54:59 -0400693{
694 state->available = available;
695 state->buf = buf;
696 state->total = 0;
Will Drewryf89aef52011-09-16 16:48:57 -0500697}
698
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800699void marshal_append(struct marshal_state *state, void *src, size_t length)
Elly Jonese1749eb2011-10-07 13:54:59 -0400700{
701 size_t copy_len = MIN(state->available, length);
Will Drewryf89aef52011-09-16 16:48:57 -0500702
Elly Jonese1749eb2011-10-07 13:54:59 -0400703 /* Up to |available| will be written. */
704 if (copy_len) {
705 memcpy(state->buf, src, copy_len);
706 state->buf += copy_len;
707 state->available -= copy_len;
708 }
709 /* |total| will contain the expected length. */
710 state->total += length;
Will Drewryf89aef52011-09-16 16:48:57 -0500711}
712
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400713void marshal_mount(struct marshal_state *state, const struct mountpoint *m)
Dylan Reid81e23972016-05-18 14:06:35 -0700714{
715 marshal_append(state, m->src, strlen(m->src) + 1);
716 marshal_append(state, m->dest, strlen(m->dest) + 1);
717 marshal_append(state, m->type, strlen(m->type) + 1);
718 marshal_append(state, (char *)&m->has_data, sizeof(m->has_data));
719 if (m->has_data)
720 marshal_append(state, m->data, strlen(m->data) + 1);
721 marshal_append(state, (char *)&m->flags, sizeof(m->flags));
722}
723
Will Drewry6ac91122011-10-21 16:38:58 -0500724void minijail_marshal_helper(struct marshal_state *state,
725 const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400726{
Dylan Reid648b2202015-10-23 00:50:00 -0700727 struct mountpoint *m = NULL;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800728 size_t i;
729
Elly Jonese1749eb2011-10-07 13:54:59 -0400730 marshal_append(state, (char *)j, sizeof(*j));
731 if (j->user)
732 marshal_append(state, j->user, strlen(j->user) + 1);
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800733 if (j->suppl_gid_list) {
734 marshal_append(state, j->suppl_gid_list,
735 j->suppl_gid_count * sizeof(gid_t));
736 }
Elly Jones51a5b6c2011-10-12 19:09:26 -0400737 if (j->chrootdir)
738 marshal_append(state, j->chrootdir, strlen(j->chrootdir) + 1);
Andrew Brestickereac28942015-11-11 16:04:46 -0800739 if (j->alt_syscall_table) {
740 marshal_append(state, j->alt_syscall_table,
741 strlen(j->alt_syscall_table) + 1);
742 }
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800743 if (j->flags.seccomp_filter && j->filter_prog) {
744 struct sock_fprog *fp = j->filter_prog;
745 marshal_append(state, (char *)fp->filter,
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800746 fp->len * sizeof(struct sock_filter));
Elly Jonese1749eb2011-10-07 13:54:59 -0400747 }
Dylan Reid648b2202015-10-23 00:50:00 -0700748 for (m = j->mounts_head; m; m = m->next) {
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400749 marshal_mount(state, m);
Elly Jones51a5b6c2011-10-12 19:09:26 -0400750 }
Dylan Reid605ce7f2016-01-19 19:21:00 -0800751 for (i = 0; i < j->cgroup_count; ++i)
752 marshal_append(state, j->cgroups[i], strlen(j->cgroups[i]) + 1);
Will Drewryf89aef52011-09-16 16:48:57 -0500753}
754
Will Drewry6ac91122011-10-21 16:38:58 -0500755size_t API minijail_size(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400756{
757 struct marshal_state state;
758 marshal_state_init(&state, NULL, 0);
759 minijail_marshal_helper(&state, j);
760 return state.total;
Will Drewry2ddaad02011-09-16 11:36:08 -0500761}
762
Elly Jonese1749eb2011-10-07 13:54:59 -0400763int minijail_marshal(const struct minijail *j, char *buf, size_t available)
764{
765 struct marshal_state state;
766 marshal_state_init(&state, buf, available);
767 minijail_marshal_helper(&state, j);
768 return (state.total > available);
Will Drewry2ddaad02011-09-16 11:36:08 -0500769}
770
Elly Jonese1749eb2011-10-07 13:54:59 -0400771int minijail_unmarshal(struct minijail *j, char *serialized, size_t length)
772{
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800773 size_t i;
774 size_t count;
Will Drewrybee7ba72011-10-21 20:47:01 -0500775 int ret = -EINVAL;
776
Elly Jonese1749eb2011-10-07 13:54:59 -0400777 if (length < sizeof(*j))
Will Drewrybee7ba72011-10-21 20:47:01 -0500778 goto out;
Elly Jonese1749eb2011-10-07 13:54:59 -0400779 memcpy((void *)j, serialized, sizeof(*j));
780 serialized += sizeof(*j);
781 length -= sizeof(*j);
Will Drewryf89aef52011-09-16 16:48:57 -0500782
Will Drewrybee7ba72011-10-21 20:47:01 -0500783 /* Potentially stale pointers not used as signals. */
Jorge Lucangeli Obes3b2e6e42016-08-04 12:26:19 -0400784 j->pid_file_path = NULL;
785 j->uidmap = NULL;
786 j->gidmap = NULL;
Dylan Reid648b2202015-10-23 00:50:00 -0700787 j->mounts_head = NULL;
788 j->mounts_tail = NULL;
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800789 j->filter_prog = NULL;
Will Drewrybee7ba72011-10-21 20:47:01 -0500790
Elly Jonese1749eb2011-10-07 13:54:59 -0400791 if (j->user) { /* stale pointer */
Elly Jones51a5b6c2011-10-12 19:09:26 -0400792 char *user = consumestr(&serialized, &length);
793 if (!user)
Will Drewrybee7ba72011-10-21 20:47:01 -0500794 goto clear_pointers;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400795 j->user = strdup(user);
Will Drewrybee7ba72011-10-21 20:47:01 -0500796 if (!j->user)
797 goto clear_pointers;
Elly Jonese1749eb2011-10-07 13:54:59 -0400798 }
Will Drewryf89aef52011-09-16 16:48:57 -0500799
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800800 if (j->suppl_gid_list) { /* stale pointer */
801 if (j->suppl_gid_count > NGROUPS_MAX) {
802 goto bad_gid_list;
803 }
804 size_t gid_list_size = j->suppl_gid_count * sizeof(gid_t);
805 void *gid_list_bytes =
806 consumebytes(gid_list_size, &serialized, &length);
807 if (!gid_list_bytes)
808 goto bad_gid_list;
809
810 j->suppl_gid_list = calloc(j->suppl_gid_count, sizeof(gid_t));
811 if (!j->suppl_gid_list)
812 goto bad_gid_list;
813
814 memcpy(j->suppl_gid_list, gid_list_bytes, gid_list_size);
815 }
816
Elly Jonesa8d1e1b2011-10-21 15:38:00 -0400817 if (j->chrootdir) { /* stale pointer */
818 char *chrootdir = consumestr(&serialized, &length);
819 if (!chrootdir)
Will Drewrybee7ba72011-10-21 20:47:01 -0500820 goto bad_chrootdir;
Elly Jonesa8d1e1b2011-10-21 15:38:00 -0400821 j->chrootdir = strdup(chrootdir);
Will Drewrybee7ba72011-10-21 20:47:01 -0500822 if (!j->chrootdir)
823 goto bad_chrootdir;
Elly Jonesa8d1e1b2011-10-21 15:38:00 -0400824 }
825
Andrew Brestickereac28942015-11-11 16:04:46 -0800826 if (j->alt_syscall_table) { /* stale pointer */
827 char *alt_syscall_table = consumestr(&serialized, &length);
828 if (!alt_syscall_table)
829 goto bad_syscall_table;
830 j->alt_syscall_table = strdup(alt_syscall_table);
831 if (!j->alt_syscall_table)
832 goto bad_syscall_table;
833 }
834
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800835 if (j->flags.seccomp_filter && j->filter_len > 0) {
836 size_t ninstrs = j->filter_len;
837 if (ninstrs > (SIZE_MAX / sizeof(struct sock_filter)) ||
838 ninstrs > USHRT_MAX)
839 goto bad_filters;
840
841 size_t program_len = ninstrs * sizeof(struct sock_filter);
842 void *program = consumebytes(program_len, &serialized, &length);
843 if (!program)
844 goto bad_filters;
845
846 j->filter_prog = malloc(sizeof(struct sock_fprog));
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800847 if (!j->filter_prog)
848 goto bad_filters;
849
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800850 j->filter_prog->len = ninstrs;
851 j->filter_prog->filter = malloc(program_len);
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800852 if (!j->filter_prog->filter)
853 goto bad_filter_prog_instrs;
854
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800855 memcpy(j->filter_prog->filter, program, program_len);
Elly Jonese1749eb2011-10-07 13:54:59 -0400856 }
Elly Jones51a5b6c2011-10-12 19:09:26 -0400857
Dylan Reid648b2202015-10-23 00:50:00 -0700858 count = j->mounts_count;
859 j->mounts_count = 0;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400860 for (i = 0; i < count; ++i) {
Dylan Reid648b2202015-10-23 00:50:00 -0700861 unsigned long *flags;
Dylan Reid81e23972016-05-18 14:06:35 -0700862 int *has_data;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400863 const char *dest;
Dylan Reid648b2202015-10-23 00:50:00 -0700864 const char *type;
Dylan Reid81e23972016-05-18 14:06:35 -0700865 const char *data = NULL;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400866 const char *src = consumestr(&serialized, &length);
867 if (!src)
Dylan Reid648b2202015-10-23 00:50:00 -0700868 goto bad_mounts;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400869 dest = consumestr(&serialized, &length);
870 if (!dest)
Dylan Reid648b2202015-10-23 00:50:00 -0700871 goto bad_mounts;
872 type = consumestr(&serialized, &length);
873 if (!type)
874 goto bad_mounts;
Dylan Reid81e23972016-05-18 14:06:35 -0700875 has_data = consumebytes(sizeof(*has_data), &serialized,
876 &length);
877 if (!has_data)
878 goto bad_mounts;
879 if (*has_data) {
880 data = consumestr(&serialized, &length);
881 if (!data)
882 goto bad_mounts;
883 }
Dylan Reid648b2202015-10-23 00:50:00 -0700884 flags = consumebytes(sizeof(*flags), &serialized, &length);
885 if (!flags)
886 goto bad_mounts;
Dylan Reid81e23972016-05-18 14:06:35 -0700887 if (minijail_mount_with_data(j, src, dest, type, *flags, data))
Dylan Reid648b2202015-10-23 00:50:00 -0700888 goto bad_mounts;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400889 }
890
Dylan Reid605ce7f2016-01-19 19:21:00 -0800891 count = j->cgroup_count;
892 j->cgroup_count = 0;
893 for (i = 0; i < count; ++i) {
894 char *cgroup = consumestr(&serialized, &length);
895 if (!cgroup)
896 goto bad_cgroups;
897 j->cgroups[i] = strdup(cgroup);
898 if (!j->cgroups[i])
899 goto bad_cgroups;
900 ++j->cgroup_count;
901 }
902
Elly Jonese1749eb2011-10-07 13:54:59 -0400903 return 0;
Will Drewrybee7ba72011-10-21 20:47:01 -0500904
Dylan Reid605ce7f2016-01-19 19:21:00 -0800905bad_cgroups:
906 while (j->mounts_head) {
907 struct mountpoint *m = j->mounts_head;
908 j->mounts_head = j->mounts_head->next;
Dylan Reid81e23972016-05-18 14:06:35 -0700909 free(m->data);
Dylan Reid605ce7f2016-01-19 19:21:00 -0800910 free(m->type);
911 free(m->dest);
912 free(m->src);
913 free(m);
914 }
915 for (i = 0; i < j->cgroup_count; ++i)
916 free(j->cgroups[i]);
Dylan Reid648b2202015-10-23 00:50:00 -0700917bad_mounts:
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800918 if (j->flags.seccomp_filter && j->filter_len > 0) {
919 free(j->filter_prog->filter);
920 free(j->filter_prog);
921 }
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800922bad_filter_prog_instrs:
923 if (j->filter_prog)
924 free(j->filter_prog);
Will Drewrybee7ba72011-10-21 20:47:01 -0500925bad_filters:
Andrew Brestickereac28942015-11-11 16:04:46 -0800926 if (j->alt_syscall_table)
927 free(j->alt_syscall_table);
928bad_syscall_table:
Will Drewrybee7ba72011-10-21 20:47:01 -0500929 if (j->chrootdir)
930 free(j->chrootdir);
931bad_chrootdir:
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800932 if (j->suppl_gid_list)
933 free(j->suppl_gid_list);
934bad_gid_list:
Will Drewrybee7ba72011-10-21 20:47:01 -0500935 if (j->user)
936 free(j->user);
937clear_pointers:
938 j->user = NULL;
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800939 j->suppl_gid_list = NULL;
Will Drewrybee7ba72011-10-21 20:47:01 -0500940 j->chrootdir = NULL;
Andrew Brestickereac28942015-11-11 16:04:46 -0800941 j->alt_syscall_table = NULL;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800942 j->cgroup_count = 0;
Will Drewrybee7ba72011-10-21 20:47:01 -0500943out:
944 return ret;
Will Drewry2ddaad02011-09-16 11:36:08 -0500945}
946
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -0800947/*
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400948 * setup_mount_destination: Ensures the mount target exists.
949 * Creates it if needed and possible.
Dylan Reideec77962016-06-30 19:35:10 -0700950 */
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -0400951static int setup_mount_destination(const char *source, const char *dest,
952 uid_t uid, uid_t gid)
Dylan Reideec77962016-06-30 19:35:10 -0700953{
954 int rc;
955 struct stat st_buf;
956
957 rc = stat(dest, &st_buf);
958 if (rc == 0) /* destination exists */
959 return 0;
960
961 /*
962 * Try to create the destination.
963 * Either make a directory or touch a file depending on the source type.
964 * If the source doesn't exist, assume it is a filesystem type such as
965 * "tmpfs" and create a directory to mount it on.
966 */
967 rc = stat(source, &st_buf);
968 if (rc || S_ISDIR(st_buf.st_mode) || S_ISBLK(st_buf.st_mode)) {
969 if (mkdir(dest, 0700))
970 return -errno;
971 } else {
972 int fd = open(dest, O_RDWR | O_CREAT, 0700);
973 if (fd < 0)
974 return -errno;
975 close(fd);
976 }
977 return chown(dest, uid, gid);
978}
979
980/*
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -0800981 * mount_one: Applies mounts from @m for @j, recursing as needed.
Dylan Reid648b2202015-10-23 00:50:00 -0700982 * @j Minijail these mounts are for
983 * @m Head of list of mounts
Elly Jones51a5b6c2011-10-12 19:09:26 -0400984 *
985 * Returns 0 for success.
986 */
Dylan Reid648b2202015-10-23 00:50:00 -0700987static int mount_one(const struct minijail *j, struct mountpoint *m)
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700988{
Dylan Reid648b2202015-10-23 00:50:00 -0700989 int ret;
990 char *dest;
991 int remount_ro = 0;
992
Jorge Lucangeli Obes2b12ba42016-01-26 10:37:51 -0800993 /* |dest| has a leading "/". */
Dylan Reid648b2202015-10-23 00:50:00 -0700994 if (asprintf(&dest, "%s%s", j->chrootdir, m->dest) < 0)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400995 return -ENOMEM;
Dylan Reid648b2202015-10-23 00:50:00 -0700996
Dylan Reideec77962016-06-30 19:35:10 -0700997 if (setup_mount_destination(m->src, dest, j->uid, j->gid))
998 pdie("creating mount target '%s' failed", dest);
999
Dylan Reid648b2202015-10-23 00:50:00 -07001000 /*
Jorge Lucangeli Obes2b12ba42016-01-26 10:37:51 -08001001 * R/O bind mounts have to be remounted since 'bind' and 'ro'
1002 * can't both be specified in the original bind mount.
1003 * Remount R/O after the initial mount.
Dylan Reid648b2202015-10-23 00:50:00 -07001004 */
1005 if ((m->flags & MS_BIND) && (m->flags & MS_RDONLY)) {
1006 remount_ro = 1;
1007 m->flags &= ~MS_RDONLY;
Elly Jonesa1059632011-12-15 15:17:07 -05001008 }
Dylan Reid648b2202015-10-23 00:50:00 -07001009
Dylan Reid81e23972016-05-18 14:06:35 -07001010 ret = mount(m->src, dest, m->type, m->flags, m->data);
Dylan Reid648b2202015-10-23 00:50:00 -07001011 if (ret)
1012 pdie("mount: %s -> %s", m->src, dest);
1013
1014 if (remount_ro) {
1015 m->flags |= MS_RDONLY;
1016 ret = mount(m->src, dest, NULL,
Dylan Reid81e23972016-05-18 14:06:35 -07001017 m->flags | MS_REMOUNT, m->data);
Dylan Reid648b2202015-10-23 00:50:00 -07001018 if (ret)
1019 pdie("bind ro: %s -> %s", m->src, dest);
1020 }
1021
Elly Jones51a5b6c2011-10-12 19:09:26 -04001022 free(dest);
Dylan Reid648b2202015-10-23 00:50:00 -07001023 if (m->next)
1024 return mount_one(j, m->next);
Elly Jones51a5b6c2011-10-12 19:09:26 -04001025 return ret;
1026}
1027
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001028static int enter_chroot(const struct minijail *j)
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -07001029{
Elly Jones51a5b6c2011-10-12 19:09:26 -04001030 int ret;
Dylan Reid648b2202015-10-23 00:50:00 -07001031
1032 if (j->mounts_head && (ret = mount_one(j, j->mounts_head)))
Elly Jones51a5b6c2011-10-12 19:09:26 -04001033 return ret;
1034
1035 if (chroot(j->chrootdir))
1036 return -errno;
1037
1038 if (chdir("/"))
1039 return -errno;
1040
1041 return 0;
1042}
1043
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001044static int enter_pivot_root(const struct minijail *j)
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001045{
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001046 int ret, oldroot, newroot;
Dylan Reid648b2202015-10-23 00:50:00 -07001047
1048 if (j->mounts_head && (ret = mount_one(j, j->mounts_head)))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001049 return ret;
1050
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001051 /*
1052 * Keep the fd for both old and new root.
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001053 * It will be used in fchdir(2) later.
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001054 */
Ricky Zhoubce609d2016-03-02 21:47:56 -08001055 oldroot = open("/", O_DIRECTORY | O_RDONLY | O_CLOEXEC);
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001056 if (oldroot < 0)
1057 pdie("failed to open / for fchdir");
Ricky Zhoubce609d2016-03-02 21:47:56 -08001058 newroot = open(j->chrootdir, O_DIRECTORY | O_RDONLY | O_CLOEXEC);
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001059 if (newroot < 0)
1060 pdie("failed to open %s for fchdir", j->chrootdir);
1061
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001062 /*
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001063 * To ensure j->chrootdir is the root of a filesystem,
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001064 * do a self bind mount.
1065 */
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001066 if (mount(j->chrootdir, j->chrootdir, "bind", MS_BIND | MS_REC, ""))
1067 pdie("failed to bind mount '%s'", j->chrootdir);
1068 if (chdir(j->chrootdir))
1069 return -errno;
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001070 if (syscall(SYS_pivot_root, ".", "."))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001071 pdie("pivot_root");
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001072
1073 /*
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001074 * Now the old root is mounted on top of the new root. Use fchdir(2) to
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001075 * change to the old root and unmount it.
1076 */
1077 if (fchdir(oldroot))
1078 pdie("failed to fchdir to old /");
Hidehiko Abe097b7192016-03-16 18:00:36 +09001079
1080 /*
Jorge Lucangeli Obesdf7fab12016-06-01 17:15:31 -07001081 * If j->flags.skip_remount_private was enabled for minijail_enter(),
1082 * there could be a shared mount point under |oldroot|. In that case,
1083 * mounts under this shared mount point will be unmounted below, and
1084 * this unmounting will propagate to the original mount namespace
1085 * (because the mount point is shared). To prevent this unexpected
1086 * unmounting, remove these mounts from their peer groups by recursively
1087 * remounting them as MS_PRIVATE.
Hidehiko Abe097b7192016-03-16 18:00:36 +09001088 */
1089 if (mount(NULL, ".", NULL, MS_REC | MS_PRIVATE, NULL))
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001090 pdie("failed to mount(/, private) before umount(/)");
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001091 /* The old root might be busy, so use lazy unmount. */
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001092 if (umount2(".", MNT_DETACH))
1093 pdie("umount(/)");
1094 /* Change back to the new root. */
1095 if (fchdir(newroot))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001096 return -errno;
Ricky Zhoubce609d2016-03-02 21:47:56 -08001097 if (close(oldroot))
1098 return -errno;
1099 if (close(newroot))
1100 return -errno;
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001101 if (chroot("/"))
1102 return -errno;
Jorge Lucangeli Obes46a55092015-10-12 15:31:59 -07001103 /* Set correct CWD for getcwd(3). */
1104 if (chdir("/"))
1105 return -errno;
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001106
1107 return 0;
1108}
1109
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001110static int mount_tmp(void)
Lee Campbell11af0622014-05-22 12:36:04 -07001111{
Jorge Lucangeli Obes3901da62015-03-03 13:55:11 -08001112 return mount("none", "/tmp", "tmpfs", 0, "size=64M,mode=777");
Lee Campbell11af0622014-05-22 12:36:04 -07001113}
1114
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001115static int remount_proc_readonly(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001116{
1117 const char *kProcPath = "/proc";
1118 const unsigned int kSafeFlags = MS_NODEV | MS_NOEXEC | MS_NOSUID;
Elly Jonesdd3e8512012-01-23 15:13:38 -05001119 /*
1120 * Right now, we're holding a reference to our parent's old mount of
Elly Jonese1749eb2011-10-07 13:54:59 -04001121 * /proc in our namespace, which means using MS_REMOUNT here would
1122 * mutate our parent's mount as well, even though we're in a VFS
Jorge Lucangeli Obesdf7fab12016-06-01 17:15:31 -07001123 * namespace (!). Instead, remove their mount from our namespace lazily
1124 * (MNT_DETACH) and make our own.
Elly Jonese1749eb2011-10-07 13:54:59 -04001125 */
Jorge Lucangeli Obesdf7fab12016-06-01 17:15:31 -07001126 if (umount2(kProcPath, MNT_DETACH)) {
1127 /*
1128 * If we are in a new user namespace, umount(2) will fail.
1129 * See http://man7.org/linux/man-pages/man7/user_namespaces.7.html
1130 */
1131 if (j->flags.userns) {
1132 info("umount(/proc, MNT_DETACH) failed, "
1133 "this is expected when using user namespaces");
1134 } else {
1135 return -errno;
1136 }
1137 }
Elly Jonese1749eb2011-10-07 13:54:59 -04001138 if (mount("", kProcPath, "proc", kSafeFlags | MS_RDONLY, ""))
1139 return -errno;
1140 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -04001141}
1142
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001143static void kill_child_and_die(const struct minijail *j, const char *msg)
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001144{
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001145 kill(j->initpid, SIGKILL);
1146 die("%s", msg);
Dylan Reid605ce7f2016-01-19 19:21:00 -08001147}
1148
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001149static void write_pid_file_or_die(const struct minijail *j)
Dylan Reid605ce7f2016-01-19 19:21:00 -08001150{
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001151 if (!write_pid_to_path(j->initpid, j->pid_file_path))
1152 kill_child_and_die(j, "failed to write pid file");
Dylan Reid605ce7f2016-01-19 19:21:00 -08001153}
1154
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001155static void add_to_cgroups_or_die(const struct minijail *j)
Dylan Reid605ce7f2016-01-19 19:21:00 -08001156{
1157 size_t i;
1158
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001159 for (i = 0; i < j->cgroup_count; ++i) {
1160 if (!write_pid_to_path(j->initpid, j->cgroups[i]))
1161 kill_child_and_die(j, "failed to add to cgroups");
1162 }
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001163}
1164
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001165static void write_ugid_maps_or_die(const struct minijail *j)
1166{
1167 if (j->uidmap && write_proc_file(j->initpid, j->uidmap, "uid_map") != 0)
1168 kill_child_and_die(j, "failed to write uid_map");
1169 if (j->gidmap && write_proc_file(j->initpid, j->gidmap, "gid_map") != 0)
1170 kill_child_and_die(j, "failed to write gid_map");
1171}
1172
1173static void enter_user_namespace(const struct minijail *j)
1174{
1175 if (j->uidmap && setresuid(0, 0, 0))
1176 pdie("user_namespaces: setresuid(0, 0, 0) failed");
1177 if (j->gidmap && setresgid(0, 0, 0))
1178 pdie("user_namespaces: setresgid(0, 0, 0) failed");
1179}
1180
1181static void parent_setup_complete(int *pipe_fds)
1182{
1183 close(pipe_fds[0]);
1184 close(pipe_fds[1]);
1185}
1186
1187/*
1188 * wait_for_parent_setup: Called by the child process to wait for any
1189 * further parent-side setup to complete before continuing.
1190 */
1191static void wait_for_parent_setup(int *pipe_fds)
1192{
1193 char buf;
1194
1195 close(pipe_fds[1]);
1196
1197 /* Wait for parent to complete setup and close the pipe. */
1198 if (read(pipe_fds[0], &buf, 1) != 0)
1199 die("failed to sync with parent");
1200 close(pipe_fds[0]);
1201}
1202
1203static void drop_ugid(const struct minijail *j)
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001204{
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -08001205 if (j->flags.usergroups && j->flags.suppl_gids) {
1206 die("tried to inherit *and* set supplementary groups;"
1207 " can only do one");
1208 }
1209
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001210 if (j->flags.usergroups) {
1211 if (initgroups(j->user, j->usergid))
1212 pdie("initgroups");
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -08001213 } else if (j->flags.suppl_gids) {
1214 if (setgroups(j->suppl_gid_count, j->suppl_gid_list)) {
1215 pdie("setgroups");
1216 }
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001217 } else {
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001218 /*
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -08001219 * Only attempt to clear supplementary groups if we are changing
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001220 * users.
1221 */
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001222 if ((j->uid || j->gid) && setgroups(0, NULL))
1223 pdie("setgroups");
1224 }
1225
1226 if (j->flags.gid && setresgid(j->gid, j->gid, j->gid))
1227 pdie("setresgid");
1228
1229 if (j->flags.uid && setresuid(j->uid, j->uid, j->uid))
1230 pdie("setresuid");
1231}
1232
Mike Frysinger3adfef72013-05-09 17:19:08 -04001233/*
1234 * We specifically do not use cap_valid() as that only tells us the last
1235 * valid cap we were *compiled* against (i.e. what the version of kernel
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001236 * headers says). If we run on a different kernel version, then it's not
Mike Frysinger3adfef72013-05-09 17:19:08 -04001237 * uncommon for that to be less (if an older kernel) or more (if a newer
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001238 * kernel).
1239 * Normally, we suck up the answer via /proc. On Android, not all processes are
1240 * guaranteed to be able to access '/proc/sys/kernel/cap_last_cap' so we
1241 * programmatically find the value by calling prctl(PR_CAPBSET_READ).
Mike Frysinger3adfef72013-05-09 17:19:08 -04001242 */
Jorge Lucangeli Obes20342742015-10-27 11:39:59 -07001243static unsigned int get_last_valid_cap()
Mike Frysinger3adfef72013-05-09 17:19:08 -04001244{
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001245 unsigned int last_valid_cap = 0;
1246 if (is_android()) {
1247 for (; prctl(PR_CAPBSET_READ, last_valid_cap, 0, 0, 0) >= 0;
1248 ++last_valid_cap);
Mike Frysinger3adfef72013-05-09 17:19:08 -04001249
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001250 /* |last_valid_cap| will be the first failing value. */
1251 if (last_valid_cap > 0) {
1252 last_valid_cap--;
1253 }
1254 } else {
1255 const char cap_file[] = "/proc/sys/kernel/cap_last_cap";
1256 FILE *fp = fopen(cap_file, "re");
1257 if (fscanf(fp, "%u", &last_valid_cap) != 1)
1258 pdie("fscanf(%s)", cap_file);
1259 fclose(fp);
1260 }
Dylan Reidf682d472015-09-17 21:39:07 -07001261 return last_valid_cap;
Mike Frysinger3adfef72013-05-09 17:19:08 -04001262}
1263
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001264static void drop_capbset(uint64_t keep_mask, unsigned int last_valid_cap)
1265{
1266 const uint64_t one = 1;
1267 unsigned int i;
1268 for (i = 0; i < sizeof(keep_mask) * 8 && i <= last_valid_cap; ++i) {
1269 if (keep_mask & (one << i))
1270 continue;
1271 if (prctl(PR_CAPBSET_DROP, i))
1272 pdie("could not drop capability from bounding set");
1273 }
1274}
1275
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001276static void drop_caps(const struct minijail *j, unsigned int last_valid_cap)
Elly Jonese1749eb2011-10-07 13:54:59 -04001277{
Jorge Lucangeli Obes7ea269e2016-02-26 22:07:09 -08001278 if (!j->flags.use_caps)
1279 return;
1280
Elly Jonese1749eb2011-10-07 13:54:59 -04001281 cap_t caps = cap_get_proc();
Kees Cook323878a2013-02-05 15:35:24 -08001282 cap_value_t flag[1];
Kees Cooke5609ac2013-02-06 14:12:41 -08001283 const uint64_t one = 1;
Elly Jonese1749eb2011-10-07 13:54:59 -04001284 unsigned int i;
1285 if (!caps)
1286 die("can't get process caps");
1287 if (cap_clear_flag(caps, CAP_INHERITABLE))
1288 die("can't clear inheritable caps");
1289 if (cap_clear_flag(caps, CAP_EFFECTIVE))
1290 die("can't clear effective caps");
1291 if (cap_clear_flag(caps, CAP_PERMITTED))
1292 die("can't clear permitted caps");
Dylan Reidf682d472015-09-17 21:39:07 -07001293 for (i = 0; i < sizeof(j->caps) * 8 && i <= last_valid_cap; ++i) {
Kees Cook323878a2013-02-05 15:35:24 -08001294 /* Keep CAP_SETPCAP for dropping bounding set bits. */
Kees Cooke5609ac2013-02-06 14:12:41 -08001295 if (i != CAP_SETPCAP && !(j->caps & (one << i)))
Elly Jonese1749eb2011-10-07 13:54:59 -04001296 continue;
Kees Cook323878a2013-02-05 15:35:24 -08001297 flag[0] = i;
1298 if (cap_set_flag(caps, CAP_EFFECTIVE, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04001299 die("can't add effective cap");
Kees Cook323878a2013-02-05 15:35:24 -08001300 if (cap_set_flag(caps, CAP_PERMITTED, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04001301 die("can't add permitted cap");
Kees Cook323878a2013-02-05 15:35:24 -08001302 if (cap_set_flag(caps, CAP_INHERITABLE, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04001303 die("can't add inheritable cap");
1304 }
1305 if (cap_set_proc(caps))
Kees Cook323878a2013-02-05 15:35:24 -08001306 die("can't apply initial cleaned capset");
1307
1308 /*
1309 * Instead of dropping bounding set first, do it here in case
1310 * the caller had a more permissive bounding set which could
1311 * have been used above to raise a capability that wasn't already
1312 * present. This requires CAP_SETPCAP, so we raised/kept it above.
1313 */
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001314 drop_capbset(j->caps, last_valid_cap);
Kees Cook323878a2013-02-05 15:35:24 -08001315
1316 /* If CAP_SETPCAP wasn't specifically requested, now we remove it. */
Kees Cooke5609ac2013-02-06 14:12:41 -08001317 if ((j->caps & (one << CAP_SETPCAP)) == 0) {
Kees Cook323878a2013-02-05 15:35:24 -08001318 flag[0] = CAP_SETPCAP;
1319 if (cap_set_flag(caps, CAP_EFFECTIVE, 1, flag, CAP_CLEAR))
1320 die("can't clear effective cap");
1321 if (cap_set_flag(caps, CAP_PERMITTED, 1, flag, CAP_CLEAR))
1322 die("can't clear permitted cap");
1323 if (cap_set_flag(caps, CAP_INHERITABLE, 1, flag, CAP_CLEAR))
1324 die("can't clear inheritable cap");
1325 }
1326
1327 if (cap_set_proc(caps))
1328 die("can't apply final cleaned capset");
1329
1330 cap_free(caps);
Elly Jonescd7a9042011-07-22 13:56:51 -04001331}
1332
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001333static void set_seccomp_filter(const struct minijail *j)
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001334{
1335 /*
1336 * Set no_new_privs. See </kernel/seccomp.c> and </kernel/sys.c>
1337 * in the kernel source tree for an explanation of the parameters.
1338 */
1339 if (j->flags.no_new_privs) {
1340 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0))
1341 pdie("prctl(PR_SET_NO_NEW_PRIVS)");
1342 }
1343
1344 /*
Jorge Lucangeli Obes2413f372016-04-06 18:43:10 -07001345 * Code running with ASan
1346 * (https://github.com/google/sanitizers/wiki/AddressSanitizer)
1347 * will make system calls not included in the syscall filter policy,
1348 * which will likely crash the program. Skip setting seccomp filter in
1349 * that case.
1350 * 'running_with_asan()' has no inputs and is completely defined at
1351 * build time, so this cannot be used by an attacker to skip setting
1352 * seccomp filter.
1353 */
1354 if (j->flags.seccomp_filter && running_with_asan()) {
1355 warn("running with ASan, not setting seccomp filter");
1356 return;
1357 }
1358
1359 /*
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001360 * If we're logging seccomp filter failures,
1361 * install the SIGSYS handler first.
1362 */
1363 if (j->flags.seccomp_filter && j->flags.log_seccomp_filter) {
1364 if (install_sigsys_handler())
1365 pdie("install SIGSYS handler");
1366 warn("logging seccomp filter failures");
1367 }
1368
1369 /*
1370 * Install the syscall filter.
1371 */
1372 if (j->flags.seccomp_filter) {
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001373 if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER,
1374 j->filter_prog)) {
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -04001375 if ((errno == EINVAL) && seccomp_can_softfail()) {
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001376 warn("seccomp not supported");
1377 return;
1378 }
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001379 pdie("prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER)");
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001380 }
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001381 }
1382}
1383
Will Drewry6ac91122011-10-21 16:38:58 -05001384void API minijail_enter(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001385{
Dylan Reidf682d472015-09-17 21:39:07 -07001386 /*
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08001387 * If we're dropping caps, get the last valid cap from /proc now,
1388 * since /proc can be unmounted before drop_caps() is called.
Dylan Reidf682d472015-09-17 21:39:07 -07001389 */
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08001390 unsigned int last_valid_cap = 0;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001391 if (j->flags.capbset_drop || j->flags.use_caps)
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08001392 last_valid_cap = get_last_valid_cap();
Dylan Reidf682d472015-09-17 21:39:07 -07001393
Elly Jonese1749eb2011-10-07 13:54:59 -04001394 if (j->flags.pids)
1395 die("tried to enter a pid-namespaced jail;"
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -07001396 " try minijail_run()?");
Elly Jonescd7a9042011-07-22 13:56:51 -04001397
Elly Jonese1749eb2011-10-07 13:54:59 -04001398 if (j->flags.usergroups && !j->user)
1399 die("usergroup inheritance without username");
Elly Jonescd7a9042011-07-22 13:56:51 -04001400
Elly Jonesdd3e8512012-01-23 15:13:38 -05001401 /*
1402 * We can't recover from failures if we've dropped privileges partially,
Elly Jonese1749eb2011-10-07 13:54:59 -04001403 * so we don't even try. If any of our operations fail, we abort() the
1404 * entire process.
1405 */
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -07001406 if (j->flags.enter_vfs && setns(j->mountns_fd, CLONE_NEWNS))
1407 pdie("setns(CLONE_NEWNS)");
1408
Jorge Lucangeli Obes805be392015-10-12 15:55:59 -07001409 if (j->flags.vfs) {
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08001410 if (unshare(CLONE_NEWNS))
1411 pdie("unshare(vfs)");
1412 /*
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001413 * Unless asked not to, remount all filesystems as private.
1414 * If they are shared, new bind mounts will creep out of our
1415 * namespace.
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08001416 * https://www.kernel.org/doc/Documentation/filesystems/sharedsubtree.txt
1417 */
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001418 if (!j->flags.skip_remount_private) {
1419 if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL))
1420 pdie("mount(/, private)");
1421 }
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08001422 }
Elly Fong-Jones6c086302013-03-20 17:15:28 -04001423
Dylan Reidf7942472015-11-18 17:55:26 -08001424 if (j->flags.ipc && unshare(CLONE_NEWIPC)) {
1425 pdie("unshare(ipc)");
1426 }
1427
Dylan Reid1102f5a2015-09-15 11:52:20 -07001428 if (j->flags.enter_net) {
1429 if (setns(j->netns_fd, CLONE_NEWNET))
1430 pdie("setns(CLONE_NEWNET)");
1431 } else if (j->flags.net && unshare(CLONE_NEWNET)) {
Elly Fong-Jones6c086302013-03-20 17:15:28 -04001432 pdie("unshare(net)");
Dylan Reid1102f5a2015-09-15 11:52:20 -07001433 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001434
Dylan Reid4cbc2a52016-06-17 19:06:07 -07001435 if (j->flags.ns_cgroups && unshare(CLONE_NEWCGROUP))
1436 pdie("unshare(cgroups)");
1437
Elly Jones51a5b6c2011-10-12 19:09:26 -04001438 if (j->flags.chroot && enter_chroot(j))
1439 pdie("chroot");
1440
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001441 if (j->flags.pivot_root && enter_pivot_root(j))
1442 pdie("pivot_root");
1443
Jorge Lucangeli Obes3901da62015-03-03 13:55:11 -08001444 if (j->flags.mount_tmp && mount_tmp())
Lee Campbell11af0622014-05-22 12:36:04 -07001445 pdie("mount_tmp");
1446
Dylan Reid791f5772015-09-14 20:02:42 -07001447 if (j->flags.remount_proc_ro && remount_proc_readonly(j))
Elly Jonese1749eb2011-10-07 13:54:59 -04001448 pdie("remount");
Elly Jonescd7a9042011-07-22 13:56:51 -04001449
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001450 /*
1451 * If we're only dropping capabilities from the bounding set, but not
1452 * from the thread's (permitted|inheritable|effective) sets, do it now.
1453 */
1454 if (j->flags.capbset_drop) {
1455 drop_capbset(j->cap_bset, last_valid_cap);
1456 }
1457
1458 if (j->flags.use_caps) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05001459 /*
1460 * POSIX capabilities are a bit tricky. If we drop our
Elly Jonese1749eb2011-10-07 13:54:59 -04001461 * capability to change uids, our attempt to use setuid()
1462 * below will fail. Hang on to root caps across setuid(), then
1463 * lock securebits.
1464 */
1465 if (prctl(PR_SET_KEEPCAPS, 1))
1466 pdie("prctl(PR_SET_KEEPCAPS)");
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -07001467
1468 /*
1469 * Kernels 4.3+ define a new securebit
1470 * (SECURE_NO_CAP_AMBIENT_RAISE), so using the SECURE_ALL_BITS
1471 * and SECURE_ALL_LOCKS masks from newer kernel headers will
1472 * return EPERM on older kernels. Detect this, and retry with
1473 * the right mask for older (2.6.26-4.2) kernels.
1474 */
1475 int securebits_ret = prctl(PR_SET_SECUREBITS,
1476 SECURE_ALL_BITS | SECURE_ALL_LOCKS);
1477 if (securebits_ret < 0) {
1478 if (errno == EPERM) {
1479 /* Possibly running on kernel < 4.3. */
1480 securebits_ret = prctl(
1481 PR_SET_SECUREBITS,
1482 OLD_SECURE_ALL_BITS | OLD_SECURE_ALL_LOCKS);
1483 }
1484 }
1485 if (securebits_ret < 0)
Elly Jonese1749eb2011-10-07 13:54:59 -04001486 pdie("prctl(PR_SET_SECUREBITS)");
1487 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001488
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07001489 if (j->flags.no_new_privs) {
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08001490 /*
1491 * If we're setting no_new_privs, we can drop privileges
1492 * before setting seccomp filter. This way filter policies
1493 * don't need to allow privilege-dropping syscalls.
1494 */
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001495 drop_ugid(j);
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08001496 drop_caps(j, last_valid_cap);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001497 set_seccomp_filter(j);
Elly Jonese1749eb2011-10-07 13:54:59 -04001498 } else {
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001499 /*
1500 * If we're not setting no_new_privs,
1501 * we need to set seccomp filter *before* dropping privileges.
1502 * WARNING: this means that filter policies *must* allow
1503 * setgroups()/setresgid()/setresuid() for dropping root and
1504 * capget()/capset()/prctl() for dropping caps.
1505 */
1506 set_seccomp_filter(j);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001507 drop_ugid(j);
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08001508 drop_caps(j, last_valid_cap);
Elly Jonese1749eb2011-10-07 13:54:59 -04001509 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001510
Elly Jonesdd3e8512012-01-23 15:13:38 -05001511 /*
Andrew Brestickereac28942015-11-11 16:04:46 -08001512 * Select the specified alternate syscall table. The table must not
1513 * block prctl(2) if we're using seccomp as well.
1514 */
1515 if (j->flags.alt_syscall) {
1516 if (prctl(PR_ALT_SYSCALL, 1, j->alt_syscall_table))
1517 pdie("prctl(PR_ALT_SYSCALL)");
1518 }
1519
1520 /*
Elly Jonesdd3e8512012-01-23 15:13:38 -05001521 * seccomp has to come last since it cuts off all the other
Elly Jonese1749eb2011-10-07 13:54:59 -04001522 * privilege-dropping syscalls :)
1523 */
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001524 if (j->flags.seccomp && prctl(PR_SET_SECCOMP, 1)) {
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -04001525 if ((errno == EINVAL) && seccomp_can_softfail()) {
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001526 warn("seccomp not supported");
1527 return;
1528 }
Elly Jonese1749eb2011-10-07 13:54:59 -04001529 pdie("prctl(PR_SET_SECCOMP)");
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001530 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001531}
1532
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04001533/* TODO(wad): will visibility affect this variable? */
Elly Jonescd7a9042011-07-22 13:56:51 -04001534static int init_exitstatus = 0;
1535
Will Drewry6ac91122011-10-21 16:38:58 -05001536void init_term(int __attribute__ ((unused)) sig)
Elly Jonese1749eb2011-10-07 13:54:59 -04001537{
1538 _exit(init_exitstatus);
Elly Jonescd7a9042011-07-22 13:56:51 -04001539}
1540
Will Drewry6ac91122011-10-21 16:38:58 -05001541int init(pid_t rootpid)
Elly Jonese1749eb2011-10-07 13:54:59 -04001542{
1543 pid_t pid;
1544 int status;
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04001545 /* So that we exit with the right status. */
Elly Jonese1749eb2011-10-07 13:54:59 -04001546 signal(SIGTERM, init_term);
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04001547 /* TODO(wad): self jail with seccomp filters here. */
Elly Jonese1749eb2011-10-07 13:54:59 -04001548 while ((pid = wait(&status)) > 0) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05001549 /*
1550 * This loop will only end when either there are no processes
Elly Jonese1749eb2011-10-07 13:54:59 -04001551 * left inside our pid namespace or we get a signal.
1552 */
1553 if (pid == rootpid)
1554 init_exitstatus = status;
1555 }
1556 if (!WIFEXITED(init_exitstatus))
1557 _exit(MINIJAIL_ERR_INIT);
1558 _exit(WEXITSTATUS(init_exitstatus));
Elly Jonescd7a9042011-07-22 13:56:51 -04001559}
1560
Will Drewry6ac91122011-10-21 16:38:58 -05001561int API minijail_from_fd(int fd, struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001562{
1563 size_t sz = 0;
1564 size_t bytes = read(fd, &sz, sizeof(sz));
1565 char *buf;
1566 int r;
1567 if (sizeof(sz) != bytes)
1568 return -EINVAL;
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001569 if (sz > USHRT_MAX) /* arbitrary sanity check */
Elly Jonese1749eb2011-10-07 13:54:59 -04001570 return -E2BIG;
1571 buf = malloc(sz);
1572 if (!buf)
1573 return -ENOMEM;
1574 bytes = read(fd, buf, sz);
1575 if (bytes != sz) {
1576 free(buf);
1577 return -EINVAL;
1578 }
1579 r = minijail_unmarshal(j, buf, sz);
1580 free(buf);
1581 return r;
Will Drewry2f54b6a2011-09-16 13:45:31 -05001582}
1583
Will Drewry6ac91122011-10-21 16:38:58 -05001584int API minijail_to_fd(struct minijail *j, int fd)
Elly Jonese1749eb2011-10-07 13:54:59 -04001585{
1586 char *buf;
1587 size_t sz = minijail_size(j);
1588 ssize_t written;
1589 int r;
Elly Jonescd7a9042011-07-22 13:56:51 -04001590
Elly Jonese1749eb2011-10-07 13:54:59 -04001591 if (!sz)
1592 return -EINVAL;
1593 buf = malloc(sz);
1594 r = minijail_marshal(j, buf, sz);
1595 if (r) {
1596 free(buf);
1597 return r;
1598 }
1599 /* Sends [size][minijail]. */
1600 written = write(fd, &sz, sizeof(sz));
1601 if (written != sizeof(sz)) {
1602 free(buf);
1603 return -EFAULT;
1604 }
1605 written = write(fd, buf, sz);
1606 if (written < 0 || (size_t) written != sz) {
1607 free(buf);
1608 return -EFAULT;
1609 }
1610 free(buf);
1611 return 0;
Will Drewry2f54b6a2011-09-16 13:45:31 -05001612}
Elly Jonescd7a9042011-07-22 13:56:51 -04001613
Will Drewry6ac91122011-10-21 16:38:58 -05001614int setup_preload(void)
Elly Jonese1749eb2011-10-07 13:54:59 -04001615{
Daniel Erat5b7a3182015-08-19 16:06:22 -06001616#if defined(__ANDROID__)
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -07001617 /* Don't use LDPRELOAD on Brillo. */
1618 return 0;
1619#else
Elly Jonese1749eb2011-10-07 13:54:59 -04001620 char *oldenv = getenv(kLdPreloadEnvVar) ? : "";
1621 char *newenv = malloc(strlen(oldenv) + 2 + strlen(PRELOADPATH));
1622 if (!newenv)
1623 return -ENOMEM;
Elly Jonescd7a9042011-07-22 13:56:51 -04001624
Elly Jonese1749eb2011-10-07 13:54:59 -04001625 /* Only insert a separating space if we have something to separate... */
1626 sprintf(newenv, "%s%s%s", oldenv, strlen(oldenv) ? " " : "",
1627 PRELOADPATH);
Elly Jonescd7a9042011-07-22 13:56:51 -04001628
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001629 /* setenv() makes a copy of the string we give it. */
Elly Jonese1749eb2011-10-07 13:54:59 -04001630 setenv(kLdPreloadEnvVar, newenv, 1);
1631 free(newenv);
1632 return 0;
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -07001633#endif
Elly Jonescd7a9042011-07-22 13:56:51 -04001634}
1635
Will Drewry6ac91122011-10-21 16:38:58 -05001636int setup_pipe(int fds[2])
Elly Jonese1749eb2011-10-07 13:54:59 -04001637{
1638 int r = pipe(fds);
1639 char fd_buf[11];
1640 if (r)
1641 return r;
1642 r = snprintf(fd_buf, sizeof(fd_buf), "%d", fds[0]);
1643 if (r <= 0)
1644 return -EINVAL;
1645 setenv(kFdEnvVar, fd_buf, 1);
1646 return 0;
Will Drewryf89aef52011-09-16 16:48:57 -05001647}
1648
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001649int setup_pipe_end(int fds[2], size_t index)
1650{
1651 if (index > 1)
1652 return -1;
1653
1654 close(fds[1 - index]);
1655 return fds[index];
1656}
1657
1658int setup_and_dupe_pipe_end(int fds[2], size_t index, int fd)
1659{
1660 if (index > 1)
1661 return -1;
1662
1663 close(fds[1 - index]);
1664 /* dup2(2) the corresponding end of the pipe into |fd|. */
1665 return dup2(fds[index], fd);
1666}
1667
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001668int minijail_run_internal(struct minijail *j, const char *filename,
1669 char *const argv[], pid_t *pchild_pid,
1670 int *pstdin_fd, int *pstdout_fd, int *pstderr_fd,
1671 int use_preload);
1672
Will Drewry6ac91122011-10-21 16:38:58 -05001673int API minijail_run(struct minijail *j, const char *filename,
1674 char *const argv[])
Elly Jonese1749eb2011-10-07 13:54:59 -04001675{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001676 return minijail_run_internal(j, filename, argv, NULL, NULL, NULL, NULL,
1677 true);
Jorge Lucangeli Obes9807d032012-04-17 13:36:00 -07001678}
1679
1680int API minijail_run_pid(struct minijail *j, const char *filename,
1681 char *const argv[], pid_t *pchild_pid)
1682{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001683 return minijail_run_internal(j, filename, argv, pchild_pid,
1684 NULL, NULL, NULL, true);
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001685}
1686
1687int API minijail_run_pipe(struct minijail *j, const char *filename,
Jorge Lucangeli Obes6537a562012-09-05 10:39:40 -07001688 char *const argv[], int *pstdin_fd)
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001689{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001690 return minijail_run_internal(j, filename, argv, NULL, pstdin_fd,
1691 NULL, NULL, true);
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001692}
1693
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001694int API minijail_run_pid_pipes(struct minijail *j, const char *filename,
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -07001695 char *const argv[], pid_t *pchild_pid,
1696 int *pstdin_fd, int *pstdout_fd, int *pstderr_fd)
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001697{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001698 return minijail_run_internal(j, filename, argv, pchild_pid,
1699 pstdin_fd, pstdout_fd, pstderr_fd, true);
1700}
1701
1702int API minijail_run_no_preload(struct minijail *j, const char *filename,
1703 char *const argv[])
1704{
1705 return minijail_run_internal(j, filename, argv, NULL, NULL, NULL, NULL,
1706 false);
1707}
1708
Samuel Tan63187f42015-10-16 13:01:53 -07001709int API minijail_run_pid_pipes_no_preload(struct minijail *j,
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001710 const char *filename,
1711 char *const argv[],
Samuel Tan63187f42015-10-16 13:01:53 -07001712 pid_t *pchild_pid,
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001713 int *pstdin_fd, int *pstdout_fd,
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001714 int *pstderr_fd)
1715{
Samuel Tan63187f42015-10-16 13:01:53 -07001716 return minijail_run_internal(j, filename, argv, pchild_pid,
1717 pstdin_fd, pstdout_fd, pstderr_fd, false);
1718}
1719
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001720int minijail_run_internal(struct minijail *j, const char *filename,
1721 char *const argv[], pid_t *pchild_pid,
1722 int *pstdin_fd, int *pstdout_fd, int *pstderr_fd,
1723 int use_preload)
1724{
Elly Jonese1749eb2011-10-07 13:54:59 -04001725 char *oldenv, *oldenv_copy = NULL;
1726 pid_t child_pid;
1727 int pipe_fds[2];
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001728 int stdin_fds[2];
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001729 int stdout_fds[2];
1730 int stderr_fds[2];
Dylan Reidce5b55e2016-01-13 11:04:16 -08001731 int child_sync_pipe_fds[2];
1732 int sync_child = 0;
Elly Jonese1749eb2011-10-07 13:54:59 -04001733 int ret;
Elly Jonesa05d7bb2012-06-14 14:09:27 -04001734 /* We need to remember this across the minijail_preexec() call. */
1735 int pid_namespace = j->flags.pids;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08001736 int do_init = j->flags.do_init;
Ben Chan541c7e52011-08-26 14:55:53 -07001737
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001738 if (use_preload) {
1739 oldenv = getenv(kLdPreloadEnvVar);
1740 if (oldenv) {
1741 oldenv_copy = strdup(oldenv);
1742 if (!oldenv_copy)
1743 return -ENOMEM;
1744 }
1745
1746 if (setup_preload())
1747 return -EFAULT;
Elly Jonese1749eb2011-10-07 13:54:59 -04001748 }
Will Drewryf89aef52011-09-16 16:48:57 -05001749
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001750 if (!use_preload) {
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04001751 if (j->flags.use_caps && j->caps != 0)
1752 die("non-empty capabilities are not supported without LD_PRELOAD");
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001753 }
Will Drewry2f54b6a2011-09-16 13:45:31 -05001754
Elly Jonesdd3e8512012-01-23 15:13:38 -05001755 /*
Jorge Lucangeli Obes3c84df12015-05-14 17:37:58 -07001756 * Make the process group ID of this process equal to its PID, so that
1757 * both the Minijail process and the jailed process can be killed
1758 * together.
1759 * Don't fail on EPERM, since setpgid(0, 0) can only EPERM when
1760 * the process is already a process group leader.
1761 */
1762 if (setpgid(0 /* use calling PID */, 0 /* make PGID = PID */)) {
1763 if (errno != EPERM) {
1764 pdie("setpgid(0, 0)");
1765 }
1766 }
1767
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001768 if (use_preload) {
1769 /*
1770 * Before we fork(2) and execve(2) the child process, we need
1771 * to open a pipe(2) to send the minijail configuration over.
1772 */
1773 if (setup_pipe(pipe_fds))
1774 return -EFAULT;
1775 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001776
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001777 /*
1778 * If we want to write to the child process' standard input,
1779 * create the pipe(2) now.
1780 */
1781 if (pstdin_fd) {
1782 if (pipe(stdin_fds))
1783 return -EFAULT;
1784 }
1785
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001786 /*
1787 * If we want to read from the child process' standard output,
1788 * create the pipe(2) now.
1789 */
1790 if (pstdout_fd) {
1791 if (pipe(stdout_fds))
1792 return -EFAULT;
1793 }
1794
1795 /*
1796 * If we want to read from the child process' standard error,
1797 * create the pipe(2) now.
1798 */
1799 if (pstderr_fd) {
1800 if (pipe(stderr_fds))
1801 return -EFAULT;
1802 }
1803
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001804 /*
Jorge Lucangeli Obesab6fa6f2016-08-04 15:42:48 -04001805 * If we want to set up a new uid/gid map in the user namespace,
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -08001806 * or if we need to add the child process to cgroups, create the pipe(2)
1807 * to sync between parent and child.
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001808 */
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -08001809 if (j->flags.userns || j->flags.cgroups) {
Dylan Reidce5b55e2016-01-13 11:04:16 -08001810 sync_child = 1;
1811 if (pipe(child_sync_pipe_fds))
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001812 return -EFAULT;
1813 }
1814
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001815 /*
1816 * Use sys_clone() if and only if we're creating a pid namespace.
Elly Jones761b7412012-06-13 15:49:52 -04001817 *
1818 * tl;dr: WARNING: do not mix pid namespaces and multithreading.
1819 *
1820 * In multithreaded programs, there are a bunch of locks inside libc,
1821 * some of which may be held by other threads at the time that we call
1822 * minijail_run_pid(). If we call fork(), glibc does its level best to
1823 * ensure that we hold all of these locks before it calls clone()
1824 * internally and drop them after clone() returns, but when we call
1825 * sys_clone(2) directly, all that gets bypassed and we end up with a
1826 * child address space where some of libc's important locks are held by
1827 * other threads (which did not get cloned, and hence will never release
1828 * those locks). This is okay so long as we call exec() immediately
1829 * after, but a bunch of seemingly-innocent libc functions like setenv()
1830 * take locks.
1831 *
1832 * Hence, only call sys_clone() if we need to, in order to get at pid
1833 * namespacing. If we follow this path, the child's address space might
1834 * have broken locks; you may only call functions that do not acquire
1835 * any locks.
1836 *
1837 * Unfortunately, fork() acquires every lock it can get its hands on, as
1838 * previously detailed, so this function is highly likely to deadlock
1839 * later on (see "deadlock here") if we're multithreaded.
1840 *
1841 * We might hack around this by having the clone()d child (init of the
1842 * pid namespace) return directly, rather than leaving the clone()d
1843 * process hanging around to be init for the new namespace (and having
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001844 * its fork()ed child return in turn), but that process would be
1845 * crippled with its libc locks potentially broken. We might try
1846 * fork()ing in the parent before we clone() to ensure that we own all
1847 * the locks, but then we have to have the forked child hanging around
1848 * consuming resources (and possibly having file descriptors / shared
1849 * memory regions / etc attached). We'd need to keep the child around to
1850 * avoid having its children get reparented to init.
Elly Jones761b7412012-06-13 15:49:52 -04001851 *
1852 * TODO(ellyjones): figure out if the "forked child hanging around"
1853 * problem is fixable or not. It would be nice if we worked in this
1854 * case.
1855 */
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001856 if (pid_namespace) {
1857 int clone_flags = CLONE_NEWPID | SIGCHLD;
1858 if (j->flags.userns)
1859 clone_flags |= CLONE_NEWUSER;
1860 child_pid = syscall(SYS_clone, clone_flags, NULL);
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001861 } else {
Elly Jones761b7412012-06-13 15:49:52 -04001862 child_pid = fork();
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001863 }
Elly Jones761b7412012-06-13 15:49:52 -04001864
Elly Jonese1749eb2011-10-07 13:54:59 -04001865 if (child_pid < 0) {
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001866 if (use_preload) {
1867 free(oldenv_copy);
1868 }
Lee Campbell1e4fc6a2014-06-06 17:40:02 -07001869 die("failed to fork child");
Elly Jonese1749eb2011-10-07 13:54:59 -04001870 }
Will Drewryf89aef52011-09-16 16:48:57 -05001871
Elly Jonese1749eb2011-10-07 13:54:59 -04001872 if (child_pid) {
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001873 if (use_preload) {
1874 /* Restore parent's LD_PRELOAD. */
1875 if (oldenv_copy) {
1876 setenv(kLdPreloadEnvVar, oldenv_copy, 1);
1877 free(oldenv_copy);
1878 } else {
1879 unsetenv(kLdPreloadEnvVar);
1880 }
1881 unsetenv(kFdEnvVar);
Elly Jonese1749eb2011-10-07 13:54:59 -04001882 }
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001883
Elly Jonese1749eb2011-10-07 13:54:59 -04001884 j->initpid = child_pid;
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001885
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001886 if (j->flags.pid_file)
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001887 write_pid_file_or_die(j);
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001888
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -08001889 if (j->flags.cgroups)
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001890 add_to_cgroups_or_die(j);
Dylan Reid605ce7f2016-01-19 19:21:00 -08001891
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001892 if (j->flags.userns)
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001893 write_ugid_maps_or_die(j);
Dylan Reidce5b55e2016-01-13 11:04:16 -08001894
1895 if (sync_child)
1896 parent_setup_complete(child_sync_pipe_fds);
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001897
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001898 if (use_preload) {
1899 /* Send marshalled minijail. */
1900 close(pipe_fds[0]); /* read endpoint */
1901 ret = minijail_to_fd(j, pipe_fds[1]);
1902 close(pipe_fds[1]); /* write endpoint */
1903 if (ret) {
1904 kill(j->initpid, SIGKILL);
1905 die("failed to send marshalled minijail");
1906 }
Elly Jonese1749eb2011-10-07 13:54:59 -04001907 }
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001908
Jorge Lucangeli Obes9807d032012-04-17 13:36:00 -07001909 if (pchild_pid)
1910 *pchild_pid = child_pid;
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001911
1912 /*
1913 * If we want to write to the child process' standard input,
1914 * set up the write end of the pipe.
1915 */
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001916 if (pstdin_fd)
1917 *pstdin_fd = setup_pipe_end(stdin_fds,
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001918 1 /* write end */);
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001919
1920 /*
1921 * If we want to read from the child process' standard output,
1922 * set up the read end of the pipe.
1923 */
1924 if (pstdout_fd)
1925 *pstdout_fd = setup_pipe_end(stdout_fds,
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001926 0 /* read end */);
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001927
1928 /*
1929 * If we want to read from the child process' standard error,
1930 * set up the read end of the pipe.
1931 */
1932 if (pstderr_fd)
1933 *pstderr_fd = setup_pipe_end(stderr_fds,
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001934 0 /* read end */);
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001935
Elly Jonese1749eb2011-10-07 13:54:59 -04001936 return 0;
1937 }
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04001938 /* Child process. */
Elly Jonese1749eb2011-10-07 13:54:59 -04001939 free(oldenv_copy);
Ben Chan541c7e52011-08-26 14:55:53 -07001940
Peter Qiu2860c462015-12-16 15:13:06 -08001941 if (j->flags.reset_signal_mask) {
1942 sigset_t signal_mask;
1943 if (sigemptyset(&signal_mask) != 0)
1944 pdie("sigemptyset failed");
1945 if (sigprocmask(SIG_SETMASK, &signal_mask, NULL) != 0)
1946 pdie("sigprocmask failed");
1947 }
1948
Dylan Reidce5b55e2016-01-13 11:04:16 -08001949 if (sync_child)
1950 wait_for_parent_setup(child_sync_pipe_fds);
1951
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001952 if (j->flags.userns)
Dylan Reidce5b55e2016-01-13 11:04:16 -08001953 enter_user_namespace(j);
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001954
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001955 /*
1956 * If we want to write to the jailed process' standard input,
1957 * set up the read end of the pipe.
1958 */
1959 if (pstdin_fd) {
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001960 if (setup_and_dupe_pipe_end(stdin_fds, 0 /* read end */,
1961 STDIN_FILENO) < 0)
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001962 die("failed to set up stdin pipe");
1963 }
1964
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001965 /*
1966 * If we want to read from the jailed process' standard output,
1967 * set up the write end of the pipe.
1968 */
1969 if (pstdout_fd) {
1970 if (setup_and_dupe_pipe_end(stdout_fds, 1 /* write end */,
1971 STDOUT_FILENO) < 0)
1972 die("failed to set up stdout pipe");
1973 }
1974
1975 /*
1976 * If we want to read from the jailed process' standard error,
1977 * set up the write end of the pipe.
1978 */
1979 if (pstderr_fd) {
1980 if (setup_and_dupe_pipe_end(stderr_fds, 1 /* write end */,
1981 STDERR_FILENO) < 0)
1982 die("failed to set up stderr pipe");
1983 }
1984
Dylan Reid791f5772015-09-14 20:02:42 -07001985 /* If running an init program, let it decide when/how to mount /proc. */
1986 if (pid_namespace && !do_init)
1987 j->flags.remount_proc_ro = 0;
1988
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001989 if (use_preload) {
1990 /* Strip out flags that cannot be inherited across execve(2). */
1991 minijail_preexec(j);
1992 } else {
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04001993 /*
1994 * If not using LD_PRELOAD, do all jailing before execve(2).
1995 * Note that PID namespaces can only be entered on fork(2),
1996 * so that flag is still cleared.
1997 */
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001998 j->flags.pids = 0;
1999 }
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04002000 /* Jail this process, then execve(2) the target. */
Elly Jonese1749eb2011-10-07 13:54:59 -04002001 minijail_enter(j);
Elly Jonescd7a9042011-07-22 13:56:51 -04002002
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08002003 if (pid_namespace && do_init) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05002004 /*
2005 * pid namespace: this process will become init inside the new
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08002006 * namespace. We don't want all programs we might exec to have
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002007 * to know how to be init. Normally (do_init == 1) we fork off
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08002008 * a child to actually run the program. If |do_init == 0|, we
2009 * let the program keep pid 1 and be init.
Elly Jones761b7412012-06-13 15:49:52 -04002010 *
2011 * If we're multithreaded, we'll probably deadlock here. See
2012 * WARNING above.
Elly Jonese1749eb2011-10-07 13:54:59 -04002013 */
2014 child_pid = fork();
2015 if (child_pid < 0)
2016 _exit(child_pid);
2017 else if (child_pid > 0)
2018 init(child_pid); /* never returns */
2019 }
Elly Jonescd7a9042011-07-22 13:56:51 -04002020
Elly Jonesdd3e8512012-01-23 15:13:38 -05002021 /*
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002022 * If we aren't pid-namespaced, or the jailed program asked to be init:
Elly Jonese1749eb2011-10-07 13:54:59 -04002023 * calling process
2024 * -> execve()-ing process
2025 * If we are:
2026 * calling process
2027 * -> init()-ing process
2028 * -> execve()-ing process
2029 */
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04002030 ret = execve(filename, argv, environ);
2031 if (ret == -1) {
2032 pwarn("execve(%s) failed", filename);
2033 }
2034 _exit(ret);
Elly Jonescd7a9042011-07-22 13:56:51 -04002035}
2036
Will Drewry6ac91122011-10-21 16:38:58 -05002037int API minijail_kill(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04002038{
2039 int st;
2040 if (kill(j->initpid, SIGTERM))
2041 return -errno;
2042 if (waitpid(j->initpid, &st, 0) < 0)
2043 return -errno;
2044 return st;
Elly Jonescd7a9042011-07-22 13:56:51 -04002045}
2046
Will Drewry6ac91122011-10-21 16:38:58 -05002047int API minijail_wait(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04002048{
2049 int st;
2050 if (waitpid(j->initpid, &st, 0) < 0)
2051 return -errno;
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08002052
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07002053 if (!WIFEXITED(st)) {
Jorge Lucangeli Obes18d1eba2014-04-18 13:58:20 -07002054 int error_status = st;
2055 if (WIFSIGNALED(st)) {
2056 int signum = WTERMSIG(st);
mukesh agrawalc420a262013-06-11 17:22:42 -07002057 warn("child process %d received signal %d",
Jorge Lucangeli Obes18d1eba2014-04-18 13:58:20 -07002058 j->initpid, signum);
2059 /*
2060 * We return MINIJAIL_ERR_JAIL if the process received
2061 * SIGSYS, which happens when a syscall is blocked by
2062 * seccomp filters.
2063 * If not, we do what bash(1) does:
2064 * $? = 128 + signum
2065 */
2066 if (signum == SIGSYS) {
2067 error_status = MINIJAIL_ERR_JAIL;
2068 } else {
2069 error_status = 128 + signum;
2070 }
2071 }
2072 return error_status;
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07002073 }
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08002074
2075 int exit_status = WEXITSTATUS(st);
2076 if (exit_status != 0)
mukesh agrawalc420a262013-06-11 17:22:42 -07002077 info("child process %d exited with status %d",
2078 j->initpid, exit_status);
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08002079
2080 return exit_status;
Elly Jonescd7a9042011-07-22 13:56:51 -04002081}
2082
Will Drewry6ac91122011-10-21 16:38:58 -05002083void API minijail_destroy(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04002084{
Dylan Reid605ce7f2016-01-19 19:21:00 -08002085 size_t i;
2086
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08002087 if (j->flags.seccomp_filter && j->filter_prog) {
2088 free(j->filter_prog->filter);
2089 free(j->filter_prog);
Elly Jonese1749eb2011-10-07 13:54:59 -04002090 }
Dylan Reid648b2202015-10-23 00:50:00 -07002091 while (j->mounts_head) {
2092 struct mountpoint *m = j->mounts_head;
2093 j->mounts_head = j->mounts_head->next;
Dylan Reid81e23972016-05-18 14:06:35 -07002094 free(m->data);
Dylan Reid648b2202015-10-23 00:50:00 -07002095 free(m->type);
2096 free(m->dest);
2097 free(m->src);
2098 free(m);
Elly Jones51a5b6c2011-10-12 19:09:26 -04002099 }
Dylan Reid648b2202015-10-23 00:50:00 -07002100 j->mounts_tail = NULL;
Elly Jonese1749eb2011-10-07 13:54:59 -04002101 if (j->user)
2102 free(j->user);
Jorge Lucangeli Obese81a52f2015-12-04 16:05:23 -08002103 if (j->suppl_gid_list)
2104 free(j->suppl_gid_list);
Will Drewrybee7ba72011-10-21 20:47:01 -05002105 if (j->chrootdir)
2106 free(j->chrootdir);
Jorge Lucangeli Obes3b2e6e42016-08-04 12:26:19 -04002107 if (j->pid_file_path)
2108 free(j->pid_file_path);
2109 if (j->uidmap)
2110 free(j->uidmap);
2111 if (j->gidmap)
2112 free(j->gidmap);
Andrew Brestickereac28942015-11-11 16:04:46 -08002113 if (j->alt_syscall_table)
2114 free(j->alt_syscall_table);
Dylan Reid605ce7f2016-01-19 19:21:00 -08002115 for (i = 0; i < j->cgroup_count; ++i)
2116 free(j->cgroups[i]);
Elly Jonese1749eb2011-10-07 13:54:59 -04002117 free(j);
Elly Jonescd7a9042011-07-22 13:56:51 -04002118}