blob: 3f768f6f0f31f657ab5bfc73a8bc82376fb78978 [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>
Jeff Vander Stoep2885bef2016-01-11 15:22:42 -080035#include <sys/utsname.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040036#include <sys/wait.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040037#include <unistd.h>
38
39#include "libminijail.h"
40#include "libminijail-private.h"
41
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -070042#include "signal_handler.h"
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080043#include "syscall_filter.h"
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070044#include "util.h"
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080045
Lei Zhangeee31552012-10-17 21:27:10 -070046#ifdef HAVE_SECUREBITS_H
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -070047# include <linux/securebits.h>
Lei Zhangeee31552012-10-17 21:27:10 -070048#else
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -070049# define SECURE_ALL_BITS 0x55
50# define SECURE_ALL_LOCKS (SECURE_ALL_BITS << 1)
51#endif
52/* For kernels < 4.3. */
53#define OLD_SECURE_ALL_BITS 0x15
54#define OLD_SECURE_ALL_LOCKS (OLD_SECURE_ALL_BITS << 1)
55
56/*
57 * Assert the value of SECURE_ALL_BITS at compile-time.
58 * Brillo devices are currently compiled against 4.4 kernel headers. Kernel 4.3
59 * added a new securebit.
60 * When a new securebit is added, the new SECURE_ALL_BITS mask will return EPERM
61 * when used on older kernels. The compile-time assert will catch this situation
62 * at compile time.
63 */
64#ifdef __BRILLO__
65_Static_assert(SECURE_ALL_BITS == 0x55, "SECURE_ALL_BITS == 0x55.");
Lei Zhangeee31552012-10-17 21:27:10 -070066#endif
67
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -070068/* Until these are reliably available in linux/prctl.h. */
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080069#ifndef PR_SET_SECCOMP
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -070070# define PR_SET_SECCOMP 22
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080071#endif
72
Andrew Brestickereac28942015-11-11 16:04:46 -080073#ifndef PR_ALT_SYSCALL
74# define PR_ALT_SYSCALL 0x43724f53
75#endif
76
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080077/* For seccomp_filter using BPF. */
78#ifndef PR_SET_NO_NEW_PRIVS
79# define PR_SET_NO_NEW_PRIVS 38
80#endif
81#ifndef SECCOMP_MODE_FILTER
82# define SECCOMP_MODE_FILTER 2 /* uses user-supplied filter. */
Will Drewry32ac9f52011-08-18 21:36:27 -050083#endif
84
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -070085#ifdef USE_SECCOMP_SOFTFAIL
86# define SECCOMP_SOFTFAIL 1
87#else
88# define SECCOMP_SOFTFAIL 0
89#endif
90
Dylan Reid4cbc2a52016-06-17 19:06:07 -070091/* New cgroup namespace might not be in linux-headers yet. */
92#ifndef CLONE_NEWCGROUP
93# define CLONE_NEWCGROUP 0x02000000
94#endif
95
Dylan Reid605ce7f2016-01-19 19:21:00 -080096#define MAX_CGROUPS 10 /* 10 different controllers supported by Linux. */
97
Dylan Reid648b2202015-10-23 00:50:00 -070098struct mountpoint {
Elly Jones51a5b6c2011-10-12 19:09:26 -040099 char *src;
100 char *dest;
Dylan Reid648b2202015-10-23 00:50:00 -0700101 char *type;
Dylan Reid81e23972016-05-18 14:06:35 -0700102 char *data;
103 int has_data;
Dylan Reid648b2202015-10-23 00:50:00 -0700104 unsigned long flags;
105 struct mountpoint *next;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400106};
107
Will Drewryf89aef52011-09-16 16:48:57 -0500108struct minijail {
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700109 /*
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700110 * WARNING: if you add a flag here you need to make sure it's
111 * accounted for in minijail_pre{enter|exec}() below.
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700112 */
Elly Jonese1749eb2011-10-07 13:54:59 -0400113 struct {
114 int uid:1;
115 int gid:1;
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800116 int usergroups:1;
117 int suppl_gids:1;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800118 int use_caps:1;
119 int capbset_drop:1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400120 int vfs:1;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700121 int enter_vfs:1;
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800122 int skip_remount_private:1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400123 int pids:1;
Dylan Reidf7942472015-11-18 17:55:26 -0800124 int ipc:1;
Elly Fong-Jones6c086302013-03-20 17:15:28 -0400125 int net:1;
Dylan Reid1102f5a2015-09-15 11:52:20 -0700126 int enter_net:1;
Dylan Reid4cbc2a52016-06-17 19:06:07 -0700127 int ns_cgroups:1;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800128 int userns:1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400129 int seccomp:1;
Dylan Reid791f5772015-09-14 20:02:42 -0700130 int remount_proc_ro:1;
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -0700131 int no_new_privs:1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400132 int seccomp_filter:1;
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700133 int log_seccomp_filter:1;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400134 int chroot:1;
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +0800135 int pivot_root:1;
Lee Campbell11af0622014-05-22 12:36:04 -0700136 int mount_tmp:1;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800137 int do_init:1;
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800138 int pid_file:1;
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800139 int cgroups:1;
Andrew Brestickereac28942015-11-11 16:04:46 -0800140 int alt_syscall:1;
Peter Qiu2860c462015-12-16 15:13:06 -0800141 int reset_signal_mask:1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400142 } flags;
143 uid_t uid;
144 gid_t gid;
145 gid_t usergid;
146 char *user;
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800147 size_t suppl_gid_count;
148 gid_t *suppl_gid_list;
Elly Jonese1749eb2011-10-07 13:54:59 -0400149 uint64_t caps;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800150 uint64_t cap_bset;
Elly Jonese1749eb2011-10-07 13:54:59 -0400151 pid_t initpid;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700152 int mountns_fd;
Dylan Reid1102f5a2015-09-15 11:52:20 -0700153 int netns_fd;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400154 char *chrootdir;
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800155 char *pid_file_path;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800156 char *uidmap;
157 char *gidmap;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800158 size_t filter_len;
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800159 struct sock_fprog *filter_prog;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800160 char *alt_syscall_table;
Dylan Reid648b2202015-10-23 00:50:00 -0700161 struct mountpoint *mounts_head;
162 struct mountpoint *mounts_tail;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800163 size_t mounts_count;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800164 char *cgroups[MAX_CGROUPS];
165 size_t cgroup_count;
Will Drewryf89aef52011-09-16 16:48:57 -0500166};
167
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700168/*
169 * Strip out flags meant for the parent.
170 * We keep things that are not inherited across execve(2) (e.g. capabilities),
171 * or are easier to set after execve(2) (e.g. seccomp filters).
172 */
173void minijail_preenter(struct minijail *j)
174{
175 j->flags.vfs = 0;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700176 j->flags.enter_vfs = 0;
Shuhei Takahashi3da40312016-03-07 17:37:49 +0900177 j->flags.skip_remount_private = 0;
Dylan Reid791f5772015-09-14 20:02:42 -0700178 j->flags.remount_proc_ro = 0;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700179 j->flags.pids = 0;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800180 j->flags.do_init = 0;
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800181 j->flags.pid_file = 0;
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800182 j->flags.cgroups = 0;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700183}
184
185/*
186 * Strip out flags meant for the child.
187 * We keep things that are inherited across execve(2).
188 */
189void minijail_preexec(struct minijail *j)
190{
191 int vfs = j->flags.vfs;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700192 int enter_vfs = j->flags.enter_vfs;
Jorge Lucangeli Obes87bf01d2016-03-08 11:20:03 -0800193 int skip_remount_private = j->flags.skip_remount_private;
Dylan Reid791f5772015-09-14 20:02:42 -0700194 int remount_proc_ro = j->flags.remount_proc_ro;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800195 int userns = j->flags.userns;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700196 if (j->user)
197 free(j->user);
198 j->user = NULL;
Jorge Lucangeli Obese81a52f2015-12-04 16:05:23 -0800199 if (j->suppl_gid_list)
200 free(j->suppl_gid_list);
201 j->suppl_gid_list = NULL;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700202 memset(&j->flags, 0, sizeof(j->flags));
203 /* Now restore anything we meant to keep. */
204 j->flags.vfs = vfs;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700205 j->flags.enter_vfs = enter_vfs;
Jorge Lucangeli Obes87bf01d2016-03-08 11:20:03 -0800206 j->flags.skip_remount_private = skip_remount_private;
Dylan Reid791f5772015-09-14 20:02:42 -0700207 j->flags.remount_proc_ro = remount_proc_ro;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800208 j->flags.userns = userns;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700209 /* Note, |pids| will already have been used before this call. */
210}
211
Jorge Lucangeli Obes272e3ab2016-01-12 21:18:59 -0800212/* Returns true if the kernel version is less than 3.8. */
213int seccomp_kernel_support_not_required()
Jeff Vander Stoep2885bef2016-01-11 15:22:42 -0800214{
215 int major, minor;
216 struct utsname uts;
217 return (uname(&uts) != -1 &&
218 sscanf(uts.release, "%d.%d", &major, &minor) == 2 &&
219 ((major < 3) || ((major == 3) && (minor < 8))));
220}
221
Jorge Lucangeli Obes272e3ab2016-01-12 21:18:59 -0800222/* Allow seccomp soft-fail on Android devices with kernel version < 3.8. */
223int can_softfail()
Jeff Vander Stoep2885bef2016-01-11 15:22:42 -0800224{
225#if SECCOMP_SOFTFAIL
226 if (is_android()) {
227 if (seccomp_kernel_support_not_required())
228 return 1;
229 else
230 return 0;
231 } else {
232 return 1;
233 }
234#endif
235 return 0;
236}
237
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700238/* Minijail API. */
239
Will Drewry6ac91122011-10-21 16:38:58 -0500240struct minijail API *minijail_new(void)
Elly Jonese1749eb2011-10-07 13:54:59 -0400241{
Elly Jones51a5b6c2011-10-12 19:09:26 -0400242 return calloc(1, sizeof(struct minijail));
Elly Jonescd7a9042011-07-22 13:56:51 -0400243}
244
Will Drewry6ac91122011-10-21 16:38:58 -0500245void API minijail_change_uid(struct minijail *j, uid_t uid)
Elly Jonese1749eb2011-10-07 13:54:59 -0400246{
247 if (uid == 0)
248 die("useless change to uid 0");
249 j->uid = uid;
250 j->flags.uid = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400251}
252
Will Drewry6ac91122011-10-21 16:38:58 -0500253void API minijail_change_gid(struct minijail *j, gid_t gid)
Elly Jonese1749eb2011-10-07 13:54:59 -0400254{
255 if (gid == 0)
256 die("useless change to gid 0");
257 j->gid = gid;
258 j->flags.gid = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400259}
260
Jorge Lucangeli Obesbc67f442016-01-08 14:43:45 -0800261void API minijail_set_supplementary_gids(struct minijail *j, size_t size,
262 const gid_t *list)
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800263{
Jorge Lucangeli Obes06940be2015-12-04 18:09:21 -0800264 size_t i;
265
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800266 if (j->flags.usergroups)
267 die("cannot inherit *and* set supplementary groups");
268
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800269 if (size == 0) {
270 /* Clear supplementary groups. */
271 j->suppl_gid_list = NULL;
272 j->suppl_gid_count = 0;
273 j->flags.suppl_gids = 1;
Jorge Lucangeli Obesbc67f442016-01-08 14:43:45 -0800274 return;
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800275 }
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800276
277 /* Copy the gid_t array. */
278 j->suppl_gid_list = calloc(size, sizeof(gid_t));
279 if (!j->suppl_gid_list) {
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800280 die("failed to allocate internal supplementary group array");
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800281 }
Jorge Lucangeli Obes06940be2015-12-04 18:09:21 -0800282 for (i = 0; i < size; i++) {
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800283 j->suppl_gid_list[i] = list[i];
284 }
285 j->suppl_gid_count = size;
286 j->flags.suppl_gids = 1;
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800287}
288
Will Drewry6ac91122011-10-21 16:38:58 -0500289int API minijail_change_user(struct minijail *j, const char *user)
Elly Jonese1749eb2011-10-07 13:54:59 -0400290{
291 char *buf = NULL;
292 struct passwd pw;
293 struct passwd *ppw = NULL;
294 ssize_t sz = sysconf(_SC_GETPW_R_SIZE_MAX);
295 if (sz == -1)
296 sz = 65536; /* your guess is as good as mine... */
Elly Joneseb300c52011-09-22 14:35:43 -0400297
Elly Jonesdd3e8512012-01-23 15:13:38 -0500298 /*
299 * sysconf(_SC_GETPW_R_SIZE_MAX), under glibc, is documented to return
Elly Jonese1749eb2011-10-07 13:54:59 -0400300 * the maximum needed size of the buffer, so we don't have to search.
301 */
302 buf = malloc(sz);
303 if (!buf)
304 return -ENOMEM;
305 getpwnam_r(user, &pw, buf, sz, &ppw);
Elly Jonesdd3e8512012-01-23 15:13:38 -0500306 /*
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800307 * We're safe to free the buffer here. The strings inside |pw| point
308 * inside |buf|, but we don't use any of them; this leaves the pointers
Jorge Lucangeli Obes87bf01d2016-03-08 11:20:03 -0800309 * dangling but it's safe. |ppw| points at |pw| if getpwnam_r(3)
310 * succeeded.
Elly Jonesdd3e8512012-01-23 15:13:38 -0500311 */
Elly Jonese1749eb2011-10-07 13:54:59 -0400312 free(buf);
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700313 /* getpwnam_r(3) does *not* set errno when |ppw| is NULL. */
Elly Jonese1749eb2011-10-07 13:54:59 -0400314 if (!ppw)
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700315 return -1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400316 minijail_change_uid(j, ppw->pw_uid);
317 j->user = strdup(user);
318 if (!j->user)
319 return -ENOMEM;
320 j->usergid = ppw->pw_gid;
321 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -0400322}
323
Will Drewry6ac91122011-10-21 16:38:58 -0500324int API minijail_change_group(struct minijail *j, const char *group)
Elly Jonese1749eb2011-10-07 13:54:59 -0400325{
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -0700326 char *buf = NULL;
Yabin Cui1b21c8f2015-07-22 10:34:45 -0700327 struct group gr;
328 struct group *pgr = NULL;
Elly Jonese1749eb2011-10-07 13:54:59 -0400329 ssize_t sz = sysconf(_SC_GETGR_R_SIZE_MAX);
330 if (sz == -1)
331 sz = 65536; /* and mine is as good as yours, really */
Elly Joneseb300c52011-09-22 14:35:43 -0400332
Elly Jonesdd3e8512012-01-23 15:13:38 -0500333 /*
334 * sysconf(_SC_GETGR_R_SIZE_MAX), under glibc, is documented to return
Elly Jonese1749eb2011-10-07 13:54:59 -0400335 * the maximum needed size of the buffer, so we don't have to search.
336 */
337 buf = malloc(sz);
338 if (!buf)
339 return -ENOMEM;
340 getgrnam_r(group, &gr, buf, sz, &pgr);
Elly Jonesdd3e8512012-01-23 15:13:38 -0500341 /*
342 * We're safe to free the buffer here. The strings inside gr point
343 * inside buf, but we don't use any of them; this leaves the pointers
344 * dangling but it's safe. pgr points at gr if getgrnam_r succeeded.
345 */
Elly Jonese1749eb2011-10-07 13:54:59 -0400346 free(buf);
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700347 /* getgrnam_r(3) does *not* set errno when |pgr| is NULL. */
Elly Jonese1749eb2011-10-07 13:54:59 -0400348 if (!pgr)
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700349 return -1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400350 minijail_change_gid(j, pgr->gr_gid);
351 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -0400352}
353
Will Drewry6ac91122011-10-21 16:38:58 -0500354void API minijail_use_seccomp(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400355{
356 j->flags.seccomp = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400357}
358
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -0700359void API minijail_no_new_privs(struct minijail *j)
360{
361 j->flags.no_new_privs = 1;
362}
363
Will Drewry6ac91122011-10-21 16:38:58 -0500364void API minijail_use_seccomp_filter(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400365{
366 j->flags.seccomp_filter = 1;
Will Drewry32ac9f52011-08-18 21:36:27 -0500367}
368
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700369void API minijail_log_seccomp_filter_failures(struct minijail *j)
370{
371 j->flags.log_seccomp_filter = 1;
372}
373
Will Drewry6ac91122011-10-21 16:38:58 -0500374void API minijail_use_caps(struct minijail *j, uint64_t capmask)
Elly Jonese1749eb2011-10-07 13:54:59 -0400375{
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800376 /*
377 * 'minijail_use_caps' configures a runtime-capabilities-only
378 * environment, including a bounding set matching the thread's runtime
379 * (permitted|inheritable|effective) sets.
380 * Therefore, it will override any existing bounding set configurations
381 * since the latter would allow gaining extra runtime capabilities from
382 * file capabilities.
383 */
384 if (j->flags.capbset_drop) {
385 warn("overriding bounding set configuration");
386 j->cap_bset = 0;
387 j->flags.capbset_drop = 0;
388 }
Elly Jonese1749eb2011-10-07 13:54:59 -0400389 j->caps = capmask;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800390 j->flags.use_caps = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400391}
392
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800393void API minijail_capbset_drop(struct minijail *j, uint64_t capmask)
394{
395 if (j->flags.use_caps) {
396 /*
397 * 'minijail_use_caps' will have already configured a capability
398 * bounding set matching the (permitted|inheritable|effective)
399 * sets. Abort if the user tries to configure a separate
400 * bounding set. 'minijail_capbset_drop' and 'minijail_use_caps'
401 * are mutually exclusive.
402 */
403 die("runtime capabilities already configured, can't drop "
404 "bounding set separately");
405 }
406 j->cap_bset = capmask;
407 j->flags.capbset_drop = 1;
408}
409
410void API minijail_reset_signal_mask(struct minijail *j)
411{
Peter Qiu2860c462015-12-16 15:13:06 -0800412 j->flags.reset_signal_mask = 1;
413}
414
Will Drewry6ac91122011-10-21 16:38:58 -0500415void API minijail_namespace_vfs(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400416{
417 j->flags.vfs = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400418}
419
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700420void API minijail_namespace_enter_vfs(struct minijail *j, const char *ns_path)
421{
Ricky Zhoubce609d2016-03-02 21:47:56 -0800422 int ns_fd = open(ns_path, O_RDONLY | O_CLOEXEC);
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700423 if (ns_fd < 0) {
424 pdie("failed to open namespace '%s'", ns_path);
425 }
426 j->mountns_fd = ns_fd;
427 j->flags.enter_vfs = 1;
428}
429
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800430void API minijail_skip_remount_private(struct minijail *j)
431{
432 j->flags.skip_remount_private = 1;
433}
434
Will Drewry6ac91122011-10-21 16:38:58 -0500435void API minijail_namespace_pids(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400436{
Elly Jonese58176c2012-01-23 11:46:17 -0500437 j->flags.vfs = 1;
Dylan Reid791f5772015-09-14 20:02:42 -0700438 j->flags.remount_proc_ro = 1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400439 j->flags.pids = 1;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800440 j->flags.do_init = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400441}
442
Dylan Reidf7942472015-11-18 17:55:26 -0800443void API minijail_namespace_ipc(struct minijail *j)
444{
445 j->flags.ipc = 1;
446}
447
Elly Fong-Jones6c086302013-03-20 17:15:28 -0400448void API minijail_namespace_net(struct minijail *j)
449{
450 j->flags.net = 1;
451}
452
Dylan Reid1102f5a2015-09-15 11:52:20 -0700453void API minijail_namespace_enter_net(struct minijail *j, const char *ns_path)
454{
Ricky Zhoubce609d2016-03-02 21:47:56 -0800455 int ns_fd = open(ns_path, O_RDONLY | O_CLOEXEC);
Dylan Reid1102f5a2015-09-15 11:52:20 -0700456 if (ns_fd < 0) {
457 pdie("failed to open namespace '%s'", ns_path);
458 }
459 j->netns_fd = ns_fd;
460 j->flags.enter_net = 1;
461}
462
Dylan Reid4cbc2a52016-06-17 19:06:07 -0700463void API minijail_namespace_cgroups(struct minijail *j)
464{
465 j->flags.ns_cgroups = 1;
466}
467
Dylan Reid791f5772015-09-14 20:02:42 -0700468void API minijail_remount_proc_readonly(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400469{
470 j->flags.vfs = 1;
Dylan Reid791f5772015-09-14 20:02:42 -0700471 j->flags.remount_proc_ro = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400472}
473
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800474void API minijail_namespace_user(struct minijail *j)
475{
476 j->flags.userns = 1;
477}
478
479int API minijail_uidmap(struct minijail *j, const char *uidmap)
480{
481 j->uidmap = strdup(uidmap);
482 if (!j->uidmap)
483 return -ENOMEM;
Yu-Hsi Chiang1912c5b2015-08-31 18:59:49 +0800484 char *ch;
485 for (ch = j->uidmap; *ch; ch++) {
486 if (*ch == ',')
487 *ch = '\n';
488 }
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800489 return 0;
490}
491
492int API minijail_gidmap(struct minijail *j, const char *gidmap)
493{
494 j->gidmap = strdup(gidmap);
495 if (!j->gidmap)
496 return -ENOMEM;
Yu-Hsi Chiang1912c5b2015-08-31 18:59:49 +0800497 char *ch;
498 for (ch = j->gidmap; *ch; ch++) {
499 if (*ch == ',')
500 *ch = '\n';
501 }
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800502 return 0;
503}
504
Will Drewry6ac91122011-10-21 16:38:58 -0500505void API minijail_inherit_usergroups(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400506{
507 j->flags.usergroups = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400508}
509
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800510void API minijail_run_as_init(struct minijail *j)
511{
512 /*
513 * Since the jailed program will become 'init' in the new PID namespace,
514 * Minijail does not need to fork an 'init' process.
515 */
516 j->flags.do_init = 0;
517}
518
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700519int API minijail_enter_chroot(struct minijail *j, const char *dir)
520{
Elly Jones51a5b6c2011-10-12 19:09:26 -0400521 if (j->chrootdir)
522 return -EINVAL;
523 j->chrootdir = strdup(dir);
524 if (!j->chrootdir)
525 return -ENOMEM;
526 j->flags.chroot = 1;
527 return 0;
528}
529
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +0800530int API minijail_enter_pivot_root(struct minijail *j, const char *dir)
531{
532 if (j->chrootdir)
533 return -EINVAL;
534 j->chrootdir = strdup(dir);
535 if (!j->chrootdir)
536 return -ENOMEM;
537 j->flags.pivot_root = 1;
538 return 0;
539}
540
Dylan Reida14e08d2015-10-22 21:05:29 -0700541static char *append_external_path(const char *external_path,
542 const char *path_inside_chroot)
Dylan Reid08946cc2015-09-16 19:10:57 -0700543{
Dylan Reida14e08d2015-10-22 21:05:29 -0700544 char *path;
Dylan Reid08946cc2015-09-16 19:10:57 -0700545 size_t pathlen;
546
Dylan Reid08946cc2015-09-16 19:10:57 -0700547 /* One extra char for '/' and one for '\0', hence + 2. */
Dylan Reida14e08d2015-10-22 21:05:29 -0700548 pathlen = strlen(path_inside_chroot) + strlen(external_path) + 2;
549 path = malloc(pathlen);
550 snprintf(path, pathlen, "%s/%s", external_path, path_inside_chroot);
Dylan Reid08946cc2015-09-16 19:10:57 -0700551
Dylan Reida14e08d2015-10-22 21:05:29 -0700552 return path;
553}
554
555char API *minijail_get_original_path(struct minijail *j,
556 const char *path_inside_chroot)
557{
Dylan Reid648b2202015-10-23 00:50:00 -0700558 struct mountpoint *b;
Dylan Reida14e08d2015-10-22 21:05:29 -0700559
Dylan Reid648b2202015-10-23 00:50:00 -0700560 b = j->mounts_head;
Dylan Reida14e08d2015-10-22 21:05:29 -0700561 while (b) {
562 /*
563 * If |path_inside_chroot| is the exact destination of a
Dylan Reid648b2202015-10-23 00:50:00 -0700564 * mount, then the original path is exactly the source of
565 * the mount.
Dylan Reida14e08d2015-10-22 21:05:29 -0700566 * for example: "-b /some/path/exe,/chroot/path/exe"
Dylan Reid648b2202015-10-23 00:50:00 -0700567 * mount source = /some/path/exe, mount dest =
568 * /chroot/path/exe Then when getting the original path of
569 * "/chroot/path/exe", the source of that mount,
570 * "/some/path/exe" is what should be returned.
Dylan Reida14e08d2015-10-22 21:05:29 -0700571 */
572 if (!strcmp(b->dest, path_inside_chroot))
573 return strdup(b->src);
574
575 /*
576 * If |path_inside_chroot| is within the destination path of a
Dylan Reid648b2202015-10-23 00:50:00 -0700577 * mount, take the suffix of the chroot path relative to the
578 * mount destination path, and append it to the mount source
579 * path.
Dylan Reida14e08d2015-10-22 21:05:29 -0700580 */
581 if (!strncmp(b->dest, path_inside_chroot, strlen(b->dest))) {
582 const char *relative_path =
583 path_inside_chroot + strlen(b->dest);
584 return append_external_path(b->src, relative_path);
585 }
586 b = b->next;
587 }
588
589 /* If there is a chroot path, append |path_inside_chroot| to that. */
590 if (j->chrootdir)
591 return append_external_path(j->chrootdir, path_inside_chroot);
592
593 /* No chroot, so the path outside is the same as it is inside. */
594 return strdup(path_inside_chroot);
Dylan Reid08946cc2015-09-16 19:10:57 -0700595}
596
Lee Campbell11af0622014-05-22 12:36:04 -0700597void API minijail_mount_tmp(struct minijail *j)
598{
599 j->flags.mount_tmp = 1;
600}
601
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800602int API minijail_write_pid_file(struct minijail *j, const char *path)
603{
604 j->pid_file_path = strdup(path);
605 if (!j->pid_file_path)
606 return -ENOMEM;
607 j->flags.pid_file = 1;
608 return 0;
609}
610
Dylan Reid605ce7f2016-01-19 19:21:00 -0800611int API minijail_add_to_cgroup(struct minijail *j, const char *path)
612{
613 if (j->cgroup_count >= MAX_CGROUPS)
614 return -ENOMEM;
615 j->cgroups[j->cgroup_count] = strdup(path);
616 if (!j->cgroups[j->cgroup_count])
617 return -ENOMEM;
618 j->cgroup_count++;
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800619 j->flags.cgroups = 1;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800620 return 0;
621}
622
Dylan Reid81e23972016-05-18 14:06:35 -0700623int API minijail_mount_with_data(struct minijail *j, const char *src,
624 const char *dest, const char *type,
625 unsigned long flags, const char *data)
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700626{
Dylan Reid648b2202015-10-23 00:50:00 -0700627 struct mountpoint *m;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400628
629 if (*dest != '/')
630 return -EINVAL;
Dylan Reid648b2202015-10-23 00:50:00 -0700631 m = calloc(1, sizeof(*m));
632 if (!m)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400633 return -ENOMEM;
Dylan Reid648b2202015-10-23 00:50:00 -0700634 m->dest = strdup(dest);
635 if (!m->dest)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400636 goto error;
Dylan Reid648b2202015-10-23 00:50:00 -0700637 m->src = strdup(src);
638 if (!m->src)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400639 goto error;
Dylan Reid648b2202015-10-23 00:50:00 -0700640 m->type = strdup(type);
641 if (!m->type)
642 goto error;
Dylan Reid81e23972016-05-18 14:06:35 -0700643 if (data) {
644 m->data = strdup(data);
645 if (!m->data)
646 goto error;
647 m->has_data = 1;
648 }
Dylan Reid648b2202015-10-23 00:50:00 -0700649 m->flags = flags;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400650
Jorge Lucangeli Obes6c755d22016-01-28 15:24:40 -0800651 info("mount %s -> %s type '%s'", src, dest, type);
Elly Jones51a5b6c2011-10-12 19:09:26 -0400652
Elly Jonesdd3e8512012-01-23 15:13:38 -0500653 /*
Dylan Reid648b2202015-10-23 00:50:00 -0700654 * Force vfs namespacing so the mounts don't leak out into the
Elly Jones51a5b6c2011-10-12 19:09:26 -0400655 * containing vfs namespace.
656 */
657 minijail_namespace_vfs(j);
658
Dylan Reid648b2202015-10-23 00:50:00 -0700659 if (j->mounts_tail)
660 j->mounts_tail->next = m;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400661 else
Dylan Reid648b2202015-10-23 00:50:00 -0700662 j->mounts_head = m;
663 j->mounts_tail = m;
664 j->mounts_count++;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400665
666 return 0;
667
668error:
Dylan Reid81e23972016-05-18 14:06:35 -0700669 free(m->type);
Dylan Reid648b2202015-10-23 00:50:00 -0700670 free(m->src);
671 free(m->dest);
672 free(m);
Elly Jones51a5b6c2011-10-12 19:09:26 -0400673 return -ENOMEM;
674}
675
Dylan Reid81e23972016-05-18 14:06:35 -0700676int API minijail_mount(struct minijail *j, const char *src, const char *dest,
677 const char *type, unsigned long flags)
678{
679 return minijail_mount_with_data(j, src, dest, type, flags, NULL);
680}
681
Dylan Reid648b2202015-10-23 00:50:00 -0700682int API minijail_bind(struct minijail *j, const char *src, const char *dest,
683 int writeable)
684{
685 unsigned long flags = MS_BIND;
686
687 if (!writeable)
688 flags |= MS_RDONLY;
689
690 return minijail_mount(j, src, dest, "", flags);
691}
692
Will Drewry6ac91122011-10-21 16:38:58 -0500693void API minijail_parse_seccomp_filters(struct minijail *j, const char *path)
Elly Jonese1749eb2011-10-07 13:54:59 -0400694{
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -0700695 if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, NULL)) {
Jeff Vander Stoep2885bef2016-01-11 15:22:42 -0800696 if ((errno == EINVAL) && can_softfail()) {
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -0800697 warn("not loading seccomp filter,"
698 " seccomp not supported");
Jeff Vander Stoep2885bef2016-01-11 15:22:42 -0800699 j->flags.seccomp_filter = 0;
700 j->flags.log_seccomp_filter = 0;
701 j->filter_len = 0;
702 j->filter_prog = NULL;
703 j->flags.no_new_privs = 0;
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -0700704 }
705 }
Elly Jonese1749eb2011-10-07 13:54:59 -0400706 FILE *file = fopen(path, "r");
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800707 if (!file) {
Jorge Lucangeli Obes224e4272012-08-02 14:31:39 -0700708 pdie("failed to open seccomp filter file '%s'", path);
Elly Jonese1749eb2011-10-07 13:54:59 -0400709 }
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800710
711 struct sock_fprog *fprog = malloc(sizeof(struct sock_fprog));
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700712 if (compile_filter(file, fprog, j->flags.log_seccomp_filter)) {
713 die("failed to compile seccomp filter BPF program in '%s'",
714 path);
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800715 }
716
717 j->filter_len = fprog->len;
718 j->filter_prog = fprog;
719
Elly Jonese1749eb2011-10-07 13:54:59 -0400720 fclose(file);
Will Drewry32ac9f52011-08-18 21:36:27 -0500721}
722
Andrew Brestickereac28942015-11-11 16:04:46 -0800723int API minijail_use_alt_syscall(struct minijail *j, const char *table)
724{
725 j->alt_syscall_table = strdup(table);
726 if (!j->alt_syscall_table)
727 return -ENOMEM;
728 j->flags.alt_syscall = 1;
729 return 0;
730}
731
Will Drewryf89aef52011-09-16 16:48:57 -0500732struct marshal_state {
Elly Jonese1749eb2011-10-07 13:54:59 -0400733 size_t available;
734 size_t total;
735 char *buf;
Will Drewryf89aef52011-09-16 16:48:57 -0500736};
737
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800738void marshal_state_init(struct marshal_state *state, char *buf,
739 size_t available)
Elly Jonese1749eb2011-10-07 13:54:59 -0400740{
741 state->available = available;
742 state->buf = buf;
743 state->total = 0;
Will Drewryf89aef52011-09-16 16:48:57 -0500744}
745
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800746void marshal_append(struct marshal_state *state, void *src, size_t length)
Elly Jonese1749eb2011-10-07 13:54:59 -0400747{
748 size_t copy_len = MIN(state->available, length);
Will Drewryf89aef52011-09-16 16:48:57 -0500749
Elly Jonese1749eb2011-10-07 13:54:59 -0400750 /* Up to |available| will be written. */
751 if (copy_len) {
752 memcpy(state->buf, src, copy_len);
753 state->buf += copy_len;
754 state->available -= copy_len;
755 }
756 /* |total| will contain the expected length. */
757 state->total += length;
Will Drewryf89aef52011-09-16 16:48:57 -0500758}
759
Dylan Reid81e23972016-05-18 14:06:35 -0700760static void minijail_marshal_mount(struct marshal_state *state,
761 const struct mountpoint *m)
762{
763 marshal_append(state, m->src, strlen(m->src) + 1);
764 marshal_append(state, m->dest, strlen(m->dest) + 1);
765 marshal_append(state, m->type, strlen(m->type) + 1);
766 marshal_append(state, (char *)&m->has_data, sizeof(m->has_data));
767 if (m->has_data)
768 marshal_append(state, m->data, strlen(m->data) + 1);
769 marshal_append(state, (char *)&m->flags, sizeof(m->flags));
770}
771
Will Drewry6ac91122011-10-21 16:38:58 -0500772void minijail_marshal_helper(struct marshal_state *state,
773 const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400774{
Dylan Reid648b2202015-10-23 00:50:00 -0700775 struct mountpoint *m = NULL;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800776 size_t i;
777
Elly Jonese1749eb2011-10-07 13:54:59 -0400778 marshal_append(state, (char *)j, sizeof(*j));
779 if (j->user)
780 marshal_append(state, j->user, strlen(j->user) + 1);
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800781 if (j->suppl_gid_list) {
782 marshal_append(state, j->suppl_gid_list,
783 j->suppl_gid_count * sizeof(gid_t));
784 }
Elly Jones51a5b6c2011-10-12 19:09:26 -0400785 if (j->chrootdir)
786 marshal_append(state, j->chrootdir, strlen(j->chrootdir) + 1);
Andrew Brestickereac28942015-11-11 16:04:46 -0800787 if (j->alt_syscall_table) {
788 marshal_append(state, j->alt_syscall_table,
789 strlen(j->alt_syscall_table) + 1);
790 }
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800791 if (j->flags.seccomp_filter && j->filter_prog) {
792 struct sock_fprog *fp = j->filter_prog;
793 marshal_append(state, (char *)fp->filter,
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800794 fp->len * sizeof(struct sock_filter));
Elly Jonese1749eb2011-10-07 13:54:59 -0400795 }
Dylan Reid648b2202015-10-23 00:50:00 -0700796 for (m = j->mounts_head; m; m = m->next) {
Dylan Reid81e23972016-05-18 14:06:35 -0700797 minijail_marshal_mount(state, m);
Elly Jones51a5b6c2011-10-12 19:09:26 -0400798 }
Dylan Reid605ce7f2016-01-19 19:21:00 -0800799 for (i = 0; i < j->cgroup_count; ++i)
800 marshal_append(state, j->cgroups[i], strlen(j->cgroups[i]) + 1);
Will Drewryf89aef52011-09-16 16:48:57 -0500801}
802
Will Drewry6ac91122011-10-21 16:38:58 -0500803size_t API minijail_size(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400804{
805 struct marshal_state state;
806 marshal_state_init(&state, NULL, 0);
807 minijail_marshal_helper(&state, j);
808 return state.total;
Will Drewry2ddaad02011-09-16 11:36:08 -0500809}
810
Elly Jonese1749eb2011-10-07 13:54:59 -0400811int minijail_marshal(const struct minijail *j, char *buf, size_t available)
812{
813 struct marshal_state state;
814 marshal_state_init(&state, buf, available);
815 minijail_marshal_helper(&state, j);
816 return (state.total > available);
Will Drewry2ddaad02011-09-16 11:36:08 -0500817}
818
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -0800819/*
820 * consumebytes: consumes @length bytes from a buffer @buf of length @buflength
Elly Jones51a5b6c2011-10-12 19:09:26 -0400821 * @length Number of bytes to consume
822 * @buf Buffer to consume from
823 * @buflength Size of @buf
824 *
825 * Returns a pointer to the base of the bytes, or NULL for errors.
826 */
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700827void *consumebytes(size_t length, char **buf, size_t *buflength)
828{
Elly Jones51a5b6c2011-10-12 19:09:26 -0400829 char *p = *buf;
830 if (length > *buflength)
831 return NULL;
832 *buf += length;
833 *buflength -= length;
834 return p;
835}
836
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -0800837/*
838 * consumestr: consumes a C string from a buffer @buf of length @length
Elly Jones51a5b6c2011-10-12 19:09:26 -0400839 * @buf Buffer to consume
840 * @length Length of buffer
841 *
842 * Returns a pointer to the base of the string, or NULL for errors.
843 */
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700844char *consumestr(char **buf, size_t *buflength)
845{
Elly Jones51a5b6c2011-10-12 19:09:26 -0400846 size_t len = strnlen(*buf, *buflength);
847 if (len == *buflength)
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -0700848 /* There's no null-terminator. */
Elly Jones51a5b6c2011-10-12 19:09:26 -0400849 return NULL;
850 return consumebytes(len + 1, buf, buflength);
851}
852
Elly Jonese1749eb2011-10-07 13:54:59 -0400853int minijail_unmarshal(struct minijail *j, char *serialized, size_t length)
854{
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800855 size_t i;
856 size_t count;
Will Drewrybee7ba72011-10-21 20:47:01 -0500857 int ret = -EINVAL;
858
Elly Jonese1749eb2011-10-07 13:54:59 -0400859 if (length < sizeof(*j))
Will Drewrybee7ba72011-10-21 20:47:01 -0500860 goto out;
Elly Jonese1749eb2011-10-07 13:54:59 -0400861 memcpy((void *)j, serialized, sizeof(*j));
862 serialized += sizeof(*j);
863 length -= sizeof(*j);
Will Drewryf89aef52011-09-16 16:48:57 -0500864
Will Drewrybee7ba72011-10-21 20:47:01 -0500865 /* Potentially stale pointers not used as signals. */
Jorge Lucangeli Obes3b2e6e42016-08-04 12:26:19 -0400866 j->pid_file_path = NULL;
867 j->uidmap = NULL;
868 j->gidmap = NULL;
Dylan Reid648b2202015-10-23 00:50:00 -0700869 j->mounts_head = NULL;
870 j->mounts_tail = NULL;
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800871 j->filter_prog = NULL;
Will Drewrybee7ba72011-10-21 20:47:01 -0500872
Elly Jonese1749eb2011-10-07 13:54:59 -0400873 if (j->user) { /* stale pointer */
Elly Jones51a5b6c2011-10-12 19:09:26 -0400874 char *user = consumestr(&serialized, &length);
875 if (!user)
Will Drewrybee7ba72011-10-21 20:47:01 -0500876 goto clear_pointers;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400877 j->user = strdup(user);
Will Drewrybee7ba72011-10-21 20:47:01 -0500878 if (!j->user)
879 goto clear_pointers;
Elly Jonese1749eb2011-10-07 13:54:59 -0400880 }
Will Drewryf89aef52011-09-16 16:48:57 -0500881
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800882 if (j->suppl_gid_list) { /* stale pointer */
883 if (j->suppl_gid_count > NGROUPS_MAX) {
884 goto bad_gid_list;
885 }
886 size_t gid_list_size = j->suppl_gid_count * sizeof(gid_t);
887 void *gid_list_bytes =
888 consumebytes(gid_list_size, &serialized, &length);
889 if (!gid_list_bytes)
890 goto bad_gid_list;
891
892 j->suppl_gid_list = calloc(j->suppl_gid_count, sizeof(gid_t));
893 if (!j->suppl_gid_list)
894 goto bad_gid_list;
895
896 memcpy(j->suppl_gid_list, gid_list_bytes, gid_list_size);
897 }
898
Elly Jonesa8d1e1b2011-10-21 15:38:00 -0400899 if (j->chrootdir) { /* stale pointer */
900 char *chrootdir = consumestr(&serialized, &length);
901 if (!chrootdir)
Will Drewrybee7ba72011-10-21 20:47:01 -0500902 goto bad_chrootdir;
Elly Jonesa8d1e1b2011-10-21 15:38:00 -0400903 j->chrootdir = strdup(chrootdir);
Will Drewrybee7ba72011-10-21 20:47:01 -0500904 if (!j->chrootdir)
905 goto bad_chrootdir;
Elly Jonesa8d1e1b2011-10-21 15:38:00 -0400906 }
907
Andrew Brestickereac28942015-11-11 16:04:46 -0800908 if (j->alt_syscall_table) { /* stale pointer */
909 char *alt_syscall_table = consumestr(&serialized, &length);
910 if (!alt_syscall_table)
911 goto bad_syscall_table;
912 j->alt_syscall_table = strdup(alt_syscall_table);
913 if (!j->alt_syscall_table)
914 goto bad_syscall_table;
915 }
916
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800917 if (j->flags.seccomp_filter && j->filter_len > 0) {
918 size_t ninstrs = j->filter_len;
919 if (ninstrs > (SIZE_MAX / sizeof(struct sock_filter)) ||
920 ninstrs > USHRT_MAX)
921 goto bad_filters;
922
923 size_t program_len = ninstrs * sizeof(struct sock_filter);
924 void *program = consumebytes(program_len, &serialized, &length);
925 if (!program)
926 goto bad_filters;
927
928 j->filter_prog = malloc(sizeof(struct sock_fprog));
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800929 if (!j->filter_prog)
930 goto bad_filters;
931
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800932 j->filter_prog->len = ninstrs;
933 j->filter_prog->filter = malloc(program_len);
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800934 if (!j->filter_prog->filter)
935 goto bad_filter_prog_instrs;
936
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800937 memcpy(j->filter_prog->filter, program, program_len);
Elly Jonese1749eb2011-10-07 13:54:59 -0400938 }
Elly Jones51a5b6c2011-10-12 19:09:26 -0400939
Dylan Reid648b2202015-10-23 00:50:00 -0700940 count = j->mounts_count;
941 j->mounts_count = 0;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400942 for (i = 0; i < count; ++i) {
Dylan Reid648b2202015-10-23 00:50:00 -0700943 unsigned long *flags;
Dylan Reid81e23972016-05-18 14:06:35 -0700944 int *has_data;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400945 const char *dest;
Dylan Reid648b2202015-10-23 00:50:00 -0700946 const char *type;
Dylan Reid81e23972016-05-18 14:06:35 -0700947 const char *data = NULL;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400948 const char *src = consumestr(&serialized, &length);
949 if (!src)
Dylan Reid648b2202015-10-23 00:50:00 -0700950 goto bad_mounts;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400951 dest = consumestr(&serialized, &length);
952 if (!dest)
Dylan Reid648b2202015-10-23 00:50:00 -0700953 goto bad_mounts;
954 type = consumestr(&serialized, &length);
955 if (!type)
956 goto bad_mounts;
Dylan Reid81e23972016-05-18 14:06:35 -0700957 has_data = consumebytes(sizeof(*has_data), &serialized,
958 &length);
959 if (!has_data)
960 goto bad_mounts;
961 if (*has_data) {
962 data = consumestr(&serialized, &length);
963 if (!data)
964 goto bad_mounts;
965 }
Dylan Reid648b2202015-10-23 00:50:00 -0700966 flags = consumebytes(sizeof(*flags), &serialized, &length);
967 if (!flags)
968 goto bad_mounts;
Dylan Reid81e23972016-05-18 14:06:35 -0700969 if (minijail_mount_with_data(j, src, dest, type, *flags, data))
Dylan Reid648b2202015-10-23 00:50:00 -0700970 goto bad_mounts;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400971 }
972
Dylan Reid605ce7f2016-01-19 19:21:00 -0800973 count = j->cgroup_count;
974 j->cgroup_count = 0;
975 for (i = 0; i < count; ++i) {
976 char *cgroup = consumestr(&serialized, &length);
977 if (!cgroup)
978 goto bad_cgroups;
979 j->cgroups[i] = strdup(cgroup);
980 if (!j->cgroups[i])
981 goto bad_cgroups;
982 ++j->cgroup_count;
983 }
984
Elly Jonese1749eb2011-10-07 13:54:59 -0400985 return 0;
Will Drewrybee7ba72011-10-21 20:47:01 -0500986
Dylan Reid605ce7f2016-01-19 19:21:00 -0800987bad_cgroups:
988 while (j->mounts_head) {
989 struct mountpoint *m = j->mounts_head;
990 j->mounts_head = j->mounts_head->next;
Dylan Reid81e23972016-05-18 14:06:35 -0700991 free(m->data);
Dylan Reid605ce7f2016-01-19 19:21:00 -0800992 free(m->type);
993 free(m->dest);
994 free(m->src);
995 free(m);
996 }
997 for (i = 0; i < j->cgroup_count; ++i)
998 free(j->cgroups[i]);
Dylan Reid648b2202015-10-23 00:50:00 -0700999bad_mounts:
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08001000 if (j->flags.seccomp_filter && j->filter_len > 0) {
1001 free(j->filter_prog->filter);
1002 free(j->filter_prog);
1003 }
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001004bad_filter_prog_instrs:
1005 if (j->filter_prog)
1006 free(j->filter_prog);
Will Drewrybee7ba72011-10-21 20:47:01 -05001007bad_filters:
Andrew Brestickereac28942015-11-11 16:04:46 -08001008 if (j->alt_syscall_table)
1009 free(j->alt_syscall_table);
1010bad_syscall_table:
Will Drewrybee7ba72011-10-21 20:47:01 -05001011 if (j->chrootdir)
1012 free(j->chrootdir);
1013bad_chrootdir:
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001014 if (j->suppl_gid_list)
1015 free(j->suppl_gid_list);
1016bad_gid_list:
Will Drewrybee7ba72011-10-21 20:47:01 -05001017 if (j->user)
1018 free(j->user);
1019clear_pointers:
1020 j->user = NULL;
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001021 j->suppl_gid_list = NULL;
Will Drewrybee7ba72011-10-21 20:47:01 -05001022 j->chrootdir = NULL;
Andrew Brestickereac28942015-11-11 16:04:46 -08001023 j->alt_syscall_table = NULL;
Dylan Reid605ce7f2016-01-19 19:21:00 -08001024 j->cgroup_count = 0;
Will Drewrybee7ba72011-10-21 20:47:01 -05001025out:
1026 return ret;
Will Drewry2ddaad02011-09-16 11:36:08 -05001027}
1028
Dylan Reidce5b55e2016-01-13 11:04:16 -08001029static void write_ugid_mappings(const struct minijail *j)
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001030{
1031 int fd, ret, len;
1032 size_t sz;
1033 char fname[32];
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001034
1035 sz = sizeof(fname);
1036 if (j->uidmap) {
1037 ret = snprintf(fname, sz, "/proc/%d/uid_map", j->initpid);
Jorge Lucangeli Obes20342742015-10-27 11:39:59 -07001038 if (ret < 0 || (size_t)ret >= sz)
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001039 die("failed to write file name of uid_map");
Ricky Zhoubce609d2016-03-02 21:47:56 -08001040 fd = open(fname, O_WRONLY | O_CLOEXEC);
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001041 if (fd < 0)
1042 pdie("failed to open '%s'", fname);
1043 len = strlen(j->uidmap);
1044 if (write(fd, j->uidmap, len) < len)
1045 die("failed to set uid_map");
1046 close(fd);
1047 }
1048 if (j->gidmap) {
1049 ret = snprintf(fname, sz, "/proc/%d/gid_map", j->initpid);
Jorge Lucangeli Obes20342742015-10-27 11:39:59 -07001050 if (ret < 0 || (size_t)ret >= sz)
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001051 die("failed to write file name of gid_map");
Ricky Zhoubce609d2016-03-02 21:47:56 -08001052 fd = open(fname, O_WRONLY | O_CLOEXEC);
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001053 if (fd < 0)
1054 pdie("failed to open '%s'", fname);
1055 len = strlen(j->gidmap);
1056 if (write(fd, j->gidmap, len) < len)
1057 die("failed to set gid_map");
1058 close(fd);
1059 }
Dylan Reidce5b55e2016-01-13 11:04:16 -08001060}
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001061
Dylan Reidce5b55e2016-01-13 11:04:16 -08001062static void parent_setup_complete(int *pipe_fds)
1063{
1064 close(pipe_fds[0]);
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001065 close(pipe_fds[1]);
1066}
1067
Dylan Reidce5b55e2016-01-13 11:04:16 -08001068/*
1069 * wait_for_parent_setup: Called by the child process to wait for any
1070 * further parent-side setup to complete before continuing.
1071 */
1072static void wait_for_parent_setup(int *pipe_fds)
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001073{
1074 char buf;
1075
1076 close(pipe_fds[1]);
1077
Dylan Reidce5b55e2016-01-13 11:04:16 -08001078 /* Wait for parent to complete setup and close the pipe. */
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001079 if (read(pipe_fds[0], &buf, 1) != 0)
1080 die("failed to sync with parent");
1081 close(pipe_fds[0]);
Dylan Reidce5b55e2016-01-13 11:04:16 -08001082}
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001083
Dylan Reidce5b55e2016-01-13 11:04:16 -08001084static void enter_user_namespace(const struct minijail *j)
1085{
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001086 if (j->uidmap && setresuid(0, 0, 0))
1087 pdie("setresuid");
1088 if (j->gidmap && setresgid(0, 0, 0))
1089 pdie("setresgid");
1090}
1091
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001092/*
Dylan Reideec77962016-06-30 19:35:10 -07001093 * Make sure the mount target exists. Create it if needed and possible.
1094 */
1095static int setup_mount_destination(const char *source, const char *dest,
1096 uid_t uid, uid_t gid)
1097{
1098 int rc;
1099 struct stat st_buf;
1100
1101 rc = stat(dest, &st_buf);
1102 if (rc == 0) /* destination exists */
1103 return 0;
1104
1105 /*
1106 * Try to create the destination.
1107 * Either make a directory or touch a file depending on the source type.
1108 * If the source doesn't exist, assume it is a filesystem type such as
1109 * "tmpfs" and create a directory to mount it on.
1110 */
1111 rc = stat(source, &st_buf);
1112 if (rc || S_ISDIR(st_buf.st_mode) || S_ISBLK(st_buf.st_mode)) {
1113 if (mkdir(dest, 0700))
1114 return -errno;
1115 } else {
1116 int fd = open(dest, O_RDWR | O_CREAT, 0700);
1117 if (fd < 0)
1118 return -errno;
1119 close(fd);
1120 }
1121 return chown(dest, uid, gid);
1122}
1123
1124/*
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001125 * mount_one: Applies mounts from @m for @j, recursing as needed.
Dylan Reid648b2202015-10-23 00:50:00 -07001126 * @j Minijail these mounts are for
1127 * @m Head of list of mounts
Elly Jones51a5b6c2011-10-12 19:09:26 -04001128 *
1129 * Returns 0 for success.
1130 */
Dylan Reid648b2202015-10-23 00:50:00 -07001131static int mount_one(const struct minijail *j, struct mountpoint *m)
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -07001132{
Dylan Reid648b2202015-10-23 00:50:00 -07001133 int ret;
1134 char *dest;
1135 int remount_ro = 0;
1136
Jorge Lucangeli Obes2b12ba42016-01-26 10:37:51 -08001137 /* |dest| has a leading "/". */
Dylan Reid648b2202015-10-23 00:50:00 -07001138 if (asprintf(&dest, "%s%s", j->chrootdir, m->dest) < 0)
Elly Jones51a5b6c2011-10-12 19:09:26 -04001139 return -ENOMEM;
Dylan Reid648b2202015-10-23 00:50:00 -07001140
Dylan Reideec77962016-06-30 19:35:10 -07001141 if (setup_mount_destination(m->src, dest, j->uid, j->gid))
1142 pdie("creating mount target '%s' failed", dest);
1143
Dylan Reid648b2202015-10-23 00:50:00 -07001144 /*
Jorge Lucangeli Obes2b12ba42016-01-26 10:37:51 -08001145 * R/O bind mounts have to be remounted since 'bind' and 'ro'
1146 * can't both be specified in the original bind mount.
1147 * Remount R/O after the initial mount.
Dylan Reid648b2202015-10-23 00:50:00 -07001148 */
1149 if ((m->flags & MS_BIND) && (m->flags & MS_RDONLY)) {
1150 remount_ro = 1;
1151 m->flags &= ~MS_RDONLY;
Elly Jonesa1059632011-12-15 15:17:07 -05001152 }
Dylan Reid648b2202015-10-23 00:50:00 -07001153
Dylan Reid81e23972016-05-18 14:06:35 -07001154 ret = mount(m->src, dest, m->type, m->flags, m->data);
Dylan Reid648b2202015-10-23 00:50:00 -07001155 if (ret)
1156 pdie("mount: %s -> %s", m->src, dest);
1157
1158 if (remount_ro) {
1159 m->flags |= MS_RDONLY;
1160 ret = mount(m->src, dest, NULL,
Dylan Reid81e23972016-05-18 14:06:35 -07001161 m->flags | MS_REMOUNT, m->data);
Dylan Reid648b2202015-10-23 00:50:00 -07001162 if (ret)
1163 pdie("bind ro: %s -> %s", m->src, dest);
1164 }
1165
Elly Jones51a5b6c2011-10-12 19:09:26 -04001166 free(dest);
Dylan Reid648b2202015-10-23 00:50:00 -07001167 if (m->next)
1168 return mount_one(j, m->next);
Elly Jones51a5b6c2011-10-12 19:09:26 -04001169 return ret;
1170}
1171
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -07001172int enter_chroot(const struct minijail *j)
1173{
Elly Jones51a5b6c2011-10-12 19:09:26 -04001174 int ret;
Dylan Reid648b2202015-10-23 00:50:00 -07001175
1176 if (j->mounts_head && (ret = mount_one(j, j->mounts_head)))
Elly Jones51a5b6c2011-10-12 19:09:26 -04001177 return ret;
1178
1179 if (chroot(j->chrootdir))
1180 return -errno;
1181
1182 if (chdir("/"))
1183 return -errno;
1184
1185 return 0;
1186}
1187
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001188int enter_pivot_root(const struct minijail *j)
1189{
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001190 int ret, oldroot, newroot;
Dylan Reid648b2202015-10-23 00:50:00 -07001191
1192 if (j->mounts_head && (ret = mount_one(j, j->mounts_head)))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001193 return ret;
1194
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001195 /*
1196 * Keep the fd for both old and new root.
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001197 * It will be used in fchdir(2) later.
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001198 */
Ricky Zhoubce609d2016-03-02 21:47:56 -08001199 oldroot = open("/", O_DIRECTORY | O_RDONLY | O_CLOEXEC);
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001200 if (oldroot < 0)
1201 pdie("failed to open / for fchdir");
Ricky Zhoubce609d2016-03-02 21:47:56 -08001202 newroot = open(j->chrootdir, O_DIRECTORY | O_RDONLY | O_CLOEXEC);
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001203 if (newroot < 0)
1204 pdie("failed to open %s for fchdir", j->chrootdir);
1205
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001206 /*
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001207 * To ensure j->chrootdir is the root of a filesystem,
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001208 * do a self bind mount.
1209 */
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001210 if (mount(j->chrootdir, j->chrootdir, "bind", MS_BIND | MS_REC, ""))
1211 pdie("failed to bind mount '%s'", j->chrootdir);
1212 if (chdir(j->chrootdir))
1213 return -errno;
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001214 if (syscall(SYS_pivot_root, ".", "."))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001215 pdie("pivot_root");
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001216
1217 /*
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001218 * Now the old root is mounted on top of the new root. Use fchdir(2) to
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001219 * change to the old root and unmount it.
1220 */
1221 if (fchdir(oldroot))
1222 pdie("failed to fchdir to old /");
Hidehiko Abe097b7192016-03-16 18:00:36 +09001223
1224 /*
Jorge Lucangeli Obesdf7fab12016-06-01 17:15:31 -07001225 * If j->flags.skip_remount_private was enabled for minijail_enter(),
1226 * there could be a shared mount point under |oldroot|. In that case,
1227 * mounts under this shared mount point will be unmounted below, and
1228 * this unmounting will propagate to the original mount namespace
1229 * (because the mount point is shared). To prevent this unexpected
1230 * unmounting, remove these mounts from their peer groups by recursively
1231 * remounting them as MS_PRIVATE.
Hidehiko Abe097b7192016-03-16 18:00:36 +09001232 */
1233 if (mount(NULL, ".", NULL, MS_REC | MS_PRIVATE, NULL))
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001234 pdie("failed to mount(/, private) before umount(/)");
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001235 /* The old root might be busy, so use lazy unmount. */
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001236 if (umount2(".", MNT_DETACH))
1237 pdie("umount(/)");
1238 /* Change back to the new root. */
1239 if (fchdir(newroot))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001240 return -errno;
Ricky Zhoubce609d2016-03-02 21:47:56 -08001241 if (close(oldroot))
1242 return -errno;
1243 if (close(newroot))
1244 return -errno;
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001245 if (chroot("/"))
1246 return -errno;
Jorge Lucangeli Obes46a55092015-10-12 15:31:59 -07001247 /* Set correct CWD for getcwd(3). */
1248 if (chdir("/"))
1249 return -errno;
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001250
1251 return 0;
1252}
1253
Lee Campbell11af0622014-05-22 12:36:04 -07001254int mount_tmp(void)
1255{
Jorge Lucangeli Obes3901da62015-03-03 13:55:11 -08001256 return mount("none", "/tmp", "tmpfs", 0, "size=64M,mode=777");
Lee Campbell11af0622014-05-22 12:36:04 -07001257}
1258
Dylan Reid791f5772015-09-14 20:02:42 -07001259int remount_proc_readonly(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001260{
1261 const char *kProcPath = "/proc";
1262 const unsigned int kSafeFlags = MS_NODEV | MS_NOEXEC | MS_NOSUID;
Elly Jonesdd3e8512012-01-23 15:13:38 -05001263 /*
1264 * Right now, we're holding a reference to our parent's old mount of
Elly Jonese1749eb2011-10-07 13:54:59 -04001265 * /proc in our namespace, which means using MS_REMOUNT here would
1266 * mutate our parent's mount as well, even though we're in a VFS
Jorge Lucangeli Obesdf7fab12016-06-01 17:15:31 -07001267 * namespace (!). Instead, remove their mount from our namespace lazily
1268 * (MNT_DETACH) and make our own.
Elly Jonese1749eb2011-10-07 13:54:59 -04001269 */
Jorge Lucangeli Obesdf7fab12016-06-01 17:15:31 -07001270 if (umount2(kProcPath, MNT_DETACH)) {
1271 /*
1272 * If we are in a new user namespace, umount(2) will fail.
1273 * See http://man7.org/linux/man-pages/man7/user_namespaces.7.html
1274 */
1275 if (j->flags.userns) {
1276 info("umount(/proc, MNT_DETACH) failed, "
1277 "this is expected when using user namespaces");
1278 } else {
1279 return -errno;
1280 }
1281 }
Elly Jonese1749eb2011-10-07 13:54:59 -04001282 if (mount("", kProcPath, "proc", kSafeFlags | MS_RDONLY, ""))
1283 return -errno;
1284 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -04001285}
1286
Dylan Reid605ce7f2016-01-19 19:21:00 -08001287static void write_pid_to_path(pid_t pid, const char *path)
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001288{
Dylan Reid605ce7f2016-01-19 19:21:00 -08001289 FILE *fp = fopen(path, "w");
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001290
1291 if (!fp)
Dylan Reid605ce7f2016-01-19 19:21:00 -08001292 pdie("failed to open '%s'", path);
1293 if (fprintf(fp, "%d\n", (int)pid) < 0)
1294 pdie("fprintf(%s)", path);
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001295 if (fclose(fp))
Dylan Reid605ce7f2016-01-19 19:21:00 -08001296 pdie("fclose(%s)", path);
1297}
1298
1299static void write_pid_file(const struct minijail *j)
1300{
1301 write_pid_to_path(j->initpid, j->pid_file_path);
1302}
1303
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -08001304static void add_to_cgroups(const struct minijail *j)
Dylan Reid605ce7f2016-01-19 19:21:00 -08001305{
1306 size_t i;
1307
1308 for (i = 0; i < j->cgroup_count; ++i)
1309 write_pid_to_path(j->initpid, j->cgroups[i]);
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001310}
1311
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001312void drop_ugid(const struct minijail *j)
1313{
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -08001314 if (j->flags.usergroups && j->flags.suppl_gids) {
1315 die("tried to inherit *and* set supplementary groups;"
1316 " can only do one");
1317 }
1318
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001319 if (j->flags.usergroups) {
1320 if (initgroups(j->user, j->usergid))
1321 pdie("initgroups");
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -08001322 } else if (j->flags.suppl_gids) {
1323 if (setgroups(j->suppl_gid_count, j->suppl_gid_list)) {
1324 pdie("setgroups");
1325 }
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001326 } else {
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001327 /*
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -08001328 * Only attempt to clear supplementary groups if we are changing
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001329 * users.
1330 */
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001331 if ((j->uid || j->gid) && setgroups(0, NULL))
1332 pdie("setgroups");
1333 }
1334
1335 if (j->flags.gid && setresgid(j->gid, j->gid, j->gid))
1336 pdie("setresgid");
1337
1338 if (j->flags.uid && setresuid(j->uid, j->uid, j->uid))
1339 pdie("setresuid");
1340}
1341
Mike Frysinger3adfef72013-05-09 17:19:08 -04001342/*
1343 * We specifically do not use cap_valid() as that only tells us the last
1344 * valid cap we were *compiled* against (i.e. what the version of kernel
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001345 * headers says). If we run on a different kernel version, then it's not
Mike Frysinger3adfef72013-05-09 17:19:08 -04001346 * uncommon for that to be less (if an older kernel) or more (if a newer
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001347 * kernel).
1348 * Normally, we suck up the answer via /proc. On Android, not all processes are
1349 * guaranteed to be able to access '/proc/sys/kernel/cap_last_cap' so we
1350 * programmatically find the value by calling prctl(PR_CAPBSET_READ).
Mike Frysinger3adfef72013-05-09 17:19:08 -04001351 */
Jorge Lucangeli Obes20342742015-10-27 11:39:59 -07001352static unsigned int get_last_valid_cap()
Mike Frysinger3adfef72013-05-09 17:19:08 -04001353{
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001354 unsigned int last_valid_cap = 0;
1355 if (is_android()) {
1356 for (; prctl(PR_CAPBSET_READ, last_valid_cap, 0, 0, 0) >= 0;
1357 ++last_valid_cap);
Mike Frysinger3adfef72013-05-09 17:19:08 -04001358
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001359 /* |last_valid_cap| will be the first failing value. */
1360 if (last_valid_cap > 0) {
1361 last_valid_cap--;
1362 }
1363 } else {
1364 const char cap_file[] = "/proc/sys/kernel/cap_last_cap";
1365 FILE *fp = fopen(cap_file, "re");
1366 if (fscanf(fp, "%u", &last_valid_cap) != 1)
1367 pdie("fscanf(%s)", cap_file);
1368 fclose(fp);
1369 }
Dylan Reidf682d472015-09-17 21:39:07 -07001370 return last_valid_cap;
Mike Frysinger3adfef72013-05-09 17:19:08 -04001371}
1372
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001373static void drop_capbset(uint64_t keep_mask, unsigned int last_valid_cap)
1374{
1375 const uint64_t one = 1;
1376 unsigned int i;
1377 for (i = 0; i < sizeof(keep_mask) * 8 && i <= last_valid_cap; ++i) {
1378 if (keep_mask & (one << i))
1379 continue;
1380 if (prctl(PR_CAPBSET_DROP, i))
1381 pdie("could not drop capability from bounding set");
1382 }
1383}
1384
Jorge Lucangeli Obes20342742015-10-27 11:39:59 -07001385void drop_caps(const struct minijail *j, unsigned int last_valid_cap)
Elly Jonese1749eb2011-10-07 13:54:59 -04001386{
Jorge Lucangeli Obes7ea269e2016-02-26 22:07:09 -08001387 if (!j->flags.use_caps)
1388 return;
1389
Elly Jonese1749eb2011-10-07 13:54:59 -04001390 cap_t caps = cap_get_proc();
Kees Cook323878a2013-02-05 15:35:24 -08001391 cap_value_t flag[1];
Kees Cooke5609ac2013-02-06 14:12:41 -08001392 const uint64_t one = 1;
Elly Jonese1749eb2011-10-07 13:54:59 -04001393 unsigned int i;
1394 if (!caps)
1395 die("can't get process caps");
1396 if (cap_clear_flag(caps, CAP_INHERITABLE))
1397 die("can't clear inheritable caps");
1398 if (cap_clear_flag(caps, CAP_EFFECTIVE))
1399 die("can't clear effective caps");
1400 if (cap_clear_flag(caps, CAP_PERMITTED))
1401 die("can't clear permitted caps");
Dylan Reidf682d472015-09-17 21:39:07 -07001402 for (i = 0; i < sizeof(j->caps) * 8 && i <= last_valid_cap; ++i) {
Kees Cook323878a2013-02-05 15:35:24 -08001403 /* Keep CAP_SETPCAP for dropping bounding set bits. */
Kees Cooke5609ac2013-02-06 14:12:41 -08001404 if (i != CAP_SETPCAP && !(j->caps & (one << i)))
Elly Jonese1749eb2011-10-07 13:54:59 -04001405 continue;
Kees Cook323878a2013-02-05 15:35:24 -08001406 flag[0] = i;
1407 if (cap_set_flag(caps, CAP_EFFECTIVE, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04001408 die("can't add effective cap");
Kees Cook323878a2013-02-05 15:35:24 -08001409 if (cap_set_flag(caps, CAP_PERMITTED, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04001410 die("can't add permitted cap");
Kees Cook323878a2013-02-05 15:35:24 -08001411 if (cap_set_flag(caps, CAP_INHERITABLE, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04001412 die("can't add inheritable cap");
1413 }
1414 if (cap_set_proc(caps))
Kees Cook323878a2013-02-05 15:35:24 -08001415 die("can't apply initial cleaned capset");
1416
1417 /*
1418 * Instead of dropping bounding set first, do it here in case
1419 * the caller had a more permissive bounding set which could
1420 * have been used above to raise a capability that wasn't already
1421 * present. This requires CAP_SETPCAP, so we raised/kept it above.
1422 */
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001423 drop_capbset(j->caps, last_valid_cap);
Kees Cook323878a2013-02-05 15:35:24 -08001424
1425 /* If CAP_SETPCAP wasn't specifically requested, now we remove it. */
Kees Cooke5609ac2013-02-06 14:12:41 -08001426 if ((j->caps & (one << CAP_SETPCAP)) == 0) {
Kees Cook323878a2013-02-05 15:35:24 -08001427 flag[0] = CAP_SETPCAP;
1428 if (cap_set_flag(caps, CAP_EFFECTIVE, 1, flag, CAP_CLEAR))
1429 die("can't clear effective cap");
1430 if (cap_set_flag(caps, CAP_PERMITTED, 1, flag, CAP_CLEAR))
1431 die("can't clear permitted cap");
1432 if (cap_set_flag(caps, CAP_INHERITABLE, 1, flag, CAP_CLEAR))
1433 die("can't clear inheritable cap");
1434 }
1435
1436 if (cap_set_proc(caps))
1437 die("can't apply final cleaned capset");
1438
1439 cap_free(caps);
Elly Jonescd7a9042011-07-22 13:56:51 -04001440}
1441
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001442void set_seccomp_filter(const struct minijail *j)
1443{
1444 /*
1445 * Set no_new_privs. See </kernel/seccomp.c> and </kernel/sys.c>
1446 * in the kernel source tree for an explanation of the parameters.
1447 */
1448 if (j->flags.no_new_privs) {
1449 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0))
1450 pdie("prctl(PR_SET_NO_NEW_PRIVS)");
1451 }
1452
1453 /*
Jorge Lucangeli Obes2413f372016-04-06 18:43:10 -07001454 * Code running with ASan
1455 * (https://github.com/google/sanitizers/wiki/AddressSanitizer)
1456 * will make system calls not included in the syscall filter policy,
1457 * which will likely crash the program. Skip setting seccomp filter in
1458 * that case.
1459 * 'running_with_asan()' has no inputs and is completely defined at
1460 * build time, so this cannot be used by an attacker to skip setting
1461 * seccomp filter.
1462 */
1463 if (j->flags.seccomp_filter && running_with_asan()) {
1464 warn("running with ASan, not setting seccomp filter");
1465 return;
1466 }
1467
1468 /*
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001469 * If we're logging seccomp filter failures,
1470 * install the SIGSYS handler first.
1471 */
1472 if (j->flags.seccomp_filter && j->flags.log_seccomp_filter) {
1473 if (install_sigsys_handler())
1474 pdie("install SIGSYS handler");
1475 warn("logging seccomp filter failures");
1476 }
1477
1478 /*
1479 * Install the syscall filter.
1480 */
1481 if (j->flags.seccomp_filter) {
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001482 if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER,
1483 j->filter_prog)) {
Jeff Vander Stoep2885bef2016-01-11 15:22:42 -08001484 if ((errno == EINVAL) && can_softfail()) {
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001485 warn("seccomp not supported");
1486 return;
1487 }
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001488 pdie("prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER)");
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001489 }
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001490 }
1491}
1492
Will Drewry6ac91122011-10-21 16:38:58 -05001493void API minijail_enter(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001494{
Dylan Reidf682d472015-09-17 21:39:07 -07001495 /*
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08001496 * If we're dropping caps, get the last valid cap from /proc now,
1497 * since /proc can be unmounted before drop_caps() is called.
Dylan Reidf682d472015-09-17 21:39:07 -07001498 */
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08001499 unsigned int last_valid_cap = 0;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001500 if (j->flags.capbset_drop || j->flags.use_caps)
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08001501 last_valid_cap = get_last_valid_cap();
Dylan Reidf682d472015-09-17 21:39:07 -07001502
Elly Jonese1749eb2011-10-07 13:54:59 -04001503 if (j->flags.pids)
1504 die("tried to enter a pid-namespaced jail;"
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -07001505 " try minijail_run()?");
Elly Jonescd7a9042011-07-22 13:56:51 -04001506
Elly Jonese1749eb2011-10-07 13:54:59 -04001507 if (j->flags.usergroups && !j->user)
1508 die("usergroup inheritance without username");
Elly Jonescd7a9042011-07-22 13:56:51 -04001509
Elly Jonesdd3e8512012-01-23 15:13:38 -05001510 /*
1511 * We can't recover from failures if we've dropped privileges partially,
Elly Jonese1749eb2011-10-07 13:54:59 -04001512 * so we don't even try. If any of our operations fail, we abort() the
1513 * entire process.
1514 */
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -07001515 if (j->flags.enter_vfs && setns(j->mountns_fd, CLONE_NEWNS))
1516 pdie("setns(CLONE_NEWNS)");
1517
Jorge Lucangeli Obes805be392015-10-12 15:55:59 -07001518 if (j->flags.vfs) {
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08001519 if (unshare(CLONE_NEWNS))
1520 pdie("unshare(vfs)");
1521 /*
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001522 * Unless asked not to, remount all filesystems as private.
1523 * If they are shared, new bind mounts will creep out of our
1524 * namespace.
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08001525 * https://www.kernel.org/doc/Documentation/filesystems/sharedsubtree.txt
1526 */
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001527 if (!j->flags.skip_remount_private) {
1528 if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL))
1529 pdie("mount(/, private)");
1530 }
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08001531 }
Elly Fong-Jones6c086302013-03-20 17:15:28 -04001532
Dylan Reidf7942472015-11-18 17:55:26 -08001533 if (j->flags.ipc && unshare(CLONE_NEWIPC)) {
1534 pdie("unshare(ipc)");
1535 }
1536
Dylan Reid1102f5a2015-09-15 11:52:20 -07001537 if (j->flags.enter_net) {
1538 if (setns(j->netns_fd, CLONE_NEWNET))
1539 pdie("setns(CLONE_NEWNET)");
1540 } else if (j->flags.net && unshare(CLONE_NEWNET)) {
Elly Fong-Jones6c086302013-03-20 17:15:28 -04001541 pdie("unshare(net)");
Dylan Reid1102f5a2015-09-15 11:52:20 -07001542 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001543
Dylan Reid4cbc2a52016-06-17 19:06:07 -07001544 if (j->flags.ns_cgroups && unshare(CLONE_NEWCGROUP))
1545 pdie("unshare(cgroups)");
1546
Elly Jones51a5b6c2011-10-12 19:09:26 -04001547 if (j->flags.chroot && enter_chroot(j))
1548 pdie("chroot");
1549
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001550 if (j->flags.pivot_root && enter_pivot_root(j))
1551 pdie("pivot_root");
1552
Jorge Lucangeli Obes3901da62015-03-03 13:55:11 -08001553 if (j->flags.mount_tmp && mount_tmp())
Lee Campbell11af0622014-05-22 12:36:04 -07001554 pdie("mount_tmp");
1555
Dylan Reid791f5772015-09-14 20:02:42 -07001556 if (j->flags.remount_proc_ro && remount_proc_readonly(j))
Elly Jonese1749eb2011-10-07 13:54:59 -04001557 pdie("remount");
Elly Jonescd7a9042011-07-22 13:56:51 -04001558
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001559 /*
1560 * If we're only dropping capabilities from the bounding set, but not
1561 * from the thread's (permitted|inheritable|effective) sets, do it now.
1562 */
1563 if (j->flags.capbset_drop) {
1564 drop_capbset(j->cap_bset, last_valid_cap);
1565 }
1566
1567 if (j->flags.use_caps) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05001568 /*
1569 * POSIX capabilities are a bit tricky. If we drop our
Elly Jonese1749eb2011-10-07 13:54:59 -04001570 * capability to change uids, our attempt to use setuid()
1571 * below will fail. Hang on to root caps across setuid(), then
1572 * lock securebits.
1573 */
1574 if (prctl(PR_SET_KEEPCAPS, 1))
1575 pdie("prctl(PR_SET_KEEPCAPS)");
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -07001576
1577 /*
1578 * Kernels 4.3+ define a new securebit
1579 * (SECURE_NO_CAP_AMBIENT_RAISE), so using the SECURE_ALL_BITS
1580 * and SECURE_ALL_LOCKS masks from newer kernel headers will
1581 * return EPERM on older kernels. Detect this, and retry with
1582 * the right mask for older (2.6.26-4.2) kernels.
1583 */
1584 int securebits_ret = prctl(PR_SET_SECUREBITS,
1585 SECURE_ALL_BITS | SECURE_ALL_LOCKS);
1586 if (securebits_ret < 0) {
1587 if (errno == EPERM) {
1588 /* Possibly running on kernel < 4.3. */
1589 securebits_ret = prctl(
1590 PR_SET_SECUREBITS,
1591 OLD_SECURE_ALL_BITS | OLD_SECURE_ALL_LOCKS);
1592 }
1593 }
1594 if (securebits_ret < 0)
Elly Jonese1749eb2011-10-07 13:54:59 -04001595 pdie("prctl(PR_SET_SECUREBITS)");
1596 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001597
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07001598 if (j->flags.no_new_privs) {
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08001599 /*
1600 * If we're setting no_new_privs, we can drop privileges
1601 * before setting seccomp filter. This way filter policies
1602 * don't need to allow privilege-dropping syscalls.
1603 */
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001604 drop_ugid(j);
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08001605 drop_caps(j, last_valid_cap);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001606 set_seccomp_filter(j);
Elly Jonese1749eb2011-10-07 13:54:59 -04001607 } else {
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001608 /*
1609 * If we're not setting no_new_privs,
1610 * we need to set seccomp filter *before* dropping privileges.
1611 * WARNING: this means that filter policies *must* allow
1612 * setgroups()/setresgid()/setresuid() for dropping root and
1613 * capget()/capset()/prctl() for dropping caps.
1614 */
1615 set_seccomp_filter(j);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001616 drop_ugid(j);
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08001617 drop_caps(j, last_valid_cap);
Elly Jonese1749eb2011-10-07 13:54:59 -04001618 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001619
Elly Jonesdd3e8512012-01-23 15:13:38 -05001620 /*
Andrew Brestickereac28942015-11-11 16:04:46 -08001621 * Select the specified alternate syscall table. The table must not
1622 * block prctl(2) if we're using seccomp as well.
1623 */
1624 if (j->flags.alt_syscall) {
1625 if (prctl(PR_ALT_SYSCALL, 1, j->alt_syscall_table))
1626 pdie("prctl(PR_ALT_SYSCALL)");
1627 }
1628
1629 /*
Elly Jonesdd3e8512012-01-23 15:13:38 -05001630 * seccomp has to come last since it cuts off all the other
Elly Jonese1749eb2011-10-07 13:54:59 -04001631 * privilege-dropping syscalls :)
1632 */
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001633 if (j->flags.seccomp && prctl(PR_SET_SECCOMP, 1)) {
Jeff Vander Stoep2885bef2016-01-11 15:22:42 -08001634 if ((errno == EINVAL) && can_softfail()) {
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001635 warn("seccomp not supported");
1636 return;
1637 }
Elly Jonese1749eb2011-10-07 13:54:59 -04001638 pdie("prctl(PR_SET_SECCOMP)");
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001639 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001640}
1641
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04001642/* TODO(wad): will visibility affect this variable? */
Elly Jonescd7a9042011-07-22 13:56:51 -04001643static int init_exitstatus = 0;
1644
Will Drewry6ac91122011-10-21 16:38:58 -05001645void init_term(int __attribute__ ((unused)) sig)
Elly Jonese1749eb2011-10-07 13:54:59 -04001646{
1647 _exit(init_exitstatus);
Elly Jonescd7a9042011-07-22 13:56:51 -04001648}
1649
Will Drewry6ac91122011-10-21 16:38:58 -05001650int init(pid_t rootpid)
Elly Jonese1749eb2011-10-07 13:54:59 -04001651{
1652 pid_t pid;
1653 int status;
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04001654 /* So that we exit with the right status. */
Elly Jonese1749eb2011-10-07 13:54:59 -04001655 signal(SIGTERM, init_term);
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04001656 /* TODO(wad): self jail with seccomp filters here. */
Elly Jonese1749eb2011-10-07 13:54:59 -04001657 while ((pid = wait(&status)) > 0) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05001658 /*
1659 * This loop will only end when either there are no processes
Elly Jonese1749eb2011-10-07 13:54:59 -04001660 * left inside our pid namespace or we get a signal.
1661 */
1662 if (pid == rootpid)
1663 init_exitstatus = status;
1664 }
1665 if (!WIFEXITED(init_exitstatus))
1666 _exit(MINIJAIL_ERR_INIT);
1667 _exit(WEXITSTATUS(init_exitstatus));
Elly Jonescd7a9042011-07-22 13:56:51 -04001668}
1669
Will Drewry6ac91122011-10-21 16:38:58 -05001670int API minijail_from_fd(int fd, struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001671{
1672 size_t sz = 0;
1673 size_t bytes = read(fd, &sz, sizeof(sz));
1674 char *buf;
1675 int r;
1676 if (sizeof(sz) != bytes)
1677 return -EINVAL;
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001678 if (sz > USHRT_MAX) /* arbitrary sanity check */
Elly Jonese1749eb2011-10-07 13:54:59 -04001679 return -E2BIG;
1680 buf = malloc(sz);
1681 if (!buf)
1682 return -ENOMEM;
1683 bytes = read(fd, buf, sz);
1684 if (bytes != sz) {
1685 free(buf);
1686 return -EINVAL;
1687 }
1688 r = minijail_unmarshal(j, buf, sz);
1689 free(buf);
1690 return r;
Will Drewry2f54b6a2011-09-16 13:45:31 -05001691}
1692
Will Drewry6ac91122011-10-21 16:38:58 -05001693int API minijail_to_fd(struct minijail *j, int fd)
Elly Jonese1749eb2011-10-07 13:54:59 -04001694{
1695 char *buf;
1696 size_t sz = minijail_size(j);
1697 ssize_t written;
1698 int r;
Elly Jonescd7a9042011-07-22 13:56:51 -04001699
Elly Jonese1749eb2011-10-07 13:54:59 -04001700 if (!sz)
1701 return -EINVAL;
1702 buf = malloc(sz);
1703 r = minijail_marshal(j, buf, sz);
1704 if (r) {
1705 free(buf);
1706 return r;
1707 }
1708 /* Sends [size][minijail]. */
1709 written = write(fd, &sz, sizeof(sz));
1710 if (written != sizeof(sz)) {
1711 free(buf);
1712 return -EFAULT;
1713 }
1714 written = write(fd, buf, sz);
1715 if (written < 0 || (size_t) written != sz) {
1716 free(buf);
1717 return -EFAULT;
1718 }
1719 free(buf);
1720 return 0;
Will Drewry2f54b6a2011-09-16 13:45:31 -05001721}
Elly Jonescd7a9042011-07-22 13:56:51 -04001722
Will Drewry6ac91122011-10-21 16:38:58 -05001723int setup_preload(void)
Elly Jonese1749eb2011-10-07 13:54:59 -04001724{
Daniel Erat5b7a3182015-08-19 16:06:22 -06001725#if defined(__ANDROID__)
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -07001726 /* Don't use LDPRELOAD on Brillo. */
1727 return 0;
1728#else
Elly Jonese1749eb2011-10-07 13:54:59 -04001729 char *oldenv = getenv(kLdPreloadEnvVar) ? : "";
1730 char *newenv = malloc(strlen(oldenv) + 2 + strlen(PRELOADPATH));
1731 if (!newenv)
1732 return -ENOMEM;
Elly Jonescd7a9042011-07-22 13:56:51 -04001733
Elly Jonese1749eb2011-10-07 13:54:59 -04001734 /* Only insert a separating space if we have something to separate... */
1735 sprintf(newenv, "%s%s%s", oldenv, strlen(oldenv) ? " " : "",
1736 PRELOADPATH);
Elly Jonescd7a9042011-07-22 13:56:51 -04001737
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001738 /* setenv() makes a copy of the string we give it. */
Elly Jonese1749eb2011-10-07 13:54:59 -04001739 setenv(kLdPreloadEnvVar, newenv, 1);
1740 free(newenv);
1741 return 0;
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -07001742#endif
Elly Jonescd7a9042011-07-22 13:56:51 -04001743}
1744
Will Drewry6ac91122011-10-21 16:38:58 -05001745int setup_pipe(int fds[2])
Elly Jonese1749eb2011-10-07 13:54:59 -04001746{
1747 int r = pipe(fds);
1748 char fd_buf[11];
1749 if (r)
1750 return r;
1751 r = snprintf(fd_buf, sizeof(fd_buf), "%d", fds[0]);
1752 if (r <= 0)
1753 return -EINVAL;
1754 setenv(kFdEnvVar, fd_buf, 1);
1755 return 0;
Will Drewryf89aef52011-09-16 16:48:57 -05001756}
1757
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001758int setup_pipe_end(int fds[2], size_t index)
1759{
1760 if (index > 1)
1761 return -1;
1762
1763 close(fds[1 - index]);
1764 return fds[index];
1765}
1766
1767int setup_and_dupe_pipe_end(int fds[2], size_t index, int fd)
1768{
1769 if (index > 1)
1770 return -1;
1771
1772 close(fds[1 - index]);
1773 /* dup2(2) the corresponding end of the pipe into |fd|. */
1774 return dup2(fds[index], fd);
1775}
1776
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001777int minijail_run_internal(struct minijail *j, const char *filename,
1778 char *const argv[], pid_t *pchild_pid,
1779 int *pstdin_fd, int *pstdout_fd, int *pstderr_fd,
1780 int use_preload);
1781
Will Drewry6ac91122011-10-21 16:38:58 -05001782int API minijail_run(struct minijail *j, const char *filename,
1783 char *const argv[])
Elly Jonese1749eb2011-10-07 13:54:59 -04001784{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001785 return minijail_run_internal(j, filename, argv, NULL, NULL, NULL, NULL,
1786 true);
Jorge Lucangeli Obes9807d032012-04-17 13:36:00 -07001787}
1788
1789int API minijail_run_pid(struct minijail *j, const char *filename,
1790 char *const argv[], pid_t *pchild_pid)
1791{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001792 return minijail_run_internal(j, filename, argv, pchild_pid,
1793 NULL, NULL, NULL, true);
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001794}
1795
1796int API minijail_run_pipe(struct minijail *j, const char *filename,
Jorge Lucangeli Obes6537a562012-09-05 10:39:40 -07001797 char *const argv[], int *pstdin_fd)
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001798{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001799 return minijail_run_internal(j, filename, argv, NULL, pstdin_fd,
1800 NULL, NULL, true);
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001801}
1802
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001803int API minijail_run_pid_pipes(struct minijail *j, const char *filename,
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -07001804 char *const argv[], pid_t *pchild_pid,
1805 int *pstdin_fd, int *pstdout_fd, int *pstderr_fd)
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001806{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001807 return minijail_run_internal(j, filename, argv, pchild_pid,
1808 pstdin_fd, pstdout_fd, pstderr_fd, true);
1809}
1810
1811int API minijail_run_no_preload(struct minijail *j, const char *filename,
1812 char *const argv[])
1813{
1814 return minijail_run_internal(j, filename, argv, NULL, NULL, NULL, NULL,
1815 false);
1816}
1817
Samuel Tan63187f42015-10-16 13:01:53 -07001818int API minijail_run_pid_pipes_no_preload(struct minijail *j,
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001819 const char *filename,
1820 char *const argv[],
Samuel Tan63187f42015-10-16 13:01:53 -07001821 pid_t *pchild_pid,
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001822 int *pstdin_fd, int *pstdout_fd,
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001823 int *pstderr_fd)
1824{
Samuel Tan63187f42015-10-16 13:01:53 -07001825 return minijail_run_internal(j, filename, argv, pchild_pid,
1826 pstdin_fd, pstdout_fd, pstderr_fd, false);
1827}
1828
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001829int minijail_run_internal(struct minijail *j, const char *filename,
1830 char *const argv[], pid_t *pchild_pid,
1831 int *pstdin_fd, int *pstdout_fd, int *pstderr_fd,
1832 int use_preload)
1833{
Elly Jonese1749eb2011-10-07 13:54:59 -04001834 char *oldenv, *oldenv_copy = NULL;
1835 pid_t child_pid;
1836 int pipe_fds[2];
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001837 int stdin_fds[2];
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001838 int stdout_fds[2];
1839 int stderr_fds[2];
Dylan Reidce5b55e2016-01-13 11:04:16 -08001840 int child_sync_pipe_fds[2];
1841 int sync_child = 0;
Elly Jonese1749eb2011-10-07 13:54:59 -04001842 int ret;
Elly Jonesa05d7bb2012-06-14 14:09:27 -04001843 /* We need to remember this across the minijail_preexec() call. */
1844 int pid_namespace = j->flags.pids;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08001845 int do_init = j->flags.do_init;
Ben Chan541c7e52011-08-26 14:55:53 -07001846
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001847 if (use_preload) {
1848 oldenv = getenv(kLdPreloadEnvVar);
1849 if (oldenv) {
1850 oldenv_copy = strdup(oldenv);
1851 if (!oldenv_copy)
1852 return -ENOMEM;
1853 }
1854
1855 if (setup_preload())
1856 return -EFAULT;
Elly Jonese1749eb2011-10-07 13:54:59 -04001857 }
Will Drewryf89aef52011-09-16 16:48:57 -05001858
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001859 if (!use_preload) {
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04001860 if (j->flags.use_caps && j->caps != 0)
1861 die("non-empty capabilities are not supported without LD_PRELOAD");
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001862 }
Will Drewry2f54b6a2011-09-16 13:45:31 -05001863
Elly Jonesdd3e8512012-01-23 15:13:38 -05001864 /*
Jorge Lucangeli Obes3c84df12015-05-14 17:37:58 -07001865 * Make the process group ID of this process equal to its PID, so that
1866 * both the Minijail process and the jailed process can be killed
1867 * together.
1868 * Don't fail on EPERM, since setpgid(0, 0) can only EPERM when
1869 * the process is already a process group leader.
1870 */
1871 if (setpgid(0 /* use calling PID */, 0 /* make PGID = PID */)) {
1872 if (errno != EPERM) {
1873 pdie("setpgid(0, 0)");
1874 }
1875 }
1876
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001877 if (use_preload) {
1878 /*
1879 * Before we fork(2) and execve(2) the child process, we need
1880 * to open a pipe(2) to send the minijail configuration over.
1881 */
1882 if (setup_pipe(pipe_fds))
1883 return -EFAULT;
1884 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001885
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001886 /*
1887 * If we want to write to the child process' standard input,
1888 * create the pipe(2) now.
1889 */
1890 if (pstdin_fd) {
1891 if (pipe(stdin_fds))
1892 return -EFAULT;
1893 }
1894
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001895 /*
1896 * If we want to read from the child process' standard output,
1897 * create the pipe(2) now.
1898 */
1899 if (pstdout_fd) {
1900 if (pipe(stdout_fds))
1901 return -EFAULT;
1902 }
1903
1904 /*
1905 * If we want to read from the child process' standard error,
1906 * create the pipe(2) now.
1907 */
1908 if (pstderr_fd) {
1909 if (pipe(stderr_fds))
1910 return -EFAULT;
1911 }
1912
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001913 /*
1914 * If we want to set up a new uid/gid mapping in the user namespace,
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -08001915 * or if we need to add the child process to cgroups, create the pipe(2)
1916 * to sync between parent and child.
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001917 */
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -08001918 if (j->flags.userns || j->flags.cgroups) {
Dylan Reidce5b55e2016-01-13 11:04:16 -08001919 sync_child = 1;
1920 if (pipe(child_sync_pipe_fds))
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001921 return -EFAULT;
1922 }
1923
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001924 /*
1925 * Use sys_clone() if and only if we're creating a pid namespace.
Elly Jones761b7412012-06-13 15:49:52 -04001926 *
1927 * tl;dr: WARNING: do not mix pid namespaces and multithreading.
1928 *
1929 * In multithreaded programs, there are a bunch of locks inside libc,
1930 * some of which may be held by other threads at the time that we call
1931 * minijail_run_pid(). If we call fork(), glibc does its level best to
1932 * ensure that we hold all of these locks before it calls clone()
1933 * internally and drop them after clone() returns, but when we call
1934 * sys_clone(2) directly, all that gets bypassed and we end up with a
1935 * child address space where some of libc's important locks are held by
1936 * other threads (which did not get cloned, and hence will never release
1937 * those locks). This is okay so long as we call exec() immediately
1938 * after, but a bunch of seemingly-innocent libc functions like setenv()
1939 * take locks.
1940 *
1941 * Hence, only call sys_clone() if we need to, in order to get at pid
1942 * namespacing. If we follow this path, the child's address space might
1943 * have broken locks; you may only call functions that do not acquire
1944 * any locks.
1945 *
1946 * Unfortunately, fork() acquires every lock it can get its hands on, as
1947 * previously detailed, so this function is highly likely to deadlock
1948 * later on (see "deadlock here") if we're multithreaded.
1949 *
1950 * We might hack around this by having the clone()d child (init of the
1951 * pid namespace) return directly, rather than leaving the clone()d
1952 * process hanging around to be init for the new namespace (and having
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001953 * its fork()ed child return in turn), but that process would be
1954 * crippled with its libc locks potentially broken. We might try
1955 * fork()ing in the parent before we clone() to ensure that we own all
1956 * the locks, but then we have to have the forked child hanging around
1957 * consuming resources (and possibly having file descriptors / shared
1958 * memory regions / etc attached). We'd need to keep the child around to
1959 * avoid having its children get reparented to init.
Elly Jones761b7412012-06-13 15:49:52 -04001960 *
1961 * TODO(ellyjones): figure out if the "forked child hanging around"
1962 * problem is fixable or not. It would be nice if we worked in this
1963 * case.
1964 */
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08001965 if (pid_namespace) {
1966 int clone_flags = CLONE_NEWPID | SIGCHLD;
1967 if (j->flags.userns)
1968 clone_flags |= CLONE_NEWUSER;
1969 child_pid = syscall(SYS_clone, clone_flags, NULL);
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001970 } else {
Elly Jones761b7412012-06-13 15:49:52 -04001971 child_pid = fork();
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001972 }
Elly Jones761b7412012-06-13 15:49:52 -04001973
Elly Jonese1749eb2011-10-07 13:54:59 -04001974 if (child_pid < 0) {
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001975 if (use_preload) {
1976 free(oldenv_copy);
1977 }
Lee Campbell1e4fc6a2014-06-06 17:40:02 -07001978 die("failed to fork child");
Elly Jonese1749eb2011-10-07 13:54:59 -04001979 }
Will Drewryf89aef52011-09-16 16:48:57 -05001980
Elly Jonese1749eb2011-10-07 13:54:59 -04001981 if (child_pid) {
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001982 if (use_preload) {
1983 /* Restore parent's LD_PRELOAD. */
1984 if (oldenv_copy) {
1985 setenv(kLdPreloadEnvVar, oldenv_copy, 1);
1986 free(oldenv_copy);
1987 } else {
1988 unsetenv(kLdPreloadEnvVar);
1989 }
1990 unsetenv(kFdEnvVar);
Elly Jonese1749eb2011-10-07 13:54:59 -04001991 }
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001992
Elly Jonese1749eb2011-10-07 13:54:59 -04001993 j->initpid = child_pid;
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001994
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001995 if (j->flags.pid_file)
1996 write_pid_file(j);
1997
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -08001998 if (j->flags.cgroups)
1999 add_to_cgroups(j);
Dylan Reid605ce7f2016-01-19 19:21:00 -08002000
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002001 if (j->flags.userns)
Dylan Reidce5b55e2016-01-13 11:04:16 -08002002 write_ugid_mappings(j);
2003
2004 if (sync_child)
2005 parent_setup_complete(child_sync_pipe_fds);
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002006
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002007 if (use_preload) {
2008 /* Send marshalled minijail. */
2009 close(pipe_fds[0]); /* read endpoint */
2010 ret = minijail_to_fd(j, pipe_fds[1]);
2011 close(pipe_fds[1]); /* write endpoint */
2012 if (ret) {
2013 kill(j->initpid, SIGKILL);
2014 die("failed to send marshalled minijail");
2015 }
Elly Jonese1749eb2011-10-07 13:54:59 -04002016 }
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002017
Jorge Lucangeli Obes9807d032012-04-17 13:36:00 -07002018 if (pchild_pid)
2019 *pchild_pid = child_pid;
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002020
2021 /*
2022 * If we want to write to the child process' standard input,
2023 * set up the write end of the pipe.
2024 */
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002025 if (pstdin_fd)
2026 *pstdin_fd = setup_pipe_end(stdin_fds,
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002027 1 /* write end */);
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002028
2029 /*
2030 * If we want to read from the child process' standard output,
2031 * set up the read end of the pipe.
2032 */
2033 if (pstdout_fd)
2034 *pstdout_fd = setup_pipe_end(stdout_fds,
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002035 0 /* read end */);
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002036
2037 /*
2038 * If we want to read from the child process' standard error,
2039 * set up the read end of the pipe.
2040 */
2041 if (pstderr_fd)
2042 *pstderr_fd = setup_pipe_end(stderr_fds,
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002043 0 /* read end */);
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002044
Elly Jonese1749eb2011-10-07 13:54:59 -04002045 return 0;
2046 }
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04002047 /* Child process. */
Elly Jonese1749eb2011-10-07 13:54:59 -04002048 free(oldenv_copy);
Ben Chan541c7e52011-08-26 14:55:53 -07002049
Peter Qiu2860c462015-12-16 15:13:06 -08002050 if (j->flags.reset_signal_mask) {
2051 sigset_t signal_mask;
2052 if (sigemptyset(&signal_mask) != 0)
2053 pdie("sigemptyset failed");
2054 if (sigprocmask(SIG_SETMASK, &signal_mask, NULL) != 0)
2055 pdie("sigprocmask failed");
2056 }
2057
Dylan Reidce5b55e2016-01-13 11:04:16 -08002058 if (sync_child)
2059 wait_for_parent_setup(child_sync_pipe_fds);
2060
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002061 if (j->flags.userns)
Dylan Reidce5b55e2016-01-13 11:04:16 -08002062 enter_user_namespace(j);
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002063
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002064 /*
2065 * If we want to write to the jailed process' standard input,
2066 * set up the read end of the pipe.
2067 */
2068 if (pstdin_fd) {
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002069 if (setup_and_dupe_pipe_end(stdin_fds, 0 /* read end */,
2070 STDIN_FILENO) < 0)
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002071 die("failed to set up stdin pipe");
2072 }
2073
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002074 /*
2075 * If we want to read from the jailed process' standard output,
2076 * set up the write end of the pipe.
2077 */
2078 if (pstdout_fd) {
2079 if (setup_and_dupe_pipe_end(stdout_fds, 1 /* write end */,
2080 STDOUT_FILENO) < 0)
2081 die("failed to set up stdout pipe");
2082 }
2083
2084 /*
2085 * If we want to read from the jailed process' standard error,
2086 * set up the write end of the pipe.
2087 */
2088 if (pstderr_fd) {
2089 if (setup_and_dupe_pipe_end(stderr_fds, 1 /* write end */,
2090 STDERR_FILENO) < 0)
2091 die("failed to set up stderr pipe");
2092 }
2093
Dylan Reid791f5772015-09-14 20:02:42 -07002094 /* If running an init program, let it decide when/how to mount /proc. */
2095 if (pid_namespace && !do_init)
2096 j->flags.remount_proc_ro = 0;
2097
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002098 if (use_preload) {
2099 /* Strip out flags that cannot be inherited across execve(2). */
2100 minijail_preexec(j);
2101 } else {
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04002102 /*
2103 * If not using LD_PRELOAD, do all jailing before execve(2).
2104 * Note that PID namespaces can only be entered on fork(2),
2105 * so that flag is still cleared.
2106 */
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002107 j->flags.pids = 0;
2108 }
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04002109 /* Jail this process, then execve(2) the target. */
Elly Jonese1749eb2011-10-07 13:54:59 -04002110 minijail_enter(j);
Elly Jonescd7a9042011-07-22 13:56:51 -04002111
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08002112 if (pid_namespace && do_init) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05002113 /*
2114 * pid namespace: this process will become init inside the new
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08002115 * namespace. We don't want all programs we might exec to have
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002116 * to know how to be init. Normally (do_init == 1) we fork off
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08002117 * a child to actually run the program. If |do_init == 0|, we
2118 * let the program keep pid 1 and be init.
Elly Jones761b7412012-06-13 15:49:52 -04002119 *
2120 * If we're multithreaded, we'll probably deadlock here. See
2121 * WARNING above.
Elly Jonese1749eb2011-10-07 13:54:59 -04002122 */
2123 child_pid = fork();
2124 if (child_pid < 0)
2125 _exit(child_pid);
2126 else if (child_pid > 0)
2127 init(child_pid); /* never returns */
2128 }
Elly Jonescd7a9042011-07-22 13:56:51 -04002129
Elly Jonesdd3e8512012-01-23 15:13:38 -05002130 /*
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002131 * If we aren't pid-namespaced, or the jailed program asked to be init:
Elly Jonese1749eb2011-10-07 13:54:59 -04002132 * calling process
2133 * -> execve()-ing process
2134 * If we are:
2135 * calling process
2136 * -> init()-ing process
2137 * -> execve()-ing process
2138 */
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04002139 ret = execve(filename, argv, environ);
2140 if (ret == -1) {
2141 pwarn("execve(%s) failed", filename);
2142 }
2143 _exit(ret);
Elly Jonescd7a9042011-07-22 13:56:51 -04002144}
2145
Will Drewry6ac91122011-10-21 16:38:58 -05002146int API minijail_kill(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04002147{
2148 int st;
2149 if (kill(j->initpid, SIGTERM))
2150 return -errno;
2151 if (waitpid(j->initpid, &st, 0) < 0)
2152 return -errno;
2153 return st;
Elly Jonescd7a9042011-07-22 13:56:51 -04002154}
2155
Will Drewry6ac91122011-10-21 16:38:58 -05002156int API minijail_wait(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04002157{
2158 int st;
2159 if (waitpid(j->initpid, &st, 0) < 0)
2160 return -errno;
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08002161
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07002162 if (!WIFEXITED(st)) {
Jorge Lucangeli Obes18d1eba2014-04-18 13:58:20 -07002163 int error_status = st;
2164 if (WIFSIGNALED(st)) {
2165 int signum = WTERMSIG(st);
mukesh agrawalc420a262013-06-11 17:22:42 -07002166 warn("child process %d received signal %d",
Jorge Lucangeli Obes18d1eba2014-04-18 13:58:20 -07002167 j->initpid, signum);
2168 /*
2169 * We return MINIJAIL_ERR_JAIL if the process received
2170 * SIGSYS, which happens when a syscall is blocked by
2171 * seccomp filters.
2172 * If not, we do what bash(1) does:
2173 * $? = 128 + signum
2174 */
2175 if (signum == SIGSYS) {
2176 error_status = MINIJAIL_ERR_JAIL;
2177 } else {
2178 error_status = 128 + signum;
2179 }
2180 }
2181 return error_status;
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07002182 }
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08002183
2184 int exit_status = WEXITSTATUS(st);
2185 if (exit_status != 0)
mukesh agrawalc420a262013-06-11 17:22:42 -07002186 info("child process %d exited with status %d",
2187 j->initpid, exit_status);
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08002188
2189 return exit_status;
Elly Jonescd7a9042011-07-22 13:56:51 -04002190}
2191
Will Drewry6ac91122011-10-21 16:38:58 -05002192void API minijail_destroy(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04002193{
Dylan Reid605ce7f2016-01-19 19:21:00 -08002194 size_t i;
2195
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08002196 if (j->flags.seccomp_filter && j->filter_prog) {
2197 free(j->filter_prog->filter);
2198 free(j->filter_prog);
Elly Jonese1749eb2011-10-07 13:54:59 -04002199 }
Dylan Reid648b2202015-10-23 00:50:00 -07002200 while (j->mounts_head) {
2201 struct mountpoint *m = j->mounts_head;
2202 j->mounts_head = j->mounts_head->next;
Dylan Reid81e23972016-05-18 14:06:35 -07002203 free(m->data);
Dylan Reid648b2202015-10-23 00:50:00 -07002204 free(m->type);
2205 free(m->dest);
2206 free(m->src);
2207 free(m);
Elly Jones51a5b6c2011-10-12 19:09:26 -04002208 }
Dylan Reid648b2202015-10-23 00:50:00 -07002209 j->mounts_tail = NULL;
Elly Jonese1749eb2011-10-07 13:54:59 -04002210 if (j->user)
2211 free(j->user);
Jorge Lucangeli Obese81a52f2015-12-04 16:05:23 -08002212 if (j->suppl_gid_list)
2213 free(j->suppl_gid_list);
Will Drewrybee7ba72011-10-21 20:47:01 -05002214 if (j->chrootdir)
2215 free(j->chrootdir);
Jorge Lucangeli Obes3b2e6e42016-08-04 12:26:19 -04002216 if (j->pid_file_path)
2217 free(j->pid_file_path);
2218 if (j->uidmap)
2219 free(j->uidmap);
2220 if (j->gidmap)
2221 free(j->gidmap);
Andrew Brestickereac28942015-11-11 16:04:46 -08002222 if (j->alt_syscall_table)
2223 free(j->alt_syscall_table);
Dylan Reid605ce7f2016-01-19 19:21:00 -08002224 for (i = 0; i < j->cgroup_count; ++i)
2225 free(j->cgroups[i]);
Elly Jonese1749eb2011-10-07 13:54:59 -04002226 free(j);
Elly Jonescd7a9042011-07-22 13:56:51 -04002227}