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