]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/namespace.c
Merge pull request #16789 from keszybz/weblate
[thirdparty/systemd.git] / src / core / namespace.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <errno.h>
4 #include <linux/loop.h>
5 #include <sched.h>
6 #include <stdio.h>
7 #include <sys/mount.h>
8 #include <unistd.h>
9 #include <linux/fs.h>
10
11 #include "alloc-util.h"
12 #include "base-filesystem.h"
13 #include "dev-setup.h"
14 #include "fd-util.h"
15 #include "format-util.h"
16 #include "fs-util.h"
17 #include "label.h"
18 #include "list.h"
19 #include "loop-util.h"
20 #include "loopback-setup.h"
21 #include "mkdir.h"
22 #include "mount-util.h"
23 #include "mountpoint-util.h"
24 #include "namespace-util.h"
25 #include "namespace.h"
26 #include "nulstr-util.h"
27 #include "path-util.h"
28 #include "selinux-util.h"
29 #include "socket-util.h"
30 #include "sort-util.h"
31 #include "stat-util.h"
32 #include "string-table.h"
33 #include "string-util.h"
34 #include "strv.h"
35 #include "tmpfile-util.h"
36 #include "umask-util.h"
37 #include "user-util.h"
38
39 #define DEV_MOUNT_OPTIONS (MS_NOSUID|MS_STRICTATIME|MS_NOEXEC)
40
41 typedef enum MountMode {
42 /* This is ordered by priority! */
43 INACCESSIBLE,
44 MOUNT_IMAGES,
45 BIND_MOUNT,
46 BIND_MOUNT_RECURSIVE,
47 PRIVATE_TMP,
48 PRIVATE_TMP_READONLY,
49 PRIVATE_DEV,
50 BIND_DEV,
51 EMPTY_DIR,
52 SYSFS,
53 PROCFS,
54 READONLY,
55 READWRITE,
56 TMPFS,
57 READWRITE_IMPLICIT, /* Should have the lowest priority. */
58 _MOUNT_MODE_MAX,
59 } MountMode;
60
61 typedef struct MountEntry {
62 const char *path_const; /* Memory allocated on stack or static */
63 MountMode mode:5;
64 bool ignore:1; /* Ignore if path does not exist? */
65 bool has_prefix:1; /* Already is prefixed by the root dir? */
66 bool read_only:1; /* Shall this mount point be read-only? */
67 bool nosuid:1; /* Shall set MS_NOSUID on the mount itself */
68 bool applied:1; /* Already applied */
69 char *path_malloc; /* Use this instead of 'path_const' if we had to allocate memory */
70 const char *source_const; /* The source path, for bind mounts or images */
71 char *source_malloc;
72 const char *options_const;/* Mount options for tmpfs */
73 char *options_malloc;
74 unsigned long flags; /* Mount flags used by EMPTY_DIR and TMPFS. Do not include MS_RDONLY here, but please use read_only. */
75 unsigned n_followed;
76 LIST_HEAD(MountOptions, image_options);
77 } MountEntry;
78
79 /* If MountAPIVFS= is used, let's mount /sys and /proc into the it, but only as a fallback if the user hasn't mounted
80 * something there already. These mounts are hence overridden by any other explicitly configured mounts. */
81 static const MountEntry apivfs_table[] = {
82 { "/proc", PROCFS, false },
83 { "/dev", BIND_DEV, false },
84 { "/sys", SYSFS, false },
85 };
86
87 /* ProtectKernelTunables= option and the related filesystem APIs */
88 static const MountEntry protect_kernel_tunables_table[] = {
89 { "/proc/acpi", READONLY, true },
90 { "/proc/apm", READONLY, true }, /* Obsolete API, there's no point in permitting access to this, ever */
91 { "/proc/asound", READONLY, true },
92 { "/proc/bus", READONLY, true },
93 { "/proc/fs", READONLY, true },
94 { "/proc/irq", READONLY, true },
95 { "/proc/kallsyms", INACCESSIBLE, true },
96 { "/proc/kcore", INACCESSIBLE, true },
97 { "/proc/latency_stats", READONLY, true },
98 { "/proc/mtrr", READONLY, true },
99 { "/proc/scsi", READONLY, true },
100 { "/proc/sys", READONLY, false },
101 { "/proc/sysrq-trigger", READONLY, true },
102 { "/proc/timer_stats", READONLY, true },
103 { "/sys", READONLY, false },
104 { "/sys/fs/bpf", READONLY, true },
105 { "/sys/fs/cgroup", READWRITE_IMPLICIT, false }, /* READONLY is set by ProtectControlGroups= option */
106 { "/sys/fs/selinux", READWRITE_IMPLICIT, true },
107 { "/sys/kernel/debug", READONLY, true },
108 { "/sys/kernel/tracing", READONLY, true },
109 };
110
111 /* ProtectKernelModules= option */
112 static const MountEntry protect_kernel_modules_table[] = {
113 #if HAVE_SPLIT_USR
114 { "/lib/modules", INACCESSIBLE, true },
115 #endif
116 { "/usr/lib/modules", INACCESSIBLE, true },
117 };
118
119 /* ProtectKernelLogs= option */
120 static const MountEntry protect_kernel_logs_table[] = {
121 { "/proc/kmsg", INACCESSIBLE, true },
122 { "/dev/kmsg", INACCESSIBLE, true },
123 };
124
125 /*
126 * ProtectHome=read-only table, protect $HOME and $XDG_RUNTIME_DIR and rest of
127 * system should be protected by ProtectSystem=
128 */
129 static const MountEntry protect_home_read_only_table[] = {
130 { "/home", READONLY, true },
131 { "/run/user", READONLY, true },
132 { "/root", READONLY, true },
133 };
134
135 /* ProtectHome=tmpfs table */
136 static const MountEntry protect_home_tmpfs_table[] = {
137 { "/home", TMPFS, true, .read_only = true, .options_const = "mode=0755" TMPFS_LIMITS_EMPTY_OR_ALMOST, .flags = MS_NODEV|MS_STRICTATIME },
138 { "/run/user", TMPFS, true, .read_only = true, .options_const = "mode=0755" TMPFS_LIMITS_EMPTY_OR_ALMOST, .flags = MS_NODEV|MS_STRICTATIME },
139 { "/root", TMPFS, true, .read_only = true, .options_const = "mode=0700" TMPFS_LIMITS_EMPTY_OR_ALMOST, .flags = MS_NODEV|MS_STRICTATIME },
140 };
141
142 /* ProtectHome=yes table */
143 static const MountEntry protect_home_yes_table[] = {
144 { "/home", INACCESSIBLE, true },
145 { "/run/user", INACCESSIBLE, true },
146 { "/root", INACCESSIBLE, true },
147 };
148
149 /* ProtectSystem=yes table */
150 static const MountEntry protect_system_yes_table[] = {
151 { "/usr", READONLY, false },
152 { "/boot", READONLY, true },
153 { "/efi", READONLY, true },
154 #if HAVE_SPLIT_USR
155 { "/lib", READONLY, true },
156 { "/lib64", READONLY, true },
157 { "/bin", READONLY, true },
158 # if HAVE_SPLIT_BIN
159 { "/sbin", READONLY, true },
160 # endif
161 #endif
162 };
163
164 /* ProtectSystem=full includes ProtectSystem=yes */
165 static const MountEntry protect_system_full_table[] = {
166 { "/usr", READONLY, false },
167 { "/boot", READONLY, true },
168 { "/efi", READONLY, true },
169 { "/etc", READONLY, false },
170 #if HAVE_SPLIT_USR
171 { "/lib", READONLY, true },
172 { "/lib64", READONLY, true },
173 { "/bin", READONLY, true },
174 # if HAVE_SPLIT_BIN
175 { "/sbin", READONLY, true },
176 # endif
177 #endif
178 };
179
180 /*
181 * ProtectSystem=strict table. In this strict mode, we mount everything
182 * read-only, except for /proc, /dev, /sys which are the kernel API VFS,
183 * which are left writable, but PrivateDevices= + ProtectKernelTunables=
184 * protect those, and these options should be fully orthogonal.
185 * (And of course /home and friends are also left writable, as ProtectHome=
186 * shall manage those, orthogonally).
187 */
188 static const MountEntry protect_system_strict_table[] = {
189 { "/", READONLY, false },
190 { "/proc", READWRITE_IMPLICIT, false }, /* ProtectKernelTunables= */
191 { "/sys", READWRITE_IMPLICIT, false }, /* ProtectKernelTunables= */
192 { "/dev", READWRITE_IMPLICIT, false }, /* PrivateDevices= */
193 { "/home", READWRITE_IMPLICIT, true }, /* ProtectHome= */
194 { "/run/user", READWRITE_IMPLICIT, true }, /* ProtectHome= */
195 { "/root", READWRITE_IMPLICIT, true }, /* ProtectHome= */
196 };
197
198 static const char * const mount_mode_table[_MOUNT_MODE_MAX] = {
199 [INACCESSIBLE] = "inaccessible",
200 [BIND_MOUNT] = "bind",
201 [BIND_MOUNT_RECURSIVE] = "rbind",
202 [PRIVATE_TMP] = "private-tmp",
203 [PRIVATE_DEV] = "private-dev",
204 [BIND_DEV] = "bind-dev",
205 [EMPTY_DIR] = "empty",
206 [SYSFS] = "sysfs",
207 [PROCFS] = "procfs",
208 [READONLY] = "read-only",
209 [READWRITE] = "read-write",
210 [TMPFS] = "tmpfs",
211 [MOUNT_IMAGES] = "mount-images",
212 [READWRITE_IMPLICIT] = "rw-implicit",
213 };
214
215 DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(mount_mode, MountMode);
216
217 static const char *mount_entry_path(const MountEntry *p) {
218 assert(p);
219
220 /* Returns the path of this bind mount. If the malloc()-allocated ->path_buffer field is set we return that,
221 * otherwise the stack/static ->path field is returned. */
222
223 return p->path_malloc ?: p->path_const;
224 }
225
226 static bool mount_entry_read_only(const MountEntry *p) {
227 assert(p);
228
229 return p->read_only || IN_SET(p->mode, READONLY, INACCESSIBLE, PRIVATE_TMP_READONLY);
230 }
231
232 static const char *mount_entry_source(const MountEntry *p) {
233 assert(p);
234
235 return p->source_malloc ?: p->source_const;
236 }
237
238 static const char *mount_entry_options(const MountEntry *p) {
239 assert(p);
240
241 return p->options_malloc ?: p->options_const;
242 }
243
244 static void mount_entry_done(MountEntry *p) {
245 assert(p);
246
247 p->path_malloc = mfree(p->path_malloc);
248 p->source_malloc = mfree(p->source_malloc);
249 p->options_malloc = mfree(p->options_malloc);
250 p->image_options = mount_options_free_all(p->image_options);
251 }
252
253 static int append_access_mounts(MountEntry **p, char **strv, MountMode mode, bool forcibly_require_prefix) {
254 char **i;
255
256 assert(p);
257
258 /* Adds a list of user-supplied READWRITE/READWRITE_IMPLICIT/READONLY/INACCESSIBLE entries */
259
260 STRV_FOREACH(i, strv) {
261 bool ignore = false, needs_prefix = false;
262 const char *e = *i;
263
264 /* Look for any prefixes */
265 if (startswith(e, "-")) {
266 e++;
267 ignore = true;
268 }
269 if (startswith(e, "+")) {
270 e++;
271 needs_prefix = true;
272 }
273
274 if (!path_is_absolute(e))
275 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL),
276 "Path is not absolute: %s", e);
277
278 *((*p)++) = (MountEntry) {
279 .path_const = e,
280 .mode = mode,
281 .ignore = ignore,
282 .has_prefix = !needs_prefix && !forcibly_require_prefix,
283 };
284 }
285
286 return 0;
287 }
288
289 static int append_empty_dir_mounts(MountEntry **p, char **strv) {
290 char **i;
291
292 assert(p);
293
294 /* Adds tmpfs mounts to provide readable but empty directories. This is primarily used to implement the
295 * "/private/" boundary directories for DynamicUser=1. */
296
297 STRV_FOREACH(i, strv) {
298
299 *((*p)++) = (MountEntry) {
300 .path_const = *i,
301 .mode = EMPTY_DIR,
302 .ignore = false,
303 .read_only = true,
304 .options_const = "mode=755" TMPFS_LIMITS_EMPTY_OR_ALMOST,
305 .flags = MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_STRICTATIME,
306 };
307 }
308
309 return 0;
310 }
311
312 static int append_bind_mounts(MountEntry **p, const BindMount *binds, size_t n) {
313 size_t i;
314
315 assert(p);
316
317 for (i = 0; i < n; i++) {
318 const BindMount *b = binds + i;
319
320 *((*p)++) = (MountEntry) {
321 .path_const = b->destination,
322 .mode = b->recursive ? BIND_MOUNT_RECURSIVE : BIND_MOUNT,
323 .read_only = b->read_only,
324 .nosuid = b->nosuid,
325 .source_const = b->source,
326 .ignore = b->ignore_enoent,
327 };
328 }
329
330 return 0;
331 }
332
333 static int append_mount_images(MountEntry **p, const MountImage *mount_images, size_t n) {
334 assert(p);
335
336 for (size_t i = 0; i < n; i++) {
337 const MountImage *m = mount_images + i;
338
339 *((*p)++) = (MountEntry) {
340 .path_const = m->destination,
341 .mode = MOUNT_IMAGES,
342 .source_const = m->source,
343 .image_options = m->mount_options,
344 .ignore = m->ignore_enoent,
345 };
346 }
347
348 return 0;
349 }
350
351 static int append_tmpfs_mounts(MountEntry **p, const TemporaryFileSystem *tmpfs, size_t n) {
352 assert(p);
353
354 for (size_t i = 0; i < n; i++) {
355 const TemporaryFileSystem *t = tmpfs + i;
356 _cleanup_free_ char *o = NULL, *str = NULL;
357 unsigned long flags;
358 bool ro = false;
359 int r;
360
361 if (!path_is_absolute(t->path))
362 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL),
363 "Path is not absolute: %s",
364 t->path);
365
366 str = strjoin("mode=0755" NESTED_TMPFS_LIMITS ",", t->options);
367 if (!str)
368 return -ENOMEM;
369
370 r = mount_option_mangle(str, MS_NODEV|MS_STRICTATIME, &flags, &o);
371 if (r < 0)
372 return log_debug_errno(r, "Failed to parse mount option '%s': %m", str);
373
374 ro = flags & MS_RDONLY;
375 if (ro)
376 flags ^= MS_RDONLY;
377
378 *((*p)++) = (MountEntry) {
379 .path_const = t->path,
380 .mode = TMPFS,
381 .read_only = ro,
382 .options_malloc = TAKE_PTR(o),
383 .flags = flags,
384 };
385 }
386
387 return 0;
388 }
389
390 static int append_static_mounts(MountEntry **p, const MountEntry *mounts, size_t n, bool ignore_protect) {
391 size_t i;
392
393 assert(p);
394 assert(mounts);
395
396 /* Adds a list of static pre-defined entries */
397
398 for (i = 0; i < n; i++)
399 *((*p)++) = (MountEntry) {
400 .path_const = mount_entry_path(mounts+i),
401 .mode = mounts[i].mode,
402 .ignore = mounts[i].ignore || ignore_protect,
403 };
404
405 return 0;
406 }
407
408 static int append_protect_home(MountEntry **p, ProtectHome protect_home, bool ignore_protect) {
409 assert(p);
410
411 switch (protect_home) {
412
413 case PROTECT_HOME_NO:
414 return 0;
415
416 case PROTECT_HOME_READ_ONLY:
417 return append_static_mounts(p, protect_home_read_only_table, ELEMENTSOF(protect_home_read_only_table), ignore_protect);
418
419 case PROTECT_HOME_TMPFS:
420 return append_static_mounts(p, protect_home_tmpfs_table, ELEMENTSOF(protect_home_tmpfs_table), ignore_protect);
421
422 case PROTECT_HOME_YES:
423 return append_static_mounts(p, protect_home_yes_table, ELEMENTSOF(protect_home_yes_table), ignore_protect);
424
425 default:
426 assert_not_reached("Unexpected ProtectHome= value");
427 }
428 }
429
430 static int append_protect_system(MountEntry **p, ProtectSystem protect_system, bool ignore_protect) {
431 assert(p);
432
433 switch (protect_system) {
434
435 case PROTECT_SYSTEM_NO:
436 return 0;
437
438 case PROTECT_SYSTEM_STRICT:
439 return append_static_mounts(p, protect_system_strict_table, ELEMENTSOF(protect_system_strict_table), ignore_protect);
440
441 case PROTECT_SYSTEM_YES:
442 return append_static_mounts(p, protect_system_yes_table, ELEMENTSOF(protect_system_yes_table), ignore_protect);
443
444 case PROTECT_SYSTEM_FULL:
445 return append_static_mounts(p, protect_system_full_table, ELEMENTSOF(protect_system_full_table), ignore_protect);
446
447 default:
448 assert_not_reached("Unexpected ProtectSystem= value");
449 }
450 }
451
452 static int mount_path_compare(const MountEntry *a, const MountEntry *b) {
453 int d;
454
455 /* If the paths are not equal, then order prefixes first */
456 d = path_compare(mount_entry_path(a), mount_entry_path(b));
457 if (d != 0)
458 return d;
459
460 /* If the paths are equal, check the mode */
461 return CMP((int) a->mode, (int) b->mode);
462 }
463
464 static int prefix_where_needed(MountEntry *m, size_t n, const char *root_directory) {
465 size_t i;
466
467 /* Prefixes all paths in the bind mount table with the root directory if the entry needs that. */
468
469 for (i = 0; i < n; i++) {
470 char *s;
471
472 if (m[i].has_prefix)
473 continue;
474
475 s = path_join(root_directory, mount_entry_path(m+i));
476 if (!s)
477 return -ENOMEM;
478
479 free_and_replace(m[i].path_malloc, s);
480 m[i].has_prefix = true;
481 }
482
483 return 0;
484 }
485
486 static void drop_duplicates(MountEntry *m, size_t *n) {
487 MountEntry *f, *t, *previous;
488
489 assert(m);
490 assert(n);
491
492 /* Drops duplicate entries. Expects that the array is properly ordered already. */
493
494 for (f = m, t = m, previous = NULL; f < m + *n; f++) {
495
496 /* The first one wins (which is the one with the more restrictive mode), see mount_path_compare()
497 * above. Note that we only drop duplicates that haven't been mounted yet. */
498 if (previous &&
499 path_equal(mount_entry_path(f), mount_entry_path(previous)) &&
500 !f->applied && !previous->applied) {
501 log_debug("%s (%s) is duplicate.", mount_entry_path(f), mount_mode_to_string(f->mode));
502 previous->read_only = previous->read_only || mount_entry_read_only(f); /* Propagate the read-only flag to the remaining entry */
503 mount_entry_done(f);
504 continue;
505 }
506
507 *t = *f;
508 previous = t;
509 t++;
510 }
511
512 *n = t - m;
513 }
514
515 static void drop_inaccessible(MountEntry *m, size_t *n) {
516 MountEntry *f, *t;
517 const char *clear = NULL;
518
519 assert(m);
520 assert(n);
521
522 /* Drops all entries obstructed by another entry further up the tree. Expects that the array is properly
523 * ordered already. */
524
525 for (f = m, t = m; f < m + *n; f++) {
526
527 /* If we found a path set for INACCESSIBLE earlier, and this entry has it as prefix we should drop
528 * it, as inaccessible paths really should drop the entire subtree. */
529 if (clear && path_startswith(mount_entry_path(f), clear)) {
530 log_debug("%s is masked by %s.", mount_entry_path(f), clear);
531 mount_entry_done(f);
532 continue;
533 }
534
535 clear = f->mode == INACCESSIBLE ? mount_entry_path(f) : NULL;
536
537 *t = *f;
538 t++;
539 }
540
541 *n = t - m;
542 }
543
544 static void drop_nop(MountEntry *m, size_t *n) {
545 MountEntry *f, *t;
546
547 assert(m);
548 assert(n);
549
550 /* Drops all entries which have an immediate parent that has the same type, as they are redundant. Assumes the
551 * list is ordered by prefixes. */
552
553 for (f = m, t = m; f < m + *n; f++) {
554
555 /* Only suppress such subtrees for READONLY, READWRITE and READWRITE_IMPLICIT entries */
556 if (IN_SET(f->mode, READONLY, READWRITE, READWRITE_IMPLICIT)) {
557 MountEntry *p;
558 bool found = false;
559
560 /* Now let's find the first parent of the entry we are looking at. */
561 for (p = t-1; p >= m; p--) {
562 if (path_startswith(mount_entry_path(f), mount_entry_path(p))) {
563 found = true;
564 break;
565 }
566 }
567
568 /* We found it, let's see if it's the same mode, if so, we can drop this entry */
569 if (found && p->mode == f->mode) {
570 log_debug("%s (%s) is made redundant by %s (%s)",
571 mount_entry_path(f), mount_mode_to_string(f->mode),
572 mount_entry_path(p), mount_mode_to_string(p->mode));
573 mount_entry_done(f);
574 continue;
575 }
576 }
577
578 *t = *f;
579 t++;
580 }
581
582 *n = t - m;
583 }
584
585 static void drop_outside_root(const char *root_directory, MountEntry *m, size_t *n) {
586 MountEntry *f, *t;
587
588 assert(m);
589 assert(n);
590
591 /* Nothing to do */
592 if (!root_directory)
593 return;
594
595 /* Drops all mounts that are outside of the root directory. */
596
597 for (f = m, t = m; f < m + *n; f++) {
598
599 if (!path_startswith(mount_entry_path(f), root_directory)) {
600 log_debug("%s is outside of root directory.", mount_entry_path(f));
601 mount_entry_done(f);
602 continue;
603 }
604
605 *t = *f;
606 t++;
607 }
608
609 *n = t - m;
610 }
611
612 static int clone_device_node(
613 const char *d,
614 const char *temporary_mount,
615 bool *make_devnode) {
616
617 _cleanup_free_ char *sl = NULL;
618 const char *dn, *bn, *t;
619 struct stat st;
620 int r;
621
622 if (stat(d, &st) < 0) {
623 if (errno == ENOENT) {
624 log_debug_errno(errno, "Device node '%s' to clone does not exist, ignoring.", d);
625 return -ENXIO;
626 }
627
628 return log_debug_errno(errno, "Failed to stat() device node '%s' to clone, ignoring: %m", d);
629 }
630
631 if (!S_ISBLK(st.st_mode) &&
632 !S_ISCHR(st.st_mode))
633 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL),
634 "Device node '%s' to clone is not a device node, ignoring.",
635 d);
636
637 dn = strjoina(temporary_mount, d);
638
639 /* First, try to create device node properly */
640 if (*make_devnode) {
641 mac_selinux_create_file_prepare(d, st.st_mode);
642 r = mknod(dn, st.st_mode, st.st_rdev);
643 mac_selinux_create_file_clear();
644 if (r >= 0)
645 goto add_symlink;
646 if (errno != EPERM)
647 return log_debug_errno(errno, "mknod failed for %s: %m", d);
648
649 /* This didn't work, let's not try this again for the next iterations. */
650 *make_devnode = false;
651 }
652
653 /* We're about to fall back to bind-mounting the device
654 * node. So create a dummy bind-mount target.
655 * Do not prepare device-node SELinux label (see issue 13762) */
656 r = mknod(dn, S_IFREG, 0);
657 if (r < 0 && errno != EEXIST)
658 return log_debug_errno(errno, "mknod() fallback failed for '%s': %m", d);
659
660 /* Fallback to bind-mounting:
661 * The assumption here is that all used device nodes carry standard
662 * properties. Specifically, the devices nodes we bind-mount should
663 * either be owned by root:root or root:tty (e.g. /dev/tty, /dev/ptmx)
664 * and should not carry ACLs. */
665 if (mount(d, dn, NULL, MS_BIND, NULL) < 0)
666 return log_debug_errno(errno, "Bind mounting failed for '%s': %m", d);
667
668 add_symlink:
669 bn = path_startswith(d, "/dev/");
670 if (!bn)
671 return 0;
672
673 /* Create symlinks like /dev/char/1:9 → ../urandom */
674 if (asprintf(&sl, "%s/dev/%s/%u:%u",
675 temporary_mount,
676 S_ISCHR(st.st_mode) ? "char" : "block",
677 major(st.st_rdev), minor(st.st_rdev)) < 0)
678 return log_oom();
679
680 (void) mkdir_parents(sl, 0755);
681
682 t = strjoina("../", bn);
683 if (symlink(t, sl) < 0)
684 log_debug_errno(errno, "Failed to symlink '%s' to '%s', ignoring: %m", t, sl);
685
686 return 0;
687 }
688
689 static int mount_private_dev(MountEntry *m) {
690 static const char devnodes[] =
691 "/dev/null\0"
692 "/dev/zero\0"
693 "/dev/full\0"
694 "/dev/random\0"
695 "/dev/urandom\0"
696 "/dev/tty\0";
697
698 char temporary_mount[] = "/tmp/namespace-dev-XXXXXX";
699 const char *d, *dev = NULL, *devpts = NULL, *devshm = NULL, *devhugepages = NULL, *devmqueue = NULL, *devlog = NULL, *devptmx = NULL;
700 bool can_mknod = true;
701 _cleanup_umask_ mode_t u;
702 int r;
703
704 assert(m);
705
706 u = umask(0000);
707
708 if (!mkdtemp(temporary_mount))
709 return log_debug_errno(errno, "Failed to create temporary directory '%s': %m", temporary_mount);
710
711 dev = strjoina(temporary_mount, "/dev");
712 (void) mkdir(dev, 0755);
713 if (mount("tmpfs", dev, "tmpfs", DEV_MOUNT_OPTIONS, "mode=755" TMPFS_LIMITS_DEV) < 0) {
714 r = log_debug_errno(errno, "Failed to mount tmpfs on '%s': %m", dev);
715 goto fail;
716 }
717 r = label_fix_container(dev, "/dev", 0);
718 if (r < 0) {
719 log_debug_errno(errno, "Failed to fix label of '%s' as /dev: %m", dev);
720 goto fail;
721 }
722
723 devpts = strjoina(temporary_mount, "/dev/pts");
724 (void) mkdir(devpts, 0755);
725 if (mount("/dev/pts", devpts, NULL, MS_BIND, NULL) < 0) {
726 r = log_debug_errno(errno, "Failed to bind mount /dev/pts on '%s': %m", devpts);
727 goto fail;
728 }
729
730 /* /dev/ptmx can either be a device node or a symlink to /dev/pts/ptmx.
731 * When /dev/ptmx a device node, /dev/pts/ptmx has 000 permissions making it inaccessible.
732 * Thus, in that case make a clone.
733 * In nspawn and other containers it will be a symlink, in that case make it a symlink. */
734 r = is_symlink("/dev/ptmx");
735 if (r < 0) {
736 log_debug_errno(r, "Failed to detect whether /dev/ptmx is a symlink or not: %m");
737 goto fail;
738 } else if (r > 0) {
739 devptmx = strjoina(temporary_mount, "/dev/ptmx");
740 if (symlink("pts/ptmx", devptmx) < 0) {
741 r = log_debug_errno(errno, "Failed to create a symlink '%s' to pts/ptmx: %m", devptmx);
742 goto fail;
743 }
744 } else {
745 r = clone_device_node("/dev/ptmx", temporary_mount, &can_mknod);
746 if (r < 0)
747 goto fail;
748 }
749
750 devshm = strjoina(temporary_mount, "/dev/shm");
751 (void) mkdir(devshm, 0755);
752 r = mount("/dev/shm", devshm, NULL, MS_BIND, NULL);
753 if (r < 0) {
754 r = log_debug_errno(errno, "Failed to bind mount /dev/shm on '%s': %m", devshm);
755 goto fail;
756 }
757
758 devmqueue = strjoina(temporary_mount, "/dev/mqueue");
759 (void) mkdir(devmqueue, 0755);
760 if (mount("/dev/mqueue", devmqueue, NULL, MS_BIND, NULL) < 0)
761 log_debug_errno(errno, "Failed to bind mount /dev/mqueue on '%s', ignoring: %m", devmqueue);
762
763 devhugepages = strjoina(temporary_mount, "/dev/hugepages");
764 (void) mkdir(devhugepages, 0755);
765 if (mount("/dev/hugepages", devhugepages, NULL, MS_BIND, NULL) < 0)
766 log_debug_errno(errno, "Failed to bind mount /dev/hugepages on '%s', ignoring: %m", devhugepages);
767
768 devlog = strjoina(temporary_mount, "/dev/log");
769 if (symlink("/run/systemd/journal/dev-log", devlog) < 0)
770 log_debug_errno(errno, "Failed to create a symlink '%s' to /run/systemd/journal/dev-log, ignoring: %m", devlog);
771
772 NULSTR_FOREACH(d, devnodes) {
773 r = clone_device_node(d, temporary_mount, &can_mknod);
774 /* ENXIO means the *source* is not a device file, skip creation in that case */
775 if (r < 0 && r != -ENXIO)
776 goto fail;
777 }
778
779 r = dev_setup(temporary_mount, UID_INVALID, GID_INVALID);
780 if (r < 0)
781 log_debug_errno(r, "Failed to set up basic device tree at '%s', ignoring: %m", temporary_mount);
782
783 /* Create the /dev directory if missing. It is more likely to be
784 * missing when the service is started with RootDirectory. This is
785 * consistent with mount units creating the mount points when missing.
786 */
787 (void) mkdir_p_label(mount_entry_path(m), 0755);
788
789 /* Unmount everything in old /dev */
790 r = umount_recursive(mount_entry_path(m), 0);
791 if (r < 0)
792 log_debug_errno(r, "Failed to unmount directories below '%s', ignoring: %m", mount_entry_path(m));
793
794 if (mount(dev, mount_entry_path(m), NULL, MS_MOVE, NULL) < 0) {
795 r = log_debug_errno(errno, "Failed to move mount point '%s' to '%s': %m", dev, mount_entry_path(m));
796 goto fail;
797 }
798
799 (void) rmdir(dev);
800 (void) rmdir(temporary_mount);
801
802 return 0;
803
804 fail:
805 if (devpts)
806 (void) umount(devpts);
807
808 if (devshm)
809 (void) umount(devshm);
810
811 if (devhugepages)
812 (void) umount(devhugepages);
813
814 if (devmqueue)
815 (void) umount(devmqueue);
816
817 (void) umount(dev);
818 (void) rmdir(dev);
819 (void) rmdir(temporary_mount);
820
821 return r;
822 }
823
824 static int mount_bind_dev(const MountEntry *m) {
825 int r;
826
827 assert(m);
828
829 /* Implements the little brother of mount_private_dev(): simply bind mounts the host's /dev into the service's
830 * /dev. This is only used when RootDirectory= is set. */
831
832 (void) mkdir_p_label(mount_entry_path(m), 0755);
833
834 r = path_is_mount_point(mount_entry_path(m), NULL, 0);
835 if (r < 0)
836 return log_debug_errno(r, "Unable to determine whether /dev is already mounted: %m");
837 if (r > 0) /* make this a NOP if /dev is already a mount point */
838 return 0;
839
840 if (mount("/dev", mount_entry_path(m), NULL, MS_BIND|MS_REC, NULL) < 0)
841 return log_debug_errno(errno, "Failed to bind mount %s: %m", mount_entry_path(m));
842
843 return 1;
844 }
845
846 static int mount_sysfs(const MountEntry *m) {
847 int r;
848
849 assert(m);
850
851 (void) mkdir_p_label(mount_entry_path(m), 0755);
852
853 r = path_is_mount_point(mount_entry_path(m), NULL, 0);
854 if (r < 0)
855 return log_debug_errno(r, "Unable to determine whether /sys is already mounted: %m");
856 if (r > 0) /* make this a NOP if /sys is already a mount point */
857 return 0;
858
859 /* Bind mount the host's version so that we get all child mounts of it, too. */
860 if (mount("/sys", mount_entry_path(m), NULL, MS_BIND|MS_REC, NULL) < 0)
861 return log_debug_errno(errno, "Failed to mount %s: %m", mount_entry_path(m));
862
863 return 1;
864 }
865
866 static int mount_procfs(const MountEntry *m) {
867 int r;
868
869 assert(m);
870
871 (void) mkdir_p_label(mount_entry_path(m), 0755);
872
873 r = path_is_mount_point(mount_entry_path(m), NULL, 0);
874 if (r < 0)
875 return log_debug_errno(r, "Unable to determine whether /proc is already mounted: %m");
876 if (r > 0) /* make this a NOP if /proc is already a mount point */
877 return 0;
878
879 /* Mount a new instance, so that we get the one that matches our user namespace, if we are running in one */
880 if (mount("proc", mount_entry_path(m), "proc", MS_NOSUID|MS_NOEXEC|MS_NODEV, NULL) < 0)
881 return log_debug_errno(errno, "Failed to mount %s: %m", mount_entry_path(m));
882
883 return 1;
884 }
885
886 static int mount_tmpfs(const MountEntry *m) {
887 int r;
888 const char *entry_path = mount_entry_path(m);
889 const char *source_path = m->path_const;
890
891 assert(m);
892
893 /* First, get rid of everything that is below if there is anything. Then, overmount with our new tmpfs */
894
895 (void) mkdir_p_label(entry_path, 0755);
896 (void) umount_recursive(entry_path, 0);
897
898 if (mount("tmpfs", entry_path, "tmpfs", m->flags, mount_entry_options(m)) < 0)
899 return log_debug_errno(errno, "Failed to mount %s: %m", entry_path);
900
901 r = label_fix_container(entry_path, source_path, 0);
902 if (r < 0)
903 return log_debug_errno(r, "Failed to fix label of '%s' as '%s': %m", entry_path, source_path);
904
905 return 1;
906 }
907
908 static int mount_images(const MountEntry *m) {
909 _cleanup_(loop_device_unrefp) LoopDevice *loop_device = NULL;
910 _cleanup_(decrypted_image_unrefp) DecryptedImage *decrypted_image = NULL;
911 _cleanup_(dissected_image_unrefp) DissectedImage *dissected_image = NULL;
912 _cleanup_free_ void *root_hash_decoded = NULL;
913 _cleanup_free_ char *verity_data = NULL, *hash_sig = NULL;
914 DissectImageFlags dissect_image_flags = m->read_only ? DISSECT_IMAGE_READ_ONLY : 0;
915 size_t root_hash_size = 0;
916 int r;
917
918 r = verity_metadata_load(mount_entry_source(m), NULL, &root_hash_decoded, &root_hash_size, &verity_data, &hash_sig);
919 if (r < 0)
920 return log_debug_errno(r, "Failed to load root hash: %m");
921 dissect_image_flags |= verity_data ? DISSECT_IMAGE_NO_PARTITION_TABLE : 0;
922
923 r = loop_device_make_by_path(mount_entry_source(m),
924 m->read_only ? O_RDONLY : -1 /* < 0 means writable if possible, read-only as fallback */,
925 verity_data ? 0 : LO_FLAGS_PARTSCAN,
926 &loop_device);
927 if (r < 0)
928 return log_debug_errno(r, "Failed to create loop device for image: %m");
929
930 r = dissect_image(loop_device->fd, root_hash_decoded, root_hash_size, verity_data, m->image_options, dissect_image_flags, &dissected_image);
931 /* No partition table? Might be a single-filesystem image, try again */
932 if (!verity_data && r < 0 && r == -ENOPKG)
933 r = dissect_image(loop_device->fd, root_hash_decoded, root_hash_size, verity_data, m->image_options, dissect_image_flags|DISSECT_IMAGE_NO_PARTITION_TABLE, &dissected_image);
934 if (r < 0)
935 return log_debug_errno(r, "Failed to dissect image: %m");
936
937 r = dissected_image_decrypt(dissected_image, NULL, root_hash_decoded, root_hash_size, verity_data, hash_sig, NULL, 0, dissect_image_flags, &decrypted_image);
938 if (r < 0)
939 return log_debug_errno(r, "Failed to decrypt dissected image: %m");
940
941 r = mkdir_p_label(mount_entry_path(m), 0755);
942 if (r < 0)
943 return log_debug_errno(r, "Failed to create destination directory %s: %m", mount_entry_path(m));
944 r = umount_recursive(mount_entry_path(m), 0);
945 if (r < 0)
946 return log_debug_errno(r, "Failed to umount under destination directory %s: %m", mount_entry_path(m));
947
948 r = dissected_image_mount(dissected_image, mount_entry_path(m), UID_INVALID, dissect_image_flags);
949 if (r < 0)
950 return log_debug_errno(r, "Failed to mount image: %m");
951
952 if (decrypted_image) {
953 r = decrypted_image_relinquish(decrypted_image);
954 if (r < 0)
955 return log_debug_errno(r, "Failed to relinquish decrypted image: %m");
956 }
957
958 loop_device_relinquish(loop_device);
959
960 return 1;
961 }
962
963 static int follow_symlink(
964 const char *root_directory,
965 MountEntry *m) {
966
967 _cleanup_free_ char *target = NULL;
968 int r;
969
970 /* Let's chase symlinks, but only one step at a time. That's because depending where the symlink points we
971 * might need to change the order in which we mount stuff. Hence: let's normalize piecemeal, and do one step at
972 * a time by specifying CHASE_STEP. This function returns 0 if we resolved one step, and > 0 if we reached the
973 * end and already have a fully normalized name. */
974
975 r = chase_symlinks(mount_entry_path(m), root_directory, CHASE_STEP|CHASE_NONEXISTENT, &target, NULL);
976 if (r < 0)
977 return log_debug_errno(r, "Failed to chase symlinks '%s': %m", mount_entry_path(m));
978 if (r > 0) /* Reached the end, nothing more to resolve */
979 return 1;
980
981 if (m->n_followed >= CHASE_SYMLINKS_MAX) /* put a boundary on things */
982 return log_debug_errno(SYNTHETIC_ERRNO(ELOOP),
983 "Symlink loop on '%s'.",
984 mount_entry_path(m));
985
986 log_debug("Followed mount entry path symlink %s → %s.", mount_entry_path(m), target);
987
988 free_and_replace(m->path_malloc, target);
989 m->has_prefix = true;
990
991 m->n_followed ++;
992
993 return 0;
994 }
995
996 static int apply_mount(
997 const char *root_directory,
998 MountEntry *m) {
999
1000 _cleanup_free_ char *inaccessible = NULL;
1001 bool rbind = true, make = false;
1002 const char *what;
1003 int r;
1004
1005 assert(m);
1006
1007 log_debug("Applying namespace mount on %s", mount_entry_path(m));
1008
1009 switch (m->mode) {
1010
1011 case INACCESSIBLE: {
1012 _cleanup_free_ char *tmp = NULL;
1013 const char *runtime_dir;
1014 struct stat target;
1015
1016 /* First, get rid of everything that is below if there
1017 * is anything... Then, overmount it with an
1018 * inaccessible path. */
1019 (void) umount_recursive(mount_entry_path(m), 0);
1020
1021 if (lstat(mount_entry_path(m), &target) < 0) {
1022 if (errno == ENOENT && m->ignore)
1023 return 0;
1024
1025 return log_debug_errno(errno, "Failed to lstat() %s to determine what to mount over it: %m",
1026 mount_entry_path(m));
1027 }
1028
1029 if (geteuid() == 0)
1030 runtime_dir = "/run";
1031 else {
1032 if (asprintf(&tmp, "/run/user/" UID_FMT, geteuid()) < 0)
1033 return -ENOMEM;
1034
1035 runtime_dir = tmp;
1036 }
1037
1038 r = mode_to_inaccessible_node(runtime_dir, target.st_mode, &inaccessible);
1039 if (r < 0)
1040 return log_debug_errno(SYNTHETIC_ERRNO(ELOOP),
1041 "File type not supported for inaccessible mounts. Note that symlinks are not allowed");
1042 what = inaccessible;
1043 break;
1044 }
1045
1046 case READONLY:
1047 case READWRITE:
1048 case READWRITE_IMPLICIT:
1049 r = path_is_mount_point(mount_entry_path(m), root_directory, 0);
1050 if (r == -ENOENT && m->ignore)
1051 return 0;
1052 if (r < 0)
1053 return log_debug_errno(r, "Failed to determine whether %s is already a mount point: %m",
1054 mount_entry_path(m));
1055 if (r > 0) /* Nothing to do here, it is already a mount. We just later toggle the MS_RDONLY
1056 * bit for the mount point if needed. */
1057 return 0;
1058 /* This isn't a mount point yet, let's make it one. */
1059 what = mount_entry_path(m);
1060 break;
1061
1062 case BIND_MOUNT:
1063 rbind = false;
1064
1065 _fallthrough_;
1066 case BIND_MOUNT_RECURSIVE: {
1067 _cleanup_free_ char *chased = NULL;
1068
1069 /* Since mount() will always follow symlinks we chase the symlinks on our own first. Note
1070 * that bind mount source paths are always relative to the host root, hence we pass NULL as
1071 * root directory to chase_symlinks() here. */
1072
1073 r = chase_symlinks(mount_entry_source(m), NULL, CHASE_TRAIL_SLASH, &chased, NULL);
1074 if (r == -ENOENT && m->ignore) {
1075 log_debug_errno(r, "Path %s does not exist, ignoring.", mount_entry_source(m));
1076 return 0;
1077 }
1078 if (r < 0)
1079 return log_debug_errno(r, "Failed to follow symlinks on %s: %m", mount_entry_source(m));
1080
1081 log_debug("Followed source symlinks %s → %s.", mount_entry_source(m), chased);
1082
1083 free_and_replace(m->source_malloc, chased);
1084
1085 what = mount_entry_source(m);
1086 make = true;
1087 break;
1088 }
1089
1090 case EMPTY_DIR:
1091 case TMPFS:
1092 return mount_tmpfs(m);
1093
1094 case PRIVATE_TMP:
1095 case PRIVATE_TMP_READONLY:
1096 what = mount_entry_source(m);
1097 make = true;
1098 break;
1099
1100 case PRIVATE_DEV:
1101 return mount_private_dev(m);
1102
1103 case BIND_DEV:
1104 return mount_bind_dev(m);
1105
1106 case SYSFS:
1107 return mount_sysfs(m);
1108
1109 case PROCFS:
1110 return mount_procfs(m);
1111
1112 case MOUNT_IMAGES:
1113 return mount_images(m);
1114
1115 default:
1116 assert_not_reached("Unknown mode");
1117 }
1118
1119 assert(what);
1120
1121 if (mount(what, mount_entry_path(m), NULL, MS_BIND|(rbind ? MS_REC : 0), NULL) < 0) {
1122 bool try_again = false;
1123 r = -errno;
1124
1125 if (r == -ENOENT && make) {
1126 struct stat st;
1127
1128 /* Hmm, either the source or the destination are missing. Let's see if we can create
1129 the destination, then try again. */
1130
1131 if (stat(what, &st) < 0)
1132 log_error_errno(errno, "Mount point source '%s' is not accessible: %m", what);
1133 else {
1134 int q;
1135
1136 (void) mkdir_parents(mount_entry_path(m), 0755);
1137
1138 if (S_ISDIR(st.st_mode))
1139 q = mkdir(mount_entry_path(m), 0755) < 0 ? -errno : 0;
1140 else
1141 q = touch(mount_entry_path(m));
1142
1143 if (q < 0)
1144 log_error_errno(q, "Failed to create destination mount point node '%s': %m",
1145 mount_entry_path(m));
1146 else
1147 try_again = true;
1148 }
1149 }
1150
1151 if (try_again) {
1152 if (mount(what, mount_entry_path(m), NULL, MS_BIND|(rbind ? MS_REC : 0), NULL) < 0)
1153 r = -errno;
1154 else
1155 r = 0;
1156 }
1157
1158 if (r < 0)
1159 return log_error_errno(r, "Failed to mount %s to %s: %m", what, mount_entry_path(m));
1160 }
1161
1162 log_debug("Successfully mounted %s to %s", what, mount_entry_path(m));
1163 return 0;
1164 }
1165
1166 static int make_read_only(const MountEntry *m, char **deny_list, FILE *proc_self_mountinfo) {
1167 unsigned long new_flags = 0, flags_mask = 0;
1168 bool submounts = false;
1169 int r = 0;
1170
1171 assert(m);
1172 assert(proc_self_mountinfo);
1173
1174 if (mount_entry_read_only(m) || m->mode == PRIVATE_DEV) {
1175 new_flags |= MS_RDONLY;
1176 flags_mask |= MS_RDONLY;
1177 }
1178
1179 if (m->nosuid) {
1180 new_flags |= MS_NOSUID;
1181 flags_mask |= MS_NOSUID;
1182 }
1183
1184 if (flags_mask == 0) /* No Change? */
1185 return 0;
1186
1187 /* We generally apply these changes recursively, except for /dev, and the cases we know there's
1188 * nothing further down. Set /dev readonly, but not submounts like /dev/shm. Also, we only set the
1189 * per-mount read-only flag. We can't set it on the superblock, if we are inside a user namespace
1190 * and running Linux <= 4.17. */
1191 submounts =
1192 mount_entry_read_only(m) &&
1193 !IN_SET(m->mode, EMPTY_DIR, TMPFS);
1194 if (submounts)
1195 r = bind_remount_recursive_with_mountinfo(mount_entry_path(m), new_flags, flags_mask, deny_list, proc_self_mountinfo);
1196 else
1197 r = bind_remount_one_with_mountinfo(mount_entry_path(m), new_flags, flags_mask, proc_self_mountinfo);
1198
1199 /* Not that we only turn on the MS_RDONLY flag here, we never turn it off. Something that was marked
1200 * read-only already stays this way. This improves compatibility with container managers, where we
1201 * won't attempt to undo read-only mounts already applied. */
1202
1203 if (r == -ENOENT && m->ignore)
1204 return 0;
1205 if (r < 0)
1206 return log_debug_errno(r, "Failed to re-mount '%s'%s: %m", mount_entry_path(m),
1207 submounts ? " and its submounts" : "");
1208 return 0;
1209 }
1210
1211 static bool namespace_info_mount_apivfs(const NamespaceInfo *ns_info) {
1212 assert(ns_info);
1213
1214 /*
1215 * ProtectControlGroups= and ProtectKernelTunables= imply MountAPIVFS=,
1216 * since to protect the API VFS mounts, they need to be around in the
1217 * first place...
1218 */
1219
1220 return ns_info->mount_apivfs ||
1221 ns_info->protect_control_groups ||
1222 ns_info->protect_kernel_tunables;
1223 }
1224
1225 static size_t namespace_calculate_mounts(
1226 const NamespaceInfo *ns_info,
1227 char** read_write_paths,
1228 char** read_only_paths,
1229 char** inaccessible_paths,
1230 char** empty_directories,
1231 size_t n_bind_mounts,
1232 size_t n_temporary_filesystems,
1233 size_t n_mount_images,
1234 const char* tmp_dir,
1235 const char* var_tmp_dir,
1236 const char* log_namespace,
1237 ProtectHome protect_home,
1238 ProtectSystem protect_system) {
1239
1240 size_t protect_home_cnt;
1241 size_t protect_system_cnt =
1242 (protect_system == PROTECT_SYSTEM_STRICT ?
1243 ELEMENTSOF(protect_system_strict_table) :
1244 ((protect_system == PROTECT_SYSTEM_FULL) ?
1245 ELEMENTSOF(protect_system_full_table) :
1246 ((protect_system == PROTECT_SYSTEM_YES) ?
1247 ELEMENTSOF(protect_system_yes_table) : 0)));
1248
1249 protect_home_cnt =
1250 (protect_home == PROTECT_HOME_YES ?
1251 ELEMENTSOF(protect_home_yes_table) :
1252 ((protect_home == PROTECT_HOME_READ_ONLY) ?
1253 ELEMENTSOF(protect_home_read_only_table) :
1254 ((protect_home == PROTECT_HOME_TMPFS) ?
1255 ELEMENTSOF(protect_home_tmpfs_table) : 0)));
1256
1257 return !!tmp_dir + !!var_tmp_dir +
1258 strv_length(read_write_paths) +
1259 strv_length(read_only_paths) +
1260 strv_length(inaccessible_paths) +
1261 strv_length(empty_directories) +
1262 n_bind_mounts +
1263 n_mount_images +
1264 n_temporary_filesystems +
1265 ns_info->private_dev +
1266 (ns_info->protect_kernel_tunables ? ELEMENTSOF(protect_kernel_tunables_table) : 0) +
1267 (ns_info->protect_kernel_modules ? ELEMENTSOF(protect_kernel_modules_table) : 0) +
1268 (ns_info->protect_kernel_logs ? ELEMENTSOF(protect_kernel_logs_table) : 0) +
1269 (ns_info->protect_control_groups ? 1 : 0) +
1270 protect_home_cnt + protect_system_cnt +
1271 (ns_info->protect_hostname ? 2 : 0) +
1272 (namespace_info_mount_apivfs(ns_info) ? ELEMENTSOF(apivfs_table) : 0) +
1273 !!log_namespace;
1274 }
1275
1276 static void normalize_mounts(const char *root_directory, MountEntry *mounts, size_t *n_mounts) {
1277 assert(root_directory);
1278 assert(n_mounts);
1279 assert(mounts || *n_mounts == 0);
1280
1281 typesafe_qsort(mounts, *n_mounts, mount_path_compare);
1282
1283 drop_duplicates(mounts, n_mounts);
1284 drop_outside_root(root_directory, mounts, n_mounts);
1285 drop_inaccessible(mounts, n_mounts);
1286 drop_nop(mounts, n_mounts);
1287 }
1288
1289 static bool root_read_only(
1290 char **read_only_paths,
1291 ProtectSystem protect_system) {
1292
1293 /* Determine whether the root directory is going to be read-only given the configured settings. */
1294
1295 if (protect_system == PROTECT_SYSTEM_STRICT)
1296 return true;
1297
1298 if (prefixed_path_strv_contains(read_only_paths, "/"))
1299 return true;
1300
1301 return false;
1302 }
1303
1304 static bool home_read_only(
1305 char** read_only_paths,
1306 char** inaccessible_paths,
1307 char** empty_directories,
1308 const BindMount *bind_mounts,
1309 size_t n_bind_mounts,
1310 const TemporaryFileSystem *temporary_filesystems,
1311 size_t n_temporary_filesystems,
1312 ProtectHome protect_home) {
1313
1314 size_t i;
1315
1316 /* Determine whether the /home directory is going to be read-only given the configured settings. Yes,
1317 * this is a bit sloppy, since we don't bother checking for cases where / is affected by multiple
1318 * settings. */
1319
1320 if (protect_home != PROTECT_HOME_NO)
1321 return true;
1322
1323 if (prefixed_path_strv_contains(read_only_paths, "/home") ||
1324 prefixed_path_strv_contains(inaccessible_paths, "/home") ||
1325 prefixed_path_strv_contains(empty_directories, "/home"))
1326 return true;
1327
1328 for (i = 0; i < n_temporary_filesystems; i++)
1329 if (path_equal(temporary_filesystems[i].path, "/home"))
1330 return true;
1331
1332 /* If /home is overmounted with some dir from the host it's not writable. */
1333 for (i = 0; i < n_bind_mounts; i++)
1334 if (path_equal(bind_mounts[i].destination, "/home"))
1335 return true;
1336
1337 return false;
1338 }
1339
1340 int setup_namespace(
1341 const char* root_directory,
1342 const char* root_image,
1343 const MountOptions *root_image_options,
1344 const NamespaceInfo *ns_info,
1345 char** read_write_paths,
1346 char** read_only_paths,
1347 char** inaccessible_paths,
1348 char** empty_directories,
1349 const BindMount *bind_mounts,
1350 size_t n_bind_mounts,
1351 const TemporaryFileSystem *temporary_filesystems,
1352 size_t n_temporary_filesystems,
1353 const MountImage *mount_images,
1354 size_t n_mount_images,
1355 const char* tmp_dir,
1356 const char* var_tmp_dir,
1357 const char *log_namespace,
1358 ProtectHome protect_home,
1359 ProtectSystem protect_system,
1360 unsigned long mount_flags,
1361 const void *root_hash,
1362 size_t root_hash_size,
1363 const char *root_hash_path,
1364 const void *root_hash_sig,
1365 size_t root_hash_sig_size,
1366 const char *root_hash_sig_path,
1367 const char *root_verity,
1368 DissectImageFlags dissect_image_flags,
1369 char **error_path) {
1370
1371 _cleanup_(loop_device_unrefp) LoopDevice *loop_device = NULL;
1372 _cleanup_(decrypted_image_unrefp) DecryptedImage *decrypted_image = NULL;
1373 _cleanup_(dissected_image_unrefp) DissectedImage *dissected_image = NULL;
1374 _cleanup_free_ void *root_hash_decoded = NULL;
1375 _cleanup_free_ char *verity_data = NULL, *hash_sig_path = NULL;
1376 MountEntry *m = NULL, *mounts = NULL;
1377 size_t n_mounts;
1378 bool require_prefix = false;
1379 const char *root;
1380 int r = 0;
1381
1382 assert(ns_info);
1383
1384 if (mount_flags == 0)
1385 mount_flags = MS_SHARED;
1386
1387 if (root_image) {
1388 dissect_image_flags |= DISSECT_IMAGE_REQUIRE_ROOT;
1389
1390 /* Make the whole image read-only if we can determine that we only access it in a read-only fashion. */
1391 if (root_read_only(read_only_paths,
1392 protect_system) &&
1393 home_read_only(read_only_paths, inaccessible_paths, empty_directories,
1394 bind_mounts, n_bind_mounts, temporary_filesystems, n_temporary_filesystems,
1395 protect_home) &&
1396 strv_isempty(read_write_paths))
1397 dissect_image_flags |= DISSECT_IMAGE_READ_ONLY;
1398
1399 r = loop_device_make_by_path(root_image,
1400 FLAGS_SET(dissect_image_flags, DISSECT_IMAGE_READ_ONLY) ? O_RDONLY : -1 /* < 0 means writable if possible, read-only as fallback */,
1401 LO_FLAGS_PARTSCAN,
1402 &loop_device);
1403 if (r < 0)
1404 return log_debug_errno(r, "Failed to create loop device for root image: %m");
1405
1406 r = verity_metadata_load(root_image,
1407 root_hash_path,
1408 root_hash ? NULL : &root_hash_decoded,
1409 root_hash ? NULL : &root_hash_size,
1410 root_verity ? NULL : &verity_data,
1411 root_hash_sig || root_hash_sig_path ? NULL : &hash_sig_path);
1412 if (r < 0)
1413 return log_debug_errno(r, "Failed to load root hash: %m");
1414 dissect_image_flags |= root_verity || verity_data ? DISSECT_IMAGE_NO_PARTITION_TABLE : 0;
1415
1416 r = dissect_image(loop_device->fd,
1417 root_hash ?: root_hash_decoded,
1418 root_hash_size,
1419 root_verity ?: verity_data,
1420 root_image_options,
1421 dissect_image_flags,
1422 &dissected_image);
1423 if (r < 0)
1424 return log_debug_errno(r, "Failed to dissect image: %m");
1425
1426 r = dissected_image_decrypt(dissected_image,
1427 NULL,
1428 root_hash ?: root_hash_decoded,
1429 root_hash_size,
1430 root_verity ?: verity_data,
1431 root_hash_sig_path ?: hash_sig_path,
1432 root_hash_sig,
1433 root_hash_sig_size,
1434 dissect_image_flags,
1435 &decrypted_image);
1436 if (r < 0)
1437 return log_debug_errno(r, "Failed to decrypt dissected image: %m");
1438 }
1439
1440 if (root_directory)
1441 root = root_directory;
1442 else {
1443 /* Always create the mount namespace in a temporary directory, instead of operating
1444 * directly in the root. The temporary directory prevents any mounts from being
1445 * potentially obscured my other mounts we already applied.
1446 * We use the same mount point for all images, which is safe, since they all live
1447 * in their own namespaces after all, and hence won't see each other. */
1448
1449 root = "/run/systemd/unit-root";
1450 (void) mkdir_label(root, 0700);
1451 require_prefix = true;
1452 }
1453
1454 n_mounts = namespace_calculate_mounts(
1455 ns_info,
1456 read_write_paths,
1457 read_only_paths,
1458 inaccessible_paths,
1459 empty_directories,
1460 n_bind_mounts,
1461 n_temporary_filesystems,
1462 n_mount_images,
1463 tmp_dir, var_tmp_dir,
1464 log_namespace,
1465 protect_home, protect_system);
1466
1467 if (n_mounts > 0) {
1468 m = mounts = new0(MountEntry, n_mounts);
1469 if (!mounts)
1470 return -ENOMEM;
1471
1472 r = append_access_mounts(&m, read_write_paths, READWRITE, require_prefix);
1473 if (r < 0)
1474 goto finish;
1475
1476 r = append_access_mounts(&m, read_only_paths, READONLY, require_prefix);
1477 if (r < 0)
1478 goto finish;
1479
1480 r = append_access_mounts(&m, inaccessible_paths, INACCESSIBLE, require_prefix);
1481 if (r < 0)
1482 goto finish;
1483
1484 r = append_empty_dir_mounts(&m, empty_directories);
1485 if (r < 0)
1486 goto finish;
1487
1488 r = append_bind_mounts(&m, bind_mounts, n_bind_mounts);
1489 if (r < 0)
1490 goto finish;
1491
1492 r = append_tmpfs_mounts(&m, temporary_filesystems, n_temporary_filesystems);
1493 if (r < 0)
1494 goto finish;
1495
1496 if (tmp_dir) {
1497 bool ro = streq(tmp_dir, RUN_SYSTEMD_EMPTY);
1498
1499 *(m++) = (MountEntry) {
1500 .path_const = "/tmp",
1501 .mode = ro ? PRIVATE_TMP_READONLY : PRIVATE_TMP,
1502 .source_const = tmp_dir,
1503 };
1504 }
1505
1506 if (var_tmp_dir) {
1507 bool ro = streq(var_tmp_dir, RUN_SYSTEMD_EMPTY);
1508
1509 *(m++) = (MountEntry) {
1510 .path_const = "/var/tmp",
1511 .mode = ro ? PRIVATE_TMP_READONLY : PRIVATE_TMP,
1512 .source_const = var_tmp_dir,
1513 };
1514 }
1515
1516 r = append_mount_images(&m, mount_images, n_mount_images);
1517 if (r < 0)
1518 goto finish;
1519
1520 if (ns_info->private_dev) {
1521 *(m++) = (MountEntry) {
1522 .path_const = "/dev",
1523 .mode = PRIVATE_DEV,
1524 .flags = DEV_MOUNT_OPTIONS,
1525 };
1526 }
1527
1528 if (ns_info->protect_kernel_tunables) {
1529 r = append_static_mounts(&m,
1530 protect_kernel_tunables_table,
1531 ELEMENTSOF(protect_kernel_tunables_table),
1532 ns_info->ignore_protect_paths);
1533 if (r < 0)
1534 goto finish;
1535 }
1536
1537 if (ns_info->protect_kernel_modules) {
1538 r = append_static_mounts(&m,
1539 protect_kernel_modules_table,
1540 ELEMENTSOF(protect_kernel_modules_table),
1541 ns_info->ignore_protect_paths);
1542 if (r < 0)
1543 goto finish;
1544 }
1545
1546 if (ns_info->protect_kernel_logs) {
1547 r = append_static_mounts(&m,
1548 protect_kernel_logs_table,
1549 ELEMENTSOF(protect_kernel_logs_table),
1550 ns_info->ignore_protect_paths);
1551 if (r < 0)
1552 goto finish;
1553 }
1554
1555 if (ns_info->protect_control_groups) {
1556 *(m++) = (MountEntry) {
1557 .path_const = "/sys/fs/cgroup",
1558 .mode = READONLY,
1559 };
1560 }
1561
1562 r = append_protect_home(&m, protect_home, ns_info->ignore_protect_paths);
1563 if (r < 0)
1564 goto finish;
1565
1566 r = append_protect_system(&m, protect_system, false);
1567 if (r < 0)
1568 goto finish;
1569
1570 if (namespace_info_mount_apivfs(ns_info)) {
1571 r = append_static_mounts(&m,
1572 apivfs_table,
1573 ELEMENTSOF(apivfs_table),
1574 ns_info->ignore_protect_paths);
1575 if (r < 0)
1576 goto finish;
1577 }
1578
1579 if (ns_info->protect_hostname) {
1580 *(m++) = (MountEntry) {
1581 .path_const = "/proc/sys/kernel/hostname",
1582 .mode = READONLY,
1583 };
1584 *(m++) = (MountEntry) {
1585 .path_const = "/proc/sys/kernel/domainname",
1586 .mode = READONLY,
1587 };
1588 }
1589
1590 if (log_namespace) {
1591 _cleanup_free_ char *q;
1592
1593 q = strjoin("/run/systemd/journal.", log_namespace);
1594 if (!q) {
1595 r = -ENOMEM;
1596 goto finish;
1597 }
1598
1599 *(m++) = (MountEntry) {
1600 .path_const = "/run/systemd/journal",
1601 .mode = BIND_MOUNT_RECURSIVE,
1602 .read_only = true,
1603 .source_malloc = TAKE_PTR(q),
1604 };
1605 }
1606
1607 assert(mounts + n_mounts == m);
1608
1609 /* Prepend the root directory where that's necessary */
1610 r = prefix_where_needed(mounts, n_mounts, root);
1611 if (r < 0)
1612 goto finish;
1613
1614 normalize_mounts(root, mounts, &n_mounts);
1615 }
1616
1617 /* All above is just preparation, figuring out what to do. Let's now actually start doing something. */
1618
1619 if (unshare(CLONE_NEWNS) < 0) {
1620 r = log_debug_errno(errno, "Failed to unshare the mount namespace: %m");
1621 if (IN_SET(r, -EACCES, -EPERM, -EOPNOTSUPP, -ENOSYS))
1622 /* If the kernel doesn't support namespaces, or when there's a MAC or seccomp filter
1623 * in place that doesn't allow us to create namespaces (or a missing cap), then
1624 * propagate a recognizable error back, which the caller can use to detect this case
1625 * (and only this) and optionally continue without namespacing applied. */
1626 r = -ENOANO;
1627
1628 goto finish;
1629 }
1630
1631 /* Remount / as SLAVE so that nothing now mounted in the namespace
1632 * shows up in the parent */
1633 if (mount(NULL, "/", NULL, MS_SLAVE|MS_REC, NULL) < 0) {
1634 r = log_debug_errno(errno, "Failed to remount '/' as SLAVE: %m");
1635 goto finish;
1636 }
1637
1638 if (root_image) {
1639 /* A root image is specified, mount it to the right place */
1640 r = dissected_image_mount(dissected_image, root, UID_INVALID, dissect_image_flags);
1641 if (r < 0) {
1642 log_debug_errno(r, "Failed to mount root image: %m");
1643 goto finish;
1644 }
1645
1646 if (decrypted_image) {
1647 r = decrypted_image_relinquish(decrypted_image);
1648 if (r < 0) {
1649 log_debug_errno(r, "Failed to relinquish decrypted image: %m");
1650 goto finish;
1651 }
1652 }
1653
1654 loop_device_relinquish(loop_device);
1655
1656 } else if (root_directory) {
1657
1658 /* A root directory is specified. Turn its directory into bind mount, if it isn't one yet. */
1659 r = path_is_mount_point(root, NULL, AT_SYMLINK_FOLLOW);
1660 if (r < 0) {
1661 log_debug_errno(r, "Failed to detect that %s is a mount point or not: %m", root);
1662 goto finish;
1663 }
1664 if (r == 0) {
1665 if (mount(root, root, NULL, MS_BIND|MS_REC, NULL) < 0) {
1666 r = log_debug_errno(errno, "Failed to bind mount '%s': %m", root);
1667 goto finish;
1668 }
1669 }
1670
1671 } else {
1672
1673 /* Let's mount the main root directory to the root directory to use */
1674 if (mount("/", root, NULL, MS_BIND|MS_REC, NULL) < 0) {
1675 r = log_debug_errno(errno, "Failed to bind mount '/' on '%s': %m", root);
1676 goto finish;
1677 }
1678 }
1679
1680 /* Try to set up the new root directory before mounting anything else there. */
1681 if (root_image || root_directory)
1682 (void) base_filesystem_create(root, UID_INVALID, GID_INVALID);
1683
1684 if (n_mounts > 0) {
1685 _cleanup_fclose_ FILE *proc_self_mountinfo = NULL;
1686 _cleanup_free_ char **deny_list = NULL;
1687 size_t j;
1688
1689 /* Open /proc/self/mountinfo now as it may become unavailable if we mount anything on top of
1690 * /proc. For example, this is the case with the option: 'InaccessiblePaths=/proc'. */
1691 proc_self_mountinfo = fopen("/proc/self/mountinfo", "re");
1692 if (!proc_self_mountinfo) {
1693 r = log_debug_errno(errno, "Failed to open /proc/self/mountinfo: %m");
1694 if (error_path)
1695 *error_path = strdup("/proc/self/mountinfo");
1696 goto finish;
1697 }
1698
1699 /* First round, establish all mounts we need */
1700 for (;;) {
1701 bool again = false;
1702
1703 for (m = mounts; m < mounts + n_mounts; ++m) {
1704
1705 if (m->applied)
1706 continue;
1707
1708 r = follow_symlink(root, m);
1709 if (r < 0) {
1710 if (error_path && mount_entry_path(m))
1711 *error_path = strdup(mount_entry_path(m));
1712 goto finish;
1713 }
1714 if (r == 0) {
1715 /* We hit a symlinked mount point. The entry got rewritten and might
1716 * point to a very different place now. Let's normalize the changed
1717 * list, and start from the beginning. After all to mount the entry
1718 * at the new location we might need some other mounts first */
1719 again = true;
1720 break;
1721 }
1722
1723 r = apply_mount(root, m);
1724 if (r < 0) {
1725 if (error_path && mount_entry_path(m))
1726 *error_path = strdup(mount_entry_path(m));
1727 goto finish;
1728 }
1729
1730 m->applied = true;
1731 }
1732
1733 if (!again)
1734 break;
1735
1736 normalize_mounts(root, mounts, &n_mounts);
1737 }
1738
1739 /* Create a deny list we can pass to bind_mount_recursive() */
1740 deny_list = new(char*, n_mounts+1);
1741 if (!deny_list) {
1742 r = -ENOMEM;
1743 goto finish;
1744 }
1745 for (j = 0; j < n_mounts; j++)
1746 deny_list[j] = (char*) mount_entry_path(mounts+j);
1747 deny_list[j] = NULL;
1748
1749 /* Second round, flip the ro bits if necessary. */
1750 for (m = mounts; m < mounts + n_mounts; ++m) {
1751 r = make_read_only(m, deny_list, proc_self_mountinfo);
1752 if (r < 0) {
1753 if (error_path && mount_entry_path(m))
1754 *error_path = strdup(mount_entry_path(m));
1755 goto finish;
1756 }
1757 }
1758 }
1759
1760 /* MS_MOVE does not work on MS_SHARED so the remount MS_SHARED will be done later */
1761 r = mount_move_root(root);
1762 if (r < 0) {
1763 log_debug_errno(r, "Failed to mount root with MS_MOVE: %m");
1764 goto finish;
1765 }
1766
1767 /* Remount / as the desired mode. Note that this will not
1768 * reestablish propagation from our side to the host, since
1769 * what's disconnected is disconnected. */
1770 if (mount(NULL, "/", NULL, mount_flags | MS_REC, NULL) < 0) {
1771 r = log_debug_errno(errno, "Failed to remount '/' with desired mount flags: %m");
1772 goto finish;
1773 }
1774
1775 r = 0;
1776
1777 finish:
1778 if (n_mounts > 0)
1779 for (m = mounts; m < mounts + n_mounts; m++)
1780 mount_entry_done(m);
1781
1782 free(mounts);
1783
1784 return r;
1785 }
1786
1787 void bind_mount_free_many(BindMount *b, size_t n) {
1788 size_t i;
1789
1790 assert(b || n == 0);
1791
1792 for (i = 0; i < n; i++) {
1793 free(b[i].source);
1794 free(b[i].destination);
1795 }
1796
1797 free(b);
1798 }
1799
1800 int bind_mount_add(BindMount **b, size_t *n, const BindMount *item) {
1801 _cleanup_free_ char *s = NULL, *d = NULL;
1802 BindMount *c;
1803
1804 assert(b);
1805 assert(n);
1806 assert(item);
1807
1808 s = strdup(item->source);
1809 if (!s)
1810 return -ENOMEM;
1811
1812 d = strdup(item->destination);
1813 if (!d)
1814 return -ENOMEM;
1815
1816 c = reallocarray(*b, *n + 1, sizeof(BindMount));
1817 if (!c)
1818 return -ENOMEM;
1819
1820 *b = c;
1821
1822 c[(*n) ++] = (BindMount) {
1823 .source = TAKE_PTR(s),
1824 .destination = TAKE_PTR(d),
1825 .read_only = item->read_only,
1826 .nosuid = item->nosuid,
1827 .recursive = item->recursive,
1828 .ignore_enoent = item->ignore_enoent,
1829 };
1830
1831 return 0;
1832 }
1833
1834 MountImage* mount_image_free_many(MountImage *m, size_t *n) {
1835 size_t i;
1836
1837 assert(n);
1838 assert(m || *n == 0);
1839
1840 for (i = 0; i < *n; i++) {
1841 free(m[i].source);
1842 free(m[i].destination);
1843 mount_options_free_all(m[i].mount_options);
1844 }
1845
1846 free(m);
1847 *n = 0;
1848 return NULL;
1849 }
1850
1851 int mount_image_add(MountImage **m, size_t *n, const MountImage *item) {
1852 _cleanup_free_ char *s = NULL, *d = NULL;
1853 _cleanup_(mount_options_free_allp) MountOptions *options = NULL;
1854 MountOptions *i;
1855 MountImage *c;
1856
1857 assert(m);
1858 assert(n);
1859 assert(item);
1860
1861 s = strdup(item->source);
1862 if (!s)
1863 return -ENOMEM;
1864
1865 d = strdup(item->destination);
1866 if (!d)
1867 return -ENOMEM;
1868
1869 LIST_FOREACH(mount_options, i, item->mount_options) {
1870 _cleanup_(mount_options_free_allp) MountOptions *o;
1871
1872 o = new(MountOptions, 1);
1873 if (!o)
1874 return -ENOMEM;
1875
1876 *o = (MountOptions) {
1877 .partition_designator = i->partition_designator,
1878 .options = strdup(i->options),
1879 };
1880 if (!o->options)
1881 return -ENOMEM;
1882
1883 LIST_APPEND(mount_options, options, TAKE_PTR(o));
1884 }
1885
1886 c = reallocarray(*m, *n + 1, sizeof(MountImage));
1887 if (!c)
1888 return -ENOMEM;
1889
1890 *m = c;
1891
1892 c[(*n) ++] = (MountImage) {
1893 .source = TAKE_PTR(s),
1894 .destination = TAKE_PTR(d),
1895 .mount_options = TAKE_PTR(options),
1896 .ignore_enoent = item->ignore_enoent,
1897 };
1898
1899 return 0;
1900 }
1901
1902 void temporary_filesystem_free_many(TemporaryFileSystem *t, size_t n) {
1903 size_t i;
1904
1905 assert(t || n == 0);
1906
1907 for (i = 0; i < n; i++) {
1908 free(t[i].path);
1909 free(t[i].options);
1910 }
1911
1912 free(t);
1913 }
1914
1915 int temporary_filesystem_add(
1916 TemporaryFileSystem **t,
1917 size_t *n,
1918 const char *path,
1919 const char *options) {
1920
1921 _cleanup_free_ char *p = NULL, *o = NULL;
1922 TemporaryFileSystem *c;
1923
1924 assert(t);
1925 assert(n);
1926 assert(path);
1927
1928 p = strdup(path);
1929 if (!p)
1930 return -ENOMEM;
1931
1932 if (!isempty(options)) {
1933 o = strdup(options);
1934 if (!o)
1935 return -ENOMEM;
1936 }
1937
1938 c = reallocarray(*t, *n + 1, sizeof(TemporaryFileSystem));
1939 if (!c)
1940 return -ENOMEM;
1941
1942 *t = c;
1943
1944 c[(*n) ++] = (TemporaryFileSystem) {
1945 .path = TAKE_PTR(p),
1946 .options = TAKE_PTR(o),
1947 };
1948
1949 return 0;
1950 }
1951
1952 static int make_tmp_prefix(const char *prefix) {
1953 _cleanup_free_ char *t = NULL;
1954 int r;
1955
1956 /* Don't do anything unless we know the dir is actually missing */
1957 r = access(prefix, F_OK);
1958 if (r >= 0)
1959 return 0;
1960 if (errno != ENOENT)
1961 return -errno;
1962
1963 r = mkdir_parents(prefix, 0755);
1964 if (r < 0)
1965 return r;
1966
1967 r = tempfn_random(prefix, NULL, &t);
1968 if (r < 0)
1969 return r;
1970
1971 if (mkdir(t, 0777) < 0)
1972 return -errno;
1973
1974 if (chmod(t, 01777) < 0) {
1975 r = -errno;
1976 (void) rmdir(t);
1977 return r;
1978 }
1979
1980 if (rename(t, prefix) < 0) {
1981 r = -errno;
1982 (void) rmdir(t);
1983 return r == -EEXIST ? 0 : r; /* it's fine if someone else created the dir by now */
1984 }
1985
1986 return 0;
1987
1988 }
1989
1990 static int make_tmp_subdir(const char *parent, char **ret) {
1991 _cleanup_free_ char *y = NULL;
1992
1993 y = path_join(parent, "/tmp");
1994 if (!y)
1995 return -ENOMEM;
1996
1997 RUN_WITH_UMASK(0000) {
1998 if (mkdir(y, 0777 | S_ISVTX) < 0)
1999 return -errno;
2000 }
2001
2002 if (ret)
2003 *ret = TAKE_PTR(y);
2004 return 0;
2005 }
2006
2007 static int setup_one_tmp_dir(const char *id, const char *prefix, char **path, char **tmp_path) {
2008 _cleanup_free_ char *x = NULL;
2009 char bid[SD_ID128_STRING_MAX];
2010 sd_id128_t boot_id;
2011 bool rw = true;
2012 int r;
2013
2014 assert(id);
2015 assert(prefix);
2016 assert(path);
2017
2018 /* We include the boot id in the directory so that after a
2019 * reboot we can easily identify obsolete directories. */
2020
2021 r = sd_id128_get_boot(&boot_id);
2022 if (r < 0)
2023 return r;
2024
2025 x = strjoin(prefix, "/systemd-private-", sd_id128_to_string(boot_id, bid), "-", id, "-XXXXXX");
2026 if (!x)
2027 return -ENOMEM;
2028
2029 r = make_tmp_prefix(prefix);
2030 if (r < 0)
2031 return r;
2032
2033 RUN_WITH_UMASK(0077)
2034 if (!mkdtemp(x)) {
2035 if (errno == EROFS || ERRNO_IS_DISK_SPACE(errno))
2036 rw = false;
2037 else
2038 return -errno;
2039 }
2040
2041 if (rw) {
2042 r = make_tmp_subdir(x, tmp_path);
2043 if (r < 0)
2044 return r;
2045 } else {
2046 /* Trouble: we failed to create the directory. Instead of failing, let's simulate /tmp being
2047 * read-only. This way the service will get the EROFS result as if it was writing to the real
2048 * file system. */
2049 r = mkdir_p(RUN_SYSTEMD_EMPTY, 0500);
2050 if (r < 0)
2051 return r;
2052
2053 r = free_and_strdup(&x, RUN_SYSTEMD_EMPTY);
2054 if (r < 0)
2055 return r;
2056 }
2057
2058 *path = TAKE_PTR(x);
2059 return 0;
2060 }
2061
2062 int setup_tmp_dirs(const char *id, char **tmp_dir, char **var_tmp_dir) {
2063 _cleanup_(namespace_cleanup_tmpdirp) char *a = NULL;
2064 _cleanup_(rmdir_and_freep) char *a_tmp = NULL;
2065 char *b;
2066 int r;
2067
2068 assert(id);
2069 assert(tmp_dir);
2070 assert(var_tmp_dir);
2071
2072 r = setup_one_tmp_dir(id, "/tmp", &a, &a_tmp);
2073 if (r < 0)
2074 return r;
2075
2076 r = setup_one_tmp_dir(id, "/var/tmp", &b, NULL);
2077 if (r < 0)
2078 return r;
2079
2080 a_tmp = mfree(a_tmp); /* avoid rmdir */
2081 *tmp_dir = TAKE_PTR(a);
2082 *var_tmp_dir = TAKE_PTR(b);
2083
2084 return 0;
2085 }
2086
2087 int setup_netns(const int netns_storage_socket[static 2]) {
2088 _cleanup_close_ int netns = -1;
2089 int r, q;
2090
2091 assert(netns_storage_socket);
2092 assert(netns_storage_socket[0] >= 0);
2093 assert(netns_storage_socket[1] >= 0);
2094
2095 /* We use the passed socketpair as a storage buffer for our
2096 * namespace reference fd. Whatever process runs this first
2097 * shall create a new namespace, all others should just join
2098 * it. To serialize that we use a file lock on the socket
2099 * pair.
2100 *
2101 * It's a bit crazy, but hey, works great! */
2102
2103 if (lockf(netns_storage_socket[0], F_LOCK, 0) < 0)
2104 return -errno;
2105
2106 netns = receive_one_fd(netns_storage_socket[0], MSG_DONTWAIT);
2107 if (netns == -EAGAIN) {
2108 /* Nothing stored yet, so let's create a new namespace. */
2109
2110 if (unshare(CLONE_NEWNET) < 0) {
2111 r = -errno;
2112 goto fail;
2113 }
2114
2115 (void) loopback_setup();
2116
2117 netns = open("/proc/self/ns/net", O_RDONLY|O_CLOEXEC|O_NOCTTY);
2118 if (netns < 0) {
2119 r = -errno;
2120 goto fail;
2121 }
2122
2123 r = 1;
2124
2125 } else if (netns < 0) {
2126 r = netns;
2127 goto fail;
2128
2129 } else {
2130 /* Yay, found something, so let's join the namespace */
2131 if (setns(netns, CLONE_NEWNET) < 0) {
2132 r = -errno;
2133 goto fail;
2134 }
2135
2136 r = 0;
2137 }
2138
2139 q = send_one_fd(netns_storage_socket[1], netns, MSG_DONTWAIT);
2140 if (q < 0) {
2141 r = q;
2142 goto fail;
2143 }
2144
2145 fail:
2146 (void) lockf(netns_storage_socket[0], F_ULOCK, 0);
2147 return r;
2148 }
2149
2150 int open_netns_path(const int netns_storage_socket[static 2], const char *path) {
2151 _cleanup_close_ int netns = -1;
2152 int q, r;
2153
2154 assert(netns_storage_socket);
2155 assert(netns_storage_socket[0] >= 0);
2156 assert(netns_storage_socket[1] >= 0);
2157 assert(path);
2158
2159 /* If the storage socket doesn't contain a netns fd yet, open one via the file system and store it in
2160 * it. This is supposed to be called ahead of time, i.e. before setup_netns() which will allocate a
2161 * new anonymous netns if needed. */
2162
2163 if (lockf(netns_storage_socket[0], F_LOCK, 0) < 0)
2164 return -errno;
2165
2166 netns = receive_one_fd(netns_storage_socket[0], MSG_DONTWAIT);
2167 if (netns == -EAGAIN) {
2168 /* Nothing stored yet. Open the file from the file system. */
2169
2170 netns = open(path, O_RDONLY|O_NOCTTY|O_CLOEXEC);
2171 if (netns < 0) {
2172 r = -errno;
2173 goto fail;
2174 }
2175
2176 r = fd_is_network_ns(netns);
2177 if (r == 0) { /* Not a netns? Refuse early. */
2178 r = -EINVAL;
2179 goto fail;
2180 }
2181 if (r < 0 && r != -EUCLEAN) /* EUCLEAN: we don't know */
2182 goto fail;
2183
2184 r = 1;
2185
2186 } else if (netns < 0) {
2187 r = netns;
2188 goto fail;
2189 } else
2190 r = 0; /* Already allocated */
2191
2192 q = send_one_fd(netns_storage_socket[1], netns, MSG_DONTWAIT);
2193 if (q < 0) {
2194 r = q;
2195 goto fail;
2196 }
2197
2198 fail:
2199 (void) lockf(netns_storage_socket[0], F_ULOCK, 0);
2200 return r;
2201 }
2202
2203 bool ns_type_supported(NamespaceType type) {
2204 const char *t, *ns_proc;
2205
2206 t = namespace_type_to_string(type);
2207 if (!t) /* Don't know how to translate this? Then it's not supported */
2208 return false;
2209
2210 ns_proc = strjoina("/proc/self/ns/", t);
2211 return access(ns_proc, F_OK) == 0;
2212 }
2213
2214 static const char *const protect_home_table[_PROTECT_HOME_MAX] = {
2215 [PROTECT_HOME_NO] = "no",
2216 [PROTECT_HOME_YES] = "yes",
2217 [PROTECT_HOME_READ_ONLY] = "read-only",
2218 [PROTECT_HOME_TMPFS] = "tmpfs",
2219 };
2220
2221 DEFINE_STRING_TABLE_LOOKUP_WITH_BOOLEAN(protect_home, ProtectHome, PROTECT_HOME_YES);
2222
2223 static const char *const protect_system_table[_PROTECT_SYSTEM_MAX] = {
2224 [PROTECT_SYSTEM_NO] = "no",
2225 [PROTECT_SYSTEM_YES] = "yes",
2226 [PROTECT_SYSTEM_FULL] = "full",
2227 [PROTECT_SYSTEM_STRICT] = "strict",
2228 };
2229
2230 DEFINE_STRING_TABLE_LOOKUP_WITH_BOOLEAN(protect_system, ProtectSystem, PROTECT_SYSTEM_YES);
2231
2232 static const char* const namespace_type_table[] = {
2233 [NAMESPACE_MOUNT] = "mnt",
2234 [NAMESPACE_CGROUP] = "cgroup",
2235 [NAMESPACE_UTS] = "uts",
2236 [NAMESPACE_IPC] = "ipc",
2237 [NAMESPACE_USER] = "user",
2238 [NAMESPACE_PID] = "pid",
2239 [NAMESPACE_NET] = "net",
2240 };
2241
2242 DEFINE_STRING_TABLE_LOOKUP(namespace_type, NamespaceType);