blob: aab129497eba20442da1b6affdaaa5dc5ac30b94 [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>
Allen Webbc7182682021-04-16 09:44:53 -050011#include <assert.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>
Elly Jonescd7a9042011-07-22 13:56:51 -040016#include <linux/capability.h>
Luis Hector Chavezc3e17722018-10-16 20:43:12 -070017#include <linux/filter.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040018#include <sched.h>
19#include <signal.h>
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -070020#include <stdbool.h>
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080021#include <stddef.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040022#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040025#include <sys/capability.h>
26#include <sys/mount.h>
Will Drewryf89aef52011-09-16 16:48:57 -050027#include <sys/param.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040028#include <sys/prctl.h>
Dylan Reid0f72ef42017-06-06 15:42:49 -070029#include <sys/resource.h>
Allen Webbc7182682021-04-16 09:44:53 -050030#include <sys/select.h>
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -070031#include <sys/stat.h>
Mike Frysinger33ffef32017-01-13 19:53:19 -050032#include <sys/sysmacros.h>
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -070033#include <sys/types.h>
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080034#include <sys/user.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040035#include <sys/wait.h>
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -070036#include <syscall.h>
Elly Jonescd7a9042011-07-22 13:56:51 -040037#include <unistd.h>
38
Elly Jonescd7a9042011-07-22 13:56:51 -040039#include "libminijail-private.h"
Allen Webb7ae41c22021-09-16 10:23:37 -050040#include "libminijail.h"
Elly Jonescd7a9042011-07-22 13:56:51 -040041
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -070042#include "signal_handler.h"
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080043#include "syscall_filter.h"
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -040044#include "syscall_wrapper.h"
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -040045#include "system.h"
Jorge Lucangeli Obesa6b034d2012-08-07 15:29:20 -070046#include "util.h"
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -080047
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -070048/* Until these are reliably available in linux/prctl.h. */
Andrew Brestickereac28942015-11-11 16:04:46 -080049#ifndef PR_ALT_SYSCALL
Allen Webb7ae41c22021-09-16 10:23:37 -050050#define PR_ALT_SYSCALL 0x43724f53
Andrew Brestickereac28942015-11-11 16:04:46 -080051#endif
52
Dylan Reid4cbc2a52016-06-17 19:06:07 -070053/* New cgroup namespace might not be in linux-headers yet. */
54#ifndef CLONE_NEWCGROUP
Allen Webb7ae41c22021-09-16 10:23:37 -050055#define CLONE_NEWCGROUP 0x02000000
Dylan Reid4cbc2a52016-06-17 19:06:07 -070056#endif
57
Dylan Reid605ce7f2016-01-19 19:21:00 -080058#define MAX_CGROUPS 10 /* 10 different controllers supported by Linux. */
59
Dylan Reid0f72ef42017-06-06 15:42:49 -070060#define MAX_RLIMITS 32 /* Currently there are 15 supported by Linux. */
61
Richard Fungb06ce9b2021-05-11 20:11:57 +000062#define MAX_PRESERVED_FDS 128U
Luis Hector Chavez1617f632017-08-01 18:32:30 -070063
Chirantan Ekbote866bb3a2017-02-07 12:26:42 -080064/* Keyctl commands. */
65#define KEYCTL_JOIN_SESSION_KEYRING 1
66
Luis Hector Chavez0bacbf82018-07-10 20:06:55 -070067/*
68 * The userspace equivalent of MNT_USER_SETTABLE_MASK, which is the mask of all
69 * flags that can be modified by MS_REMOUNT.
70 */
71#define MS_USER_SETTABLE_MASK \
72 (MS_NOSUID | MS_NODEV | MS_NOEXEC | MS_NOATIME | MS_NODIRATIME | \
73 MS_RELATIME | MS_RDONLY)
74
Dylan Reid0f72ef42017-06-06 15:42:49 -070075struct minijail_rlimit {
76 int type;
Luis Hector Chavez7058a2d2018-01-29 08:41:34 -080077 rlim_t cur;
78 rlim_t max;
Dylan Reid0f72ef42017-06-06 15:42:49 -070079};
80
Dylan Reid648b2202015-10-23 00:50:00 -070081struct mountpoint {
Elly Jones51a5b6c2011-10-12 19:09:26 -040082 char *src;
83 char *dest;
Dylan Reid648b2202015-10-23 00:50:00 -070084 char *type;
Dylan Reid81e23972016-05-18 14:06:35 -070085 char *data;
86 int has_data;
Dylan Reid648b2202015-10-23 00:50:00 -070087 unsigned long flags;
88 struct mountpoint *next;
Elly Jones51a5b6c2011-10-12 19:09:26 -040089};
90
Nicole Anderson-Au835f7172021-01-13 21:18:13 +000091struct minijail_remount {
92 unsigned long remount_mode;
93 char *mount_name;
94 struct minijail_remount *next;
95};
96
Luis Hector Chaveze0ba4ce2017-07-20 15:12:22 -070097struct hook {
98 minijail_hook_t hook;
99 void *payload;
100 minijail_hook_event_t event;
101 struct hook *next;
102};
103
Luis Hector Chavez1617f632017-08-01 18:32:30 -0700104struct preserved_fd {
105 int parent_fd;
106 int child_fd;
107};
108
Will Drewryf89aef52011-09-16 16:48:57 -0500109struct minijail {
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700110 /*
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700111 * WARNING: if you add a flag here you need to make sure it's
112 * accounted for in minijail_pre{enter|exec}() below.
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700113 */
Elly Jonese1749eb2011-10-07 13:54:59 -0400114 struct {
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -0700115 int uid : 1;
116 int gid : 1;
Lutz Justen13807cb2017-01-03 17:11:55 +0100117 int inherit_suppl_gids : 1;
118 int set_suppl_gids : 1;
119 int keep_suppl_gids : 1;
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -0700120 int use_caps : 1;
121 int capbset_drop : 1;
Jorge Lucangeli Obesa6eb21a2017-04-20 10:44:00 -0400122 int set_ambient_caps : 1;
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -0700123 int vfs : 1;
124 int enter_vfs : 1;
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -0700125 int pids : 1;
126 int ipc : 1;
Mike Frysingerb9a7b162017-05-30 15:25:49 -0400127 int uts : 1;
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -0700128 int net : 1;
129 int enter_net : 1;
130 int ns_cgroups : 1;
131 int userns : 1;
132 int disable_setgroups : 1;
133 int seccomp : 1;
134 int remount_proc_ro : 1;
135 int no_new_privs : 1;
136 int seccomp_filter : 1;
137 int seccomp_filter_tsync : 1;
138 int seccomp_filter_logging : 1;
Anand K Mistry31adc6c2020-11-26 11:39:46 +1100139 int seccomp_filter_allow_speculation : 1;
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -0700140 int chroot : 1;
141 int pivot_root : 1;
Mike Frysinger33ffef32017-01-13 19:53:19 -0500142 int mount_dev : 1;
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -0700143 int mount_tmp : 1;
144 int do_init : 1;
Luis Hector Chavezac981fc2017-09-18 15:52:38 -0700145 int run_as_init : 1;
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -0700146 int pid_file : 1;
147 int cgroups : 1;
148 int alt_syscall : 1;
149 int reset_signal_mask : 1;
Luis Hector Chaveza27118a2018-04-04 08:18:01 -0700150 int reset_signal_handlers : 1;
Luis Hector Chavezfb449ab2016-10-14 09:49:22 -0700151 int close_open_fds : 1;
Chirantan Ekbote866bb3a2017-02-07 12:26:42 -0800152 int new_session_keyring : 1;
Jorge Lucangeli Obesdba62092017-05-18 17:10:23 -0400153 int forward_signals : 1;
Xiyuan Xia9b41e652019-05-23 11:03:04 -0700154 int setsid : 1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400155 } flags;
156 uid_t uid;
157 gid_t gid;
158 gid_t usergid;
159 char *user;
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800160 size_t suppl_gid_count;
161 gid_t *suppl_gid_list;
Elly Jonese1749eb2011-10-07 13:54:59 -0400162 uint64_t caps;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800163 uint64_t cap_bset;
Elly Jonese1749eb2011-10-07 13:54:59 -0400164 pid_t initpid;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700165 int mountns_fd;
Dylan Reid1102f5a2015-09-15 11:52:20 -0700166 int netns_fd;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400167 char *chrootdir;
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800168 char *pid_file_path;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800169 char *uidmap;
170 char *gidmap;
Mike Frysingerb9a7b162017-05-30 15:25:49 -0400171 char *hostname;
Luis Hector Chavez9acba452018-10-11 10:13:25 -0700172 char *preload_path;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800173 size_t filter_len;
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -0800174 struct sock_fprog *filter_prog;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800175 char *alt_syscall_table;
Dylan Reid648b2202015-10-23 00:50:00 -0700176 struct mountpoint *mounts_head;
177 struct mountpoint *mounts_tail;
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -0800178 size_t mounts_count;
Mike Frysinger785b1c32018-02-23 15:47:24 -0500179 unsigned long remount_mode;
Nicole Anderson-Au835f7172021-01-13 21:18:13 +0000180 struct minijail_remount *remounts_head;
181 struct minijail_remount *remounts_tail;
Martin Pelikánab9eb442017-01-25 11:53:58 +1100182 size_t tmpfs_size;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800183 char *cgroups[MAX_CGROUPS];
184 size_t cgroup_count;
Dylan Reid0f72ef42017-06-06 15:42:49 -0700185 struct minijail_rlimit rlimits[MAX_RLIMITS];
186 size_t rlimit_count;
Luis Hector Chavezec0a2c12017-06-29 20:29:57 -0700187 uint64_t securebits_skip_mask;
Luis Hector Chaveze0ba4ce2017-07-20 15:12:22 -0700188 struct hook *hooks_head;
189 struct hook *hooks_tail;
Luis Hector Chavez1617f632017-08-01 18:32:30 -0700190 struct preserved_fd preserved_fds[MAX_PRESERVED_FDS];
191 size_t preserved_fd_count;
Allen Webb77383c72021-10-15 10:34:24 -0700192 char *seccomp_policy_path;
Will Drewryf89aef52011-09-16 16:48:57 -0500193};
194
Luis Hector Chavez64730af2017-09-13 13:18:59 -0700195static void run_hooks_or_die(const struct minijail *j,
196 minijail_hook_event_t event);
197
Adrian Ratiu8ef61252021-06-08 03:46:24 +0300198static bool seccomp_is_logging_allowed(const struct minijail *j)
199{
200 return seccomp_default_ret_log() || j->flags.seccomp_filter_logging;
201}
202
Mike Frysingerac08a682017-10-10 02:04:50 -0400203static void free_mounts_list(struct minijail *j)
204{
205 while (j->mounts_head) {
206 struct mountpoint *m = j->mounts_head;
207 j->mounts_head = j->mounts_head->next;
208 free(m->data);
209 free(m->type);
210 free(m->dest);
211 free(m->src);
212 free(m);
213 }
214 // No need to clear mounts_head as we know it's NULL after the loop.
215 j->mounts_tail = NULL;
216}
217
Nicole Anderson-Au835f7172021-01-13 21:18:13 +0000218static void free_remounts_list(struct minijail *j)
219{
220 while (j->remounts_head) {
221 struct minijail_remount *m = j->remounts_head;
222 j->remounts_head = j->remounts_head->next;
223 free(m->mount_name);
224 free(m);
225 }
226 // No need to clear remounts_head as we know it's NULL after the loop.
227 j->remounts_tail = NULL;
228}
229
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700230/*
François Degros664eba72019-11-05 13:18:24 +1100231 * Writes exactly n bytes from buf to file descriptor fd.
232 * Returns 0 on success or a negative error code on error.
233 */
234static int write_exactly(int fd, const void *buf, size_t n)
235{
236 const char *p = buf;
237 while (n > 0) {
238 const ssize_t written = write(fd, p, n);
239 if (written < 0) {
240 if (errno == EINTR)
241 continue;
242
243 return -errno;
244 }
245
246 p += written;
247 n -= written;
248 }
249
250 return 0;
251}
252
Mattias Nissler6123e5a2020-02-11 13:38:03 +0100253/* Closes *pfd and sets it to -1. */
254static void close_and_reset(int *pfd)
255{
256 if (*pfd != -1)
257 close(*pfd);
258 *pfd = -1;
259}
260
François Degros664eba72019-11-05 13:18:24 +1100261/*
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700262 * Strip out flags meant for the parent.
263 * We keep things that are not inherited across execve(2) (e.g. capabilities),
264 * or are easier to set after execve(2) (e.g. seccomp filters).
265 */
266void minijail_preenter(struct minijail *j)
267{
268 j->flags.vfs = 0;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700269 j->flags.enter_vfs = 0;
Luis Hector Chavez83a44892018-10-12 08:56:20 -0700270 j->flags.ns_cgroups = 0;
271 j->flags.net = 0;
272 j->flags.uts = 0;
Dylan Reid791f5772015-09-14 20:02:42 -0700273 j->flags.remount_proc_ro = 0;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700274 j->flags.pids = 0;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800275 j->flags.do_init = 0;
Luis Hector Chavezac981fc2017-09-18 15:52:38 -0700276 j->flags.run_as_init = 0;
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800277 j->flags.pid_file = 0;
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800278 j->flags.cgroups = 0;
Jorge Lucangeli Obesdba62092017-05-18 17:10:23 -0400279 j->flags.forward_signals = 0;
Xiyuan Xia9b41e652019-05-23 11:03:04 -0700280 j->flags.setsid = 0;
Mike Frysinger785b1c32018-02-23 15:47:24 -0500281 j->remount_mode = 0;
Nicole Anderson-Au835f7172021-01-13 21:18:13 +0000282 free_remounts_list(j);
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700283}
284
285/*
286 * Strip out flags meant for the child.
287 * We keep things that are inherited across execve(2).
288 */
289void minijail_preexec(struct minijail *j)
290{
291 int vfs = j->flags.vfs;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700292 int enter_vfs = j->flags.enter_vfs;
Luis Hector Chavez83a44892018-10-12 08:56:20 -0700293 int ns_cgroups = j->flags.ns_cgroups;
294 int net = j->flags.net;
295 int uts = j->flags.uts;
Dylan Reid791f5772015-09-14 20:02:42 -0700296 int remount_proc_ro = j->flags.remount_proc_ro;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800297 int userns = j->flags.userns;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700298 if (j->user)
299 free(j->user);
300 j->user = NULL;
Jorge Lucangeli Obese81a52f2015-12-04 16:05:23 -0800301 if (j->suppl_gid_list)
302 free(j->suppl_gid_list);
303 j->suppl_gid_list = NULL;
Luis Hector Chavez9acba452018-10-11 10:13:25 -0700304 if (j->preload_path)
305 free(j->preload_path);
306 j->preload_path = NULL;
Mike Frysingerac08a682017-10-10 02:04:50 -0400307 free_mounts_list(j);
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700308 memset(&j->flags, 0, sizeof(j->flags));
309 /* Now restore anything we meant to keep. */
310 j->flags.vfs = vfs;
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700311 j->flags.enter_vfs = enter_vfs;
Luis Hector Chavez83a44892018-10-12 08:56:20 -0700312 j->flags.ns_cgroups = ns_cgroups;
313 j->flags.net = net;
314 j->flags.uts = uts;
Dylan Reid791f5772015-09-14 20:02:42 -0700315 j->flags.remount_proc_ro = remount_proc_ro;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800316 j->flags.userns = userns;
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -0700317 /* Note, |pids| will already have been used before this call. */
318}
319
320/* Minijail API. */
321
Will Drewry6ac91122011-10-21 16:38:58 -0500322struct minijail API *minijail_new(void)
Elly Jonese1749eb2011-10-07 13:54:59 -0400323{
Mike Frysinger785b1c32018-02-23 15:47:24 -0500324 struct minijail *j = calloc(1, sizeof(struct minijail));
Mike Frysinger1036cd82020-08-28 00:15:59 -0400325 if (j) {
326 j->remount_mode = MS_PRIVATE;
327 }
Mike Frysinger785b1c32018-02-23 15:47:24 -0500328 return j;
Elly Jonescd7a9042011-07-22 13:56:51 -0400329}
330
Will Drewry6ac91122011-10-21 16:38:58 -0500331void API minijail_change_uid(struct minijail *j, uid_t uid)
Elly Jonese1749eb2011-10-07 13:54:59 -0400332{
333 if (uid == 0)
334 die("useless change to uid 0");
335 j->uid = uid;
336 j->flags.uid = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400337}
338
Will Drewry6ac91122011-10-21 16:38:58 -0500339void API minijail_change_gid(struct minijail *j, gid_t gid)
Elly Jonese1749eb2011-10-07 13:54:59 -0400340{
341 if (gid == 0)
342 die("useless change to gid 0");
343 j->gid = gid;
344 j->flags.gid = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400345}
346
Jorge Lucangeli Obesbc67f442016-01-08 14:43:45 -0800347void API minijail_set_supplementary_gids(struct minijail *j, size_t size,
348 const gid_t *list)
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800349{
Jorge Lucangeli Obes06940be2015-12-04 18:09:21 -0800350 size_t i;
351
Jorge Lucangeli Obes34543192017-01-11 16:07:57 -0500352 if (j->flags.inherit_suppl_gids)
353 die("cannot inherit *and* set supplementary groups");
354 if (j->flags.keep_suppl_gids)
355 die("cannot keep *and* set supplementary groups");
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800356
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800357 if (size == 0) {
358 /* Clear supplementary groups. */
359 j->suppl_gid_list = NULL;
360 j->suppl_gid_count = 0;
Lutz Justen13807cb2017-01-03 17:11:55 +0100361 j->flags.set_suppl_gids = 1;
Jorge Lucangeli Obesbc67f442016-01-08 14:43:45 -0800362 return;
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800363 }
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800364
365 /* Copy the gid_t array. */
366 j->suppl_gid_list = calloc(size, sizeof(gid_t));
367 if (!j->suppl_gid_list) {
Jorge Lucangeli Obesfd5fc562016-01-08 10:29:27 -0800368 die("failed to allocate internal supplementary group array");
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800369 }
Jorge Lucangeli Obes06940be2015-12-04 18:09:21 -0800370 for (i = 0; i < size; i++) {
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800371 j->suppl_gid_list[i] = list[i];
372 }
373 j->suppl_gid_count = size;
Lutz Justen13807cb2017-01-03 17:11:55 +0100374 j->flags.set_suppl_gids = 1;
375}
376
Allen Webb7ae41c22021-09-16 10:23:37 -0500377void API minijail_keep_supplementary_gids(struct minijail *j)
378{
Lutz Justen13807cb2017-01-03 17:11:55 +0100379 j->flags.keep_suppl_gids = 1;
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -0800380}
381
Will Drewry6ac91122011-10-21 16:38:58 -0500382int API minijail_change_user(struct minijail *j, const char *user)
Elly Jonese1749eb2011-10-07 13:54:59 -0400383{
Luis Hector Chavez71323552017-09-05 09:17:22 -0700384 uid_t uid;
385 gid_t gid;
386 int rc = lookup_user(user, &uid, &gid);
387 if (rc)
388 return rc;
389 minijail_change_uid(j, uid);
Elly Jonese1749eb2011-10-07 13:54:59 -0400390 j->user = strdup(user);
391 if (!j->user)
392 return -ENOMEM;
Luis Hector Chavez71323552017-09-05 09:17:22 -0700393 j->usergid = gid;
Elly Jonese1749eb2011-10-07 13:54:59 -0400394 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -0400395}
396
Will Drewry6ac91122011-10-21 16:38:58 -0500397int API minijail_change_group(struct minijail *j, const char *group)
Elly Jonese1749eb2011-10-07 13:54:59 -0400398{
Luis Hector Chavez71323552017-09-05 09:17:22 -0700399 gid_t gid;
400 int rc = lookup_group(group, &gid);
401 if (rc)
402 return rc;
403 minijail_change_gid(j, gid);
Elly Jonese1749eb2011-10-07 13:54:59 -0400404 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -0400405}
406
Will Drewry6ac91122011-10-21 16:38:58 -0500407void API minijail_use_seccomp(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400408{
409 j->flags.seccomp = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400410}
411
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -0700412void API minijail_no_new_privs(struct minijail *j)
413{
414 j->flags.no_new_privs = 1;
415}
416
Will Drewry6ac91122011-10-21 16:38:58 -0500417void API minijail_use_seccomp_filter(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400418{
419 j->flags.seccomp_filter = 1;
Will Drewry32ac9f52011-08-18 21:36:27 -0500420}
421
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400422void API minijail_set_seccomp_filter_tsync(struct minijail *j)
423{
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -0400424 if (j->filter_len > 0 && j->filter_prog != NULL) {
425 die("minijail_set_seccomp_filter_tsync() must be called "
426 "before minijail_parse_seccomp_filters()");
427 }
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -0400428
Adrian Ratiu8ef61252021-06-08 03:46:24 +0300429 if (seccomp_is_logging_allowed(j) && !seccomp_ret_log_available()) {
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -0400430 /*
431 * If SECCOMP_RET_LOG is not available, we don't want to use
432 * SECCOMP_RET_TRAP to both kill the entire process and report
433 * failing syscalls, since it will be brittle. Just bail.
434 */
Mike Frysinger52f6ada2019-06-26 16:59:36 -0400435 die("SECCOMP_RET_LOG not available, cannot use logging with "
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -0400436 "thread sync at the same time");
437 }
438
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400439 j->flags.seccomp_filter_tsync = 1;
440}
441
Anand K Mistry31adc6c2020-11-26 11:39:46 +1100442void API minijail_set_seccomp_filter_allow_speculation(struct minijail *j)
443{
444 if (j->filter_len > 0 && j->filter_prog != NULL) {
445 die("minijail_set_seccomp_filter_allow_speculation() must be "
446 "called before minijail_parse_seccomp_filters()");
447 }
448
449 j->flags.seccomp_filter_allow_speculation = 1;
450}
451
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700452void API minijail_log_seccomp_filter_failures(struct minijail *j)
453{
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -0400454 if (j->filter_len > 0 && j->filter_prog != NULL) {
455 die("minijail_log_seccomp_filter_failures() must be called "
456 "before minijail_parse_seccomp_filters()");
457 }
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -0400458
459 if (j->flags.seccomp_filter_tsync && !seccomp_ret_log_available()) {
460 /*
461 * If SECCOMP_RET_LOG is not available, we don't want to use
462 * SECCOMP_RET_TRAP to both kill the entire process and report
463 * failing syscalls, since it will be brittle. Just bail.
464 */
Allen Webb7ae41c22021-09-16 10:23:37 -0500465 die("SECCOMP_RET_LOG not available, cannot use thread sync "
466 "with logging at the same time");
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -0400467 }
468
469 if (debug_logging_allowed()) {
470 j->flags.seccomp_filter_logging = 1;
471 } else {
472 warn("non-debug build: ignoring request to enable seccomp "
473 "logging");
474 }
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -0700475}
476
Will Drewry6ac91122011-10-21 16:38:58 -0500477void API minijail_use_caps(struct minijail *j, uint64_t capmask)
Elly Jonese1749eb2011-10-07 13:54:59 -0400478{
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800479 /*
480 * 'minijail_use_caps' configures a runtime-capabilities-only
481 * environment, including a bounding set matching the thread's runtime
482 * (permitted|inheritable|effective) sets.
483 * Therefore, it will override any existing bounding set configurations
484 * since the latter would allow gaining extra runtime capabilities from
485 * file capabilities.
486 */
487 if (j->flags.capbset_drop) {
488 warn("overriding bounding set configuration");
489 j->cap_bset = 0;
490 j->flags.capbset_drop = 0;
491 }
Elly Jonese1749eb2011-10-07 13:54:59 -0400492 j->caps = capmask;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800493 j->flags.use_caps = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400494}
495
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800496void API minijail_capbset_drop(struct minijail *j, uint64_t capmask)
497{
498 if (j->flags.use_caps) {
499 /*
500 * 'minijail_use_caps' will have already configured a capability
501 * bounding set matching the (permitted|inheritable|effective)
502 * sets. Abort if the user tries to configure a separate
503 * bounding set. 'minijail_capbset_drop' and 'minijail_use_caps'
504 * are mutually exclusive.
505 */
506 die("runtime capabilities already configured, can't drop "
507 "bounding set separately");
508 }
509 j->cap_bset = capmask;
510 j->flags.capbset_drop = 1;
511}
512
Jorge Lucangeli Obesa6eb21a2017-04-20 10:44:00 -0400513void API minijail_set_ambient_caps(struct minijail *j)
514{
515 j->flags.set_ambient_caps = 1;
516}
517
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -0800518void API minijail_reset_signal_mask(struct minijail *j)
519{
Peter Qiu2860c462015-12-16 15:13:06 -0800520 j->flags.reset_signal_mask = 1;
521}
522
Luis Hector Chaveza27118a2018-04-04 08:18:01 -0700523void API minijail_reset_signal_handlers(struct minijail *j)
524{
525 j->flags.reset_signal_handlers = 1;
526}
527
Will Drewry6ac91122011-10-21 16:38:58 -0500528void API minijail_namespace_vfs(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400529{
530 j->flags.vfs = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400531}
532
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700533void API minijail_namespace_enter_vfs(struct minijail *j, const char *ns_path)
534{
Mike Frysinger902a4492018-12-27 05:22:56 -0500535 /* Note: Do not use O_CLOEXEC here. We'll close it after we use it. */
536 int ns_fd = open(ns_path, O_RDONLY);
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -0700537 if (ns_fd < 0) {
538 pdie("failed to open namespace '%s'", ns_path);
539 }
540 j->mountns_fd = ns_fd;
541 j->flags.enter_vfs = 1;
542}
543
Chirantan Ekbote866bb3a2017-02-07 12:26:42 -0800544void API minijail_new_session_keyring(struct minijail *j)
545{
546 j->flags.new_session_keyring = 1;
547}
548
Luis Hector Chavezec0a2c12017-06-29 20:29:57 -0700549void API minijail_skip_setting_securebits(struct minijail *j,
550 uint64_t securebits_skip_mask)
551{
552 j->securebits_skip_mask = securebits_skip_mask;
553}
554
Mike Frysinger785b1c32018-02-23 15:47:24 -0500555void API minijail_remount_mode(struct minijail *j, unsigned long mode)
556{
557 j->remount_mode = mode;
558}
559
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800560void API minijail_skip_remount_private(struct minijail *j)
561{
Mike Frysinger785b1c32018-02-23 15:47:24 -0500562 j->remount_mode = 0;
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -0800563}
564
Will Drewry6ac91122011-10-21 16:38:58 -0500565void API minijail_namespace_pids(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400566{
Elly Jonese58176c2012-01-23 11:46:17 -0500567 j->flags.vfs = 1;
Dylan Reid791f5772015-09-14 20:02:42 -0700568 j->flags.remount_proc_ro = 1;
Elly Jonese1749eb2011-10-07 13:54:59 -0400569 j->flags.pids = 1;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800570 j->flags.do_init = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400571}
572
Jorge Lucangeli Obes2fa96d12019-02-05 10:51:57 -0500573void API minijail_namespace_pids_rw_proc(struct minijail *j)
574{
575 j->flags.vfs = 1;
576 j->flags.pids = 1;
577 j->flags.do_init = 1;
578}
579
Dylan Reidf7942472015-11-18 17:55:26 -0800580void API minijail_namespace_ipc(struct minijail *j)
581{
582 j->flags.ipc = 1;
583}
584
Mike Frysingerb9a7b162017-05-30 15:25:49 -0400585void API minijail_namespace_uts(struct minijail *j)
586{
587 j->flags.uts = 1;
588}
589
590int API minijail_namespace_set_hostname(struct minijail *j, const char *name)
591{
592 if (j->hostname)
593 return -EINVAL;
594 minijail_namespace_uts(j);
595 j->hostname = strdup(name);
596 if (!j->hostname)
597 return -ENOMEM;
598 return 0;
599}
600
Elly Fong-Jones6c086302013-03-20 17:15:28 -0400601void API minijail_namespace_net(struct minijail *j)
602{
603 j->flags.net = 1;
604}
605
Dylan Reid1102f5a2015-09-15 11:52:20 -0700606void API minijail_namespace_enter_net(struct minijail *j, const char *ns_path)
607{
Mike Frysinger902a4492018-12-27 05:22:56 -0500608 /* Note: Do not use O_CLOEXEC here. We'll close it after we use it. */
609 int ns_fd = open(ns_path, O_RDONLY);
Dylan Reid1102f5a2015-09-15 11:52:20 -0700610 if (ns_fd < 0) {
611 pdie("failed to open namespace '%s'", ns_path);
612 }
613 j->netns_fd = ns_fd;
614 j->flags.enter_net = 1;
615}
616
Dylan Reid4cbc2a52016-06-17 19:06:07 -0700617void API minijail_namespace_cgroups(struct minijail *j)
618{
619 j->flags.ns_cgroups = 1;
620}
621
Luis Hector Chavez43ff0802016-10-07 12:21:07 -0700622void API minijail_close_open_fds(struct minijail *j)
623{
624 j->flags.close_open_fds = 1;
625}
626
Dylan Reid791f5772015-09-14 20:02:42 -0700627void API minijail_remount_proc_readonly(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400628{
629 j->flags.vfs = 1;
Dylan Reid791f5772015-09-14 20:02:42 -0700630 j->flags.remount_proc_ro = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400631}
632
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800633void API minijail_namespace_user(struct minijail *j)
634{
635 j->flags.userns = 1;
636}
637
Jorge Lucangeli Obes200299c2016-09-23 15:21:57 -0400638void API minijail_namespace_user_disable_setgroups(struct minijail *j)
639{
640 j->flags.disable_setgroups = 1;
641}
642
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800643int API minijail_uidmap(struct minijail *j, const char *uidmap)
644{
645 j->uidmap = strdup(uidmap);
646 if (!j->uidmap)
647 return -ENOMEM;
Yu-Hsi Chiang1912c5b2015-08-31 18:59:49 +0800648 char *ch;
649 for (ch = j->uidmap; *ch; ch++) {
650 if (*ch == ',')
651 *ch = '\n';
652 }
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800653 return 0;
654}
655
656int API minijail_gidmap(struct minijail *j, const char *gidmap)
657{
658 j->gidmap = strdup(gidmap);
659 if (!j->gidmap)
660 return -ENOMEM;
Yu-Hsi Chiang1912c5b2015-08-31 18:59:49 +0800661 char *ch;
662 for (ch = j->gidmap; *ch; ch++) {
663 if (*ch == ',')
664 *ch = '\n';
665 }
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +0800666 return 0;
667}
668
Will Drewry6ac91122011-10-21 16:38:58 -0500669void API minijail_inherit_usergroups(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400670{
Lutz Justen13807cb2017-01-03 17:11:55 +0100671 j->flags.inherit_suppl_gids = 1;
Elly Jonescd7a9042011-07-22 13:56:51 -0400672}
673
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800674void API minijail_run_as_init(struct minijail *j)
675{
676 /*
677 * Since the jailed program will become 'init' in the new PID namespace,
678 * Minijail does not need to fork an 'init' process.
679 */
Luis Hector Chavezac981fc2017-09-18 15:52:38 -0700680 j->flags.run_as_init = 1;
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +0800681}
682
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700683int API minijail_enter_chroot(struct minijail *j, const char *dir)
684{
Elly Jones51a5b6c2011-10-12 19:09:26 -0400685 if (j->chrootdir)
686 return -EINVAL;
687 j->chrootdir = strdup(dir);
688 if (!j->chrootdir)
689 return -ENOMEM;
690 j->flags.chroot = 1;
691 return 0;
692}
693
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +0800694int API minijail_enter_pivot_root(struct minijail *j, const char *dir)
695{
696 if (j->chrootdir)
697 return -EINVAL;
698 j->chrootdir = strdup(dir);
699 if (!j->chrootdir)
700 return -ENOMEM;
701 j->flags.pivot_root = 1;
702 return 0;
703}
704
Dylan Reida14e08d2015-10-22 21:05:29 -0700705char API *minijail_get_original_path(struct minijail *j,
706 const char *path_inside_chroot)
707{
Dylan Reid648b2202015-10-23 00:50:00 -0700708 struct mountpoint *b;
Dylan Reida14e08d2015-10-22 21:05:29 -0700709
Dylan Reid648b2202015-10-23 00:50:00 -0700710 b = j->mounts_head;
Dylan Reida14e08d2015-10-22 21:05:29 -0700711 while (b) {
712 /*
713 * If |path_inside_chroot| is the exact destination of a
Dylan Reid648b2202015-10-23 00:50:00 -0700714 * mount, then the original path is exactly the source of
715 * the mount.
Dylan Reida14e08d2015-10-22 21:05:29 -0700716 * for example: "-b /some/path/exe,/chroot/path/exe"
Dylan Reid648b2202015-10-23 00:50:00 -0700717 * mount source = /some/path/exe, mount dest =
718 * /chroot/path/exe Then when getting the original path of
719 * "/chroot/path/exe", the source of that mount,
720 * "/some/path/exe" is what should be returned.
Dylan Reida14e08d2015-10-22 21:05:29 -0700721 */
722 if (!strcmp(b->dest, path_inside_chroot))
723 return strdup(b->src);
724
725 /*
726 * If |path_inside_chroot| is within the destination path of a
Dylan Reid648b2202015-10-23 00:50:00 -0700727 * mount, take the suffix of the chroot path relative to the
728 * mount destination path, and append it to the mount source
729 * path.
Dylan Reida14e08d2015-10-22 21:05:29 -0700730 */
731 if (!strncmp(b->dest, path_inside_chroot, strlen(b->dest))) {
732 const char *relative_path =
Allen Webb7ae41c22021-09-16 10:23:37 -0500733 path_inside_chroot + strlen(b->dest);
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400734 return path_join(b->src, relative_path);
Dylan Reida14e08d2015-10-22 21:05:29 -0700735 }
736 b = b->next;
737 }
738
739 /* If there is a chroot path, append |path_inside_chroot| to that. */
740 if (j->chrootdir)
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -0400741 return path_join(j->chrootdir, path_inside_chroot);
Dylan Reida14e08d2015-10-22 21:05:29 -0700742
743 /* No chroot, so the path outside is the same as it is inside. */
744 return strdup(path_inside_chroot);
Dylan Reid08946cc2015-09-16 19:10:57 -0700745}
746
Mike Frysinger33ffef32017-01-13 19:53:19 -0500747void API minijail_mount_dev(struct minijail *j)
748{
749 j->flags.mount_dev = 1;
750}
751
Lee Campbell11af0622014-05-22 12:36:04 -0700752void API minijail_mount_tmp(struct minijail *j)
753{
Martin Pelikánab9eb442017-01-25 11:53:58 +1100754 minijail_mount_tmp_size(j, 64 * 1024 * 1024);
755}
756
757void API minijail_mount_tmp_size(struct minijail *j, size_t size)
758{
759 j->tmpfs_size = size;
Lee Campbell11af0622014-05-22 12:36:04 -0700760 j->flags.mount_tmp = 1;
761}
762
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +0800763int API minijail_write_pid_file(struct minijail *j, const char *path)
764{
765 j->pid_file_path = strdup(path);
766 if (!j->pid_file_path)
767 return -ENOMEM;
768 j->flags.pid_file = 1;
769 return 0;
770}
771
Dylan Reid605ce7f2016-01-19 19:21:00 -0800772int API minijail_add_to_cgroup(struct minijail *j, const char *path)
773{
774 if (j->cgroup_count >= MAX_CGROUPS)
775 return -ENOMEM;
776 j->cgroups[j->cgroup_count] = strdup(path);
777 if (!j->cgroups[j->cgroup_count])
778 return -ENOMEM;
779 j->cgroup_count++;
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -0800780 j->flags.cgroups = 1;
Dylan Reid605ce7f2016-01-19 19:21:00 -0800781 return 0;
782}
783
Luis Hector Chavez7058a2d2018-01-29 08:41:34 -0800784int API minijail_rlimit(struct minijail *j, int type, rlim_t cur, rlim_t max)
Dylan Reid0f72ef42017-06-06 15:42:49 -0700785{
786 size_t i;
787
788 if (j->rlimit_count >= MAX_RLIMITS)
789 return -ENOMEM;
790 /* It's an error if the caller sets the same rlimit multiple times. */
791 for (i = 0; i < j->rlimit_count; i++) {
792 if (j->rlimits[i].type == type)
793 return -EEXIST;
794 }
795
796 j->rlimits[j->rlimit_count].type = type;
797 j->rlimits[j->rlimit_count].cur = cur;
798 j->rlimits[j->rlimit_count].max = max;
799 j->rlimit_count++;
800 return 0;
801}
802
Jorge Lucangeli Obesdba62092017-05-18 17:10:23 -0400803int API minijail_forward_signals(struct minijail *j)
804{
805 j->flags.forward_signals = 1;
806 return 0;
807}
808
Allen Webb7ae41c22021-09-16 10:23:37 -0500809int API minijail_create_session(struct minijail *j)
810{
Xiyuan Xia9b41e652019-05-23 11:03:04 -0700811 j->flags.setsid = 1;
812 return 0;
813}
814
Dylan Reid81e23972016-05-18 14:06:35 -0700815int API minijail_mount_with_data(struct minijail *j, const char *src,
816 const char *dest, const char *type,
817 unsigned long flags, const char *data)
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -0700818{
Dylan Reid648b2202015-10-23 00:50:00 -0700819 struct mountpoint *m;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400820
821 if (*dest != '/')
822 return -EINVAL;
Dylan Reid648b2202015-10-23 00:50:00 -0700823 m = calloc(1, sizeof(*m));
824 if (!m)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400825 return -ENOMEM;
Dylan Reid648b2202015-10-23 00:50:00 -0700826 m->dest = strdup(dest);
827 if (!m->dest)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400828 goto error;
Dylan Reid648b2202015-10-23 00:50:00 -0700829 m->src = strdup(src);
830 if (!m->src)
Elly Jones51a5b6c2011-10-12 19:09:26 -0400831 goto error;
Dylan Reid648b2202015-10-23 00:50:00 -0700832 m->type = strdup(type);
833 if (!m->type)
834 goto error;
Mike Frysingerb7803c82018-08-23 15:43:15 -0400835
836 if (!data || !data[0]) {
837 /*
838 * Set up secure defaults for certain filesystems. Adding this
839 * fs-specific logic here kind of sucks, but considering how
840 * people use these in practice, it's probably OK. If they want
841 * the kernel defaults, they can pass data="" instead of NULL.
842 */
843 if (!strcmp(type, "tmpfs")) {
844 /* tmpfs defaults to mode=1777 and size=50%. */
845 data = "mode=0755,size=10M";
846 }
847 }
Dylan Reid81e23972016-05-18 14:06:35 -0700848 if (data) {
849 m->data = strdup(data);
850 if (!m->data)
851 goto error;
852 m->has_data = 1;
853 }
Mike Frysingercb8674d2018-08-12 00:53:35 -0400854
855 /* If they don't specify any flags, default to secure ones. */
856 if (flags == 0)
857 flags = MS_NODEV | MS_NOEXEC | MS_NOSUID;
Dylan Reid648b2202015-10-23 00:50:00 -0700858 m->flags = flags;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400859
Elly Jonesdd3e8512012-01-23 15:13:38 -0500860 /*
Jorge Lucangeli Obes0a0514c2020-01-03 11:18:32 -0500861 * Unless asked to enter an existing namespace, force vfs namespacing
862 * so the mounts don't leak out into the containing vfs namespace.
863 * If Minijail is being asked to enter the root vfs namespace this will
864 * leak mounts, but it's unlikely that the user would ask to do that by
865 * mistake.
Elly Jones51a5b6c2011-10-12 19:09:26 -0400866 */
Jorge Lucangeli Obes0a0514c2020-01-03 11:18:32 -0500867 if (!j->flags.enter_vfs)
868 minijail_namespace_vfs(j);
Elly Jones51a5b6c2011-10-12 19:09:26 -0400869
Dylan Reid648b2202015-10-23 00:50:00 -0700870 if (j->mounts_tail)
871 j->mounts_tail->next = m;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400872 else
Dylan Reid648b2202015-10-23 00:50:00 -0700873 j->mounts_head = m;
874 j->mounts_tail = m;
875 j->mounts_count++;
Elly Jones51a5b6c2011-10-12 19:09:26 -0400876
877 return 0;
878
879error:
Dylan Reid81e23972016-05-18 14:06:35 -0700880 free(m->type);
Dylan Reid648b2202015-10-23 00:50:00 -0700881 free(m->src);
882 free(m->dest);
883 free(m);
Elly Jones51a5b6c2011-10-12 19:09:26 -0400884 return -ENOMEM;
885}
886
Dylan Reid81e23972016-05-18 14:06:35 -0700887int API minijail_mount(struct minijail *j, const char *src, const char *dest,
888 const char *type, unsigned long flags)
889{
890 return minijail_mount_with_data(j, src, dest, type, flags, NULL);
891}
892
Dylan Reid648b2202015-10-23 00:50:00 -0700893int API minijail_bind(struct minijail *j, const char *src, const char *dest,
894 int writeable)
895{
896 unsigned long flags = MS_BIND;
897
898 if (!writeable)
899 flags |= MS_RDONLY;
900
901 return minijail_mount(j, src, dest, "", flags);
902}
903
Nicole Anderson-Au835f7172021-01-13 21:18:13 +0000904int API minijail_add_remount(struct minijail *j, const char *mount_name,
905 unsigned long remount_mode)
906{
907 struct minijail_remount *m;
908
909 if (*mount_name != '/')
910 return -EINVAL;
911 m = calloc(1, sizeof(*m));
912 if (!m)
913 return -ENOMEM;
914 m->mount_name = strdup(mount_name);
915 if (!m->mount_name) {
916 free(m);
917 return -ENOMEM;
918 }
919
920 m->remount_mode = remount_mode;
921
922 if (j->remounts_tail)
923 j->remounts_tail->next = m;
924 else
925 j->remounts_head = m;
926 j->remounts_tail = m;
927
928 return 0;
929}
930
Luis Hector Chaveze0ba4ce2017-07-20 15:12:22 -0700931int API minijail_add_hook(struct minijail *j, minijail_hook_t hook,
932 void *payload, minijail_hook_event_t event)
933{
934 struct hook *c;
935
936 if (hook == NULL)
937 return -EINVAL;
938 if (event >= MINIJAIL_HOOK_EVENT_MAX)
939 return -EINVAL;
940 c = calloc(1, sizeof(*c));
941 if (!c)
942 return -ENOMEM;
943
944 c->hook = hook;
945 c->payload = payload;
946 c->event = event;
947
948 if (j->hooks_tail)
949 j->hooks_tail->next = c;
950 else
951 j->hooks_head = c;
952 j->hooks_tail = c;
953
954 return 0;
955}
956
Luis Hector Chavez1617f632017-08-01 18:32:30 -0700957int API minijail_preserve_fd(struct minijail *j, int parent_fd, int child_fd)
958{
959 if (parent_fd < 0 || child_fd < 0)
960 return -EINVAL;
961 if (j->preserved_fd_count >= MAX_PRESERVED_FDS)
962 return -ENOMEM;
963 j->preserved_fds[j->preserved_fd_count].parent_fd = parent_fd;
964 j->preserved_fds[j->preserved_fd_count].child_fd = child_fd;
965 j->preserved_fd_count++;
966 return 0;
967}
968
Luis Hector Chavez9acba452018-10-11 10:13:25 -0700969int API minijail_set_preload_path(struct minijail *j, const char *preload_path)
970{
971 if (j->preload_path)
972 return -EINVAL;
973 j->preload_path = strdup(preload_path);
974 if (!j->preload_path)
975 return -ENOMEM;
976 return 0;
977}
978
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400979static void clear_seccomp_options(struct minijail *j)
980{
981 j->flags.seccomp_filter = 0;
982 j->flags.seccomp_filter_tsync = 0;
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -0400983 j->flags.seccomp_filter_logging = 0;
Anand K Mistry31adc6c2020-11-26 11:39:46 +1100984 j->flags.seccomp_filter_allow_speculation = 0;
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400985 j->filter_len = 0;
986 j->filter_prog = NULL;
987 j->flags.no_new_privs = 0;
Allen Webb77383c72021-10-15 10:34:24 -0700988 if (j->seccomp_policy_path) {
989 free(j->seccomp_policy_path);
990 }
991 j->seccomp_policy_path = NULL;
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400992}
993
Luis Hector Chavezc3e17722018-10-16 20:43:12 -0700994static int seccomp_should_use_filters(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -0400995{
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -0400996 if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, NULL) == -1) {
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -0400997 /*
998 * |errno| will be set to EINVAL when seccomp has not been
999 * compiled into the kernel. On certain platforms and kernel
1000 * versions this is not a fatal failure. In that case, and only
1001 * in that case, disable seccomp and skip loading the filters.
1002 */
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -04001003 if ((errno == EINVAL) && seccomp_can_softfail()) {
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -04001004 warn("not loading seccomp filters, seccomp filter not "
1005 "supported");
1006 clear_seccomp_options(j);
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -04001007 return 0;
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001008 }
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -04001009 /*
1010 * If |errno| != EINVAL or seccomp_can_softfail() is false,
1011 * we can proceed. Worst case scenario minijail_enter() will
1012 * abort() if seccomp fails.
1013 */
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07001014 }
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -04001015 if (j->flags.seccomp_filter_tsync) {
1016 /* Are the seccomp(2) syscall and the TSYNC option supported? */
1017 if (sys_seccomp(SECCOMP_SET_MODE_FILTER,
1018 SECCOMP_FILTER_FLAG_TSYNC, NULL) == -1) {
1019 int saved_errno = errno;
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -04001020 if (saved_errno == ENOSYS && seccomp_can_softfail()) {
1021 warn("seccomp(2) syscall not supported");
1022 clear_seccomp_options(j);
1023 return 0;
1024 } else if (saved_errno == EINVAL &&
1025 seccomp_can_softfail()) {
1026 warn(
1027 "seccomp filter thread sync not supported");
1028 clear_seccomp_options(j);
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -04001029 return 0;
1030 }
1031 /*
1032 * Similar logic here. If seccomp_can_softfail() is
1033 * false, or |errno| != ENOSYS, or |errno| != EINVAL,
1034 * we can proceed. Worst case scenario minijail_enter()
1035 * will abort() if seccomp or TSYNC fail.
1036 */
1037 }
1038 }
Anand K Mistry31adc6c2020-11-26 11:39:46 +11001039 if (j->flags.seccomp_filter_allow_speculation) {
1040 /* Is the SPEC_ALLOW flag supported? */
Luis Héctor Chávez01b628c2021-01-03 05:46:57 -08001041 if (!seccomp_filter_flags_available(
1042 SECCOMP_FILTER_FLAG_SPEC_ALLOW)) {
Anand K Mistry31adc6c2020-11-26 11:39:46 +11001043 warn("allowing speculative execution on seccomp "
1044 "processes not supported");
1045 j->flags.seccomp_filter_allow_speculation = 0;
1046 }
1047 }
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -04001048 return 1;
1049}
1050
Luis Hector Chavezc3e17722018-10-16 20:43:12 -07001051static int set_seccomp_filters_internal(struct minijail *j,
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -04001052 const struct sock_fprog *filter,
1053 bool owned)
Luis Hector Chavezc3e17722018-10-16 20:43:12 -07001054{
1055 struct sock_fprog *fprog;
1056
1057 if (owned) {
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -04001058 /*
1059 * If |owned| is true, it's OK to cast away the const-ness since
1060 * we'll own the pointer going forward.
1061 */
1062 fprog = (struct sock_fprog *)filter;
Luis Hector Chavezc3e17722018-10-16 20:43:12 -07001063 } else {
1064 fprog = malloc(sizeof(struct sock_fprog));
1065 if (!fprog)
1066 return -ENOMEM;
1067 fprog->len = filter->len;
1068 fprog->filter = malloc(sizeof(struct sock_filter) * fprog->len);
1069 if (!fprog->filter) {
1070 free(fprog);
1071 return -ENOMEM;
1072 }
1073 memcpy(fprog->filter, filter->filter,
1074 sizeof(struct sock_filter) * fprog->len);
1075 }
1076
1077 if (j->filter_prog) {
1078 free(j->filter_prog->filter);
1079 free(j->filter_prog);
1080 }
1081
1082 j->filter_len = fprog->len;
1083 j->filter_prog = fprog;
1084 return 0;
1085}
1086
Luis Hector Chavez7624e712017-08-28 19:30:59 -07001087static int parse_seccomp_filters(struct minijail *j, const char *filename,
1088 FILE *policy_file)
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -04001089{
1090 struct sock_fprog *fprog = malloc(sizeof(struct sock_fprog));
Luis Hector Chavezc3e17722018-10-16 20:43:12 -07001091 if (!fprog)
1092 return -ENOMEM;
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -04001093
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -04001094 struct filter_options filteropts;
1095
1096 /*
1097 * Figure out filter options.
1098 * Allow logging?
1099 */
1100 filteropts.allow_logging =
Adrian Ratiu8ef61252021-06-08 03:46:24 +03001101 debug_logging_allowed() && seccomp_is_logging_allowed(j);
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -04001102
1103 /* What to do on a blocked system call? */
1104 if (filteropts.allow_logging) {
1105 if (seccomp_ret_log_available())
1106 filteropts.action = ACTION_RET_LOG;
1107 else
1108 filteropts.action = ACTION_RET_TRAP;
1109 } else {
Jorge Lucangeli Obesd23ad7922020-10-13 10:26:40 -04001110 if (j->flags.seccomp_filter_tsync) {
1111 if (seccomp_ret_kill_process_available()) {
1112 filteropts.action = ACTION_RET_KILL_PROCESS;
1113 } else {
1114 filteropts.action = ACTION_RET_TRAP;
1115 }
1116 } else {
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -04001117 filteropts.action = ACTION_RET_KILL;
Jorge Lucangeli Obesd23ad7922020-10-13 10:26:40 -04001118 }
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -04001119 }
1120
1121 /*
1122 * If SECCOMP_RET_LOG is not available, need to allow extra syscalls
1123 * for logging.
1124 */
1125 filteropts.allow_syscalls_for_logging =
1126 filteropts.allow_logging && !seccomp_ret_log_available();
1127
Nicole Anderson-Aubcc8cfd2020-11-10 20:33:27 +00001128 /* Whether to fail on duplicate syscalls. */
1129 filteropts.allow_duplicate_syscalls = allow_duplicate_syscalls();
1130
Jorge Lucangeli Obese1a86892019-06-10 16:17:03 -04001131 if (compile_filter(filename, policy_file, fprog, &filteropts)) {
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -04001132 free(fprog);
1133 return -1;
1134 }
1135
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -04001136 return set_seccomp_filters_internal(j, fprog, true /* owned */);
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -04001137}
1138
1139void API minijail_parse_seccomp_filters(struct minijail *j, const char *path)
1140{
Luis Hector Chavezc3e17722018-10-16 20:43:12 -07001141 if (!seccomp_should_use_filters(j))
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -04001142 return;
1143
Mike Frysingerdebdf5d2021-06-21 09:52:06 -04001144 attribute_cleanup_fp FILE *file = fopen(path, "re");
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08001145 if (!file) {
Jorge Lucangeli Obes224e4272012-08-02 14:31:39 -07001146 pdie("failed to open seccomp filter file '%s'", path);
Elly Jonese1749eb2011-10-07 13:54:59 -04001147 }
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08001148
Luis Hector Chavez7624e712017-08-28 19:30:59 -07001149 if (parse_seccomp_filters(j, path, file) != 0) {
Jorge Lucangeli Obesbda833c2012-07-31 16:25:56 -07001150 die("failed to compile seccomp filter BPF program in '%s'",
1151 path);
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08001152 }
Allen Webb77383c72021-10-15 10:34:24 -07001153 if (j->seccomp_policy_path) {
1154 free(j->seccomp_policy_path);
1155 }
1156 j->seccomp_policy_path = strdup(path);
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -04001157}
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08001158
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -04001159void API minijail_parse_seccomp_filters_from_fd(struct minijail *j, int fd)
1160{
Luis Hector Chavez7624e712017-08-28 19:30:59 -07001161 char *fd_path, *path;
Mike Frysingerdebdf5d2021-06-21 09:52:06 -04001162 attribute_cleanup_fp FILE *file = NULL;
Luis Hector Chavez7624e712017-08-28 19:30:59 -07001163
Luis Hector Chavezc3e17722018-10-16 20:43:12 -07001164 if (!seccomp_should_use_filters(j))
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -04001165 return;
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08001166
Luis Hector Chavez7624e712017-08-28 19:30:59 -07001167 file = fdopen(fd, "r");
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -04001168 if (!file) {
1169 pdie("failed to associate stream with fd %d", fd);
1170 }
1171
Luis Hector Chavez7624e712017-08-28 19:30:59 -07001172 if (asprintf(&fd_path, "/proc/self/fd/%d", fd) == -1)
1173 pdie("failed to create path for fd %d", fd);
1174 path = realpath(fd_path, NULL);
1175 if (path == NULL)
1176 pwarn("failed to get path of fd %d", fd);
1177 free(fd_path);
1178
1179 if (parse_seccomp_filters(j, path ? path : "<fd>", file) != 0) {
Jorge Lucangeli Obes4d4b3be2016-08-16 16:58:14 -04001180 die("failed to compile seccomp filter BPF program from fd %d",
1181 fd);
1182 }
Allen Webb77383c72021-10-15 10:34:24 -07001183 if (j->seccomp_policy_path) {
1184 free(j->seccomp_policy_path);
1185 }
1186 j->seccomp_policy_path = path;
Will Drewry32ac9f52011-08-18 21:36:27 -05001187}
1188
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -04001189void API minijail_set_seccomp_filters(struct minijail *j,
1190 const struct sock_fprog *filter)
1191{
1192 if (!seccomp_should_use_filters(j))
1193 return;
1194
Adrian Ratiu8ef61252021-06-08 03:46:24 +03001195 if (seccomp_is_logging_allowed(j)) {
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -04001196 die("minijail_log_seccomp_filter_failures() is incompatible "
1197 "with minijail_set_seccomp_filters()");
1198 }
1199
1200 /*
1201 * set_seccomp_filters_internal() can only fail with ENOMEM.
1202 * Furthermore, since we won't own the incoming filter, it will not be
1203 * modified.
1204 */
1205 if (set_seccomp_filters_internal(j, filter, false /* owned */) < 0) {
1206 die("failed to set seccomp filter");
1207 }
1208}
1209
Andrew Brestickereac28942015-11-11 16:04:46 -08001210int API minijail_use_alt_syscall(struct minijail *j, const char *table)
1211{
1212 j->alt_syscall_table = strdup(table);
1213 if (!j->alt_syscall_table)
1214 return -ENOMEM;
1215 j->flags.alt_syscall = 1;
1216 return 0;
1217}
1218
Will Drewryf89aef52011-09-16 16:48:57 -05001219struct marshal_state {
Elly Jonese1749eb2011-10-07 13:54:59 -04001220 size_t available;
1221 size_t total;
1222 char *buf;
Will Drewryf89aef52011-09-16 16:48:57 -05001223};
1224
Mike Frysinger0a27ab02020-09-04 16:18:12 -04001225static void marshal_state_init(struct marshal_state *state, char *buf,
1226 size_t available)
Elly Jonese1749eb2011-10-07 13:54:59 -04001227{
1228 state->available = available;
1229 state->buf = buf;
1230 state->total = 0;
Will Drewryf89aef52011-09-16 16:48:57 -05001231}
1232
Mike Frysinger0a27ab02020-09-04 16:18:12 -04001233static void marshal_append(struct marshal_state *state, const void *src,
1234 size_t length)
Elly Jonese1749eb2011-10-07 13:54:59 -04001235{
1236 size_t copy_len = MIN(state->available, length);
Will Drewryf89aef52011-09-16 16:48:57 -05001237
Elly Jonese1749eb2011-10-07 13:54:59 -04001238 /* Up to |available| will be written. */
1239 if (copy_len) {
1240 memcpy(state->buf, src, copy_len);
1241 state->buf += copy_len;
1242 state->available -= copy_len;
1243 }
1244 /* |total| will contain the expected length. */
1245 state->total += length;
Will Drewryf89aef52011-09-16 16:48:57 -05001246}
1247
Mike Frysinger5f9e3002020-09-04 16:20:36 -04001248static void marshal_append_string(struct marshal_state *state, const char *src)
1249{
1250 marshal_append(state, src, strlen(src) + 1);
1251}
1252
Mike Frysinger0a27ab02020-09-04 16:18:12 -04001253static void marshal_mount(struct marshal_state *state,
1254 const struct mountpoint *m)
Dylan Reid81e23972016-05-18 14:06:35 -07001255{
1256 marshal_append(state, m->src, strlen(m->src) + 1);
1257 marshal_append(state, m->dest, strlen(m->dest) + 1);
1258 marshal_append(state, m->type, strlen(m->type) + 1);
1259 marshal_append(state, (char *)&m->has_data, sizeof(m->has_data));
1260 if (m->has_data)
1261 marshal_append(state, m->data, strlen(m->data) + 1);
1262 marshal_append(state, (char *)&m->flags, sizeof(m->flags));
1263}
1264
Mike Frysinger0a27ab02020-09-04 16:18:12 -04001265static void minijail_marshal_helper(struct marshal_state *state,
1266 const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001267{
Dylan Reid648b2202015-10-23 00:50:00 -07001268 struct mountpoint *m = NULL;
Dylan Reid605ce7f2016-01-19 19:21:00 -08001269 size_t i;
1270
Elly Jonese1749eb2011-10-07 13:54:59 -04001271 marshal_append(state, (char *)j, sizeof(*j));
1272 if (j->user)
Mike Frysinger5f9e3002020-09-04 16:20:36 -04001273 marshal_append_string(state, j->user);
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001274 if (j->suppl_gid_list) {
1275 marshal_append(state, j->suppl_gid_list,
1276 j->suppl_gid_count * sizeof(gid_t));
1277 }
Elly Jones51a5b6c2011-10-12 19:09:26 -04001278 if (j->chrootdir)
Mike Frysinger5f9e3002020-09-04 16:20:36 -04001279 marshal_append_string(state, j->chrootdir);
Mike Frysingerb9a7b162017-05-30 15:25:49 -04001280 if (j->hostname)
Mike Frysinger5f9e3002020-09-04 16:20:36 -04001281 marshal_append_string(state, j->hostname);
Andrew Brestickereac28942015-11-11 16:04:46 -08001282 if (j->alt_syscall_table) {
1283 marshal_append(state, j->alt_syscall_table,
1284 strlen(j->alt_syscall_table) + 1);
1285 }
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08001286 if (j->flags.seccomp_filter && j->filter_prog) {
1287 struct sock_fprog *fp = j->filter_prog;
1288 marshal_append(state, (char *)fp->filter,
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08001289 fp->len * sizeof(struct sock_filter));
Elly Jonese1749eb2011-10-07 13:54:59 -04001290 }
Dylan Reid648b2202015-10-23 00:50:00 -07001291 for (m = j->mounts_head; m; m = m->next) {
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -04001292 marshal_mount(state, m);
Elly Jones51a5b6c2011-10-12 19:09:26 -04001293 }
Dylan Reid605ce7f2016-01-19 19:21:00 -08001294 for (i = 0; i < j->cgroup_count; ++i)
Mike Frysinger5f9e3002020-09-04 16:20:36 -04001295 marshal_append_string(state, j->cgroups[i]);
Allen Webb77383c72021-10-15 10:34:24 -07001296 if (j->seccomp_policy_path)
1297 marshal_append_string(state, j->seccomp_policy_path);
Will Drewryf89aef52011-09-16 16:48:57 -05001298}
1299
Will Drewry6ac91122011-10-21 16:38:58 -05001300size_t API minijail_size(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001301{
1302 struct marshal_state state;
1303 marshal_state_init(&state, NULL, 0);
1304 minijail_marshal_helper(&state, j);
1305 return state.total;
Will Drewry2ddaad02011-09-16 11:36:08 -05001306}
1307
Elly Jonese1749eb2011-10-07 13:54:59 -04001308int minijail_marshal(const struct minijail *j, char *buf, size_t available)
1309{
1310 struct marshal_state state;
1311 marshal_state_init(&state, buf, available);
1312 minijail_marshal_helper(&state, j);
1313 return (state.total > available);
Will Drewry2ddaad02011-09-16 11:36:08 -05001314}
1315
Elly Jonese1749eb2011-10-07 13:54:59 -04001316int minijail_unmarshal(struct minijail *j, char *serialized, size_t length)
1317{
Jorge Lucangeli Obesc2ba9f52015-12-01 07:58:10 -08001318 size_t i;
1319 size_t count;
Will Drewrybee7ba72011-10-21 20:47:01 -05001320 int ret = -EINVAL;
1321
Elly Jonese1749eb2011-10-07 13:54:59 -04001322 if (length < sizeof(*j))
Will Drewrybee7ba72011-10-21 20:47:01 -05001323 goto out;
Elly Jonese1749eb2011-10-07 13:54:59 -04001324 memcpy((void *)j, serialized, sizeof(*j));
1325 serialized += sizeof(*j);
1326 length -= sizeof(*j);
Will Drewryf89aef52011-09-16 16:48:57 -05001327
Will Drewrybee7ba72011-10-21 20:47:01 -05001328 /* Potentially stale pointers not used as signals. */
Luis Hector Chavez9acba452018-10-11 10:13:25 -07001329 j->preload_path = NULL;
Jorge Lucangeli Obes3b2e6e42016-08-04 12:26:19 -04001330 j->pid_file_path = NULL;
1331 j->uidmap = NULL;
1332 j->gidmap = NULL;
Dylan Reid648b2202015-10-23 00:50:00 -07001333 j->mounts_head = NULL;
1334 j->mounts_tail = NULL;
Nicole Anderson-Au835f7172021-01-13 21:18:13 +00001335 j->remounts_head = NULL;
1336 j->remounts_tail = NULL;
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08001337 j->filter_prog = NULL;
Luis Hector Chaveze0ba4ce2017-07-20 15:12:22 -07001338 j->hooks_head = NULL;
1339 j->hooks_tail = NULL;
Will Drewrybee7ba72011-10-21 20:47:01 -05001340
Allen Webb7ae41c22021-09-16 10:23:37 -05001341 if (j->user) { /* stale pointer */
Elly Jones51a5b6c2011-10-12 19:09:26 -04001342 char *user = consumestr(&serialized, &length);
1343 if (!user)
Will Drewrybee7ba72011-10-21 20:47:01 -05001344 goto clear_pointers;
Elly Jones51a5b6c2011-10-12 19:09:26 -04001345 j->user = strdup(user);
Will Drewrybee7ba72011-10-21 20:47:01 -05001346 if (!j->user)
1347 goto clear_pointers;
Elly Jonese1749eb2011-10-07 13:54:59 -04001348 }
Will Drewryf89aef52011-09-16 16:48:57 -05001349
Allen Webb7ae41c22021-09-16 10:23:37 -05001350 if (j->suppl_gid_list) { /* stale pointer */
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001351 if (j->suppl_gid_count > NGROUPS_MAX) {
1352 goto bad_gid_list;
1353 }
1354 size_t gid_list_size = j->suppl_gid_count * sizeof(gid_t);
1355 void *gid_list_bytes =
1356 consumebytes(gid_list_size, &serialized, &length);
1357 if (!gid_list_bytes)
1358 goto bad_gid_list;
1359
1360 j->suppl_gid_list = calloc(j->suppl_gid_count, sizeof(gid_t));
1361 if (!j->suppl_gid_list)
1362 goto bad_gid_list;
1363
1364 memcpy(j->suppl_gid_list, gid_list_bytes, gid_list_size);
1365 }
1366
Allen Webb7ae41c22021-09-16 10:23:37 -05001367 if (j->chrootdir) { /* stale pointer */
Elly Jonesa8d1e1b2011-10-21 15:38:00 -04001368 char *chrootdir = consumestr(&serialized, &length);
1369 if (!chrootdir)
Will Drewrybee7ba72011-10-21 20:47:01 -05001370 goto bad_chrootdir;
Elly Jonesa8d1e1b2011-10-21 15:38:00 -04001371 j->chrootdir = strdup(chrootdir);
Will Drewrybee7ba72011-10-21 20:47:01 -05001372 if (!j->chrootdir)
1373 goto bad_chrootdir;
Elly Jonesa8d1e1b2011-10-21 15:38:00 -04001374 }
1375
Allen Webb7ae41c22021-09-16 10:23:37 -05001376 if (j->hostname) { /* stale pointer */
Mike Frysingerb9a7b162017-05-30 15:25:49 -04001377 char *hostname = consumestr(&serialized, &length);
1378 if (!hostname)
1379 goto bad_hostname;
1380 j->hostname = strdup(hostname);
1381 if (!j->hostname)
1382 goto bad_hostname;
1383 }
1384
Allen Webb7ae41c22021-09-16 10:23:37 -05001385 if (j->alt_syscall_table) { /* stale pointer */
Andrew Brestickereac28942015-11-11 16:04:46 -08001386 char *alt_syscall_table = consumestr(&serialized, &length);
1387 if (!alt_syscall_table)
1388 goto bad_syscall_table;
1389 j->alt_syscall_table = strdup(alt_syscall_table);
1390 if (!j->alt_syscall_table)
1391 goto bad_syscall_table;
1392 }
1393
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08001394 if (j->flags.seccomp_filter && j->filter_len > 0) {
1395 size_t ninstrs = j->filter_len;
1396 if (ninstrs > (SIZE_MAX / sizeof(struct sock_filter)) ||
1397 ninstrs > USHRT_MAX)
1398 goto bad_filters;
1399
1400 size_t program_len = ninstrs * sizeof(struct sock_filter);
1401 void *program = consumebytes(program_len, &serialized, &length);
1402 if (!program)
1403 goto bad_filters;
1404
1405 j->filter_prog = malloc(sizeof(struct sock_fprog));
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001406 if (!j->filter_prog)
1407 goto bad_filters;
1408
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08001409 j->filter_prog->len = ninstrs;
1410 j->filter_prog->filter = malloc(program_len);
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001411 if (!j->filter_prog->filter)
1412 goto bad_filter_prog_instrs;
1413
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08001414 memcpy(j->filter_prog->filter, program, program_len);
Elly Jonese1749eb2011-10-07 13:54:59 -04001415 }
Elly Jones51a5b6c2011-10-12 19:09:26 -04001416
Dylan Reid648b2202015-10-23 00:50:00 -07001417 count = j->mounts_count;
1418 j->mounts_count = 0;
Elly Jones51a5b6c2011-10-12 19:09:26 -04001419 for (i = 0; i < count; ++i) {
Dylan Reid648b2202015-10-23 00:50:00 -07001420 unsigned long *flags;
Dylan Reid81e23972016-05-18 14:06:35 -07001421 int *has_data;
Elly Jones51a5b6c2011-10-12 19:09:26 -04001422 const char *dest;
Dylan Reid648b2202015-10-23 00:50:00 -07001423 const char *type;
Dylan Reid81e23972016-05-18 14:06:35 -07001424 const char *data = NULL;
Elly Jones51a5b6c2011-10-12 19:09:26 -04001425 const char *src = consumestr(&serialized, &length);
1426 if (!src)
Dylan Reid648b2202015-10-23 00:50:00 -07001427 goto bad_mounts;
Elly Jones51a5b6c2011-10-12 19:09:26 -04001428 dest = consumestr(&serialized, &length);
1429 if (!dest)
Dylan Reid648b2202015-10-23 00:50:00 -07001430 goto bad_mounts;
1431 type = consumestr(&serialized, &length);
1432 if (!type)
1433 goto bad_mounts;
Allen Webb7ae41c22021-09-16 10:23:37 -05001434 has_data =
1435 consumebytes(sizeof(*has_data), &serialized, &length);
Dylan Reid81e23972016-05-18 14:06:35 -07001436 if (!has_data)
1437 goto bad_mounts;
1438 if (*has_data) {
1439 data = consumestr(&serialized, &length);
1440 if (!data)
1441 goto bad_mounts;
1442 }
Dylan Reid648b2202015-10-23 00:50:00 -07001443 flags = consumebytes(sizeof(*flags), &serialized, &length);
1444 if (!flags)
1445 goto bad_mounts;
Dylan Reid81e23972016-05-18 14:06:35 -07001446 if (minijail_mount_with_data(j, src, dest, type, *flags, data))
Dylan Reid648b2202015-10-23 00:50:00 -07001447 goto bad_mounts;
Elly Jones51a5b6c2011-10-12 19:09:26 -04001448 }
1449
Dylan Reid605ce7f2016-01-19 19:21:00 -08001450 count = j->cgroup_count;
1451 j->cgroup_count = 0;
1452 for (i = 0; i < count; ++i) {
1453 char *cgroup = consumestr(&serialized, &length);
1454 if (!cgroup)
1455 goto bad_cgroups;
1456 j->cgroups[i] = strdup(cgroup);
1457 if (!j->cgroups[i])
1458 goto bad_cgroups;
1459 ++j->cgroup_count;
1460 }
1461
Allen Webb77383c72021-10-15 10:34:24 -07001462 if (j->seccomp_policy_path) { /* stale pointer */
1463 char *seccomp_policy_path = consumestr(&serialized, &length);
1464 if (!seccomp_policy_path)
1465 goto bad_cgroups;
1466 j->seccomp_policy_path = strdup(seccomp_policy_path);
1467 if (!j->seccomp_policy_path)
1468 goto bad_cgroups;
1469 }
1470
Elly Jonese1749eb2011-10-07 13:54:59 -04001471 return 0;
Will Drewrybee7ba72011-10-21 20:47:01 -05001472
Allen Webb77383c72021-10-15 10:34:24 -07001473 /*
1474 * If more is added after j->seccomp_policy_path, then this is needed:
1475 * if (j->seccomp_policy_path)
1476 * free(j->seccomp_policy_path);
1477 */
1478
Dylan Reid605ce7f2016-01-19 19:21:00 -08001479bad_cgroups:
Mike Frysingerac08a682017-10-10 02:04:50 -04001480 free_mounts_list(j);
Nicole Anderson-Au835f7172021-01-13 21:18:13 +00001481 free_remounts_list(j);
Dylan Reid605ce7f2016-01-19 19:21:00 -08001482 for (i = 0; i < j->cgroup_count; ++i)
1483 free(j->cgroups[i]);
Dylan Reid648b2202015-10-23 00:50:00 -07001484bad_mounts:
Luis Hector Chavezc3e17722018-10-16 20:43:12 -07001485 if (j->filter_prog && j->filter_prog->filter)
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08001486 free(j->filter_prog->filter);
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001487bad_filter_prog_instrs:
1488 if (j->filter_prog)
1489 free(j->filter_prog);
Will Drewrybee7ba72011-10-21 20:47:01 -05001490bad_filters:
Andrew Brestickereac28942015-11-11 16:04:46 -08001491 if (j->alt_syscall_table)
1492 free(j->alt_syscall_table);
1493bad_syscall_table:
Mike Frysingerb9a7b162017-05-30 15:25:49 -04001494 if (j->hostname)
1495 free(j->hostname);
1496bad_hostname:
Stéphane Lesimple3cf37e12022-01-10 14:24:51 +01001497 if (j->chrootdir)
1498 free(j->chrootdir);
1499bad_chrootdir:
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001500 if (j->suppl_gid_list)
1501 free(j->suppl_gid_list);
1502bad_gid_list:
Will Drewrybee7ba72011-10-21 20:47:01 -05001503 if (j->user)
1504 free(j->user);
1505clear_pointers:
1506 j->user = NULL;
Jorge Lucangeli Obesde02a5b2015-12-11 15:28:52 -08001507 j->suppl_gid_list = NULL;
Will Drewrybee7ba72011-10-21 20:47:01 -05001508 j->chrootdir = NULL;
Mike Frysingerb9a7b162017-05-30 15:25:49 -04001509 j->hostname = NULL;
Andrew Brestickereac28942015-11-11 16:04:46 -08001510 j->alt_syscall_table = NULL;
Dylan Reid605ce7f2016-01-19 19:21:00 -08001511 j->cgroup_count = 0;
Allen Webb77383c72021-10-15 10:34:24 -07001512 j->seccomp_policy_path = NULL;
Will Drewrybee7ba72011-10-21 20:47:01 -05001513out:
1514 return ret;
Will Drewry2ddaad02011-09-16 11:36:08 -05001515}
1516
Mike Frysinger33ffef32017-01-13 19:53:19 -05001517struct dev_spec {
1518 const char *name;
1519 mode_t mode;
1520 dev_t major, minor;
1521};
1522
Allen Webb7ae41c22021-09-16 10:23:37 -05001523// clang-format off
Mike Frysinger33ffef32017-01-13 19:53:19 -05001524static const struct dev_spec device_nodes[] = {
Allen Webb7ae41c22021-09-16 10:23:37 -05001525 {
1526"null",
1527 S_IFCHR | 0666, 1, 3,
1528 },
1529 {
1530 "zero",
1531 S_IFCHR | 0666, 1, 5,
1532 },
1533 {
1534 "full",
1535 S_IFCHR | 0666, 1, 7,
1536 },
1537 {
1538 "urandom",
1539 S_IFCHR | 0444, 1, 9,
1540 },
1541 {
1542 "tty",
1543 S_IFCHR | 0666, 5, 0,
1544 },
Mike Frysinger33ffef32017-01-13 19:53:19 -05001545};
Allen Webb7ae41c22021-09-16 10:23:37 -05001546// clang-format on
Mike Frysinger33ffef32017-01-13 19:53:19 -05001547
1548struct dev_sym_spec {
1549 const char *source, *dest;
1550};
1551
1552static const struct dev_sym_spec device_symlinks[] = {
Allen Webb7ae41c22021-09-16 10:23:37 -05001553 {
1554 "ptmx",
1555 "pts/ptmx",
1556 },
1557 {
1558 "fd",
1559 "/proc/self/fd",
1560 },
1561 {
1562 "stdin",
1563 "fd/0",
1564 },
1565 {
1566 "stdout",
1567 "fd/1",
1568 },
1569 {
1570 "stderr",
1571 "fd/2",
1572 },
Mike Frysinger33ffef32017-01-13 19:53:19 -05001573};
1574
1575/*
1576 * Clean up the temporary dev path we had setup previously. In case of errors,
1577 * we don't want to go leaking empty tempdirs.
1578 */
1579static void mount_dev_cleanup(char *dev_path)
1580{
1581 umount2(dev_path, MNT_DETACH);
1582 rmdir(dev_path);
1583 free(dev_path);
1584}
1585
1586/*
1587 * Set up the pseudo /dev path at the temporary location.
1588 * See mount_dev_finalize for more details.
1589 */
1590static int mount_dev(char **dev_path_ret)
1591{
1592 int ret;
Mike Frysinger94cff172021-07-16 02:59:04 -04001593 attribute_cleanup_fd int dev_fd = -1;
Mike Frysinger33ffef32017-01-13 19:53:19 -05001594 size_t i;
1595 mode_t mask;
1596 char *dev_path;
1597
1598 /*
1599 * Create a temp path for the /dev init. We'll relocate this to the
1600 * final location later on in the startup process.
1601 */
1602 dev_path = *dev_path_ret = strdup("/tmp/minijail.dev.XXXXXX");
1603 if (dev_path == NULL || mkdtemp(dev_path) == NULL)
1604 pdie("could not create temp path for /dev");
1605
1606 /* Set up the empty /dev mount point first. */
Allen Webb7ae41c22021-09-16 10:23:37 -05001607 ret = mount("minijail-devfs", dev_path, "tmpfs", MS_NOEXEC | MS_NOSUID,
1608 "size=5M,mode=755");
Mike Frysinger33ffef32017-01-13 19:53:19 -05001609 if (ret) {
1610 rmdir(dev_path);
1611 return ret;
1612 }
1613
1614 /* We want to set the mode directly from the spec. */
1615 mask = umask(0);
1616
1617 /* Get a handle to the temp dev path for *at funcs below. */
Allen Webb7ae41c22021-09-16 10:23:37 -05001618 dev_fd = open(dev_path, O_DIRECTORY | O_PATH | O_CLOEXEC);
Mike Frysinger33ffef32017-01-13 19:53:19 -05001619 if (dev_fd < 0) {
1620 ret = 1;
1621 goto done;
1622 }
1623
1624 /* Create all the nodes in /dev. */
1625 for (i = 0; i < ARRAY_SIZE(device_nodes); ++i) {
1626 const struct dev_spec *ds = &device_nodes[i];
1627 ret = mknodat(dev_fd, ds->name, ds->mode,
Allen Webb7ae41c22021-09-16 10:23:37 -05001628 makedev(ds->major, ds->minor));
Mike Frysinger33ffef32017-01-13 19:53:19 -05001629 if (ret)
1630 goto done;
1631 }
1632
1633 /* Create all the symlinks in /dev. */
1634 for (i = 0; i < ARRAY_SIZE(device_symlinks); ++i) {
1635 const struct dev_sym_spec *ds = &device_symlinks[i];
1636 ret = symlinkat(ds->dest, dev_fd, ds->source);
1637 if (ret)
1638 goto done;
1639 }
1640
Mike Frysinger604cc7b2020-12-29 18:18:56 -05001641 /* Create empty dir for glibc shared mem APIs. */
1642 ret = mkdirat(dev_fd, "shm", 01777);
1643 if (ret)
1644 goto done;
1645
Mike Frysinger33ffef32017-01-13 19:53:19 -05001646 /* Restore old mask. */
Allen Webb7ae41c22021-09-16 10:23:37 -05001647done:
Mike Frysinger33ffef32017-01-13 19:53:19 -05001648 umask(mask);
1649
1650 if (ret)
1651 mount_dev_cleanup(dev_path);
1652
1653 return ret;
1654}
1655
1656/*
1657 * Relocate the temporary /dev mount to its final /dev place.
1658 * We have to do this two step process so people can bind mount extra
1659 * /dev paths like /dev/log.
1660 */
1661static int mount_dev_finalize(const struct minijail *j, char *dev_path)
1662{
1663 int ret = -1;
1664 char *dest = NULL;
1665
1666 /* Unmount the /dev mount if possible. */
1667 if (umount2("/dev", MNT_DETACH))
1668 goto done;
1669
Allen Webb7ae41c22021-09-16 10:23:37 -05001670 if (asprintf(&dest, "%s/dev", j->chrootdir ?: "") < 0)
Mike Frysinger33ffef32017-01-13 19:53:19 -05001671 goto done;
1672
1673 if (mount(dev_path, dest, NULL, MS_MOVE, NULL))
1674 goto done;
1675
1676 ret = 0;
Allen Webb7ae41c22021-09-16 10:23:37 -05001677done:
Mike Frysinger33ffef32017-01-13 19:53:19 -05001678 free(dest);
1679 mount_dev_cleanup(dev_path);
1680
1681 return ret;
1682}
1683
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08001684/*
1685 * mount_one: Applies mounts from @m for @j, recursing as needed.
Dylan Reid648b2202015-10-23 00:50:00 -07001686 * @j Minijail these mounts are for
1687 * @m Head of list of mounts
Elly Jones51a5b6c2011-10-12 19:09:26 -04001688 *
1689 * Returns 0 for success.
1690 */
Mike Frysinger33ffef32017-01-13 19:53:19 -05001691static int mount_one(const struct minijail *j, struct mountpoint *m,
1692 const char *dev_path)
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -07001693{
Dylan Reid648b2202015-10-23 00:50:00 -07001694 int ret;
1695 char *dest;
Luis Hector Chavez0bacbf82018-07-10 20:06:55 -07001696 int remount = 0;
1697 unsigned long original_mnt_flags = 0;
Dylan Reid648b2202015-10-23 00:50:00 -07001698
Jorge Lucangeli Obes7654c6e2019-09-09 10:45:38 -04001699 /* We assume |dest| has a leading "/". */
Mike Frysinger33ffef32017-01-13 19:53:19 -05001700 if (dev_path && strncmp("/dev/", m->dest, 5) == 0) {
Jorge Lucangeli Obes9299cae2019-08-23 11:28:39 -04001701 /*
Jorge Lucangeli Obes7654c6e2019-09-09 10:45:38 -04001702 * Since the temp path is rooted at /dev, skip that dest part.
Jorge Lucangeli Obes9299cae2019-08-23 11:28:39 -04001703 */
Mike Frysinger33ffef32017-01-13 19:53:19 -05001704 if (asprintf(&dest, "%s%s", dev_path, m->dest + 4) < 0)
1705 return -ENOMEM;
1706 } else {
Mike Frysingerac08a682017-10-10 02:04:50 -04001707 if (asprintf(&dest, "%s%s", j->chrootdir ?: "", m->dest) < 0)
Mike Frysinger33ffef32017-01-13 19:53:19 -05001708 return -ENOMEM;
1709 }
Dylan Reid648b2202015-10-23 00:50:00 -07001710
Luis Hector Chavez0bacbf82018-07-10 20:06:55 -07001711 ret =
1712 setup_mount_destination(m->src, dest, j->uid, j->gid,
1713 (m->flags & MS_BIND), &original_mnt_flags);
Mike Frysinger33ffef32017-01-13 19:53:19 -05001714 if (ret) {
François Degrosa42182d2020-04-29 00:41:52 +10001715 warn("cannot create mount target '%s'", dest);
Luis Hector Chavez8c3acbc2017-10-24 16:45:00 -07001716 goto error;
Mike Frysinger33ffef32017-01-13 19:53:19 -05001717 }
Dylan Reideec77962016-06-30 19:35:10 -07001718
Dylan Reid648b2202015-10-23 00:50:00 -07001719 /*
Luis Hector Chavez0bacbf82018-07-10 20:06:55 -07001720 * Bind mounts that change the 'ro' flag have to be remounted since
1721 * 'bind' and other flags can't both be specified in the same command.
1722 * Remount after the initial mount.
Dylan Reid648b2202015-10-23 00:50:00 -07001723 */
Luis Hector Chavez0bacbf82018-07-10 20:06:55 -07001724 if ((m->flags & MS_BIND) &&
1725 ((m->flags & MS_RDONLY) != (original_mnt_flags & MS_RDONLY))) {
1726 remount = 1;
1727 /*
1728 * Restrict the mount flags to those that are user-settable in a
1729 * MS_REMOUNT request, but excluding MS_RDONLY. The
1730 * user-requested mount flags will dictate whether the remount
1731 * will have that flag or not.
1732 */
1733 original_mnt_flags &= (MS_USER_SETTABLE_MASK & ~MS_RDONLY);
Elly Jonesa1059632011-12-15 15:17:07 -05001734 }
Dylan Reid648b2202015-10-23 00:50:00 -07001735
Dylan Reid81e23972016-05-18 14:06:35 -07001736 ret = mount(m->src, dest, m->type, m->flags, m->data);
Mike Frysinger33ffef32017-01-13 19:53:19 -05001737 if (ret) {
François Degrosa42182d2020-04-29 00:41:52 +10001738 pwarn("cannot bind-mount '%s' as '%s' with flags %#lx", m->src,
1739 dest, m->flags);
Luis Hector Chavez8c3acbc2017-10-24 16:45:00 -07001740 goto error;
Mike Frysinger33ffef32017-01-13 19:53:19 -05001741 }
Dylan Reid648b2202015-10-23 00:50:00 -07001742
Luis Hector Chavez0bacbf82018-07-10 20:06:55 -07001743 if (remount) {
1744 ret =
1745 mount(m->src, dest, NULL,
1746 m->flags | original_mnt_flags | MS_REMOUNT, m->data);
Mike Frysinger33ffef32017-01-13 19:53:19 -05001747 if (ret) {
François Degrosa42182d2020-04-29 00:41:52 +10001748 pwarn(
1749 "cannot bind-remount '%s' as '%s' with flags %#lx",
1750 m->src, dest,
1751 m->flags | original_mnt_flags | MS_REMOUNT);
Luis Hector Chavez8c3acbc2017-10-24 16:45:00 -07001752 goto error;
Mike Frysinger33ffef32017-01-13 19:53:19 -05001753 }
Dylan Reid648b2202015-10-23 00:50:00 -07001754 }
1755
Elly Jones51a5b6c2011-10-12 19:09:26 -04001756 free(dest);
Dylan Reid648b2202015-10-23 00:50:00 -07001757 if (m->next)
Mike Frysinger33ffef32017-01-13 19:53:19 -05001758 return mount_one(j, m->next, dev_path);
Luis Hector Chavez8c3acbc2017-10-24 16:45:00 -07001759 return 0;
1760
1761error:
1762 free(dest);
Elly Jones51a5b6c2011-10-12 19:09:26 -04001763 return ret;
1764}
1765
Mike Frysingerac08a682017-10-10 02:04:50 -04001766static void process_mounts_or_die(const struct minijail *j)
Jorge Lucangeli Obesc8b21e12014-06-13 14:26:16 -07001767{
Mike Frysingerac08a682017-10-10 02:04:50 -04001768 /*
1769 * We have to mount /dev first in case there are bind mounts from
1770 * the original /dev into the new unique tmpfs one.
1771 */
1772 char *dev_path = NULL;
1773 if (j->flags.mount_dev && mount_dev(&dev_path))
1774 pdie("mount_dev failed");
Dylan Reid648b2202015-10-23 00:50:00 -07001775
Mike Frysingerac08a682017-10-10 02:04:50 -04001776 if (j->mounts_head && mount_one(j, j->mounts_head, dev_path)) {
François Degrosa42182d2020-04-29 00:41:52 +10001777 if (dev_path)
Mike Frysingerac08a682017-10-10 02:04:50 -04001778 mount_dev_cleanup(dev_path);
François Degrosa42182d2020-04-29 00:41:52 +10001779
1780 _exit(MINIJAIL_ERR_MOUNT);
Mike Frysingerac08a682017-10-10 02:04:50 -04001781 }
Mike Frysinger33ffef32017-01-13 19:53:19 -05001782
1783 /*
Mike Frysingerac08a682017-10-10 02:04:50 -04001784 * Once all bind mounts have been processed, move the temp dev to
1785 * its final /dev home.
Mike Frysinger33ffef32017-01-13 19:53:19 -05001786 */
1787 if (j->flags.mount_dev && mount_dev_finalize(j, dev_path))
Mike Frysingerac08a682017-10-10 02:04:50 -04001788 pdie("mount_dev_finalize failed");
1789}
Elly Jones51a5b6c2011-10-12 19:09:26 -04001790
Mike Frysingerac08a682017-10-10 02:04:50 -04001791static int enter_chroot(const struct minijail *j)
1792{
Luis Hector Chavez64730af2017-09-13 13:18:59 -07001793 run_hooks_or_die(j, MINIJAIL_HOOK_EVENT_PRE_CHROOT);
1794
Elly Jones51a5b6c2011-10-12 19:09:26 -04001795 if (chroot(j->chrootdir))
1796 return -errno;
1797
1798 if (chdir("/"))
1799 return -errno;
1800
1801 return 0;
1802}
1803
Mike Frysingerac08a682017-10-10 02:04:50 -04001804static int enter_pivot_root(const struct minijail *j)
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001805{
Mike Frysinger94cff172021-07-16 02:59:04 -04001806 attribute_cleanup_fd int oldroot = -1;
1807 attribute_cleanup_fd int newroot = -1;
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001808
Luis Hector Chavez64730af2017-09-13 13:18:59 -07001809 run_hooks_or_die(j, MINIJAIL_HOOK_EVENT_PRE_CHROOT);
1810
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001811 /*
1812 * Keep the fd for both old and new root.
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001813 * It will be used in fchdir(2) later.
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001814 */
Ricky Zhoubce609d2016-03-02 21:47:56 -08001815 oldroot = open("/", O_DIRECTORY | O_RDONLY | O_CLOEXEC);
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001816 if (oldroot < 0)
1817 pdie("failed to open / for fchdir");
Ricky Zhoubce609d2016-03-02 21:47:56 -08001818 newroot = open(j->chrootdir, O_DIRECTORY | O_RDONLY | O_CLOEXEC);
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001819 if (newroot < 0)
1820 pdie("failed to open %s for fchdir", j->chrootdir);
1821
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001822 /*
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001823 * To ensure j->chrootdir is the root of a filesystem,
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08001824 * do a self bind mount.
1825 */
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001826 if (mount(j->chrootdir, j->chrootdir, "bind", MS_BIND | MS_REC, ""))
1827 pdie("failed to bind mount '%s'", j->chrootdir);
1828 if (chdir(j->chrootdir))
1829 return -errno;
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001830 if (syscall(SYS_pivot_root, ".", "."))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001831 pdie("pivot_root");
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001832
1833 /*
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001834 * Now the old root is mounted on top of the new root. Use fchdir(2) to
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001835 * change to the old root and unmount it.
1836 */
1837 if (fchdir(oldroot))
1838 pdie("failed to fchdir to old /");
Hidehiko Abe097b7192016-03-16 18:00:36 +09001839
1840 /*
Mike Frysinger785b1c32018-02-23 15:47:24 -05001841 * If skip_remount_private was enabled for minijail_enter(),
Jorge Lucangeli Obesdf7fab12016-06-01 17:15:31 -07001842 * there could be a shared mount point under |oldroot|. In that case,
1843 * mounts under this shared mount point will be unmounted below, and
1844 * this unmounting will propagate to the original mount namespace
1845 * (because the mount point is shared). To prevent this unexpected
1846 * unmounting, remove these mounts from their peer groups by recursively
1847 * remounting them as MS_PRIVATE.
Hidehiko Abe097b7192016-03-16 18:00:36 +09001848 */
1849 if (mount(NULL, ".", NULL, MS_REC | MS_PRIVATE, NULL))
Jorge Lucangeli Obes6b0de9b2016-03-16 22:41:34 -07001850 pdie("failed to mount(/, private) before umount(/)");
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001851 /* The old root might be busy, so use lazy unmount. */
Yu-Hsi Chiange0a530e2015-09-08 18:49:49 +08001852 if (umount2(".", MNT_DETACH))
1853 pdie("umount(/)");
1854 /* Change back to the new root. */
1855 if (fchdir(newroot))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001856 return -errno;
1857 if (chroot("/"))
1858 return -errno;
Jorge Lucangeli Obes46a55092015-10-12 15:31:59 -07001859 /* Set correct CWD for getcwd(3). */
1860 if (chdir("/"))
1861 return -errno;
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08001862
1863 return 0;
1864}
1865
Martin Pelikánab9eb442017-01-25 11:53:58 +11001866static int mount_tmp(const struct minijail *j)
Lee Campbell11af0622014-05-22 12:36:04 -07001867{
Martin Pelikánab9eb442017-01-25 11:53:58 +11001868 const char fmt[] = "size=%zu,mode=1777";
1869 /* Count for the user storing ULLONG_MAX literally + extra space. */
1870 char data[sizeof(fmt) + sizeof("18446744073709551615ULL")];
1871 int ret;
1872
1873 ret = snprintf(data, sizeof(data), fmt, j->tmpfs_size);
1874
1875 if (ret <= 0)
1876 pdie("tmpfs size spec error");
1877 else if ((size_t)ret >= sizeof(data))
1878 pdie("tmpfs size spec too large");
Mike Frysingerb91d4042017-01-13 19:03:34 -05001879 return mount("none", "/tmp", "tmpfs", MS_NODEV | MS_NOEXEC | MS_NOSUID,
Martin Pelikánab9eb442017-01-25 11:53:58 +11001880 data);
Lee Campbell11af0622014-05-22 12:36:04 -07001881}
1882
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001883static int remount_proc_readonly(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04001884{
1885 const char *kProcPath = "/proc";
1886 const unsigned int kSafeFlags = MS_NODEV | MS_NOEXEC | MS_NOSUID;
Elly Jonesdd3e8512012-01-23 15:13:38 -05001887 /*
1888 * Right now, we're holding a reference to our parent's old mount of
Elly Jonese1749eb2011-10-07 13:54:59 -04001889 * /proc in our namespace, which means using MS_REMOUNT here would
1890 * mutate our parent's mount as well, even though we're in a VFS
Jorge Lucangeli Obesdf7fab12016-06-01 17:15:31 -07001891 * namespace (!). Instead, remove their mount from our namespace lazily
1892 * (MNT_DETACH) and make our own.
Jorge Lucangeli Obes320c4fc2020-12-10 10:38:30 -05001893 *
1894 * However, we skip this in the user namespace case because it will
1895 * invariably fail. Every mount namespace is "owned" by the
1896 * user namespace of the process that creates it. Mount namespace A is
1897 * "less privileged" than mount namespace B if A is created off of B,
1898 * and B is owned by a different user namespace.
1899 * When a less privileged mount namespace is created, the mounts used to
1900 * initialize it (coming from the more privileged mount namespace) come
1901 * as a unit, and are locked together. This means that code running in
1902 * the new mount (and user) namespace cannot piecemeal unmount
1903 * individual mounts inherited from a more privileged mount namespace.
1904 * See https://man7.org/linux/man-pages/man7/mount_namespaces.7.html,
1905 * "Restrictions on mount namespaces" for details.
1906 *
1907 * This happens in our use case because we first enter a new user
1908 * namespace (on clone(2)) and then we unshare(2) a new mount namespace,
1909 * which means the new mount namespace is less privileged than its
1910 * parent mount namespace. This would also happen if we entered a new
1911 * mount namespace on clone(2), since the user namespace is created
1912 * first.
1913 * In all other non-user-namespace cases the new mount namespace is
1914 * similarly privileged as the parent mount namespace so unmounting a
1915 * single mount is allowed.
1916 *
1917 * We still remount /proc as read-only in the user namespace case
1918 * because while a process with CAP_SYS_ADMIN in the new user namespace
1919 * can unmount the RO mount and get at the RW mount, an attacker with
1920 * access only to a write primitive will not be able to modify /proc.
Elly Jonese1749eb2011-10-07 13:54:59 -04001921 */
Jorge Lucangeli Obes320c4fc2020-12-10 10:38:30 -05001922 if (!j->flags.userns && umount2(kProcPath, MNT_DETACH))
1923 return -errno;
Mike Frysinger3ba81572017-01-17 23:33:28 -05001924 if (mount("proc", kProcPath, "proc", kSafeFlags | MS_RDONLY, ""))
Elly Jonese1749eb2011-10-07 13:54:59 -04001925 return -errno;
1926 return 0;
Elly Jonescd7a9042011-07-22 13:56:51 -04001927}
1928
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001929static void kill_child_and_die(const struct minijail *j, const char *msg)
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001930{
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001931 kill(j->initpid, SIGKILL);
1932 die("%s", msg);
Dylan Reid605ce7f2016-01-19 19:21:00 -08001933}
1934
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001935static void write_pid_file_or_die(const struct minijail *j)
Dylan Reid605ce7f2016-01-19 19:21:00 -08001936{
Keshav Santhanamdb6dab42016-08-10 16:33:34 -07001937 if (write_pid_to_path(j->initpid, j->pid_file_path))
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001938 kill_child_and_die(j, "failed to write pid file");
Dylan Reid605ce7f2016-01-19 19:21:00 -08001939}
1940
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001941static void add_to_cgroups_or_die(const struct minijail *j)
Dylan Reid605ce7f2016-01-19 19:21:00 -08001942{
1943 size_t i;
1944
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001945 for (i = 0; i < j->cgroup_count; ++i) {
Keshav Santhanamdb6dab42016-08-10 16:33:34 -07001946 if (write_pid_to_path(j->initpid, j->cgroups[i]))
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001947 kill_child_and_die(j, "failed to add to cgroups");
1948 }
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08001949}
1950
Dylan Reid0f72ef42017-06-06 15:42:49 -07001951static void set_rlimits_or_die(const struct minijail *j)
1952{
1953 size_t i;
1954
1955 for (i = 0; i < j->rlimit_count; ++i) {
1956 struct rlimit limit;
1957 limit.rlim_cur = j->rlimits[i].cur;
1958 limit.rlim_max = j->rlimits[i].max;
1959 if (prlimit(j->initpid, j->rlimits[i].type, &limit, NULL))
1960 kill_child_and_die(j, "failed to set rlimit");
1961 }
1962}
1963
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001964static void write_ugid_maps_or_die(const struct minijail *j)
1965{
1966 if (j->uidmap && write_proc_file(j->initpid, j->uidmap, "uid_map") != 0)
1967 kill_child_and_die(j, "failed to write uid_map");
Mike Frysinger6b190c02017-01-04 17:18:42 -05001968 if (j->gidmap && j->flags.disable_setgroups) {
Jorge Lucangeli Obes93418062019-09-27 10:59:45 -04001969 /*
1970 * Older kernels might not have the /proc/<pid>/setgroups files.
1971 */
Mike Frysinger6b190c02017-01-04 17:18:42 -05001972 int ret = write_proc_file(j->initpid, "deny", "setgroups");
Mike Frysingereea841b2017-01-13 18:11:57 -05001973 if (ret != 0) {
Mike Frysinger6b190c02017-01-04 17:18:42 -05001974 if (ret == -ENOENT) {
Allen Webb7ae41c22021-09-16 10:23:37 -05001975 /*
1976 * See
1977 * http://man7.org/linux/man-pages/man7/user_namespaces.7.html.
1978 */
Mike Frysinger6b190c02017-01-04 17:18:42 -05001979 warn("could not disable setgroups(2)");
1980 } else
Jorge Lucangeli Obes93418062019-09-27 10:59:45 -04001981 kill_child_and_die(
1982 j, "failed to disable setgroups(2)");
Mike Frysinger6b190c02017-01-04 17:18:42 -05001983 }
1984 }
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04001985 if (j->gidmap && write_proc_file(j->initpid, j->gidmap, "gid_map") != 0)
1986 kill_child_and_die(j, "failed to write gid_map");
1987}
1988
1989static void enter_user_namespace(const struct minijail *j)
1990{
Luis Hector Chavez71323552017-09-05 09:17:22 -07001991 int uid = j->flags.uid ? j->uid : 0;
1992 int gid = j->flags.gid ? j->gid : 0;
1993 if (j->gidmap && setresgid(gid, gid, gid)) {
1994 pdie("user_namespaces: setresgid(%d, %d, %d) failed", gid, gid,
1995 gid);
1996 }
1997 if (j->uidmap && setresuid(uid, uid, uid)) {
1998 pdie("user_namespaces: setresuid(%d, %d, %d) failed", uid, uid,
1999 uid);
2000 }
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04002001}
2002
2003static void parent_setup_complete(int *pipe_fds)
2004{
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002005 close_and_reset(&pipe_fds[0]);
2006 close_and_reset(&pipe_fds[1]);
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04002007}
2008
2009/*
2010 * wait_for_parent_setup: Called by the child process to wait for any
2011 * further parent-side setup to complete before continuing.
2012 */
2013static void wait_for_parent_setup(int *pipe_fds)
2014{
2015 char buf;
2016
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002017 close_and_reset(&pipe_fds[1]);
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04002018
2019 /* Wait for parent to complete setup and close the pipe. */
2020 if (read(pipe_fds[0], &buf, 1) != 0)
2021 die("failed to sync with parent");
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002022 close_and_reset(&pipe_fds[0]);
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04002023}
2024
2025static void drop_ugid(const struct minijail *j)
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07002026{
Lutz Justen13807cb2017-01-03 17:11:55 +01002027 if (j->flags.inherit_suppl_gids + j->flags.keep_suppl_gids +
Allen Webb7ae41c22021-09-16 10:23:37 -05002028 j->flags.set_suppl_gids >
2029 1) {
Jorge Lucangeli Obes34543192017-01-11 16:07:57 -05002030 die("can only do one of inherit, keep, or set supplementary "
2031 "groups");
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -08002032 }
2033
Lutz Justen13807cb2017-01-03 17:11:55 +01002034 if (j->flags.inherit_suppl_gids) {
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07002035 if (initgroups(j->user, j->usergid))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05002036 pdie("initgroups(%s, %d) failed", j->user, j->usergid);
Lutz Justen13807cb2017-01-03 17:11:55 +01002037 } else if (j->flags.set_suppl_gids) {
2038 if (setgroups(j->suppl_gid_count, j->suppl_gid_list))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05002039 pdie("setgroups(suppl_gids) failed");
Luis Hector Chavez71323552017-09-05 09:17:22 -07002040 } else if (!j->flags.keep_suppl_gids && !j->flags.disable_setgroups) {
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08002041 /*
Jorge Lucangeli Obesd16ac492015-12-03 14:44:35 -08002042 * Only attempt to clear supplementary groups if we are changing
Luis Hector Chavez71323552017-09-05 09:17:22 -07002043 * users or groups, and if the caller did not request to disable
2044 * setgroups (used when entering a user namespace as a
2045 * non-privileged user).
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08002046 */
Jorge Lucangeli Obes24499562016-12-01 11:59:27 -05002047 if ((j->flags.uid || j->flags.gid) && setgroups(0, NULL))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05002048 pdie("setgroups(0, NULL) failed");
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07002049 }
2050
2051 if (j->flags.gid && setresgid(j->gid, j->gid, j->gid))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05002052 pdie("setresgid(%d, %d, %d) failed", j->gid, j->gid, j->gid);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07002053
2054 if (j->flags.uid && setresuid(j->uid, j->uid, j->uid))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05002055 pdie("setresuid(%d, %d, %d) failed", j->uid, j->uid, j->uid);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07002056}
2057
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08002058static void drop_capbset(uint64_t keep_mask, unsigned int last_valid_cap)
2059{
2060 const uint64_t one = 1;
2061 unsigned int i;
2062 for (i = 0; i < sizeof(keep_mask) * 8 && i <= last_valid_cap; ++i) {
2063 if (keep_mask & (one << i))
2064 continue;
2065 if (prctl(PR_CAPBSET_DROP, i))
2066 pdie("could not drop capability from bounding set");
2067 }
2068}
2069
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04002070static void drop_caps(const struct minijail *j, unsigned int last_valid_cap)
Elly Jonese1749eb2011-10-07 13:54:59 -04002071{
Jorge Lucangeli Obes7ea269e2016-02-26 22:07:09 -08002072 if (!j->flags.use_caps)
2073 return;
2074
Elly Jonese1749eb2011-10-07 13:54:59 -04002075 cap_t caps = cap_get_proc();
Kees Cook323878a2013-02-05 15:35:24 -08002076 cap_value_t flag[1];
Jorge Lucangeli Obesa6eb21a2017-04-20 10:44:00 -04002077 const size_t ncaps = sizeof(j->caps) * 8;
Kees Cooke5609ac2013-02-06 14:12:41 -08002078 const uint64_t one = 1;
Elly Jonese1749eb2011-10-07 13:54:59 -04002079 unsigned int i;
2080 if (!caps)
2081 die("can't get process caps");
Jorge Lucangeli Obesa6eb21a2017-04-20 10:44:00 -04002082 if (cap_clear(caps))
2083 die("can't clear caps");
2084
2085 for (i = 0; i < ncaps && i <= last_valid_cap; ++i) {
Kees Cook323878a2013-02-05 15:35:24 -08002086 /* Keep CAP_SETPCAP for dropping bounding set bits. */
Kees Cooke5609ac2013-02-06 14:12:41 -08002087 if (i != CAP_SETPCAP && !(j->caps & (one << i)))
Elly Jonese1749eb2011-10-07 13:54:59 -04002088 continue;
Kees Cook323878a2013-02-05 15:35:24 -08002089 flag[0] = i;
2090 if (cap_set_flag(caps, CAP_EFFECTIVE, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04002091 die("can't add effective cap");
Kees Cook323878a2013-02-05 15:35:24 -08002092 if (cap_set_flag(caps, CAP_PERMITTED, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04002093 die("can't add permitted cap");
Kees Cook323878a2013-02-05 15:35:24 -08002094 if (cap_set_flag(caps, CAP_INHERITABLE, 1, flag, CAP_SET))
Elly Jonese1749eb2011-10-07 13:54:59 -04002095 die("can't add inheritable cap");
2096 }
2097 if (cap_set_proc(caps))
Kees Cook323878a2013-02-05 15:35:24 -08002098 die("can't apply initial cleaned capset");
2099
2100 /*
Jorge Lucangeli Obes54234212018-04-26 11:52:15 -04002101 * Instead of dropping the bounding set first, do it here in case
Kees Cook323878a2013-02-05 15:35:24 -08002102 * the caller had a more permissive bounding set which could
2103 * have been used above to raise a capability that wasn't already
2104 * present. This requires CAP_SETPCAP, so we raised/kept it above.
Jorge Lucangeli Obes54234212018-04-26 11:52:15 -04002105 *
2106 * However, if we're asked to skip setting *and* locking the
2107 * SECURE_NOROOT securebit, also skip dropping the bounding set.
2108 * If the caller wants to regain all capabilities when executing a
2109 * set-user-ID-root program, allow them to do so. The default behavior
2110 * (i.e. the behavior without |securebits_skip_mask| set) will still put
2111 * the jailed process tree in a capabilities-only environment.
2112 *
2113 * We check the negated skip mask for SECURE_NOROOT and
2114 * SECURE_NOROOT_LOCKED. If the bits are set in the negated mask they
2115 * will *not* be skipped in lock_securebits(), and therefore we should
2116 * drop the bounding set.
Kees Cook323878a2013-02-05 15:35:24 -08002117 */
Jorge Lucangeli Obes54234212018-04-26 11:52:15 -04002118 if (secure_noroot_set_and_locked(~j->securebits_skip_mask)) {
2119 drop_capbset(j->caps, last_valid_cap);
2120 } else {
2121 warn("SECURE_NOROOT not set, not dropping bounding set");
2122 }
Kees Cook323878a2013-02-05 15:35:24 -08002123
2124 /* If CAP_SETPCAP wasn't specifically requested, now we remove it. */
Kees Cooke5609ac2013-02-06 14:12:41 -08002125 if ((j->caps & (one << CAP_SETPCAP)) == 0) {
Kees Cook323878a2013-02-05 15:35:24 -08002126 flag[0] = CAP_SETPCAP;
2127 if (cap_set_flag(caps, CAP_EFFECTIVE, 1, flag, CAP_CLEAR))
2128 die("can't clear effective cap");
2129 if (cap_set_flag(caps, CAP_PERMITTED, 1, flag, CAP_CLEAR))
2130 die("can't clear permitted cap");
2131 if (cap_set_flag(caps, CAP_INHERITABLE, 1, flag, CAP_CLEAR))
2132 die("can't clear inheritable cap");
2133 }
2134
2135 if (cap_set_proc(caps))
2136 die("can't apply final cleaned capset");
2137
Jorge Lucangeli Obesa6eb21a2017-04-20 10:44:00 -04002138 /*
2139 * If ambient capabilities are supported, clear all capabilities first,
2140 * then raise the requested ones.
2141 */
2142 if (j->flags.set_ambient_caps) {
2143 if (!cap_ambient_supported()) {
2144 pdie("ambient capabilities not supported");
2145 }
Jorge Lucangeli Obesf6058c32017-04-26 10:26:59 -04002146 if (prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_CLEAR_ALL, 0, 0, 0) !=
2147 0) {
Jorge Lucangeli Obesa6eb21a2017-04-20 10:44:00 -04002148 pdie("can't clear ambient capabilities");
2149 }
2150
2151 for (i = 0; i < ncaps && i <= last_valid_cap; ++i) {
2152 if (!(j->caps & (one << i)))
2153 continue;
2154
2155 if (prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_RAISE, i, 0,
2156 0) != 0) {
2157 pdie("prctl(PR_CAP_AMBIENT, "
2158 "PR_CAP_AMBIENT_RAISE, %u) failed",
2159 i);
2160 }
2161 }
2162 }
2163
Kees Cook323878a2013-02-05 15:35:24 -08002164 cap_free(caps);
Elly Jonescd7a9042011-07-22 13:56:51 -04002165}
2166
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04002167static void set_seccomp_filter(const struct minijail *j)
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07002168{
2169 /*
2170 * Set no_new_privs. See </kernel/seccomp.c> and </kernel/sys.c>
2171 * in the kernel source tree for an explanation of the parameters.
2172 */
2173 if (j->flags.no_new_privs) {
2174 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0))
2175 pdie("prctl(PR_SET_NO_NEW_PRIVS)");
2176 }
2177
2178 /*
Jorge Lucangeli Obes2413f372016-04-06 18:43:10 -07002179 * Code running with ASan
2180 * (https://github.com/google/sanitizers/wiki/AddressSanitizer)
2181 * will make system calls not included in the syscall filter policy,
2182 * which will likely crash the program. Skip setting seccomp filter in
2183 * that case.
2184 * 'running_with_asan()' has no inputs and is completely defined at
2185 * build time, so this cannot be used by an attacker to skip setting
2186 * seccomp filter.
2187 */
Evgenii Stepanov3d98f3c2018-08-23 15:06:50 -07002188 if (j->flags.seccomp_filter && running_with_asan()) {
Evgenii Stepanov825828c2018-07-27 11:57:07 -07002189 warn("running with (HW)ASan, not setting seccomp filter");
Jorge Lucangeli Obes2413f372016-04-06 18:43:10 -07002190 return;
2191 }
2192
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -04002193 if (j->flags.seccomp_filter) {
Adrian Ratiu8ef61252021-06-08 03:46:24 +03002194 if (seccomp_is_logging_allowed(j)) {
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -04002195 warn("logging seccomp filter failures");
Jorge Lucangeli Obes32201f82019-06-12 14:45:06 -04002196 if (!seccomp_ret_log_available()) {
2197 /*
2198 * If SECCOMP_RET_LOG is not available,
2199 * install the SIGSYS handler first.
2200 */
2201 if (install_sigsys_handler())
2202 pdie(
2203 "failed to install SIGSYS handler");
2204 }
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -04002205 } else if (j->flags.seccomp_filter_tsync) {
2206 /*
2207 * If setting thread sync,
2208 * reset the SIGSYS signal handler so that
2209 * the entire thread group is killed.
2210 */
2211 if (signal(SIGSYS, SIG_DFL) == SIG_ERR)
2212 pdie("failed to reset SIGSYS disposition");
Jorge Lucangeli Obes713f6fb2016-10-03 13:03:25 -04002213 }
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07002214 }
2215
2216 /*
2217 * Install the syscall filter.
2218 */
2219 if (j->flags.seccomp_filter) {
Anand K Mistry31adc6c2020-11-26 11:39:46 +11002220 if (j->flags.seccomp_filter_tsync ||
2221 j->flags.seccomp_filter_allow_speculation) {
2222 int filter_flags =
2223 (j->flags.seccomp_filter_tsync
2224 ? SECCOMP_FILTER_FLAG_TSYNC
2225 : 0) |
2226 (j->flags.seccomp_filter_allow_speculation
2227 ? SECCOMP_FILTER_FLAG_SPEC_ALLOW
2228 : 0);
2229 if (sys_seccomp(SECCOMP_SET_MODE_FILTER, filter_flags,
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -04002230 j->filter_prog)) {
2231 pdie("seccomp(tsync) failed");
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07002232 }
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -04002233 } else {
2234 if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER,
2235 j->filter_prog)) {
2236 pdie("prctl(seccomp_filter) failed");
2237 }
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07002238 }
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07002239 }
2240}
2241
Jorge Lucangeli Obesdba62092017-05-18 17:10:23 -04002242static pid_t forward_pid = -1;
2243
Allen Webb7ae41c22021-09-16 10:23:37 -05002244static void forward_signal(int sig, siginfo_t *siginfo attribute_unused,
Mike Frysingerd9ef07c2018-05-30 16:51:36 -04002245 void *void_context attribute_unused)
Jorge Lucangeli Obesdba62092017-05-18 17:10:23 -04002246{
2247 if (forward_pid != -1) {
Mike Frysinger33d051a2018-05-30 16:41:10 -04002248 kill(forward_pid, sig);
Jorge Lucangeli Obesdba62092017-05-18 17:10:23 -04002249 }
2250}
2251
2252static void install_signal_handlers(void)
2253{
2254 struct sigaction act;
2255
2256 memset(&act, 0, sizeof(act));
2257 act.sa_sigaction = &forward_signal;
2258 act.sa_flags = SA_SIGINFO | SA_RESTART;
2259
2260 /* Handle all signals, except SIGCHLD. */
Mike Frysinger33d051a2018-05-30 16:41:10 -04002261 for (int sig = 1; sig < NSIG; sig++) {
Jorge Lucangeli Obesdba62092017-05-18 17:10:23 -04002262 /*
2263 * We don't care if we get EINVAL: that just means that we
2264 * can't handle this signal, so let's skip it and continue.
2265 */
Mike Frysinger33d051a2018-05-30 16:41:10 -04002266 sigaction(sig, &act, NULL);
Jorge Lucangeli Obesdba62092017-05-18 17:10:23 -04002267 }
2268 /* Reset SIGCHLD's handler. */
2269 signal(SIGCHLD, SIG_DFL);
2270
2271 /* Handle real-time signals. */
Mike Frysinger33d051a2018-05-30 16:41:10 -04002272 for (int sig = SIGRTMIN; sig <= SIGRTMAX; sig++) {
2273 sigaction(sig, &act, NULL);
Jorge Lucangeli Obesdba62092017-05-18 17:10:23 -04002274 }
2275}
2276
Luis Hector Chaveze0ba4ce2017-07-20 15:12:22 -07002277static const char *lookup_hook_name(minijail_hook_event_t event)
2278{
2279 switch (event) {
2280 case MINIJAIL_HOOK_EVENT_PRE_DROP_CAPS:
2281 return "pre-drop-caps";
2282 case MINIJAIL_HOOK_EVENT_PRE_EXECVE:
2283 return "pre-execve";
Luis Hector Chavez64730af2017-09-13 13:18:59 -07002284 case MINIJAIL_HOOK_EVENT_PRE_CHROOT:
2285 return "pre-chroot";
Luis Hector Chaveze0ba4ce2017-07-20 15:12:22 -07002286 case MINIJAIL_HOOK_EVENT_MAX:
2287 /*
2288 * Adding this in favor of a default case to force the
2289 * compiler to error out if a new enum value is added.
2290 */
2291 break;
2292 }
2293 return "unknown";
2294}
2295
2296static void run_hooks_or_die(const struct minijail *j,
2297 minijail_hook_event_t event)
2298{
2299 int rc;
2300 int hook_index = 0;
2301 for (struct hook *c = j->hooks_head; c; c = c->next) {
2302 if (c->event != event)
2303 continue;
2304 rc = c->hook(c->payload);
2305 if (rc != 0) {
2306 errno = -rc;
2307 pdie("%s hook (index %d) failed",
2308 lookup_hook_name(event), hook_index);
2309 }
2310 /* Only increase the index within the same hook event type. */
2311 ++hook_index;
2312 }
2313}
2314
Will Drewry6ac91122011-10-21 16:38:58 -05002315void API minijail_enter(const struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04002316{
Dylan Reidf682d472015-09-17 21:39:07 -07002317 /*
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08002318 * If we're dropping caps, get the last valid cap from /proc now,
2319 * since /proc can be unmounted before drop_caps() is called.
Dylan Reidf682d472015-09-17 21:39:07 -07002320 */
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08002321 unsigned int last_valid_cap = 0;
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08002322 if (j->flags.capbset_drop || j->flags.use_caps)
Jorge Lucangeli Obes43e29b32015-12-08 21:07:14 -08002323 last_valid_cap = get_last_valid_cap();
Dylan Reidf682d472015-09-17 21:39:07 -07002324
Elly Jonese1749eb2011-10-07 13:54:59 -04002325 if (j->flags.pids)
2326 die("tried to enter a pid-namespaced jail;"
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -07002327 " try minijail_run()?");
Elly Jonescd7a9042011-07-22 13:56:51 -04002328
Lutz Justen13807cb2017-01-03 17:11:55 +01002329 if (j->flags.inherit_suppl_gids && !j->user)
Jorge Lucangeli Obes34543192017-01-11 16:07:57 -05002330 die("cannot inherit supplementary groups without setting a "
2331 "username");
Elly Jonescd7a9042011-07-22 13:56:51 -04002332
Elly Jonesdd3e8512012-01-23 15:13:38 -05002333 /*
2334 * We can't recover from failures if we've dropped privileges partially,
Elly Jonese1749eb2011-10-07 13:54:59 -04002335 * so we don't even try. If any of our operations fail, we abort() the
2336 * entire process.
2337 */
Mike Frysinger902a4492018-12-27 05:22:56 -05002338 if (j->flags.enter_vfs) {
2339 if (setns(j->mountns_fd, CLONE_NEWNS))
2340 pdie("setns(CLONE_NEWNS) failed");
2341 close(j->mountns_fd);
2342 }
Jorge Lucangeli Obes1563b5b2014-07-10 07:01:53 -07002343
Jorge Lucangeli Obes805be392015-10-12 15:55:59 -07002344 if (j->flags.vfs) {
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08002345 if (unshare(CLONE_NEWNS))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05002346 pdie("unshare(CLONE_NEWNS) failed");
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08002347 /*
Mike Frysinger785b1c32018-02-23 15:47:24 -05002348 * By default, remount all filesystems as private, unless
Jorge Lucangeli Obes93418062019-09-27 10:59:45 -04002349 * - Passed a specific remount mode, in which case remount with
2350 * that,
2351 * - Asked not to remount at all, in which case skip the
2352 * mount(2) call.
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08002353 * https://www.kernel.org/doc/Documentation/filesystems/sharedsubtree.txt
2354 */
Mike Frysinger785b1c32018-02-23 15:47:24 -05002355 if (j->remount_mode) {
Jorge Lucangeli Obes93418062019-09-27 10:59:45 -04002356 if (mount(NULL, "/", NULL, MS_REC | j->remount_mode,
2357 NULL))
Jorge Lucangeli Obes9e1ac372020-01-23 14:36:50 -05002358 pdie("mount(NULL, /, NULL, "
2359 "MS_REC | j->remount_mode, NULL) failed");
Nicole Anderson-Au835f7172021-01-13 21:18:13 +00002360
2361 struct minijail_remount *temp = j->remounts_head;
2362 while (temp) {
Nicole Anderson-Aue119bbb2021-02-04 23:12:12 +00002363 if (temp->remount_mode < j->remount_mode)
2364 die("cannot remount %s as stricter "
2365 "than the root dir",
2366 temp->mount_name);
Nicole Anderson-Au835f7172021-01-13 21:18:13 +00002367 if (mount(NULL, temp->mount_name, NULL,
2368 MS_REC | temp->remount_mode, NULL))
2369 pdie("mount(NULL, %s, NULL, "
Allen Webb7ae41c22021-09-16 10:23:37 -05002370 "MS_REC | temp->remount_mode, "
2371 "NULL) failed",
2372 temp->mount_name);
Nicole Anderson-Au835f7172021-01-13 21:18:13 +00002373 temp = temp->next;
2374 }
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08002375 }
Jorge Lucangeli Obesf7a38682015-12-04 15:43:30 -08002376 }
Elly Fong-Jones6c086302013-03-20 17:15:28 -04002377
Dylan Reidf7942472015-11-18 17:55:26 -08002378 if (j->flags.ipc && unshare(CLONE_NEWIPC)) {
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05002379 pdie("unshare(CLONE_NEWIPC) failed");
Dylan Reidf7942472015-11-18 17:55:26 -08002380 }
2381
Mike Frysingerb9a7b162017-05-30 15:25:49 -04002382 if (j->flags.uts) {
2383 if (unshare(CLONE_NEWUTS))
2384 pdie("unshare(CLONE_NEWUTS) failed");
2385
Allen Webb7ae41c22021-09-16 10:23:37 -05002386 if (j->hostname &&
2387 sethostname(j->hostname, strlen(j->hostname)))
Mike Frysingerb9a7b162017-05-30 15:25:49 -04002388 pdie("sethostname(%s) failed", j->hostname);
2389 }
2390
Dylan Reid1102f5a2015-09-15 11:52:20 -07002391 if (j->flags.enter_net) {
2392 if (setns(j->netns_fd, CLONE_NEWNET))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05002393 pdie("setns(CLONE_NEWNET) failed");
Mike Frysinger902a4492018-12-27 05:22:56 -05002394 close(j->netns_fd);
Mike Frysinger7559dfe2016-11-15 18:58:39 -05002395 } else if (j->flags.net) {
2396 if (unshare(CLONE_NEWNET))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05002397 pdie("unshare(CLONE_NEWNET) failed");
2398 config_net_loopback();
Dylan Reid1102f5a2015-09-15 11:52:20 -07002399 }
Elly Jonescd7a9042011-07-22 13:56:51 -04002400
Dylan Reid4cbc2a52016-06-17 19:06:07 -07002401 if (j->flags.ns_cgroups && unshare(CLONE_NEWCGROUP))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05002402 pdie("unshare(CLONE_NEWCGROUP) failed");
Dylan Reid4cbc2a52016-06-17 19:06:07 -07002403
Chirantan Ekbote866bb3a2017-02-07 12:26:42 -08002404 if (j->flags.new_session_keyring) {
2405 if (syscall(SYS_keyctl, KEYCTL_JOIN_SESSION_KEYRING, NULL) < 0)
2406 pdie("keyctl(KEYCTL_JOIN_SESSION_KEYRING) failed");
2407 }
2408
Mike Frysingerac08a682017-10-10 02:04:50 -04002409 /* We have to process all the mounts before we chroot/pivot_root. */
2410 process_mounts_or_die(j);
Elly Jones51a5b6c2011-10-12 19:09:26 -04002411
Mike Frysingerac08a682017-10-10 02:04:50 -04002412 if (j->flags.chroot && enter_chroot(j))
Mike Frysinger33ffef32017-01-13 19:53:19 -05002413 pdie("chroot");
Mike Frysinger33ffef32017-01-13 19:53:19 -05002414
Mike Frysingerac08a682017-10-10 02:04:50 -04002415 if (j->flags.pivot_root && enter_pivot_root(j))
Yu-Hsi Chiang64d65a72015-08-13 17:43:27 +08002416 pdie("pivot_root");
2417
Martin Pelikánab9eb442017-01-25 11:53:58 +11002418 if (j->flags.mount_tmp && mount_tmp(j))
Lee Campbell11af0622014-05-22 12:36:04 -07002419 pdie("mount_tmp");
2420
Dylan Reid791f5772015-09-14 20:02:42 -07002421 if (j->flags.remount_proc_ro && remount_proc_readonly(j))
Elly Jonese1749eb2011-10-07 13:54:59 -04002422 pdie("remount");
Elly Jonescd7a9042011-07-22 13:56:51 -04002423
Luis Hector Chaveze0ba4ce2017-07-20 15:12:22 -07002424 run_hooks_or_die(j, MINIJAIL_HOOK_EVENT_PRE_DROP_CAPS);
2425
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08002426 /*
2427 * If we're only dropping capabilities from the bounding set, but not
2428 * from the thread's (permitted|inheritable|effective) sets, do it now.
2429 */
2430 if (j->flags.capbset_drop) {
2431 drop_capbset(j->cap_bset, last_valid_cap);
2432 }
2433
Luis Hector Chavez89cbc322018-08-06 11:31:15 -07002434 /*
Mattias Nissler48b5ff12018-10-11 15:31:41 +02002435 * POSIX capabilities are a bit tricky. We must set SECBIT_KEEP_CAPS
2436 * before drop_ugid() below as the latter would otherwise drop all
2437 * capabilities.
Luis Hector Chavez89cbc322018-08-06 11:31:15 -07002438 */
Jorge Lucangeli Obesf9fcdbe2016-02-19 15:04:09 -08002439 if (j->flags.use_caps) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05002440 /*
Mattias Nissler48b5ff12018-10-11 15:31:41 +02002441 * When using ambient capabilities, CAP_SET{GID,UID} can be
2442 * inherited across execve(2), so SECBIT_KEEP_CAPS is not
2443 * strictly needed.
Elly Jonese1749eb2011-10-07 13:54:59 -04002444 */
Mattias Nissler48b5ff12018-10-11 15:31:41 +02002445 bool require_keep_caps = !j->flags.set_ambient_caps;
2446 if (lock_securebits(j->securebits_skip_mask,
2447 require_keep_caps) < 0) {
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -04002448 pdie("locking securebits failed");
Jorge Lucangeli Obesf783b522016-03-14 14:34:10 -07002449 }
Elly Jonese1749eb2011-10-07 13:54:59 -04002450 }
Elly Jonescd7a9042011-07-22 13:56:51 -04002451
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07002452 if (j->flags.no_new_privs) {
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08002453 /*
2454 * If we're setting no_new_privs, we can drop privileges
2455 * before setting seccomp filter. This way filter policies
2456 * don't need to allow privilege-dropping syscalls.
2457 */
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07002458 drop_ugid(j);
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08002459 drop_caps(j, last_valid_cap);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07002460 set_seccomp_filter(j);
Elly Jonese1749eb2011-10-07 13:54:59 -04002461 } else {
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07002462 /*
2463 * If we're not setting no_new_privs,
2464 * we need to set seccomp filter *before* dropping privileges.
2465 * WARNING: this means that filter policies *must* allow
2466 * setgroups()/setresgid()/setresuid() for dropping root and
2467 * capget()/capset()/prctl() for dropping caps.
2468 */
2469 set_seccomp_filter(j);
Jorge Lucangeli Obes6201cf52012-08-23 11:42:27 -07002470 drop_ugid(j);
Jorge Lucangeli Obesd8c82052016-02-25 16:00:32 -08002471 drop_caps(j, last_valid_cap);
Elly Jonese1749eb2011-10-07 13:54:59 -04002472 }
Elly Jonescd7a9042011-07-22 13:56:51 -04002473
Elly Jonesdd3e8512012-01-23 15:13:38 -05002474 /*
Andrew Brestickereac28942015-11-11 16:04:46 -08002475 * Select the specified alternate syscall table. The table must not
2476 * block prctl(2) if we're using seccomp as well.
2477 */
2478 if (j->flags.alt_syscall) {
2479 if (prctl(PR_ALT_SYSCALL, 1, j->alt_syscall_table))
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05002480 pdie("prctl(PR_ALT_SYSCALL) failed");
Andrew Brestickereac28942015-11-11 16:04:46 -08002481 }
2482
2483 /*
Elly Jonesdd3e8512012-01-23 15:13:38 -05002484 * seccomp has to come last since it cuts off all the other
Elly Jonese1749eb2011-10-07 13:54:59 -04002485 * privilege-dropping syscalls :)
2486 */
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07002487 if (j->flags.seccomp && prctl(PR_SET_SECCOMP, 1)) {
Jorge Lucangeli Obes7b2e29c2016-08-04 12:21:03 -04002488 if ((errno == EINVAL) && seccomp_can_softfail()) {
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07002489 warn("seccomp not supported");
2490 return;
2491 }
Jorge Lucangeli Obes457a5e32016-11-23 15:18:56 -05002492 pdie("prctl(PR_SET_SECCOMP) failed");
Utkarsh Sanghi0ef8a662014-08-18 15:50:11 -07002493 }
Elly Jonescd7a9042011-07-22 13:56:51 -04002494}
2495
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04002496/* TODO(wad): will visibility affect this variable? */
Elly Jonescd7a9042011-07-22 13:56:51 -04002497static int init_exitstatus = 0;
2498
Mike Frysinger0a27ab02020-09-04 16:18:12 -04002499static void init_term(int sig attribute_unused)
Elly Jonese1749eb2011-10-07 13:54:59 -04002500{
2501 _exit(init_exitstatus);
Elly Jonescd7a9042011-07-22 13:56:51 -04002502}
2503
Mike Frysinger0a27ab02020-09-04 16:18:12 -04002504static void init(pid_t rootpid)
Elly Jonese1749eb2011-10-07 13:54:59 -04002505{
2506 pid_t pid;
2507 int status;
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04002508 /* So that we exit with the right status. */
Elly Jonese1749eb2011-10-07 13:54:59 -04002509 signal(SIGTERM, init_term);
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04002510 /* TODO(wad): self jail with seccomp filters here. */
Elly Jonese1749eb2011-10-07 13:54:59 -04002511 while ((pid = wait(&status)) > 0) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05002512 /*
2513 * This loop will only end when either there are no processes
Elly Jonese1749eb2011-10-07 13:54:59 -04002514 * left inside our pid namespace or we get a signal.
2515 */
2516 if (pid == rootpid)
2517 init_exitstatus = status;
2518 }
2519 if (!WIFEXITED(init_exitstatus))
2520 _exit(MINIJAIL_ERR_INIT);
2521 _exit(WEXITSTATUS(init_exitstatus));
Elly Jonescd7a9042011-07-22 13:56:51 -04002522}
2523
Will Drewry6ac91122011-10-21 16:38:58 -05002524int API minijail_from_fd(int fd, struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04002525{
2526 size_t sz = 0;
2527 size_t bytes = read(fd, &sz, sizeof(sz));
Mike Frysingere933fce2021-10-02 01:28:06 -04002528 attribute_cleanup_str char *buf = NULL;
Elly Jonese1749eb2011-10-07 13:54:59 -04002529 int r;
2530 if (sizeof(sz) != bytes)
2531 return -EINVAL;
Allen Webb7ae41c22021-09-16 10:23:37 -05002532 if (sz > USHRT_MAX) /* arbitrary check */
Elly Jonese1749eb2011-10-07 13:54:59 -04002533 return -E2BIG;
2534 buf = malloc(sz);
2535 if (!buf)
2536 return -ENOMEM;
2537 bytes = read(fd, buf, sz);
Mike Frysingere933fce2021-10-02 01:28:06 -04002538 if (bytes != sz)
Elly Jonese1749eb2011-10-07 13:54:59 -04002539 return -EINVAL;
Elly Jonese1749eb2011-10-07 13:54:59 -04002540 r = minijail_unmarshal(j, buf, sz);
Elly Jonese1749eb2011-10-07 13:54:59 -04002541 return r;
Will Drewry2f54b6a2011-09-16 13:45:31 -05002542}
2543
Will Drewry6ac91122011-10-21 16:38:58 -05002544int API minijail_to_fd(struct minijail *j, int fd)
Elly Jonese1749eb2011-10-07 13:54:59 -04002545{
Elly Jonese1749eb2011-10-07 13:54:59 -04002546 size_t sz = minijail_size(j);
Elly Jonese1749eb2011-10-07 13:54:59 -04002547 if (!sz)
2548 return -EINVAL;
François Degros664eba72019-11-05 13:18:24 +11002549
Mike Frysingere933fce2021-10-02 01:28:06 -04002550 attribute_cleanup_str char *buf = malloc(sz);
François Degros664eba72019-11-05 13:18:24 +11002551 if (!buf)
2552 return -ENOMEM;
2553
2554 int err = minijail_marshal(j, buf, sz);
2555 if (err)
Mike Frysingere933fce2021-10-02 01:28:06 -04002556 return err;
François Degros664eba72019-11-05 13:18:24 +11002557
Elly Jonese1749eb2011-10-07 13:54:59 -04002558 /* Sends [size][minijail]. */
François Degros664eba72019-11-05 13:18:24 +11002559 err = write_exactly(fd, &sz, sizeof(sz));
2560 if (err)
Mike Frysingere933fce2021-10-02 01:28:06 -04002561 return err;
François Degros664eba72019-11-05 13:18:24 +11002562
Mike Frysingere933fce2021-10-02 01:28:06 -04002563 return write_exactly(fd, buf, sz);
Will Drewry2f54b6a2011-09-16 13:45:31 -05002564}
Elly Jonescd7a9042011-07-22 13:56:51 -04002565
Dylan Reid6dc224f2021-05-12 17:06:25 -07002566int API minijail_copy_jail(const struct minijail *from, struct minijail *out)
2567{
2568 size_t sz = minijail_size(from);
2569 if (!sz)
2570 return -EINVAL;
2571
Mike Frysingere933fce2021-10-02 01:28:06 -04002572 attribute_cleanup_str char *buf = malloc(sz);
Dylan Reid6dc224f2021-05-12 17:06:25 -07002573 if (!buf)
2574 return -ENOMEM;
2575
2576 int err = minijail_marshal(from, buf, sz);
2577 if (err)
Mike Frysingere933fce2021-10-02 01:28:06 -04002578 return err;
Dylan Reid6dc224f2021-05-12 17:06:25 -07002579
Mike Frysingere933fce2021-10-02 01:28:06 -04002580 return minijail_unmarshal(out, buf, sz);
Dylan Reid6dc224f2021-05-12 17:06:25 -07002581}
2582
Luis Hector Chavez9acba452018-10-11 10:13:25 -07002583static int setup_preload(const struct minijail *j attribute_unused,
Mattias Nisslerb35f2c12020-02-07 13:37:36 +01002584 char ***child_env attribute_unused)
Elly Jonese1749eb2011-10-07 13:54:59 -04002585{
Daniel Erat5b7a3182015-08-19 16:06:22 -06002586#if defined(__ANDROID__)
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -04002587 /* Don't use LDPRELOAD on Android. */
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -07002588 return 0;
2589#else
Luis Hector Chavez9acba452018-10-11 10:13:25 -07002590 const char *preload_path = j->preload_path ?: PRELOADPATH;
2591 char *newenv = NULL;
Luis Hector Chavezd1d24d22019-02-11 17:59:21 -08002592 int ret = 0;
Stéphane Lesimplef65da3a2022-01-11 11:44:47 +01002593 const char *oldenv = minijail_getenv(*child_env, kLdPreloadEnvVar);
Luis Hector Chavez9acba452018-10-11 10:13:25 -07002594
2595 if (!oldenv)
2596 oldenv = "";
Elly Jonescd7a9042011-07-22 13:56:51 -04002597
Elly Jonese1749eb2011-10-07 13:54:59 -04002598 /* Only insert a separating space if we have something to separate... */
Luis Hector Chavezd1d24d22019-02-11 17:59:21 -08002599 if (asprintf(&newenv, "%s%s%s", oldenv, oldenv[0] != '\0' ? " " : "",
2600 preload_path) < 0) {
2601 return -1;
Luis Hector Chavez9acba452018-10-11 10:13:25 -07002602 }
Elly Jonescd7a9042011-07-22 13:56:51 -04002603
Mattias Nisslerb35f2c12020-02-07 13:37:36 +01002604 ret = minijail_setenv(child_env, kLdPreloadEnvVar, newenv, 1);
Luis Hector Chavezd1d24d22019-02-11 17:59:21 -08002605 free(newenv);
2606 return ret;
Jorge Lucangeli Obesa21c8fc2015-07-15 16:22:34 -07002607#endif
Elly Jonescd7a9042011-07-22 13:56:51 -04002608}
2609
Allen Webb77383c72021-10-15 10:34:24 -07002610/*
2611 * This is for logging purposes and does not change the enforced seccomp
2612 * filter.
2613 */
2614static int setup_seccomp_policy_path(const struct minijail *j,
2615 char ***child_env)
2616{
2617 return minijail_setenv(child_env, kSeccompPolicyPathEnvVar,
2618 j->seccomp_policy_path ? j->seccomp_policy_path
2619 : "NO-LABEL",
2620 1 /* overwrite */);
2621}
2622
Mattias Nisslerb35f2c12020-02-07 13:37:36 +01002623static int setup_pipe(char ***child_env, int fds[2])
Elly Jonese1749eb2011-10-07 13:54:59 -04002624{
2625 int r = pipe(fds);
2626 char fd_buf[11];
2627 if (r)
2628 return r;
2629 r = snprintf(fd_buf, sizeof(fd_buf), "%d", fds[0]);
2630 if (r <= 0)
2631 return -EINVAL;
Mattias Nisslerb35f2c12020-02-07 13:37:36 +01002632 return minijail_setenv(child_env, kFdEnvVar, fd_buf, 1);
Will Drewryf89aef52011-09-16 16:48:57 -05002633}
2634
Jorge Lucangeli Obes0b208772017-04-19 14:15:46 -04002635static int close_open_fds(int *inheritable_fds, size_t size)
Luis Hector Chavez43ff0802016-10-07 12:21:07 -07002636{
2637 const char *kFdPath = "/proc/self/fd";
2638
2639 DIR *d = opendir(kFdPath);
2640 struct dirent *dir_entry;
2641
2642 if (d == NULL)
2643 return -1;
2644 int dir_fd = dirfd(d);
2645 while ((dir_entry = readdir(d)) != NULL) {
2646 size_t i;
2647 char *end;
2648 bool should_close = true;
2649 const int fd = strtol(dir_entry->d_name, &end, 10);
2650
2651 if ((*end) != '\0') {
2652 continue;
2653 }
2654 /*
2655 * We might have set up some pipes that we want to share with
2656 * the parent process, and should not be closed.
2657 */
2658 for (i = 0; i < size; ++i) {
2659 if (fd == inheritable_fds[i]) {
2660 should_close = false;
2661 break;
2662 }
2663 }
2664 /* Also avoid closing the directory fd. */
2665 if (should_close && fd != dir_fd)
2666 close(fd);
2667 }
2668 closedir(d);
2669 return 0;
2670}
2671
Allen Webbc7182682021-04-16 09:44:53 -05002672/* Return true if the specified file descriptor is already open. */
2673static int fd_is_open(int fd)
2674{
2675 return fcntl(fd, F_GETFD) != -1 || errno != EBADF;
2676}
2677
2678static_assert(FD_SETSIZE >= MAX_PRESERVED_FDS * 2 - 1,
2679 "If true, ensure_no_fd_conflict will always find an unused fd.");
2680
Allen Webb66417bd2021-07-16 15:07:24 -07002681/* If parent_fd will be used by a child fd, move it to an unused fd. */
Allen Webb7ae41c22021-09-16 10:23:37 -05002682static int ensure_no_fd_conflict(const fd_set *child_fds, int child_fd,
2683 int *parent_fd)
Allen Webbc7182682021-04-16 09:44:53 -05002684{
Allen Webb66417bd2021-07-16 15:07:24 -07002685 if (!FD_ISSET(*parent_fd, child_fds)) {
Allen Webbc7182682021-04-16 09:44:53 -05002686 return 0;
2687 }
2688
2689 /*
2690 * If no other parent_fd matches the child_fd then use it instead of a
2691 * temporary.
2692 */
Allen Webb66417bd2021-07-16 15:07:24 -07002693 int fd = child_fd;
2694 if (fd == -1 || fd_is_open(fd)) {
Allen Webbc7182682021-04-16 09:44:53 -05002695 fd = FD_SETSIZE - 1;
2696 while (FD_ISSET(fd, child_fds) || fd_is_open(fd)) {
2697 --fd;
2698 if (fd < 0) {
2699 die("failed to find an unused fd");
2700 }
2701 }
2702 }
2703
Allen Webb66417bd2021-07-16 15:07:24 -07002704 int ret = dup2(*parent_fd, fd);
Allen Webbc7182682021-04-16 09:44:53 -05002705 /*
2706 * warn() opens a file descriptor so it needs to happen after dup2 to
2707 * avoid unintended side effects. This can be avoided by reordering the
2708 * mapping requests so that the source fds with overlap are mapped
2709 * first (unless there are cycles).
2710 */
Allen Webb66417bd2021-07-16 15:07:24 -07002711 warn("mapped fd overlap: moving %d to %d", *parent_fd, fd);
Allen Webbc7182682021-04-16 09:44:53 -05002712 if (ret == -1) {
2713 return -1;
2714 }
2715
Allen Webb66417bd2021-07-16 15:07:24 -07002716 *parent_fd = fd;
Allen Webbc7182682021-04-16 09:44:53 -05002717 return 0;
2718}
2719
Allen Webb66417bd2021-07-16 15:07:24 -07002720/*
Allen Webb05af7762021-07-16 12:56:44 -05002721 * Populate child_fds_out with the set of file descriptors that will be replaced
2722 * by redirect_fds().
2723 *
2724 * NOTE: This creates temporaries for parent file descriptors that would
2725 * otherwise be overwritten during redirect_fds().
2726 */
Allen Webb7ae41c22021-09-16 10:23:37 -05002727static int get_child_fds(struct minijail *j, fd_set *child_fds_out)
2728{
Allen Webb05af7762021-07-16 12:56:44 -05002729 /* Relocate parent_fds that would be replaced by a child_fd. */
2730 for (size_t i = 0; i < j->preserved_fd_count; i++) {
2731 int child_fd = j->preserved_fds[i].child_fd;
2732 if (FD_ISSET(child_fd, child_fds_out)) {
2733 die("fd %d is mapped more than once", child_fd);
2734 }
2735
2736 int *parent_fd = &j->preserved_fds[i].parent_fd;
Allen Webb7ae41c22021-09-16 10:23:37 -05002737 if (ensure_no_fd_conflict(child_fds_out, child_fd, parent_fd) ==
2738 -1) {
Allen Webb05af7762021-07-16 12:56:44 -05002739 return -1;
2740 }
2741
2742 FD_SET(child_fd, child_fds_out);
2743 }
2744 return 0;
2745}
2746
2747/*
Allen Webb66417bd2021-07-16 15:07:24 -07002748 * Structure holding resources and state created when running a minijail.
2749 */
2750struct minijail_run_state {
2751 pid_t child_pid;
2752 int pipe_fds[2];
2753 int stdin_fds[2];
2754 int stdout_fds[2];
2755 int stderr_fds[2];
2756 int child_sync_pipe_fds[2];
2757 char **child_env;
2758};
2759
Allen Webb05af7762021-07-16 12:56:44 -05002760/*
2761 * Move pipe_fds if they conflict with a child_fd.
2762 */
2763static int avoid_pipe_conflicts(struct minijail_run_state *state,
Allen Webb7ae41c22021-09-16 10:23:37 -05002764 fd_set *child_fds_out)
2765{
Allen Webb66417bd2021-07-16 15:07:24 -07002766 int *pipe_fds[] = {
Allen Webb7ae41c22021-09-16 10:23:37 -05002767 state->pipe_fds, state->child_sync_pipe_fds, state->stdin_fds,
2768 state->stdout_fds, state->stderr_fds,
Allen Webb66417bd2021-07-16 15:07:24 -07002769 };
2770 for (size_t i = 0; i < ARRAY_SIZE(pipe_fds); ++i) {
2771 if (pipe_fds[i][0] != -1 &&
Allen Webb7ae41c22021-09-16 10:23:37 -05002772 ensure_no_fd_conflict(child_fds_out, -1, &pipe_fds[i][0]) ==
2773 -1) {
Allen Webb66417bd2021-07-16 15:07:24 -07002774 return -1;
2775 }
2776 if (pipe_fds[i][1] != -1 &&
Allen Webb7ae41c22021-09-16 10:23:37 -05002777 ensure_no_fd_conflict(child_fds_out, -1, &pipe_fds[i][1]) ==
2778 -1) {
Allen Webb66417bd2021-07-16 15:07:24 -07002779 return -1;
2780 }
2781 }
Allen Webb05af7762021-07-16 12:56:44 -05002782 return 0;
2783}
Allen Webb66417bd2021-07-16 15:07:24 -07002784
Allen Webb05af7762021-07-16 12:56:44 -05002785/*
2786 * Redirect j->preserved_fds from the parent_fd to the child_fd.
2787 *
2788 * NOTE: This will clear FD_CLOEXEC since otherwise the child_fd would not be
2789 * inherited after the exec call.
2790 */
Allen Webb7ae41c22021-09-16 10:23:37 -05002791static int redirect_fds(struct minijail *j, fd_set *child_fds)
2792{
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002793 for (size_t i = 0; i < j->preserved_fd_count; i++) {
Luis Héctor Cháveza63407a2021-01-03 05:47:00 -08002794 if (j->preserved_fds[i].parent_fd ==
2795 j->preserved_fds[i].child_fd) {
Allen Webb1e925f72021-07-16 15:39:29 -05002796 // Clear CLOEXEC if it is set so the FD will be
2797 // inherited by the child.
2798 int flags =
2799 fcntl(j->preserved_fds[i].child_fd, F_GETFD);
2800 if (flags == -1 || (flags & FD_CLOEXEC) == 0) {
2801 continue;
2802 }
2803
2804 // Currently FD_CLOEXEC is cleared without being
2805 // restored. It may make sense to track when this
2806 // happens and restore FD_CLOEXEC in the child process.
2807 flags &= ~FD_CLOEXEC;
2808 if (fcntl(j->preserved_fds[i].child_fd, F_SETFD,
2809 flags) == -1) {
2810 pwarn("failed to clear CLOEXEC for %d",
2811 j->preserved_fds[i].parent_fd);
2812 }
Luis Héctor Cháveza63407a2021-01-03 05:47:00 -08002813 continue;
2814 }
Luis Hector Chavez1617f632017-08-01 18:32:30 -07002815 if (dup2(j->preserved_fds[i].parent_fd,
2816 j->preserved_fds[i].child_fd) == -1) {
2817 return -1;
2818 }
2819 }
Allen Webb66417bd2021-07-16 15:07:24 -07002820
Mattias Nissler1cf29fb2020-04-20 23:14:03 +02002821 /*
2822 * After all fds have been duped, we are now free to close all parent
2823 * fds that are *not* child fds.
2824 */
2825 for (size_t i = 0; i < j->preserved_fd_count; i++) {
Allen Webbc7182682021-04-16 09:44:53 -05002826 int parent_fd = j->preserved_fds[i].parent_fd;
Allen Webb05af7762021-07-16 12:56:44 -05002827 if (!FD_ISSET(parent_fd, child_fds)) {
Allen Webbc7182682021-04-16 09:44:53 -05002828 close(parent_fd);
Mattias Nissler1cf29fb2020-04-20 23:14:03 +02002829 }
Mattias Nissler1cf29fb2020-04-20 23:14:03 +02002830 }
Luis Hector Chavez1617f632017-08-01 18:32:30 -07002831 return 0;
2832}
2833
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002834static void minijail_free_run_state(struct minijail_run_state *state)
2835{
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002836 state->child_pid = -1;
2837
2838 int *fd_pairs[] = {state->pipe_fds, state->stdin_fds, state->stdout_fds,
2839 state->stderr_fds, state->child_sync_pipe_fds};
2840 for (size_t i = 0; i < ARRAY_SIZE(fd_pairs); ++i) {
2841 close_and_reset(&fd_pairs[i][0]);
2842 close_and_reset(&fd_pairs[i][1]);
2843 }
Mattias Nisslerb35f2c12020-02-07 13:37:36 +01002844
2845 minijail_free_env(state->child_env);
2846 state->child_env = NULL;
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002847}
2848
2849/* Set up stdin/stdout/stderr file descriptors in the child. */
2850static void setup_child_std_fds(struct minijail *j,
2851 struct minijail_run_state *state)
2852{
2853 struct {
2854 const char *name;
2855 int from;
2856 int to;
2857 } fd_map[] = {
2858 {"stdin", state->stdin_fds[0], STDIN_FILENO},
2859 {"stdout", state->stdout_fds[1], STDOUT_FILENO},
2860 {"stderr", state->stderr_fds[1], STDERR_FILENO},
2861 };
2862
2863 for (size_t i = 0; i < ARRAY_SIZE(fd_map); ++i) {
Luis Héctor Cháveza63407a2021-01-03 05:47:00 -08002864 if (fd_map[i].from == -1 || fd_map[i].from == fd_map[i].to)
2865 continue;
2866 if (dup2(fd_map[i].from, fd_map[i].to) == -1)
2867 die("failed to set up %s pipe", fd_map[i].name);
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002868 }
2869
2870 /* Close temporary pipe file descriptors. */
2871 int *std_pipes[] = {state->stdin_fds, state->stdout_fds,
2872 state->stderr_fds};
2873 for (size_t i = 0; i < ARRAY_SIZE(std_pipes); ++i) {
2874 close_and_reset(&std_pipes[i][0]);
2875 close_and_reset(&std_pipes[i][1]);
2876 }
2877
2878 /*
2879 * If any of stdin, stdout, or stderr are TTYs, or setsid flag is
2880 * set, create a new session. This prevents the jailed process from
2881 * using the TIOCSTI ioctl to push characters into the parent process
2882 * terminal's input buffer, therefore escaping the jail.
2883 *
2884 * Since it has just forked, the child will not be a process group
2885 * leader, and this call to setsid() should always succeed.
2886 */
2887 if (j->flags.setsid || isatty(STDIN_FILENO) || isatty(STDOUT_FILENO) ||
2888 isatty(STDERR_FILENO)) {
2889 if (setsid() < 0) {
2890 pdie("setsid() failed");
2891 }
Allen Webbf486e262022-03-18 15:24:57 +00002892
2893 if (isatty(STDIN_FILENO)) {
2894 if (ioctl(STDIN_FILENO, TIOCSCTTY, 0) != 0) {
2895 pwarn("failed to set controlling terminal");
2896 }
2897 }
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002898 }
2899}
2900
2901/*
Dylan Reidacfb8be2017-08-25 12:56:51 -07002902 * Structure that specifies how to start a minijail.
2903 *
Allen Webb05af7762021-07-16 12:56:44 -05002904 * filename - The program to exec in the child. Should be NULL if elf_fd is set.
2905 * elf_fd - A fd to be used with fexecve. Should be -1 if filename is set.
2906 * NOTE: either filename or elf_fd is required if |exec_in_child| = 1.
Jorge Lucangeli Obesd2c951d2019-02-01 15:43:36 -05002907 * argv - Arguments for the child program. Required if |exec_in_child| = 1.
2908 * envp - Environment for the child program. Available if |exec_in_child| = 1.
Dylan Reidacfb8be2017-08-25 12:56:51 -07002909 * use_preload - If true use LD_PRELOAD.
Jorge Lucangeli Obesd2c951d2019-02-01 15:43:36 -05002910 * exec_in_child - If true, run |filename|. Otherwise, the child will return to
Dylan Reid0412dcc2017-08-24 11:33:15 -07002911 * the caller.
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002912 * pstdin_fd - Filled with stdin pipe if non-NULL.
2913 * pstdout_fd - Filled with stdout pipe if non-NULL.
2914 * pstderr_fd - Filled with stderr pipe if non-NULL.
2915 * pchild_pid - Filled with the pid of the child process if non-NULL.
Dylan Reidacfb8be2017-08-25 12:56:51 -07002916 */
2917struct minijail_run_config {
2918 const char *filename;
Allen Webb05af7762021-07-16 12:56:44 -05002919 int elf_fd;
Dylan Reidacfb8be2017-08-25 12:56:51 -07002920 char *const *argv;
Jorge Lucangeli Obesd2c951d2019-02-01 15:43:36 -05002921 char *const *envp;
Dylan Reidacfb8be2017-08-25 12:56:51 -07002922 int use_preload;
Dylan Reid0412dcc2017-08-24 11:33:15 -07002923 int exec_in_child;
Dylan Reidacfb8be2017-08-25 12:56:51 -07002924 int *pstdin_fd;
2925 int *pstdout_fd;
2926 int *pstderr_fd;
2927 pid_t *pchild_pid;
2928};
2929
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002930static int
2931minijail_run_config_internal(struct minijail *j,
2932 const struct minijail_run_config *config);
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07002933
Will Drewry6ac91122011-10-21 16:38:58 -05002934int API minijail_run(struct minijail *j, const char *filename,
2935 char *const argv[])
Elly Jonese1749eb2011-10-07 13:54:59 -04002936{
Dylan Reidacfb8be2017-08-25 12:56:51 -07002937 struct minijail_run_config config = {
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002938 .filename = filename,
Allen Webb05af7762021-07-16 12:56:44 -05002939 .elf_fd = -1,
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002940 .argv = argv,
2941 .envp = NULL,
2942 .use_preload = true,
2943 .exec_in_child = true,
Dylan Reidacfb8be2017-08-25 12:56:51 -07002944 };
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002945 return minijail_run_config_internal(j, &config);
Jorge Lucangeli Obes9807d032012-04-17 13:36:00 -07002946}
2947
Stéphane Lesimplef65da3a2022-01-11 11:44:47 +01002948int API minijail_run_env(struct minijail *j, const char *filename,
2949 char *const argv[], char *const envp[])
2950{
2951 struct minijail_run_config config = {
Allen Webbf486e262022-03-18 15:24:57 +00002952 .filename = filename,
2953 .elf_fd = -1,
2954 .argv = argv,
2955 .envp = envp,
2956 .use_preload = true,
2957 .exec_in_child = true,
Stéphane Lesimplef65da3a2022-01-11 11:44:47 +01002958 };
2959 return minijail_run_config_internal(j, &config);
2960}
2961
Jorge Lucangeli Obes9807d032012-04-17 13:36:00 -07002962int API minijail_run_pid(struct minijail *j, const char *filename,
2963 char *const argv[], pid_t *pchild_pid)
2964{
Dylan Reidacfb8be2017-08-25 12:56:51 -07002965 struct minijail_run_config config = {
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002966 .filename = filename,
Allen Webb05af7762021-07-16 12:56:44 -05002967 .elf_fd = -1,
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002968 .argv = argv,
2969 .envp = NULL,
2970 .use_preload = true,
2971 .exec_in_child = true,
2972 .pchild_pid = pchild_pid,
Dylan Reidacfb8be2017-08-25 12:56:51 -07002973 };
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002974 return minijail_run_config_internal(j, &config);
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002975}
2976
2977int API minijail_run_pipe(struct minijail *j, const char *filename,
Jorge Lucangeli Obes6537a562012-09-05 10:39:40 -07002978 char *const argv[], int *pstdin_fd)
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002979{
Dylan Reidacfb8be2017-08-25 12:56:51 -07002980 struct minijail_run_config config = {
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002981 .filename = filename,
Allen Webb05af7762021-07-16 12:56:44 -05002982 .elf_fd = -1,
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002983 .argv = argv,
2984 .envp = NULL,
2985 .use_preload = true,
2986 .exec_in_child = true,
2987 .pstdin_fd = pstdin_fd,
Dylan Reidacfb8be2017-08-25 12:56:51 -07002988 };
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002989 return minijail_run_config_internal(j, &config);
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07002990}
2991
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002992int API minijail_run_pid_pipes(struct minijail *j, const char *filename,
Jorge Lucangeli Obes4ae30cc2014-04-10 15:35:33 -07002993 char *const argv[], pid_t *pchild_pid,
2994 int *pstdin_fd, int *pstdout_fd, int *pstderr_fd)
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08002995{
Dylan Reidacfb8be2017-08-25 12:56:51 -07002996 struct minijail_run_config config = {
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002997 .filename = filename,
Allen Webb05af7762021-07-16 12:56:44 -05002998 .elf_fd = -1,
Mattias Nissler6123e5a2020-02-11 13:38:03 +01002999 .argv = argv,
3000 .envp = NULL,
3001 .use_preload = true,
3002 .exec_in_child = true,
3003 .pstdin_fd = pstdin_fd,
3004 .pstdout_fd = pstdout_fd,
3005 .pstderr_fd = pstderr_fd,
3006 .pchild_pid = pchild_pid,
Dylan Reidacfb8be2017-08-25 12:56:51 -07003007 };
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003008 return minijail_run_config_internal(j, &config);
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003009}
3010
Mattias Nisslerb35f2c12020-02-07 13:37:36 +01003011int API minijail_run_env_pid_pipes(struct minijail *j, const char *filename,
3012 char *const argv[], char *const envp[],
3013 pid_t *pchild_pid, int *pstdin_fd,
3014 int *pstdout_fd, int *pstderr_fd)
3015{
3016 struct minijail_run_config config = {
3017 .filename = filename,
Allen Webb05af7762021-07-16 12:56:44 -05003018 .elf_fd = -1,
3019 .argv = argv,
3020 .envp = envp,
3021 .use_preload = true,
3022 .exec_in_child = true,
3023 .pstdin_fd = pstdin_fd,
3024 .pstdout_fd = pstdout_fd,
3025 .pstderr_fd = pstderr_fd,
3026 .pchild_pid = pchild_pid,
3027 };
3028 return minijail_run_config_internal(j, &config);
3029}
3030
3031int API minijail_run_fd_env_pid_pipes(struct minijail *j, int elf_fd,
3032 char *const argv[], char *const envp[],
3033 pid_t *pchild_pid, int *pstdin_fd,
3034 int *pstdout_fd, int *pstderr_fd)
3035{
3036 struct minijail_run_config config = {
3037 .filename = NULL,
3038 .elf_fd = elf_fd,
Mattias Nisslerb35f2c12020-02-07 13:37:36 +01003039 .argv = argv,
3040 .envp = envp,
3041 .use_preload = true,
3042 .exec_in_child = true,
3043 .pstdin_fd = pstdin_fd,
3044 .pstdout_fd = pstdout_fd,
3045 .pstderr_fd = pstderr_fd,
3046 .pchild_pid = pchild_pid,
3047 };
3048 return minijail_run_config_internal(j, &config);
3049}
3050
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003051int API minijail_run_no_preload(struct minijail *j, const char *filename,
3052 char *const argv[])
3053{
Dylan Reidacfb8be2017-08-25 12:56:51 -07003054 struct minijail_run_config config = {
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003055 .filename = filename,
Allen Webb05af7762021-07-16 12:56:44 -05003056 .elf_fd = -1,
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003057 .argv = argv,
3058 .envp = NULL,
3059 .use_preload = false,
3060 .exec_in_child = true,
Dylan Reidacfb8be2017-08-25 12:56:51 -07003061 };
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003062 return minijail_run_config_internal(j, &config);
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003063}
3064
Samuel Tan63187f42015-10-16 13:01:53 -07003065int API minijail_run_pid_pipes_no_preload(struct minijail *j,
Jorge Lucangeli Obes43a6a862015-12-04 14:53:36 -08003066 const char *filename,
Allen Webb7ae41c22021-09-16 10:23:37 -05003067 char *const argv[], pid_t *pchild_pid,
3068 int *pstdin_fd, int *pstdout_fd,
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08003069 int *pstderr_fd)
3070{
Dylan Reidacfb8be2017-08-25 12:56:51 -07003071 struct minijail_run_config config = {
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003072 .filename = filename,
Allen Webb05af7762021-07-16 12:56:44 -05003073 .elf_fd = -1,
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003074 .argv = argv,
3075 .envp = NULL,
3076 .use_preload = false,
3077 .exec_in_child = true,
3078 .pstdin_fd = pstdin_fd,
3079 .pstdout_fd = pstdout_fd,
3080 .pstderr_fd = pstderr_fd,
3081 .pchild_pid = pchild_pid,
Jorge Lucangeli Obesd2c951d2019-02-01 15:43:36 -05003082 };
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003083 return minijail_run_config_internal(j, &config);
Jorge Lucangeli Obesd2c951d2019-02-01 15:43:36 -05003084}
3085
3086int API minijail_run_env_pid_pipes_no_preload(struct minijail *j,
3087 const char *filename,
3088 char *const argv[],
3089 char *const envp[],
3090 pid_t *pchild_pid, int *pstdin_fd,
3091 int *pstdout_fd, int *pstderr_fd)
3092{
3093 struct minijail_run_config config = {
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003094 .filename = filename,
Allen Webb05af7762021-07-16 12:56:44 -05003095 .elf_fd = -1,
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003096 .argv = argv,
3097 .envp = envp,
3098 .use_preload = false,
3099 .exec_in_child = true,
3100 .pstdin_fd = pstdin_fd,
3101 .pstdout_fd = pstdout_fd,
3102 .pstderr_fd = pstderr_fd,
3103 .pchild_pid = pchild_pid,
Dylan Reidacfb8be2017-08-25 12:56:51 -07003104 };
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003105 return minijail_run_config_internal(j, &config);
Samuel Tan63187f42015-10-16 13:01:53 -07003106}
3107
Dylan Reid0412dcc2017-08-24 11:33:15 -07003108pid_t API minijail_fork(struct minijail *j)
3109{
Allen Webb05af7762021-07-16 12:56:44 -05003110 struct minijail_run_config config = {
3111 .elf_fd = -1,
3112 };
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003113 return minijail_run_config_internal(j, &config);
Dylan Reid0412dcc2017-08-24 11:33:15 -07003114}
3115
Dylan Reid18c49c82017-08-25 14:52:27 -07003116static int minijail_run_internal(struct minijail *j,
3117 const struct minijail_run_config *config,
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003118 struct minijail_run_state *state_out)
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003119{
Dylan Reidce5b55e2016-01-13 11:04:16 -08003120 int sync_child = 0;
Elly Jonese1749eb2011-10-07 13:54:59 -04003121 int ret;
Elly Jonesa05d7bb2012-06-14 14:09:27 -04003122 /* We need to remember this across the minijail_preexec() call. */
3123 int pid_namespace = j->flags.pids;
Luis Hector Chavezac981fc2017-09-18 15:52:38 -07003124 /*
3125 * Create an init process if we are entering a pid namespace, unless the
3126 * user has explicitly opted out by calling minijail_run_as_init().
3127 */
3128 int do_init = j->flags.do_init && !j->flags.run_as_init;
Dylan Reidacfb8be2017-08-25 12:56:51 -07003129 int use_preload = config->use_preload;
Ben Chan541c7e52011-08-26 14:55:53 -07003130
Allen Webb05af7762021-07-16 12:56:44 -05003131 if (config->filename != NULL && config->elf_fd != -1) {
3132 die("filename and elf_fd cannot be set at the same time");
3133 }
3134
Allen Webb77383c72021-10-15 10:34:24 -07003135 /*
3136 * Only copy the environment if we need to modify it. If this is done
3137 * unconditionally, it triggers odd behavior in the ARC container.
3138 */
3139 if (use_preload || j->seccomp_policy_path) {
3140 state_out->child_env =
3141 minijail_copy_env(config->envp ? config->envp : environ);
3142 if (!state_out->child_env)
3143 return ENOMEM;
3144 }
3145
3146 if (j->seccomp_policy_path &&
3147 setup_seccomp_policy_path(j, &state_out->child_env))
3148 return -EFAULT;
3149
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003150 if (use_preload) {
Dylan Reid0412dcc2017-08-24 11:33:15 -07003151 if (j->hooks_head != NULL)
3152 die("Minijail hooks are not supported with LD_PRELOAD");
3153 if (!config->exec_in_child)
3154 die("minijail_fork is not supported with LD_PRELOAD");
3155
Mattias Nisslerb35f2c12020-02-07 13:37:36 +01003156 /*
3157 * Before we fork(2) and execve(2) the child process, we need
3158 * to open a pipe(2) to send the minijail configuration over.
3159 */
Mattias Nisslerb35f2c12020-02-07 13:37:36 +01003160 if (setup_preload(j, &state_out->child_env) ||
3161 setup_pipe(&state_out->child_env, state_out->pipe_fds))
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003162 return -EFAULT;
Elly Jonese1749eb2011-10-07 13:54:59 -04003163 }
Will Drewryf89aef52011-09-16 16:48:57 -05003164
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003165 if (!use_preload) {
Luis Hector Chavezfe5fb8e2017-06-29 10:41:27 -07003166 if (j->flags.use_caps && j->caps != 0 &&
3167 !j->flags.set_ambient_caps) {
3168 die("non-empty, non-ambient capabilities are not "
3169 "supported without LD_PRELOAD");
3170 }
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003171 }
Will Drewry2f54b6a2011-09-16 13:45:31 -05003172
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003173 /* Create pipes for stdin/stdout/stderr as requested by caller. */
3174 struct {
3175 bool requested;
3176 int *pipe_fds;
3177 } pipe_fd_req[] = {
3178 {config->pstdin_fd != NULL, state_out->stdin_fds},
3179 {config->pstdout_fd != NULL, state_out->stdout_fds},
3180 {config->pstderr_fd != NULL, state_out->stderr_fds},
3181 };
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07003182
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003183 for (size_t i = 0; i < ARRAY_SIZE(pipe_fd_req); ++i) {
3184 if (pipe_fd_req[i].requested &&
3185 pipe(pipe_fd_req[i].pipe_fds) == -1)
3186 return EFAULT;
Jorge Lucangeli Obes339a1132013-02-15 16:53:47 -08003187 }
3188
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08003189 /*
François Degros664eba72019-11-05 13:18:24 +11003190 * If the parent process needs to configure the child's runtime
3191 * environment after forking, create a pipe(2) to block the child until
3192 * configuration is done.
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08003193 */
Daniel Erat2d69add2019-04-23 20:58:53 -07003194 if (j->flags.forward_signals || j->flags.pid_file || j->flags.cgroups ||
3195 j->rlimit_count || j->flags.userns) {
Dylan Reidce5b55e2016-01-13 11:04:16 -08003196 sync_child = 1;
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003197 if (pipe(state_out->child_sync_pipe_fds))
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08003198 return -EFAULT;
3199 }
3200
Jorge Lucangeli Obesd0a6e2f2015-11-24 14:21:21 -08003201 /*
3202 * Use sys_clone() if and only if we're creating a pid namespace.
Elly Jones761b7412012-06-13 15:49:52 -04003203 *
3204 * tl;dr: WARNING: do not mix pid namespaces and multithreading.
3205 *
3206 * In multithreaded programs, there are a bunch of locks inside libc,
3207 * some of which may be held by other threads at the time that we call
3208 * minijail_run_pid(). If we call fork(), glibc does its level best to
3209 * ensure that we hold all of these locks before it calls clone()
3210 * internally and drop them after clone() returns, but when we call
3211 * sys_clone(2) directly, all that gets bypassed and we end up with a
3212 * child address space where some of libc's important locks are held by
3213 * other threads (which did not get cloned, and hence will never release
3214 * those locks). This is okay so long as we call exec() immediately
3215 * after, but a bunch of seemingly-innocent libc functions like setenv()
3216 * take locks.
3217 *
3218 * Hence, only call sys_clone() if we need to, in order to get at pid
3219 * namespacing. If we follow this path, the child's address space might
3220 * have broken locks; you may only call functions that do not acquire
3221 * any locks.
3222 *
3223 * Unfortunately, fork() acquires every lock it can get its hands on, as
3224 * previously detailed, so this function is highly likely to deadlock
3225 * later on (see "deadlock here") if we're multithreaded.
3226 *
3227 * We might hack around this by having the clone()d child (init of the
3228 * pid namespace) return directly, rather than leaving the clone()d
3229 * process hanging around to be init for the new namespace (and having
Jorge Lucangeli Obesa521bee2016-03-03 13:47:57 -08003230 * its fork()ed child return in turn), but that process would be
3231 * crippled with its libc locks potentially broken. We might try
3232 * fork()ing in the parent before we clone() to ensure that we own all
3233 * the locks, but then we have to have the forked child hanging around
3234 * consuming resources (and possibly having file descriptors / shared
3235 * memory regions / etc attached). We'd need to keep the child around to
3236 * avoid having its children get reparented to init.
Elly Jones761b7412012-06-13 15:49:52 -04003237 *
3238 * TODO(ellyjones): figure out if the "forked child hanging around"
3239 * problem is fixable or not. It would be nice if we worked in this
3240 * case.
3241 */
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003242 pid_t child_pid;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08003243 if (pid_namespace) {
François Degros94619842019-11-08 16:37:55 +11003244 unsigned long clone_flags = CLONE_NEWPID | SIGCHLD;
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08003245 if (j->flags.userns)
3246 clone_flags |= CLONE_NEWUSER;
François Degros94619842019-11-08 16:37:55 +11003247
3248 child_pid = syscall(SYS_clone, clone_flags, NULL, 0L, 0L, 0L);
3249
3250 if (child_pid < 0) {
3251 if (errno == EPERM)
Allen Webb7ae41c22021-09-16 10:23:37 -05003252 pdie("clone(CLONE_NEWPID | ...) failed with "
3253 "EPERM; is this process missing "
3254 "CAP_SYS_ADMIN?");
François Degros94619842019-11-08 16:37:55 +11003255 pdie("clone(CLONE_NEWPID | ...) failed");
3256 }
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003257 } else {
Elly Jones761b7412012-06-13 15:49:52 -04003258 child_pid = fork();
3259
François Degros94619842019-11-08 16:37:55 +11003260 if (child_pid < 0)
3261 pdie("fork failed");
Elly Jonese1749eb2011-10-07 13:54:59 -04003262 }
Will Drewryf89aef52011-09-16 16:48:57 -05003263
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003264 state_out->child_pid = child_pid;
Elly Jonese1749eb2011-10-07 13:54:59 -04003265 if (child_pid) {
Elly Jonese1749eb2011-10-07 13:54:59 -04003266 j->initpid = child_pid;
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07003267
Jorge Lucangeli Obesdba62092017-05-18 17:10:23 -04003268 if (j->flags.forward_signals) {
3269 forward_pid = child_pid;
3270 install_signal_handlers();
3271 }
3272
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08003273 if (j->flags.pid_file)
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04003274 write_pid_file_or_die(j);
Yu-Hsi Chiang3cc05ea2015-08-11 11:23:17 +08003275
Jorge Lucangeli Obesb8a51382016-01-25 20:08:22 -08003276 if (j->flags.cgroups)
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04003277 add_to_cgroups_or_die(j);
Dylan Reid605ce7f2016-01-19 19:21:00 -08003278
Dylan Reid0f72ef42017-06-06 15:42:49 -07003279 if (j->rlimit_count)
3280 set_rlimits_or_die(j);
3281
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08003282 if (j->flags.userns)
Jorge Lucangeli Obesf205fff2016-08-06 09:06:21 -04003283 write_ugid_maps_or_die(j);
Dylan Reidce5b55e2016-01-13 11:04:16 -08003284
Mike Frysinger902a4492018-12-27 05:22:56 -05003285 if (j->flags.enter_vfs)
3286 close(j->mountns_fd);
3287
3288 if (j->flags.enter_net)
3289 close(j->netns_fd);
3290
Dylan Reidce5b55e2016-01-13 11:04:16 -08003291 if (sync_child)
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003292 parent_setup_complete(state_out->child_sync_pipe_fds);
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08003293
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003294 if (use_preload) {
François Degros664eba72019-11-05 13:18:24 +11003295 /*
3296 * Add SIGPIPE to the signal mask to avoid getting
3297 * killed if the child process finishes or closes its
3298 * end of the pipe prematurely.
3299 *
3300 * TODO(crbug.com/1022170): Use pthread_sigmask instead
3301 * of sigprocmask if Minijail is used in multithreaded
3302 * programs.
3303 */
3304 sigset_t to_block, to_restore;
3305 if (sigemptyset(&to_block) < 0)
3306 pdie("sigemptyset failed");
3307 if (sigaddset(&to_block, SIGPIPE) < 0)
3308 pdie("sigaddset failed");
3309 if (sigprocmask(SIG_BLOCK, &to_block, &to_restore) < 0)
3310 pdie("sigprocmask failed");
3311
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003312 /* Send marshalled minijail. */
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003313 close_and_reset(&state_out->pipe_fds[0]);
3314 ret = minijail_to_fd(j, state_out->pipe_fds[1]);
3315 close_and_reset(&state_out->pipe_fds[1]);
François Degros664eba72019-11-05 13:18:24 +11003316
3317 /* Accept any pending SIGPIPE. */
3318 while (true) {
3319 const struct timespec zero_time = {0, 0};
Allen Webb7ae41c22021-09-16 10:23:37 -05003320 const int sig =
3321 sigtimedwait(&to_block, NULL, &zero_time);
François Degros664eba72019-11-05 13:18:24 +11003322 if (sig < 0) {
3323 if (errno != EINTR)
3324 break;
3325 } else {
3326 if (sig != SIGPIPE)
Allen Webb7ae41c22021-09-16 10:23:37 -05003327 die("unexpected signal %d",
3328 sig);
François Degros664eba72019-11-05 13:18:24 +11003329 }
3330 }
3331
3332 /* Restore the signal mask to its original state. */
3333 if (sigprocmask(SIG_SETMASK, &to_restore, NULL) < 0)
3334 pdie("sigprocmask failed");
3335
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003336 if (ret) {
François Degros664eba72019-11-05 13:18:24 +11003337 warn("failed to send marshalled minijail: %s",
3338 strerror(-ret));
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003339 kill(j->initpid, SIGKILL);
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003340 }
Elly Jonese1749eb2011-10-07 13:54:59 -04003341 }
Jorge Lucangeli Obesdf4bd352012-08-29 19:12:28 -07003342
Elly Jonese1749eb2011-10-07 13:54:59 -04003343 return 0;
3344 }
Ben Chan541c7e52011-08-26 14:55:53 -07003345
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003346 /* Child process. */
Peter Qiu2860c462015-12-16 15:13:06 -08003347 if (j->flags.reset_signal_mask) {
3348 sigset_t signal_mask;
3349 if (sigemptyset(&signal_mask) != 0)
3350 pdie("sigemptyset failed");
3351 if (sigprocmask(SIG_SETMASK, &signal_mask, NULL) != 0)
3352 pdie("sigprocmask failed");
3353 }
3354
Luis Hector Chaveza27118a2018-04-04 08:18:01 -07003355 if (j->flags.reset_signal_handlers) {
3356 int signum;
3357 for (signum = 0; signum <= SIGRTMAX; signum++) {
3358 /*
3359 * Ignore EINVAL since some signal numbers in the range
3360 * might not be valid.
3361 */
3362 if (signal(signum, SIG_DFL) == SIG_ERR &&
3363 errno != EINVAL) {
3364 pdie("failed to reset signal %d disposition",
3365 signum);
3366 }
3367 }
3368 }
3369
Luis Hector Chavez43ff0802016-10-07 12:21:07 -07003370 if (j->flags.close_open_fds) {
Allen Webb05af7762021-07-16 12:56:44 -05003371 const size_t kMaxInheritableFdsSize = 11 + MAX_PRESERVED_FDS;
Luis Hector Chavez43ff0802016-10-07 12:21:07 -07003372 int inheritable_fds[kMaxInheritableFdsSize];
3373 size_t size = 0;
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003374
3375 int *pipe_fds[] = {
3376 state_out->pipe_fds, state_out->child_sync_pipe_fds,
3377 state_out->stdin_fds, state_out->stdout_fds,
3378 state_out->stderr_fds,
3379 };
3380
3381 for (size_t i = 0; i < ARRAY_SIZE(pipe_fds); ++i) {
3382 if (pipe_fds[i][0] != -1) {
3383 inheritable_fds[size++] = pipe_fds[i][0];
3384 }
3385 if (pipe_fds[i][1] != -1) {
3386 inheritable_fds[size++] = pipe_fds[i][1];
3387 }
Luis Hector Chavez43ff0802016-10-07 12:21:07 -07003388 }
Jorge Lucangeli Obes2337f802019-07-18 14:46:03 -04003389
Jorge Lucangeli Obescf3bbea2019-07-24 09:06:40 -04003390 /*
3391 * Preserve namespace file descriptors over the close_open_fds()
3392 * call. These are closed in minijail_enter() so they won't leak
3393 * into the child process.
3394 */
Jorge Lucangeli Obes2337f802019-07-18 14:46:03 -04003395 if (j->flags.enter_vfs)
3396 minijail_preserve_fd(j, j->mountns_fd, j->mountns_fd);
3397 if (j->flags.enter_net)
3398 minijail_preserve_fd(j, j->netns_fd, j->netns_fd);
3399
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003400 for (size_t i = 0; i < j->preserved_fd_count; i++) {
Luis Hector Chavez1617f632017-08-01 18:32:30 -07003401 /*
3402 * Preserve all parent_fds. They will be dup2(2)-ed in
3403 * the child later.
3404 */
3405 inheritable_fds[size++] = j->preserved_fds[i].parent_fd;
3406 }
Luis Hector Chavez43ff0802016-10-07 12:21:07 -07003407
Allen Webb05af7762021-07-16 12:56:44 -05003408 if (config->elf_fd > -1) {
3409 inheritable_fds[size++] = config->elf_fd;
3410 }
3411
Luis Hector Chavez43ff0802016-10-07 12:21:07 -07003412 if (close_open_fds(inheritable_fds, size) < 0)
3413 die("failed to close open file descriptors");
3414 }
3415
Allen Webb05af7762021-07-16 12:56:44 -05003416 /* The set of fds will be replaced. */
3417 fd_set child_fds;
3418 FD_ZERO(&child_fds);
3419 if (get_child_fds(j, &child_fds))
3420 die("failed to set up fd redirections");
3421
3422 if (avoid_pipe_conflicts(state_out, &child_fds))
3423 die("failed to redirect conflicting pipes");
3424
3425 /* The elf_fd needs to be mutable so use a stack copy from now on. */
3426 int elf_fd = config->elf_fd;
3427 if (elf_fd != -1 && ensure_no_fd_conflict(&child_fds, -1, &elf_fd))
3428 die("failed to redirect elf_fd");
3429
3430 if (redirect_fds(j, &child_fds))
Luis Hector Chavez1617f632017-08-01 18:32:30 -07003431 die("failed to set up fd redirections");
3432
Dylan Reidce5b55e2016-01-13 11:04:16 -08003433 if (sync_child)
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003434 wait_for_parent_setup(state_out->child_sync_pipe_fds);
Dylan Reidce5b55e2016-01-13 11:04:16 -08003435
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08003436 if (j->flags.userns)
Dylan Reidce5b55e2016-01-13 11:04:16 -08003437 enter_user_namespace(j);
Yu-Hsi Chiang10e91232015-08-05 14:40:45 +08003438
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003439 setup_child_std_fds(j, state_out);
Jorge Lucangeli Obesaa235b92016-11-23 13:48:15 -05003440
Dylan Reid791f5772015-09-14 20:02:42 -07003441 /* If running an init program, let it decide when/how to mount /proc. */
3442 if (pid_namespace && !do_init)
3443 j->flags.remount_proc_ro = 0;
3444
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003445 if (use_preload) {
3446 /* Strip out flags that cannot be inherited across execve(2). */
3447 minijail_preexec(j);
3448 } else {
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04003449 /*
3450 * If not using LD_PRELOAD, do all jailing before execve(2).
3451 * Note that PID namespaces can only be entered on fork(2),
3452 * so that flag is still cleared.
3453 */
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003454 j->flags.pids = 0;
3455 }
Dylan Reid0412dcc2017-08-24 11:33:15 -07003456
3457 /*
3458 * Jail this process.
3459 * If forking, return.
3460 * If not, execve(2) the target.
3461 */
Elly Jonese1749eb2011-10-07 13:54:59 -04003462 minijail_enter(j);
Elly Jonescd7a9042011-07-22 13:56:51 -04003463
Dylan Reid0412dcc2017-08-24 11:33:15 -07003464 if (config->exec_in_child && pid_namespace && do_init) {
Elly Jonesdd3e8512012-01-23 15:13:38 -05003465 /*
3466 * pid namespace: this process will become init inside the new
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08003467 * namespace. We don't want all programs we might exec to have
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003468 * to know how to be init. Normally (do_init == 1) we fork off
Yu-Hsi Chiang3e954ec2015-07-28 16:48:14 +08003469 * a child to actually run the program. If |do_init == 0|, we
3470 * let the program keep pid 1 and be init.
Elly Jones761b7412012-06-13 15:49:52 -04003471 *
3472 * If we're multithreaded, we'll probably deadlock here. See
3473 * WARNING above.
Elly Jonese1749eb2011-10-07 13:54:59 -04003474 */
3475 child_pid = fork();
Jorge Lucangeli Obes963eeec2016-08-10 16:02:43 -04003476 if (child_pid < 0) {
Elly Jonese1749eb2011-10-07 13:54:59 -04003477 _exit(child_pid);
Jorge Lucangeli Obes963eeec2016-08-10 16:02:43 -04003478 } else if (child_pid > 0) {
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003479 minijail_free_run_state(state_out);
3480
Jorge Lucangeli Obes13650612016-09-02 11:27:29 -04003481 /*
3482 * Best effort. Don't bother checking the return value.
3483 */
Jorge Lucangeli Obes963eeec2016-08-10 16:02:43 -04003484 prctl(PR_SET_NAME, "minijail-init");
Allen Webb7ae41c22021-09-16 10:23:37 -05003485 init(child_pid); /* Never returns. */
Jorge Lucangeli Obes963eeec2016-08-10 16:02:43 -04003486 }
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003487 state_out->child_pid = child_pid;
Elly Jonese1749eb2011-10-07 13:54:59 -04003488 }
Elly Jonescd7a9042011-07-22 13:56:51 -04003489
Luis Hector Chaveze0ba4ce2017-07-20 15:12:22 -07003490 run_hooks_or_die(j, MINIJAIL_HOOK_EVENT_PRE_EXECVE);
3491
Dylan Reid0412dcc2017-08-24 11:33:15 -07003492 if (!config->exec_in_child)
3493 return 0;
3494
Elly Jonesdd3e8512012-01-23 15:13:38 -05003495 /*
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003496 * We're going to execve(), so make sure any remaining resources are
Mattias Nisslerb35f2c12020-02-07 13:37:36 +01003497 * freed. Exceptions are:
3498 * 1. The child environment. No need to worry about freeing it since
3499 * execve reinitializes the heap anyways.
3500 * 2. The read side of the LD_PRELOAD pipe, which we need to hand down
3501 * into the target in which the preloaded code will read from it and
3502 * then close it.
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003503 */
3504 state_out->pipe_fds[0] = -1;
Mattias Nisslerb35f2c12020-02-07 13:37:36 +01003505 char *const *child_env = state_out->child_env;
3506 state_out->child_env = NULL;
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003507 minijail_free_run_state(state_out);
3508
3509 /*
Jorge Lucangeli Obes54714502015-09-30 10:08:45 -07003510 * If we aren't pid-namespaced, or the jailed program asked to be init:
Elly Jonese1749eb2011-10-07 13:54:59 -04003511 * calling process
3512 * -> execve()-ing process
3513 * If we are:
3514 * calling process
3515 * -> init()-ing process
3516 * -> execve()-ing process
3517 */
Allen Webb335b0bf2021-09-28 14:18:24 -07003518 if (!child_env)
3519 child_env = config->envp ? config->envp : environ;
Allen Webb05af7762021-07-16 12:56:44 -05003520 if (elf_fd > -1) {
3521 fexecve(elf_fd, config->argv, child_env);
3522 pwarn("fexecve(%d) failed", config->elf_fd);
3523 } else {
3524 execve(config->filename, config->argv, child_env);
3525 pwarn("execve(%s) failed", config->filename);
3526 }
François Degros08b10f72019-10-09 12:44:05 +11003527
Allen Webb7ae41c22021-09-16 10:23:37 -05003528 ret = (errno == ENOENT ? MINIJAIL_ERR_NO_COMMAND
3529 : MINIJAIL_ERR_NO_ACCESS);
Jorge Lucangeli Obesa2053902016-08-02 12:08:15 -04003530 _exit(ret);
Elly Jonescd7a9042011-07-22 13:56:51 -04003531}
3532
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003533static int
3534minijail_run_config_internal(struct minijail *j,
3535 const struct minijail_run_config *config)
3536{
3537 struct minijail_run_state state = {
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003538 .child_pid = -1,
3539 .pipe_fds = {-1, -1},
3540 .stdin_fds = {-1, -1},
3541 .stdout_fds = {-1, -1},
3542 .stderr_fds = {-1, -1},
3543 .child_sync_pipe_fds = {-1, -1},
Mattias Nisslerb35f2c12020-02-07 13:37:36 +01003544 .child_env = NULL,
Mattias Nissler6123e5a2020-02-11 13:38:03 +01003545 };
3546 int ret = minijail_run_internal(j, config, &state);
3547
3548 if (ret == 0) {
3549 if (config->pchild_pid)
3550 *config->pchild_pid = state.child_pid;
3551
3552 /* Grab stdin/stdout/stderr descriptors requested by caller. */
3553 struct {
3554 int *pfd;
3555 int *psrc;
3556 } fd_map[] = {
3557 {config->pstdin_fd, &state.stdin_fds[1]},
3558 {config->pstdout_fd, &state.stdout_fds[0]},
3559 {config->pstderr_fd, &state.stderr_fds[0]},
3560 };
3561
3562 for (size_t i = 0; i < ARRAY_SIZE(fd_map); ++i) {
3563 if (fd_map[i].pfd) {
3564 *fd_map[i].pfd = *fd_map[i].psrc;
3565 *fd_map[i].psrc = -1;
3566 }
3567 }
3568
3569 if (!config->exec_in_child)
3570 ret = state.child_pid;
3571 }
3572
3573 minijail_free_run_state(&state);
3574
3575 return ret;
3576}
3577
Victor Hsieh14036062021-04-30 15:40:36 -07003578static int minijail_wait_internal(struct minijail *j, int expected_signal)
Elly Jonese1749eb2011-10-07 13:54:59 -04003579{
François Degros08b10f72019-10-09 12:44:05 +11003580 if (j->initpid <= 0)
3581 return -ECHILD;
3582
Elly Jonese1749eb2011-10-07 13:54:59 -04003583 int st;
François Degros627deba2019-10-01 12:48:25 +10003584 while (true) {
3585 const int ret = waitpid(j->initpid, &st, 0);
3586 if (ret >= 0)
3587 break;
3588 if (errno != EINTR)
3589 return -errno;
3590 }
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08003591
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07003592 if (!WIFEXITED(st)) {
Jorge Lucangeli Obes18d1eba2014-04-18 13:58:20 -07003593 int error_status = st;
Allen Webb77383c72021-10-15 10:34:24 -07003594 if (!WIFSIGNALED(st)) {
3595 return error_status;
3596 }
3597
3598 int signum = WTERMSIG(st);
3599 /*
3600 * We return MINIJAIL_ERR_JAIL if the process received
3601 * SIGSYS, which happens when a syscall is blocked by
3602 * seccomp filters.
3603 * If not, we do what bash(1) does:
3604 * $? = 128 + signum
3605 */
3606 if (signum == SIGSYS) {
3607 warn("child process %d had a policy violation (%s)",
3608 j->initpid,
3609 j->seccomp_policy_path ? j->seccomp_policy_path
3610 : "NO-LABEL");
3611 error_status = MINIJAIL_ERR_JAIL;
3612 } else {
Victor Hsieh14036062021-04-30 15:40:36 -07003613 if (signum != expected_signal) {
3614 warn("child process %d received signal %d",
3615 j->initpid, signum);
3616 }
Allen Webb77383c72021-10-15 10:34:24 -07003617 error_status = MINIJAIL_ERR_SIG_BASE + signum;
Jorge Lucangeli Obes18d1eba2014-04-18 13:58:20 -07003618 }
3619 return error_status;
Jorge Lucangeli Obesc2c9bcc2012-05-01 09:30:24 -07003620 }
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08003621
3622 int exit_status = WEXITSTATUS(st);
3623 if (exit_status != 0)
Allen Webb7ae41c22021-09-16 10:23:37 -05003624 info("child process %d exited with status %d", j->initpid,
3625 exit_status);
Jorge Lucangeli Obes1530b742012-12-11 14:08:09 -08003626
3627 return exit_status;
Elly Jonescd7a9042011-07-22 13:56:51 -04003628}
3629
Victor Hsieh14036062021-04-30 15:40:36 -07003630int API minijail_kill(struct minijail *j)
3631{
3632 if (j->initpid <= 0)
3633 return -ECHILD;
3634
3635 if (kill(j->initpid, SIGTERM))
3636 return -errno;
3637
3638 return minijail_wait_internal(j, SIGTERM);
3639}
3640
3641int API minijail_wait(struct minijail *j)
3642{
3643 return minijail_wait_internal(j, 0);
3644}
3645
Will Drewry6ac91122011-10-21 16:38:58 -05003646void API minijail_destroy(struct minijail *j)
Elly Jonese1749eb2011-10-07 13:54:59 -04003647{
Dylan Reid605ce7f2016-01-19 19:21:00 -08003648 size_t i;
3649
Luis Hector Chavezc3e17722018-10-16 20:43:12 -07003650 if (j->filter_prog) {
Jorge Lucangeli Obes524c0402012-01-17 11:30:23 -08003651 free(j->filter_prog->filter);
3652 free(j->filter_prog);
Elly Jonese1749eb2011-10-07 13:54:59 -04003653 }
Mike Frysingerac08a682017-10-10 02:04:50 -04003654 free_mounts_list(j);
Nicole Anderson-Au835f7172021-01-13 21:18:13 +00003655 free_remounts_list(j);
Luis Hector Chaveze0ba4ce2017-07-20 15:12:22 -07003656 while (j->hooks_head) {
3657 struct hook *c = j->hooks_head;
3658 j->hooks_head = c->next;
3659 free(c);
3660 }
3661 j->hooks_tail = NULL;
Elly Jonese1749eb2011-10-07 13:54:59 -04003662 if (j->user)
3663 free(j->user);
Jorge Lucangeli Obese81a52f2015-12-04 16:05:23 -08003664 if (j->suppl_gid_list)
3665 free(j->suppl_gid_list);
Will Drewrybee7ba72011-10-21 20:47:01 -05003666 if (j->chrootdir)
3667 free(j->chrootdir);
Jorge Lucangeli Obes3b2e6e42016-08-04 12:26:19 -04003668 if (j->pid_file_path)
3669 free(j->pid_file_path);
3670 if (j->uidmap)
3671 free(j->uidmap);
3672 if (j->gidmap)
3673 free(j->gidmap);
Mike Frysingerb9a7b162017-05-30 15:25:49 -04003674 if (j->hostname)
3675 free(j->hostname);
Luis Hector Chavez9acba452018-10-11 10:13:25 -07003676 if (j->preload_path)
3677 free(j->preload_path);
Andrew Brestickereac28942015-11-11 16:04:46 -08003678 if (j->alt_syscall_table)
3679 free(j->alt_syscall_table);
Dylan Reid605ce7f2016-01-19 19:21:00 -08003680 for (i = 0; i < j->cgroup_count; ++i)
3681 free(j->cgroups[i]);
Allen Webb77383c72021-10-15 10:34:24 -07003682 if (j->seccomp_policy_path)
3683 free(j->seccomp_policy_path);
Elly Jonese1749eb2011-10-07 13:54:59 -04003684 free(j);
Elly Jonescd7a9042011-07-22 13:56:51 -04003685}
Luis Hector Chavez114a9302017-09-05 20:36:58 -07003686
3687void API minijail_log_to_fd(int fd, int min_priority)
3688{
3689 init_logging(LOG_TO_FD, fd, min_priority);
3690}