blob: c0fd59e567012e9d929b012c8b14cc6a5f19ffd7 [file] [log] [blame]
Jorge Lucangeli Obesd613ab22015-03-03 14:22:50 -08001/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Elly Jonescd7a9042011-07-22 13:56:51 -04002 * Use of this source code is governed by a BSD-style license that can be
Will Drewry32ac9f52011-08-18 21:36:27 -05003 * found in the LICENSE file.
4 */
Elly Jonescd7a9042011-07-22 13:56:51 -04005
6#define _BSD_SOURCE
Arthur Gautier7a569072016-04-23 17:25:20 +00007#define _DEFAULT_SOURCE
Elly Jonescd7a9042011-07-22 13:56:51 -04008#define _GNU_SOURCE
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07009
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080010#include <asm/unistd.h>
Will Drewry32ac9f52011-08-18 21:36:27 -050011#include <ctype.h>
Luis Hector Chavez43ff0802016-10-07 12:21:07 -070012#include <dirent.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040013#include <errno.h>
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -070014#include <fcntl.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040015#include <grp.h>
16#include <inttypes.h>
Will Drewryfe4a3722011-09-16 14:50:50 -050017#include <limits.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040018#include <linux/capability.h>
Mike Frysinger7559dfe2016-11-15 18:58:39 -050019#include <net/if.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040020#include <pwd.h>
21#include <sched.h>
22#include <signal.h>
Will Drewry2f54b6a2011-09-16 13:45:31 -050023#include <stdarg.h>
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -070024#include <stdbool.h>
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080025#include <stddef.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040026#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040029#include <sys/capability.h>
30#include <sys/mount.h>
Will Drewryf89aef52011-09-16 16:48:57 -050031#include <sys/param.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040032#include <sys/prctl.h>
Mike Frysinger7559dfe2016-11-15 18:58:39 -050033#include <sys/socket.h>
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -070034#include <sys/stat.h>
35#include <sys/types.h>
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080036#include <sys/user.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040037#include <sys/wait.h>
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -070038#include <syscall.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040039#include <unistd.h>
40
41#include "libminijail.h"
42#include "libminijail-private.h"
43
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -070044#include "signal_handler.h"
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080045#include "syscall_filter.h"
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -040046#include "syscall_wrapper.h"
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070047#include "util.h"
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080048
Lei Zhangeee31552012-10-17 21:27:10 -070049#ifdef HAVE_SECUREBITS_H
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -070050# include <linux/securebits.h>
Lei Zhangeee31552012-10-17 21:27:10 -070051#else
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -070052# define SECURE_ALL_BITS 0x55
53# define SECURE_ALL_LOCKS (SECURE_ALL_BITS << 1)
54#endif
55/* For kernels < 4.3. */
56#define OLD_SECURE_ALL_BITS 0x15
57#define OLD_SECURE_ALL_LOCKS (OLD_SECURE_ALL_BITS << 1)
58
59/*
60 * Assert the value of SECURE_ALL_BITS at compile-time.
61 * Brillo devices are currently compiled against 4.4 kernel headers. Kernel 4.3
62 * added a new securebit.
63 * When a new securebit is added, the new SECURE_ALL_BITS mask will return EPERM
64 * when used on older kernels. The compile-time assert will catch this situation
65 * at compile time.
66 */
67#ifdef __BRILLO__
68_Static_assert(SECURE_ALL_BITS == 0x55, "SECURE_ALL_BITS == 0x55.");
Lei Zhangeee31552012-10-17 21:27:10 -070069#endif
70
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -070071/* Until these are reliably available in linux/prctl.h. */
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080072#ifndef PR_SET_SECCOMP
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -070073# define PR_SET_SECCOMP 22
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080074#endif
75
Andrew Brestickereac28942015-11-11 16:04:46 -080076#ifndef PR_ALT_SYSCALL
77# define PR_ALT_SYSCALL 0x43724f53
78#endif
79
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -040080/* Seccomp filter related flags. */
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080081#ifndef PR_SET_NO_NEW_PRIVS
82# define PR_SET_NO_NEW_PRIVS 38
83#endif
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -040084
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080085#ifndef SECCOMP_MODE_FILTER
86# define SECCOMP_MODE_FILTER 2 /* uses user-supplied filter. */
Will Drewry32ac9f52011-08-18 21:36:27 -050087#endif
88
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -040089#ifndef SECCOMP_SET_MODE_STRICT
90# define SECCOMP_SET_MODE_STRICT 0
91#endif
92#ifndef SECCOMP_SET_MODE_FILTER
93# define SECCOMP_SET_MODE_FILTER 1
94#endif
95
96#ifndef SECCOMP_FILTER_FLAG_TSYNC
97# define SECCOMP_FILTER_FLAG_TSYNC 1
98#endif
99/* End seccomp filter related flags. */
100
Dylan Reid4cbc2a52016-06-17 19:06:07 -0700101/* New cgroup namespace might not be in linux-headers yet. */
102#ifndef CLONE_NEWCGROUP
103# define CLONE_NEWCGROUP 0x02000000
104#endif
105
Dylan Reid605ce7f2016-01-19 19:21:00 -0800106#define MAX_CGROUPS 10 /* 10 different controllers supported by Linux. */
107
Dylan Reid648b2202015-10-23 00:50:00 -0700108struct mountpoint {
Elly Jones51a5b6c2011-10-12 19:09:26 -0400109 char *src;
110 char *dest;
Dylan Reid648b2202015-10-23 00:50:00 -0700111 char *type;
Dylan Reid81e23972016-05-18 14:06:35 -0700112 char *data;
113 int has_data;
Dylan Reid648b2202015-10-23 00:50:00 -0700114 unsigned long flags;
115 struct mountpoint *next;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400116};
117
Will Drewryf89aef52011-09-16 16:48:57 -0500118struct minijail {
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700119 /*
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700120 * WARNING: if you add a flag here you need to make sure it's
121 * accounted for in minijail_pre{enter|exec}() below.
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700122 */
Elly Jonese1749eb2011-10-07 13:54:59 -0400123 struct {
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -0700124 int uid : 1;
125 int gid : 1;
Lutz Justen13807cb2017-01-03 17:11:55 +0100126 int inherit_suppl_gids : 1;
127 int set_suppl_gids : 1;
128 int keep_suppl_gids : 1;
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -0700129 int use_caps : 1;
130 int capbset_drop : 1;
131 int vfs : 1;
132 int enter_vfs : 1;
133 int skip_remount_private : 1;
134 int pids : 1;
135 int ipc : 1;
136 int net : 1;
137 int enter_net : 1;
138 int ns_cgroups : 1;
139 int userns : 1;
140 int disable_setgroups : 1;
141 int seccomp : 1;
142 int remount_proc_ro : 1;
143 int no_new_privs : 1;
144 int seccomp_filter : 1;
145 int seccomp_filter_tsync : 1;
146 int seccomp_filter_logging : 1;
147 int chroot : 1;
148 int pivot_root : 1;
149 int mount_tmp : 1;
150 int do_init : 1;
151 int pid_file : 1;
152 int cgroups : 1;
153 int alt_syscall : 1;
154 int reset_signal_mask : 1;
155 int close_open_fds : 1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400156 } flags;
157 uid_t uid;
158 gid_t gid;
159 gid_t usergid;
160 char *user;
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800161 size_t suppl_gid_count;
162 gid_t *suppl_gid_list;
Elly Jonese1749eb2011-10-07 13:54:59 -0400163 uint64_t caps;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800164 uint64_t cap_bset;
Elly Jonese1749eb2011-10-07 13:54:59 -0400165 pid_t initpid;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700166 int mountns_fd;
Dylan Reid1102f5a2015-09-15 11:52:20 -0700167 int netns_fd;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400168 char *chrootdir;
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800169 char *pid_file_path;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800170 char *uidmap;
171 char *gidmap;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800172 size_t filter_len;
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800173 struct sock_fprog *filter_prog;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800174 char *alt_syscall_table;
Dylan Reid648b2202015-10-23 00:50:00 -0700175 struct mountpoint *mounts_head;
176 struct mountpoint *mounts_tail;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800177 size_t mounts_count;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800178 char *cgroups[MAX_CGROUPS];
179 size_t cgroup_count;
Will Drewryf89aef52011-09-16 16:48:57 -0500180};
181
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700182/*
183 * Strip out flags meant for the parent.
184 * We keep things that are not inherited across execve(2) (e.g. capabilities),
185 * or are easier to set after execve(2) (e.g. seccomp filters).
186 */
187void minijail_preenter(struct minijail *j)
188{
189 j->flags.vfs = 0;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700190 j->flags.enter_vfs = 0;
Shuhei Takahashi3da40312016-03-07 17:37:49 +0900191 j->flags.skip_remount_private = 0;
Dylan Reid791f5772015-09-14 20:02:42 -0700192 j->flags.remount_proc_ro = 0;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700193 j->flags.pids = 0;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800194 j->flags.do_init = 0;
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800195 j->flags.pid_file = 0;
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800196 j->flags.cgroups = 0;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700197}
198
199/*
200 * Strip out flags meant for the child.
201 * We keep things that are inherited across execve(2).
202 */
203void minijail_preexec(struct minijail *j)
204{
205 int vfs = j->flags.vfs;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700206 int enter_vfs = j->flags.enter_vfs;
Jorge Lucangeli Obes87bf01d2016-03-08 11:20:03 -0800207 int skip_remount_private = j->flags.skip_remount_private;
Dylan Reid791f5772015-09-14 20:02:42 -0700208 int remount_proc_ro = j->flags.remount_proc_ro;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800209 int userns = j->flags.userns;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700210 if (j->user)
211 free(j->user);
212 j->user = NULL;
Jorge Lucangeli Obese81a52f2015-12-04 16:05:23 -0800213 if (j->suppl_gid_list)
214 free(j->suppl_gid_list);
215 j->suppl_gid_list = NULL;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700216 memset(&j->flags, 0, sizeof(j->flags));
217 /* Now restore anything we meant to keep. */
218 j->flags.vfs = vfs;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700219 j->flags.enter_vfs = enter_vfs;
Jorge Lucangeli Obes87bf01d2016-03-08 11:20:03 -0800220 j->flags.skip_remount_private = skip_remount_private;
Dylan Reid791f5772015-09-14 20:02:42 -0700221 j->flags.remount_proc_ro = remount_proc_ro;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800222 j->flags.userns = userns;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700223 /* Note, |pids| will already have been used before this call. */
224}
225
226/* Minijail API. */
227
Will Drewry6ac91122011-10-21 16:38:58 -0500228struct minijail API *minijail_new(void)
Elly Jonese1749eb2011-10-07 13:54:59 -0400229{
Elly Jones51a5b6c2011-10-12 19:09:26 -0400230 return calloc(1, sizeof(struct minijail));
Elly Jonescd7a9042011-07-22 13:56:51 -0400231}
232
Will Drewry6ac91122011-10-21 16:38:58 -0500233void API minijail_change_uid(struct minijail *j, uid_t uid)
Elly Jonese1749eb2011-10-07 13:54:59 -0400234{
235 if (uid == 0)
236 die("useless change to uid 0");
237 j->uid = uid;
238 j->flags.uid = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400239}
240
Will Drewry6ac91122011-10-21 16:38:58 -0500241void API minijail_change_gid(struct minijail *j, gid_t gid)
Elly Jonese1749eb2011-10-07 13:54:59 -0400242{
243 if (gid == 0)
244 die("useless change to gid 0");
245 j->gid = gid;
246 j->flags.gid = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400247}
248
Jorge Lucangeli Obesbc67f442016-01-08 14:43:45 -0800249void API minijail_set_supplementary_gids(struct minijail *j, size_t size,
250 const gid_t *list)
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800251{
Jorge Lucangeli Obes06940be2015-12-04 18:09:21 -0800252 size_t i;
253
Jorge Lucangeli Obes34543192017-01-11 16:07:57 -0500254 if (j->flags.inherit_suppl_gids)
255 die("cannot inherit *and* set supplementary groups");
256 if (j->flags.keep_suppl_gids)
257 die("cannot keep *and* set supplementary groups");
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800258
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800259 if (size == 0) {
260 /* Clear supplementary groups. */
261 j->suppl_gid_list = NULL;
262 j->suppl_gid_count = 0;
Lutz Justen13807cb2017-01-03 17:11:55 +0100263 j->flags.set_suppl_gids = 1;
Jorge Lucangeli Obesbc67f442016-01-08 14:43:45 -0800264 return;
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800265 }
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800266
267 /* Copy the gid_t array. */
268 j->suppl_gid_list = calloc(size, sizeof(gid_t));
269 if (!j->suppl_gid_list) {
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800270 die("failed to allocate internal supplementary group array");
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800271 }
Jorge Lucangeli Obes06940be2015-12-04 18:09:21 -0800272 for (i = 0; i < size; i++) {
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800273 j->suppl_gid_list[i] = list[i];
274 }
275 j->suppl_gid_count = size;
Lutz Justen13807cb2017-01-03 17:11:55 +0100276 j->flags.set_suppl_gids = 1;
277}
278
279void API minijail_keep_supplementary_gids(struct minijail *j) {
280 j->flags.keep_suppl_gids = 1;
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800281}
282
Will Drewry6ac91122011-10-21 16:38:58 -0500283int API minijail_change_user(struct minijail *j, const char *user)
Elly Jonese1749eb2011-10-07 13:54:59 -0400284{
285 char *buf = NULL;
286 struct passwd pw;
287 struct passwd *ppw = NULL;
288 ssize_t sz = sysconf(_SC_GETPW_R_SIZE_MAX);
289 if (sz == -1)
290 sz = 65536; /* your guess is as good as mine... */
Elly Joneseb300c52011-09-22 14:35:43 -0400291
Elly Jonesdd3e8512012-01-23 15:13:38 -0500292 /*
293 * sysconf(_SC_GETPW_R_SIZE_MAX), under glibc, is documented to return
Elly Jonese1749eb2011-10-07 13:54:59 -0400294 * the maximum needed size of the buffer, so we don't have to search.
295 */
296 buf = malloc(sz);
297 if (!buf)
298 return -ENOMEM;
299 getpwnam_r(user, &pw, buf, sz, &ppw);
Elly Jonesdd3e8512012-01-23 15:13:38 -0500300 /*
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800301 * We're safe to free the buffer here. The strings inside |pw| point
302 * inside |buf|, but we don't use any of them; this leaves the pointers
Jorge Lucangeli Obes87bf01d2016-03-08 11:20:03 -0800303 * dangling but it's safe. |ppw| points at |pw| if getpwnam_r(3)
304 * succeeded.
Elly Jonesdd3e8512012-01-23 15:13:38 -0500305 */
Elly Jonese1749eb2011-10-07 13:54:59 -0400306 free(buf);
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700307 /* getpwnam_r(3) does *not* set errno when |ppw| is NULL. */
Elly Jonese1749eb2011-10-07 13:54:59 -0400308 if (!ppw)
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700309 return -1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400310 minijail_change_uid(j, ppw->pw_uid);
311 j->user = strdup(user);
312 if (!j->user)
313 return -ENOMEM;
314 j->usergid = ppw->pw_gid;
315 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -0400316}
317
Will Drewry6ac91122011-10-21 16:38:58 -0500318int API minijail_change_group(struct minijail *j, const char *group)
Elly Jonese1749eb2011-10-07 13:54:59 -0400319{
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -0700320 char *buf = NULL;
Yabin Cui1b21c8f2015-07-22 10:34:45 -0700321 struct group gr;
322 struct group *pgr = NULL;
Elly Jonese1749eb2011-10-07 13:54:59 -0400323 ssize_t sz = sysconf(_SC_GETGR_R_SIZE_MAX);
324 if (sz == -1)
325 sz = 65536; /* and mine is as good as yours, really */
Elly Joneseb300c52011-09-22 14:35:43 -0400326
Elly Jonesdd3e8512012-01-23 15:13:38 -0500327 /*
328 * sysconf(_SC_GETGR_R_SIZE_MAX), under glibc, is documented to return
Elly Jonese1749eb2011-10-07 13:54:59 -0400329 * the maximum needed size of the buffer, so we don't have to search.
330 */
331 buf = malloc(sz);
332 if (!buf)
333 return -ENOMEM;
334 getgrnam_r(group, &gr, buf, sz, &pgr);
Elly Jonesdd3e8512012-01-23 15:13:38 -0500335 /*
336 * We're safe to free the buffer here. The strings inside gr point
337 * inside buf, but we don't use any of them; this leaves the pointers
338 * dangling but it's safe. pgr points at gr if getgrnam_r succeeded.
339 */
Elly Jonese1749eb2011-10-07 13:54:59 -0400340 free(buf);
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700341 /* getgrnam_r(3) does *not* set errno when |pgr| is NULL. */
Elly Jonese1749eb2011-10-07 13:54:59 -0400342 if (!pgr)
Jorge Lucangeli Obes4e480652014-03-26 10:56:42 -0700343 return -1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400344 minijail_change_gid(j, pgr->gr_gid);
345 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -0400346}
347
Will Drewry6ac91122011-10-21 16:38:58 -0500348void API minijail_use_seccomp(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400349{
350 j->flags.seccomp = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400351}
352
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -0700353void API minijail_no_new_privs(struct minijail *j)
354{
355 j->flags.no_new_privs = 1;
356}
357
Will Drewry6ac91122011-10-21 16:38:58 -0500358void API minijail_use_seccomp_filter(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400359{
360 j->flags.seccomp_filter = 1;
Will Drewry32ac9f52011-08-18 21:36:27 -0500361}
362
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400363void API minijail_set_seccomp_filter_tsync(struct minijail *j)
364{
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -0400365 if (j->filter_len > 0 && j->filter_prog != NULL) {
366 die("minijail_set_seccomp_filter_tsync() must be called "
367 "before minijail_parse_seccomp_filters()");
368 }
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400369 j->flags.seccomp_filter_tsync = 1;
370}
371
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700372void API minijail_log_seccomp_filter_failures(struct minijail *j)
373{
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -0400374 if (j->filter_len > 0 && j->filter_prog != NULL) {
375 die("minijail_log_seccomp_filter_failures() must be called "
376 "before minijail_parse_seccomp_filters()");
377 }
378 j->flags.seccomp_filter_logging = 1;
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700379}
380
Will Drewry6ac91122011-10-21 16:38:58 -0500381void API minijail_use_caps(struct minijail *j, uint64_t capmask)
Elly Jonese1749eb2011-10-07 13:54:59 -0400382{
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800383 /*
384 * 'minijail_use_caps' configures a runtime-capabilities-only
385 * environment, including a bounding set matching the thread's runtime
386 * (permitted|inheritable|effective) sets.
387 * Therefore, it will override any existing bounding set configurations
388 * since the latter would allow gaining extra runtime capabilities from
389 * file capabilities.
390 */
391 if (j->flags.capbset_drop) {
392 warn("overriding bounding set configuration");
393 j->cap_bset = 0;
394 j->flags.capbset_drop = 0;
395 }
Elly Jonese1749eb2011-10-07 13:54:59 -0400396 j->caps = capmask;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800397 j->flags.use_caps = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400398}
399
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800400void API minijail_capbset_drop(struct minijail *j, uint64_t capmask)
401{
402 if (j->flags.use_caps) {
403 /*
404 * 'minijail_use_caps' will have already configured a capability
405 * bounding set matching the (permitted|inheritable|effective)
406 * sets. Abort if the user tries to configure a separate
407 * bounding set. 'minijail_capbset_drop' and 'minijail_use_caps'
408 * are mutually exclusive.
409 */
410 die("runtime capabilities already configured, can't drop "
411 "bounding set separately");
412 }
413 j->cap_bset = capmask;
414 j->flags.capbset_drop = 1;
415}
416
417void API minijail_reset_signal_mask(struct minijail *j)
418{
Peter Qiu2860c462015-12-16 15:13:06 -0800419 j->flags.reset_signal_mask = 1;
420}
421
Will Drewry6ac91122011-10-21 16:38:58 -0500422void API minijail_namespace_vfs(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400423{
424 j->flags.vfs = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400425}
426
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700427void API minijail_namespace_enter_vfs(struct minijail *j, const char *ns_path)
428{
Ricky Zhoubce609d2016-03-02 21:47:56 -0800429 int ns_fd = open(ns_path, O_RDONLY | O_CLOEXEC);
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700430 if (ns_fd < 0) {
431 pdie("failed to open namespace '%s'", ns_path);
432 }
433 j->mountns_fd = ns_fd;
434 j->flags.enter_vfs = 1;
435}
436
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800437void API minijail_skip_remount_private(struct minijail *j)
438{
439 j->flags.skip_remount_private = 1;
440}
441
Will Drewry6ac91122011-10-21 16:38:58 -0500442void API minijail_namespace_pids(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400443{
Elly Jonese58176c2012-01-23 11:46:17 -0500444 j->flags.vfs = 1;
Dylan Reid791f5772015-09-14 20:02:42 -0700445 j->flags.remount_proc_ro = 1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400446 j->flags.pids = 1;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800447 j->flags.do_init = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400448}
449
Dylan Reidf7942472015-11-18 17:55:26 -0800450void API minijail_namespace_ipc(struct minijail *j)
451{
452 j->flags.ipc = 1;
453}
454
Elly Fong-Jones6c086302013-03-20 17:15:28 -0400455void API minijail_namespace_net(struct minijail *j)
456{
457 j->flags.net = 1;
458}
459
Dylan Reid1102f5a2015-09-15 11:52:20 -0700460void API minijail_namespace_enter_net(struct minijail *j, const char *ns_path)
461{
Ricky Zhoubce609d2016-03-02 21:47:56 -0800462 int ns_fd = open(ns_path, O_RDONLY | O_CLOEXEC);
Dylan Reid1102f5a2015-09-15 11:52:20 -0700463 if (ns_fd < 0) {
464 pdie("failed to open namespace '%s'", ns_path);
465 }
466 j->netns_fd = ns_fd;
467 j->flags.enter_net = 1;
468}
469
Dylan Reid4cbc2a52016-06-17 19:06:07 -0700470void API minijail_namespace_cgroups(struct minijail *j)
471{
472 j->flags.ns_cgroups = 1;
473}
474
Luis Hector Chavez43ff0802016-10-07 12:21:07 -0700475void API minijail_close_open_fds(struct minijail *j)
476{
477 j->flags.close_open_fds = 1;
478}
479
Dylan Reid791f5772015-09-14 20:02:42 -0700480void API minijail_remount_proc_readonly(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400481{
482 j->flags.vfs = 1;
Dylan Reid791f5772015-09-14 20:02:42 -0700483 j->flags.remount_proc_ro = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400484}
485
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800486void API minijail_namespace_user(struct minijail *j)
487{
488 j->flags.userns = 1;
489}
490
Jorge Lucangeli Obes200299c2016-09-23 15:21:57 -0400491void API minijail_namespace_user_disable_setgroups(struct minijail *j)
492{
493 j->flags.disable_setgroups = 1;
494}
495
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800496int API minijail_uidmap(struct minijail *j, const char *uidmap)
497{
498 j->uidmap = strdup(uidmap);
499 if (!j->uidmap)
500 return -ENOMEM;
Yu-Hsi Chiang1912c5b2015-08-31 18:59:49 +0800501 char *ch;
502 for (ch = j->uidmap; *ch; ch++) {
503 if (*ch == ',')
504 *ch = '\n';
505 }
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800506 return 0;
507}
508
509int API minijail_gidmap(struct minijail *j, const char *gidmap)
510{
511 j->gidmap = strdup(gidmap);
512 if (!j->gidmap)
513 return -ENOMEM;
Yu-Hsi Chiang1912c5b2015-08-31 18:59:49 +0800514 char *ch;
515 for (ch = j->gidmap; *ch; ch++) {
516 if (*ch == ',')
517 *ch = '\n';
518 }
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800519 return 0;
520}
521
Will Drewry6ac91122011-10-21 16:38:58 -0500522void API minijail_inherit_usergroups(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400523{
Lutz Justen13807cb2017-01-03 17:11:55 +0100524 j->flags.inherit_suppl_gids = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400525}
526
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800527void API minijail_run_as_init(struct minijail *j)
528{
529 /*
530 * Since the jailed program will become 'init' in the new PID namespace,
531 * Minijail does not need to fork an 'init' process.
532 */
533 j->flags.do_init = 0;
534}
535
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700536int API minijail_enter_chroot(struct minijail *j, const char *dir)
537{
Elly Jones51a5b6c2011-10-12 19:09:26 -0400538 if (j->chrootdir)
539 return -EINVAL;
540 j->chrootdir = strdup(dir);
541 if (!j->chrootdir)
542 return -ENOMEM;
543 j->flags.chroot = 1;
544 return 0;
545}
546
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +0800547int API minijail_enter_pivot_root(struct minijail *j, const char *dir)
548{
549 if (j->chrootdir)
550 return -EINVAL;
551 j->chrootdir = strdup(dir);
552 if (!j->chrootdir)
553 return -ENOMEM;
554 j->flags.pivot_root = 1;
555 return 0;
556}
557
Dylan Reida14e08d2015-10-22 21:05:29 -0700558char API *minijail_get_original_path(struct minijail *j,
559 const char *path_inside_chroot)
560{
Dylan Reid648b2202015-10-23 00:50:00 -0700561 struct mountpoint *b;
Dylan Reida14e08d2015-10-22 21:05:29 -0700562
Dylan Reid648b2202015-10-23 00:50:00 -0700563 b = j->mounts_head;
Dylan Reida14e08d2015-10-22 21:05:29 -0700564 while (b) {
565 /*
566 * If |path_inside_chroot| is the exact destination of a
Dylan Reid648b2202015-10-23 00:50:00 -0700567 * mount, then the original path is exactly the source of
568 * the mount.
Dylan Reida14e08d2015-10-22 21:05:29 -0700569 * for example: "-b /some/path/exe,/chroot/path/exe"
Dylan Reid648b2202015-10-23 00:50:00 -0700570 * mount source = /some/path/exe, mount dest =
571 * /chroot/path/exe Then when getting the original path of
572 * "/chroot/path/exe", the source of that mount,
573 * "/some/path/exe" is what should be returned.
Dylan Reida14e08d2015-10-22 21:05:29 -0700574 */
575 if (!strcmp(b->dest, path_inside_chroot))
576 return strdup(b->src);
577
578 /*
579 * If |path_inside_chroot| is within the destination path of a
Dylan Reid648b2202015-10-23 00:50:00 -0700580 * mount, take the suffix of the chroot path relative to the
581 * mount destination path, and append it to the mount source
582 * path.
Dylan Reida14e08d2015-10-22 21:05:29 -0700583 */
584 if (!strncmp(b->dest, path_inside_chroot, strlen(b->dest))) {
585 const char *relative_path =
586 path_inside_chroot + strlen(b->dest);
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400587 return path_join(b->src, relative_path);
Dylan Reida14e08d2015-10-22 21:05:29 -0700588 }
589 b = b->next;
590 }
591
592 /* If there is a chroot path, append |path_inside_chroot| to that. */
593 if (j->chrootdir)
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400594 return path_join(j->chrootdir, path_inside_chroot);
Dylan Reida14e08d2015-10-22 21:05:29 -0700595
596 /* No chroot, so the path outside is the same as it is inside. */
597 return strdup(path_inside_chroot);
Dylan Reid08946cc2015-09-16 19:10:57 -0700598}
599
Lee Campbell11af0622014-05-22 12:36:04 -0700600void API minijail_mount_tmp(struct minijail *j)
601{
602 j->flags.mount_tmp = 1;
603}
604
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800605int API minijail_write_pid_file(struct minijail *j, const char *path)
606{
607 j->pid_file_path = strdup(path);
608 if (!j->pid_file_path)
609 return -ENOMEM;
610 j->flags.pid_file = 1;
611 return 0;
612}
613
Dylan Reid605ce7f2016-01-19 19:21:00 -0800614int API minijail_add_to_cgroup(struct minijail *j, const char *path)
615{
616 if (j->cgroup_count >= MAX_CGROUPS)
617 return -ENOMEM;
618 j->cgroups[j->cgroup_count] = strdup(path);
619 if (!j->cgroups[j->cgroup_count])
620 return -ENOMEM;
621 j->cgroup_count++;
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800622 j->flags.cgroups = 1;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800623 return 0;
624}
625
Dylan Reid81e23972016-05-18 14:06:35 -0700626int API minijail_mount_with_data(struct minijail *j, const char *src,
627 const char *dest, const char *type,
628 unsigned long flags, const char *data)
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700629{
Dylan Reid648b2202015-10-23 00:50:00 -0700630 struct mountpoint *m;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400631
632 if (*dest != '/')
633 return -EINVAL;
Dylan Reid648b2202015-10-23 00:50:00 -0700634 m = calloc(1, sizeof(*m));
635 if (!m)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400636 return -ENOMEM;
Dylan Reid648b2202015-10-23 00:50:00 -0700637 m->dest = strdup(dest);
638 if (!m->dest)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400639 goto error;
Dylan Reid648b2202015-10-23 00:50:00 -0700640 m->src = strdup(src);
641 if (!m->src)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400642 goto error;
Dylan Reid648b2202015-10-23 00:50:00 -0700643 m->type = strdup(type);
644 if (!m->type)
645 goto error;
Dylan Reid81e23972016-05-18 14:06:35 -0700646 if (data) {
647 m->data = strdup(data);
648 if (!m->data)
649 goto error;
650 m->has_data = 1;
651 }
Dylan Reid648b2202015-10-23 00:50:00 -0700652 m->flags = flags;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400653
Jorge Lucangeli Obes6c755d22016-01-28 15:24:40 -0800654 info("mount %s -> %s type '%s'", src, dest, type);
Elly Jones51a5b6c2011-10-12 19:09:26 -0400655
Elly Jonesdd3e8512012-01-23 15:13:38 -0500656 /*
Dylan Reid648b2202015-10-23 00:50:00 -0700657 * Force vfs namespacing so the mounts don't leak out into the
Elly Jones51a5b6c2011-10-12 19:09:26 -0400658 * containing vfs namespace.
659 */
660 minijail_namespace_vfs(j);
661
Dylan Reid648b2202015-10-23 00:50:00 -0700662 if (j->mounts_tail)
663 j->mounts_tail->next = m;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400664 else
Dylan Reid648b2202015-10-23 00:50:00 -0700665 j->mounts_head = m;
666 j->mounts_tail = m;
667 j->mounts_count++;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400668
669 return 0;
670
671error:
Dylan Reid81e23972016-05-18 14:06:35 -0700672 free(m->type);
Dylan Reid648b2202015-10-23 00:50:00 -0700673 free(m->src);
674 free(m->dest);
675 free(m);
Elly Jones51a5b6c2011-10-12 19:09:26 -0400676 return -ENOMEM;
677}
678
Dylan Reid81e23972016-05-18 14:06:35 -0700679int API minijail_mount(struct minijail *j, const char *src, const char *dest,
680 const char *type, unsigned long flags)
681{
682 return minijail_mount_with_data(j, src, dest, type, flags, NULL);
683}
684
Dylan Reid648b2202015-10-23 00:50:00 -0700685int API minijail_bind(struct minijail *j, const char *src, const char *dest,
686 int writeable)
687{
688 unsigned long flags = MS_BIND;
689
690 if (!writeable)
691 flags |= MS_RDONLY;
692
693 return minijail_mount(j, src, dest, "", flags);
694}
695
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400696static void clear_seccomp_options(struct minijail *j)
697{
698 j->flags.seccomp_filter = 0;
699 j->flags.seccomp_filter_tsync = 0;
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -0400700 j->flags.seccomp_filter_logging = 0;
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400701 j->filter_len = 0;
702 j->filter_prog = NULL;
703 j->flags.no_new_privs = 0;
704}
705
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400706static int seccomp_should_parse_filters(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400707{
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400708 if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, NULL) == -1) {
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400709 /*
710 * |errno| will be set to EINVAL when seccomp has not been
711 * compiled into the kernel. On certain platforms and kernel
712 * versions this is not a fatal failure. In that case, and only
713 * in that case, disable seccomp and skip loading the filters.
714 */
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400715 if ((errno == EINVAL) && seccomp_can_softfail()) {
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400716 warn("not loading seccomp filters, seccomp filter not "
717 "supported");
718 clear_seccomp_options(j);
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400719 return 0;
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -0700720 }
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400721 /*
722 * If |errno| != EINVAL or seccomp_can_softfail() is false,
723 * we can proceed. Worst case scenario minijail_enter() will
724 * abort() if seccomp fails.
725 */
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -0700726 }
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400727 if (j->flags.seccomp_filter_tsync) {
728 /* Are the seccomp(2) syscall and the TSYNC option supported? */
729 if (sys_seccomp(SECCOMP_SET_MODE_FILTER,
730 SECCOMP_FILTER_FLAG_TSYNC, NULL) == -1) {
731 int saved_errno = errno;
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -0400732 if (saved_errno == ENOSYS && seccomp_can_softfail()) {
733 warn("seccomp(2) syscall not supported");
734 clear_seccomp_options(j);
735 return 0;
736 } else if (saved_errno == EINVAL &&
737 seccomp_can_softfail()) {
738 warn(
739 "seccomp filter thread sync not supported");
740 clear_seccomp_options(j);
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400741 return 0;
742 }
743 /*
744 * Similar logic here. If seccomp_can_softfail() is
745 * false, or |errno| != ENOSYS, or |errno| != EINVAL,
746 * we can proceed. Worst case scenario minijail_enter()
747 * will abort() if seccomp or TSYNC fail.
748 */
749 }
750 }
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400751 return 1;
752}
753
754static int parse_seccomp_filters(struct minijail *j, FILE *policy_file)
755{
756 struct sock_fprog *fprog = malloc(sizeof(struct sock_fprog));
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -0400757 int use_ret_trap =
758 j->flags.seccomp_filter_tsync || j->flags.seccomp_filter_logging;
759 int allow_logging = j->flags.seccomp_filter_logging;
760
761 if (compile_filter(policy_file, fprog, use_ret_trap, allow_logging)) {
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400762 free(fprog);
763 return -1;
764 }
765
766 j->filter_len = fprog->len;
767 j->filter_prog = fprog;
768 return 0;
769}
770
771void API minijail_parse_seccomp_filters(struct minijail *j, const char *path)
772{
773 if (!seccomp_should_parse_filters(j))
774 return;
775
Elly Jonese1749eb2011-10-07 13:54:59 -0400776 FILE *file = fopen(path, "r");
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800777 if (!file) {
Jorge Lucangeli Obes224e4272012-08-02 14:31:39 -0700778 pdie("failed to open seccomp filter file '%s'", path);
Elly Jonese1749eb2011-10-07 13:54:59 -0400779 }
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800780
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400781 if (parse_seccomp_filters(j, file) != 0) {
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700782 die("failed to compile seccomp filter BPF program in '%s'",
783 path);
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800784 }
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400785 fclose(file);
786}
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800787
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400788void API minijail_parse_seccomp_filters_from_fd(struct minijail *j, int fd)
789{
790 if (!seccomp_should_parse_filters(j))
791 return;
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800792
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400793 FILE *file = fdopen(fd, "r");
794 if (!file) {
795 pdie("failed to associate stream with fd %d", fd);
796 }
797
798 if (parse_seccomp_filters(j, file) != 0) {
799 die("failed to compile seccomp filter BPF program from fd %d",
800 fd);
801 }
Elly Jonese1749eb2011-10-07 13:54:59 -0400802 fclose(file);
Will Drewry32ac9f52011-08-18 21:36:27 -0500803}
804
Andrew Brestickereac28942015-11-11 16:04:46 -0800805int API minijail_use_alt_syscall(struct minijail *j, const char *table)
806{
807 j->alt_syscall_table = strdup(table);
808 if (!j->alt_syscall_table)
809 return -ENOMEM;
810 j->flags.alt_syscall = 1;
811 return 0;
812}
813
Will Drewryf89aef52011-09-16 16:48:57 -0500814struct marshal_state {
Elly Jonese1749eb2011-10-07 13:54:59 -0400815 size_t available;
816 size_t total;
817 char *buf;
Will Drewryf89aef52011-09-16 16:48:57 -0500818};
819
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800820void marshal_state_init(struct marshal_state *state, char *buf,
821 size_t available)
Elly Jonese1749eb2011-10-07 13:54:59 -0400822{
823 state->available = available;
824 state->buf = buf;
825 state->total = 0;
Will Drewryf89aef52011-09-16 16:48:57 -0500826}
827
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800828void marshal_append(struct marshal_state *state, void *src, size_t length)
Elly Jonese1749eb2011-10-07 13:54:59 -0400829{
830 size_t copy_len = MIN(state->available, length);
Will Drewryf89aef52011-09-16 16:48:57 -0500831
Elly Jonese1749eb2011-10-07 13:54:59 -0400832 /* Up to |available| will be written. */
833 if (copy_len) {
834 memcpy(state->buf, src, copy_len);
835 state->buf += copy_len;
836 state->available -= copy_len;
837 }
838 /* |total| will contain the expected length. */
839 state->total += length;
Will Drewryf89aef52011-09-16 16:48:57 -0500840}
841
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400842void marshal_mount(struct marshal_state *state, const struct mountpoint *m)
Dylan Reid81e23972016-05-18 14:06:35 -0700843{
844 marshal_append(state, m->src, strlen(m->src) + 1);
845 marshal_append(state, m->dest, strlen(m->dest) + 1);
846 marshal_append(state, m->type, strlen(m->type) + 1);
847 marshal_append(state, (char *)&m->has_data, sizeof(m->has_data));
848 if (m->has_data)
849 marshal_append(state, m->data, strlen(m->data) + 1);
850 marshal_append(state, (char *)&m->flags, sizeof(m->flags));
851}
852
Will Drewry6ac91122011-10-21 16:38:58 -0500853void minijail_marshal_helper(struct marshal_state *state,
854 const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400855{
Dylan Reid648b2202015-10-23 00:50:00 -0700856 struct mountpoint *m = NULL;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800857 size_t i;
858
Elly Jonese1749eb2011-10-07 13:54:59 -0400859 marshal_append(state, (char *)j, sizeof(*j));
860 if (j->user)
861 marshal_append(state, j->user, strlen(j->user) + 1);
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800862 if (j->suppl_gid_list) {
863 marshal_append(state, j->suppl_gid_list,
864 j->suppl_gid_count * sizeof(gid_t));
865 }
Elly Jones51a5b6c2011-10-12 19:09:26 -0400866 if (j->chrootdir)
867 marshal_append(state, j->chrootdir, strlen(j->chrootdir) + 1);
Andrew Brestickereac28942015-11-11 16:04:46 -0800868 if (j->alt_syscall_table) {
869 marshal_append(state, j->alt_syscall_table,
870 strlen(j->alt_syscall_table) + 1);
871 }
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800872 if (j->flags.seccomp_filter && j->filter_prog) {
873 struct sock_fprog *fp = j->filter_prog;
874 marshal_append(state, (char *)fp->filter,
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800875 fp->len * sizeof(struct sock_filter));
Elly Jonese1749eb2011-10-07 13:54:59 -0400876 }
Dylan Reid648b2202015-10-23 00:50:00 -0700877 for (m = j->mounts_head; m; m = m->next) {
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400878 marshal_mount(state, m);
Elly Jones51a5b6c2011-10-12 19:09:26 -0400879 }
Dylan Reid605ce7f2016-01-19 19:21:00 -0800880 for (i = 0; i < j->cgroup_count; ++i)
881 marshal_append(state, j->cgroups[i], strlen(j->cgroups[i]) + 1);
Will Drewryf89aef52011-09-16 16:48:57 -0500882}
883
Will Drewry6ac91122011-10-21 16:38:58 -0500884size_t API minijail_size(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400885{
886 struct marshal_state state;
887 marshal_state_init(&state, NULL, 0);
888 minijail_marshal_helper(&state, j);
889 return state.total;
Will Drewry2ddaad02011-09-16 11:36:08 -0500890}
891
Elly Jonese1749eb2011-10-07 13:54:59 -0400892int minijail_marshal(const struct minijail *j, char *buf, size_t available)
893{
894 struct marshal_state state;
895 marshal_state_init(&state, buf, available);
896 minijail_marshal_helper(&state, j);
897 return (state.total > available);
Will Drewry2ddaad02011-09-16 11:36:08 -0500898}
899
Elly Jonese1749eb2011-10-07 13:54:59 -0400900int minijail_unmarshal(struct minijail *j, char *serialized, size_t length)
901{
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800902 size_t i;
903 size_t count;
Will Drewrybee7ba72011-10-21 20:47:01 -0500904 int ret = -EINVAL;
905
Elly Jonese1749eb2011-10-07 13:54:59 -0400906 if (length < sizeof(*j))
Will Drewrybee7ba72011-10-21 20:47:01 -0500907 goto out;
Elly Jonese1749eb2011-10-07 13:54:59 -0400908 memcpy((void *)j, serialized, sizeof(*j));
909 serialized += sizeof(*j);
910 length -= sizeof(*j);
Will Drewryf89aef52011-09-16 16:48:57 -0500911
Will Drewrybee7ba72011-10-21 20:47:01 -0500912 /* Potentially stale pointers not used as signals. */
Jorge Lucangeli Obes3b2e6e42016-08-04 12:26:19 -0400913 j->pid_file_path = NULL;
914 j->uidmap = NULL;
915 j->gidmap = NULL;
Dylan Reid648b2202015-10-23 00:50:00 -0700916 j->mounts_head = NULL;
917 j->mounts_tail = NULL;
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800918 j->filter_prog = NULL;
Will Drewrybee7ba72011-10-21 20:47:01 -0500919
Elly Jonese1749eb2011-10-07 13:54:59 -0400920 if (j->user) { /* stale pointer */
Elly Jones51a5b6c2011-10-12 19:09:26 -0400921 char *user = consumestr(&serialized, &length);
922 if (!user)
Will Drewrybee7ba72011-10-21 20:47:01 -0500923 goto clear_pointers;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400924 j->user = strdup(user);
Will Drewrybee7ba72011-10-21 20:47:01 -0500925 if (!j->user)
926 goto clear_pointers;
Elly Jonese1749eb2011-10-07 13:54:59 -0400927 }
Will Drewryf89aef52011-09-16 16:48:57 -0500928
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800929 if (j->suppl_gid_list) { /* stale pointer */
930 if (j->suppl_gid_count > NGROUPS_MAX) {
931 goto bad_gid_list;
932 }
933 size_t gid_list_size = j->suppl_gid_count * sizeof(gid_t);
934 void *gid_list_bytes =
935 consumebytes(gid_list_size, &serialized, &length);
936 if (!gid_list_bytes)
937 goto bad_gid_list;
938
939 j->suppl_gid_list = calloc(j->suppl_gid_count, sizeof(gid_t));
940 if (!j->suppl_gid_list)
941 goto bad_gid_list;
942
943 memcpy(j->suppl_gid_list, gid_list_bytes, gid_list_size);
944 }
945
Elly Jonesa8d1e1b2011-10-21 15:38:00 -0400946 if (j->chrootdir) { /* stale pointer */
947 char *chrootdir = consumestr(&serialized, &length);
948 if (!chrootdir)
Will Drewrybee7ba72011-10-21 20:47:01 -0500949 goto bad_chrootdir;
Elly Jonesa8d1e1b2011-10-21 15:38:00 -0400950 j->chrootdir = strdup(chrootdir);
Will Drewrybee7ba72011-10-21 20:47:01 -0500951 if (!j->chrootdir)
952 goto bad_chrootdir;
Elly Jonesa8d1e1b2011-10-21 15:38:00 -0400953 }
954
Andrew Brestickereac28942015-11-11 16:04:46 -0800955 if (j->alt_syscall_table) { /* stale pointer */
956 char *alt_syscall_table = consumestr(&serialized, &length);
957 if (!alt_syscall_table)
958 goto bad_syscall_table;
959 j->alt_syscall_table = strdup(alt_syscall_table);
960 if (!j->alt_syscall_table)
961 goto bad_syscall_table;
962 }
963
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800964 if (j->flags.seccomp_filter && j->filter_len > 0) {
965 size_t ninstrs = j->filter_len;
966 if (ninstrs > (SIZE_MAX / sizeof(struct sock_filter)) ||
967 ninstrs > USHRT_MAX)
968 goto bad_filters;
969
970 size_t program_len = ninstrs * sizeof(struct sock_filter);
971 void *program = consumebytes(program_len, &serialized, &length);
972 if (!program)
973 goto bad_filters;
974
975 j->filter_prog = malloc(sizeof(struct sock_fprog));
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800976 if (!j->filter_prog)
977 goto bad_filters;
978
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800979 j->filter_prog->len = ninstrs;
980 j->filter_prog->filter = malloc(program_len);
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -0800981 if (!j->filter_prog->filter)
982 goto bad_filter_prog_instrs;
983
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800984 memcpy(j->filter_prog->filter, program, program_len);
Elly Jonese1749eb2011-10-07 13:54:59 -0400985 }
Elly Jones51a5b6c2011-10-12 19:09:26 -0400986
Dylan Reid648b2202015-10-23 00:50:00 -0700987 count = j->mounts_count;
988 j->mounts_count = 0;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400989 for (i = 0; i < count; ++i) {
Dylan Reid648b2202015-10-23 00:50:00 -0700990 unsigned long *flags;
Dylan Reid81e23972016-05-18 14:06:35 -0700991 int *has_data;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400992 const char *dest;
Dylan Reid648b2202015-10-23 00:50:00 -0700993 const char *type;
Dylan Reid81e23972016-05-18 14:06:35 -0700994 const char *data = NULL;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400995 const char *src = consumestr(&serialized, &length);
996 if (!src)
Dylan Reid648b2202015-10-23 00:50:00 -0700997 goto bad_mounts;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400998 dest = consumestr(&serialized, &length);
999 if (!dest)
Dylan Reid648b2202015-10-23 00:50:00 -07001000 goto bad_mounts;
1001 type = consumestr(&serialized, &length);
1002 if (!type)
1003 goto bad_mounts;
Dylan Reid81e23972016-05-18 14:06:35 -07001004 has_data = consumebytes(sizeof(*has_data), &serialized,
1005 &length);
1006 if (!has_data)
1007 goto bad_mounts;
1008 if (*has_data) {
1009 data = consumestr(&serialized, &length);
1010 if (!data)
1011 goto bad_mounts;
1012 }
Dylan Reid648b2202015-10-23 00:50:00 -07001013 flags = consumebytes(sizeof(*flags), &serialized, &length);
1014 if (!flags)
1015 goto bad_mounts;
Dylan Reid81e23972016-05-18 14:06:35 -07001016 if (minijail_mount_with_data(j, src, dest, type, *flags, data))
Dylan Reid648b2202015-10-23 00:50:00 -07001017 goto bad_mounts;
Elly Jones51a5b6c2011-10-12 19:09:26 -04001018 }
1019
Dylan Reid605ce7f2016-01-19 19:21:00 -08001020 count = j->cgroup_count;
1021 j->cgroup_count = 0;
1022 for (i = 0; i < count; ++i) {
1023 char *cgroup = consumestr(&serialized, &length);
1024 if (!cgroup)
1025 goto bad_cgroups;
1026 j->cgroups[i] = strdup(cgroup);
1027 if (!j->cgroups[i])
1028 goto bad_cgroups;
1029 ++j->cgroup_count;
1030 }
1031
Elly Jonese1749eb2011-10-07 13:54:59 -04001032 return 0;
Will Drewrybee7ba72011-10-21 20:47:01 -05001033
Dylan Reid605ce7f2016-01-19 19:21:00 -08001034bad_cgroups:
1035 while (j->mounts_head) {
1036 struct mountpoint *m = j->mounts_head;
1037 j->mounts_head = j->mounts_head->next;
Dylan Reid81e23972016-05-18 14:06:35 -07001038 free(m->data);
Dylan Reid605ce7f2016-01-19 19:21:00 -08001039 free(m->type);
1040 free(m->dest);
1041 free(m->src);
1042 free(m);
1043 }
1044 for (i = 0; i < j->cgroup_count; ++i)
1045 free(j->cgroups[i]);
Dylan Reid648b2202015-10-23 00:50:00 -07001046bad_mounts:
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08001047 if (j->flags.seccomp_filter && j->filter_len > 0) {
1048 free(j->filter_prog->filter);
1049 free(j->filter_prog);
1050 }
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001051bad_filter_prog_instrs:
1052 if (j->filter_prog)
1053 free(j->filter_prog);
Will Drewrybee7ba72011-10-21 20:47:01 -05001054bad_filters:
Andrew Brestickereac28942015-11-11 16:04:46 -08001055 if (j->alt_syscall_table)
1056 free(j->alt_syscall_table);
1057bad_syscall_table:
Will Drewrybee7ba72011-10-21 20:47:01 -05001058 if (j->chrootdir)
1059 free(j->chrootdir);
1060bad_chrootdir:
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001061 if (j->suppl_gid_list)
1062 free(j->suppl_gid_list);
1063bad_gid_list:
Will Drewrybee7ba72011-10-21 20:47:01 -05001064 if (j->user)
1065 free(j->user);
1066clear_pointers:
1067 j->user = NULL;
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001068 j->suppl_gid_list = NULL;
Will Drewrybee7ba72011-10-21 20:47:01 -05001069 j->chrootdir = NULL;
Andrew Brestickereac28942015-11-11 16:04:46 -08001070 j->alt_syscall_table = NULL;
Dylan Reid605ce7f2016-01-19 19:21:00 -08001071 j->cgroup_count = 0;
Will Drewrybee7ba72011-10-21 20:47:01 -05001072out:
1073 return ret;
Will Drewry2ddaad02011-09-16 11:36:08 -05001074}
1075
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001076/*
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -04001077 * setup_mount_destination: Ensures the mount target exists.
1078 * Creates it if needed and possible.
Dylan Reideec77962016-06-30 19:35:10 -07001079 */
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001080static int setup_mount_destination(const char *source, const char *dest,
1081 uid_t uid, uid_t gid)
Dylan Reideec77962016-06-30 19:35:10 -07001082{
1083 int rc;
1084 struct stat st_buf;
1085
1086 rc = stat(dest, &st_buf);
1087 if (rc == 0) /* destination exists */
1088 return 0;
1089
1090 /*
1091 * Try to create the destination.
1092 * Either make a directory or touch a file depending on the source type.
1093 * If the source doesn't exist, assume it is a filesystem type such as
1094 * "tmpfs" and create a directory to mount it on.
1095 */
1096 rc = stat(source, &st_buf);
1097 if (rc || S_ISDIR(st_buf.st_mode) || S_ISBLK(st_buf.st_mode)) {
1098 if (mkdir(dest, 0700))
1099 return -errno;
1100 } else {
1101 int fd = open(dest, O_RDWR | O_CREAT, 0700);
1102 if (fd < 0)
1103 return -errno;
1104 close(fd);
1105 }
1106 return chown(dest, uid, gid);
1107}
1108
1109/*
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001110 * mount_one: Applies mounts from @m for @j, recursing as needed.
Dylan Reid648b2202015-10-23 00:50:00 -07001111 * @j Minijail these mounts are for
1112 * @m Head of list of mounts
Elly Jones51a5b6c2011-10-12 19:09:26 -04001113 *
1114 * Returns 0 for success.
1115 */
Dylan Reid648b2202015-10-23 00:50:00 -07001116static int mount_one(const struct minijail *j, struct mountpoint *m)
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -07001117{
Dylan Reid648b2202015-10-23 00:50:00 -07001118 int ret;
1119 char *dest;
1120 int remount_ro = 0;
1121
Jorge Lucangeli Obes2b12ba42016-01-26 10:37:51 -08001122 /* |dest| has a leading "/". */
Dylan Reid648b2202015-10-23 00:50:00 -07001123 if (asprintf(&dest, "%s%s", j->chrootdir, m->dest) < 0)
Elly Jones51a5b6c2011-10-12 19:09:26 -04001124 return -ENOMEM;
Dylan Reid648b2202015-10-23 00:50:00 -07001125
Dylan Reideec77962016-06-30 19:35:10 -07001126 if (setup_mount_destination(m->src, dest, j->uid, j->gid))
1127 pdie("creating mount target '%s' failed", dest);
1128
Dylan Reid648b2202015-10-23 00:50:00 -07001129 /*
Jorge Lucangeli Obes2b12ba42016-01-26 10:37:51 -08001130 * R/O bind mounts have to be remounted since 'bind' and 'ro'
1131 * can't both be specified in the original bind mount.
1132 * Remount R/O after the initial mount.
Dylan Reid648b2202015-10-23 00:50:00 -07001133 */
1134 if ((m->flags & MS_BIND) && (m->flags & MS_RDONLY)) {
1135 remount_ro = 1;
1136 m->flags &= ~MS_RDONLY;
Elly Jonesa1059632011-12-15 15:17:07 -05001137 }
Dylan Reid648b2202015-10-23 00:50:00 -07001138
Dylan Reid81e23972016-05-18 14:06:35 -07001139 ret = mount(m->src, dest, m->type, m->flags, m->data);
Dylan Reid648b2202015-10-23 00:50:00 -07001140 if (ret)
1141 pdie("mount: %s -> %s", m->src, dest);
1142
1143 if (remount_ro) {
1144 m->flags |= MS_RDONLY;
1145 ret = mount(m->src, dest, NULL,
Dylan Reid81e23972016-05-18 14:06:35 -07001146 m->flags | MS_REMOUNT, m->data);
Dylan Reid648b2202015-10-23 00:50:00 -07001147 if (ret)
1148 pdie("bind ro: %s -> %s", m->src, dest);
1149 }
1150
Elly Jones51a5b6c2011-10-12 19:09:26 -04001151 free(dest);
Dylan Reid648b2202015-10-23 00:50:00 -07001152 if (m->next)
1153 return mount_one(j, m->next);
Elly Jones51a5b6c2011-10-12 19:09:26 -04001154 return ret;
1155}
1156
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001157static int enter_chroot(const struct minijail *j)
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -07001158{
Elly Jones51a5b6c2011-10-12 19:09:26 -04001159 int ret;
Dylan Reid648b2202015-10-23 00:50:00 -07001160
1161 if (j->mounts_head && (ret = mount_one(j, j->mounts_head)))
Elly Jones51a5b6c2011-10-12 19:09:26 -04001162 return ret;
1163
1164 if (chroot(j->chrootdir))
1165 return -errno;
1166
1167 if (chdir("/"))
1168 return -errno;
1169
1170 return 0;
1171}
1172
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001173static int enter_pivot_root(const struct minijail *j)
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001174{
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001175 int ret, oldroot, newroot;
Dylan Reid648b2202015-10-23 00:50:00 -07001176
1177 if (j->mounts_head && (ret = mount_one(j, j->mounts_head)))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001178 return ret;
1179
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001180 /*
1181 * Keep the fd for both old and new root.
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001182 * It will be used in fchdir(2) later.
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001183 */
Ricky Zhoubce609d2016-03-02 21:47:56 -08001184 oldroot = open("/", O_DIRECTORY | O_RDONLY | O_CLOEXEC);
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001185 if (oldroot < 0)
1186 pdie("failed to open / for fchdir");
Ricky Zhoubce609d2016-03-02 21:47:56 -08001187 newroot = open(j->chrootdir, O_DIRECTORY | O_RDONLY | O_CLOEXEC);
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001188 if (newroot < 0)
1189 pdie("failed to open %s for fchdir", j->chrootdir);
1190
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001191 /*
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001192 * To ensure j->chrootdir is the root of a filesystem,
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001193 * do a self bind mount.
1194 */
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001195 if (mount(j->chrootdir, j->chrootdir, "bind", MS_BIND | MS_REC, ""))
1196 pdie("failed to bind mount '%s'", j->chrootdir);
1197 if (chdir(j->chrootdir))
1198 return -errno;
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001199 if (syscall(SYS_pivot_root, ".", "."))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001200 pdie("pivot_root");
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001201
1202 /*
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001203 * Now the old root is mounted on top of the new root. Use fchdir(2) to
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001204 * change to the old root and unmount it.
1205 */
1206 if (fchdir(oldroot))
1207 pdie("failed to fchdir to old /");
Hidehiko Abe097b7192016-03-16 18:00:36 +09001208
1209 /*
Jorge Lucangeli Obesdf7fab12016-06-01 17:15:31 -07001210 * If j->flags.skip_remount_private was enabled for minijail_enter(),
1211 * there could be a shared mount point under |oldroot|. In that case,
1212 * mounts under this shared mount point will be unmounted below, and
1213 * this unmounting will propagate to the original mount namespace
1214 * (because the mount point is shared). To prevent this unexpected
1215 * unmounting, remove these mounts from their peer groups by recursively
1216 * remounting them as MS_PRIVATE.
Hidehiko Abe097b7192016-03-16 18:00:36 +09001217 */
1218 if (mount(NULL, ".", NULL, MS_REC | MS_PRIVATE, NULL))
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001219 pdie("failed to mount(/, private) before umount(/)");
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001220 /* The old root might be busy, so use lazy unmount. */
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001221 if (umount2(".", MNT_DETACH))
1222 pdie("umount(/)");
1223 /* Change back to the new root. */
1224 if (fchdir(newroot))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001225 return -errno;
Ricky Zhoubce609d2016-03-02 21:47:56 -08001226 if (close(oldroot))
1227 return -errno;
1228 if (close(newroot))
1229 return -errno;
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001230 if (chroot("/"))
1231 return -errno;
Jorge Lucangeli Obes46a55092015-10-12 15:31:59 -07001232 /* Set correct CWD for getcwd(3). */
1233 if (chdir("/"))
1234 return -errno;
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001235
1236 return 0;
1237}
1238
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001239static int mount_tmp(void)
Lee Campbell11af0622014-05-22 12:36:04 -07001240{
Mike Frysinger0dce7572017-01-13 19:02:51 -05001241 return mount("none", "/tmp", "tmpfs", 0, "size=64M,mode=1777");
Lee Campbell11af0622014-05-22 12:36:04 -07001242}
1243
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001244static int remount_proc_readonly(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001245{
1246 const char *kProcPath = "/proc";
1247 const unsigned int kSafeFlags = MS_NODEV | MS_NOEXEC | MS_NOSUID;
Elly Jonesdd3e8512012-01-23 15:13:38 -05001248 /*
1249 * Right now, we're holding a reference to our parent's old mount of
Elly Jonese1749eb2011-10-07 13:54:59 -04001250 * /proc in our namespace, which means using MS_REMOUNT here would
1251 * mutate our parent's mount as well, even though we're in a VFS
Jorge Lucangeli Obesdf7fab12016-06-01 17:15:31 -07001252 * namespace (!). Instead, remove their mount from our namespace lazily
1253 * (MNT_DETACH) and make our own.
Elly Jonese1749eb2011-10-07 13:54:59 -04001254 */
Jorge Lucangeli Obesdf7fab12016-06-01 17:15:31 -07001255 if (umount2(kProcPath, MNT_DETACH)) {
1256 /*
1257 * If we are in a new user namespace, umount(2) will fail.
1258 * See http://man7.org/linux/man-pages/man7/user_namespaces.7.html
1259 */
1260 if (j->flags.userns) {
1261 info("umount(/proc, MNT_DETACH) failed, "
1262 "this is expected when using user namespaces");
1263 } else {
1264 return -errno;
1265 }
1266 }
Mike Frysinger3ba81572017-01-17 23:33:28 -05001267 if (mount("proc", kProcPath, "proc", kSafeFlags | MS_RDONLY, ""))
Elly Jonese1749eb2011-10-07 13:54:59 -04001268 return -errno;
1269 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -04001270}
1271
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001272static void kill_child_and_die(const struct minijail *j, const char *msg)
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001273{
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001274 kill(j->initpid, SIGKILL);
1275 die("%s", msg);
Dylan Reid605ce7f2016-01-19 19:21:00 -08001276}
1277
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001278static void write_pid_file_or_die(const struct minijail *j)
Dylan Reid605ce7f2016-01-19 19:21:00 -08001279{
Keshav Santhanamdb6dab42016-08-10 16:33:34 -07001280 if (write_pid_to_path(j->initpid, j->pid_file_path))
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001281 kill_child_and_die(j, "failed to write pid file");
Dylan Reid605ce7f2016-01-19 19:21:00 -08001282}
1283
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001284static void add_to_cgroups_or_die(const struct minijail *j)
Dylan Reid605ce7f2016-01-19 19:21:00 -08001285{
1286 size_t i;
1287
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001288 for (i = 0; i < j->cgroup_count; ++i) {
Keshav Santhanamdb6dab42016-08-10 16:33:34 -07001289 if (write_pid_to_path(j->initpid, j->cgroups[i]))
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001290 kill_child_and_die(j, "failed to add to cgroups");
1291 }
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001292}
1293
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001294static void write_ugid_maps_or_die(const struct minijail *j)
1295{
1296 if (j->uidmap && write_proc_file(j->initpid, j->uidmap, "uid_map") != 0)
1297 kill_child_and_die(j, "failed to write uid_map");
Mike Frysinger6b190c02017-01-04 17:18:42 -05001298 if (j->gidmap && j->flags.disable_setgroups) {
1299 /* Older kernels might not have the /proc/<pid>/setgroups files. */
1300 int ret = write_proc_file(j->initpid, "deny", "setgroups");
Mike Frysingereea841b2017-01-13 18:11:57 -05001301 if (ret != 0) {
Mike Frysinger6b190c02017-01-04 17:18:42 -05001302 if (ret == -ENOENT) {
1303 /* See http://man7.org/linux/man-pages/man7/user_namespaces.7.html. */
1304 warn("could not disable setgroups(2)");
1305 } else
1306 kill_child_and_die(j, "failed to disable setgroups(2)");
1307 }
1308 }
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001309 if (j->gidmap && write_proc_file(j->initpid, j->gidmap, "gid_map") != 0)
1310 kill_child_and_die(j, "failed to write gid_map");
1311}
1312
1313static void enter_user_namespace(const struct minijail *j)
1314{
1315 if (j->uidmap && setresuid(0, 0, 0))
1316 pdie("user_namespaces: setresuid(0, 0, 0) failed");
1317 if (j->gidmap && setresgid(0, 0, 0))
1318 pdie("user_namespaces: setresgid(0, 0, 0) failed");
1319}
1320
1321static void parent_setup_complete(int *pipe_fds)
1322{
1323 close(pipe_fds[0]);
1324 close(pipe_fds[1]);
1325}
1326
1327/*
1328 * wait_for_parent_setup: Called by the child process to wait for any
1329 * further parent-side setup to complete before continuing.
1330 */
1331static void wait_for_parent_setup(int *pipe_fds)
1332{
1333 char buf;
1334
1335 close(pipe_fds[1]);
1336
1337 /* Wait for parent to complete setup and close the pipe. */
1338 if (read(pipe_fds[0], &buf, 1) != 0)
1339 die("failed to sync with parent");
1340 close(pipe_fds[0]);
1341}
1342
1343static void drop_ugid(const struct minijail *j)
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001344{
Lutz Justen13807cb2017-01-03 17:11:55 +01001345 if (j->flags.inherit_suppl_gids + j->flags.keep_suppl_gids +
1346 j->flags.set_suppl_gids > 1) {
Jorge Lucangeli Obes34543192017-01-11 16:07:57 -05001347 die("can only do one of inherit, keep, or set supplementary "
1348 "groups");
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -08001349 }
1350
Lutz Justen13807cb2017-01-03 17:11:55 +01001351 if (j->flags.inherit_suppl_gids) {
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001352 if (initgroups(j->user, j->usergid))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001353 pdie("initgroups(%s, %d) failed", j->user, j->usergid);
Lutz Justen13807cb2017-01-03 17:11:55 +01001354 } else if (j->flags.set_suppl_gids) {
1355 if (setgroups(j->suppl_gid_count, j->suppl_gid_list))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001356 pdie("setgroups(suppl_gids) failed");
Lutz Justen13807cb2017-01-03 17:11:55 +01001357 } else if (!j->flags.keep_suppl_gids) {
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001358 /*
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -08001359 * Only attempt to clear supplementary groups if we are changing
Lutz Justen13807cb2017-01-03 17:11:55 +01001360 * users or groups.
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001361 */
Jorge Lucangeli Obes24499562016-12-01 11:59:27 -05001362 if ((j->flags.uid || j->flags.gid) && setgroups(0, NULL))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001363 pdie("setgroups(0, NULL) failed");
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001364 }
1365
1366 if (j->flags.gid && setresgid(j->gid, j->gid, j->gid))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001367 pdie("setresgid(%d, %d, %d) failed", j->gid, j->gid, j->gid);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001368
1369 if (j->flags.uid && setresuid(j->uid, j->uid, j->uid))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001370 pdie("setresuid(%d, %d, %d) failed", j->uid, j->uid, j->uid);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001371}
1372
Mike Frysinger3adfef72013-05-09 17:19:08 -04001373/*
1374 * We specifically do not use cap_valid() as that only tells us the last
1375 * valid cap we were *compiled* against (i.e. what the version of kernel
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001376 * headers says). If we run on a different kernel version, then it's not
Mike Frysinger3adfef72013-05-09 17:19:08 -04001377 * uncommon for that to be less (if an older kernel) or more (if a newer
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001378 * kernel).
1379 * Normally, we suck up the answer via /proc. On Android, not all processes are
1380 * guaranteed to be able to access '/proc/sys/kernel/cap_last_cap' so we
1381 * programmatically find the value by calling prctl(PR_CAPBSET_READ).
Mike Frysinger3adfef72013-05-09 17:19:08 -04001382 */
Jorge Lucangeli Obes20342742015-10-27 11:39:59 -07001383static unsigned int get_last_valid_cap()
Mike Frysinger3adfef72013-05-09 17:19:08 -04001384{
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001385 unsigned int last_valid_cap = 0;
1386 if (is_android()) {
1387 for (; prctl(PR_CAPBSET_READ, last_valid_cap, 0, 0, 0) >= 0;
1388 ++last_valid_cap);
Mike Frysinger3adfef72013-05-09 17:19:08 -04001389
Jorge Lucangeli Obes4b276a62016-01-07 14:31:33 -08001390 /* |last_valid_cap| will be the first failing value. */
1391 if (last_valid_cap > 0) {
1392 last_valid_cap--;
1393 }
1394 } else {
1395 const char cap_file[] = "/proc/sys/kernel/cap_last_cap";
1396 FILE *fp = fopen(cap_file, "re");
1397 if (fscanf(fp, "%u", &last_valid_cap) != 1)
1398 pdie("fscanf(%s)", cap_file);
1399 fclose(fp);
1400 }
Dylan Reidf682d472015-09-17 21:39:07 -07001401 return last_valid_cap;
Mike Frysinger3adfef72013-05-09 17:19:08 -04001402}
1403
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001404static void drop_capbset(uint64_t keep_mask, unsigned int last_valid_cap)
1405{
1406 const uint64_t one = 1;
1407 unsigned int i;
1408 for (i = 0; i < sizeof(keep_mask) * 8 && i <= last_valid_cap; ++i) {
1409 if (keep_mask & (one << i))
1410 continue;
1411 if (prctl(PR_CAPBSET_DROP, i))
1412 pdie("could not drop capability from bounding set");
1413 }
1414}
1415
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001416static void drop_caps(const struct minijail *j, unsigned int last_valid_cap)
Elly Jonese1749eb2011-10-07 13:54:59 -04001417{
Jorge Lucangeli Obes7ea269e2016-02-26 22:07:09 -08001418 if (!j->flags.use_caps)
1419 return;
1420
Elly Jonese1749eb2011-10-07 13:54:59 -04001421 cap_t caps = cap_get_proc();
Kees Cook323878a2013-02-05 15:35:24 -08001422 cap_value_t flag[1];
Kees Cooke5609ac2013-02-06 14:12:41 -08001423 const uint64_t one = 1;
Elly Jonese1749eb2011-10-07 13:54:59 -04001424 unsigned int i;
1425 if (!caps)
1426 die("can't get process caps");
1427 if (cap_clear_flag(caps, CAP_INHERITABLE))
1428 die("can't clear inheritable caps");
1429 if (cap_clear_flag(caps, CAP_EFFECTIVE))
1430 die("can't clear effective caps");
1431 if (cap_clear_flag(caps, CAP_PERMITTED))
1432 die("can't clear permitted caps");
Dylan Reidf682d472015-09-17 21:39:07 -07001433 for (i = 0; i < sizeof(j->caps) * 8 && i <= last_valid_cap; ++i) {
Kees Cook323878a2013-02-05 15:35:24 -08001434 /* Keep CAP_SETPCAP for dropping bounding set bits. */
Kees Cooke5609ac2013-02-06 14:12:41 -08001435 if (i != CAP_SETPCAP && !(j->caps & (one << i)))
Elly Jonese1749eb2011-10-07 13:54:59 -04001436 continue;
Kees Cook323878a2013-02-05 15:35:24 -08001437 flag[0] = i;
1438 if (cap_set_flag(caps, CAP_EFFECTIVE, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04001439 die("can't add effective cap");
Kees Cook323878a2013-02-05 15:35:24 -08001440 if (cap_set_flag(caps, CAP_PERMITTED, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04001441 die("can't add permitted cap");
Kees Cook323878a2013-02-05 15:35:24 -08001442 if (cap_set_flag(caps, CAP_INHERITABLE, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04001443 die("can't add inheritable cap");
1444 }
1445 if (cap_set_proc(caps))
Kees Cook323878a2013-02-05 15:35:24 -08001446 die("can't apply initial cleaned capset");
1447
1448 /*
1449 * Instead of dropping bounding set first, do it here in case
1450 * the caller had a more permissive bounding set which could
1451 * have been used above to raise a capability that wasn't already
1452 * present. This requires CAP_SETPCAP, so we raised/kept it above.
1453 */
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001454 drop_capbset(j->caps, last_valid_cap);
Kees Cook323878a2013-02-05 15:35:24 -08001455
1456 /* If CAP_SETPCAP wasn't specifically requested, now we remove it. */
Kees Cooke5609ac2013-02-06 14:12:41 -08001457 if ((j->caps & (one << CAP_SETPCAP)) == 0) {
Kees Cook323878a2013-02-05 15:35:24 -08001458 flag[0] = CAP_SETPCAP;
1459 if (cap_set_flag(caps, CAP_EFFECTIVE, 1, flag, CAP_CLEAR))
1460 die("can't clear effective cap");
1461 if (cap_set_flag(caps, CAP_PERMITTED, 1, flag, CAP_CLEAR))
1462 die("can't clear permitted cap");
1463 if (cap_set_flag(caps, CAP_INHERITABLE, 1, flag, CAP_CLEAR))
1464 die("can't clear inheritable cap");
1465 }
1466
1467 if (cap_set_proc(caps))
1468 die("can't apply final cleaned capset");
1469
1470 cap_free(caps);
Elly Jonescd7a9042011-07-22 13:56:51 -04001471}
1472
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001473static void set_seccomp_filter(const struct minijail *j)
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001474{
1475 /*
1476 * Set no_new_privs. See </kernel/seccomp.c> and </kernel/sys.c>
1477 * in the kernel source tree for an explanation of the parameters.
1478 */
1479 if (j->flags.no_new_privs) {
1480 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0))
1481 pdie("prctl(PR_SET_NO_NEW_PRIVS)");
1482 }
1483
1484 /*
Jorge Lucangeli Obes2413f372016-04-06 18:43:10 -07001485 * Code running with ASan
1486 * (https://github.com/google/sanitizers/wiki/AddressSanitizer)
1487 * will make system calls not included in the syscall filter policy,
1488 * which will likely crash the program. Skip setting seccomp filter in
1489 * that case.
1490 * 'running_with_asan()' has no inputs and is completely defined at
1491 * build time, so this cannot be used by an attacker to skip setting
1492 * seccomp filter.
1493 */
1494 if (j->flags.seccomp_filter && running_with_asan()) {
1495 warn("running with ASan, not setting seccomp filter");
1496 return;
1497 }
1498
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -04001499 if (j->flags.seccomp_filter) {
1500 if (j->flags.seccomp_filter_logging) {
1501 /*
1502 * If logging seccomp filter failures,
1503 * install the SIGSYS handler first.
1504 */
1505 if (install_sigsys_handler())
1506 pdie("failed to install SIGSYS handler");
1507 warn("logging seccomp filter failures");
1508 } else if (j->flags.seccomp_filter_tsync) {
1509 /*
1510 * If setting thread sync,
1511 * reset the SIGSYS signal handler so that
1512 * the entire thread group is killed.
1513 */
1514 if (signal(SIGSYS, SIG_DFL) == SIG_ERR)
1515 pdie("failed to reset SIGSYS disposition");
1516 info("reset SIGSYS disposition");
1517 }
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001518 }
1519
1520 /*
1521 * Install the syscall filter.
1522 */
1523 if (j->flags.seccomp_filter) {
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -04001524 if (j->flags.seccomp_filter_tsync) {
1525 if (sys_seccomp(SECCOMP_SET_MODE_FILTER,
1526 SECCOMP_FILTER_FLAG_TSYNC,
1527 j->filter_prog)) {
1528 pdie("seccomp(tsync) failed");
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001529 }
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -04001530 } else {
1531 if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER,
1532 j->filter_prog)) {
1533 pdie("prctl(seccomp_filter) failed");
1534 }
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001535 }
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001536 }
1537}
1538
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001539static void config_net_loopback(void)
Mike Frysinger7559dfe2016-11-15 18:58:39 -05001540{
1541 static const char ifname[] = "lo";
1542 int sock;
1543 struct ifreq ifr;
1544
1545 /* Make sure people don't try to add really long names. */
1546 _Static_assert(sizeof(ifname) <= IFNAMSIZ, "interface name too long");
1547
1548 sock = socket(AF_LOCAL, SOCK_DGRAM|SOCK_CLOEXEC, 0);
1549 if (sock < 0)
1550 pdie("socket(AF_LOCAL) failed");
1551
1552 /*
1553 * Do the equiv of `ip link set up lo`. The kernel will assign
1554 * IPv4 (127.0.0.1) & IPv6 (::1) addresses automatically!
1555 */
1556 strcpy(ifr.ifr_name, ifname);
1557 if (ioctl(sock, SIOCGIFFLAGS, &ifr) < 0)
1558 pdie("ioctl(SIOCGIFFLAGS) failed");
1559
1560 /* The kernel preserves ifr.ifr_name for use. */
1561 ifr.ifr_flags |= IFF_UP | IFF_RUNNING;
1562 if (ioctl(sock, SIOCSIFFLAGS, &ifr) < 0)
1563 pdie("ioctl(SIOCSIFFLAGS) failed");
1564
1565 close(sock);
1566}
1567
Will Drewry6ac91122011-10-21 16:38:58 -05001568void API minijail_enter(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001569{
Dylan Reidf682d472015-09-17 21:39:07 -07001570 /*
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08001571 * If we're dropping caps, get the last valid cap from /proc now,
1572 * since /proc can be unmounted before drop_caps() is called.
Dylan Reidf682d472015-09-17 21:39:07 -07001573 */
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08001574 unsigned int last_valid_cap = 0;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001575 if (j->flags.capbset_drop || j->flags.use_caps)
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08001576 last_valid_cap = get_last_valid_cap();
Dylan Reidf682d472015-09-17 21:39:07 -07001577
Elly Jonese1749eb2011-10-07 13:54:59 -04001578 if (j->flags.pids)
1579 die("tried to enter a pid-namespaced jail;"
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -07001580 " try minijail_run()?");
Elly Jonescd7a9042011-07-22 13:56:51 -04001581
Lutz Justen13807cb2017-01-03 17:11:55 +01001582 if (j->flags.inherit_suppl_gids && !j->user)
Jorge Lucangeli Obes34543192017-01-11 16:07:57 -05001583 die("cannot inherit supplementary groups without setting a "
1584 "username");
Elly Jonescd7a9042011-07-22 13:56:51 -04001585
Elly Jonesdd3e8512012-01-23 15:13:38 -05001586 /*
1587 * We can't recover from failures if we've dropped privileges partially,
Elly Jonese1749eb2011-10-07 13:54:59 -04001588 * so we don't even try. If any of our operations fail, we abort() the
1589 * entire process.
1590 */
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -07001591 if (j->flags.enter_vfs && setns(j->mountns_fd, CLONE_NEWNS))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001592 pdie("setns(CLONE_NEWNS) failed");
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -07001593
Jorge Lucangeli Obes805be392015-10-12 15:55:59 -07001594 if (j->flags.vfs) {
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08001595 if (unshare(CLONE_NEWNS))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001596 pdie("unshare(CLONE_NEWNS) failed");
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08001597 /*
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001598 * Unless asked not to, remount all filesystems as private.
1599 * If they are shared, new bind mounts will creep out of our
1600 * namespace.
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08001601 * https://www.kernel.org/doc/Documentation/filesystems/sharedsubtree.txt
1602 */
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001603 if (!j->flags.skip_remount_private) {
1604 if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001605 pdie("mount(NULL, /, NULL, MS_REC | MS_PRIVATE,"
1606 " NULL) failed");
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001607 }
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08001608 }
Elly Fong-Jones6c086302013-03-20 17:15:28 -04001609
Dylan Reidf7942472015-11-18 17:55:26 -08001610 if (j->flags.ipc && unshare(CLONE_NEWIPC)) {
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001611 pdie("unshare(CLONE_NEWIPC) failed");
Dylan Reidf7942472015-11-18 17:55:26 -08001612 }
1613
Dylan Reid1102f5a2015-09-15 11:52:20 -07001614 if (j->flags.enter_net) {
1615 if (setns(j->netns_fd, CLONE_NEWNET))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001616 pdie("setns(CLONE_NEWNET) failed");
Mike Frysinger7559dfe2016-11-15 18:58:39 -05001617 } else if (j->flags.net) {
1618 if (unshare(CLONE_NEWNET))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001619 pdie("unshare(CLONE_NEWNET) failed");
1620 config_net_loopback();
Dylan Reid1102f5a2015-09-15 11:52:20 -07001621 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001622
Dylan Reid4cbc2a52016-06-17 19:06:07 -07001623 if (j->flags.ns_cgroups && unshare(CLONE_NEWCGROUP))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001624 pdie("unshare(CLONE_NEWCGROUP) failed");
Dylan Reid4cbc2a52016-06-17 19:06:07 -07001625
Elly Jones51a5b6c2011-10-12 19:09:26 -04001626 if (j->flags.chroot && enter_chroot(j))
1627 pdie("chroot");
1628
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001629 if (j->flags.pivot_root && enter_pivot_root(j))
1630 pdie("pivot_root");
1631
Jorge Lucangeli Obes3901da62015-03-03 13:55:11 -08001632 if (j->flags.mount_tmp && mount_tmp())
Lee Campbell11af0622014-05-22 12:36:04 -07001633 pdie("mount_tmp");
1634
Dylan Reid791f5772015-09-14 20:02:42 -07001635 if (j->flags.remount_proc_ro && remount_proc_readonly(j))
Elly Jonese1749eb2011-10-07 13:54:59 -04001636 pdie("remount");
Elly Jonescd7a9042011-07-22 13:56:51 -04001637
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08001638 /*
1639 * If we're only dropping capabilities from the bounding set, but not
1640 * from the thread's (permitted|inheritable|effective) sets, do it now.
1641 */
1642 if (j->flags.capbset_drop) {
1643 drop_capbset(j->cap_bset, last_valid_cap);
1644 }
1645
1646 if (j->flags.use_caps) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05001647 /*
1648 * POSIX capabilities are a bit tricky. If we drop our
Elly Jonese1749eb2011-10-07 13:54:59 -04001649 * capability to change uids, our attempt to use setuid()
1650 * below will fail. Hang on to root caps across setuid(), then
1651 * lock securebits.
1652 */
1653 if (prctl(PR_SET_KEEPCAPS, 1))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001654 pdie("prctl(PR_SET_KEEPCAPS) failed");
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -07001655
1656 /*
1657 * Kernels 4.3+ define a new securebit
1658 * (SECURE_NO_CAP_AMBIENT_RAISE), so using the SECURE_ALL_BITS
1659 * and SECURE_ALL_LOCKS masks from newer kernel headers will
1660 * return EPERM on older kernels. Detect this, and retry with
1661 * the right mask for older (2.6.26-4.2) kernels.
1662 */
1663 int securebits_ret = prctl(PR_SET_SECUREBITS,
1664 SECURE_ALL_BITS | SECURE_ALL_LOCKS);
1665 if (securebits_ret < 0) {
1666 if (errno == EPERM) {
1667 /* Possibly running on kernel < 4.3. */
1668 securebits_ret = prctl(
1669 PR_SET_SECUREBITS,
1670 OLD_SECURE_ALL_BITS | OLD_SECURE_ALL_LOCKS);
1671 }
1672 }
1673 if (securebits_ret < 0)
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001674 pdie("prctl(PR_SET_SECUREBITS) failed");
Elly Jonese1749eb2011-10-07 13:54:59 -04001675 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001676
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07001677 if (j->flags.no_new_privs) {
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08001678 /*
1679 * If we're setting no_new_privs, we can drop privileges
1680 * before setting seccomp filter. This way filter policies
1681 * don't need to allow privilege-dropping syscalls.
1682 */
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001683 drop_ugid(j);
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08001684 drop_caps(j, last_valid_cap);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001685 set_seccomp_filter(j);
Elly Jonese1749eb2011-10-07 13:54:59 -04001686 } else {
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001687 /*
1688 * If we're not setting no_new_privs,
1689 * we need to set seccomp filter *before* dropping privileges.
1690 * WARNING: this means that filter policies *must* allow
1691 * setgroups()/setresgid()/setresuid() for dropping root and
1692 * capget()/capset()/prctl() for dropping caps.
1693 */
1694 set_seccomp_filter(j);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07001695 drop_ugid(j);
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08001696 drop_caps(j, last_valid_cap);
Elly Jonese1749eb2011-10-07 13:54:59 -04001697 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001698
Elly Jonesdd3e8512012-01-23 15:13:38 -05001699 /*
Andrew Brestickereac28942015-11-11 16:04:46 -08001700 * Select the specified alternate syscall table. The table must not
1701 * block prctl(2) if we're using seccomp as well.
1702 */
1703 if (j->flags.alt_syscall) {
1704 if (prctl(PR_ALT_SYSCALL, 1, j->alt_syscall_table))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001705 pdie("prctl(PR_ALT_SYSCALL) failed");
Andrew Brestickereac28942015-11-11 16:04:46 -08001706 }
1707
1708 /*
Elly Jonesdd3e8512012-01-23 15:13:38 -05001709 * seccomp has to come last since it cuts off all the other
Elly Jonese1749eb2011-10-07 13:54:59 -04001710 * privilege-dropping syscalls :)
1711 */
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001712 if (j->flags.seccomp && prctl(PR_SET_SECCOMP, 1)) {
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -04001713 if ((errno == EINVAL) && seccomp_can_softfail()) {
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001714 warn("seccomp not supported");
1715 return;
1716 }
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001717 pdie("prctl(PR_SET_SECCOMP) failed");
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001718 }
Elly Jonescd7a9042011-07-22 13:56:51 -04001719}
1720
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04001721/* TODO(wad): will visibility affect this variable? */
Elly Jonescd7a9042011-07-22 13:56:51 -04001722static int init_exitstatus = 0;
1723
Will Drewry6ac91122011-10-21 16:38:58 -05001724void init_term(int __attribute__ ((unused)) sig)
Elly Jonese1749eb2011-10-07 13:54:59 -04001725{
1726 _exit(init_exitstatus);
Elly Jonescd7a9042011-07-22 13:56:51 -04001727}
1728
Jorge Lucangeli Obes963eeec2016-08-10 16:02:43 -04001729void init(pid_t rootpid)
Elly Jonese1749eb2011-10-07 13:54:59 -04001730{
1731 pid_t pid;
1732 int status;
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04001733 /* So that we exit with the right status. */
Elly Jonese1749eb2011-10-07 13:54:59 -04001734 signal(SIGTERM, init_term);
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04001735 /* TODO(wad): self jail with seccomp filters here. */
Elly Jonese1749eb2011-10-07 13:54:59 -04001736 while ((pid = wait(&status)) > 0) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05001737 /*
1738 * This loop will only end when either there are no processes
Elly Jonese1749eb2011-10-07 13:54:59 -04001739 * left inside our pid namespace or we get a signal.
1740 */
1741 if (pid == rootpid)
1742 init_exitstatus = status;
1743 }
1744 if (!WIFEXITED(init_exitstatus))
1745 _exit(MINIJAIL_ERR_INIT);
1746 _exit(WEXITSTATUS(init_exitstatus));
Elly Jonescd7a9042011-07-22 13:56:51 -04001747}
1748
Will Drewry6ac91122011-10-21 16:38:58 -05001749int API minijail_from_fd(int fd, struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001750{
1751 size_t sz = 0;
1752 size_t bytes = read(fd, &sz, sizeof(sz));
1753 char *buf;
1754 int r;
1755 if (sizeof(sz) != bytes)
1756 return -EINVAL;
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001757 if (sz > USHRT_MAX) /* arbitrary sanity check */
Elly Jonese1749eb2011-10-07 13:54:59 -04001758 return -E2BIG;
1759 buf = malloc(sz);
1760 if (!buf)
1761 return -ENOMEM;
1762 bytes = read(fd, buf, sz);
1763 if (bytes != sz) {
1764 free(buf);
1765 return -EINVAL;
1766 }
1767 r = minijail_unmarshal(j, buf, sz);
1768 free(buf);
1769 return r;
Will Drewry2f54b6a2011-09-16 13:45:31 -05001770}
1771
Will Drewry6ac91122011-10-21 16:38:58 -05001772int API minijail_to_fd(struct minijail *j, int fd)
Elly Jonese1749eb2011-10-07 13:54:59 -04001773{
1774 char *buf;
1775 size_t sz = minijail_size(j);
1776 ssize_t written;
1777 int r;
Elly Jonescd7a9042011-07-22 13:56:51 -04001778
Elly Jonese1749eb2011-10-07 13:54:59 -04001779 if (!sz)
1780 return -EINVAL;
1781 buf = malloc(sz);
1782 r = minijail_marshal(j, buf, sz);
1783 if (r) {
1784 free(buf);
1785 return r;
1786 }
1787 /* Sends [size][minijail]. */
1788 written = write(fd, &sz, sizeof(sz));
1789 if (written != sizeof(sz)) {
1790 free(buf);
1791 return -EFAULT;
1792 }
1793 written = write(fd, buf, sz);
1794 if (written < 0 || (size_t) written != sz) {
1795 free(buf);
1796 return -EFAULT;
1797 }
1798 free(buf);
1799 return 0;
Will Drewry2f54b6a2011-09-16 13:45:31 -05001800}
Elly Jonescd7a9042011-07-22 13:56:51 -04001801
Will Drewry6ac91122011-10-21 16:38:58 -05001802int setup_preload(void)
Elly Jonese1749eb2011-10-07 13:54:59 -04001803{
Daniel Erat5b7a3182015-08-19 16:06:22 -06001804#if defined(__ANDROID__)
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -07001805 /* Don't use LDPRELOAD on Brillo. */
1806 return 0;
1807#else
Elly Jonese1749eb2011-10-07 13:54:59 -04001808 char *oldenv = getenv(kLdPreloadEnvVar) ? : "";
1809 char *newenv = malloc(strlen(oldenv) + 2 + strlen(PRELOADPATH));
1810 if (!newenv)
1811 return -ENOMEM;
Elly Jonescd7a9042011-07-22 13:56:51 -04001812
Elly Jonese1749eb2011-10-07 13:54:59 -04001813 /* Only insert a separating space if we have something to separate... */
1814 sprintf(newenv, "%s%s%s", oldenv, strlen(oldenv) ? " " : "",
1815 PRELOADPATH);
Elly Jonescd7a9042011-07-22 13:56:51 -04001816
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001817 /* setenv() makes a copy of the string we give it. */
Elly Jonese1749eb2011-10-07 13:54:59 -04001818 setenv(kLdPreloadEnvVar, newenv, 1);
1819 free(newenv);
1820 return 0;
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -07001821#endif
Elly Jonescd7a9042011-07-22 13:56:51 -04001822}
1823
Will Drewry6ac91122011-10-21 16:38:58 -05001824int setup_pipe(int fds[2])
Elly Jonese1749eb2011-10-07 13:54:59 -04001825{
1826 int r = pipe(fds);
1827 char fd_buf[11];
1828 if (r)
1829 return r;
1830 r = snprintf(fd_buf, sizeof(fd_buf), "%d", fds[0]);
1831 if (r <= 0)
1832 return -EINVAL;
1833 setenv(kFdEnvVar, fd_buf, 1);
1834 return 0;
Will Drewryf89aef52011-09-16 16:48:57 -05001835}
1836
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001837int setup_pipe_end(int fds[2], size_t index)
1838{
1839 if (index > 1)
1840 return -1;
1841
1842 close(fds[1 - index]);
1843 return fds[index];
1844}
1845
1846int setup_and_dupe_pipe_end(int fds[2], size_t index, int fd)
1847{
1848 if (index > 1)
1849 return -1;
1850
1851 close(fds[1 - index]);
1852 /* dup2(2) the corresponding end of the pipe into |fd|. */
1853 return dup2(fds[index], fd);
1854}
1855
Luis Hector Chavez43ff0802016-10-07 12:21:07 -07001856int close_open_fds(int *inheritable_fds, size_t size)
1857{
1858 const char *kFdPath = "/proc/self/fd";
1859
1860 DIR *d = opendir(kFdPath);
1861 struct dirent *dir_entry;
1862
1863 if (d == NULL)
1864 return -1;
1865 int dir_fd = dirfd(d);
1866 while ((dir_entry = readdir(d)) != NULL) {
1867 size_t i;
1868 char *end;
1869 bool should_close = true;
1870 const int fd = strtol(dir_entry->d_name, &end, 10);
1871
1872 if ((*end) != '\0') {
1873 continue;
1874 }
1875 /*
1876 * We might have set up some pipes that we want to share with
1877 * the parent process, and should not be closed.
1878 */
1879 for (i = 0; i < size; ++i) {
1880 if (fd == inheritable_fds[i]) {
1881 should_close = false;
1882 break;
1883 }
1884 }
1885 /* Also avoid closing the directory fd. */
1886 if (should_close && fd != dir_fd)
1887 close(fd);
1888 }
1889 closedir(d);
1890 return 0;
1891}
1892
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001893int minijail_run_internal(struct minijail *j, const char *filename,
1894 char *const argv[], pid_t *pchild_pid,
1895 int *pstdin_fd, int *pstdout_fd, int *pstderr_fd,
1896 int use_preload);
1897
Will Drewry6ac91122011-10-21 16:38:58 -05001898int API minijail_run(struct minijail *j, const char *filename,
1899 char *const argv[])
Elly Jonese1749eb2011-10-07 13:54:59 -04001900{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001901 return minijail_run_internal(j, filename, argv, NULL, NULL, NULL, NULL,
1902 true);
Jorge Lucangeli Obes9807d032012-04-17 13:36:00 -07001903}
1904
1905int API minijail_run_pid(struct minijail *j, const char *filename,
1906 char *const argv[], pid_t *pchild_pid)
1907{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001908 return minijail_run_internal(j, filename, argv, pchild_pid,
1909 NULL, NULL, NULL, true);
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001910}
1911
1912int API minijail_run_pipe(struct minijail *j, const char *filename,
Jorge Lucangeli Obes6537a562012-09-05 10:39:40 -07001913 char *const argv[], int *pstdin_fd)
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001914{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001915 return minijail_run_internal(j, filename, argv, NULL, pstdin_fd,
1916 NULL, NULL, true);
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001917}
1918
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001919int API minijail_run_pid_pipes(struct minijail *j, const char *filename,
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -07001920 char *const argv[], pid_t *pchild_pid,
1921 int *pstdin_fd, int *pstdout_fd, int *pstderr_fd)
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001922{
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001923 return minijail_run_internal(j, filename, argv, pchild_pid,
1924 pstdin_fd, pstdout_fd, pstderr_fd, true);
1925}
1926
1927int API minijail_run_no_preload(struct minijail *j, const char *filename,
1928 char *const argv[])
1929{
1930 return minijail_run_internal(j, filename, argv, NULL, NULL, NULL, NULL,
1931 false);
1932}
1933
Samuel Tan63187f42015-10-16 13:01:53 -07001934int API minijail_run_pid_pipes_no_preload(struct minijail *j,
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001935 const char *filename,
1936 char *const argv[],
Samuel Tan63187f42015-10-16 13:01:53 -07001937 pid_t *pchild_pid,
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001938 int *pstdin_fd, int *pstdout_fd,
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001939 int *pstderr_fd)
1940{
Samuel Tan63187f42015-10-16 13:01:53 -07001941 return minijail_run_internal(j, filename, argv, pchild_pid,
1942 pstdin_fd, pstdout_fd, pstderr_fd, false);
1943}
1944
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001945int minijail_run_internal(struct minijail *j, const char *filename,
1946 char *const argv[], pid_t *pchild_pid,
1947 int *pstdin_fd, int *pstdout_fd, int *pstderr_fd,
1948 int use_preload)
1949{
Elly Jonese1749eb2011-10-07 13:54:59 -04001950 char *oldenv, *oldenv_copy = NULL;
1951 pid_t child_pid;
1952 int pipe_fds[2];
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07001953 int stdin_fds[2];
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08001954 int stdout_fds[2];
1955 int stderr_fds[2];
Dylan Reidce5b55e2016-01-13 11:04:16 -08001956 int child_sync_pipe_fds[2];
1957 int sync_child = 0;
Elly Jonese1749eb2011-10-07 13:54:59 -04001958 int ret;
Elly Jonesa05d7bb2012-06-14 14:09:27 -04001959 /* We need to remember this across the minijail_preexec() call. */
1960 int pid_namespace = j->flags.pids;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08001961 int do_init = j->flags.do_init;
Ben Chan541c7e52011-08-26 14:55:53 -07001962
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001963 if (use_preload) {
1964 oldenv = getenv(kLdPreloadEnvVar);
1965 if (oldenv) {
1966 oldenv_copy = strdup(oldenv);
1967 if (!oldenv_copy)
1968 return -ENOMEM;
1969 }
1970
1971 if (setup_preload())
1972 return -EFAULT;
Elly Jonese1749eb2011-10-07 13:54:59 -04001973 }
Will Drewryf89aef52011-09-16 16:48:57 -05001974
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001975 if (!use_preload) {
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04001976 if (j->flags.use_caps && j->caps != 0)
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05001977 die("non-empty capabilities are not supported without "
1978 "LD_PRELOAD");
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001979 }
Will Drewry2f54b6a2011-09-16 13:45:31 -05001980
Elly Jonesdd3e8512012-01-23 15:13:38 -05001981 /*
Jorge Lucangeli Obesaa235b92016-11-23 13:48:15 -05001982 * Make the process group ID of this process equal to its PID.
1983 * In the non-interactive case (e.g. when the parent process is started
1984 * from init) this ensures the parent process and the jailed process
1985 * can be killed together.
1986 * When the parent process is started from the console this ensures
1987 * the call to setsid(2) in the jailed process succeeds.
1988 *
Jorge Lucangeli Obes3c84df12015-05-14 17:37:58 -07001989 * Don't fail on EPERM, since setpgid(0, 0) can only EPERM when
1990 * the process is already a process group leader.
1991 */
1992 if (setpgid(0 /* use calling PID */, 0 /* make PGID = PID */)) {
1993 if (errno != EPERM) {
Jorge Lucangeli Obesaa235b92016-11-23 13:48:15 -05001994 pdie("setpgid(0, 0) failed");
Jorge Lucangeli Obes3c84df12015-05-14 17:37:58 -07001995 }
1996 }
1997
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07001998 if (use_preload) {
1999 /*
2000 * Before we fork(2) and execve(2) the child process, we need
2001 * to open a pipe(2) to send the minijail configuration over.
2002 */
2003 if (setup_pipe(pipe_fds))
2004 return -EFAULT;
2005 }
Elly Jonescd7a9042011-07-22 13:56:51 -04002006
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002007 /*
2008 * If we want to write to the child process' standard input,
2009 * create the pipe(2) now.
2010 */
2011 if (pstdin_fd) {
2012 if (pipe(stdin_fds))
2013 return -EFAULT;
2014 }
2015
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002016 /*
2017 * If we want to read from the child process' standard output,
2018 * create the pipe(2) now.
2019 */
2020 if (pstdout_fd) {
2021 if (pipe(stdout_fds))
2022 return -EFAULT;
2023 }
2024
2025 /*
2026 * If we want to read from the child process' standard error,
2027 * create the pipe(2) now.
2028 */
2029 if (pstderr_fd) {
2030 if (pipe(stderr_fds))
2031 return -EFAULT;
2032 }
2033
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002034 /*
Jorge Lucangeli Obesab6fa6f2016-08-04 15:42:48 -04002035 * If we want to set up a new uid/gid map in the user namespace,
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -08002036 * or if we need to add the child process to cgroups, create the pipe(2)
2037 * to sync between parent and child.
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002038 */
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -08002039 if (j->flags.userns || j->flags.cgroups) {
Dylan Reidce5b55e2016-01-13 11:04:16 -08002040 sync_child = 1;
2041 if (pipe(child_sync_pipe_fds))
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002042 return -EFAULT;
2043 }
2044
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08002045 /*
2046 * Use sys_clone() if and only if we're creating a pid namespace.
Elly Jones761b7412012-06-13 15:49:52 -04002047 *
2048 * tl;dr: WARNING: do not mix pid namespaces and multithreading.
2049 *
2050 * In multithreaded programs, there are a bunch of locks inside libc,
2051 * some of which may be held by other threads at the time that we call
2052 * minijail_run_pid(). If we call fork(), glibc does its level best to
2053 * ensure that we hold all of these locks before it calls clone()
2054 * internally and drop them after clone() returns, but when we call
2055 * sys_clone(2) directly, all that gets bypassed and we end up with a
2056 * child address space where some of libc's important locks are held by
2057 * other threads (which did not get cloned, and hence will never release
2058 * those locks). This is okay so long as we call exec() immediately
2059 * after, but a bunch of seemingly-innocent libc functions like setenv()
2060 * take locks.
2061 *
2062 * Hence, only call sys_clone() if we need to, in order to get at pid
2063 * namespacing. If we follow this path, the child's address space might
2064 * have broken locks; you may only call functions that do not acquire
2065 * any locks.
2066 *
2067 * Unfortunately, fork() acquires every lock it can get its hands on, as
2068 * previously detailed, so this function is highly likely to deadlock
2069 * later on (see "deadlock here") if we're multithreaded.
2070 *
2071 * We might hack around this by having the clone()d child (init of the
2072 * pid namespace) return directly, rather than leaving the clone()d
2073 * process hanging around to be init for the new namespace (and having
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08002074 * its fork()ed child return in turn), but that process would be
2075 * crippled with its libc locks potentially broken. We might try
2076 * fork()ing in the parent before we clone() to ensure that we own all
2077 * the locks, but then we have to have the forked child hanging around
2078 * consuming resources (and possibly having file descriptors / shared
2079 * memory regions / etc attached). We'd need to keep the child around to
2080 * avoid having its children get reparented to init.
Elly Jones761b7412012-06-13 15:49:52 -04002081 *
2082 * TODO(ellyjones): figure out if the "forked child hanging around"
2083 * problem is fixable or not. It would be nice if we worked in this
2084 * case.
2085 */
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002086 if (pid_namespace) {
2087 int clone_flags = CLONE_NEWPID | SIGCHLD;
2088 if (j->flags.userns)
2089 clone_flags |= CLONE_NEWUSER;
2090 child_pid = syscall(SYS_clone, clone_flags, NULL);
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002091 } else {
Elly Jones761b7412012-06-13 15:49:52 -04002092 child_pid = fork();
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002093 }
Elly Jones761b7412012-06-13 15:49:52 -04002094
Elly Jonese1749eb2011-10-07 13:54:59 -04002095 if (child_pid < 0) {
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002096 if (use_preload) {
2097 free(oldenv_copy);
2098 }
Lee Campbell1e4fc6a2014-06-06 17:40:02 -07002099 die("failed to fork child");
Elly Jonese1749eb2011-10-07 13:54:59 -04002100 }
Will Drewryf89aef52011-09-16 16:48:57 -05002101
Elly Jonese1749eb2011-10-07 13:54:59 -04002102 if (child_pid) {
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002103 if (use_preload) {
2104 /* Restore parent's LD_PRELOAD. */
2105 if (oldenv_copy) {
2106 setenv(kLdPreloadEnvVar, oldenv_copy, 1);
2107 free(oldenv_copy);
2108 } else {
2109 unsetenv(kLdPreloadEnvVar);
2110 }
2111 unsetenv(kFdEnvVar);
Elly Jonese1749eb2011-10-07 13:54:59 -04002112 }
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002113
Elly Jonese1749eb2011-10-07 13:54:59 -04002114 j->initpid = child_pid;
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002115
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08002116 if (j->flags.pid_file)
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04002117 write_pid_file_or_die(j);
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08002118
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -08002119 if (j->flags.cgroups)
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04002120 add_to_cgroups_or_die(j);
Dylan Reid605ce7f2016-01-19 19:21:00 -08002121
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002122 if (j->flags.userns)
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04002123 write_ugid_maps_or_die(j);
Dylan Reidce5b55e2016-01-13 11:04:16 -08002124
2125 if (sync_child)
2126 parent_setup_complete(child_sync_pipe_fds);
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002127
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002128 if (use_preload) {
2129 /* Send marshalled minijail. */
2130 close(pipe_fds[0]); /* read endpoint */
2131 ret = minijail_to_fd(j, pipe_fds[1]);
2132 close(pipe_fds[1]); /* write endpoint */
2133 if (ret) {
2134 kill(j->initpid, SIGKILL);
2135 die("failed to send marshalled minijail");
2136 }
Elly Jonese1749eb2011-10-07 13:54:59 -04002137 }
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002138
Jorge Lucangeli Obes9807d032012-04-17 13:36:00 -07002139 if (pchild_pid)
2140 *pchild_pid = child_pid;
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002141
2142 /*
2143 * If we want to write to the child process' standard input,
2144 * set up the write end of the pipe.
2145 */
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002146 if (pstdin_fd)
2147 *pstdin_fd = setup_pipe_end(stdin_fds,
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002148 1 /* write end */);
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002149
2150 /*
2151 * If we want to read from the child process' standard output,
2152 * set up the read end of the pipe.
2153 */
2154 if (pstdout_fd)
2155 *pstdout_fd = setup_pipe_end(stdout_fds,
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002156 0 /* read end */);
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002157
2158 /*
2159 * If we want to read from the child process' standard error,
2160 * set up the read end of the pipe.
2161 */
2162 if (pstderr_fd)
2163 *pstderr_fd = setup_pipe_end(stderr_fds,
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002164 0 /* read end */);
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002165
Elly Jonese1749eb2011-10-07 13:54:59 -04002166 return 0;
2167 }
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04002168 /* Child process. */
Elly Jonese1749eb2011-10-07 13:54:59 -04002169 free(oldenv_copy);
Ben Chan541c7e52011-08-26 14:55:53 -07002170
Peter Qiu2860c462015-12-16 15:13:06 -08002171 if (j->flags.reset_signal_mask) {
2172 sigset_t signal_mask;
2173 if (sigemptyset(&signal_mask) != 0)
2174 pdie("sigemptyset failed");
2175 if (sigprocmask(SIG_SETMASK, &signal_mask, NULL) != 0)
2176 pdie("sigprocmask failed");
2177 }
2178
Luis Hector Chavez43ff0802016-10-07 12:21:07 -07002179 if (j->flags.close_open_fds) {
2180 const size_t kMaxInheritableFdsSize = 10;
2181 int inheritable_fds[kMaxInheritableFdsSize];
2182 size_t size = 0;
2183 if (use_preload) {
2184 inheritable_fds[size++] = pipe_fds[0];
2185 inheritable_fds[size++] = pipe_fds[1];
2186 }
2187 if (sync_child) {
2188 inheritable_fds[size++] = child_sync_pipe_fds[0];
2189 inheritable_fds[size++] = child_sync_pipe_fds[1];
2190 }
2191 if (pstdin_fd) {
2192 inheritable_fds[size++] = stdin_fds[0];
2193 inheritable_fds[size++] = stdin_fds[1];
2194 }
2195 if (pstdout_fd) {
2196 inheritable_fds[size++] = stdout_fds[0];
2197 inheritable_fds[size++] = stdout_fds[1];
2198 }
2199 if (pstderr_fd) {
2200 inheritable_fds[size++] = stderr_fds[0];
2201 inheritable_fds[size++] = stderr_fds[1];
2202 }
2203
2204 if (close_open_fds(inheritable_fds, size) < 0)
2205 die("failed to close open file descriptors");
2206 }
2207
Dylan Reidce5b55e2016-01-13 11:04:16 -08002208 if (sync_child)
2209 wait_for_parent_setup(child_sync_pipe_fds);
2210
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002211 if (j->flags.userns)
Dylan Reidce5b55e2016-01-13 11:04:16 -08002212 enter_user_namespace(j);
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08002213
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002214 /*
2215 * If we want to write to the jailed process' standard input,
2216 * set up the read end of the pipe.
2217 */
2218 if (pstdin_fd) {
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002219 if (setup_and_dupe_pipe_end(stdin_fds, 0 /* read end */,
2220 STDIN_FILENO) < 0)
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002221 die("failed to set up stdin pipe");
2222 }
2223
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002224 /*
2225 * If we want to read from the jailed process' standard output,
2226 * set up the write end of the pipe.
2227 */
2228 if (pstdout_fd) {
2229 if (setup_and_dupe_pipe_end(stdout_fds, 1 /* write end */,
2230 STDOUT_FILENO) < 0)
2231 die("failed to set up stdout pipe");
2232 }
2233
2234 /*
2235 * If we want to read from the jailed process' standard error,
2236 * set up the write end of the pipe.
2237 */
2238 if (pstderr_fd) {
2239 if (setup_and_dupe_pipe_end(stderr_fds, 1 /* write end */,
2240 STDERR_FILENO) < 0)
2241 die("failed to set up stderr pipe");
2242 }
2243
Jorge Lucangeli Obesaa235b92016-11-23 13:48:15 -05002244 /*
2245 * If any of stdin, stdout, or stderr are TTYs, create a new session.
2246 * This prevents the jailed process from using the TIOCSTI ioctl
2247 * to push characters into the parent process terminal's input buffer,
2248 * therefore escaping the jail.
2249 */
2250 if (isatty(STDIN_FILENO) || isatty(STDOUT_FILENO) ||
2251 isatty(STDERR_FILENO)) {
2252 if (setsid() < 0) {
2253 pdie("setsid() failed");
2254 }
2255 }
2256
Dylan Reid791f5772015-09-14 20:02:42 -07002257 /* If running an init program, let it decide when/how to mount /proc. */
2258 if (pid_namespace && !do_init)
2259 j->flags.remount_proc_ro = 0;
2260
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002261 if (use_preload) {
2262 /* Strip out flags that cannot be inherited across execve(2). */
2263 minijail_preexec(j);
2264 } else {
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04002265 /*
2266 * If not using LD_PRELOAD, do all jailing before execve(2).
2267 * Note that PID namespaces can only be entered on fork(2),
2268 * so that flag is still cleared.
2269 */
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002270 j->flags.pids = 0;
2271 }
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04002272 /* Jail this process, then execve(2) the target. */
Elly Jonese1749eb2011-10-07 13:54:59 -04002273 minijail_enter(j);
Elly Jonescd7a9042011-07-22 13:56:51 -04002274
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08002275 if (pid_namespace && do_init) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05002276 /*
2277 * pid namespace: this process will become init inside the new
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08002278 * namespace. We don't want all programs we might exec to have
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002279 * to know how to be init. Normally (do_init == 1) we fork off
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08002280 * a child to actually run the program. If |do_init == 0|, we
2281 * let the program keep pid 1 and be init.
Elly Jones761b7412012-06-13 15:49:52 -04002282 *
2283 * If we're multithreaded, we'll probably deadlock here. See
2284 * WARNING above.
Elly Jonese1749eb2011-10-07 13:54:59 -04002285 */
2286 child_pid = fork();
Jorge Lucangeli Obes963eeec2016-08-10 16:02:43 -04002287 if (child_pid < 0) {
Elly Jonese1749eb2011-10-07 13:54:59 -04002288 _exit(child_pid);
Jorge Lucangeli Obes963eeec2016-08-10 16:02:43 -04002289 } else if (child_pid > 0) {
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -04002290 /*
2291 * Best effort. Don't bother checking the return value.
2292 */
Jorge Lucangeli Obes963eeec2016-08-10 16:02:43 -04002293 prctl(PR_SET_NAME, "minijail-init");
2294 init(child_pid); /* Never returns. */
2295 }
Elly Jonese1749eb2011-10-07 13:54:59 -04002296 }
Elly Jonescd7a9042011-07-22 13:56:51 -04002297
Elly Jonesdd3e8512012-01-23 15:13:38 -05002298 /*
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002299 * If we aren't pid-namespaced, or the jailed program asked to be init:
Elly Jonese1749eb2011-10-07 13:54:59 -04002300 * calling process
2301 * -> execve()-ing process
2302 * If we are:
2303 * calling process
2304 * -> init()-ing process
2305 * -> execve()-ing process
2306 */
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04002307 ret = execve(filename, argv, environ);
2308 if (ret == -1) {
2309 pwarn("execve(%s) failed", filename);
2310 }
2311 _exit(ret);
Elly Jonescd7a9042011-07-22 13:56:51 -04002312}
2313
Will Drewry6ac91122011-10-21 16:38:58 -05002314int API minijail_kill(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04002315{
2316 int st;
2317 if (kill(j->initpid, SIGTERM))
2318 return -errno;
2319 if (waitpid(j->initpid, &st, 0) < 0)
2320 return -errno;
2321 return st;
Elly Jonescd7a9042011-07-22 13:56:51 -04002322}
2323
Will Drewry6ac91122011-10-21 16:38:58 -05002324int API minijail_wait(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04002325{
2326 int st;
2327 if (waitpid(j->initpid, &st, 0) < 0)
2328 return -errno;
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08002329
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07002330 if (!WIFEXITED(st)) {
Jorge Lucangeli Obes18d1eba2014-04-18 13:58:20 -07002331 int error_status = st;
2332 if (WIFSIGNALED(st)) {
2333 int signum = WTERMSIG(st);
mukesh agrawalc420a262013-06-11 17:22:42 -07002334 warn("child process %d received signal %d",
Jorge Lucangeli Obes18d1eba2014-04-18 13:58:20 -07002335 j->initpid, signum);
2336 /*
2337 * We return MINIJAIL_ERR_JAIL if the process received
2338 * SIGSYS, which happens when a syscall is blocked by
2339 * seccomp filters.
2340 * If not, we do what bash(1) does:
2341 * $? = 128 + signum
2342 */
2343 if (signum == SIGSYS) {
2344 error_status = MINIJAIL_ERR_JAIL;
2345 } else {
2346 error_status = 128 + signum;
2347 }
2348 }
2349 return error_status;
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07002350 }
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08002351
2352 int exit_status = WEXITSTATUS(st);
2353 if (exit_status != 0)
mukesh agrawalc420a262013-06-11 17:22:42 -07002354 info("child process %d exited with status %d",
2355 j->initpid, exit_status);
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08002356
2357 return exit_status;
Elly Jonescd7a9042011-07-22 13:56:51 -04002358}
2359
Will Drewry6ac91122011-10-21 16:38:58 -05002360void API minijail_destroy(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04002361{
Dylan Reid605ce7f2016-01-19 19:21:00 -08002362 size_t i;
2363
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08002364 if (j->flags.seccomp_filter && j->filter_prog) {
2365 free(j->filter_prog->filter);
2366 free(j->filter_prog);
Elly Jonese1749eb2011-10-07 13:54:59 -04002367 }
Dylan Reid648b2202015-10-23 00:50:00 -07002368 while (j->mounts_head) {
2369 struct mountpoint *m = j->mounts_head;
2370 j->mounts_head = j->mounts_head->next;
Dylan Reid81e23972016-05-18 14:06:35 -07002371 free(m->data);
Dylan Reid648b2202015-10-23 00:50:00 -07002372 free(m->type);
2373 free(m->dest);
2374 free(m->src);
2375 free(m);
Elly Jones51a5b6c2011-10-12 19:09:26 -04002376 }
Dylan Reid648b2202015-10-23 00:50:00 -07002377 j->mounts_tail = NULL;
Elly Jonese1749eb2011-10-07 13:54:59 -04002378 if (j->user)
2379 free(j->user);
Jorge Lucangeli Obese81a52f2015-12-04 16:05:23 -08002380 if (j->suppl_gid_list)
2381 free(j->suppl_gid_list);
Will Drewrybee7ba72011-10-21 20:47:01 -05002382 if (j->chrootdir)
2383 free(j->chrootdir);
Jorge Lucangeli Obes3b2e6e42016-08-04 12:26:19 -04002384 if (j->pid_file_path)
2385 free(j->pid_file_path);
2386 if (j->uidmap)
2387 free(j->uidmap);
2388 if (j->gidmap)
2389 free(j->gidmap);
Andrew Brestickereac28942015-11-11 16:04:46 -08002390 if (j->alt_syscall_table)
2391 free(j->alt_syscall_table);
Dylan Reid605ce7f2016-01-19 19:21:00 -08002392 for (i = 0; i < j->cgroup_count; ++i)
2393 free(j->cgroups[i]);
Elly Jonese1749eb2011-10-07 13:54:59 -04002394 free(j);
Elly Jonescd7a9042011-07-22 13:56:51 -04002395}