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