08e95e9903fce2190a03a99ed5198ecf187908d5
[project/procd.git] / jail / jail.c
1 /*
2 * Copyright (C) 2015 John Crispin <blogic@openwrt.org>
3 * Copyright (C) 2020 Daniel Golle <daniel@makrotopia.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License version 2.1
7 * as published by the Free Software Foundation
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
15 #define _GNU_SOURCE
16 #include <sys/mount.h>
17 #include <sys/prctl.h>
18 #include <sys/wait.h>
19 #include <sys/types.h>
20 #include <sys/time.h>
21 #include <sys/resource.h>
22 #include <sys/stat.h>
23 #include <sys/sysmacros.h>
24
25 /* musl only defined 15 limit types, make sure all 16 are supported */
26 #ifndef RLIMIT_RTTIME
27 #define RLIMIT_RTTIME 15
28 #undef RLIMIT_NLIMITS
29 #define RLIMIT_NLIMITS 16
30 #undef RLIM_NLIMITS
31 #define RLIM_NLIMITS 16
32 #endif
33
34 #include <stdlib.h>
35 #include <unistd.h>
36 #include <errno.h>
37 #include <pwd.h>
38 #include <grp.h>
39 #include <string.h>
40 #include <fcntl.h>
41 #include <sched.h>
42 #include <linux/filter.h>
43 #include <linux/limits.h>
44 #include <linux/nsfs.h>
45 #include <linux/securebits.h>
46 #include <signal.h>
47 #include <inttypes.h>
48
49 #include "capabilities.h"
50 #include "elf.h"
51 #include "fs.h"
52 #include "jail.h"
53 #include "log.h"
54 #include "seccomp-oci.h"
55 #include "cgroups.h"
56
57 #include <libubox/utils.h>
58 #include <libubox/blobmsg.h>
59 #include <libubox/blobmsg_json.h>
60 #include <libubox/list.h>
61 #include <libubox/vlist.h>
62 #include <libubox/uloop.h>
63 #include <libubus.h>
64
65 #ifndef CLONE_NEWCGROUP
66 #define CLONE_NEWCGROUP 0x02000000
67 #endif
68
69 #define STACK_SIZE (1024 * 1024)
70 #define OPT_ARGS "S:C:n:h:r:w:d:psulocU:G:NR:fFO:T:EyJ:i"
71
72 #define OCI_VERSION_STRING "1.0.2"
73
74 struct hook_execvpe {
75 char *file;
76 char **argv;
77 char **envp;
78 int timeout;
79 };
80
81 struct sysctl_val {
82 char *entry;
83 char *value;
84 };
85
86 struct mknod_args {
87 char *path;
88 mode_t mode;
89 dev_t dev;
90 uid_t uid;
91 gid_t gid;
92 };
93
94 static struct {
95 char *name;
96 char *hostname;
97 char **jail_argv;
98 char *cwd;
99 char *seccomp;
100 struct sock_fprog *ociseccomp;
101 char *capabilities;
102 struct jail_capset capset;
103 char *user;
104 char *group;
105 char *extroot;
106 char *overlaydir;
107 char *tmpoverlaysize;
108 char **envp;
109 char *uidmap;
110 char *gidmap;
111 struct sysctl_val **sysctl;
112 int no_new_privs;
113 int namespace;
114 struct {
115 int pid;
116 int net;
117 int ns;
118 int ipc;
119 int uts;
120 int user;
121 int cgroup;
122 #ifdef CLONE_NEWTIME
123 int time;
124 #endif
125 } setns;
126 int procfs;
127 int ronly;
128 int sysfs;
129 int console;
130 int pw_uid;
131 int pw_gid;
132 int gr_gid;
133 gid_t *additional_gids;
134 size_t num_additional_gids;
135 mode_t umask;
136 bool set_umask;
137 int require_jail;
138 struct {
139 struct hook_execvpe **createRuntime;
140 struct hook_execvpe **createContainer;
141 struct hook_execvpe **startContainer;
142 struct hook_execvpe **poststart;
143 struct hook_execvpe **poststop;
144 } hooks;
145 struct rlimit *rlimits[RLIM_NLIMITS];
146 int oom_score_adj;
147 bool set_oom_score_adj;
148 struct mknod_args **devices;
149 char *ocibundle;
150 bool immediately;
151 struct blob_attr *annotations;
152 } opts;
153
154 static struct blob_buf ocibuf;
155
156 extern int pivot_root(const char *new_root, const char *put_old);
157
158 int debug = 0;
159
160 static char child_stack[STACK_SIZE];
161
162 static struct ubus_context *parent_ctx;
163
164 int console_fd;
165
166
167 static inline bool has_namespaces(void)
168 {
169 return ((opts.setns.pid != -1) ||
170 (opts.setns.net != -1) ||
171 (opts.setns.ns != -1) ||
172 (opts.setns.ipc != -1) ||
173 (opts.setns.uts != -1) ||
174 (opts.setns.user != -1) ||
175 (opts.setns.cgroup != -1) ||
176 #ifdef CLONE_NEWTIME
177 (opts.setns.time != -1) ||
178 #endif
179 opts.namespace);
180 }
181
182 static void free_hooklist(struct hook_execvpe **hooklist)
183 {
184 struct hook_execvpe *cur;
185 char **tmp;
186
187 if (!hooklist)
188 return;
189
190 cur = *hooklist;
191 while (cur) {
192 free(cur->file);
193 tmp = cur->argv;
194 while (tmp)
195 free(*(tmp++));
196
197 free(cur->argv);
198
199 tmp = cur->envp;
200 while (tmp)
201 free(*(tmp++));
202
203 free(cur->envp);
204 free(cur++);
205 }
206 free(hooklist);
207 }
208
209 static void free_sysctl(void) {
210 struct sysctl_val *cur;
211 cur = *opts.sysctl;
212
213 while (cur) {
214 free(cur->entry);
215 free(cur->value);
216 free(cur++);
217 }
218 free(opts.sysctl);
219 }
220
221 static void free_devices(void) {
222 struct mknod_args **cur;
223
224 if (!opts.devices)
225 return;
226
227 cur = opts.devices;
228
229 while (*cur) {
230 free((*cur)->path);
231 free(*(cur++));
232 }
233 free(opts.devices);
234 }
235
236 static void free_rlimits(void) {
237 int type;
238
239 for (type = 0; type < RLIM_NLIMITS; ++type)
240 free(opts.rlimits[type]);
241 }
242
243 static void free_opts(bool parent) {
244 char **tmp;
245
246 /* we need to keep argv, envp and seccomp filter in child */
247 if (parent) { /* parent-only */
248 if (opts.ociseccomp) {
249 free(opts.ociseccomp->filter);
250 free(opts.ociseccomp);
251 }
252
253 tmp = opts.jail_argv;
254 while(tmp)
255 free(*(tmp++));
256
257 free(opts.jail_argv);
258
259 tmp = opts.envp;
260 while (tmp)
261 free(*(tmp++));
262
263 free(opts.envp);
264 } else { /* child-only */
265 if (opts.ocibundle)
266 cgroups_free();
267 }
268
269 free_rlimits();
270 free_sysctl();
271 free_devices();
272 free(opts.hostname);
273 free(opts.cwd);
274 free(opts.extroot);
275 free(opts.uidmap);
276 free(opts.gidmap);
277 free(opts.annotations);
278 free(opts.ocibundle);
279 free_hooklist(opts.hooks.createRuntime);
280 free_hooklist(opts.hooks.createContainer);
281 free_hooklist(opts.hooks.startContainer);
282 free_hooklist(opts.hooks.poststart);
283 free_hooklist(opts.hooks.poststop);
284 }
285
286 static int mount_overlay(char *jail_root, char *overlaydir) {
287 char *upperdir, *workdir, *optsstr, *upperetc, *upperresolvconf;
288 const char mountoptsformat[] = "lowerdir=%s,upperdir=%s,workdir=%s";
289 int ret = -1, fd;
290
291 if (asprintf(&upperdir, "%s%s", overlaydir, "/upper") < 0)
292 goto out;
293
294 if (asprintf(&workdir, "%s%s", overlaydir, "/work") < 0)
295 goto upper_printf;
296
297 if (asprintf(&optsstr, mountoptsformat, jail_root, upperdir, workdir) < 0)
298 goto work_printf;
299
300 if (mkdir_p(upperdir, 0755) || mkdir_p(workdir, 0755))
301 goto opts_printf;
302
303 /*
304 * make sure /etc/resolv.conf exists in overlay and is owned by jail userns root
305 * this is to work-around a bug in overlayfs described in the overlayfs-userns
306 * patch:
307 * 3. modification of a file 'hithere' which is in l but not yet
308 * in u, and which is not owned by T, is not allowed, even if
309 * writes to u are allowed. This may be a bug in overlayfs,
310 * but it is safe behavior.
311 */
312 if (asprintf(&upperetc, "%s/etc", upperdir) < 0)
313 goto opts_printf;
314
315 if (mkdir_p(upperetc, 0755))
316 goto upper_etc_printf;
317
318 if (asprintf(&upperresolvconf, "%s/resolv.conf", upperetc) < 0)
319 goto upper_etc_printf;
320
321 fd = creat(upperresolvconf, 0644);
322 if (fd == -1) {
323 ERROR("creat(%s) failed: %m\n", upperresolvconf);
324 goto upper_resolvconf_printf;
325 }
326 close(fd);
327
328 DEBUG("mount -t overlay %s %s (%s)\n", jail_root, jail_root, optsstr);
329
330 if (mount(jail_root, jail_root, "overlay", MS_NOATIME, optsstr))
331 goto opts_printf;
332
333 ret = 0;
334
335 upper_resolvconf_printf:
336 free(upperresolvconf);
337 upper_etc_printf:
338 free(upperetc);
339 opts_printf:
340 free(optsstr);
341 work_printf:
342 free(workdir);
343 upper_printf:
344 free(upperdir);
345 out:
346 return ret;
347 }
348
349 static void pass_console(int console_fd)
350 {
351 struct ubus_context *child_ctx = ubus_connect(NULL);
352 static struct blob_buf req;
353 uint32_t id;
354
355 if (!child_ctx)
356 return;
357
358 blob_buf_init(&req, 0);
359 blobmsg_add_string(&req, "name", opts.name);
360
361 if (ubus_lookup_id(child_ctx, "container", &id) ||
362 ubus_invoke_fd(child_ctx, id, "console_set", req.head, NULL, NULL, 3000, console_fd))
363 INFO("ubus request failed\n");
364 else
365 close(console_fd);
366
367 blob_buf_free(&req);
368 ubus_free(child_ctx);
369 }
370
371 static int create_dev_console(const char *jail_root)
372 {
373 char *console_fname;
374 char dev_console_path[PATH_MAX];
375 int slave_console_fd;
376
377 /* Open UNIX/98 virtual console */
378 console_fd = posix_openpt(O_RDWR | O_NOCTTY);
379 if (console_fd == -1)
380 return -1;
381
382 console_fname = ptsname(console_fd);
383 DEBUG("got console fd %d and PTS client name %s\n", console_fd, console_fname);
384 if (!console_fname)
385 goto no_console;
386
387 grantpt(console_fd);
388 unlockpt(console_fd);
389
390 /* pass PTY master to procd */
391 pass_console(console_fd);
392
393 /* mount-bind PTY slave to /dev/console in jail */
394 snprintf(dev_console_path, sizeof(dev_console_path), "%s/dev/console", jail_root);
395 close(creat(dev_console_path, 0620));
396
397 if (mount(console_fname, dev_console_path, NULL, MS_BIND, NULL))
398 goto no_console;
399
400 /* use PTY slave for stdio */
401 slave_console_fd = open(console_fname, O_RDWR); /* | O_NOCTTY */
402 dup2(slave_console_fd, 0);
403 dup2(slave_console_fd, 1);
404 dup2(slave_console_fd, 2);
405 close(slave_console_fd);
406
407 INFO("using guest console %s\n", console_fname);
408
409 return 0;
410
411 no_console:
412 close(console_fd);
413 return 1;
414 }
415
416 static int hook_running = 0;
417 static int hook_return_code = 0;
418 static struct hook_execvpe **current_hook = NULL;
419 typedef void (*hook_return_handler)(void);
420 static hook_return_handler hook_return_cb = NULL;
421
422 static void hook_process_timeout_cb(struct uloop_timeout *t);
423 static struct uloop_timeout hook_process_timeout = {
424 .cb = hook_process_timeout_cb,
425 };
426
427 static void run_hooklist(void);
428 static void hook_process_handler(struct uloop_process *c, int ret)
429 {
430 uloop_timeout_cancel(&hook_process_timeout);
431
432 if (WIFEXITED(ret)) {
433 hook_return_code = WEXITSTATUS(ret);
434 if (hook_return_code)
435 ERROR("hook (%d) exited with exit: %d\n", c->pid, hook_return_code);
436 else
437 DEBUG("hook (%d) exited with exit: %d\n", c->pid, hook_return_code);
438
439 } else {
440 hook_return_code = WTERMSIG(ret);
441 ERROR("hook (%d) exited with signal: %d\n", c->pid, hook_return_code);
442 }
443 hook_running = 0;
444 ++current_hook;
445 run_hooklist();
446 }
447
448 static struct uloop_process hook_process = {
449 .cb = hook_process_handler,
450 };
451
452 static void hook_process_timeout_cb(struct uloop_timeout *t)
453 {
454 DEBUG("hook process failed to stop, sending SIGKILL\n");
455 kill(hook_process.pid, SIGKILL);
456 }
457
458 static void run_hooklist(void)
459 {
460 struct hook_execvpe *hook = *current_hook;
461 struct stat s;
462
463 if (!hook)
464 hook_return_cb();
465
466 DEBUG("executing hook %s\n", hook->file);
467
468 if (stat(hook->file, &s))
469 hook_process_handler(&hook_process, ENOENT);
470
471 if (!((unsigned long)s.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
472 hook_process_handler(&hook_process, EPERM);
473
474 if (!((unsigned long)s.st_mode & (S_IRUSR | S_IRGRP | S_IROTH)))
475 hook_process_handler(&hook_process, EPERM);
476
477 hook_running = 1;
478 hook_process.pid = fork();
479 if (hook_process.pid == 0) {
480 /* child */
481 execve(hook->file, hook->argv, hook->envp);
482 ERROR("execve error %m\n");
483 _exit(errno);
484 } else if (hook_process.pid < 0) {
485 /* fork error */
486 ERROR("hook fork error\n");
487 hook_running = 0;
488 hook_process_handler(&hook_process, errno);
489 }
490
491 /* parent */
492 uloop_process_add(&hook_process);
493
494 if (hook->timeout > 0)
495 uloop_timeout_set(&hook_process_timeout, 1000 * hook->timeout);
496
497 uloop_run();
498 if (hook_running) {
499 DEBUG("uloop interrupted, killing jail process\n");
500 kill(hook_process.pid, SIGTERM);
501 uloop_timeout_set(&hook_process_timeout, 1000);
502 uloop_run();
503 }
504 }
505
506 static void run_hooks(struct hook_execvpe **hooklist, hook_return_handler return_cb)
507 {
508 if (!hooklist)
509 return_cb();
510
511 current_hook = hooklist;
512 hook_return_cb = return_cb;
513
514 run_hooklist();
515 }
516
517 static int apply_sysctl(const char *jail_root)
518 {
519 struct sysctl_val **cur;
520 char *procdir, *fname;
521 int f;
522
523 if (!opts.sysctl)
524 return 0;
525
526 asprintf(&procdir, "%s/proc", jail_root);
527 if (!procdir)
528 return ENOMEM;
529
530 mkdir(procdir, 0700);
531 if (mount("proc", procdir, "proc", MS_NOATIME | MS_NODEV | MS_NOEXEC | MS_NOSUID, 0))
532 return EPERM;
533
534 cur = opts.sysctl;
535
536 while (*cur) {
537 asprintf(&fname, "%s/sys/%s", procdir, (*cur)->entry);
538 if (!fname)
539 return ENOMEM;
540
541 DEBUG("sysctl: writing '%s' to %s\n", (*cur)->value, fname);
542
543 f = open(fname, O_WRONLY);
544 if (f == -1) {
545 ERROR("sysctl: can't open %s\n", fname);
546 return errno;
547 }
548 write(f, (*cur)->value, strlen((*cur)->value));
549
550 free(fname);
551 close(f);
552 ++cur;
553 }
554 umount(procdir);
555 rmdir(procdir);
556 free(procdir);
557
558 return 0;
559 }
560
561 /* glibc defines makedev calling a function. make sure it's a pure macro */
562 #if defined(__GLIBC__)
563 #undef makedev
564 /* from musl's sys/sysmacros.h */
565 #define makedev(x,y) ( \
566 (((x)&0xfffff000ULL) << 32) | \
567 (((x)&0x00000fffULL) << 8) | \
568 (((y)&0xffffff00ULL) << 12) | \
569 (((y)&0x000000ffULL)) )
570 #endif
571
572 static struct mknod_args default_devices[] = {
573 { .path = "/dev/null", .mode = (S_IFCHR|S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH), .dev = makedev(1, 3) },
574 { .path = "/dev/zero", .mode = (S_IFCHR|S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH), .dev = makedev(1, 5) },
575 { .path = "/dev/full", .mode = (S_IFCHR|S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH), .dev = makedev(1, 7) },
576 { .path = "/dev/random", .mode = (S_IFCHR|S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH), .dev = makedev(1, 8) },
577 { .path = "/dev/urandom", .mode = (S_IFCHR|S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH), .dev = makedev(1, 9) },
578 { .path = "/dev/tty", .mode = (S_IFCHR|S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP), .dev = makedev(5, 0), .gid = 5 },
579 { 0 },
580 };
581
582 static int create_devices(void)
583 {
584 struct mknod_args **cur, *curdef;
585
586 if (!opts.devices)
587 goto only_default_devices;
588
589 cur = opts.devices;
590
591 while (*cur) {
592 DEBUG("creating %s (mode=%08o)\n", (*cur)->path, (*cur)->mode);
593 if (mknod((*cur)->path, (*cur)->mode, (*cur)->dev))
594 return errno;
595
596 if (((*cur)->uid || (*cur)->gid) &&
597 chown((*cur)->path, (*cur)->uid, (*cur)->gid))
598 return errno;
599
600 ++cur;
601 }
602
603 only_default_devices:
604 curdef = default_devices;
605 while(curdef->path) {
606 DEBUG("creating %s (mode=%08o)\n", curdef->path, curdef->mode);
607 if (mknod(curdef->path, curdef->mode, curdef->dev)) {
608 ++curdef;
609 continue; /* may already exist, eg. due to a bind-mount */
610 }
611 if ((curdef->uid || curdef->gid) &&
612 chown(curdef->path, curdef->uid, curdef->gid))
613 return errno;
614
615 ++curdef;
616 }
617
618 /* Dev symbolic links as defined in OCI spec */
619 symlink("/dev/pts/ptmx", "/dev/ptmx");
620 symlink("/proc/self/fd", "/dev/fd");
621 symlink("/proc/self/fd/0", "/dev/stdin");
622 symlink("/proc/self/fd/1", "/dev/stdout");
623 symlink("/proc/self/fd/2", "/dev/stderr");
624
625 return 0;
626 }
627
628 static char jail_root[] = "/tmp/ujail-XXXXXX";
629 static char tmpovdir[] = "/tmp/ujail-overlay-XXXXXX";
630 static mode_t old_umask;
631 static void enter_jail_fs(void);
632 static int build_jail_fs(void)
633 {
634 char *overlaydir = NULL;
635
636 old_umask = umask(0);
637
638 if (mkdtemp(jail_root) == NULL) {
639 ERROR("mkdtemp(%s) failed: %m\n", jail_root);
640 return -1;
641 }
642
643 if (apply_sysctl(jail_root)) {
644 ERROR("failed to apply sysctl values\n");
645 return -1;
646 }
647
648 /* oldroot can't be MS_SHARED else pivot_root() fails */
649 if (mount("none", "/", NULL, MS_REC|MS_PRIVATE, NULL)) {
650 ERROR("private mount failed %m\n");
651 return -1;
652 }
653
654 if (opts.extroot) {
655 if (mount(opts.extroot, jail_root, NULL, MS_BIND, NULL)) {
656 ERROR("extroot mount failed %m\n");
657 return -1;
658 }
659 } else {
660 if (mount("tmpfs", jail_root, "tmpfs", MS_NOATIME, "mode=0755")) {
661 ERROR("tmpfs mount failed %m\n");
662 return -1;
663 }
664 }
665
666 if (opts.tmpoverlaysize) {
667 char mountoptsstr[] = "mode=0755,size=XXXXXXXX";
668
669 snprintf(mountoptsstr, sizeof(mountoptsstr),
670 "mode=0755,size=%s", opts.tmpoverlaysize);
671 if (mkdtemp(tmpovdir) == NULL) {
672 ERROR("mkdtemp(%s) failed: %m\n", jail_root);
673 return -1;
674 }
675 if (mount("tmpfs", tmpovdir, "tmpfs", MS_NOATIME,
676 mountoptsstr)) {
677 ERROR("failed to mount tmpfs for overlay (size=%s)\n", opts.tmpoverlaysize);
678 return -1;
679 }
680 overlaydir = tmpovdir;
681 }
682
683 if (opts.overlaydir)
684 overlaydir = opts.overlaydir;
685
686 if (overlaydir)
687 mount_overlay(jail_root, overlaydir);
688
689 if (chdir(jail_root)) {
690 ERROR("chdir(%s) (jail_root) failed: %m\n", jail_root);
691 return -1;
692 }
693
694 if (mount_all(jail_root)) {
695 ERROR("mount_all() failed\n");
696 return -1;
697 }
698
699 if (opts.console)
700 create_dev_console(jail_root);
701
702 /* make sure /etc/resolv.conf exists if in new network namespace */
703 if (opts.namespace & CLONE_NEWNET) {
704 char jailetc[PATH_MAX], jaillink[PATH_MAX];
705
706 snprintf(jailetc, PATH_MAX, "%s/etc", jail_root);
707 mkdir_p(jailetc, 0755);
708 snprintf(jaillink, PATH_MAX, "%s/etc/resolv.conf", jail_root);
709 if (overlaydir)
710 unlink(jaillink);
711
712 symlink("../dev/resolv.conf.d/resolv.conf.auto", jaillink);
713 }
714
715 run_hooks(opts.hooks.createContainer, enter_jail_fs);
716
717 return 0;
718 }
719
720 static void post_jail_fs(void);
721 static void enter_jail_fs(void)
722 {
723 char dirbuf[sizeof(jail_root) + 4];
724
725 snprintf(dirbuf, sizeof(dirbuf), "%s/old", jail_root);
726 mkdir(dirbuf, 0755);
727
728 if (pivot_root(jail_root, dirbuf) == -1) {
729 ERROR("pivot_root(%s, %s) failed: %m\n", jail_root, dirbuf);
730 exit(-1);
731 }
732 if (chdir("/")) {
733 ERROR("chdir(/) (after pivot_root) failed: %m\n");
734 exit(-1);
735 }
736
737 snprintf(dirbuf, sizeof(dirbuf), "/old%s", jail_root);
738 umount2(dirbuf, MNT_DETACH);
739 rmdir(dirbuf);
740 if (opts.tmpoverlaysize) {
741 char tmpdirbuf[sizeof(tmpovdir) + 4];
742 snprintf(tmpdirbuf, sizeof(tmpdirbuf), "/old%s", tmpovdir);
743 umount2(tmpdirbuf, MNT_DETACH);
744 rmdir(tmpdirbuf);
745 }
746
747 umount2("/old", MNT_DETACH);
748 rmdir("/old");
749
750 if (create_devices()) {
751 ERROR("create_devices() failed\n");
752 exit(-1);
753 }
754 if (opts.ronly)
755 mount(NULL, "/", NULL, MS_REMOUNT | MS_BIND | MS_RDONLY, 0);
756
757 umask(old_umask);
758 post_jail_fs();
759 }
760
761 static int write_uid_gid_map(pid_t child_pid, bool gidmap, char *mapstr)
762 {
763 int map_file;
764 char map_path[64];
765
766 if (snprintf(map_path, sizeof(map_path), "/proc/%d/%s",
767 child_pid, gidmap?"gid_map":"uid_map") < 0)
768 return -1;
769
770 if ((map_file = open(map_path, O_WRONLY)) == -1)
771 return -1;
772
773 if (dprintf(map_file, "%s", mapstr)) {
774 close(map_file);
775 return -1;
776 }
777
778 close(map_file);
779 free(mapstr);
780 return 0;
781 }
782
783 static int write_single_uid_gid_map(pid_t child_pid, bool gidmap, int id)
784 {
785 int map_file;
786 char map_path[64];
787 const char *map_format = "%d %d %d\n";
788 if (snprintf(map_path, sizeof(map_path), "/proc/%d/%s",
789 child_pid, gidmap?"gid_map":"uid_map") < 0)
790 return -1;
791
792 if ((map_file = open(map_path, O_WRONLY)) == -1)
793 return -1;
794
795 if (dprintf(map_file, map_format, 0, id, 1) == -1) {
796 close(map_file);
797 return -1;
798 }
799
800 close(map_file);
801 return 0;
802 }
803
804 static int write_setgroups(pid_t child_pid, bool allow)
805 {
806 int setgroups_file;
807 char setgroups_path[64];
808
809 if (snprintf(setgroups_path, sizeof(setgroups_path), "/proc/%d/setgroups",
810 child_pid) < 0) {
811 return -1;
812 }
813
814 if ((setgroups_file = open(setgroups_path, O_WRONLY)) == -1) {
815 return -1;
816 }
817
818 if (dprintf(setgroups_file, "%s", allow?"allow":"deny") == -1) {
819 close(setgroups_file);
820 return -1;
821 }
822
823 close(setgroups_file);
824 return 0;
825 }
826
827 static void get_jail_user(int *user, int *user_gid, int *gr_gid)
828 {
829 struct passwd *p = NULL;
830 struct group *g = NULL;
831
832 if (opts.user) {
833 p = getpwnam(opts.user);
834 if (!p) {
835 ERROR("failed to get uid/gid for user %s: %d (%s)\n",
836 opts.user, errno, strerror(errno));
837 exit(EXIT_FAILURE);
838 }
839 *user = p->pw_uid;
840 *user_gid = p->pw_gid;
841 } else {
842 *user = -1;
843 *user_gid = -1;
844 }
845
846 if (opts.group) {
847 g = getgrnam(opts.group);
848 if (!g) {
849 ERROR("failed to get gid for group %s: %m\n", opts.group);
850 exit(EXIT_FAILURE);
851 }
852 *gr_gid = g->gr_gid;
853 } else {
854 *gr_gid = -1;
855 }
856 };
857
858 static void set_jail_user(int pw_uid, int user_gid, int gr_gid)
859 {
860 if (opts.user && (user_gid != -1) && initgroups(opts.user, user_gid)) {
861 ERROR("failed to initgroups() for user %s: %m\n", opts.user);
862 exit(EXIT_FAILURE);
863 }
864
865 if ((gr_gid != -1) && setregid(gr_gid, gr_gid)) {
866 ERROR("failed to set group id %d: %m\n", gr_gid);
867 exit(EXIT_FAILURE);
868 }
869
870 if ((pw_uid != -1) && setreuid(pw_uid, pw_uid)) {
871 ERROR("failed to set user id %d: %m\n", pw_uid);
872 exit(EXIT_FAILURE);
873 }
874 }
875
876 static int apply_rlimits(void)
877 {
878 int resource;
879
880 for (resource = 0; resource < RLIM_NLIMITS; ++resource) {
881 if (opts.rlimits[resource])
882 DEBUG("applying limits to resource %u\n", resource);
883
884 if (opts.rlimits[resource] &&
885 setrlimit(resource, opts.rlimits[resource]))
886 return errno;
887 }
888
889 return 0;
890 }
891
892 #define MAX_ENVP 8
893 static char** build_envp(const char *seccomp, char **ocienvp)
894 {
895 static char *envp[MAX_ENVP];
896 static char preload_var[PATH_MAX];
897 static char seccomp_var[PATH_MAX];
898 static char debug_var[] = "LD_DEBUG=all";
899 static char container_var[] = "container=ujail";
900 const char *preload_lib = find_lib("libpreload-seccomp.so");
901 char **addenv;
902
903 int count = 0;
904
905 if (seccomp && !preload_lib) {
906 ERROR("failed to add preload-lib to env\n");
907 return NULL;
908 }
909 if (seccomp) {
910 snprintf(seccomp_var, sizeof(seccomp_var), "SECCOMP_FILE=%s", seccomp);
911 envp[count++] = seccomp_var;
912 snprintf(preload_var, sizeof(preload_var), "LD_PRELOAD=%s", preload_lib);
913 envp[count++] = preload_var;
914 }
915
916 envp[count++] = container_var;
917
918 if (debug > 1)
919 envp[count++] = debug_var;
920
921 addenv = ocienvp;
922 while (addenv && *addenv) {
923 envp[count++] = *(addenv++);
924 if (count >= MAX_ENVP) {
925 ERROR("environment limited to %d extra records, truncating\n", MAX_ENVP);
926 break;
927 }
928 }
929 return envp;
930 }
931
932 static void usage(void)
933 {
934 fprintf(stderr, "ujail <options> -- <binary> <params ...>\n");
935 fprintf(stderr, " -d <num>\tshow debug log (increase num to increase verbosity)\n");
936 fprintf(stderr, " -S <file>\tseccomp filter config\n");
937 fprintf(stderr, " -C <file>\tcapabilities drop config\n");
938 fprintf(stderr, " -c\t\tset PR_SET_NO_NEW_PRIVS\n");
939 fprintf(stderr, " -n <name>\tthe name of the jail\n");
940 fprintf(stderr, "namespace jail options:\n");
941 fprintf(stderr, " -h <hostname>\tchange the hostname of the jail\n");
942 fprintf(stderr, " -N\t\tjail has network namespace\n");
943 fprintf(stderr, " -f\t\tjail has user namespace\n");
944 fprintf(stderr, " -F\t\tjail has cgroups namespace\n");
945 fprintf(stderr, " -r <file>\treadonly files that should be staged\n");
946 fprintf(stderr, " -w <file>\twriteable files that should be staged\n");
947 fprintf(stderr, " -p\t\tjail has /proc\n");
948 fprintf(stderr, " -s\t\tjail has /sys\n");
949 fprintf(stderr, " -l\t\tjail has /dev/log\n");
950 fprintf(stderr, " -u\t\tjail has a ubus socket\n");
951 fprintf(stderr, " -U <name>\tuser to run jailed process\n");
952 fprintf(stderr, " -G <name>\tgroup to run jailed process\n");
953 fprintf(stderr, " -o\t\tremont jail root (/) read only\n");
954 fprintf(stderr, " -R <dir>\texternal jail rootfs (system container)\n");
955 fprintf(stderr, " -O <dir>\tdirectory for r/w overlayfs\n");
956 fprintf(stderr, " -T <size>\tuse tmpfs r/w overlayfs with <size>\n");
957 fprintf(stderr, " -E\t\tfail if jail cannot be setup\n");
958 fprintf(stderr, " -y\t\tprovide jail console\n");
959 fprintf(stderr, " -J <dir>\tcreate container from OCI bundle\n");
960 fprintf(stderr, " -j\t\tstart container immediately\n");
961 fprintf(stderr, "\nWarning: by default root inside the jail is the same\n\
962 and he has the same powers as root outside the jail,\n\
963 thus he can escape the jail and/or break stuff.\n\
964 Please use seccomp/capabilities (-S/-C) to restrict his powers\n\n\
965 If you use none of the namespace jail options,\n\
966 ujail will not use namespace/build a jail,\n\
967 and will only drop capabilities/apply seccomp filter.\n\n");
968 }
969
970 static int* get_namespace_fd(const unsigned int nstype)
971 {
972 switch (nstype) {
973 case CLONE_NEWPID:
974 return &opts.setns.pid;
975 case CLONE_NEWNET:
976 return &opts.setns.net;
977 case CLONE_NEWNS:
978 return &opts.setns.ns;
979 case CLONE_NEWIPC:
980 return &opts.setns.ipc;
981 case CLONE_NEWUTS:
982 return &opts.setns.uts;
983 case CLONE_NEWUSER:
984 return &opts.setns.user;
985 case CLONE_NEWCGROUP:
986 return &opts.setns.cgroup;
987 #ifdef CLONE_NEWTIME
988 case CLONE_NEWTIME:
989 return &opts.setns.time;
990 #endif
991 default:
992 return NULL;
993 }
994 }
995
996 static int setns_open(unsigned long nstype)
997 {
998 int *fd = get_namespace_fd(nstype);
999
1000 if (!*fd)
1001 return EFAULT;
1002
1003 if (*fd == -1)
1004 return 0;
1005
1006 if (setns(*fd, nstype) == -1) {
1007 close(*fd);
1008 return errno;
1009 }
1010
1011 close(*fd);
1012 return 0;
1013 }
1014
1015 static int jail_running = 0;
1016 static int jail_return_code = 0;
1017
1018 static void jail_process_timeout_cb(struct uloop_timeout *t);
1019 static struct uloop_timeout jail_process_timeout = {
1020 .cb = jail_process_timeout_cb,
1021 };
1022 static void poststop(void);
1023 static void jail_process_handler(struct uloop_process *c, int ret)
1024 {
1025 uloop_timeout_cancel(&jail_process_timeout);
1026 if (WIFEXITED(ret)) {
1027 jail_return_code = WEXITSTATUS(ret);
1028 INFO("jail (%d) exited with exit: %d\n", c->pid, jail_return_code);
1029 } else {
1030 jail_return_code = WTERMSIG(ret);
1031 INFO("jail (%d) exited with signal: %d\n", c->pid, jail_return_code);
1032 }
1033 jail_running = 0;
1034 poststop();
1035 }
1036
1037 static struct uloop_process jail_process = {
1038 .cb = jail_process_handler,
1039 };
1040
1041 static void jail_process_timeout_cb(struct uloop_timeout *t)
1042 {
1043 DEBUG("jail process failed to stop, sending SIGKILL\n");
1044 kill(jail_process.pid, SIGKILL);
1045 }
1046
1047 static void jail_handle_signal(int signo)
1048 {
1049 if (hook_running) {
1050 DEBUG("forwarding signal %d to the hook process\n", signo);
1051 kill(hook_process.pid, signo);
1052 }
1053
1054 if (jail_running) {
1055 DEBUG("forwarding signal %d to the jailed process\n", signo);
1056 kill(jail_process.pid, signo);
1057 }
1058 }
1059
1060 static void signals_init(void)
1061 {
1062 int i;
1063 sigset_t sigmask;
1064
1065 sigfillset(&sigmask);
1066 for (i = 0; i < _NSIG; i++) {
1067 struct sigaction s = { 0 };
1068
1069 if (!sigismember(&sigmask, i))
1070 continue;
1071 if ((i == SIGCHLD) || (i == SIGPIPE) || (i == SIGSEGV))
1072 continue;
1073
1074 s.sa_handler = jail_handle_signal;
1075 sigaction(i, &s, NULL);
1076 }
1077 }
1078
1079 static void pre_exec_jail(struct uloop_timeout *t);
1080 static struct uloop_timeout pre_exec_timeout = {
1081 .cb = pre_exec_jail,
1082 };
1083
1084 int pipes[4];
1085 static int exec_jail(void *arg)
1086 {
1087 char buf[1];
1088
1089 uloop_init();
1090 signals_init();
1091
1092 close(pipes[0]);
1093 close(pipes[3]);
1094
1095 setns_open(CLONE_NEWUSER);
1096 setns_open(CLONE_NEWNET);
1097 setns_open(CLONE_NEWNS);
1098 setns_open(CLONE_NEWIPC);
1099 setns_open(CLONE_NEWUTS);
1100
1101 buf[0] = 'i';
1102 if (write(pipes[1], buf, 1) < 1) {
1103 ERROR("can't write to parent\n");
1104 return EXIT_FAILURE;
1105 }
1106 close(pipes[1]);
1107 if (read(pipes[2], buf, 1) < 1) {
1108 ERROR("can't read from parent\n");
1109 return EXIT_FAILURE;
1110 }
1111 if (buf[0] != 'O') {
1112 ERROR("parent had an error, child exiting\n");
1113 return EXIT_FAILURE;
1114 }
1115
1116 if (opts.namespace & CLONE_NEWCGROUP)
1117 unshare(CLONE_NEWCGROUP);
1118
1119 if ((opts.namespace & CLONE_NEWUSER) || (opts.setns.user != -1)) {
1120 if (setregid(0, 0) < 0) {
1121 ERROR("setgid\n");
1122 exit(EXIT_FAILURE);
1123 }
1124 if (setreuid(0, 0) < 0) {
1125 ERROR("setuid\n");
1126 exit(EXIT_FAILURE);
1127 }
1128 if (setgroups(0, NULL) < 0) {
1129 ERROR("setgroups\n");
1130 exit(EXIT_FAILURE);
1131 }
1132 }
1133
1134 if (opts.namespace && opts.hostname && strlen(opts.hostname) > 0
1135 && sethostname(opts.hostname, strlen(opts.hostname))) {
1136 ERROR("sethostname(%s) failed: %m\n", opts.hostname);
1137 exit(EXIT_FAILURE);
1138 }
1139
1140 uloop_timeout_add(&pre_exec_timeout);
1141 uloop_run();
1142
1143 exit(-1);
1144 }
1145
1146 static void pre_exec_jail(struct uloop_timeout *t)
1147 {
1148 if ((opts.namespace & CLONE_NEWNS) && build_jail_fs()) {
1149 ERROR("failed to build jail fs\n");
1150 exit(EXIT_FAILURE);
1151 } else {
1152 run_hooks(opts.hooks.createContainer, post_jail_fs);
1153 }
1154 }
1155
1156 static void post_start_hook(void);
1157 static void post_jail_fs(void)
1158 {
1159 char buf[1];
1160
1161 if (read(pipes[2], buf, 1) < 1) {
1162 ERROR("can't read from parent\n");
1163 exit(EXIT_FAILURE);
1164 }
1165 if (buf[0] != '!') {
1166 ERROR("parent had an error, child exiting\n");
1167 exit(EXIT_FAILURE);
1168 }
1169 close(pipes[2]);
1170
1171 run_hooks(opts.hooks.startContainer, post_start_hook);
1172 }
1173
1174 static void post_start_hook(void)
1175 {
1176 int pw_uid, pw_gid, gr_gid;
1177
1178 if (prctl(PR_SET_SECUREBITS, SECBIT_NO_SETUID_FIXUP)) {
1179 ERROR("prctl(PR_SET_SECUREBITS) failed: %m\n");
1180 exit(EXIT_FAILURE);
1181 }
1182
1183 /* drop capabilities, retain those still needed to further setup jail */
1184 if (applyOCIcapabilities(opts.capset, (1LLU << CAP_SETGID) | (1LLU << CAP_SETUID) | (1LLU << CAP_SETPCAP)))
1185 exit(EXIT_FAILURE);
1186
1187 /* use either cmdline-supplied user/group or uid/gid from OCI spec */
1188 get_jail_user(&pw_uid, &pw_gid, &gr_gid);
1189 set_jail_user(opts.pw_uid?:pw_uid, opts.pw_gid?:pw_gid, opts.gr_gid?:gr_gid);
1190
1191 if (opts.additional_gids &&
1192 (setgroups(opts.num_additional_gids, opts.additional_gids) < 0)) {
1193 ERROR("setgroups failed: %m\n");
1194 exit(EXIT_FAILURE);
1195 }
1196
1197 if (opts.set_umask)
1198 umask(opts.umask);
1199
1200 if (prctl(PR_SET_SECUREBITS, 0)) {
1201 ERROR("prctl(PR_SET_SECUREBITS) failed: %m\n");
1202 exit(EXIT_FAILURE);
1203 }
1204
1205 /* drop remaining capabilities to end up with specified sets */
1206 if (applyOCIcapabilities(opts.capset, 0))
1207 exit(EXIT_FAILURE);
1208
1209 if (opts.no_new_privs && prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0)) {
1210 ERROR("prctl(PR_SET_NO_NEW_PRIVS) failed: %m\n");
1211 exit(EXIT_FAILURE);
1212 }
1213
1214 char **envp = build_envp(opts.seccomp, opts.envp);
1215 if (!envp)
1216 exit(EXIT_FAILURE);
1217
1218 if (opts.cwd && chdir(opts.cwd))
1219 exit(EXIT_FAILURE);
1220
1221 if (opts.ociseccomp && applyOCIlinuxseccomp(opts.ociseccomp))
1222 exit(EXIT_FAILURE);
1223
1224 uloop_end();
1225 free_opts(false);
1226 INFO("exec-ing %s\n", *opts.jail_argv);
1227 if (opts.envp) /* respect PATH if potentially set in ENV */
1228 execvpe(*opts.jail_argv, opts.jail_argv, envp);
1229 else
1230 execve(*opts.jail_argv, opts.jail_argv, envp);
1231
1232 /* we get there only if execve fails */
1233 ERROR("failed to execve %s: %m\n", *opts.jail_argv);
1234 exit(EXIT_FAILURE);
1235 }
1236
1237 static int ns_open_pid(const char *nstype, const pid_t target_ns)
1238 {
1239 char pid_pid_path[PATH_MAX];
1240
1241 snprintf(pid_pid_path, sizeof(pid_pid_path), "/proc/%u/ns/%s", target_ns, nstype);
1242
1243 return open(pid_pid_path, O_RDONLY);
1244 }
1245
1246 static void netns_updown(pid_t pid, bool start)
1247 {
1248 static struct blob_buf req;
1249 uint32_t id;
1250
1251 if (!parent_ctx)
1252 return;
1253
1254 blob_buf_init(&req, 0);
1255 blobmsg_add_string(&req, "jail", opts.name);
1256 blobmsg_add_u32(&req, "pid", pid);
1257 blobmsg_add_u8(&req, "start", start);
1258
1259 if (ubus_lookup_id(parent_ctx, "network", &id) ||
1260 ubus_invoke(parent_ctx, id, "netns_updown", req.head, NULL, NULL, 3000))
1261 INFO("ubus request failed\n");
1262
1263 blob_buf_free(&req);
1264 }
1265
1266 static int parseOCIenvarray(struct blob_attr *msg, char ***envp)
1267 {
1268 struct blob_attr *cur;
1269 int sz = 0, rem;
1270
1271 blobmsg_for_each_attr(cur, msg, rem)
1272 ++sz;
1273
1274 if (sz > 0) {
1275 *envp = calloc(1 + sz, sizeof(char*));
1276 if (!(*envp))
1277 return ENOMEM;
1278 } else {
1279 *envp = NULL;
1280 return 0;
1281 }
1282
1283 sz = 0;
1284 blobmsg_for_each_attr(cur, msg, rem)
1285 (*envp)[sz++] = strdup(blobmsg_get_string(cur));
1286
1287 if (sz)
1288 (*envp)[sz] = NULL;
1289
1290 return 0;
1291 }
1292
1293 enum {
1294 OCI_ROOT_PATH,
1295 OCI_ROOT_READONLY,
1296 __OCI_ROOT_MAX,
1297 };
1298
1299 static const struct blobmsg_policy oci_root_policy[] = {
1300 [OCI_ROOT_PATH] = { "path", BLOBMSG_TYPE_STRING },
1301 [OCI_ROOT_READONLY] = { "readonly", BLOBMSG_TYPE_BOOL },
1302 };
1303
1304 static int parseOCIroot(const char *jsonfile, struct blob_attr *msg)
1305 {
1306 static char rootpath[PATH_MAX] = { 0 };
1307 struct blob_attr *tb[__OCI_ROOT_MAX];
1308 char *cur;
1309
1310 blobmsg_parse(oci_root_policy, __OCI_ROOT_MAX, tb, blobmsg_data(msg), blobmsg_len(msg));
1311
1312 if (!tb[OCI_ROOT_PATH])
1313 return ENODATA;
1314
1315 strncpy(rootpath, jsonfile, PATH_MAX);
1316 cur = strrchr(rootpath, '/');
1317
1318 if (!cur)
1319 return ENOTDIR;
1320
1321 *(++cur) = '\0';
1322 strncat(rootpath, blobmsg_get_string(tb[OCI_ROOT_PATH]), PATH_MAX - (strlen(rootpath) + 1));
1323
1324 opts.extroot = rootpath;
1325
1326 opts.ronly = blobmsg_get_bool(tb[OCI_ROOT_READONLY]);
1327
1328 return 0;
1329 }
1330
1331
1332 enum {
1333 OCI_HOOK_PATH,
1334 OCI_HOOK_ARGS,
1335 OCI_HOOK_ENV,
1336 OCI_HOOK_TIMEOUT,
1337 __OCI_HOOK_MAX,
1338 };
1339
1340 static const struct blobmsg_policy oci_hook_policy[] = {
1341 [OCI_HOOK_PATH] = { "path", BLOBMSG_TYPE_STRING },
1342 [OCI_HOOK_ARGS] = { "args", BLOBMSG_TYPE_ARRAY },
1343 [OCI_HOOK_ENV] = { "env", BLOBMSG_TYPE_ARRAY },
1344 [OCI_HOOK_TIMEOUT] = { "timeout", BLOBMSG_TYPE_INT32 },
1345 };
1346
1347
1348 static int parseOCIhook(struct hook_execvpe ***hooklist, struct blob_attr *msg)
1349 {
1350 struct blob_attr *tb[__OCI_HOOK_MAX];
1351 struct blob_attr *cur;
1352 int rem, ret = 0;
1353 int idx = 0;
1354
1355 blobmsg_for_each_attr(cur, msg, rem)
1356 ++idx;
1357
1358 if (!idx)
1359 return 0;
1360
1361 *hooklist = calloc(idx + 1, sizeof(struct hook_execvpe *));
1362 idx = 0;
1363
1364 if (!(*hooklist))
1365 return ENOMEM;
1366
1367 blobmsg_for_each_attr(cur, msg, rem) {
1368 blobmsg_parse(oci_hook_policy, __OCI_HOOK_MAX, tb, blobmsg_data(cur), blobmsg_len(cur));
1369
1370 if (!tb[OCI_HOOK_PATH]) {
1371 ret = EINVAL;
1372 goto errout;
1373 }
1374
1375 (*hooklist)[idx] = calloc(1, sizeof(struct hook_execvpe));
1376 if (tb[OCI_HOOK_ARGS]) {
1377 ret = parseOCIenvarray(tb[OCI_HOOK_ARGS], &((*hooklist)[idx]->argv));
1378 if (ret)
1379 goto errout;
1380 } else {
1381 (*hooklist)[idx]->argv = calloc(2, sizeof(char *));
1382 ((*hooklist)[idx]->argv)[0] = strdup(blobmsg_get_string(tb[OCI_HOOK_PATH]));
1383 ((*hooklist)[idx]->argv)[1] = NULL;
1384 };
1385
1386
1387 if (tb[OCI_HOOK_ENV]) {
1388 ret = parseOCIenvarray(tb[OCI_HOOK_ENV], &((*hooklist)[idx]->envp));
1389 if (ret)
1390 goto errout;
1391 }
1392
1393 if (tb[OCI_HOOK_TIMEOUT])
1394 (*hooklist)[idx]->timeout = blobmsg_get_u32(tb[OCI_HOOK_TIMEOUT]);
1395
1396 (*hooklist)[idx]->file = strdup(blobmsg_get_string(tb[OCI_HOOK_PATH]));
1397
1398 ++idx;
1399 }
1400
1401 (*hooklist)[idx] = NULL;
1402
1403 DEBUG("added %d hooks\n", idx);
1404
1405 return 0;
1406
1407 errout:
1408 free_hooklist(*hooklist);
1409 *hooklist = NULL;
1410
1411 return ret;
1412 };
1413
1414
1415 enum {
1416 OCI_HOOKS_PRESTART,
1417 OCI_HOOKS_CREATERUNTIME,
1418 OCI_HOOKS_CREATECONTAINER,
1419 OCI_HOOKS_STARTCONTAINER,
1420 OCI_HOOKS_POSTSTART,
1421 OCI_HOOKS_POSTSTOP,
1422 __OCI_HOOKS_MAX,
1423 };
1424
1425 static const struct blobmsg_policy oci_hooks_policy[] = {
1426 [OCI_HOOKS_PRESTART] = { "prestart", BLOBMSG_TYPE_ARRAY },
1427 [OCI_HOOKS_CREATERUNTIME] = { "createRuntime", BLOBMSG_TYPE_ARRAY },
1428 [OCI_HOOKS_CREATECONTAINER] = { "createContainer", BLOBMSG_TYPE_ARRAY },
1429 [OCI_HOOKS_STARTCONTAINER] = { "startContainer", BLOBMSG_TYPE_ARRAY },
1430 [OCI_HOOKS_POSTSTART] = { "poststart", BLOBMSG_TYPE_ARRAY },
1431 [OCI_HOOKS_POSTSTOP] = { "poststop", BLOBMSG_TYPE_ARRAY },
1432 };
1433
1434 static int parseOCIhooks(struct blob_attr *msg)
1435 {
1436 struct blob_attr *tb[__OCI_HOOKS_MAX];
1437 int ret;
1438
1439 blobmsg_parse(oci_hooks_policy, __OCI_HOOKS_MAX, tb, blobmsg_data(msg), blobmsg_len(msg));
1440
1441 if (tb[OCI_HOOKS_PRESTART])
1442 INFO("warning: ignoring deprecated prestart hook\n");
1443
1444 if (tb[OCI_HOOKS_CREATERUNTIME]) {
1445 ret = parseOCIhook(&opts.hooks.createRuntime, tb[OCI_HOOKS_CREATERUNTIME]);
1446 if (ret)
1447 return ret;
1448 }
1449
1450 if (tb[OCI_HOOKS_CREATECONTAINER]) {
1451 ret = parseOCIhook(&opts.hooks.createContainer, tb[OCI_HOOKS_CREATECONTAINER]);
1452 if (ret)
1453 goto out_createruntime;
1454 }
1455
1456 if (tb[OCI_HOOKS_STARTCONTAINER]) {
1457 ret = parseOCIhook(&opts.hooks.startContainer, tb[OCI_HOOKS_STARTCONTAINER]);
1458 if (ret)
1459 goto out_createcontainer;
1460 }
1461
1462 if (tb[OCI_HOOKS_POSTSTART]) {
1463 ret = parseOCIhook(&opts.hooks.poststart, tb[OCI_HOOKS_POSTSTART]);
1464 if (ret)
1465 goto out_startcontainer;
1466 }
1467
1468 if (tb[OCI_HOOKS_POSTSTOP]) {
1469 ret = parseOCIhook(&opts.hooks.poststop, tb[OCI_HOOKS_POSTSTOP]);
1470 if (ret)
1471 goto out_poststart;
1472 }
1473
1474 return 0;
1475
1476 out_poststart:
1477 free_hooklist(opts.hooks.poststart);
1478 out_startcontainer:
1479 free_hooklist(opts.hooks.startContainer);
1480 out_createcontainer:
1481 free_hooklist(opts.hooks.createContainer);
1482 out_createruntime:
1483 free_hooklist(opts.hooks.createRuntime);
1484
1485 return ret;
1486 };
1487
1488
1489 enum {
1490 OCI_PROCESS_USER_UID,
1491 OCI_PROCESS_USER_GID,
1492 OCI_PROCESS_USER_UMASK,
1493 OCI_PROCESS_USER_ADDITIONALGIDS,
1494 __OCI_PROCESS_USER_MAX,
1495 };
1496
1497 static const struct blobmsg_policy oci_process_user_policy[] = {
1498 [OCI_PROCESS_USER_UID] = { "uid", BLOBMSG_TYPE_INT32 },
1499 [OCI_PROCESS_USER_GID] = { "gid", BLOBMSG_TYPE_INT32 },
1500 [OCI_PROCESS_USER_UMASK] = { "umask", BLOBMSG_TYPE_INT32 },
1501 [OCI_PROCESS_USER_ADDITIONALGIDS] = { "additionalGids", BLOBMSG_TYPE_ARRAY },
1502 };
1503
1504 static int parseOCIprocessuser(struct blob_attr *msg) {
1505 struct blob_attr *tb[__OCI_PROCESS_USER_MAX];
1506 struct blob_attr *cur;
1507 int rem;
1508 int has_gid = 0;
1509
1510 blobmsg_parse(oci_process_user_policy, __OCI_PROCESS_USER_MAX, tb, blobmsg_data(msg), blobmsg_len(msg));
1511
1512 if (tb[OCI_PROCESS_USER_UID])
1513 opts.pw_uid = blobmsg_get_u32(tb[OCI_PROCESS_USER_UID]);
1514
1515 if (tb[OCI_PROCESS_USER_GID]) {
1516 opts.pw_gid = blobmsg_get_u32(tb[OCI_PROCESS_USER_GID]);
1517 opts.gr_gid = blobmsg_get_u32(tb[OCI_PROCESS_USER_GID]);
1518 has_gid = 1;
1519 }
1520
1521 if (tb[OCI_PROCESS_USER_ADDITIONALGIDS]) {
1522 size_t gidcnt = 0;
1523
1524 blobmsg_for_each_attr(cur, tb[OCI_PROCESS_USER_ADDITIONALGIDS], rem) {
1525 ++gidcnt;
1526 if (has_gid && (blobmsg_get_u32(cur) == opts.gr_gid))
1527 continue;
1528 }
1529
1530 if (gidcnt) {
1531 opts.additional_gids = calloc(gidcnt + has_gid, sizeof(gid_t));
1532 gidcnt = 0;
1533
1534 /* always add primary GID to set of GIDs if set */
1535 if (has_gid)
1536 opts.additional_gids[gidcnt++] = opts.gr_gid;
1537
1538 blobmsg_for_each_attr(cur, tb[OCI_PROCESS_USER_ADDITIONALGIDS], rem) {
1539 if (has_gid && (blobmsg_get_u32(cur) == opts.gr_gid))
1540 continue;
1541 opts.additional_gids[gidcnt++] = blobmsg_get_u32(cur);
1542 }
1543 opts.num_additional_gids = gidcnt;
1544 }
1545 DEBUG("read %zu additional groups\n", gidcnt);
1546 }
1547
1548 if (tb[OCI_PROCESS_USER_UMASK]) {
1549 opts.umask = blobmsg_get_u32(tb[OCI_PROCESS_USER_UMASK]);
1550 opts.set_umask = true;
1551 }
1552
1553 return 0;
1554 }
1555
1556 enum {
1557 OCI_PROCESS_RLIMIT_TYPE,
1558 OCI_PROCESS_RLIMIT_SOFT,
1559 OCI_PROCESS_RLIMIT_HARD,
1560 __OCI_PROCESS_RLIMIT_MAX,
1561 };
1562
1563 static const struct blobmsg_policy oci_process_rlimit_policy[] = {
1564 [OCI_PROCESS_RLIMIT_TYPE] = { "type", BLOBMSG_TYPE_STRING },
1565 [OCI_PROCESS_RLIMIT_SOFT] = { "soft", BLOBMSG_CAST_INT64 },
1566 [OCI_PROCESS_RLIMIT_HARD] = { "hard", BLOBMSG_CAST_INT64 },
1567 };
1568
1569 /* from manpage GETRLIMIT(2) */
1570 static const char* const rlimit_names[RLIM_NLIMITS] = {
1571 [RLIMIT_AS] = "AS",
1572 [RLIMIT_CORE] = "CORE",
1573 [RLIMIT_CPU] = "CPU",
1574 [RLIMIT_DATA] = "DATA",
1575 [RLIMIT_FSIZE] = "FSIZE",
1576 [RLIMIT_LOCKS] = "LOCKS",
1577 [RLIMIT_MEMLOCK] = "MEMLOCK",
1578 [RLIMIT_MSGQUEUE] = "MSGQUEUE",
1579 [RLIMIT_NICE] = "NICE",
1580 [RLIMIT_NOFILE] = "NOFILE",
1581 [RLIMIT_NPROC] = "NPROC",
1582 [RLIMIT_RSS] = "RSS",
1583 [RLIMIT_RTPRIO] = "RTPRIO",
1584 [RLIMIT_RTTIME] = "RTTIME",
1585 [RLIMIT_SIGPENDING] = "SIGPENDING",
1586 [RLIMIT_STACK] = "STACK",
1587 };
1588
1589 static int resolve_rlimit(char *type) {
1590 unsigned int rltype;
1591
1592 for (rltype = 0; rltype < RLIM_NLIMITS; ++rltype)
1593 if (rlimit_names[rltype] &&
1594 !strncmp("RLIMIT_", type, 7) &&
1595 !strcmp(rlimit_names[rltype], type + 7))
1596 return rltype;
1597
1598 return -1;
1599 }
1600
1601
1602 static int parseOCIrlimit(struct blob_attr *msg)
1603 {
1604 struct blob_attr *tb[__OCI_PROCESS_RLIMIT_MAX];
1605 int limtype = -1;
1606 struct rlimit *curlim;
1607
1608 blobmsg_parse(oci_process_rlimit_policy, __OCI_PROCESS_RLIMIT_MAX, tb, blobmsg_data(msg), blobmsg_len(msg));
1609
1610 if (!tb[OCI_PROCESS_RLIMIT_TYPE] ||
1611 !tb[OCI_PROCESS_RLIMIT_SOFT] ||
1612 !tb[OCI_PROCESS_RLIMIT_HARD])
1613 return ENODATA;
1614
1615 limtype = resolve_rlimit(blobmsg_get_string(tb[OCI_PROCESS_RLIMIT_TYPE]));
1616
1617 if (limtype < 0)
1618 return EINVAL;
1619
1620 if (opts.rlimits[limtype])
1621 return ENOTUNIQ;
1622
1623 curlim = malloc(sizeof(struct rlimit));
1624 curlim->rlim_cur = blobmsg_cast_u64(tb[OCI_PROCESS_RLIMIT_SOFT]);
1625 curlim->rlim_max = blobmsg_cast_u64(tb[OCI_PROCESS_RLIMIT_HARD]);
1626
1627 opts.rlimits[limtype] = curlim;
1628
1629 return 0;
1630 };
1631
1632 enum {
1633 OCI_PROCESS_ARGS,
1634 OCI_PROCESS_CAPABILITIES,
1635 OCI_PROCESS_CWD,
1636 OCI_PROCESS_ENV,
1637 OCI_PROCESS_OOMSCOREADJ,
1638 OCI_PROCESS_NONEWPRIVILEGES,
1639 OCI_PROCESS_RLIMITS,
1640 OCI_PROCESS_TERMINAL,
1641 OCI_PROCESS_USER,
1642 __OCI_PROCESS_MAX,
1643 };
1644
1645 static const struct blobmsg_policy oci_process_policy[] = {
1646 [OCI_PROCESS_ARGS] = { "args", BLOBMSG_TYPE_ARRAY },
1647 [OCI_PROCESS_CAPABILITIES] = { "capabilities", BLOBMSG_TYPE_TABLE },
1648 [OCI_PROCESS_CWD] = { "cwd", BLOBMSG_TYPE_STRING },
1649 [OCI_PROCESS_ENV] = { "env", BLOBMSG_TYPE_ARRAY },
1650 [OCI_PROCESS_OOMSCOREADJ] = { "oomScoreAdj", BLOBMSG_TYPE_INT32 },
1651 [OCI_PROCESS_NONEWPRIVILEGES] = { "noNewPrivileges", BLOBMSG_TYPE_BOOL },
1652 [OCI_PROCESS_RLIMITS] = { "rlimits", BLOBMSG_TYPE_ARRAY },
1653 [OCI_PROCESS_TERMINAL] = { "terminal", BLOBMSG_TYPE_BOOL },
1654 [OCI_PROCESS_USER] = { "user", BLOBMSG_TYPE_TABLE },
1655 };
1656
1657
1658 static int parseOCIprocess(struct blob_attr *msg)
1659 {
1660 struct blob_attr *tb[__OCI_PROCESS_MAX], *cur;
1661 int rem, res;
1662
1663 blobmsg_parse(oci_process_policy, __OCI_PROCESS_MAX, tb, blobmsg_data(msg), blobmsg_len(msg));
1664
1665 if (!tb[OCI_PROCESS_ARGS])
1666 return ENOENT;
1667
1668 res = parseOCIenvarray(tb[OCI_PROCESS_ARGS], &opts.jail_argv);
1669 if (res)
1670 return res;
1671
1672 opts.console = blobmsg_get_bool(tb[OCI_PROCESS_TERMINAL]);
1673 opts.no_new_privs = blobmsg_get_bool(tb[OCI_PROCESS_NONEWPRIVILEGES]);
1674
1675 if (tb[OCI_PROCESS_CWD])
1676 opts.cwd = strdup(blobmsg_get_string(tb[OCI_PROCESS_CWD]));
1677
1678 if (tb[OCI_PROCESS_ENV]) {
1679 res = parseOCIenvarray(tb[OCI_PROCESS_ENV], &opts.envp);
1680 if (res)
1681 return res;
1682 }
1683
1684 if (tb[OCI_PROCESS_USER] && (res = parseOCIprocessuser(tb[OCI_PROCESS_USER])))
1685 return res;
1686
1687 if (tb[OCI_PROCESS_CAPABILITIES] &&
1688 (res = parseOCIcapabilities(&opts.capset, tb[OCI_PROCESS_CAPABILITIES])))
1689 return res;
1690
1691 if (tb[OCI_PROCESS_RLIMITS]) {
1692 blobmsg_for_each_attr(cur, tb[OCI_PROCESS_RLIMITS], rem) {
1693 res = parseOCIrlimit(cur);
1694 if (res)
1695 return res;
1696 }
1697 }
1698
1699 if (tb[OCI_PROCESS_OOMSCOREADJ]) {
1700 opts.oom_score_adj = blobmsg_get_u32(tb[OCI_PROCESS_OOMSCOREADJ]);
1701 opts.set_oom_score_adj = true;
1702 }
1703
1704 return 0;
1705 }
1706
1707 enum {
1708 OCI_LINUX_NAMESPACE_TYPE,
1709 OCI_LINUX_NAMESPACE_PATH,
1710 __OCI_LINUX_NAMESPACE_MAX,
1711 };
1712
1713 static const struct blobmsg_policy oci_linux_namespace_policy[] = {
1714 [OCI_LINUX_NAMESPACE_TYPE] = { "type", BLOBMSG_TYPE_STRING },
1715 [OCI_LINUX_NAMESPACE_PATH] = { "path", BLOBMSG_TYPE_STRING },
1716 };
1717
1718 static int resolve_nstype(char *type) {
1719 if (!strcmp("pid", type))
1720 return CLONE_NEWPID;
1721 else if (!strcmp("network", type))
1722 return CLONE_NEWNET;
1723 else if (!strcmp("mount", type))
1724 return CLONE_NEWNS;
1725 else if (!strcmp("ipc", type))
1726 return CLONE_NEWIPC;
1727 else if (!strcmp("uts", type))
1728 return CLONE_NEWUTS;
1729 else if (!strcmp("user", type))
1730 return CLONE_NEWUSER;
1731 else if (!strcmp("cgroup", type))
1732 return CLONE_NEWCGROUP;
1733 #ifdef CLONE_NEWTIME
1734 else if (!strcmp("time", type))
1735 return CLONE_NEWTIME;
1736 #endif
1737 else
1738 return 0;
1739 }
1740
1741 static int parseOCIlinuxns(struct blob_attr *msg)
1742 {
1743 struct blob_attr *tb[__OCI_LINUX_NAMESPACE_MAX];
1744 int nstype;
1745 int *setns;
1746 int fd;
1747
1748 blobmsg_parse(oci_linux_namespace_policy, __OCI_LINUX_NAMESPACE_MAX, tb, blobmsg_data(msg), blobmsg_len(msg));
1749
1750 if (!tb[OCI_LINUX_NAMESPACE_TYPE])
1751 return EINVAL;
1752
1753 nstype = resolve_nstype(blobmsg_get_string(tb[OCI_LINUX_NAMESPACE_TYPE]));
1754 if (!nstype)
1755 return EINVAL;
1756
1757 if (opts.namespace & nstype)
1758 return ENOTUNIQ;
1759
1760 setns = get_namespace_fd(nstype);
1761
1762 if (!setns)
1763 return EFAULT;
1764
1765 if (*setns != -1)
1766 return ENOTUNIQ;
1767
1768 if (tb[OCI_LINUX_NAMESPACE_PATH]) {
1769 DEBUG("opening existing %s namespace from path %s\n",
1770 blobmsg_get_string(tb[OCI_LINUX_NAMESPACE_TYPE]),
1771 blobmsg_get_string(tb[OCI_LINUX_NAMESPACE_PATH]));
1772
1773 fd = open(blobmsg_get_string(tb[OCI_LINUX_NAMESPACE_PATH]), O_RDONLY);
1774 if (fd == -1)
1775 return errno?:ESTALE;
1776
1777 if (ioctl(fd, NS_GET_NSTYPE) != nstype)
1778 return EINVAL;
1779
1780 DEBUG("opened existing %s namespace got filehandler %u\n",
1781 blobmsg_get_string(tb[OCI_LINUX_NAMESPACE_TYPE]),
1782 fd);
1783
1784 *setns = fd;
1785 } else {
1786 opts.namespace |= nstype;
1787 }
1788
1789 return 0;
1790 };
1791
1792
1793 enum {
1794 OCI_LINUX_UIDGIDMAP_CONTAINERID,
1795 OCI_LINUX_UIDGIDMAP_HOSTID,
1796 OCI_LINUX_UIDGIDMAP_SIZE,
1797 __OCI_LINUX_UIDGIDMAP_MAX,
1798 };
1799
1800 static const struct blobmsg_policy oci_linux_uidgidmap_policy[] = {
1801 [OCI_LINUX_UIDGIDMAP_CONTAINERID] = { "containerID", BLOBMSG_TYPE_INT32 },
1802 [OCI_LINUX_UIDGIDMAP_HOSTID] = { "hostID", BLOBMSG_TYPE_INT32 },
1803 [OCI_LINUX_UIDGIDMAP_SIZE] = { "size", BLOBMSG_TYPE_INT32 },
1804 };
1805
1806 static int parseOCIuidgidmappings(struct blob_attr *msg, bool is_gidmap)
1807 {
1808 const char *map_format = "%d %d %d\n";
1809 struct blob_attr *tb[__OCI_LINUX_UIDGIDMAP_MAX];
1810 struct blob_attr *cur;
1811 int rem, len;
1812 char **mappings;
1813 char *map, *curstr;
1814 unsigned int cnt = 0;
1815 size_t totallen = 0;
1816
1817 /* count number of mappings */
1818 blobmsg_for_each_attr(cur, msg, rem)
1819 cnt++;
1820
1821 if (!cnt)
1822 return 0;
1823
1824 /* allocate array for mappings */
1825 mappings = calloc(1 + cnt, sizeof(char*));
1826 if (!mappings)
1827 return ENOMEM;
1828
1829 mappings[cnt] = NULL;
1830
1831 cnt = 0;
1832 blobmsg_for_each_attr(cur, msg, rem) {
1833 blobmsg_parse(oci_linux_uidgidmap_policy, __OCI_LINUX_UIDGIDMAP_MAX, tb, blobmsg_data(cur), blobmsg_len(cur));
1834
1835 if (!tb[OCI_LINUX_UIDGIDMAP_CONTAINERID] ||
1836 !tb[OCI_LINUX_UIDGIDMAP_HOSTID] ||
1837 !tb[OCI_LINUX_UIDGIDMAP_SIZE])
1838 return EINVAL;
1839
1840 /* write mapping line into allocated string */
1841 len = asprintf(&mappings[cnt++], map_format,
1842 blobmsg_get_u32(tb[OCI_LINUX_UIDGIDMAP_CONTAINERID]),
1843 blobmsg_get_u32(tb[OCI_LINUX_UIDGIDMAP_HOSTID]),
1844 blobmsg_get_u32(tb[OCI_LINUX_UIDGIDMAP_SIZE]));
1845
1846 if (len < 0)
1847 return ENOMEM;
1848
1849 totallen += len;
1850 }
1851
1852 /* allocate combined mapping string */
1853 map = calloc(1 + totallen, sizeof(char));
1854 if (!map)
1855 return ENOMEM;
1856
1857 map[0] = '\0';
1858
1859 /* concatenate mapping strings into combined string */
1860 curstr = mappings[0];
1861 while (curstr) {
1862 strcat(map, curstr);
1863 free(curstr++);
1864 }
1865 free(mappings);
1866
1867 if (is_gidmap)
1868 opts.gidmap = map;
1869 else
1870 opts.uidmap = map;
1871
1872 return 0;
1873 }
1874
1875 enum {
1876 OCI_DEVICES_TYPE,
1877 OCI_DEVICES_PATH,
1878 OCI_DEVICES_MAJOR,
1879 OCI_DEVICES_MINOR,
1880 OCI_DEVICES_FILEMODE,
1881 OCI_DEVICES_UID,
1882 OCI_DEVICES_GID,
1883 __OCI_DEVICES_MAX,
1884 };
1885
1886 static const struct blobmsg_policy oci_devices_policy[] = {
1887 [OCI_DEVICES_TYPE] = { "type", BLOBMSG_TYPE_STRING },
1888 [OCI_DEVICES_PATH] = { "path", BLOBMSG_TYPE_STRING },
1889 [OCI_DEVICES_MAJOR] = { "major", BLOBMSG_TYPE_INT32 },
1890 [OCI_DEVICES_MINOR] = { "minor", BLOBMSG_TYPE_INT32 },
1891 [OCI_DEVICES_FILEMODE] = { "fileMode", BLOBMSG_TYPE_INT32 },
1892 [OCI_DEVICES_UID] = { "uid", BLOBMSG_TYPE_INT32 },
1893 [OCI_DEVICES_GID] = { "uid", BLOBMSG_TYPE_INT32 },
1894 };
1895
1896 static mode_t resolve_devtype(char *tstr)
1897 {
1898 if (!strcmp("c", tstr) ||
1899 !strcmp("u", tstr))
1900 return S_IFCHR;
1901 else if (!strcmp("b", tstr))
1902 return S_IFBLK;
1903 else if (!strcmp("p", tstr))
1904 return S_IFIFO;
1905 else
1906 return 0;
1907 }
1908
1909 static int parseOCIdevices(struct blob_attr *msg)
1910 {
1911 struct blob_attr *tb[__OCI_DEVICES_MAX];
1912 struct blob_attr *cur;
1913 int rem;
1914 size_t cnt = 0;
1915 struct mknod_args *tmp;
1916
1917 blobmsg_for_each_attr(cur, msg, rem)
1918 ++cnt;
1919
1920 opts.devices = calloc(cnt + 1, sizeof(struct mknod_args *));
1921
1922 cnt = 0;
1923 blobmsg_for_each_attr(cur, msg, rem) {
1924 blobmsg_parse(oci_devices_policy, __OCI_DEVICES_MAX, tb, blobmsg_data(cur), blobmsg_len(cur));
1925 if (!tb[OCI_DEVICES_TYPE] ||
1926 !tb[OCI_DEVICES_PATH])
1927 return ENODATA;
1928
1929 tmp = calloc(1, sizeof(struct mknod_args));
1930 if (!tmp)
1931 return ENOMEM;
1932
1933 tmp->mode = resolve_devtype(blobmsg_get_string(tb[OCI_DEVICES_TYPE]));
1934 if (!tmp->mode)
1935 return EINVAL;
1936
1937 if (tmp->mode != S_IFIFO) {
1938 if (!tb[OCI_DEVICES_MAJOR] || !tb[OCI_DEVICES_MINOR])
1939 return ENODATA;
1940
1941 tmp->dev = makedev(blobmsg_get_u32(tb[OCI_DEVICES_MAJOR]),
1942 blobmsg_get_u32(tb[OCI_DEVICES_MINOR]));
1943 }
1944
1945 if (tb[OCI_DEVICES_FILEMODE]) {
1946 if (~(S_IRWXU|S_IRWXG|S_IRWXO) & blobmsg_get_u32(tb[OCI_DEVICES_FILEMODE]))
1947 return EINVAL;
1948
1949 tmp->mode |= blobmsg_get_u32(tb[OCI_DEVICES_FILEMODE]);
1950 } else {
1951 tmp->mode |= (S_IRUSR|S_IWUSR); /* 0600 */
1952 }
1953
1954 tmp->path = strdup(blobmsg_get_string(tb[OCI_DEVICES_PATH]));
1955
1956 if (tb[OCI_DEVICES_UID])
1957 tmp->uid = blobmsg_get_u32(tb[OCI_DEVICES_UID]);
1958 else
1959 tmp->uid = -1;
1960
1961 if (tb[OCI_DEVICES_GID])
1962 tmp->gid = blobmsg_get_u32(tb[OCI_DEVICES_GID]);
1963 else
1964 tmp->gid = -1;
1965
1966 DEBUG("read device %s (%s)\n", blobmsg_get_string(tb[OCI_DEVICES_PATH]), blobmsg_get_string(tb[OCI_DEVICES_TYPE]));
1967 opts.devices[cnt++] = tmp;
1968 }
1969
1970 opts.devices[cnt] = NULL;
1971
1972 return 0;
1973 }
1974
1975 static int parseOCIsysctl(struct blob_attr *msg)
1976 {
1977 struct blob_attr *cur;
1978 int rem;
1979 char *tmp, *tc;
1980 size_t cnt = 0;
1981
1982 blobmsg_for_each_attr(cur, msg, rem) {
1983 if (!blobmsg_name(cur) || !blobmsg_get_string(cur))
1984 return EINVAL;
1985
1986 ++cnt;
1987 }
1988
1989 if (!cnt)
1990 return 0;
1991
1992 opts.sysctl = calloc(cnt + 1, sizeof(struct sysctl_val *));
1993 if (!opts.sysctl)
1994 return ENOMEM;
1995
1996 cnt = 0;
1997 blobmsg_for_each_attr(cur, msg, rem) {
1998 opts.sysctl[cnt] = malloc(sizeof(struct sysctl_val));
1999 if (!opts.sysctl[cnt])
2000 return ENOMEM;
2001
2002 /* replace '.' with '/' in entry name */
2003 tc = tmp = strdup(blobmsg_name(cur));
2004 while ((tc = strchr(tc, '.')))
2005 *tc = '/';
2006
2007 opts.sysctl[cnt]->value = strdup(blobmsg_get_string(cur));
2008 opts.sysctl[cnt]->entry = tmp;
2009
2010 ++cnt;
2011 }
2012
2013 opts.sysctl[cnt] = NULL;
2014
2015 return 0;
2016 }
2017
2018
2019 enum {
2020 OCI_LINUX_CGROUPSPATH,
2021 OCI_LINUX_RESOURCES,
2022 OCI_LINUX_SECCOMP,
2023 OCI_LINUX_SYSCTL,
2024 OCI_LINUX_NAMESPACES,
2025 OCI_LINUX_DEVICES,
2026 OCI_LINUX_UIDMAPPINGS,
2027 OCI_LINUX_GIDMAPPINGS,
2028 OCI_LINUX_MASKEDPATHS,
2029 OCI_LINUX_READONLYPATHS,
2030 OCI_LINUX_ROOTFSPROPAGATION,
2031 __OCI_LINUX_MAX,
2032 };
2033
2034 static const struct blobmsg_policy oci_linux_policy[] = {
2035 [OCI_LINUX_CGROUPSPATH] = { "cgroupsPath", BLOBMSG_TYPE_STRING },
2036 [OCI_LINUX_RESOURCES] = { "resources", BLOBMSG_TYPE_TABLE },
2037 [OCI_LINUX_SECCOMP] = { "seccomp", BLOBMSG_TYPE_TABLE },
2038 [OCI_LINUX_SYSCTL] = { "sysctl", BLOBMSG_TYPE_TABLE },
2039 [OCI_LINUX_NAMESPACES] = { "namespaces", BLOBMSG_TYPE_ARRAY },
2040 [OCI_LINUX_DEVICES] = { "devices", BLOBMSG_TYPE_ARRAY },
2041 [OCI_LINUX_UIDMAPPINGS] = { "uidMappings", BLOBMSG_TYPE_ARRAY },
2042 [OCI_LINUX_GIDMAPPINGS] = { "gidMappings", BLOBMSG_TYPE_ARRAY },
2043 [OCI_LINUX_MASKEDPATHS] = { "maskedPaths", BLOBMSG_TYPE_ARRAY },
2044 [OCI_LINUX_READONLYPATHS] = { "readonlyPaths", BLOBMSG_TYPE_ARRAY },
2045 [OCI_LINUX_ROOTFSPROPAGATION] = { "rootfsPropagation", BLOBMSG_TYPE_STRING },
2046 };
2047
2048 static int parseOCIlinux(struct blob_attr *msg)
2049 {
2050 struct blob_attr *tb[__OCI_LINUX_MAX];
2051 struct blob_attr *cur;
2052 int rem;
2053 int res = 0;
2054 char *cgpath;
2055 char cgfullpath[256] = "/sys/fs/cgroup";
2056
2057 blobmsg_parse(oci_linux_policy, __OCI_LINUX_MAX, tb, blobmsg_data(msg), blobmsg_len(msg));
2058
2059 if (tb[OCI_LINUX_NAMESPACES]) {
2060 blobmsg_for_each_attr(cur, tb[OCI_LINUX_NAMESPACES], rem) {
2061 res = parseOCIlinuxns(cur);
2062 if (res)
2063 return res;
2064 }
2065 }
2066
2067 if (tb[OCI_LINUX_UIDMAPPINGS]) {
2068 res = parseOCIuidgidmappings(tb[OCI_LINUX_GIDMAPPINGS], 0);
2069 if (res)
2070 return res;
2071 }
2072
2073 if (tb[OCI_LINUX_GIDMAPPINGS]) {
2074 res = parseOCIuidgidmappings(tb[OCI_LINUX_GIDMAPPINGS], 1);
2075 if (res)
2076 return res;
2077 }
2078
2079 if (tb[OCI_LINUX_READONLYPATHS]) {
2080 blobmsg_for_each_attr(cur, tb[OCI_LINUX_READONLYPATHS], rem) {
2081 res = add_mount(NULL, blobmsg_get_string(cur), NULL, MS_BIND | MS_REC | MS_RDONLY, NULL, 0);
2082 if (res)
2083 return res;
2084 }
2085 }
2086
2087 if (tb[OCI_LINUX_MASKEDPATHS]) {
2088 blobmsg_for_each_attr(cur, tb[OCI_LINUX_MASKEDPATHS], rem) {
2089 res = add_mount((void *)(-1), blobmsg_get_string(cur), NULL, 0, NULL, 1);
2090 if (res)
2091 return res;
2092 }
2093 }
2094
2095 if (tb[OCI_LINUX_SYSCTL]) {
2096 res = parseOCIsysctl(tb[OCI_LINUX_SYSCTL]);
2097 if (res)
2098 return res;
2099 }
2100
2101 if (tb[OCI_LINUX_SECCOMP]) {
2102 opts.ociseccomp = parseOCIlinuxseccomp(tb[OCI_LINUX_SECCOMP]);
2103 if (!opts.ociseccomp)
2104 return EINVAL;
2105 }
2106
2107 if (tb[OCI_LINUX_DEVICES]) {
2108 res = parseOCIdevices(tb[OCI_LINUX_DEVICES]);
2109 if (res)
2110 return res;
2111 }
2112
2113 if (tb[OCI_LINUX_CGROUPSPATH]) {
2114 cgpath = blobmsg_get_string(tb[OCI_LINUX_CGROUPSPATH]);
2115 if (cgpath[0] == '/') {
2116 if (strlen(cgpath) >= (sizeof(cgfullpath) - strlen(cgfullpath)))
2117 return E2BIG;
2118
2119 strcat(cgfullpath, cgpath);
2120 } else {
2121 strcat(cgfullpath, "/containers/");
2122 strcat(cgfullpath, opts.name); /* should be container name rather than jail name */
2123 strcat(cgfullpath, "/");
2124 if (strlen(cgpath) >= (sizeof(cgfullpath) - strlen(cgfullpath)))
2125 return E2BIG;
2126
2127 strcat(cgfullpath, cgpath);
2128 }
2129 } else {
2130 strcat(cgfullpath, "/containers/");
2131 strcat(cgfullpath, opts.name); /* should be container name rather than jail name */
2132 strcat(cgfullpath, "/");
2133 strcat(cgfullpath, opts.name); /* should be container instance name rather than jail name */
2134 }
2135
2136 cgroups_init(cgfullpath);
2137
2138 if (tb[OCI_LINUX_RESOURCES]) {
2139 res = parseOCIlinuxcgroups(tb[OCI_LINUX_RESOURCES]);
2140 if (res)
2141 return res;
2142 }
2143
2144 return 0;
2145 }
2146
2147 enum {
2148 OCI_VERSION,
2149 OCI_HOSTNAME,
2150 OCI_PROCESS,
2151 OCI_ROOT,
2152 OCI_MOUNTS,
2153 OCI_HOOKS,
2154 OCI_LINUX,
2155 OCI_ANNOTATIONS,
2156 __OCI_MAX,
2157 };
2158
2159 static const struct blobmsg_policy oci_policy[] = {
2160 [OCI_VERSION] = { "ociVersion", BLOBMSG_TYPE_STRING },
2161 [OCI_HOSTNAME] = { "hostname", BLOBMSG_TYPE_STRING },
2162 [OCI_PROCESS] = { "process", BLOBMSG_TYPE_TABLE },
2163 [OCI_ROOT] = { "root", BLOBMSG_TYPE_TABLE },
2164 [OCI_MOUNTS] = { "mounts", BLOBMSG_TYPE_ARRAY },
2165 [OCI_HOOKS] = { "hooks", BLOBMSG_TYPE_TABLE },
2166 [OCI_LINUX] = { "linux", BLOBMSG_TYPE_TABLE },
2167 [OCI_ANNOTATIONS] = { "annotations", BLOBMSG_TYPE_TABLE },
2168 };
2169
2170 static int parseOCI(const char *jsonfile)
2171 {
2172 struct blob_attr *tb[__OCI_MAX];
2173 struct blob_attr *cur;
2174 int rem;
2175 int res;
2176
2177 blob_buf_init(&ocibuf, 0);
2178 if (!blobmsg_add_json_from_file(&ocibuf, jsonfile))
2179 return ENOENT;
2180
2181 blobmsg_parse(oci_policy, __OCI_MAX, tb, blob_data(ocibuf.head), blob_len(ocibuf.head));
2182
2183 if (!tb[OCI_VERSION])
2184 return ENOMSG;
2185
2186 if (strncmp("1.0", blobmsg_get_string(tb[OCI_VERSION]), 3)) {
2187 ERROR("unsupported ociVersion %s\n", blobmsg_get_string(tb[OCI_VERSION]));
2188 return ENOTSUP;
2189 }
2190
2191 if (tb[OCI_HOSTNAME])
2192 opts.hostname = strdup(blobmsg_get_string(tb[OCI_HOSTNAME]));
2193
2194 if (!tb[OCI_PROCESS])
2195 return ENODATA;
2196
2197 if ((res = parseOCIprocess(tb[OCI_PROCESS])))
2198 return res;
2199
2200 if (!tb[OCI_ROOT])
2201 return ENODATA;
2202
2203 if ((res = parseOCIroot(jsonfile, tb[OCI_ROOT])))
2204 return res;
2205
2206 if (!tb[OCI_MOUNTS])
2207 return ENODATA;
2208
2209 blobmsg_for_each_attr(cur, tb[OCI_MOUNTS], rem)
2210 if ((res = parseOCImount(cur)))
2211 return res;
2212
2213 if (tb[OCI_LINUX] && (res = parseOCIlinux(tb[OCI_LINUX])))
2214 return res;
2215
2216 if (tb[OCI_HOOKS] && (res = parseOCIhooks(tb[OCI_HOOKS])))
2217 return res;
2218
2219 if (tb[OCI_ANNOTATIONS])
2220 opts.annotations = blob_memdup(tb[OCI_ANNOTATIONS]);
2221
2222 blob_buf_free(&ocibuf);
2223
2224 return 0;
2225 }
2226
2227 static int set_oom_score_adj(void)
2228 {
2229 int f;
2230 char fname[32];
2231
2232 if (!opts.set_oom_score_adj)
2233 return 0;
2234
2235 snprintf(fname, sizeof(fname), "/proc/%u/oom_score_adj", jail_process.pid);
2236 f = open(fname, O_WRONLY | O_TRUNC);
2237 if (f == -1)
2238 return errno;
2239
2240 dprintf(f, "%d", opts.oom_score_adj);
2241 close(f);
2242
2243 return 0;
2244 }
2245
2246
2247 enum {
2248 OCI_STATE_CREATING,
2249 OCI_STATE_CREATED,
2250 OCI_STATE_RUNNING,
2251 OCI_STATE_STOPPED,
2252 };
2253
2254 static int jail_oci_state = OCI_STATE_CREATED;
2255 static void pipe_send_start_container(struct uloop_timeout *t);
2256 static struct uloop_timeout start_container_timeout = {
2257 .cb = pipe_send_start_container,
2258 };
2259
2260 static int handle_start(struct ubus_context *ctx, struct ubus_object *obj,
2261 struct ubus_request_data *req, const char *method,
2262 struct blob_attr *msg)
2263 {
2264 if (jail_oci_state != OCI_STATE_CREATED)
2265 return UBUS_STATUS_INVALID_ARGUMENT;
2266
2267 uloop_timeout_add(&start_container_timeout);
2268
2269 return UBUS_STATUS_OK;
2270 }
2271
2272 static struct blob_buf bb;
2273 static int handle_state(struct ubus_context *ctx, struct ubus_object *obj,
2274 struct ubus_request_data *req, const char *method,
2275 struct blob_attr *msg)
2276 {
2277 char *statusstr;
2278
2279 switch (jail_oci_state) {
2280 case OCI_STATE_CREATING:
2281 statusstr = "creating";
2282 break;
2283 case OCI_STATE_CREATED:
2284 statusstr = "created";
2285 break;
2286 case OCI_STATE_RUNNING:
2287 statusstr = "running";
2288 break;
2289 case OCI_STATE_STOPPED:
2290 statusstr = "stopped";
2291 break;
2292 default:
2293 statusstr = "unknown";
2294 }
2295
2296 blob_buf_init(&bb, 0);
2297 blobmsg_add_string(&bb, "ociVersion", OCI_VERSION_STRING);
2298 blobmsg_add_string(&bb, "id", opts.name);
2299 blobmsg_add_string(&bb, "status", statusstr);
2300 if (jail_oci_state == OCI_STATE_CREATED ||
2301 jail_oci_state == OCI_STATE_RUNNING)
2302 blobmsg_add_u32(&bb, "pid", jail_process.pid);
2303
2304 blobmsg_add_string(&bb, "bundle", opts.ocibundle);
2305
2306 if (opts.annotations)
2307 blobmsg_add_blob(&bb, opts.annotations);
2308
2309 ubus_send_reply(ctx, req, bb.head);
2310
2311 return UBUS_STATUS_OK;
2312 }
2313
2314 enum {
2315 CONTAINER_KILL_ATTR_SIGNAL,
2316 __CONTAINER_KILL_ATTR_MAX,
2317 };
2318
2319 static const struct blobmsg_policy container_kill_attrs[__CONTAINER_KILL_ATTR_MAX] = {
2320 [CONTAINER_KILL_ATTR_SIGNAL] = { "signal", BLOBMSG_TYPE_INT32 },
2321 };
2322
2323 static int
2324 container_handle_kill(struct ubus_context *ctx, struct ubus_object *obj,
2325 struct ubus_request_data *req, const char *method,
2326 struct blob_attr *msg)
2327 {
2328 struct blob_attr *tb[__CONTAINER_KILL_ATTR_MAX], *cur;
2329 int sig = SIGTERM;
2330
2331 blobmsg_parse(container_kill_attrs, __CONTAINER_KILL_ATTR_MAX, tb, blobmsg_data(msg), blobmsg_data_len(msg));
2332
2333 cur = tb[CONTAINER_KILL_ATTR_SIGNAL];
2334 if (cur)
2335 sig = blobmsg_get_u32(cur);
2336
2337 if (jail_oci_state == OCI_STATE_CREATING)
2338 return UBUS_STATUS_NOT_FOUND;
2339
2340 if (kill(jail_process.pid, sig) == 0)
2341 return 0;
2342
2343 switch (errno) {
2344 case EINVAL: return UBUS_STATUS_INVALID_ARGUMENT;
2345 case EPERM: return UBUS_STATUS_PERMISSION_DENIED;
2346 case ESRCH: return UBUS_STATUS_NOT_FOUND;
2347 }
2348
2349 return UBUS_STATUS_UNKNOWN_ERROR;
2350 }
2351
2352 static struct ubus_method container_methods[] = {
2353 UBUS_METHOD_NOARG("start", handle_start),
2354 UBUS_METHOD_NOARG("state", handle_state),
2355 UBUS_METHOD("kill", container_handle_kill, container_kill_attrs),
2356 };
2357
2358 static struct ubus_object_type container_object_type =
2359 UBUS_OBJECT_TYPE("container", container_methods);
2360
2361 static struct ubus_object container_object = {
2362 .type = &container_object_type,
2363 .methods = container_methods,
2364 .n_methods = ARRAY_SIZE(container_methods),
2365 };
2366
2367 static void post_main(struct uloop_timeout *t);
2368 static struct uloop_timeout post_main_timeout = {
2369 .cb = post_main,
2370 };
2371 static int netns_fd;
2372 static int pidns_fd;
2373 #ifdef CLONE_NEWTIME
2374 static int timens_fd;
2375 #endif
2376 static void post_create_runtime(void);
2377 int main(int argc, char **argv)
2378 {
2379 uid_t uid = getuid();
2380 const char log[] = "/dev/log";
2381 const char ubus[] = "/var/run/ubus/ubus.sock";
2382 int ch, ret;
2383
2384 if (uid) {
2385 ERROR("not root, aborting: %m\n");
2386 return EXIT_FAILURE;
2387 }
2388
2389 umask(022);
2390 mount_list_init();
2391 init_library_search();
2392
2393 while ((ch = getopt(argc, argv, OPT_ARGS)) != -1) {
2394 switch (ch) {
2395 case 'd':
2396 debug = atoi(optarg);
2397 break;
2398 case 'p':
2399 opts.namespace |= CLONE_NEWNS;
2400 opts.procfs = 1;
2401 break;
2402 case 'o':
2403 opts.namespace |= CLONE_NEWNS;
2404 opts.ronly = 1;
2405 break;
2406 case 'f':
2407 opts.namespace |= CLONE_NEWUSER;
2408 break;
2409 case 'F':
2410 opts.namespace |= CLONE_NEWCGROUP;
2411 break;
2412 case 'R':
2413 opts.extroot = strdup(optarg);
2414 break;
2415 case 's':
2416 opts.namespace |= CLONE_NEWNS;
2417 opts.sysfs = 1;
2418 break;
2419 case 'S':
2420 opts.seccomp = optarg;
2421 add_mount_bind(optarg, 1, -1);
2422 break;
2423 case 'C':
2424 opts.capabilities = optarg;
2425 break;
2426 case 'c':
2427 opts.no_new_privs = 1;
2428 break;
2429 case 'n':
2430 opts.name = optarg;
2431 break;
2432 case 'N':
2433 opts.namespace |= CLONE_NEWNET;
2434 break;
2435 case 'h':
2436 opts.namespace |= CLONE_NEWUTS;
2437 opts.hostname = strdup(optarg);
2438 break;
2439 case 'r':
2440 opts.namespace |= CLONE_NEWNS;
2441 add_path_and_deps(optarg, 1, 0, 0);
2442 break;
2443 case 'w':
2444 opts.namespace |= CLONE_NEWNS;
2445 add_path_and_deps(optarg, 0, 0, 0);
2446 break;
2447 case 'u':
2448 opts.namespace |= CLONE_NEWNS;
2449 add_mount_bind(ubus, 0, -1);
2450 break;
2451 case 'l':
2452 opts.namespace |= CLONE_NEWNS;
2453 add_mount_bind(log, 0, -1);
2454 break;
2455 case 'U':
2456 opts.user = optarg;
2457 break;
2458 case 'G':
2459 opts.group = optarg;
2460 break;
2461 case 'O':
2462 opts.overlaydir = optarg;
2463 break;
2464 case 'T':
2465 opts.tmpoverlaysize = optarg;
2466 break;
2467 case 'E':
2468 opts.require_jail = 1;
2469 break;
2470 case 'y':
2471 opts.console = 1;
2472 break;
2473 case 'J':
2474 opts.ocibundle = strdup(optarg);
2475 break;
2476 case 'i':
2477 opts.immediately = true;
2478 break;
2479 }
2480 }
2481
2482 if (opts.namespace && !opts.ocibundle)
2483 opts.namespace |= CLONE_NEWIPC | CLONE_NEWPID;
2484
2485 /* those are filehandlers, so -1 indicates unused */
2486 opts.setns.pid = -1;
2487 opts.setns.net = -1;
2488 opts.setns.ns = -1;
2489 opts.setns.ipc = -1;
2490 opts.setns.uts = -1;
2491 opts.setns.user = -1;
2492 opts.setns.cgroup = -1;
2493 #ifdef CLONE_NEWTIME
2494 opts.setns.time = -1;
2495 #endif
2496
2497 if (opts.capabilities && parseOCIcapabilities_from_file(&opts.capset, opts.capabilities)) {
2498 ERROR("failed to read capabilities from file %s\n", opts.capabilities);
2499 return -1;
2500 }
2501
2502 if (opts.ocibundle) {
2503 char *jsonfile;
2504 int ocires;
2505
2506 asprintf(&jsonfile, "%s/config.json", opts.ocibundle);
2507 ocires = parseOCI(jsonfile);
2508 free(jsonfile);
2509 if (ocires) {
2510 ERROR("parsing of OCI JSON spec has failed: %s (%d)\n", strerror(ocires), ocires);
2511 return ocires;
2512 }
2513 }
2514
2515 if (opts.tmpoverlaysize && strlen(opts.tmpoverlaysize) > 8) {
2516 ERROR("size parameter too long: \"%s\"\n", opts.tmpoverlaysize);
2517 return -1;
2518 }
2519
2520 /* no <binary> param found */
2521 if (!opts.ocibundle && (argc - optind < 1)) {
2522 usage();
2523 return EXIT_FAILURE;
2524 }
2525 if (!(opts.ocibundle||opts.namespace||opts.capabilities||opts.seccomp)) {
2526 ERROR("Not using namespaces, capabilities or seccomp !!!\n\n");
2527 usage();
2528 return EXIT_FAILURE;
2529 }
2530 DEBUG("Using namespaces(0x%08x), capabilities(%d), seccomp(%d)\n",
2531 opts.namespace,
2532 opts.capset.apply,
2533 opts.seccomp != 0 || opts.ociseccomp != 0);
2534
2535 uloop_init();
2536 signals_init();
2537
2538 parent_ctx = ubus_connect(NULL);
2539 ubus_add_uloop(parent_ctx);
2540
2541 if (opts.ocibundle) {
2542 char *objname;
2543 if (asprintf(&objname, "container.%s", opts.name) < 0)
2544 exit(-ENOMEM);
2545
2546 container_object.name = objname;
2547 ret = ubus_add_object(parent_ctx, &container_object);
2548 if (ret) {
2549 ERROR("Failed to add object: %s\n", ubus_strerror(ret));
2550 exit(-1);
2551 }
2552 }
2553
2554 /* deliberately not using 'else' on unrelated conditional branches */
2555 if (!opts.ocibundle) {
2556 /* allocate NULL-terminated array for argv */
2557 opts.jail_argv = calloc(1 + argc - optind, sizeof(char**));
2558 if (!opts.jail_argv)
2559 return EXIT_FAILURE;
2560
2561 for (size_t s = optind; s < argc; s++)
2562 opts.jail_argv[s - optind] = strdup(argv[s]);
2563
2564 if (opts.namespace & CLONE_NEWUSER)
2565 get_jail_user(&opts.pw_uid, &opts.pw_gid, &opts.gr_gid);
2566 }
2567
2568 if (!opts.extroot) {
2569 if (opts.namespace && add_path_and_deps(*opts.jail_argv, 1, -1, 0)) {
2570 ERROR("failed to load dependencies\n");
2571 return -1;
2572 }
2573 }
2574
2575 if (opts.namespace && opts.seccomp && add_path_and_deps("libpreload-seccomp.so", 1, -1, 1)) {
2576 ERROR("failed to load libpreload-seccomp.so\n");
2577 opts.seccomp = 0;
2578 if (opts.require_jail)
2579 return -1;
2580 }
2581
2582 uloop_timeout_add(&post_main_timeout);
2583 uloop_run();
2584
2585 /* unreachable */
2586 return 0;
2587 }
2588
2589 static void post_main(struct uloop_timeout *t)
2590 {
2591 if (apply_rlimits()) {
2592 ERROR("error applying resource limits\n");
2593 exit(EXIT_FAILURE);
2594 }
2595
2596 if (opts.name)
2597 prctl(PR_SET_NAME, opts.name, NULL, NULL, NULL);
2598
2599 if (pipe(&pipes[0]) < 0 || pipe(&pipes[2]) < 0)
2600 exit(-1);
2601
2602 if (has_namespaces()) {
2603 if (opts.namespace & CLONE_NEWNS) {
2604 if (!opts.extroot && (opts.user || opts.group)) {
2605 add_mount_bind("/etc/passwd", 0, -1);
2606 add_mount_bind("/etc/group", 0, -1);
2607 }
2608
2609 #if defined(__GLIBC__)
2610 if (!opts.extroot)
2611 add_mount_bind("/etc/nsswitch.conf", 0, -1);
2612 #endif
2613
2614 if (!(opts.namespace & CLONE_NEWNET)) {
2615 add_mount_bind("/etc/resolv.conf", 0, -1);
2616 } else if (opts.setns.net == -1) {
2617 char hostdir[PATH_MAX];
2618
2619 snprintf(hostdir, PATH_MAX, "/tmp/resolv.conf-%s.d", opts.name);
2620 mkdir_p(hostdir, 0755);
2621 add_mount(hostdir, "/dev/resolv.conf.d", NULL, MS_BIND | MS_NOEXEC | MS_NOATIME | MS_NOSUID | MS_NODEV | MS_RDONLY, NULL, -1);
2622 }
2623
2624 /* default mounts */
2625 add_mount(NULL, "/dev", "tmpfs", MS_NOATIME | MS_NOEXEC | MS_NOSUID, "size=1M", -1);
2626 add_mount(NULL, "/dev/pts", "devpts", MS_NOATIME | MS_NOEXEC | MS_NOSUID, "newinstance,ptmxmode=0666,mode=0620,gid=5", 0);
2627
2628 if (opts.procfs || opts.ocibundle) {
2629 add_mount("proc", "/proc", "proc", MS_NOATIME | MS_NODEV | MS_NOEXEC | MS_NOSUID, NULL, -1);
2630
2631 /*
2632 * hack to make /proc/sys/net read-write while the rest of /proc/sys is read-only
2633 * which cannot be expressed with OCI spec, but happends to be very useful.
2634 * Only apply it if '/proc/sys' is not already listed as mount, maskedPath or
2635 * readonlyPath.
2636 * If not running in a new network namespace, only make /proc/sys read-only.
2637 * If running in a new network namespace, temporarily stash (ie. mount-bind)
2638 * /proc/sys/net into (totally unrelated, but surely existing) /proc/self/net.
2639 * Then we mount-bind /proc/sys read-only and then mount-move /proc/self/net into
2640 * /proc/sys/net.
2641 * This works because mounts are executed in incrementing strcmp() order and
2642 * /proc/self/net appears there before /proc/sys/net and hence the operation
2643 * succeeds as the bind-mount of /proc/self/net is performed first and then
2644 * move-mount of /proc/sys/net follows because 'e' preceeds 'y' in the ASCII
2645 * table (and in the alphabet).
2646 */
2647 if (!add_mount(NULL, "/proc/sys", NULL, MS_BIND | MS_RDONLY, NULL, -1))
2648 if (opts.namespace & CLONE_NEWNET)
2649 if (!add_mount_inner("/proc/self/net", "/proc/sys/net", NULL, MS_MOVE, NULL, -1))
2650 add_mount_inner("/proc/sys/net", "/proc/self/net", NULL, MS_BIND, NULL, -1);
2651
2652 }
2653 if (opts.sysfs || opts.ocibundle)
2654 add_mount("sysfs", "/sys", "sysfs", MS_NOATIME | MS_NODEV | MS_NOEXEC | MS_NOSUID | MS_RDONLY, NULL, -1);
2655
2656 if (opts.ocibundle)
2657 add_mount("shm", "/dev/shm", "tmpfs", MS_NOSUID | MS_NOEXEC | MS_NODEV, "mode=1777", -1);
2658
2659 }
2660
2661 if (opts.setns.pid != -1) {
2662 pidns_fd = ns_open_pid("pid", getpid());
2663 setns_open(CLONE_NEWPID);
2664 } else {
2665 pidns_fd = -1;
2666 }
2667
2668 #ifdef CLONE_NEWTIME
2669 if (opts.setns.time != -1) {
2670 timens_fd = ns_open_pid("time", getpid());
2671 setns_open(CLONE_NEWTIME);
2672 }
2673 #endif
2674
2675 jail_process.pid = clone(exec_jail, child_stack + STACK_SIZE, SIGCHLD | (opts.namespace & (~CLONE_NEWCGROUP)), NULL);
2676 } else {
2677 jail_process.pid = fork();
2678 }
2679
2680 if (jail_process.pid > 0) {
2681 /* parent process */
2682 char sig_buf[1];
2683
2684 uloop_process_add(&jail_process);
2685 jail_running = 1;
2686 seteuid(0);
2687 if (pidns_fd != -1) {
2688 setns(pidns_fd, CLONE_NEWPID);
2689 close(pidns_fd);
2690 }
2691 #ifdef CLONE_NEWTIME
2692 if (timens_fd != -1)
2693 setns(timens_fd, CLONE_NEWTIME);
2694 close(timens_fd);
2695 }
2696 #endif
2697 if (opts.setns.net != -1)
2698 close(opts.setns.net);
2699 if (opts.setns.ns != -1)
2700 close(opts.setns.ns);
2701 if (opts.setns.ipc != -1)
2702 close(opts.setns.ipc);
2703 if (opts.setns.uts != -1)
2704 close(opts.setns.uts);
2705 if (opts.setns.user != -1)
2706 close(opts.setns.user);
2707 if (opts.setns.cgroup != -1)
2708 close(opts.setns.cgroup);
2709 close(pipes[1]);
2710 close(pipes[2]);
2711 if (read(pipes[0], sig_buf, 1) < 1) {
2712 ERROR("can't read from child\n");
2713 exit(-1);
2714 }
2715 close(pipes[0]);
2716 set_oom_score_adj();
2717
2718 if (opts.ocibundle)
2719 cgroups_apply(jail_process.pid);
2720
2721 if (opts.namespace & CLONE_NEWUSER) {
2722 if (write_setgroups(jail_process.pid, true)) {
2723 ERROR("can't write setgroups\n");
2724 exit(-1);
2725 }
2726 if (!opts.uidmap) {
2727 bool has_gr = (opts.gr_gid != -1);
2728 if (opts.pw_uid != -1) {
2729 write_single_uid_gid_map(jail_process.pid, 0, opts.pw_uid);
2730 write_single_uid_gid_map(jail_process.pid, 1, has_gr?opts.gr_gid:opts.pw_gid);
2731 } else {
2732 write_single_uid_gid_map(jail_process.pid, 0, 65534);
2733 write_single_uid_gid_map(jail_process.pid, 1, has_gr?opts.gr_gid:65534);
2734 }
2735 } else {
2736 write_uid_gid_map(jail_process.pid, 0, opts.uidmap);
2737 if (opts.gidmap)
2738 write_uid_gid_map(jail_process.pid, 1, opts.gidmap);
2739 }
2740 }
2741
2742 if (opts.namespace & CLONE_NEWNET) {
2743 if (!opts.name) {
2744 ERROR("netns needs a named jail\n");
2745 exit(-1);
2746 }
2747 netns_fd = ns_open_pid("net", jail_process.pid);
2748 netns_updown(jail_process.pid, true);
2749 }
2750 } else if (jail_process.pid == 0) {
2751 /* fork child process */
2752 exit(exec_jail(NULL));
2753 } else {
2754 ERROR("failed to clone/fork: %m\n");
2755 exit(EXIT_FAILURE);
2756 }
2757 run_hooks(opts.hooks.createRuntime, post_create_runtime);
2758 }
2759
2760 static void post_poststart(void);
2761 static void post_create_runtime(void)
2762 {
2763 char sig_buf[1];
2764
2765 sig_buf[0] = 'O';
2766 if (write(pipes[3], sig_buf, 1) < 0) {
2767 ERROR("can't write to child\n");
2768 exit(-1);
2769 }
2770
2771 jail_oci_state = OCI_STATE_CREATED;
2772 if (opts.ocibundle && !opts.immediately)
2773 uloop_run(); /* wait for 'start' command via ubus */
2774 else
2775 pipe_send_start_container(NULL);
2776 }
2777
2778 static void pipe_send_start_container(struct uloop_timeout *t)
2779 {
2780 char sig_buf[1];
2781
2782 jail_oci_state = OCI_STATE_RUNNING;
2783 sig_buf[0] = '!';
2784 if (write(pipes[3], sig_buf, 1) < 0) {
2785 ERROR("can't write to child\n");
2786 exit(-1);
2787 }
2788 close(pipes[3]);
2789
2790 run_hooks(opts.hooks.poststart, post_poststart);
2791 }
2792
2793 static void post_poststart(void)
2794 {
2795 uloop_run(); /* idle here while jail is running */
2796 if (jail_running) {
2797 DEBUG("uloop interrupted, killing jail process\n");
2798 kill(jail_process.pid, SIGTERM);
2799 uloop_timeout_set(&jail_process_timeout, 1000);
2800 uloop_run();
2801 }
2802 uloop_done();
2803 poststop();
2804 }
2805
2806 static void post_poststop(void);
2807 static void poststop(void) {
2808 if (opts.namespace & CLONE_NEWNET) {
2809 setns(netns_fd, CLONE_NEWNET);
2810 netns_updown(getpid(), false);
2811 close(netns_fd);
2812 }
2813 run_hooks(opts.hooks.poststop, post_poststop);
2814 }
2815
2816 static void post_poststop(void)
2817 {
2818 free_opts(true);
2819 if (parent_ctx)
2820 ubus_free(parent_ctx);
2821
2822 exit(jail_return_code);
2823 }