]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/namespace.c
dissect-image: process /usr/ GPT partition type
[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, true },
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, const NamespaceInfo *ns_info) {
867 const char *entry_path;
868
869 assert(m);
870 assert(ns_info);
871
872 entry_path = mount_entry_path(m);
873
874 /* Mount a new instance, so that we get the one that matches our user namespace, if we are running in
875 * one. i.e we don't reuse existing mounts here under any condition, we want a new instance owned by
876 * our user namespace and with our hidepid= settings applied. Hence, let's get rid of everything
877 * mounted on /proc/ first. */
878
879 (void) mkdir_p_label(entry_path, 0755);
880 (void) umount_recursive(entry_path, 0);
881
882 if (ns_info->protect_proc != PROTECT_PROC_DEFAULT ||
883 ns_info->proc_subset != PROC_SUBSET_ALL) {
884 _cleanup_free_ char *opts = NULL;
885
886 /* Starting with kernel 5.8 procfs' hidepid= logic is truly per-instance (previously it
887 * pretended to be per-instance but actually was per-namespace), hence let's make use of it
888 * if requested. To make sure this logic succeeds only on kernels where hidepid= is
889 * per-instance, we'll exclusively use the textual value for hidepid=, since support was
890 * added in the same commit: if it's supported it is thus also per-instance. */
891
892 opts = strjoin("hidepid=",
893 ns_info->protect_proc == PROTECT_PROC_DEFAULT ? "off" :
894 protect_proc_to_string(ns_info->protect_proc),
895 ns_info->proc_subset == PROC_SUBSET_PID ? ",subset=pid" : "");
896 if (!opts)
897 return -ENOMEM;
898
899 if (mount("proc", entry_path, "proc", MS_NOSUID|MS_NOEXEC|MS_NODEV, opts) < 0) {
900 if (errno != EINVAL)
901 return log_debug_errno(errno, "Failed to mount %s (options=%s): %m", mount_entry_path(m), opts);
902
903 /* If this failed with EINVAL then this likely means the textual hidepid= stuff is
904 * not supported by the kernel, and thus the per-instance hidepid= neither, which
905 * means we really don't want to use it, since it would affect our host's /proc
906 * mount. Hence let's gracefully fallback to a classic, unrestricted version. */
907 } else
908 return 1;
909 }
910
911 if (mount("proc", entry_path, "proc", MS_NOSUID|MS_NOEXEC|MS_NODEV, NULL) < 0)
912 return log_debug_errno(errno, "Failed to mount %s (no options): %m", mount_entry_path(m));
913
914 return 1;
915 }
916
917 static int mount_tmpfs(const MountEntry *m) {
918 const char *entry_path, *inner_path;
919 int r;
920
921 assert(m);
922
923 entry_path = mount_entry_path(m);
924 inner_path = m->path_const;
925
926 /* First, get rid of everything that is below if there is anything. Then, overmount with our new tmpfs */
927
928 (void) mkdir_p_label(entry_path, 0755);
929 (void) umount_recursive(entry_path, 0);
930
931 if (mount("tmpfs", entry_path, "tmpfs", m->flags, mount_entry_options(m)) < 0)
932 return log_debug_errno(errno, "Failed to mount %s: %m", entry_path);
933
934 r = label_fix_container(entry_path, inner_path, 0);
935 if (r < 0)
936 return log_debug_errno(r, "Failed to fix label of '%s' as '%s': %m", entry_path, inner_path);
937
938 return 1;
939 }
940
941 static int mount_images(const MountEntry *m) {
942 _cleanup_(loop_device_unrefp) LoopDevice *loop_device = NULL;
943 _cleanup_(decrypted_image_unrefp) DecryptedImage *decrypted_image = NULL;
944 _cleanup_(dissected_image_unrefp) DissectedImage *dissected_image = NULL;
945 _cleanup_(verity_settings_done) VeritySettings verity = VERITY_SETTINGS_DEFAULT;
946 DissectImageFlags dissect_image_flags;
947 int r;
948
949 assert(m);
950
951 r = verity_settings_load(&verity, mount_entry_source(m), NULL, NULL);
952 if (r < 0)
953 return log_debug_errno(r, "Failed to load root hash: %m");
954
955 dissect_image_flags =
956 (m->read_only ? DISSECT_IMAGE_READ_ONLY : 0) |
957 (verity.data_path ? DISSECT_IMAGE_NO_PARTITION_TABLE : 0);
958
959 r = loop_device_make_by_path(
960 mount_entry_source(m),
961 m->read_only ? O_RDONLY : -1 /* < 0 means writable if possible, read-only as fallback */,
962 verity.data_path ? 0 : LO_FLAGS_PARTSCAN,
963 &loop_device);
964 if (r < 0)
965 return log_debug_errno(r, "Failed to create loop device for image: %m");
966
967 r = dissect_image(
968 loop_device->fd,
969 &verity,
970 m->image_options,
971 dissect_image_flags,
972 &dissected_image);
973 /* No partition table? Might be a single-filesystem image, try again */
974 if (!verity.data_path && r == -ENOPKG)
975 r = dissect_image(
976 loop_device->fd,
977 &verity,
978 m->image_options,
979 dissect_image_flags|DISSECT_IMAGE_NO_PARTITION_TABLE,
980 &dissected_image);
981 if (r < 0)
982 return log_debug_errno(r, "Failed to dissect image: %m");
983
984 r = dissected_image_decrypt(
985 dissected_image,
986 NULL,
987 &verity,
988 dissect_image_flags,
989 &decrypted_image);
990 if (r < 0)
991 return log_debug_errno(r, "Failed to decrypt dissected image: %m");
992
993 r = mkdir_p_label(mount_entry_path(m), 0755);
994 if (r < 0)
995 return log_debug_errno(r, "Failed to create destination directory %s: %m", mount_entry_path(m));
996 r = umount_recursive(mount_entry_path(m), 0);
997 if (r < 0)
998 return log_debug_errno(r, "Failed to umount under destination directory %s: %m", mount_entry_path(m));
999
1000 r = dissected_image_mount(dissected_image, mount_entry_path(m), UID_INVALID, dissect_image_flags);
1001 if (r < 0)
1002 return log_debug_errno(r, "Failed to mount image: %m");
1003
1004 if (decrypted_image) {
1005 r = decrypted_image_relinquish(decrypted_image);
1006 if (r < 0)
1007 return log_debug_errno(r, "Failed to relinquish decrypted image: %m");
1008 }
1009
1010 loop_device_relinquish(loop_device);
1011
1012 return 1;
1013 }
1014
1015 static int follow_symlink(
1016 const char *root_directory,
1017 MountEntry *m) {
1018
1019 _cleanup_free_ char *target = NULL;
1020 int r;
1021
1022 /* Let's chase symlinks, but only one step at a time. That's because depending where the symlink points we
1023 * might need to change the order in which we mount stuff. Hence: let's normalize piecemeal, and do one step at
1024 * a time by specifying CHASE_STEP. This function returns 0 if we resolved one step, and > 0 if we reached the
1025 * end and already have a fully normalized name. */
1026
1027 r = chase_symlinks(mount_entry_path(m), root_directory, CHASE_STEP|CHASE_NONEXISTENT, &target, NULL);
1028 if (r < 0)
1029 return log_debug_errno(r, "Failed to chase symlinks '%s': %m", mount_entry_path(m));
1030 if (r > 0) /* Reached the end, nothing more to resolve */
1031 return 1;
1032
1033 if (m->n_followed >= CHASE_SYMLINKS_MAX) /* put a boundary on things */
1034 return log_debug_errno(SYNTHETIC_ERRNO(ELOOP),
1035 "Symlink loop on '%s'.",
1036 mount_entry_path(m));
1037
1038 log_debug("Followed mount entry path symlink %s → %s.", mount_entry_path(m), target);
1039
1040 free_and_replace(m->path_malloc, target);
1041 m->has_prefix = true;
1042
1043 m->n_followed ++;
1044
1045 return 0;
1046 }
1047
1048 static int apply_mount(
1049 const char *root_directory,
1050 MountEntry *m,
1051 const NamespaceInfo *ns_info) {
1052
1053 _cleanup_free_ char *inaccessible = NULL;
1054 bool rbind = true, make = false;
1055 const char *what;
1056 int r;
1057
1058 assert(m);
1059 assert(ns_info);
1060
1061 log_debug("Applying namespace mount on %s", mount_entry_path(m));
1062
1063 switch (m->mode) {
1064
1065 case INACCESSIBLE: {
1066 _cleanup_free_ char *tmp = NULL;
1067 const char *runtime_dir;
1068 struct stat target;
1069
1070 /* First, get rid of everything that is below if there
1071 * is anything... Then, overmount it with an
1072 * inaccessible path. */
1073 (void) umount_recursive(mount_entry_path(m), 0);
1074
1075 if (lstat(mount_entry_path(m), &target) < 0) {
1076 if (errno == ENOENT && m->ignore)
1077 return 0;
1078
1079 return log_debug_errno(errno, "Failed to lstat() %s to determine what to mount over it: %m",
1080 mount_entry_path(m));
1081 }
1082
1083 if (geteuid() == 0)
1084 runtime_dir = "/run";
1085 else {
1086 if (asprintf(&tmp, "/run/user/" UID_FMT, geteuid()) < 0)
1087 return -ENOMEM;
1088
1089 runtime_dir = tmp;
1090 }
1091
1092 r = mode_to_inaccessible_node(runtime_dir, target.st_mode, &inaccessible);
1093 if (r < 0)
1094 return log_debug_errno(SYNTHETIC_ERRNO(ELOOP),
1095 "File type not supported for inaccessible mounts. Note that symlinks are not allowed");
1096 what = inaccessible;
1097 break;
1098 }
1099
1100 case READONLY:
1101 case READWRITE:
1102 case READWRITE_IMPLICIT:
1103 r = path_is_mount_point(mount_entry_path(m), root_directory, 0);
1104 if (r == -ENOENT && m->ignore)
1105 return 0;
1106 if (r < 0)
1107 return log_debug_errno(r, "Failed to determine whether %s is already a mount point: %m",
1108 mount_entry_path(m));
1109 if (r > 0) /* Nothing to do here, it is already a mount. We just later toggle the MS_RDONLY
1110 * bit for the mount point if needed. */
1111 return 0;
1112 /* This isn't a mount point yet, let's make it one. */
1113 what = mount_entry_path(m);
1114 break;
1115
1116 case BIND_MOUNT:
1117 rbind = false;
1118
1119 _fallthrough_;
1120 case BIND_MOUNT_RECURSIVE: {
1121 _cleanup_free_ char *chased = NULL;
1122
1123 /* Since mount() will always follow symlinks we chase the symlinks on our own first. Note
1124 * that bind mount source paths are always relative to the host root, hence we pass NULL as
1125 * root directory to chase_symlinks() here. */
1126
1127 r = chase_symlinks(mount_entry_source(m), NULL, CHASE_TRAIL_SLASH, &chased, NULL);
1128 if (r == -ENOENT && m->ignore) {
1129 log_debug_errno(r, "Path %s does not exist, ignoring.", mount_entry_source(m));
1130 return 0;
1131 }
1132 if (r < 0)
1133 return log_debug_errno(r, "Failed to follow symlinks on %s: %m", mount_entry_source(m));
1134
1135 log_debug("Followed source symlinks %s → %s.", mount_entry_source(m), chased);
1136
1137 free_and_replace(m->source_malloc, chased);
1138
1139 what = mount_entry_source(m);
1140 make = true;
1141 break;
1142 }
1143
1144 case EMPTY_DIR:
1145 case TMPFS:
1146 return mount_tmpfs(m);
1147
1148 case PRIVATE_TMP:
1149 case PRIVATE_TMP_READONLY:
1150 what = mount_entry_source(m);
1151 make = true;
1152 break;
1153
1154 case PRIVATE_DEV:
1155 return mount_private_dev(m);
1156
1157 case BIND_DEV:
1158 return mount_bind_dev(m);
1159
1160 case SYSFS:
1161 return mount_sysfs(m);
1162
1163 case PROCFS:
1164 return mount_procfs(m, ns_info);
1165
1166 case MOUNT_IMAGES:
1167 return mount_images(m);
1168
1169 default:
1170 assert_not_reached("Unknown mode");
1171 }
1172
1173 assert(what);
1174
1175 if (mount(what, mount_entry_path(m), NULL, MS_BIND|(rbind ? MS_REC : 0), NULL) < 0) {
1176 bool try_again = false;
1177 r = -errno;
1178
1179 if (r == -ENOENT && make) {
1180 struct stat st;
1181
1182 /* Hmm, either the source or the destination are missing. Let's see if we can create
1183 the destination, then try again. */
1184
1185 if (stat(what, &st) < 0)
1186 log_error_errno(errno, "Mount point source '%s' is not accessible: %m", what);
1187 else {
1188 int q;
1189
1190 (void) mkdir_parents(mount_entry_path(m), 0755);
1191
1192 if (S_ISDIR(st.st_mode))
1193 q = mkdir(mount_entry_path(m), 0755) < 0 ? -errno : 0;
1194 else
1195 q = touch(mount_entry_path(m));
1196
1197 if (q < 0)
1198 log_error_errno(q, "Failed to create destination mount point node '%s': %m",
1199 mount_entry_path(m));
1200 else
1201 try_again = true;
1202 }
1203 }
1204
1205 if (try_again) {
1206 if (mount(what, mount_entry_path(m), NULL, MS_BIND|(rbind ? MS_REC : 0), NULL) < 0)
1207 r = -errno;
1208 else
1209 r = 0;
1210 }
1211
1212 if (r < 0)
1213 return log_error_errno(r, "Failed to mount %s to %s: %m", what, mount_entry_path(m));
1214 }
1215
1216 log_debug("Successfully mounted %s to %s", what, mount_entry_path(m));
1217 return 0;
1218 }
1219
1220 static int make_read_only(const MountEntry *m, char **deny_list, FILE *proc_self_mountinfo) {
1221 unsigned long new_flags = 0, flags_mask = 0;
1222 bool submounts = false;
1223 int r = 0;
1224
1225 assert(m);
1226 assert(proc_self_mountinfo);
1227
1228 if (mount_entry_read_only(m) || m->mode == PRIVATE_DEV) {
1229 new_flags |= MS_RDONLY;
1230 flags_mask |= MS_RDONLY;
1231 }
1232
1233 if (m->nosuid) {
1234 new_flags |= MS_NOSUID;
1235 flags_mask |= MS_NOSUID;
1236 }
1237
1238 if (flags_mask == 0) /* No Change? */
1239 return 0;
1240
1241 /* We generally apply these changes recursively, except for /dev, and the cases we know there's
1242 * nothing further down. Set /dev readonly, but not submounts like /dev/shm. Also, we only set the
1243 * per-mount read-only flag. We can't set it on the superblock, if we are inside a user namespace
1244 * and running Linux <= 4.17. */
1245 submounts =
1246 mount_entry_read_only(m) &&
1247 !IN_SET(m->mode, EMPTY_DIR, TMPFS);
1248 if (submounts)
1249 r = bind_remount_recursive_with_mountinfo(mount_entry_path(m), new_flags, flags_mask, deny_list, proc_self_mountinfo);
1250 else
1251 r = bind_remount_one_with_mountinfo(mount_entry_path(m), new_flags, flags_mask, proc_self_mountinfo);
1252
1253 /* Not that we only turn on the MS_RDONLY flag here, we never turn it off. Something that was marked
1254 * read-only already stays this way. This improves compatibility with container managers, where we
1255 * won't attempt to undo read-only mounts already applied. */
1256
1257 if (r == -ENOENT && m->ignore)
1258 return 0;
1259 if (r < 0)
1260 return log_debug_errno(r, "Failed to re-mount '%s'%s: %m", mount_entry_path(m),
1261 submounts ? " and its submounts" : "");
1262 return 0;
1263 }
1264
1265 static bool namespace_info_mount_apivfs(const NamespaceInfo *ns_info) {
1266 assert(ns_info);
1267
1268 /*
1269 * ProtectControlGroups= and ProtectKernelTunables= imply MountAPIVFS=,
1270 * since to protect the API VFS mounts, they need to be around in the
1271 * first place...
1272 */
1273
1274 return ns_info->mount_apivfs ||
1275 ns_info->protect_control_groups ||
1276 ns_info->protect_kernel_tunables ||
1277 ns_info->protect_proc != PROTECT_PROC_DEFAULT ||
1278 ns_info->proc_subset != PROC_SUBSET_ALL;
1279 }
1280
1281 static size_t namespace_calculate_mounts(
1282 const NamespaceInfo *ns_info,
1283 char** read_write_paths,
1284 char** read_only_paths,
1285 char** inaccessible_paths,
1286 char** empty_directories,
1287 size_t n_bind_mounts,
1288 size_t n_temporary_filesystems,
1289 size_t n_mount_images,
1290 const char* tmp_dir,
1291 const char* var_tmp_dir,
1292 const char *creds_path,
1293 const char* log_namespace) {
1294
1295 size_t protect_home_cnt;
1296 size_t protect_system_cnt =
1297 (ns_info->protect_system == PROTECT_SYSTEM_STRICT ?
1298 ELEMENTSOF(protect_system_strict_table) :
1299 ((ns_info->protect_system == PROTECT_SYSTEM_FULL) ?
1300 ELEMENTSOF(protect_system_full_table) :
1301 ((ns_info->protect_system == PROTECT_SYSTEM_YES) ?
1302 ELEMENTSOF(protect_system_yes_table) : 0)));
1303
1304 protect_home_cnt =
1305 (ns_info->protect_home == PROTECT_HOME_YES ?
1306 ELEMENTSOF(protect_home_yes_table) :
1307 ((ns_info->protect_home == PROTECT_HOME_READ_ONLY) ?
1308 ELEMENTSOF(protect_home_read_only_table) :
1309 ((ns_info->protect_home == PROTECT_HOME_TMPFS) ?
1310 ELEMENTSOF(protect_home_tmpfs_table) : 0)));
1311
1312 return !!tmp_dir + !!var_tmp_dir +
1313 strv_length(read_write_paths) +
1314 strv_length(read_only_paths) +
1315 strv_length(inaccessible_paths) +
1316 strv_length(empty_directories) +
1317 n_bind_mounts +
1318 n_mount_images +
1319 n_temporary_filesystems +
1320 ns_info->private_dev +
1321 (ns_info->protect_kernel_tunables ? ELEMENTSOF(protect_kernel_tunables_table) : 0) +
1322 (ns_info->protect_kernel_modules ? ELEMENTSOF(protect_kernel_modules_table) : 0) +
1323 (ns_info->protect_kernel_logs ? ELEMENTSOF(protect_kernel_logs_table) : 0) +
1324 (ns_info->protect_control_groups ? 1 : 0) +
1325 protect_home_cnt + protect_system_cnt +
1326 (ns_info->protect_hostname ? 2 : 0) +
1327 (namespace_info_mount_apivfs(ns_info) ? ELEMENTSOF(apivfs_table) : 0) +
1328 (creds_path ? 2 : 1) +
1329 !!log_namespace;
1330 }
1331
1332 static void normalize_mounts(const char *root_directory, MountEntry *mounts, size_t *n_mounts) {
1333 assert(root_directory);
1334 assert(n_mounts);
1335 assert(mounts || *n_mounts == 0);
1336
1337 typesafe_qsort(mounts, *n_mounts, mount_path_compare);
1338
1339 drop_duplicates(mounts, n_mounts);
1340 drop_outside_root(root_directory, mounts, n_mounts);
1341 drop_inaccessible(mounts, n_mounts);
1342 drop_nop(mounts, n_mounts);
1343 }
1344
1345 static bool root_read_only(
1346 char **read_only_paths,
1347 ProtectSystem protect_system) {
1348
1349 /* Determine whether the root directory is going to be read-only given the configured settings. */
1350
1351 if (protect_system == PROTECT_SYSTEM_STRICT)
1352 return true;
1353
1354 if (prefixed_path_strv_contains(read_only_paths, "/"))
1355 return true;
1356
1357 return false;
1358 }
1359
1360 static bool home_read_only(
1361 char** read_only_paths,
1362 char** inaccessible_paths,
1363 char** empty_directories,
1364 const BindMount *bind_mounts,
1365 size_t n_bind_mounts,
1366 const TemporaryFileSystem *temporary_filesystems,
1367 size_t n_temporary_filesystems,
1368 ProtectHome protect_home) {
1369
1370 size_t i;
1371
1372 /* Determine whether the /home directory is going to be read-only given the configured settings. Yes,
1373 * this is a bit sloppy, since we don't bother checking for cases where / is affected by multiple
1374 * settings. */
1375
1376 if (protect_home != PROTECT_HOME_NO)
1377 return true;
1378
1379 if (prefixed_path_strv_contains(read_only_paths, "/home") ||
1380 prefixed_path_strv_contains(inaccessible_paths, "/home") ||
1381 prefixed_path_strv_contains(empty_directories, "/home"))
1382 return true;
1383
1384 for (i = 0; i < n_temporary_filesystems; i++)
1385 if (path_equal(temporary_filesystems[i].path, "/home"))
1386 return true;
1387
1388 /* If /home is overmounted with some dir from the host it's not writable. */
1389 for (i = 0; i < n_bind_mounts; i++)
1390 if (path_equal(bind_mounts[i].destination, "/home"))
1391 return true;
1392
1393 return false;
1394 }
1395
1396 static int verity_settings_prepare(
1397 VeritySettings *verity,
1398 const char *root_image,
1399 const void *root_hash,
1400 size_t root_hash_size,
1401 const char *root_hash_path,
1402 const void *root_hash_sig,
1403 size_t root_hash_sig_size,
1404 const char *root_hash_sig_path,
1405 const char *verity_data_path) {
1406
1407 int r;
1408
1409 assert(verity);
1410
1411 if (root_hash) {
1412 void *d;
1413
1414 d = memdup(root_hash, root_hash_size);
1415 if (!d)
1416 return -ENOMEM;
1417
1418 free_and_replace(verity->root_hash, d);
1419 verity->root_hash_size = root_hash_size;
1420 verity->designator = PARTITION_ROOT;
1421 }
1422
1423 if (root_hash_sig) {
1424 void *d;
1425
1426 d = memdup(root_hash_sig, root_hash_sig_size);
1427 if (!d)
1428 return -ENOMEM;
1429
1430 free_and_replace(verity->root_hash_sig, d);
1431 verity->root_hash_sig_size = root_hash_sig_size;
1432 verity->designator = PARTITION_ROOT;
1433 }
1434
1435 if (verity_data_path) {
1436 r = free_and_strdup(&verity->data_path, verity_data_path);
1437 if (r < 0)
1438 return r;
1439 }
1440
1441 r = verity_settings_load(
1442 verity,
1443 root_image,
1444 root_hash_path,
1445 root_hash_sig_path);
1446 if (r < 0)
1447 return log_debug_errno(r, "Failed to load root hash: %m");
1448
1449 return 0;
1450 }
1451
1452 int setup_namespace(
1453 const char* root_directory,
1454 const char* root_image,
1455 const MountOptions *root_image_options,
1456 const NamespaceInfo *ns_info,
1457 char** read_write_paths,
1458 char** read_only_paths,
1459 char** inaccessible_paths,
1460 char** empty_directories,
1461 const BindMount *bind_mounts,
1462 size_t n_bind_mounts,
1463 const TemporaryFileSystem *temporary_filesystems,
1464 size_t n_temporary_filesystems,
1465 const MountImage *mount_images,
1466 size_t n_mount_images,
1467 const char* tmp_dir,
1468 const char* var_tmp_dir,
1469 const char *creds_path,
1470 const char *log_namespace,
1471 unsigned long mount_flags,
1472 const void *root_hash,
1473 size_t root_hash_size,
1474 const char *root_hash_path,
1475 const void *root_hash_sig,
1476 size_t root_hash_sig_size,
1477 const char *root_hash_sig_path,
1478 const char *verity_data_path,
1479 DissectImageFlags dissect_image_flags,
1480 char **error_path) {
1481
1482 _cleanup_(loop_device_unrefp) LoopDevice *loop_device = NULL;
1483 _cleanup_(decrypted_image_unrefp) DecryptedImage *decrypted_image = NULL;
1484 _cleanup_(dissected_image_unrefp) DissectedImage *dissected_image = NULL;
1485 _cleanup_(verity_settings_done) VeritySettings verity = VERITY_SETTINGS_DEFAULT;
1486 MountEntry *m = NULL, *mounts = NULL;
1487 bool require_prefix = false;
1488 const char *root;
1489 size_t n_mounts;
1490 int r;
1491
1492 assert(ns_info);
1493
1494 if (mount_flags == 0)
1495 mount_flags = MS_SHARED;
1496
1497 if (root_image) {
1498 dissect_image_flags |= DISSECT_IMAGE_REQUIRE_ROOT;
1499
1500 /* Make the whole image read-only if we can determine that we only access it in a read-only fashion. */
1501 if (root_read_only(read_only_paths,
1502 ns_info->protect_system) &&
1503 home_read_only(read_only_paths, inaccessible_paths, empty_directories,
1504 bind_mounts, n_bind_mounts, temporary_filesystems, n_temporary_filesystems,
1505 ns_info->protect_home) &&
1506 strv_isempty(read_write_paths))
1507 dissect_image_flags |= DISSECT_IMAGE_READ_ONLY;
1508
1509 r = verity_settings_prepare(
1510 &verity,
1511 root_image,
1512 root_hash, root_hash_size, root_hash_path,
1513 root_hash_sig, root_hash_sig_size, root_hash_sig_path,
1514 verity_data_path);
1515 if (r < 0)
1516 return r;
1517
1518 SET_FLAG(dissect_image_flags, DISSECT_IMAGE_NO_PARTITION_TABLE, verity.data_path);
1519
1520 r = loop_device_make_by_path(
1521 root_image,
1522 FLAGS_SET(dissect_image_flags, DISSECT_IMAGE_READ_ONLY) ? O_RDONLY : -1 /* < 0 means writable if possible, read-only as fallback */,
1523 FLAGS_SET(dissect_image_flags, DISSECT_IMAGE_NO_PARTITION_TABLE) ? 0 : LO_FLAGS_PARTSCAN,
1524 &loop_device);
1525 if (r < 0)
1526 return log_debug_errno(r, "Failed to create loop device for root image: %m");
1527
1528 r = dissect_image(
1529 loop_device->fd,
1530 &verity,
1531 root_image_options,
1532 dissect_image_flags,
1533 &dissected_image);
1534 if (r < 0)
1535 return log_debug_errno(r, "Failed to dissect image: %m");
1536
1537 r = dissected_image_decrypt(
1538 dissected_image,
1539 NULL,
1540 &verity,
1541 dissect_image_flags,
1542 &decrypted_image);
1543 if (r < 0)
1544 return log_debug_errno(r, "Failed to decrypt dissected image: %m");
1545 }
1546
1547 if (root_directory)
1548 root = root_directory;
1549 else {
1550 /* Always create the mount namespace in a temporary directory, instead of operating
1551 * directly in the root. The temporary directory prevents any mounts from being
1552 * potentially obscured my other mounts we already applied.
1553 * We use the same mount point for all images, which is safe, since they all live
1554 * in their own namespaces after all, and hence won't see each other. */
1555
1556 root = "/run/systemd/unit-root";
1557 (void) mkdir_label(root, 0700);
1558 require_prefix = true;
1559 }
1560
1561 n_mounts = namespace_calculate_mounts(
1562 ns_info,
1563 read_write_paths,
1564 read_only_paths,
1565 inaccessible_paths,
1566 empty_directories,
1567 n_bind_mounts,
1568 n_temporary_filesystems,
1569 n_mount_images,
1570 tmp_dir, var_tmp_dir,
1571 creds_path,
1572 log_namespace);
1573
1574 if (n_mounts > 0) {
1575 m = mounts = new0(MountEntry, n_mounts);
1576 if (!mounts)
1577 return -ENOMEM;
1578
1579 r = append_access_mounts(&m, read_write_paths, READWRITE, require_prefix);
1580 if (r < 0)
1581 goto finish;
1582
1583 r = append_access_mounts(&m, read_only_paths, READONLY, require_prefix);
1584 if (r < 0)
1585 goto finish;
1586
1587 r = append_access_mounts(&m, inaccessible_paths, INACCESSIBLE, require_prefix);
1588 if (r < 0)
1589 goto finish;
1590
1591 r = append_empty_dir_mounts(&m, empty_directories);
1592 if (r < 0)
1593 goto finish;
1594
1595 r = append_bind_mounts(&m, bind_mounts, n_bind_mounts);
1596 if (r < 0)
1597 goto finish;
1598
1599 r = append_tmpfs_mounts(&m, temporary_filesystems, n_temporary_filesystems);
1600 if (r < 0)
1601 goto finish;
1602
1603 if (tmp_dir) {
1604 bool ro = streq(tmp_dir, RUN_SYSTEMD_EMPTY);
1605
1606 *(m++) = (MountEntry) {
1607 .path_const = "/tmp",
1608 .mode = ro ? PRIVATE_TMP_READONLY : PRIVATE_TMP,
1609 .source_const = tmp_dir,
1610 };
1611 }
1612
1613 if (var_tmp_dir) {
1614 bool ro = streq(var_tmp_dir, RUN_SYSTEMD_EMPTY);
1615
1616 *(m++) = (MountEntry) {
1617 .path_const = "/var/tmp",
1618 .mode = ro ? PRIVATE_TMP_READONLY : PRIVATE_TMP,
1619 .source_const = var_tmp_dir,
1620 };
1621 }
1622
1623 r = append_mount_images(&m, mount_images, n_mount_images);
1624 if (r < 0)
1625 goto finish;
1626
1627 if (ns_info->private_dev) {
1628 *(m++) = (MountEntry) {
1629 .path_const = "/dev",
1630 .mode = PRIVATE_DEV,
1631 .flags = DEV_MOUNT_OPTIONS,
1632 };
1633 }
1634
1635 if (ns_info->protect_kernel_tunables) {
1636 r = append_static_mounts(&m,
1637 protect_kernel_tunables_table,
1638 ELEMENTSOF(protect_kernel_tunables_table),
1639 ns_info->ignore_protect_paths);
1640 if (r < 0)
1641 goto finish;
1642 }
1643
1644 if (ns_info->protect_kernel_modules) {
1645 r = append_static_mounts(&m,
1646 protect_kernel_modules_table,
1647 ELEMENTSOF(protect_kernel_modules_table),
1648 ns_info->ignore_protect_paths);
1649 if (r < 0)
1650 goto finish;
1651 }
1652
1653 if (ns_info->protect_kernel_logs) {
1654 r = append_static_mounts(&m,
1655 protect_kernel_logs_table,
1656 ELEMENTSOF(protect_kernel_logs_table),
1657 ns_info->ignore_protect_paths);
1658 if (r < 0)
1659 goto finish;
1660 }
1661
1662 if (ns_info->protect_control_groups) {
1663 *(m++) = (MountEntry) {
1664 .path_const = "/sys/fs/cgroup",
1665 .mode = READONLY,
1666 };
1667 }
1668
1669 r = append_protect_home(&m, ns_info->protect_home, ns_info->ignore_protect_paths);
1670 if (r < 0)
1671 goto finish;
1672
1673 r = append_protect_system(&m, ns_info->protect_system, false);
1674 if (r < 0)
1675 goto finish;
1676
1677 if (namespace_info_mount_apivfs(ns_info)) {
1678 r = append_static_mounts(&m,
1679 apivfs_table,
1680 ELEMENTSOF(apivfs_table),
1681 ns_info->ignore_protect_paths);
1682 if (r < 0)
1683 goto finish;
1684 }
1685
1686 if (ns_info->protect_hostname) {
1687 *(m++) = (MountEntry) {
1688 .path_const = "/proc/sys/kernel/hostname",
1689 .mode = READONLY,
1690 };
1691 *(m++) = (MountEntry) {
1692 .path_const = "/proc/sys/kernel/domainname",
1693 .mode = READONLY,
1694 };
1695 }
1696
1697 if (creds_path) {
1698 /* If our service has a credentials store configured, then bind that one in, but hide
1699 * everything else. */
1700
1701 *(m++) = (MountEntry) {
1702 .path_const = "/run/credentials",
1703 .mode = TMPFS,
1704 .read_only = true,
1705 .options_const = "mode=0755" TMPFS_LIMITS_EMPTY_OR_ALMOST,
1706 .flags = MS_NODEV|MS_STRICTATIME|MS_NOSUID|MS_NOEXEC,
1707 };
1708
1709 *(m++) = (MountEntry) {
1710 .path_const = creds_path,
1711 .mode = BIND_MOUNT,
1712 .read_only = true,
1713 .source_const = creds_path,
1714 };
1715 } else {
1716 /* If our service has no credentials store configured, then make the whole
1717 * credentials tree inaccessible wholesale. */
1718
1719 *(m++) = (MountEntry) {
1720 .path_const = "/run/credentials",
1721 .mode = INACCESSIBLE,
1722 .ignore = true,
1723 };
1724 }
1725
1726 if (log_namespace) {
1727 _cleanup_free_ char *q;
1728
1729 q = strjoin("/run/systemd/journal.", log_namespace);
1730 if (!q) {
1731 r = -ENOMEM;
1732 goto finish;
1733 }
1734
1735 *(m++) = (MountEntry) {
1736 .path_const = "/run/systemd/journal",
1737 .mode = BIND_MOUNT_RECURSIVE,
1738 .read_only = true,
1739 .source_malloc = TAKE_PTR(q),
1740 };
1741 }
1742
1743 assert(mounts + n_mounts == m);
1744
1745 /* Prepend the root directory where that's necessary */
1746 r = prefix_where_needed(mounts, n_mounts, root);
1747 if (r < 0)
1748 goto finish;
1749
1750 normalize_mounts(root, mounts, &n_mounts);
1751 }
1752
1753 /* All above is just preparation, figuring out what to do. Let's now actually start doing something. */
1754
1755 if (unshare(CLONE_NEWNS) < 0) {
1756 r = log_debug_errno(errno, "Failed to unshare the mount namespace: %m");
1757 if (IN_SET(r, -EACCES, -EPERM, -EOPNOTSUPP, -ENOSYS))
1758 /* If the kernel doesn't support namespaces, or when there's a MAC or seccomp filter
1759 * in place that doesn't allow us to create namespaces (or a missing cap), then
1760 * propagate a recognizable error back, which the caller can use to detect this case
1761 * (and only this) and optionally continue without namespacing applied. */
1762 r = -ENOANO;
1763
1764 goto finish;
1765 }
1766
1767 /* Remount / as SLAVE so that nothing now mounted in the namespace
1768 * shows up in the parent */
1769 if (mount(NULL, "/", NULL, MS_SLAVE|MS_REC, NULL) < 0) {
1770 r = log_debug_errno(errno, "Failed to remount '/' as SLAVE: %m");
1771 goto finish;
1772 }
1773
1774 if (root_image) {
1775 /* A root image is specified, mount it to the right place */
1776 r = dissected_image_mount(dissected_image, root, UID_INVALID, dissect_image_flags);
1777 if (r < 0) {
1778 log_debug_errno(r, "Failed to mount root image: %m");
1779 goto finish;
1780 }
1781
1782 if (decrypted_image) {
1783 r = decrypted_image_relinquish(decrypted_image);
1784 if (r < 0) {
1785 log_debug_errno(r, "Failed to relinquish decrypted image: %m");
1786 goto finish;
1787 }
1788 }
1789
1790 loop_device_relinquish(loop_device);
1791
1792 } else if (root_directory) {
1793
1794 /* A root directory is specified. Turn its directory into bind mount, if it isn't one yet. */
1795 r = path_is_mount_point(root, NULL, AT_SYMLINK_FOLLOW);
1796 if (r < 0) {
1797 log_debug_errno(r, "Failed to detect that %s is a mount point or not: %m", root);
1798 goto finish;
1799 }
1800 if (r == 0) {
1801 if (mount(root, root, NULL, MS_BIND|MS_REC, NULL) < 0) {
1802 r = log_debug_errno(errno, "Failed to bind mount '%s': %m", root);
1803 goto finish;
1804 }
1805 }
1806
1807 } else {
1808
1809 /* Let's mount the main root directory to the root directory to use */
1810 if (mount("/", root, NULL, MS_BIND|MS_REC, NULL) < 0) {
1811 r = log_debug_errno(errno, "Failed to bind mount '/' on '%s': %m", root);
1812 goto finish;
1813 }
1814 }
1815
1816 /* Try to set up the new root directory before mounting anything else there. */
1817 if (root_image || root_directory)
1818 (void) base_filesystem_create(root, UID_INVALID, GID_INVALID);
1819
1820 if (n_mounts > 0) {
1821 _cleanup_fclose_ FILE *proc_self_mountinfo = NULL;
1822 _cleanup_free_ char **deny_list = NULL;
1823 size_t j;
1824
1825 /* Open /proc/self/mountinfo now as it may become unavailable if we mount anything on top of
1826 * /proc. For example, this is the case with the option: 'InaccessiblePaths=/proc'. */
1827 proc_self_mountinfo = fopen("/proc/self/mountinfo", "re");
1828 if (!proc_self_mountinfo) {
1829 r = log_debug_errno(errno, "Failed to open /proc/self/mountinfo: %m");
1830 if (error_path)
1831 *error_path = strdup("/proc/self/mountinfo");
1832 goto finish;
1833 }
1834
1835 /* First round, establish all mounts we need */
1836 for (;;) {
1837 bool again = false;
1838
1839 for (m = mounts; m < mounts + n_mounts; ++m) {
1840
1841 if (m->applied)
1842 continue;
1843
1844 r = follow_symlink(root, m);
1845 if (r < 0) {
1846 if (error_path && mount_entry_path(m))
1847 *error_path = strdup(mount_entry_path(m));
1848 goto finish;
1849 }
1850 if (r == 0) {
1851 /* We hit a symlinked mount point. The entry got rewritten and might
1852 * point to a very different place now. Let's normalize the changed
1853 * list, and start from the beginning. After all to mount the entry
1854 * at the new location we might need some other mounts first */
1855 again = true;
1856 break;
1857 }
1858
1859 r = apply_mount(root, m, ns_info);
1860 if (r < 0) {
1861 if (error_path && mount_entry_path(m))
1862 *error_path = strdup(mount_entry_path(m));
1863 goto finish;
1864 }
1865
1866 m->applied = true;
1867 }
1868
1869 if (!again)
1870 break;
1871
1872 normalize_mounts(root, mounts, &n_mounts);
1873 }
1874
1875 /* Create a deny list we can pass to bind_mount_recursive() */
1876 deny_list = new(char*, n_mounts+1);
1877 if (!deny_list) {
1878 r = -ENOMEM;
1879 goto finish;
1880 }
1881 for (j = 0; j < n_mounts; j++)
1882 deny_list[j] = (char*) mount_entry_path(mounts+j);
1883 deny_list[j] = NULL;
1884
1885 /* Second round, flip the ro bits if necessary. */
1886 for (m = mounts; m < mounts + n_mounts; ++m) {
1887 r = make_read_only(m, deny_list, proc_self_mountinfo);
1888 if (r < 0) {
1889 if (error_path && mount_entry_path(m))
1890 *error_path = strdup(mount_entry_path(m));
1891 goto finish;
1892 }
1893 }
1894 }
1895
1896 /* MS_MOVE does not work on MS_SHARED so the remount MS_SHARED will be done later */
1897 r = mount_move_root(root);
1898 if (r < 0) {
1899 log_debug_errno(r, "Failed to mount root with MS_MOVE: %m");
1900 goto finish;
1901 }
1902
1903 /* Remount / as the desired mode. Note that this will not
1904 * reestablish propagation from our side to the host, since
1905 * what's disconnected is disconnected. */
1906 if (mount(NULL, "/", NULL, mount_flags | MS_REC, NULL) < 0) {
1907 r = log_debug_errno(errno, "Failed to remount '/' with desired mount flags: %m");
1908 goto finish;
1909 }
1910
1911 r = 0;
1912
1913 finish:
1914 if (n_mounts > 0)
1915 for (m = mounts; m < mounts + n_mounts; m++)
1916 mount_entry_done(m);
1917
1918 free(mounts);
1919
1920 return r;
1921 }
1922
1923 void bind_mount_free_many(BindMount *b, size_t n) {
1924 size_t i;
1925
1926 assert(b || n == 0);
1927
1928 for (i = 0; i < n; i++) {
1929 free(b[i].source);
1930 free(b[i].destination);
1931 }
1932
1933 free(b);
1934 }
1935
1936 int bind_mount_add(BindMount **b, size_t *n, const BindMount *item) {
1937 _cleanup_free_ char *s = NULL, *d = NULL;
1938 BindMount *c;
1939
1940 assert(b);
1941 assert(n);
1942 assert(item);
1943
1944 s = strdup(item->source);
1945 if (!s)
1946 return -ENOMEM;
1947
1948 d = strdup(item->destination);
1949 if (!d)
1950 return -ENOMEM;
1951
1952 c = reallocarray(*b, *n + 1, sizeof(BindMount));
1953 if (!c)
1954 return -ENOMEM;
1955
1956 *b = c;
1957
1958 c[(*n) ++] = (BindMount) {
1959 .source = TAKE_PTR(s),
1960 .destination = TAKE_PTR(d),
1961 .read_only = item->read_only,
1962 .nosuid = item->nosuid,
1963 .recursive = item->recursive,
1964 .ignore_enoent = item->ignore_enoent,
1965 };
1966
1967 return 0;
1968 }
1969
1970 MountImage* mount_image_free_many(MountImage *m, size_t *n) {
1971 size_t i;
1972
1973 assert(n);
1974 assert(m || *n == 0);
1975
1976 for (i = 0; i < *n; i++) {
1977 free(m[i].source);
1978 free(m[i].destination);
1979 mount_options_free_all(m[i].mount_options);
1980 }
1981
1982 free(m);
1983 *n = 0;
1984 return NULL;
1985 }
1986
1987 int mount_image_add(MountImage **m, size_t *n, const MountImage *item) {
1988 _cleanup_free_ char *s = NULL, *d = NULL;
1989 _cleanup_(mount_options_free_allp) MountOptions *options = NULL;
1990 MountOptions *i;
1991 MountImage *c;
1992
1993 assert(m);
1994 assert(n);
1995 assert(item);
1996
1997 s = strdup(item->source);
1998 if (!s)
1999 return -ENOMEM;
2000
2001 d = strdup(item->destination);
2002 if (!d)
2003 return -ENOMEM;
2004
2005 LIST_FOREACH(mount_options, i, item->mount_options) {
2006 _cleanup_(mount_options_free_allp) MountOptions *o;
2007
2008 o = new(MountOptions, 1);
2009 if (!o)
2010 return -ENOMEM;
2011
2012 *o = (MountOptions) {
2013 .partition_designator = i->partition_designator,
2014 .options = strdup(i->options),
2015 };
2016 if (!o->options)
2017 return -ENOMEM;
2018
2019 LIST_APPEND(mount_options, options, TAKE_PTR(o));
2020 }
2021
2022 c = reallocarray(*m, *n + 1, sizeof(MountImage));
2023 if (!c)
2024 return -ENOMEM;
2025
2026 *m = c;
2027
2028 c[(*n) ++] = (MountImage) {
2029 .source = TAKE_PTR(s),
2030 .destination = TAKE_PTR(d),
2031 .mount_options = TAKE_PTR(options),
2032 .ignore_enoent = item->ignore_enoent,
2033 };
2034
2035 return 0;
2036 }
2037
2038 void temporary_filesystem_free_many(TemporaryFileSystem *t, size_t n) {
2039 size_t i;
2040
2041 assert(t || n == 0);
2042
2043 for (i = 0; i < n; i++) {
2044 free(t[i].path);
2045 free(t[i].options);
2046 }
2047
2048 free(t);
2049 }
2050
2051 int temporary_filesystem_add(
2052 TemporaryFileSystem **t,
2053 size_t *n,
2054 const char *path,
2055 const char *options) {
2056
2057 _cleanup_free_ char *p = NULL, *o = NULL;
2058 TemporaryFileSystem *c;
2059
2060 assert(t);
2061 assert(n);
2062 assert(path);
2063
2064 p = strdup(path);
2065 if (!p)
2066 return -ENOMEM;
2067
2068 if (!isempty(options)) {
2069 o = strdup(options);
2070 if (!o)
2071 return -ENOMEM;
2072 }
2073
2074 c = reallocarray(*t, *n + 1, sizeof(TemporaryFileSystem));
2075 if (!c)
2076 return -ENOMEM;
2077
2078 *t = c;
2079
2080 c[(*n) ++] = (TemporaryFileSystem) {
2081 .path = TAKE_PTR(p),
2082 .options = TAKE_PTR(o),
2083 };
2084
2085 return 0;
2086 }
2087
2088 static int make_tmp_prefix(const char *prefix) {
2089 _cleanup_free_ char *t = NULL;
2090 int r;
2091
2092 /* Don't do anything unless we know the dir is actually missing */
2093 r = access(prefix, F_OK);
2094 if (r >= 0)
2095 return 0;
2096 if (errno != ENOENT)
2097 return -errno;
2098
2099 r = mkdir_parents(prefix, 0755);
2100 if (r < 0)
2101 return r;
2102
2103 r = tempfn_random(prefix, NULL, &t);
2104 if (r < 0)
2105 return r;
2106
2107 if (mkdir(t, 0777) < 0)
2108 return -errno;
2109
2110 if (chmod(t, 01777) < 0) {
2111 r = -errno;
2112 (void) rmdir(t);
2113 return r;
2114 }
2115
2116 if (rename(t, prefix) < 0) {
2117 r = -errno;
2118 (void) rmdir(t);
2119 return r == -EEXIST ? 0 : r; /* it's fine if someone else created the dir by now */
2120 }
2121
2122 return 0;
2123
2124 }
2125
2126 static int make_tmp_subdir(const char *parent, char **ret) {
2127 _cleanup_free_ char *y = NULL;
2128
2129 y = path_join(parent, "/tmp");
2130 if (!y)
2131 return -ENOMEM;
2132
2133 RUN_WITH_UMASK(0000) {
2134 if (mkdir(y, 0777 | S_ISVTX) < 0)
2135 return -errno;
2136 }
2137
2138 if (ret)
2139 *ret = TAKE_PTR(y);
2140 return 0;
2141 }
2142
2143 static int setup_one_tmp_dir(const char *id, const char *prefix, char **path, char **tmp_path) {
2144 _cleanup_free_ char *x = NULL;
2145 char bid[SD_ID128_STRING_MAX];
2146 sd_id128_t boot_id;
2147 bool rw = true;
2148 int r;
2149
2150 assert(id);
2151 assert(prefix);
2152 assert(path);
2153
2154 /* We include the boot id in the directory so that after a
2155 * reboot we can easily identify obsolete directories. */
2156
2157 r = sd_id128_get_boot(&boot_id);
2158 if (r < 0)
2159 return r;
2160
2161 x = strjoin(prefix, "/systemd-private-", sd_id128_to_string(boot_id, bid), "-", id, "-XXXXXX");
2162 if (!x)
2163 return -ENOMEM;
2164
2165 r = make_tmp_prefix(prefix);
2166 if (r < 0)
2167 return r;
2168
2169 RUN_WITH_UMASK(0077)
2170 if (!mkdtemp(x)) {
2171 if (errno == EROFS || ERRNO_IS_DISK_SPACE(errno))
2172 rw = false;
2173 else
2174 return -errno;
2175 }
2176
2177 if (rw) {
2178 r = make_tmp_subdir(x, tmp_path);
2179 if (r < 0)
2180 return r;
2181 } else {
2182 /* Trouble: we failed to create the directory. Instead of failing, let's simulate /tmp being
2183 * read-only. This way the service will get the EROFS result as if it was writing to the real
2184 * file system. */
2185 r = mkdir_p(RUN_SYSTEMD_EMPTY, 0500);
2186 if (r < 0)
2187 return r;
2188
2189 r = free_and_strdup(&x, RUN_SYSTEMD_EMPTY);
2190 if (r < 0)
2191 return r;
2192 }
2193
2194 *path = TAKE_PTR(x);
2195 return 0;
2196 }
2197
2198 int setup_tmp_dirs(const char *id, char **tmp_dir, char **var_tmp_dir) {
2199 _cleanup_(namespace_cleanup_tmpdirp) char *a = NULL;
2200 _cleanup_(rmdir_and_freep) char *a_tmp = NULL;
2201 char *b;
2202 int r;
2203
2204 assert(id);
2205 assert(tmp_dir);
2206 assert(var_tmp_dir);
2207
2208 r = setup_one_tmp_dir(id, "/tmp", &a, &a_tmp);
2209 if (r < 0)
2210 return r;
2211
2212 r = setup_one_tmp_dir(id, "/var/tmp", &b, NULL);
2213 if (r < 0)
2214 return r;
2215
2216 a_tmp = mfree(a_tmp); /* avoid rmdir */
2217 *tmp_dir = TAKE_PTR(a);
2218 *var_tmp_dir = TAKE_PTR(b);
2219
2220 return 0;
2221 }
2222
2223 int setup_netns(const int netns_storage_socket[static 2]) {
2224 _cleanup_close_ int netns = -1;
2225 int r, q;
2226
2227 assert(netns_storage_socket);
2228 assert(netns_storage_socket[0] >= 0);
2229 assert(netns_storage_socket[1] >= 0);
2230
2231 /* We use the passed socketpair as a storage buffer for our
2232 * namespace reference fd. Whatever process runs this first
2233 * shall create a new namespace, all others should just join
2234 * it. To serialize that we use a file lock on the socket
2235 * pair.
2236 *
2237 * It's a bit crazy, but hey, works great! */
2238
2239 if (lockf(netns_storage_socket[0], F_LOCK, 0) < 0)
2240 return -errno;
2241
2242 netns = receive_one_fd(netns_storage_socket[0], MSG_DONTWAIT);
2243 if (netns == -EAGAIN) {
2244 /* Nothing stored yet, so let's create a new namespace. */
2245
2246 if (unshare(CLONE_NEWNET) < 0) {
2247 r = -errno;
2248 goto fail;
2249 }
2250
2251 (void) loopback_setup();
2252
2253 netns = open("/proc/self/ns/net", O_RDONLY|O_CLOEXEC|O_NOCTTY);
2254 if (netns < 0) {
2255 r = -errno;
2256 goto fail;
2257 }
2258
2259 r = 1;
2260
2261 } else if (netns < 0) {
2262 r = netns;
2263 goto fail;
2264
2265 } else {
2266 /* Yay, found something, so let's join the namespace */
2267 if (setns(netns, CLONE_NEWNET) < 0) {
2268 r = -errno;
2269 goto fail;
2270 }
2271
2272 r = 0;
2273 }
2274
2275 q = send_one_fd(netns_storage_socket[1], netns, MSG_DONTWAIT);
2276 if (q < 0) {
2277 r = q;
2278 goto fail;
2279 }
2280
2281 fail:
2282 (void) lockf(netns_storage_socket[0], F_ULOCK, 0);
2283 return r;
2284 }
2285
2286 int open_netns_path(const int netns_storage_socket[static 2], const char *path) {
2287 _cleanup_close_ int netns = -1;
2288 int q, r;
2289
2290 assert(netns_storage_socket);
2291 assert(netns_storage_socket[0] >= 0);
2292 assert(netns_storage_socket[1] >= 0);
2293 assert(path);
2294
2295 /* If the storage socket doesn't contain a netns fd yet, open one via the file system and store it in
2296 * it. This is supposed to be called ahead of time, i.e. before setup_netns() which will allocate a
2297 * new anonymous netns if needed. */
2298
2299 if (lockf(netns_storage_socket[0], F_LOCK, 0) < 0)
2300 return -errno;
2301
2302 netns = receive_one_fd(netns_storage_socket[0], MSG_DONTWAIT);
2303 if (netns == -EAGAIN) {
2304 /* Nothing stored yet. Open the file from the file system. */
2305
2306 netns = open(path, O_RDONLY|O_NOCTTY|O_CLOEXEC);
2307 if (netns < 0) {
2308 r = -errno;
2309 goto fail;
2310 }
2311
2312 r = fd_is_network_ns(netns);
2313 if (r == 0) { /* Not a netns? Refuse early. */
2314 r = -EINVAL;
2315 goto fail;
2316 }
2317 if (r < 0 && r != -EUCLEAN) /* EUCLEAN: we don't know */
2318 goto fail;
2319
2320 r = 1;
2321
2322 } else if (netns < 0) {
2323 r = netns;
2324 goto fail;
2325 } else
2326 r = 0; /* Already allocated */
2327
2328 q = send_one_fd(netns_storage_socket[1], netns, MSG_DONTWAIT);
2329 if (q < 0) {
2330 r = q;
2331 goto fail;
2332 }
2333
2334 fail:
2335 (void) lockf(netns_storage_socket[0], F_ULOCK, 0);
2336 return r;
2337 }
2338
2339 bool ns_type_supported(NamespaceType type) {
2340 const char *t, *ns_proc;
2341
2342 t = namespace_type_to_string(type);
2343 if (!t) /* Don't know how to translate this? Then it's not supported */
2344 return false;
2345
2346 ns_proc = strjoina("/proc/self/ns/", t);
2347 return access(ns_proc, F_OK) == 0;
2348 }
2349
2350 static const char *const protect_home_table[_PROTECT_HOME_MAX] = {
2351 [PROTECT_HOME_NO] = "no",
2352 [PROTECT_HOME_YES] = "yes",
2353 [PROTECT_HOME_READ_ONLY] = "read-only",
2354 [PROTECT_HOME_TMPFS] = "tmpfs",
2355 };
2356
2357 DEFINE_STRING_TABLE_LOOKUP_WITH_BOOLEAN(protect_home, ProtectHome, PROTECT_HOME_YES);
2358
2359 static const char *const protect_system_table[_PROTECT_SYSTEM_MAX] = {
2360 [PROTECT_SYSTEM_NO] = "no",
2361 [PROTECT_SYSTEM_YES] = "yes",
2362 [PROTECT_SYSTEM_FULL] = "full",
2363 [PROTECT_SYSTEM_STRICT] = "strict",
2364 };
2365
2366 DEFINE_STRING_TABLE_LOOKUP_WITH_BOOLEAN(protect_system, ProtectSystem, PROTECT_SYSTEM_YES);
2367
2368 static const char* const namespace_type_table[] = {
2369 [NAMESPACE_MOUNT] = "mnt",
2370 [NAMESPACE_CGROUP] = "cgroup",
2371 [NAMESPACE_UTS] = "uts",
2372 [NAMESPACE_IPC] = "ipc",
2373 [NAMESPACE_USER] = "user",
2374 [NAMESPACE_PID] = "pid",
2375 [NAMESPACE_NET] = "net",
2376 };
2377
2378 DEFINE_STRING_TABLE_LOOKUP(namespace_type, NamespaceType);
2379
2380 static const char* const protect_proc_table[_PROTECT_PROC_MAX] = {
2381 [PROTECT_PROC_DEFAULT] = "default",
2382 [PROTECT_PROC_NOACCESS] = "noaccess",
2383 [PROTECT_PROC_INVISIBLE] = "invisible",
2384 [PROTECT_PROC_PTRACEABLE] = "ptraceable",
2385 };
2386
2387 DEFINE_STRING_TABLE_LOOKUP(protect_proc, ProtectProc);
2388
2389 static const char* const proc_subset_table[_PROC_SUBSET_MAX] = {
2390 [PROC_SUBSET_ALL] = "all",
2391 [PROC_SUBSET_PID] = "pid",
2392 };
2393
2394 DEFINE_STRING_TABLE_LOOKUP(proc_subset, ProcSubset);