]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/namespace.c
Merge pull request #28417 from bluca/coverity
[thirdparty/systemd.git] / src / core / namespace.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <errno.h>
4 #include <linux/loop.h>
5 #include <sched.h>
6 #include <stdio.h>
7 #include <sys/file.h>
8 #include <sys/mount.h>
9 #include <unistd.h>
10 #if WANT_LINUX_FS_H
11 #include <linux/fs.h>
12 #endif
13
14 #include "alloc-util.h"
15 #include "base-filesystem.h"
16 #include "chase.h"
17 #include "dev-setup.h"
18 #include "devnum-util.h"
19 #include "env-util.h"
20 #include "escape.h"
21 #include "extension-util.h"
22 #include "fd-util.h"
23 #include "format-util.h"
24 #include "glyph-util.h"
25 #include "label-util.h"
26 #include "list.h"
27 #include "lock-util.h"
28 #include "loop-util.h"
29 #include "loopback-setup.h"
30 #include "missing_syscall.h"
31 #include "mkdir-label.h"
32 #include "mount-util.h"
33 #include "mountpoint-util.h"
34 #include "namespace-util.h"
35 #include "namespace.h"
36 #include "nsflags.h"
37 #include "nulstr-util.h"
38 #include "os-util.h"
39 #include "path-util.h"
40 #include "selinux-util.h"
41 #include "socket-util.h"
42 #include "sort-util.h"
43 #include "stat-util.h"
44 #include "string-table.h"
45 #include "string-util.h"
46 #include "strv.h"
47 #include "tmpfile-util.h"
48 #include "umask-util.h"
49 #include "user-util.h"
50
51 #define DEV_MOUNT_OPTIONS (MS_NOSUID|MS_STRICTATIME|MS_NOEXEC)
52
53 typedef enum MountMode {
54 /* This is ordered by priority! */
55 INACCESSIBLE,
56 OVERLAY_MOUNT,
57 MOUNT_IMAGES,
58 BIND_MOUNT,
59 BIND_MOUNT_RECURSIVE,
60 PRIVATE_TMP,
61 PRIVATE_TMP_READONLY,
62 PRIVATE_DEV,
63 BIND_DEV,
64 EMPTY_DIR,
65 PRIVATE_SYSFS,
66 BIND_SYSFS,
67 PROCFS,
68 READONLY,
69 READWRITE,
70 NOEXEC,
71 EXEC,
72 TMPFS,
73 RUN,
74 EXTENSION_DIRECTORIES, /* Bind-mounted outside the root directory, and used by subsequent mounts */
75 EXTENSION_IMAGES, /* Mounted outside the root directory, and used by subsequent mounts */
76 MQUEUEFS,
77 READWRITE_IMPLICIT, /* Should have the lowest priority. */
78 _MOUNT_MODE_MAX,
79 } MountMode;
80
81 typedef struct MountEntry {
82 const char *path_const; /* Memory allocated on stack or static */
83 MountMode mode:5;
84 bool ignore:1; /* Ignore if path does not exist? */
85 bool has_prefix:1; /* Already is prefixed by the root dir? */
86 bool read_only:1; /* Shall this mount point be read-only? */
87 bool nosuid:1; /* Shall set MS_NOSUID on the mount itself */
88 bool noexec:1; /* Shall set MS_NOEXEC on the mount itself */
89 bool exec:1; /* Shall clear MS_NOEXEC on the mount itself */
90 bool applied:1; /* Already applied */
91 char *path_malloc; /* Use this instead of 'path_const' if we had to allocate memory */
92 const char *unprefixed_path_const; /* If the path was amended with a prefix, these will save the original */
93 char *unprefixed_path_malloc;
94 const char *source_const; /* The source path, for bind mounts or images */
95 char *source_malloc;
96 const char *options_const;/* Mount options for tmpfs */
97 char *options_malloc;
98 unsigned long flags; /* Mount flags used by EMPTY_DIR and TMPFS. Do not include MS_RDONLY here, but please use read_only. */
99 unsigned n_followed;
100 LIST_HEAD(MountOptions, image_options);
101 } MountEntry;
102
103 /* If MountAPIVFS= is used, let's mount /sys, /proc, /dev and /run into the it, but only as a fallback if the user hasn't mounted
104 * something there already. These mounts are hence overridden by any other explicitly configured mounts. */
105 static const MountEntry apivfs_table[] = {
106 { "/proc", PROCFS, false },
107 { "/dev", BIND_DEV, false },
108 { "/sys", BIND_SYSFS, false },
109 { "/run", RUN, false, .options_const = "mode=0755" TMPFS_LIMITS_RUN, .flags = MS_NOSUID|MS_NODEV|MS_STRICTATIME },
110 };
111
112 /* ProtectKernelTunables= option and the related filesystem APIs */
113 static const MountEntry protect_kernel_tunables_proc_table[] = {
114 { "/proc/acpi", READONLY, true },
115 { "/proc/apm", READONLY, true }, /* Obsolete API, there's no point in permitting access to this, ever */
116 { "/proc/asound", READONLY, true },
117 { "/proc/bus", READONLY, true },
118 { "/proc/fs", READONLY, true },
119 { "/proc/irq", READONLY, true },
120 { "/proc/kallsyms", INACCESSIBLE, true },
121 { "/proc/kcore", INACCESSIBLE, true },
122 { "/proc/latency_stats", READONLY, true },
123 { "/proc/mtrr", READONLY, true },
124 { "/proc/scsi", READONLY, true },
125 { "/proc/sys", READONLY, true },
126 { "/proc/sysrq-trigger", READONLY, true },
127 { "/proc/timer_stats", READONLY, true },
128 };
129
130 static const MountEntry protect_kernel_tunables_sys_table[] = {
131 { "/sys", READONLY, false },
132 { "/sys/fs/bpf", READONLY, true },
133 { "/sys/fs/cgroup", READWRITE_IMPLICIT, false }, /* READONLY is set by ProtectControlGroups= option */
134 { "/sys/fs/selinux", READWRITE_IMPLICIT, true },
135 { "/sys/kernel/debug", READONLY, true },
136 { "/sys/kernel/tracing", READONLY, true },
137 };
138
139 /* ProtectKernelModules= option */
140 static const MountEntry protect_kernel_modules_table[] = {
141 #if HAVE_SPLIT_USR
142 { "/lib/modules", INACCESSIBLE, true },
143 #endif
144 { "/usr/lib/modules", INACCESSIBLE, true },
145 };
146
147 /* ProtectKernelLogs= option */
148 static const MountEntry protect_kernel_logs_proc_table[] = {
149 { "/proc/kmsg", INACCESSIBLE, true },
150 };
151
152 static const MountEntry protect_kernel_logs_dev_table[] = {
153 { "/dev/kmsg", INACCESSIBLE, true },
154 };
155
156 /*
157 * ProtectHome=read-only table, protect $HOME and $XDG_RUNTIME_DIR and rest of
158 * system should be protected by ProtectSystem=
159 */
160 static const MountEntry protect_home_read_only_table[] = {
161 { "/home", READONLY, true },
162 { "/run/user", READONLY, true },
163 { "/root", READONLY, true },
164 };
165
166 /* ProtectHome=tmpfs table */
167 static const MountEntry protect_home_tmpfs_table[] = {
168 { "/home", TMPFS, true, .read_only = true, .options_const = "mode=0755" TMPFS_LIMITS_EMPTY_OR_ALMOST, .flags = MS_NODEV|MS_STRICTATIME },
169 { "/run/user", TMPFS, true, .read_only = true, .options_const = "mode=0755" TMPFS_LIMITS_EMPTY_OR_ALMOST, .flags = MS_NODEV|MS_STRICTATIME },
170 { "/root", TMPFS, true, .read_only = true, .options_const = "mode=0700" TMPFS_LIMITS_EMPTY_OR_ALMOST, .flags = MS_NODEV|MS_STRICTATIME },
171 };
172
173 /* ProtectHome=yes table */
174 static const MountEntry protect_home_yes_table[] = {
175 { "/home", INACCESSIBLE, true },
176 { "/run/user", INACCESSIBLE, true },
177 { "/root", INACCESSIBLE, true },
178 };
179
180 /* ProtectSystem=yes table */
181 static const MountEntry protect_system_yes_table[] = {
182 { "/usr", READONLY, false },
183 { "/boot", READONLY, true },
184 { "/efi", READONLY, true },
185 #if HAVE_SPLIT_USR
186 { "/lib", READONLY, true },
187 { "/lib64", READONLY, true },
188 { "/bin", READONLY, true },
189 # if HAVE_SPLIT_BIN
190 { "/sbin", READONLY, true },
191 # endif
192 #endif
193 };
194
195 /* ProtectSystem=full includes ProtectSystem=yes */
196 static const MountEntry protect_system_full_table[] = {
197 { "/usr", READONLY, false },
198 { "/boot", READONLY, true },
199 { "/efi", READONLY, true },
200 { "/etc", READONLY, false },
201 #if HAVE_SPLIT_USR
202 { "/lib", READONLY, true },
203 { "/lib64", READONLY, true },
204 { "/bin", READONLY, true },
205 # if HAVE_SPLIT_BIN
206 { "/sbin", READONLY, true },
207 # endif
208 #endif
209 };
210
211 /*
212 * ProtectSystem=strict table. In this strict mode, we mount everything
213 * read-only, except for /proc, /dev, /sys which are the kernel API VFS,
214 * which are left writable, but PrivateDevices= + ProtectKernelTunables=
215 * protect those, and these options should be fully orthogonal.
216 * (And of course /home and friends are also left writable, as ProtectHome=
217 * shall manage those, orthogonally).
218 */
219 static const MountEntry protect_system_strict_table[] = {
220 { "/", READONLY, false },
221 { "/proc", READWRITE_IMPLICIT, false }, /* ProtectKernelTunables= */
222 { "/sys", READWRITE_IMPLICIT, false }, /* ProtectKernelTunables= */
223 { "/dev", READWRITE_IMPLICIT, false }, /* PrivateDevices= */
224 { "/home", READWRITE_IMPLICIT, true }, /* ProtectHome= */
225 { "/run/user", READWRITE_IMPLICIT, true }, /* ProtectHome= */
226 { "/root", READWRITE_IMPLICIT, true }, /* ProtectHome= */
227 };
228
229 static const char * const mount_mode_table[_MOUNT_MODE_MAX] = {
230 [INACCESSIBLE] = "inaccessible",
231 [OVERLAY_MOUNT] = "overlay",
232 [BIND_MOUNT] = "bind",
233 [BIND_MOUNT_RECURSIVE] = "rbind",
234 [PRIVATE_TMP] = "private-tmp",
235 [PRIVATE_DEV] = "private-dev",
236 [BIND_DEV] = "bind-dev",
237 [EMPTY_DIR] = "empty",
238 [PRIVATE_SYSFS] = "private-sysfs",
239 [BIND_SYSFS] = "bind-sysfs",
240 [PROCFS] = "procfs",
241 [READONLY] = "read-only",
242 [READWRITE] = "read-write",
243 [TMPFS] = "tmpfs",
244 [MOUNT_IMAGES] = "mount-images",
245 [READWRITE_IMPLICIT] = "rw-implicit",
246 [EXEC] = "exec",
247 [NOEXEC] = "noexec",
248 [MQUEUEFS] = "mqueuefs",
249 };
250
251 DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(mount_mode, MountMode);
252
253 static const char *mount_entry_path(const MountEntry *p) {
254 assert(p);
255
256 /* Returns the path of this bind mount. If the malloc()-allocated ->path_buffer field is set we return that,
257 * otherwise the stack/static ->path field is returned. */
258
259 return p->path_malloc ?: p->path_const;
260 }
261
262 static const char *mount_entry_unprefixed_path(const MountEntry *p) {
263 assert(p);
264
265 /* Returns the unprefixed path (ie: before prefix_where_needed() ran), if any */
266
267 return p->unprefixed_path_malloc ?: p->unprefixed_path_const ?: mount_entry_path(p);
268 }
269
270 static void mount_entry_consume_prefix(MountEntry *p, char *new_path) {
271 assert(p);
272 assert(p->path_malloc || p->path_const);
273 assert(new_path);
274
275 /* Saves current path in unprefixed_ variable, and takes over new_path */
276
277 free_and_replace(p->unprefixed_path_malloc, p->path_malloc);
278 /* If we didn't have a path on the heap, then it's a static one */
279 if (!p->unprefixed_path_malloc)
280 p->unprefixed_path_const = p->path_const;
281 p->path_malloc = new_path;
282 p->has_prefix = true;
283 }
284
285 static bool mount_entry_read_only(const MountEntry *p) {
286 assert(p);
287
288 return p->read_only || IN_SET(p->mode, READONLY, INACCESSIBLE, PRIVATE_TMP_READONLY);
289 }
290
291 static bool mount_entry_noexec(const MountEntry *p) {
292 assert(p);
293
294 return p->noexec || IN_SET(p->mode, NOEXEC, INACCESSIBLE, PRIVATE_SYSFS, BIND_SYSFS, PROCFS);
295 }
296
297 static bool mount_entry_exec(const MountEntry *p) {
298 assert(p);
299
300 return p->exec || p->mode == EXEC;
301 }
302
303 static const char *mount_entry_source(const MountEntry *p) {
304 assert(p);
305
306 return p->source_malloc ?: p->source_const;
307 }
308
309 static const char *mount_entry_options(const MountEntry *p) {
310 assert(p);
311
312 return p->options_malloc ?: p->options_const;
313 }
314
315 static void mount_entry_done(MountEntry *p) {
316 assert(p);
317
318 p->path_malloc = mfree(p->path_malloc);
319 p->unprefixed_path_malloc = mfree(p->unprefixed_path_malloc);
320 p->source_malloc = mfree(p->source_malloc);
321 p->options_malloc = mfree(p->options_malloc);
322 p->image_options = mount_options_free_all(p->image_options);
323 }
324
325 static int append_access_mounts(MountEntry **p, char **strv, MountMode mode, bool forcibly_require_prefix) {
326 assert(p);
327
328 /* Adds a list of user-supplied READWRITE/READWRITE_IMPLICIT/READONLY/INACCESSIBLE entries */
329
330 STRV_FOREACH(i, strv) {
331 bool ignore = false, needs_prefix = false;
332 const char *e = *i;
333
334 /* Look for any prefixes */
335 if (startswith(e, "-")) {
336 e++;
337 ignore = true;
338 }
339 if (startswith(e, "+")) {
340 e++;
341 needs_prefix = true;
342 }
343
344 if (!path_is_absolute(e))
345 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL),
346 "Path is not absolute: %s", e);
347
348 *((*p)++) = (MountEntry) {
349 .path_const = e,
350 .mode = mode,
351 .ignore = ignore,
352 .has_prefix = !needs_prefix && !forcibly_require_prefix,
353 };
354 }
355
356 return 0;
357 }
358
359 static int append_empty_dir_mounts(MountEntry **p, char **strv) {
360 assert(p);
361
362 /* Adds tmpfs mounts to provide readable but empty directories. This is primarily used to implement the
363 * "/private/" boundary directories for DynamicUser=1. */
364
365 STRV_FOREACH(i, strv) {
366
367 *((*p)++) = (MountEntry) {
368 .path_const = *i,
369 .mode = EMPTY_DIR,
370 .ignore = false,
371 .read_only = true,
372 .options_const = "mode=0755" TMPFS_LIMITS_EMPTY_OR_ALMOST,
373 .flags = MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_STRICTATIME,
374 };
375 }
376
377 return 0;
378 }
379
380 static int append_bind_mounts(MountEntry **p, const BindMount *binds, size_t n) {
381 assert(p);
382
383 for (size_t i = 0; i < n; i++) {
384 const BindMount *b = binds + i;
385
386 *((*p)++) = (MountEntry) {
387 .path_const = b->destination,
388 .mode = b->recursive ? BIND_MOUNT_RECURSIVE : BIND_MOUNT,
389 .read_only = b->read_only,
390 .nosuid = b->nosuid,
391 .source_const = b->source,
392 .ignore = b->ignore_enoent,
393 };
394 }
395
396 return 0;
397 }
398
399 static int append_mount_images(MountEntry **p, const MountImage *mount_images, size_t n) {
400 assert(p);
401
402 for (size_t i = 0; i < n; i++) {
403 const MountImage *m = mount_images + i;
404
405 *((*p)++) = (MountEntry) {
406 .path_const = m->destination,
407 .mode = MOUNT_IMAGES,
408 .source_const = m->source,
409 .image_options = m->mount_options,
410 .ignore = m->ignore_enoent,
411 };
412 }
413
414 return 0;
415 }
416
417 static int append_extensions(
418 MountEntry **p,
419 const char *root,
420 const char *extension_dir,
421 char **hierarchies,
422 const MountImage *mount_images,
423 size_t n,
424 char **extension_directories) {
425
426 _cleanup_strv_free_ char **overlays = NULL;
427 int r;
428
429 if (n == 0 && strv_isempty(extension_directories))
430 return 0;
431
432 assert(p);
433 assert(extension_dir);
434
435 /* Prepare a list of overlays, that will have as each element a string suitable for being
436 * passed as a lowerdir= parameter, so start with the hierarchy on the root.
437 * The overlays vector will have the same number of elements and will correspond to the
438 * hierarchies vector, so they can be iterated upon together. */
439 STRV_FOREACH(hierarchy, hierarchies) {
440 _cleanup_free_ char *prefixed_hierarchy = NULL;
441
442 prefixed_hierarchy = path_join(root, *hierarchy);
443 if (!prefixed_hierarchy)
444 return -ENOMEM;
445
446 r = strv_consume(&overlays, TAKE_PTR(prefixed_hierarchy));
447 if (r < 0)
448 return r;
449 }
450
451 /* First, prepare a mount for each image, but these won't be visible to the unit, instead
452 * they will be mounted in our propagate directory, and used as a source for the overlay. */
453 for (size_t i = 0; i < n; i++) {
454 _cleanup_free_ char *mount_point = NULL;
455 const MountImage *m = mount_images + i;
456
457 r = asprintf(&mount_point, "%s/%zu", extension_dir, i);
458 if (r < 0)
459 return -ENOMEM;
460
461 for (size_t j = 0; hierarchies && hierarchies[j]; ++j) {
462 _cleanup_free_ char *prefixed_hierarchy = NULL, *escaped = NULL, *lowerdir = NULL;
463
464 prefixed_hierarchy = path_join(mount_point, hierarchies[j]);
465 if (!prefixed_hierarchy)
466 return -ENOMEM;
467
468 escaped = shell_escape(prefixed_hierarchy, ",:");
469 if (!escaped)
470 return -ENOMEM;
471
472 /* Note that lowerdir= parameters are in 'reverse' order, so the
473 * top-most directory in the overlay comes first in the list. */
474 lowerdir = strjoin(escaped, ":", overlays[j]);
475 if (!lowerdir)
476 return -ENOMEM;
477
478 free_and_replace(overlays[j], lowerdir);
479 }
480
481 *((*p)++) = (MountEntry) {
482 .path_malloc = TAKE_PTR(mount_point),
483 .image_options = m->mount_options,
484 .ignore = m->ignore_enoent,
485 .source_const = m->source,
486 .mode = EXTENSION_IMAGES,
487 .has_prefix = true,
488 };
489 }
490
491 /* Secondly, extend the lowerdir= parameters with each ExtensionDirectory.
492 * Bind mount them in the same location as the ExtensionImages, so that we
493 * can check that they are valid trees (extension-release.d). */
494 STRV_FOREACH(extension_directory, extension_directories) {
495 _cleanup_free_ char *mount_point = NULL, *source = NULL;
496 const char *e = *extension_directory;
497 bool ignore_enoent = false;
498
499 /* Pick up the counter where the ExtensionImages left it. */
500 r = asprintf(&mount_point, "%s/%zu", extension_dir, n++);
501 if (r < 0)
502 return -ENOMEM;
503
504 /* Look for any prefixes */
505 if (startswith(e, "-")) {
506 e++;
507 ignore_enoent = true;
508 }
509 /* Ignore this for now */
510 if (startswith(e, "+"))
511 e++;
512
513 source = strdup(e);
514 if (!source)
515 return -ENOMEM;
516
517 for (size_t j = 0; hierarchies && hierarchies[j]; ++j) {
518 _cleanup_free_ char *prefixed_hierarchy = NULL, *escaped = NULL, *lowerdir = NULL;
519
520 prefixed_hierarchy = path_join(mount_point, hierarchies[j]);
521 if (!prefixed_hierarchy)
522 return -ENOMEM;
523
524 escaped = shell_escape(prefixed_hierarchy, ",:");
525 if (!escaped)
526 return -ENOMEM;
527
528 /* Note that lowerdir= parameters are in 'reverse' order, so the
529 * top-most directory in the overlay comes first in the list. */
530 lowerdir = strjoin(escaped, ":", overlays[j]);
531 if (!lowerdir)
532 return -ENOMEM;
533
534 free_and_replace(overlays[j], lowerdir);
535 }
536
537 *((*p)++) = (MountEntry) {
538 .path_malloc = TAKE_PTR(mount_point),
539 .source_malloc = TAKE_PTR(source),
540 .mode = EXTENSION_DIRECTORIES,
541 .ignore = ignore_enoent,
542 .has_prefix = true,
543 .read_only = true,
544 };
545 }
546
547 /* Then, for each hierarchy, prepare an overlay with the list of lowerdir= strings
548 * set up earlier. */
549 for (size_t i = 0; hierarchies && hierarchies[i]; ++i) {
550 _cleanup_free_ char *prefixed_hierarchy = NULL;
551
552 prefixed_hierarchy = path_join(root, hierarchies[i]);
553 if (!prefixed_hierarchy)
554 return -ENOMEM;
555
556 *((*p)++) = (MountEntry) {
557 .path_malloc = TAKE_PTR(prefixed_hierarchy),
558 .options_malloc = TAKE_PTR(overlays[i]),
559 .mode = OVERLAY_MOUNT,
560 .has_prefix = true,
561 .ignore = true, /* If the source image doesn't set the ignore bit it will fail earlier. */
562 };
563 }
564
565 return 0;
566 }
567
568 static int append_tmpfs_mounts(MountEntry **p, const TemporaryFileSystem *tmpfs, size_t n) {
569 assert(p);
570
571 for (size_t i = 0; i < n; i++) {
572 const TemporaryFileSystem *t = tmpfs + i;
573 _cleanup_free_ char *o = NULL, *str = NULL;
574 unsigned long flags;
575 bool ro = false;
576 int r;
577
578 if (!path_is_absolute(t->path))
579 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL),
580 "Path is not absolute: %s",
581 t->path);
582
583 str = strjoin("mode=0755" NESTED_TMPFS_LIMITS ",", t->options);
584 if (!str)
585 return -ENOMEM;
586
587 r = mount_option_mangle(str, MS_NODEV|MS_STRICTATIME, &flags, &o);
588 if (r < 0)
589 return log_debug_errno(r, "Failed to parse mount option '%s': %m", str);
590
591 ro = flags & MS_RDONLY;
592 if (ro)
593 flags ^= MS_RDONLY;
594
595 *((*p)++) = (MountEntry) {
596 .path_const = t->path,
597 .mode = TMPFS,
598 .read_only = ro,
599 .options_malloc = TAKE_PTR(o),
600 .flags = flags,
601 };
602 }
603
604 return 0;
605 }
606
607 static int append_static_mounts(MountEntry **p, const MountEntry *mounts, size_t n, bool ignore_protect) {
608 assert(p);
609 assert(mounts);
610
611 /* Adds a list of static pre-defined entries */
612
613 for (size_t i = 0; i < n; i++)
614 *((*p)++) = (MountEntry) {
615 .path_const = mount_entry_path(mounts+i),
616 .mode = mounts[i].mode,
617 .ignore = mounts[i].ignore || ignore_protect,
618 };
619
620 return 0;
621 }
622
623 static int append_protect_home(MountEntry **p, ProtectHome protect_home, bool ignore_protect) {
624 assert(p);
625
626 switch (protect_home) {
627
628 case PROTECT_HOME_NO:
629 return 0;
630
631 case PROTECT_HOME_READ_ONLY:
632 return append_static_mounts(p, protect_home_read_only_table, ELEMENTSOF(protect_home_read_only_table), ignore_protect);
633
634 case PROTECT_HOME_TMPFS:
635 return append_static_mounts(p, protect_home_tmpfs_table, ELEMENTSOF(protect_home_tmpfs_table), ignore_protect);
636
637 case PROTECT_HOME_YES:
638 return append_static_mounts(p, protect_home_yes_table, ELEMENTSOF(protect_home_yes_table), ignore_protect);
639
640 default:
641 assert_not_reached();
642 }
643 }
644
645 static int append_protect_system(MountEntry **p, ProtectSystem protect_system, bool ignore_protect) {
646 assert(p);
647
648 switch (protect_system) {
649
650 case PROTECT_SYSTEM_NO:
651 return 0;
652
653 case PROTECT_SYSTEM_STRICT:
654 return append_static_mounts(p, protect_system_strict_table, ELEMENTSOF(protect_system_strict_table), ignore_protect);
655
656 case PROTECT_SYSTEM_YES:
657 return append_static_mounts(p, protect_system_yes_table, ELEMENTSOF(protect_system_yes_table), ignore_protect);
658
659 case PROTECT_SYSTEM_FULL:
660 return append_static_mounts(p, protect_system_full_table, ELEMENTSOF(protect_system_full_table), ignore_protect);
661
662 default:
663 assert_not_reached();
664 }
665 }
666
667 static int mount_path_compare(const MountEntry *a, const MountEntry *b) {
668 int d;
669
670 /* ExtensionImages/Directories will be used by other mounts as a base, so sort them first
671 * regardless of the prefix - they are set up in the propagate directory anyway */
672 d = -CMP(a->mode == EXTENSION_IMAGES, b->mode == EXTENSION_IMAGES);
673 if (d != 0)
674 return d;
675 d = -CMP(a->mode == EXTENSION_DIRECTORIES, b->mode == EXTENSION_DIRECTORIES);
676 if (d != 0)
677 return d;
678
679 /* If the paths are not equal, then order prefixes first */
680 d = path_compare(mount_entry_path(a), mount_entry_path(b));
681 if (d != 0)
682 return d;
683
684 /* If the paths are equal, check the mode */
685 return CMP((int) a->mode, (int) b->mode);
686 }
687
688 static int prefix_where_needed(MountEntry *m, size_t n, const char *root_directory) {
689 /* Prefixes all paths in the bind mount table with the root directory if the entry needs that. */
690
691 assert(m || n == 0);
692
693 for (size_t i = 0; i < n; i++) {
694 char *s;
695
696 if (m[i].has_prefix)
697 continue;
698
699 s = path_join(root_directory, mount_entry_path(m+i));
700 if (!s)
701 return -ENOMEM;
702
703 mount_entry_consume_prefix(&m[i], s);
704 }
705
706 return 0;
707 }
708
709 static void drop_duplicates(MountEntry *m, size_t *n) {
710 MountEntry *f, *t, *previous;
711
712 assert(m);
713 assert(n);
714
715 /* Drops duplicate entries. Expects that the array is properly ordered already. */
716
717 for (f = m, t = m, previous = NULL; f < m + *n; f++) {
718
719 /* The first one wins (which is the one with the more restrictive mode), see mount_path_compare()
720 * above. Note that we only drop duplicates that haven't been mounted yet. */
721 if (previous &&
722 path_equal(mount_entry_path(f), mount_entry_path(previous)) &&
723 !f->applied && !previous->applied) {
724 log_debug("%s (%s) is duplicate.", mount_entry_path(f), mount_mode_to_string(f->mode));
725 /* Propagate the flags to the remaining entry */
726 previous->read_only = previous->read_only || mount_entry_read_only(f);
727 previous->noexec = previous->noexec || mount_entry_noexec(f);
728 previous->exec = previous->exec || mount_entry_exec(f);
729 mount_entry_done(f);
730 continue;
731 }
732
733 *t = *f;
734 previous = t;
735 t++;
736 }
737
738 *n = t - m;
739 }
740
741 static void drop_inaccessible(MountEntry *m, size_t *n) {
742 MountEntry *f, *t;
743 const char *clear = NULL;
744
745 assert(m);
746 assert(n);
747
748 /* Drops all entries obstructed by another entry further up the tree. Expects that the array is properly
749 * ordered already. */
750
751 for (f = m, t = m; f < m + *n; f++) {
752
753 /* If we found a path set for INACCESSIBLE earlier, and this entry has it as prefix we should drop
754 * it, as inaccessible paths really should drop the entire subtree. */
755 if (clear && path_startswith(mount_entry_path(f), clear)) {
756 log_debug("%s is masked by %s.", mount_entry_path(f), clear);
757 mount_entry_done(f);
758 continue;
759 }
760
761 clear = f->mode == INACCESSIBLE ? mount_entry_path(f) : NULL;
762
763 *t = *f;
764 t++;
765 }
766
767 *n = t - m;
768 }
769
770 static void drop_nop(MountEntry *m, size_t *n) {
771 MountEntry *f, *t;
772
773 assert(m);
774 assert(n);
775
776 /* Drops all entries which have an immediate parent that has the same type, as they are redundant. Assumes the
777 * list is ordered by prefixes. */
778
779 for (f = m, t = m; f < m + *n; f++) {
780
781 /* Only suppress such subtrees for READONLY, READWRITE and READWRITE_IMPLICIT entries */
782 if (IN_SET(f->mode, READONLY, READWRITE, READWRITE_IMPLICIT)) {
783 MountEntry *found = NULL;
784
785 /* Now let's find the first parent of the entry we are looking at. */
786 for (MountEntry *p = PTR_SUB1(t, m); p; p = PTR_SUB1(p, m))
787 if (path_startswith(mount_entry_path(f), mount_entry_path(p))) {
788 found = p;
789 break;
790 }
791
792 /* We found it, let's see if it's the same mode, if so, we can drop this entry */
793 if (found && found->mode == f->mode) {
794 log_debug("%s (%s) is made redundant by %s (%s)",
795 mount_entry_path(f), mount_mode_to_string(f->mode),
796 mount_entry_path(found), mount_mode_to_string(found->mode));
797 mount_entry_done(f);
798 continue;
799 }
800 }
801
802 *t = *f;
803 t++;
804 }
805
806 *n = t - m;
807 }
808
809 static void drop_outside_root(const char *root_directory, MountEntry *m, size_t *n) {
810 MountEntry *f, *t;
811
812 assert(m);
813 assert(n);
814
815 /* Nothing to do */
816 if (!root_directory)
817 return;
818
819 /* Drops all mounts that are outside of the root directory. */
820
821 for (f = m, t = m; f < m + *n; f++) {
822
823 /* ExtensionImages/Directories bases are opened in /run/systemd/unit-extensions on the host */
824 if (!IN_SET(f->mode, EXTENSION_IMAGES, EXTENSION_DIRECTORIES) && !path_startswith(mount_entry_path(f), root_directory)) {
825 log_debug("%s is outside of root directory.", mount_entry_path(f));
826 mount_entry_done(f);
827 continue;
828 }
829
830 *t = *f;
831 t++;
832 }
833
834 *n = t - m;
835 }
836
837 static int clone_device_node(
838 const char *d,
839 const char *temporary_mount,
840 bool *make_devnode) {
841
842 _cleanup_free_ char *sl = NULL;
843 const char *dn, *bn, *t;
844 struct stat st;
845 int r;
846
847 if (stat(d, &st) < 0) {
848 if (errno == ENOENT) {
849 log_debug_errno(errno, "Device node '%s' to clone does not exist, ignoring.", d);
850 return -ENXIO;
851 }
852
853 return log_debug_errno(errno, "Failed to stat() device node '%s' to clone, ignoring: %m", d);
854 }
855
856 if (!S_ISBLK(st.st_mode) &&
857 !S_ISCHR(st.st_mode))
858 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL),
859 "Device node '%s' to clone is not a device node, ignoring.",
860 d);
861
862 dn = strjoina(temporary_mount, d);
863
864 /* First, try to create device node properly */
865 if (*make_devnode) {
866 mac_selinux_create_file_prepare(d, st.st_mode);
867 r = mknod(dn, st.st_mode, st.st_rdev);
868 mac_selinux_create_file_clear();
869 if (r >= 0)
870 goto add_symlink;
871 if (errno != EPERM)
872 return log_debug_errno(errno, "mknod failed for %s: %m", d);
873
874 /* This didn't work, let's not try this again for the next iterations. */
875 *make_devnode = false;
876 }
877
878 /* We're about to fall back to bind-mounting the device node. So create a dummy bind-mount target.
879 * Do not prepare device-node SELinux label (see issue 13762) */
880 r = mknod(dn, S_IFREG, 0);
881 if (r < 0 && errno != EEXIST)
882 return log_debug_errno(errno, "mknod() fallback failed for '%s': %m", d);
883
884 /* Fallback to bind-mounting: The assumption here is that all used device nodes carry standard
885 * properties. Specifically, the devices nodes we bind-mount should either be owned by root:root or
886 * root:tty (e.g. /dev/tty, /dev/ptmx) and should not carry ACLs. */
887 r = mount_nofollow_verbose(LOG_DEBUG, d, dn, NULL, MS_BIND, NULL);
888 if (r < 0)
889 return r;
890
891 add_symlink:
892 bn = path_startswith(d, "/dev/");
893 if (!bn)
894 return 0;
895
896 /* Create symlinks like /dev/char/1:9 → ../urandom */
897 if (asprintf(&sl, "%s/dev/%s/" DEVNUM_FORMAT_STR,
898 temporary_mount,
899 S_ISCHR(st.st_mode) ? "char" : "block",
900 DEVNUM_FORMAT_VAL(st.st_rdev)) < 0)
901 return log_oom();
902
903 (void) mkdir_parents(sl, 0755);
904
905 t = strjoina("../", bn);
906 if (symlink(t, sl) < 0)
907 log_debug_errno(errno, "Failed to symlink '%s' to '%s', ignoring: %m", t, sl);
908
909 return 0;
910 }
911
912 static int mount_private_dev(MountEntry *m) {
913 static const char devnodes[] =
914 "/dev/null\0"
915 "/dev/zero\0"
916 "/dev/full\0"
917 "/dev/random\0"
918 "/dev/urandom\0"
919 "/dev/tty\0";
920
921 char temporary_mount[] = "/tmp/namespace-dev-XXXXXX";
922 const char *dev = NULL, *devpts = NULL, *devshm = NULL, *devhugepages = NULL, *devmqueue = NULL, *devlog = NULL, *devptmx = NULL;
923 bool can_mknod = true;
924 int r;
925
926 assert(m);
927
928 if (!mkdtemp(temporary_mount))
929 return log_debug_errno(errno, "Failed to create temporary directory '%s': %m", temporary_mount);
930
931 dev = strjoina(temporary_mount, "/dev");
932 (void) mkdir(dev, 0755);
933 r = mount_nofollow_verbose(LOG_DEBUG, "tmpfs", dev, "tmpfs", DEV_MOUNT_OPTIONS, "mode=0755" TMPFS_LIMITS_PRIVATE_DEV);
934 if (r < 0)
935 goto fail;
936
937 r = label_fix_full(AT_FDCWD, dev, "/dev", 0);
938 if (r < 0) {
939 log_debug_errno(r, "Failed to fix label of '%s' as /dev: %m", dev);
940 goto fail;
941 }
942
943 devpts = strjoina(temporary_mount, "/dev/pts");
944 (void) mkdir(devpts, 0755);
945 r = mount_nofollow_verbose(LOG_DEBUG, "/dev/pts", devpts, NULL, MS_BIND, NULL);
946 if (r < 0)
947 goto fail;
948
949 /* /dev/ptmx can either be a device node or a symlink to /dev/pts/ptmx.
950 * When /dev/ptmx a device node, /dev/pts/ptmx has 000 permissions making it inaccessible.
951 * Thus, in that case make a clone.
952 * In nspawn and other containers it will be a symlink, in that case make it a symlink. */
953 r = is_symlink("/dev/ptmx");
954 if (r < 0) {
955 log_debug_errno(r, "Failed to detect whether /dev/ptmx is a symlink or not: %m");
956 goto fail;
957 } else if (r > 0) {
958 devptmx = strjoina(temporary_mount, "/dev/ptmx");
959 if (symlink("pts/ptmx", devptmx) < 0) {
960 r = log_debug_errno(errno, "Failed to create a symlink '%s' to pts/ptmx: %m", devptmx);
961 goto fail;
962 }
963 } else {
964 r = clone_device_node("/dev/ptmx", temporary_mount, &can_mknod);
965 if (r < 0)
966 goto fail;
967 }
968
969 devshm = strjoina(temporary_mount, "/dev/shm");
970 (void) mkdir(devshm, 0755);
971 r = mount_nofollow_verbose(LOG_DEBUG, "/dev/shm", devshm, NULL, MS_BIND, NULL);
972 if (r < 0)
973 goto fail;
974
975 devmqueue = strjoina(temporary_mount, "/dev/mqueue");
976 (void) mkdir(devmqueue, 0755);
977 (void) mount_nofollow_verbose(LOG_DEBUG, "/dev/mqueue", devmqueue, NULL, MS_BIND, NULL);
978
979 devhugepages = strjoina(temporary_mount, "/dev/hugepages");
980 (void) mkdir(devhugepages, 0755);
981 (void) mount_nofollow_verbose(LOG_DEBUG, "/dev/hugepages", devhugepages, NULL, MS_BIND, NULL);
982
983 devlog = strjoina(temporary_mount, "/dev/log");
984 if (symlink("/run/systemd/journal/dev-log", devlog) < 0)
985 log_debug_errno(errno, "Failed to create a symlink '%s' to /run/systemd/journal/dev-log, ignoring: %m", devlog);
986
987 NULSTR_FOREACH(d, devnodes) {
988 r = clone_device_node(d, temporary_mount, &can_mknod);
989 /* ENXIO means the *source* is not a device file, skip creation in that case */
990 if (r < 0 && r != -ENXIO)
991 goto fail;
992 }
993
994 r = dev_setup(temporary_mount, UID_INVALID, GID_INVALID);
995 if (r < 0)
996 log_debug_errno(r, "Failed to set up basic device tree at '%s', ignoring: %m", temporary_mount);
997
998 /* Create the /dev directory if missing. It is more likely to be missing when the service is started
999 * with RootDirectory. This is consistent with mount units creating the mount points when missing. */
1000 (void) mkdir_p_label(mount_entry_path(m), 0755);
1001
1002 /* Unmount everything in old /dev */
1003 r = umount_recursive(mount_entry_path(m), 0);
1004 if (r < 0)
1005 log_debug_errno(r, "Failed to unmount directories below '%s', ignoring: %m", mount_entry_path(m));
1006
1007 r = mount_nofollow_verbose(LOG_DEBUG, dev, mount_entry_path(m), NULL, MS_MOVE, NULL);
1008 if (r < 0)
1009 goto fail;
1010
1011 (void) rmdir(dev);
1012 (void) rmdir(temporary_mount);
1013
1014 return 0;
1015
1016 fail:
1017 if (devpts)
1018 (void) umount_verbose(LOG_DEBUG, devpts, UMOUNT_NOFOLLOW);
1019
1020 if (devshm)
1021 (void) umount_verbose(LOG_DEBUG, devshm, UMOUNT_NOFOLLOW);
1022
1023 if (devhugepages)
1024 (void) umount_verbose(LOG_DEBUG, devhugepages, UMOUNT_NOFOLLOW);
1025
1026 if (devmqueue)
1027 (void) umount_verbose(LOG_DEBUG, devmqueue, UMOUNT_NOFOLLOW);
1028
1029 (void) umount_verbose(LOG_DEBUG, dev, UMOUNT_NOFOLLOW);
1030 (void) rmdir(dev);
1031 (void) rmdir(temporary_mount);
1032
1033 return r;
1034 }
1035
1036 static int mount_bind_dev(const MountEntry *m) {
1037 int r;
1038
1039 assert(m);
1040
1041 /* Implements the little brother of mount_private_dev(): simply bind mounts the host's /dev into the
1042 * service's /dev. This is only used when RootDirectory= is set. */
1043
1044 (void) mkdir_p_label(mount_entry_path(m), 0755);
1045
1046 r = path_is_mount_point(mount_entry_path(m), NULL, 0);
1047 if (r < 0)
1048 return log_debug_errno(r, "Unable to determine whether /dev is already mounted: %m");
1049 if (r > 0) /* make this a NOP if /dev is already a mount point */
1050 return 0;
1051
1052 r = mount_nofollow_verbose(LOG_DEBUG, "/dev", mount_entry_path(m), NULL, MS_BIND|MS_REC, NULL);
1053 if (r < 0)
1054 return r;
1055
1056 return 1;
1057 }
1058
1059 static int mount_private_sysfs(const MountEntry *m) {
1060 const char *p = mount_entry_path(ASSERT_PTR(m));
1061 int r;
1062
1063 (void) mkdir_p_label(p, 0755);
1064
1065 r = remount_sysfs(p);
1066 if (r < 0 && (ERRNO_IS_PRIVILEGE(r) || ERRNO_IS_NOT_SUPPORTED(r))) {
1067 /* Running with an unprivileged user (PrivateUsers=yes), or the kernel seems old. Falling
1068 * back to bind mount the host's version so that we get all child mounts of it, too. */
1069
1070 log_debug_errno(r, "Failed to remount sysfs on %s, falling back to bind mount: %m", p);
1071
1072 (void) umount_recursive(p, 0);
1073
1074 r = mount_nofollow_verbose(LOG_DEBUG, "/sys", p, NULL, MS_BIND|MS_REC, NULL);
1075 }
1076 if (r < 0)
1077 return log_debug_errno(r, "Failed to remount sysfs on %s: %m", p);
1078
1079 return 1;
1080 }
1081
1082 static int mount_bind_sysfs(const MountEntry *m) {
1083 int r;
1084
1085 assert(m);
1086
1087 (void) mkdir_p_label(mount_entry_path(m), 0755);
1088
1089 r = path_is_mount_point(mount_entry_path(m), NULL, 0);
1090 if (r < 0)
1091 return log_debug_errno(r, "Unable to determine whether /sys is already mounted: %m");
1092 if (r > 0) /* make this a NOP if /sys is already a mount point */
1093 return 0;
1094
1095 /* Bind mount the host's version so that we get all child mounts of it, too. */
1096 r = mount_nofollow_verbose(LOG_DEBUG, "/sys", mount_entry_path(m), NULL, MS_BIND|MS_REC, NULL);
1097 if (r < 0)
1098 return r;
1099
1100 return 1;
1101 }
1102
1103 static int mount_procfs(const MountEntry *m, const NamespaceInfo *ns_info) {
1104 _cleanup_free_ char *opts = NULL;
1105 const char *entry_path;
1106 int r, n;
1107
1108 assert(m);
1109 assert(ns_info);
1110
1111 if (ns_info->protect_proc != PROTECT_PROC_DEFAULT ||
1112 ns_info->proc_subset != PROC_SUBSET_ALL) {
1113
1114 /* Starting with kernel 5.8 procfs' hidepid= logic is truly per-instance (previously it
1115 * pretended to be per-instance but actually was per-namespace), hence let's make use of it
1116 * if requested. To make sure this logic succeeds only on kernels where hidepid= is
1117 * per-instance, we'll exclusively use the textual value for hidepid=, since support was
1118 * added in the same commit: if it's supported it is thus also per-instance. */
1119
1120 const char *hpv = ns_info->protect_proc == PROTECT_PROC_DEFAULT ?
1121 "off" :
1122 protect_proc_to_string(ns_info->protect_proc);
1123
1124 /* hidepid= support was added in 5.8, so we can use fsconfig()/fsopen() (which were added in
1125 * 5.2) to check if hidepid= is supported. This avoids a noisy dmesg log by the kernel when
1126 * trying to use hidepid= on systems where it isn't supported. The same applies for subset=.
1127 * fsopen()/fsconfig() was also backported on some distros which allows us to detect
1128 * hidepid=/subset= support in even more scenarios. */
1129
1130 if (mount_option_supported("proc", "hidepid", hpv) != 0) {
1131 opts = strjoin("hidepid=", hpv);
1132 if (!opts)
1133 return -ENOMEM;
1134 }
1135
1136 if (ns_info->proc_subset == PROC_SUBSET_PID &&
1137 mount_option_supported("proc", "subset", "pid") != 0)
1138 if (!strextend_with_separator(&opts, ",", "subset=pid"))
1139 return -ENOMEM;
1140 }
1141
1142 entry_path = mount_entry_path(m);
1143 (void) mkdir_p_label(entry_path, 0755);
1144
1145 /* Mount a new instance, so that we get the one that matches our user namespace, if we are running in
1146 * one. i.e we don't reuse existing mounts here under any condition, we want a new instance owned by
1147 * our user namespace and with our hidepid= settings applied. Hence, let's get rid of everything
1148 * mounted on /proc/ first. */
1149
1150 n = umount_recursive(entry_path, 0);
1151
1152 r = mount_nofollow_verbose(LOG_DEBUG, "proc", entry_path, "proc", MS_NOSUID|MS_NOEXEC|MS_NODEV, opts);
1153 if (r == -EINVAL && opts)
1154 /* If this failed with EINVAL then this likely means the textual hidepid= stuff is
1155 * not supported by the kernel, and thus the per-instance hidepid= neither, which
1156 * means we really don't want to use it, since it would affect our host's /proc
1157 * mount. Hence let's gracefully fallback to a classic, unrestricted version. */
1158 r = mount_nofollow_verbose(LOG_DEBUG, "proc", entry_path, "proc", MS_NOSUID|MS_NOEXEC|MS_NODEV, NULL);
1159 if (r == -EPERM) {
1160 /* When we do not have enough privileges to mount /proc, fallback to use existing /proc. */
1161
1162 if (n > 0)
1163 /* /proc or some of sub-mounts are umounted in the above. Refuse incomplete tree.
1164 * Propagate the original error code returned by mount() in the above. */
1165 return -EPERM;
1166
1167 r = path_is_mount_point(entry_path, NULL, 0);
1168 if (r < 0)
1169 return log_debug_errno(r, "Unable to determine whether /proc is already mounted: %m");
1170 if (r == 0) {
1171 /* We lack permissions to mount a new instance of /proc, and it is not already
1172 * mounted. But we can access the host's, so as a final fallback bind-mount it to
1173 * the destination, as most likely we are inside a user manager in an unprivileged
1174 * user namespace. */
1175 r = mount_nofollow_verbose(LOG_DEBUG, "/proc", entry_path, NULL, MS_BIND|MS_REC, NULL);
1176 if (r < 0)
1177 return -EPERM;
1178 }
1179 } else if (r < 0)
1180 return r;
1181 else
1182 /* We mounted a new instance now. Let's bind mount the children over now. This matters for
1183 * nspawn where a bunch of files are overmounted, in particular the boot id */
1184 (void) bind_mount_submounts("/proc", entry_path);
1185
1186 return 1;
1187 }
1188
1189 static int mount_tmpfs(const MountEntry *m) {
1190 const char *entry_path, *inner_path;
1191 int r;
1192
1193 assert(m);
1194
1195 entry_path = mount_entry_path(m);
1196 inner_path = mount_entry_unprefixed_path(m);
1197
1198 /* First, get rid of everything that is below if there is anything. Then, overmount with our new
1199 * tmpfs */
1200
1201 (void) mkdir_p_label(entry_path, 0755);
1202 (void) umount_recursive(entry_path, 0);
1203
1204 r = mount_nofollow_verbose(LOG_DEBUG, "tmpfs", entry_path, "tmpfs", m->flags, mount_entry_options(m));
1205 if (r < 0)
1206 return r;
1207
1208 r = label_fix_full(AT_FDCWD, entry_path, inner_path, 0);
1209 if (r < 0)
1210 return log_debug_errno(r, "Failed to fix label of '%s' as '%s': %m", entry_path, inner_path);
1211
1212 return 1;
1213 }
1214
1215 static int mount_run(const MountEntry *m) {
1216 int r;
1217
1218 assert(m);
1219
1220 r = path_is_mount_point(mount_entry_path(m), NULL, 0);
1221 if (r < 0 && r != -ENOENT)
1222 return log_debug_errno(r, "Unable to determine whether /run is already mounted: %m");
1223 if (r > 0) /* make this a NOP if /run is already a mount point */
1224 return 0;
1225
1226 return mount_tmpfs(m);
1227 }
1228
1229 static int mount_mqueuefs(const MountEntry *m) {
1230 int r;
1231 const char *entry_path;
1232
1233 assert(m);
1234
1235 entry_path = mount_entry_path(m);
1236
1237 (void) mkdir_p_label(entry_path, 0755);
1238 (void) umount_recursive(entry_path, 0);
1239
1240 r = mount_nofollow_verbose(LOG_DEBUG, "mqueue", entry_path, "mqueue", m->flags, mount_entry_options(m));
1241 if (r < 0)
1242 return r;
1243
1244 return 0;
1245 }
1246
1247 static int mount_image(
1248 const MountEntry *m,
1249 const char *root_directory,
1250 const ImagePolicy *image_policy) {
1251
1252 _cleanup_free_ char *host_os_release_id = NULL, *host_os_release_version_id = NULL,
1253 *host_os_release_sysext_level = NULL;
1254 int r;
1255
1256 assert(m);
1257
1258 if (m->mode == EXTENSION_IMAGES) {
1259 r = parse_os_release(
1260 empty_to_root(root_directory),
1261 "ID", &host_os_release_id,
1262 "VERSION_ID", &host_os_release_version_id,
1263 "SYSEXT_LEVEL", &host_os_release_sysext_level,
1264 NULL);
1265 if (r < 0)
1266 return log_debug_errno(r, "Failed to acquire 'os-release' data of OS tree '%s': %m", empty_to_root(root_directory));
1267 if (isempty(host_os_release_id))
1268 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "'ID' field not found or empty in 'os-release' data of OS tree '%s': %m", empty_to_root(root_directory));
1269 }
1270
1271 r = verity_dissect_and_mount(
1272 /* src_fd= */ -1,
1273 mount_entry_source(m),
1274 mount_entry_path(m),
1275 m->image_options,
1276 image_policy,
1277 host_os_release_id,
1278 host_os_release_version_id,
1279 host_os_release_sysext_level,
1280 NULL);
1281 if (r == -ENOENT && m->ignore)
1282 return 0;
1283 if (r == -ESTALE && host_os_release_id)
1284 return log_error_errno(r,
1285 "Failed to mount image %s, extension-release metadata does not match the lower layer's: ID=%s%s%s%s%s",
1286 mount_entry_source(m),
1287 host_os_release_id,
1288 host_os_release_version_id ? " VERSION_ID=" : "",
1289 strempty(host_os_release_version_id),
1290 host_os_release_sysext_level ? " SYSEXT_LEVEL=" : "",
1291 strempty(host_os_release_sysext_level));
1292 if (r < 0)
1293 return log_debug_errno(r, "Failed to mount image %s on %s: %m", mount_entry_source(m), mount_entry_path(m));
1294
1295 return 1;
1296 }
1297
1298 static int mount_overlay(const MountEntry *m) {
1299 const char *options;
1300 int r;
1301
1302 assert(m);
1303
1304 options = strjoina("lowerdir=", mount_entry_options(m));
1305
1306 (void) mkdir_p_label(mount_entry_path(m), 0755);
1307
1308 r = mount_nofollow_verbose(LOG_DEBUG, "overlay", mount_entry_path(m), "overlay", MS_RDONLY, options);
1309 if (r == -ENOENT && m->ignore)
1310 return 0;
1311 if (r < 0)
1312 return r;
1313
1314 return 1;
1315 }
1316
1317 static int follow_symlink(
1318 const char *root_directory,
1319 MountEntry *m) {
1320
1321 _cleanup_free_ char *target = NULL;
1322 int r;
1323
1324 /* Let's chase symlinks, but only one step at a time. That's because depending where the symlink points we
1325 * might need to change the order in which we mount stuff. Hence: let's normalize piecemeal, and do one step at
1326 * a time by specifying CHASE_STEP. This function returns 0 if we resolved one step, and > 0 if we reached the
1327 * end and already have a fully normalized name. */
1328
1329 r = chase(mount_entry_path(m), root_directory, CHASE_STEP|CHASE_NONEXISTENT, &target, NULL);
1330 if (r < 0)
1331 return log_debug_errno(r, "Failed to chase symlinks '%s': %m", mount_entry_path(m));
1332 if (r > 0) /* Reached the end, nothing more to resolve */
1333 return 1;
1334
1335 if (m->n_followed >= CHASE_MAX) /* put a boundary on things */
1336 return log_debug_errno(SYNTHETIC_ERRNO(ELOOP),
1337 "Symlink loop on '%s'.",
1338 mount_entry_path(m));
1339
1340 log_debug("Followed mount entry path symlink %s %s %s.",
1341 mount_entry_path(m), special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), target);
1342
1343 mount_entry_consume_prefix(m, TAKE_PTR(target));
1344
1345 m->n_followed ++;
1346
1347 return 0;
1348 }
1349
1350 static int apply_one_mount(
1351 const char *root_directory,
1352 MountEntry *m,
1353 const ImagePolicy *mount_image_policy,
1354 const ImagePolicy *extension_image_policy,
1355 const NamespaceInfo *ns_info) {
1356
1357 _cleanup_free_ char *inaccessible = NULL;
1358 bool rbind = true, make = false;
1359 const char *what;
1360 int r;
1361
1362 assert(m);
1363 assert(ns_info);
1364
1365 log_debug("Applying namespace mount on %s", mount_entry_path(m));
1366
1367 switch (m->mode) {
1368
1369 case INACCESSIBLE: {
1370 _cleanup_free_ char *tmp = NULL;
1371 const char *runtime_dir;
1372 struct stat target;
1373
1374 /* First, get rid of everything that is below if there
1375 * is anything... Then, overmount it with an
1376 * inaccessible path. */
1377 (void) umount_recursive(mount_entry_path(m), 0);
1378
1379 if (lstat(mount_entry_path(m), &target) < 0) {
1380 if (errno == ENOENT && m->ignore)
1381 return 0;
1382
1383 return log_debug_errno(errno, "Failed to lstat() %s to determine what to mount over it: %m",
1384 mount_entry_path(m));
1385 }
1386
1387 if (geteuid() == 0)
1388 runtime_dir = "/run";
1389 else {
1390 if (asprintf(&tmp, "/run/user/" UID_FMT, geteuid()) < 0)
1391 return -ENOMEM;
1392
1393 runtime_dir = tmp;
1394 }
1395
1396 r = mode_to_inaccessible_node(runtime_dir, target.st_mode, &inaccessible);
1397 if (r < 0)
1398 return log_debug_errno(SYNTHETIC_ERRNO(ELOOP),
1399 "File type not supported for inaccessible mounts. Note that symlinks are not allowed");
1400 what = inaccessible;
1401 break;
1402 }
1403
1404 case READONLY:
1405 case READWRITE:
1406 case READWRITE_IMPLICIT:
1407 case EXEC:
1408 case NOEXEC:
1409 r = path_is_mount_point(mount_entry_path(m), root_directory, 0);
1410 if (r == -ENOENT && m->ignore)
1411 return 0;
1412 if (r < 0)
1413 return log_debug_errno(r, "Failed to determine whether %s is already a mount point: %m",
1414 mount_entry_path(m));
1415 if (r > 0) /* Nothing to do here, it is already a mount. We just later toggle the MS_RDONLY
1416 * and MS_NOEXEC bits for the mount point if needed. */
1417 return 0;
1418 /* This isn't a mount point yet, let's make it one. */
1419 what = mount_entry_path(m);
1420 break;
1421
1422 case EXTENSION_DIRECTORIES: {
1423 _cleanup_free_ char *host_os_release_id = NULL, *host_os_release_version_id = NULL,
1424 *host_os_release_sysext_level = NULL, *extension_name = NULL;
1425 _cleanup_strv_free_ char **extension_release = NULL;
1426
1427 r = path_extract_filename(mount_entry_source(m), &extension_name);
1428 if (r < 0)
1429 return log_debug_errno(r, "Failed to extract extension name from %s: %m", mount_entry_source(m));
1430
1431 r = parse_os_release(
1432 empty_to_root(root_directory),
1433 "ID", &host_os_release_id,
1434 "VERSION_ID", &host_os_release_version_id,
1435 "SYSEXT_LEVEL", &host_os_release_sysext_level,
1436 NULL);
1437 if (r < 0)
1438 return log_debug_errno(r, "Failed to acquire 'os-release' data of OS tree '%s': %m", empty_to_root(root_directory));
1439 if (isempty(host_os_release_id))
1440 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "'ID' field not found or empty in 'os-release' data of OS tree '%s': %m", empty_to_root(root_directory));
1441
1442 r = load_extension_release_pairs(mount_entry_source(m), IMAGE_SYSEXT, extension_name, /* relax_extension_release_check= */ false, &extension_release);
1443 if (r == -ENOENT && m->ignore)
1444 return 0;
1445 if (r < 0)
1446 return log_debug_errno(r, "Failed to parse directory %s extension-release metadata: %m", extension_name);
1447
1448 r = extension_release_validate(
1449 extension_name,
1450 host_os_release_id,
1451 host_os_release_version_id,
1452 host_os_release_sysext_level,
1453 /* host_sysext_scope */ NULL, /* Leave empty, we need to accept both system and portable */
1454 extension_release,
1455 IMAGE_SYSEXT);
1456 if (r == 0)
1457 return log_debug_errno(SYNTHETIC_ERRNO(ESTALE), "Directory %s extension-release metadata does not match the root's", extension_name);
1458 if (r < 0)
1459 return log_debug_errno(r, "Failed to compare directory %s extension-release metadata with the root's os-release: %m", extension_name);
1460
1461 _fallthrough_;
1462 }
1463
1464 case BIND_MOUNT:
1465 rbind = false;
1466
1467 _fallthrough_;
1468 case BIND_MOUNT_RECURSIVE: {
1469 _cleanup_free_ char *chased = NULL;
1470
1471 /* Since mount() will always follow symlinks we chase the symlinks on our own first. Note
1472 * that bind mount source paths are always relative to the host root, hence we pass NULL as
1473 * root directory to chase() here. */
1474
1475 r = chase(mount_entry_source(m), NULL, CHASE_TRAIL_SLASH, &chased, NULL);
1476 if (r == -ENOENT && m->ignore) {
1477 log_debug_errno(r, "Path %s does not exist, ignoring.", mount_entry_source(m));
1478 return 0;
1479 }
1480 if (r < 0)
1481 return log_debug_errno(r, "Failed to follow symlinks on %s: %m", mount_entry_source(m));
1482
1483 log_debug("Followed source symlinks %s %s %s.",
1484 mount_entry_source(m), special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), chased);
1485
1486 free_and_replace(m->source_malloc, chased);
1487
1488 what = mount_entry_source(m);
1489 make = true;
1490 break;
1491 }
1492
1493 case EMPTY_DIR:
1494 case TMPFS:
1495 return mount_tmpfs(m);
1496
1497 case PRIVATE_TMP:
1498 case PRIVATE_TMP_READONLY:
1499 what = mount_entry_source(m);
1500 make = true;
1501 break;
1502
1503 case PRIVATE_DEV:
1504 return mount_private_dev(m);
1505
1506 case BIND_DEV:
1507 return mount_bind_dev(m);
1508
1509 case PRIVATE_SYSFS:
1510 return mount_private_sysfs(m);
1511
1512 case BIND_SYSFS:
1513 return mount_bind_sysfs(m);
1514
1515 case PROCFS:
1516 return mount_procfs(m, ns_info);
1517
1518 case RUN:
1519 return mount_run(m);
1520
1521 case MQUEUEFS:
1522 return mount_mqueuefs(m);
1523
1524 case MOUNT_IMAGES:
1525 return mount_image(m, NULL, mount_image_policy);
1526
1527 case EXTENSION_IMAGES:
1528 return mount_image(m, root_directory, extension_image_policy);
1529
1530 case OVERLAY_MOUNT:
1531 return mount_overlay(m);
1532
1533 default:
1534 assert_not_reached();
1535 }
1536
1537 assert(what);
1538
1539 r = mount_nofollow_verbose(LOG_DEBUG, what, mount_entry_path(m), NULL, MS_BIND|(rbind ? MS_REC : 0), NULL);
1540 if (r < 0) {
1541 bool try_again = false;
1542
1543 if (r == -ENOENT && make) {
1544 int q;
1545
1546 /* Hmm, either the source or the destination are missing. Let's see if we can create
1547 the destination, then try again. */
1548
1549 (void) mkdir_parents(mount_entry_path(m), 0755);
1550
1551 q = make_mount_point_inode_from_path(what, mount_entry_path(m), 0755);
1552 if (q < 0 && q != -EEXIST)
1553 log_error_errno(q, "Failed to create destination mount point node '%s': %m",
1554 mount_entry_path(m));
1555 else
1556 try_again = true;
1557 }
1558
1559 if (try_again)
1560 r = mount_nofollow_verbose(LOG_DEBUG, what, mount_entry_path(m), NULL, MS_BIND|(rbind ? MS_REC : 0), NULL);
1561 if (r < 0)
1562 return log_error_errno(r, "Failed to mount %s to %s: %m", what, mount_entry_path(m));
1563 }
1564
1565 log_debug("Successfully mounted %s to %s", what, mount_entry_path(m));
1566 return 0;
1567 }
1568
1569 static int make_read_only(const MountEntry *m, char **deny_list, FILE *proc_self_mountinfo) {
1570 unsigned long new_flags = 0, flags_mask = 0;
1571 bool submounts;
1572 int r;
1573
1574 assert(m);
1575 assert(proc_self_mountinfo);
1576
1577 if (mount_entry_read_only(m) || m->mode == PRIVATE_DEV) {
1578 new_flags |= MS_RDONLY;
1579 flags_mask |= MS_RDONLY;
1580 }
1581
1582 if (m->nosuid) {
1583 new_flags |= MS_NOSUID;
1584 flags_mask |= MS_NOSUID;
1585 }
1586
1587 if (flags_mask == 0) /* No Change? */
1588 return 0;
1589
1590 /* We generally apply these changes recursively, except for /dev, and the cases we know there's
1591 * nothing further down. Set /dev readonly, but not submounts like /dev/shm. Also, we only set the
1592 * per-mount read-only flag. We can't set it on the superblock, if we are inside a user namespace
1593 * and running Linux <= 4.17. */
1594 submounts =
1595 mount_entry_read_only(m) &&
1596 !IN_SET(m->mode, EMPTY_DIR, TMPFS);
1597 if (submounts)
1598 r = bind_remount_recursive_with_mountinfo(mount_entry_path(m), new_flags, flags_mask, deny_list, proc_self_mountinfo);
1599 else
1600 r = bind_remount_one_with_mountinfo(mount_entry_path(m), new_flags, flags_mask, proc_self_mountinfo);
1601
1602 /* Note that we only turn on the MS_RDONLY flag here, we never turn it off. Something that was marked
1603 * read-only already stays this way. This improves compatibility with container managers, where we
1604 * won't attempt to undo read-only mounts already applied. */
1605
1606 if (r == -ENOENT && m->ignore)
1607 return 0;
1608 if (r < 0)
1609 return log_debug_errno(r, "Failed to re-mount '%s'%s: %m", mount_entry_path(m),
1610 submounts ? " and its submounts" : "");
1611 return 0;
1612 }
1613
1614 static int make_noexec(const MountEntry *m, char **deny_list, FILE *proc_self_mountinfo) {
1615 unsigned long new_flags = 0, flags_mask = 0;
1616 bool submounts;
1617 int r;
1618
1619 assert(m);
1620 assert(proc_self_mountinfo);
1621
1622 if (mount_entry_noexec(m)) {
1623 new_flags |= MS_NOEXEC;
1624 flags_mask |= MS_NOEXEC;
1625 } else if (mount_entry_exec(m)) {
1626 new_flags &= ~MS_NOEXEC;
1627 flags_mask |= MS_NOEXEC;
1628 }
1629
1630 if (flags_mask == 0) /* No Change? */
1631 return 0;
1632
1633 submounts = !IN_SET(m->mode, EMPTY_DIR, TMPFS);
1634
1635 if (submounts)
1636 r = bind_remount_recursive_with_mountinfo(mount_entry_path(m), new_flags, flags_mask, deny_list, proc_self_mountinfo);
1637 else
1638 r = bind_remount_one_with_mountinfo(mount_entry_path(m), new_flags, flags_mask, proc_self_mountinfo);
1639
1640 if (r == -ENOENT && m->ignore)
1641 return 0;
1642 if (r < 0)
1643 return log_debug_errno(r, "Failed to re-mount '%s'%s: %m", mount_entry_path(m),
1644 submounts ? " and its submounts" : "");
1645 return 0;
1646 }
1647
1648 static int make_nosuid(const MountEntry *m, FILE *proc_self_mountinfo) {
1649 bool submounts;
1650 int r;
1651
1652 assert(m);
1653 assert(proc_self_mountinfo);
1654
1655 submounts = !IN_SET(m->mode, EMPTY_DIR, TMPFS);
1656
1657 if (submounts)
1658 r = bind_remount_recursive_with_mountinfo(mount_entry_path(m), MS_NOSUID, MS_NOSUID, NULL, proc_self_mountinfo);
1659 else
1660 r = bind_remount_one_with_mountinfo(mount_entry_path(m), MS_NOSUID, MS_NOSUID, proc_self_mountinfo);
1661 if (r == -ENOENT && m->ignore)
1662 return 0;
1663 if (r < 0)
1664 return log_debug_errno(r, "Failed to re-mount '%s'%s: %m", mount_entry_path(m),
1665 submounts ? " and its submounts" : "");
1666 return 0;
1667 }
1668
1669 static bool namespace_info_mount_apivfs(const NamespaceInfo *ns_info) {
1670 assert(ns_info);
1671
1672 /*
1673 * ProtectControlGroups= and ProtectKernelTunables= imply MountAPIVFS=,
1674 * since to protect the API VFS mounts, they need to be around in the
1675 * first place...
1676 */
1677
1678 return ns_info->mount_apivfs ||
1679 ns_info->protect_control_groups ||
1680 ns_info->protect_kernel_tunables ||
1681 ns_info->protect_proc != PROTECT_PROC_DEFAULT ||
1682 ns_info->proc_subset != PROC_SUBSET_ALL;
1683 }
1684
1685 static size_t namespace_calculate_mounts(
1686 const NamespaceInfo *ns_info,
1687 char** read_write_paths,
1688 char** read_only_paths,
1689 char** inaccessible_paths,
1690 char** exec_paths,
1691 char** no_exec_paths,
1692 char** empty_directories,
1693 size_t n_bind_mounts,
1694 size_t n_temporary_filesystems,
1695 size_t n_mount_images,
1696 size_t n_extension_images,
1697 size_t n_extension_directories,
1698 size_t n_hierarchies,
1699 const char* tmp_dir,
1700 const char* var_tmp_dir,
1701 const char *creds_path,
1702 const char* log_namespace,
1703 bool setup_propagate,
1704 const char* notify_socket,
1705 const char* host_os_release) {
1706
1707 size_t protect_home_cnt;
1708 size_t protect_system_cnt =
1709 (ns_info->protect_system == PROTECT_SYSTEM_STRICT ?
1710 ELEMENTSOF(protect_system_strict_table) :
1711 ((ns_info->protect_system == PROTECT_SYSTEM_FULL) ?
1712 ELEMENTSOF(protect_system_full_table) :
1713 ((ns_info->protect_system == PROTECT_SYSTEM_YES) ?
1714 ELEMENTSOF(protect_system_yes_table) : 0)));
1715
1716 protect_home_cnt =
1717 (ns_info->protect_home == PROTECT_HOME_YES ?
1718 ELEMENTSOF(protect_home_yes_table) :
1719 ((ns_info->protect_home == PROTECT_HOME_READ_ONLY) ?
1720 ELEMENTSOF(protect_home_read_only_table) :
1721 ((ns_info->protect_home == PROTECT_HOME_TMPFS) ?
1722 ELEMENTSOF(protect_home_tmpfs_table) : 0)));
1723
1724 return !!tmp_dir + !!var_tmp_dir +
1725 strv_length(read_write_paths) +
1726 strv_length(read_only_paths) +
1727 strv_length(inaccessible_paths) +
1728 strv_length(exec_paths) +
1729 strv_length(no_exec_paths) +
1730 strv_length(empty_directories) +
1731 n_bind_mounts +
1732 n_mount_images +
1733 (n_extension_images > 0 || n_extension_directories > 0 ? /* Mount each image and directory plus an overlay per hierarchy */
1734 n_hierarchies + n_extension_images + n_extension_directories: 0) +
1735 n_temporary_filesystems +
1736 ns_info->private_dev +
1737 (ns_info->protect_kernel_tunables ?
1738 ELEMENTSOF(protect_kernel_tunables_proc_table) + ELEMENTSOF(protect_kernel_tunables_sys_table) : 0) +
1739 (ns_info->protect_kernel_modules ? ELEMENTSOF(protect_kernel_modules_table) : 0) +
1740 (ns_info->protect_kernel_logs ?
1741 ELEMENTSOF(protect_kernel_logs_proc_table) + ELEMENTSOF(protect_kernel_logs_dev_table) : 0) +
1742 (ns_info->protect_control_groups ? 1 : 0) +
1743 protect_home_cnt + protect_system_cnt +
1744 (ns_info->protect_hostname ? 2 : 0) +
1745 (namespace_info_mount_apivfs(ns_info) ? ELEMENTSOF(apivfs_table) : 0) +
1746 (creds_path ? 2 : 1) +
1747 !!log_namespace +
1748 setup_propagate + /* /run/systemd/incoming */
1749 !!notify_socket +
1750 !!host_os_release +
1751 ns_info->private_network + /* /sys */
1752 ns_info->private_ipc; /* /dev/mqueue */
1753 }
1754
1755 /* Walk all mount entries and dropping any unused mounts. This affects all
1756 * mounts:
1757 * - that are implicitly protected by a path that has been rendered inaccessible
1758 * - whose immediate parent requests the same protection mode as the mount itself
1759 * - that are outside of the relevant root directory
1760 * - which are duplicates
1761 */
1762 static void drop_unused_mounts(const char *root_directory, MountEntry *mounts, size_t *n_mounts) {
1763 assert(root_directory);
1764 assert(n_mounts);
1765 assert(mounts || *n_mounts == 0);
1766
1767 typesafe_qsort(mounts, *n_mounts, mount_path_compare);
1768
1769 drop_duplicates(mounts, n_mounts);
1770 drop_outside_root(root_directory, mounts, n_mounts);
1771 drop_inaccessible(mounts, n_mounts);
1772 drop_nop(mounts, n_mounts);
1773 }
1774
1775 static int create_symlinks_from_tuples(const char *root, char **strv_symlinks) {
1776 int r;
1777
1778 STRV_FOREACH_PAIR(src, dst, strv_symlinks) {
1779 _cleanup_free_ char *src_abs = NULL, *dst_abs = NULL;
1780
1781 src_abs = path_join(root, *src);
1782 dst_abs = path_join(root, *dst);
1783 if (!src_abs || !dst_abs)
1784 return -ENOMEM;
1785
1786 r = mkdir_parents_label(dst_abs, 0755);
1787 if (r < 0)
1788 return r;
1789
1790 r = symlink_idempotent(src_abs, dst_abs, true);
1791 if (r < 0)
1792 return r;
1793 }
1794
1795 return 0;
1796 }
1797
1798 static int apply_mounts(
1799 const char *root,
1800 const ImagePolicy *mount_image_policy,
1801 const ImagePolicy *extension_image_policy,
1802 const NamespaceInfo *ns_info,
1803 MountEntry *mounts,
1804 size_t *n_mounts,
1805 char **exec_dir_symlinks,
1806 char **error_path) {
1807
1808 _cleanup_fclose_ FILE *proc_self_mountinfo = NULL;
1809 _cleanup_free_ char **deny_list = NULL;
1810 int r;
1811
1812 if (n_mounts == 0) /* Shortcut: nothing to do */
1813 return 0;
1814
1815 assert(root);
1816 assert(mounts);
1817 assert(n_mounts);
1818
1819 /* Open /proc/self/mountinfo now as it may become unavailable if we mount anything on top of
1820 * /proc. For example, this is the case with the option: 'InaccessiblePaths=/proc'. */
1821 proc_self_mountinfo = fopen("/proc/self/mountinfo", "re");
1822 if (!proc_self_mountinfo) {
1823 r = -errno;
1824
1825 if (error_path)
1826 *error_path = strdup("/proc/self/mountinfo");
1827
1828 return log_debug_errno(r, "Failed to open /proc/self/mountinfo: %m");
1829 }
1830
1831 /* First round, establish all mounts we need */
1832 for (;;) {
1833 bool again = false;
1834
1835 for (MountEntry *m = mounts; m < mounts + *n_mounts; ++m) {
1836
1837 if (m->applied)
1838 continue;
1839
1840 /* ExtensionImages/Directories are first opened in the propagate directory, not in the root_directory */
1841 r = follow_symlink(!IN_SET(m->mode, EXTENSION_IMAGES, EXTENSION_DIRECTORIES) ? root : NULL, m);
1842 if (r < 0) {
1843 if (error_path && mount_entry_path(m))
1844 *error_path = strdup(mount_entry_path(m));
1845 return r;
1846 }
1847 if (r == 0) {
1848 /* We hit a symlinked mount point. The entry got rewritten and might
1849 * point to a very different place now. Let's normalize the changed
1850 * list, and start from the beginning. After all to mount the entry
1851 * at the new location we might need some other mounts first */
1852 again = true;
1853 break;
1854 }
1855
1856 r = apply_one_mount(root, m, mount_image_policy, extension_image_policy, ns_info);
1857 if (r < 0) {
1858 if (error_path && mount_entry_path(m))
1859 *error_path = strdup(mount_entry_path(m));
1860 return r;
1861 }
1862
1863 m->applied = true;
1864 }
1865
1866 if (!again)
1867 break;
1868
1869 drop_unused_mounts(root, mounts, n_mounts);
1870 }
1871
1872 /* Now that all filesystems have been set up, but before the
1873 * read-only switches are flipped, create the exec dirs symlinks.
1874 * Note that when /var/lib is not empty/tmpfs, these symlinks will already
1875 * exist, which means this will be a no-op. */
1876 r = create_symlinks_from_tuples(root, exec_dir_symlinks);
1877 if (r < 0)
1878 return log_debug_errno(r, "Failed to set up ExecDirectories symlinks inside mount namespace: %m");
1879
1880 /* Create a deny list we can pass to bind_mount_recursive() */
1881 deny_list = new(char*, (*n_mounts)+1);
1882 if (!deny_list)
1883 return -ENOMEM;
1884 for (size_t j = 0; j < *n_mounts; j++)
1885 deny_list[j] = (char*) mount_entry_path(mounts+j);
1886 deny_list[*n_mounts] = NULL;
1887
1888 /* Second round, flip the ro bits if necessary. */
1889 for (MountEntry *m = mounts; m < mounts + *n_mounts; ++m) {
1890 r = make_read_only(m, deny_list, proc_self_mountinfo);
1891 if (r < 0) {
1892 if (error_path && mount_entry_path(m))
1893 *error_path = strdup(mount_entry_path(m));
1894 return r;
1895 }
1896 }
1897
1898 /* Third round, flip the noexec bits with a simplified deny list. */
1899 for (size_t j = 0; j < *n_mounts; j++)
1900 if (IN_SET((mounts+j)->mode, EXEC, NOEXEC))
1901 deny_list[j] = (char*) mount_entry_path(mounts+j);
1902 deny_list[*n_mounts] = NULL;
1903
1904 for (MountEntry *m = mounts; m < mounts + *n_mounts; ++m) {
1905 r = make_noexec(m, deny_list, proc_self_mountinfo);
1906 if (r < 0) {
1907 if (error_path && mount_entry_path(m))
1908 *error_path = strdup(mount_entry_path(m));
1909 return r;
1910 }
1911 }
1912
1913 /* Fourth round, flip the nosuid bits without a deny list. */
1914 if (ns_info->mount_nosuid)
1915 for (MountEntry *m = mounts; m < mounts + *n_mounts; ++m) {
1916 r = make_nosuid(m, proc_self_mountinfo);
1917 if (r < 0) {
1918 if (error_path && mount_entry_path(m))
1919 *error_path = strdup(mount_entry_path(m));
1920 return r;
1921 }
1922 }
1923
1924 return 1;
1925 }
1926
1927 static bool root_read_only(
1928 char **read_only_paths,
1929 ProtectSystem protect_system) {
1930
1931 /* Determine whether the root directory is going to be read-only given the configured settings. */
1932
1933 if (protect_system == PROTECT_SYSTEM_STRICT)
1934 return true;
1935
1936 if (prefixed_path_strv_contains(read_only_paths, "/"))
1937 return true;
1938
1939 return false;
1940 }
1941
1942 static bool home_read_only(
1943 char** read_only_paths,
1944 char** inaccessible_paths,
1945 char** empty_directories,
1946 const BindMount *bind_mounts,
1947 size_t n_bind_mounts,
1948 const TemporaryFileSystem *temporary_filesystems,
1949 size_t n_temporary_filesystems,
1950 ProtectHome protect_home) {
1951
1952 /* Determine whether the /home directory is going to be read-only given the configured settings. Yes,
1953 * this is a bit sloppy, since we don't bother checking for cases where / is affected by multiple
1954 * settings. */
1955
1956 if (protect_home != PROTECT_HOME_NO)
1957 return true;
1958
1959 if (prefixed_path_strv_contains(read_only_paths, "/home") ||
1960 prefixed_path_strv_contains(inaccessible_paths, "/home") ||
1961 prefixed_path_strv_contains(empty_directories, "/home"))
1962 return true;
1963
1964 for (size_t i = 0; i < n_temporary_filesystems; i++)
1965 if (path_equal(temporary_filesystems[i].path, "/home"))
1966 return true;
1967
1968 /* If /home is overmounted with some dir from the host it's not writable. */
1969 for (size_t i = 0; i < n_bind_mounts; i++)
1970 if (path_equal(bind_mounts[i].destination, "/home"))
1971 return true;
1972
1973 return false;
1974 }
1975
1976 int setup_namespace(
1977 const char* root_directory,
1978 const char* root_image,
1979 const MountOptions *root_image_mount_options,
1980 const ImagePolicy *root_image_policy,
1981 const NamespaceInfo *ns_info,
1982 char** read_write_paths,
1983 char** read_only_paths,
1984 char** inaccessible_paths,
1985 char** exec_paths,
1986 char** no_exec_paths,
1987 char** empty_directories,
1988 char** exec_dir_symlinks,
1989 const BindMount *bind_mounts,
1990 size_t n_bind_mounts,
1991 const TemporaryFileSystem *temporary_filesystems,
1992 size_t n_temporary_filesystems,
1993 const MountImage *mount_images,
1994 size_t n_mount_images,
1995 const ImagePolicy *mount_image_policy,
1996 const char* tmp_dir,
1997 const char* var_tmp_dir,
1998 const char *creds_path,
1999 const char *log_namespace,
2000 unsigned long mount_propagation_flag,
2001 VeritySettings *verity,
2002 const MountImage *extension_images,
2003 size_t n_extension_images,
2004 const ImagePolicy *extension_image_policy,
2005 char **extension_directories,
2006 const char *propagate_dir,
2007 const char *incoming_dir,
2008 const char *extension_dir,
2009 const char *notify_socket,
2010 const char *host_os_release,
2011 char **error_path) {
2012
2013 _cleanup_(loop_device_unrefp) LoopDevice *loop_device = NULL;
2014 _cleanup_(dissected_image_unrefp) DissectedImage *dissected_image = NULL;
2015 _cleanup_strv_free_ char **hierarchies = NULL;
2016 MountEntry *m = NULL, *mounts = NULL;
2017 bool require_prefix = false, setup_propagate = false;
2018 const char *root;
2019 DissectImageFlags dissect_image_flags =
2020 DISSECT_IMAGE_GENERIC_ROOT |
2021 DISSECT_IMAGE_REQUIRE_ROOT |
2022 DISSECT_IMAGE_DISCARD_ON_LOOP |
2023 DISSECT_IMAGE_RELAX_VAR_CHECK |
2024 DISSECT_IMAGE_FSCK |
2025 DISSECT_IMAGE_USR_NO_ROOT |
2026 DISSECT_IMAGE_GROWFS |
2027 DISSECT_IMAGE_ADD_PARTITION_DEVICES |
2028 DISSECT_IMAGE_PIN_PARTITION_DEVICES;
2029 size_t n_mounts;
2030 int r;
2031
2032 assert(ns_info);
2033
2034 /* Make sure that all mknod(), mkdir() calls we do are unaffected by the umask, and the access modes
2035 * we configure take effect */
2036 BLOCK_WITH_UMASK(0000);
2037
2038 if (!isempty(propagate_dir) && !isempty(incoming_dir))
2039 setup_propagate = true;
2040
2041 if (mount_propagation_flag == 0)
2042 mount_propagation_flag = MS_SHARED;
2043
2044 if (root_image) {
2045 /* Make the whole image read-only if we can determine that we only access it in a read-only fashion. */
2046 if (root_read_only(read_only_paths,
2047 ns_info->protect_system) &&
2048 home_read_only(read_only_paths, inaccessible_paths, empty_directories,
2049 bind_mounts, n_bind_mounts, temporary_filesystems, n_temporary_filesystems,
2050 ns_info->protect_home) &&
2051 strv_isempty(read_write_paths))
2052 dissect_image_flags |= DISSECT_IMAGE_READ_ONLY;
2053
2054 SET_FLAG(dissect_image_flags, DISSECT_IMAGE_NO_PARTITION_TABLE, verity && verity->data_path);
2055
2056 r = loop_device_make_by_path(
2057 root_image,
2058 FLAGS_SET(dissect_image_flags, DISSECT_IMAGE_DEVICE_READ_ONLY) ? O_RDONLY : -1 /* < 0 means writable if possible, read-only as fallback */,
2059 /* sector_size= */ UINT32_MAX,
2060 FLAGS_SET(dissect_image_flags, DISSECT_IMAGE_NO_PARTITION_TABLE) ? 0 : LO_FLAGS_PARTSCAN,
2061 LOCK_SH,
2062 &loop_device);
2063 if (r < 0)
2064 return log_debug_errno(r, "Failed to create loop device for root image: %m");
2065
2066 r = dissect_loop_device(
2067 loop_device,
2068 verity,
2069 root_image_mount_options,
2070 root_image_policy,
2071 dissect_image_flags,
2072 &dissected_image);
2073 if (r < 0)
2074 return log_debug_errno(r, "Failed to dissect image: %m");
2075
2076 r = dissected_image_load_verity_sig_partition(
2077 dissected_image,
2078 loop_device->fd,
2079 verity);
2080 if (r < 0)
2081 return r;
2082
2083 r = dissected_image_decrypt(
2084 dissected_image,
2085 NULL,
2086 verity,
2087 dissect_image_flags);
2088 if (r < 0)
2089 return log_debug_errno(r, "Failed to decrypt dissected image: %m");
2090 }
2091
2092 if (root_directory)
2093 root = root_directory;
2094 else {
2095 /* /run/systemd should have been created by PID 1 early on already, but in some cases, like
2096 * when running tests (test-execute), it might not have been created yet so let's make sure
2097 * we create it if it doesn't already exist. */
2098 (void) mkdir_p_label("/run/systemd", 0755);
2099
2100 /* Always create the mount namespace in a temporary directory, instead of operating directly
2101 * in the root. The temporary directory prevents any mounts from being potentially obscured
2102 * my other mounts we already applied. We use the same mount point for all images, which is
2103 * safe, since they all live in their own namespaces after all, and hence won't see each
2104 * other. (Note: this directory is also created by PID 1 early on, we create it here for
2105 * similar reasons as /run/systemd/ first.) */
2106 root = "/run/systemd/mount-rootfs";
2107 (void) mkdir_label(root, 0555);
2108
2109 require_prefix = true;
2110 }
2111
2112 if (n_extension_images > 0 || !strv_isempty(extension_directories)) {
2113 r = parse_env_extension_hierarchies(&hierarchies, "SYSTEMD_SYSEXT_HIERARCHIES");
2114 if (r < 0)
2115 return r;
2116 }
2117
2118 n_mounts = namespace_calculate_mounts(
2119 ns_info,
2120 read_write_paths,
2121 read_only_paths,
2122 inaccessible_paths,
2123 exec_paths,
2124 no_exec_paths,
2125 empty_directories,
2126 n_bind_mounts,
2127 n_temporary_filesystems,
2128 n_mount_images,
2129 n_extension_images,
2130 strv_length(extension_directories),
2131 strv_length(hierarchies),
2132 tmp_dir, var_tmp_dir,
2133 creds_path,
2134 log_namespace,
2135 setup_propagate,
2136 notify_socket,
2137 host_os_release);
2138
2139 if (n_mounts > 0) {
2140 m = mounts = new0(MountEntry, n_mounts);
2141 if (!mounts)
2142 return -ENOMEM;
2143
2144 r = append_access_mounts(&m, read_write_paths, READWRITE, require_prefix);
2145 if (r < 0)
2146 goto finish;
2147
2148 r = append_access_mounts(&m, read_only_paths, READONLY, require_prefix);
2149 if (r < 0)
2150 goto finish;
2151
2152 r = append_access_mounts(&m, inaccessible_paths, INACCESSIBLE, require_prefix);
2153 if (r < 0)
2154 goto finish;
2155
2156 r = append_access_mounts(&m, exec_paths, EXEC, require_prefix);
2157 if (r < 0)
2158 goto finish;
2159
2160 r = append_access_mounts(&m, no_exec_paths, NOEXEC, require_prefix);
2161 if (r < 0)
2162 goto finish;
2163
2164 r = append_empty_dir_mounts(&m, empty_directories);
2165 if (r < 0)
2166 goto finish;
2167
2168 r = append_bind_mounts(&m, bind_mounts, n_bind_mounts);
2169 if (r < 0)
2170 goto finish;
2171
2172 r = append_tmpfs_mounts(&m, temporary_filesystems, n_temporary_filesystems);
2173 if (r < 0)
2174 goto finish;
2175
2176 if (tmp_dir) {
2177 bool ro = streq(tmp_dir, RUN_SYSTEMD_EMPTY);
2178
2179 *(m++) = (MountEntry) {
2180 .path_const = "/tmp",
2181 .mode = ro ? PRIVATE_TMP_READONLY : PRIVATE_TMP,
2182 .source_const = tmp_dir,
2183 };
2184 }
2185
2186 if (var_tmp_dir) {
2187 bool ro = streq(var_tmp_dir, RUN_SYSTEMD_EMPTY);
2188
2189 *(m++) = (MountEntry) {
2190 .path_const = "/var/tmp",
2191 .mode = ro ? PRIVATE_TMP_READONLY : PRIVATE_TMP,
2192 .source_const = var_tmp_dir,
2193 };
2194 }
2195
2196 r = append_mount_images(&m, mount_images, n_mount_images);
2197 if (r < 0)
2198 goto finish;
2199
2200 r = append_extensions(&m, root, extension_dir, hierarchies, extension_images, n_extension_images, extension_directories);
2201 if (r < 0)
2202 goto finish;
2203
2204 if (ns_info->private_dev)
2205 *(m++) = (MountEntry) {
2206 .path_const = "/dev",
2207 .mode = PRIVATE_DEV,
2208 .flags = DEV_MOUNT_OPTIONS,
2209 };
2210
2211 /* In case /proc is successfully mounted with pid tree subset only (ProcSubset=pid), the
2212 protective mounts to non-pid /proc paths would fail. But the pid only option may have
2213 failed gracefully, so let's try the mounts but it's not fatal if they don't succeed. */
2214 bool ignore_protect_proc = ns_info->ignore_protect_paths || ns_info->proc_subset == PROC_SUBSET_PID;
2215 if (ns_info->protect_kernel_tunables) {
2216 r = append_static_mounts(&m,
2217 protect_kernel_tunables_proc_table,
2218 ELEMENTSOF(protect_kernel_tunables_proc_table),
2219 ignore_protect_proc);
2220 if (r < 0)
2221 goto finish;
2222
2223 r = append_static_mounts(&m,
2224 protect_kernel_tunables_sys_table,
2225 ELEMENTSOF(protect_kernel_tunables_sys_table),
2226 ns_info->ignore_protect_paths);
2227 if (r < 0)
2228 goto finish;
2229 }
2230
2231 if (ns_info->protect_kernel_modules) {
2232 r = append_static_mounts(&m,
2233 protect_kernel_modules_table,
2234 ELEMENTSOF(protect_kernel_modules_table),
2235 ns_info->ignore_protect_paths);
2236 if (r < 0)
2237 goto finish;
2238 }
2239
2240 if (ns_info->protect_kernel_logs) {
2241 r = append_static_mounts(&m,
2242 protect_kernel_logs_proc_table,
2243 ELEMENTSOF(protect_kernel_logs_proc_table),
2244 ignore_protect_proc);
2245 if (r < 0)
2246 goto finish;
2247
2248 r = append_static_mounts(&m,
2249 protect_kernel_logs_dev_table,
2250 ELEMENTSOF(protect_kernel_logs_dev_table),
2251 ns_info->ignore_protect_paths);
2252 if (r < 0)
2253 goto finish;
2254 }
2255
2256 if (ns_info->protect_control_groups)
2257 *(m++) = (MountEntry) {
2258 .path_const = "/sys/fs/cgroup",
2259 .mode = READONLY,
2260 };
2261
2262 r = append_protect_home(&m, ns_info->protect_home, ns_info->ignore_protect_paths);
2263 if (r < 0)
2264 goto finish;
2265
2266 r = append_protect_system(&m, ns_info->protect_system, false);
2267 if (r < 0)
2268 goto finish;
2269
2270 if (namespace_info_mount_apivfs(ns_info)) {
2271 r = append_static_mounts(&m,
2272 apivfs_table,
2273 ELEMENTSOF(apivfs_table),
2274 ns_info->ignore_protect_paths);
2275 if (r < 0)
2276 goto finish;
2277 }
2278
2279 /* Note, if proc is mounted with subset=pid then neither of the
2280 * two paths will exist, i.e. they are implicitly protected by
2281 * the mount option. */
2282 if (ns_info->protect_hostname) {
2283 *(m++) = (MountEntry) {
2284 .path_const = "/proc/sys/kernel/hostname",
2285 .mode = READONLY,
2286 .ignore = ignore_protect_proc,
2287 };
2288 *(m++) = (MountEntry) {
2289 .path_const = "/proc/sys/kernel/domainname",
2290 .mode = READONLY,
2291 .ignore = ignore_protect_proc,
2292 };
2293 }
2294
2295 if (ns_info->private_network)
2296 *(m++) = (MountEntry) {
2297 .path_const = "/sys",
2298 .mode = PRIVATE_SYSFS,
2299 };
2300
2301 if (ns_info->private_ipc)
2302 *(m++) = (MountEntry) {
2303 .path_const = "/dev/mqueue",
2304 .mode = MQUEUEFS,
2305 .flags = MS_NOSUID | MS_NODEV | MS_NOEXEC | MS_RELATIME,
2306 };
2307
2308 if (creds_path) {
2309 /* If our service has a credentials store configured, then bind that one in, but hide
2310 * everything else. */
2311
2312 *(m++) = (MountEntry) {
2313 .path_const = "/run/credentials",
2314 .mode = TMPFS,
2315 .read_only = true,
2316 .options_const = "mode=0755" TMPFS_LIMITS_EMPTY_OR_ALMOST,
2317 .flags = MS_NODEV|MS_STRICTATIME|MS_NOSUID|MS_NOEXEC,
2318 };
2319
2320 *(m++) = (MountEntry) {
2321 .path_const = creds_path,
2322 .mode = BIND_MOUNT,
2323 .read_only = true,
2324 .source_const = creds_path,
2325 .ignore = true,
2326 };
2327 } else {
2328 /* If our service has no credentials store configured, then make the whole
2329 * credentials tree inaccessible wholesale. */
2330
2331 *(m++) = (MountEntry) {
2332 .path_const = "/run/credentials",
2333 .mode = INACCESSIBLE,
2334 .ignore = true,
2335 };
2336 }
2337
2338 if (log_namespace) {
2339 _cleanup_free_ char *q = NULL;
2340
2341 q = strjoin("/run/systemd/journal.", log_namespace);
2342 if (!q) {
2343 r = -ENOMEM;
2344 goto finish;
2345 }
2346
2347 *(m++) = (MountEntry) {
2348 .path_const = "/run/systemd/journal",
2349 .mode = BIND_MOUNT_RECURSIVE,
2350 .read_only = true,
2351 .source_malloc = TAKE_PTR(q),
2352 };
2353 }
2354
2355 /* Will be used to add bind mounts at runtime */
2356 if (setup_propagate)
2357 *(m++) = (MountEntry) {
2358 .source_const = propagate_dir,
2359 .path_const = incoming_dir,
2360 .mode = BIND_MOUNT,
2361 .read_only = true,
2362 };
2363
2364 if (notify_socket)
2365 *(m++) = (MountEntry) {
2366 .path_const = notify_socket,
2367 .source_const = notify_socket,
2368 .mode = BIND_MOUNT,
2369 .read_only = true,
2370 };
2371
2372 if (host_os_release)
2373 *(m++) = (MountEntry) {
2374 .path_const = "/run/host/os-release",
2375 .source_const = host_os_release,
2376 .mode = BIND_MOUNT,
2377 .read_only = true,
2378 .ignore = true, /* Live copy, don't hard-fail if it goes missing */
2379 };
2380
2381 assert(mounts + n_mounts == m);
2382
2383 /* Prepend the root directory where that's necessary */
2384 r = prefix_where_needed(mounts, n_mounts, root);
2385 if (r < 0)
2386 goto finish;
2387
2388 drop_unused_mounts(root, mounts, &n_mounts);
2389 }
2390
2391 /* All above is just preparation, figuring out what to do. Let's now actually start doing something. */
2392
2393 if (unshare(CLONE_NEWNS) < 0) {
2394 r = log_debug_errno(errno, "Failed to unshare the mount namespace: %m");
2395 if (ERRNO_IS_PRIVILEGE(r) ||
2396 ERRNO_IS_NOT_SUPPORTED(r))
2397 /* If the kernel doesn't support namespaces, or when there's a MAC or seccomp filter
2398 * in place that doesn't allow us to create namespaces (or a missing cap), then
2399 * propagate a recognizable error back, which the caller can use to detect this case
2400 * (and only this) and optionally continue without namespacing applied. */
2401 r = -ENOANO;
2402
2403 goto finish;
2404 }
2405
2406 /* Create the source directory to allow runtime propagation of mounts */
2407 if (setup_propagate)
2408 (void) mkdir_p(propagate_dir, 0600);
2409
2410 if (n_extension_images > 0 || !strv_isempty(extension_directories))
2411 /* ExtensionImages/Directories mountpoint directories will be created while parsing the
2412 * mounts to create, so have the parent ready */
2413 (void) mkdir_p(extension_dir, 0600);
2414
2415 /* Remount / as SLAVE so that nothing now mounted in the namespace
2416 * shows up in the parent */
2417 if (mount(NULL, "/", NULL, MS_SLAVE|MS_REC, NULL) < 0) {
2418 r = log_debug_errno(errno, "Failed to remount '/' as SLAVE: %m");
2419 goto finish;
2420 }
2421
2422 if (root_image) {
2423 /* A root image is specified, mount it to the right place */
2424 r = dissected_image_mount(dissected_image, root, UID_INVALID, UID_INVALID, dissect_image_flags);
2425 if (r < 0) {
2426 log_debug_errno(r, "Failed to mount root image: %m");
2427 goto finish;
2428 }
2429
2430 /* Now release the block device lock, so that udevd is free to call BLKRRPART on the device
2431 * if it likes. */
2432 r = loop_device_flock(loop_device, LOCK_UN);
2433 if (r < 0) {
2434 log_debug_errno(r, "Failed to release lock on loopback block device: %m");
2435 goto finish;
2436 }
2437
2438 r = dissected_image_relinquish(dissected_image);
2439 if (r < 0) {
2440 log_debug_errno(r, "Failed to relinquish dissected image: %m");
2441 goto finish;
2442 }
2443
2444 } else if (root_directory) {
2445
2446 /* A root directory is specified. Turn its directory into bind mount, if it isn't one yet. */
2447 r = path_is_mount_point(root, NULL, AT_SYMLINK_FOLLOW);
2448 if (r < 0) {
2449 log_debug_errno(r, "Failed to detect that %s is a mount point or not: %m", root);
2450 goto finish;
2451 }
2452 if (r == 0) {
2453 r = mount_nofollow_verbose(LOG_DEBUG, root, root, NULL, MS_BIND|MS_REC, NULL);
2454 if (r < 0)
2455 goto finish;
2456 }
2457
2458 } else {
2459 /* Let's mount the main root directory to the root directory to use */
2460 r = mount_nofollow_verbose(LOG_DEBUG, "/", root, NULL, MS_BIND|MS_REC, NULL);
2461 if (r < 0)
2462 goto finish;
2463 }
2464
2465 /* Try to set up the new root directory before mounting anything else there. */
2466 if (root_image || root_directory)
2467 (void) base_filesystem_create(root, UID_INVALID, GID_INVALID);
2468
2469 /* Now make the magic happen */
2470 r = apply_mounts(root, mount_image_policy, extension_image_policy, ns_info, mounts, &n_mounts, exec_dir_symlinks, error_path);
2471 if (r < 0)
2472 goto finish;
2473
2474 /* MS_MOVE does not work on MS_SHARED so the remount MS_SHARED will be done later */
2475 r = mount_switch_root(root, /* mount_propagation_flag = */ 0);
2476 if (r == -EINVAL && root_directory) {
2477 /* If we are using root_directory and we don't have privileges (ie: user manager in a user
2478 * namespace) and the root_directory is already a mount point in the parent namespace,
2479 * MS_MOVE will fail as we don't have permission to change it (with EINVAL rather than
2480 * EPERM). Attempt to bind-mount it over itself (like we do above if it's not already a
2481 * mount point) and try again. */
2482 r = mount_nofollow_verbose(LOG_DEBUG, root, root, NULL, MS_BIND|MS_REC, NULL);
2483 if (r < 0)
2484 goto finish;
2485 r = mount_switch_root(root, /* mount_propagation_flag = */ 0);
2486 }
2487 if (r < 0) {
2488 log_debug_errno(r, "Failed to mount root with MS_MOVE: %m");
2489 goto finish;
2490 }
2491
2492 /* Remount / as the desired mode. Note that this will not reestablish propagation from our side to
2493 * the host, since what's disconnected is disconnected. */
2494 if (mount(NULL, "/", NULL, mount_propagation_flag | MS_REC, NULL) < 0) {
2495 r = log_debug_errno(errno, "Failed to remount '/' with desired mount flags: %m");
2496 goto finish;
2497 }
2498
2499 /* bind_mount_in_namespace() will MS_MOVE into that directory, and that's only
2500 * supported for non-shared mounts. This needs to happen after remounting / or it will fail. */
2501 if (setup_propagate) {
2502 r = mount(NULL, incoming_dir, NULL, MS_SLAVE, NULL);
2503 if (r < 0) {
2504 log_error_errno(r, "Failed to remount %s with MS_SLAVE: %m", incoming_dir);
2505 goto finish;
2506 }
2507 }
2508
2509 r = 0;
2510
2511 finish:
2512 if (n_mounts > 0)
2513 for (m = mounts; m < mounts + n_mounts; m++)
2514 mount_entry_done(m);
2515
2516 free(mounts);
2517
2518 return r;
2519 }
2520
2521 void bind_mount_free_many(BindMount *b, size_t n) {
2522 assert(b || n == 0);
2523
2524 for (size_t i = 0; i < n; i++) {
2525 free(b[i].source);
2526 free(b[i].destination);
2527 }
2528
2529 free(b);
2530 }
2531
2532 int bind_mount_add(BindMount **b, size_t *n, const BindMount *item) {
2533 _cleanup_free_ char *s = NULL, *d = NULL;
2534 BindMount *c;
2535
2536 assert(b);
2537 assert(n);
2538 assert(item);
2539
2540 s = strdup(item->source);
2541 if (!s)
2542 return -ENOMEM;
2543
2544 d = strdup(item->destination);
2545 if (!d)
2546 return -ENOMEM;
2547
2548 c = reallocarray(*b, *n + 1, sizeof(BindMount));
2549 if (!c)
2550 return -ENOMEM;
2551
2552 *b = c;
2553
2554 c[(*n) ++] = (BindMount) {
2555 .source = TAKE_PTR(s),
2556 .destination = TAKE_PTR(d),
2557 .read_only = item->read_only,
2558 .nosuid = item->nosuid,
2559 .recursive = item->recursive,
2560 .ignore_enoent = item->ignore_enoent,
2561 };
2562
2563 return 0;
2564 }
2565
2566 MountImage* mount_image_free_many(MountImage *m, size_t *n) {
2567 assert(n);
2568 assert(m || *n == 0);
2569
2570 for (size_t i = 0; i < *n; i++) {
2571 free(m[i].source);
2572 free(m[i].destination);
2573 mount_options_free_all(m[i].mount_options);
2574 }
2575
2576 free(m);
2577 *n = 0;
2578 return NULL;
2579 }
2580
2581 int mount_image_add(MountImage **m, size_t *n, const MountImage *item) {
2582 _cleanup_free_ char *s = NULL, *d = NULL;
2583 _cleanup_(mount_options_free_allp) MountOptions *options = NULL;
2584 MountImage *c;
2585
2586 assert(m);
2587 assert(n);
2588 assert(item);
2589
2590 s = strdup(item->source);
2591 if (!s)
2592 return -ENOMEM;
2593
2594 if (item->destination) {
2595 d = strdup(item->destination);
2596 if (!d)
2597 return -ENOMEM;
2598 }
2599
2600 LIST_FOREACH(mount_options, i, item->mount_options) {
2601 _cleanup_(mount_options_free_allp) MountOptions *o = NULL;
2602
2603 o = new(MountOptions, 1);
2604 if (!o)
2605 return -ENOMEM;
2606
2607 *o = (MountOptions) {
2608 .partition_designator = i->partition_designator,
2609 .options = strdup(i->options),
2610 };
2611 if (!o->options)
2612 return -ENOMEM;
2613
2614 LIST_APPEND(mount_options, options, TAKE_PTR(o));
2615 }
2616
2617 c = reallocarray(*m, *n + 1, sizeof(MountImage));
2618 if (!c)
2619 return -ENOMEM;
2620
2621 *m = c;
2622
2623 c[(*n) ++] = (MountImage) {
2624 .source = TAKE_PTR(s),
2625 .destination = TAKE_PTR(d),
2626 .mount_options = TAKE_PTR(options),
2627 .ignore_enoent = item->ignore_enoent,
2628 .type = item->type,
2629 };
2630
2631 return 0;
2632 }
2633
2634 void temporary_filesystem_free_many(TemporaryFileSystem *t, size_t n) {
2635 assert(t || n == 0);
2636
2637 for (size_t i = 0; i < n; i++) {
2638 free(t[i].path);
2639 free(t[i].options);
2640 }
2641
2642 free(t);
2643 }
2644
2645 int temporary_filesystem_add(
2646 TemporaryFileSystem **t,
2647 size_t *n,
2648 const char *path,
2649 const char *options) {
2650
2651 _cleanup_free_ char *p = NULL, *o = NULL;
2652 TemporaryFileSystem *c;
2653
2654 assert(t);
2655 assert(n);
2656 assert(path);
2657
2658 p = strdup(path);
2659 if (!p)
2660 return -ENOMEM;
2661
2662 if (!isempty(options)) {
2663 o = strdup(options);
2664 if (!o)
2665 return -ENOMEM;
2666 }
2667
2668 c = reallocarray(*t, *n + 1, sizeof(TemporaryFileSystem));
2669 if (!c)
2670 return -ENOMEM;
2671
2672 *t = c;
2673
2674 c[(*n) ++] = (TemporaryFileSystem) {
2675 .path = TAKE_PTR(p),
2676 .options = TAKE_PTR(o),
2677 };
2678
2679 return 0;
2680 }
2681
2682 static int make_tmp_prefix(const char *prefix) {
2683 _cleanup_free_ char *t = NULL;
2684 _cleanup_close_ int fd = -EBADF;
2685 int r;
2686
2687 /* Don't do anything unless we know the dir is actually missing */
2688 r = access(prefix, F_OK);
2689 if (r >= 0)
2690 return 0;
2691 if (errno != ENOENT)
2692 return -errno;
2693
2694 WITH_UMASK(000)
2695 r = mkdir_parents(prefix, 0755);
2696 if (r < 0)
2697 return r;
2698
2699 r = tempfn_random(prefix, NULL, &t);
2700 if (r < 0)
2701 return r;
2702
2703 /* umask will corrupt this access mode, but that doesn't matter, we need to call chmod() anyway for
2704 * the suid bit, below. */
2705 fd = open_mkdir_at(AT_FDCWD, t, O_EXCL|O_CLOEXEC, 0777);
2706 if (fd < 0)
2707 return fd;
2708
2709 r = RET_NERRNO(fchmod(fd, 01777));
2710 if (r < 0) {
2711 (void) rmdir(t);
2712 return r;
2713 }
2714
2715 r = RET_NERRNO(rename(t, prefix));
2716 if (r < 0) {
2717 (void) rmdir(t);
2718 return r == -EEXIST ? 0 : r; /* it's fine if someone else created the dir by now */
2719 }
2720
2721 return 0;
2722
2723 }
2724
2725 static int setup_one_tmp_dir(const char *id, const char *prefix, char **path, char **tmp_path) {
2726 _cleanup_free_ char *x = NULL;
2727 _cleanup_free_ char *y = NULL;
2728 sd_id128_t boot_id;
2729 bool rw = true;
2730 int r;
2731
2732 assert(id);
2733 assert(prefix);
2734 assert(path);
2735
2736 /* We include the boot id in the directory so that after a
2737 * reboot we can easily identify obsolete directories. */
2738
2739 r = sd_id128_get_boot(&boot_id);
2740 if (r < 0)
2741 return r;
2742
2743 x = strjoin(prefix, "/systemd-private-", SD_ID128_TO_STRING(boot_id), "-", id, "-XXXXXX");
2744 if (!x)
2745 return -ENOMEM;
2746
2747 r = make_tmp_prefix(prefix);
2748 if (r < 0)
2749 return r;
2750
2751 WITH_UMASK(0077)
2752 if (!mkdtemp(x)) {
2753 if (errno == EROFS || ERRNO_IS_DISK_SPACE(errno))
2754 rw = false;
2755 else
2756 return -errno;
2757 }
2758
2759 if (rw) {
2760 y = strjoin(x, "/tmp");
2761 if (!y)
2762 return -ENOMEM;
2763
2764 WITH_UMASK(0000)
2765 if (mkdir(y, 0777 | S_ISVTX) < 0)
2766 return -errno;
2767
2768 r = label_fix_full(AT_FDCWD, y, prefix, 0);
2769 if (r < 0)
2770 return r;
2771
2772 if (tmp_path)
2773 *tmp_path = TAKE_PTR(y);
2774 } else {
2775 /* Trouble: we failed to create the directory. Instead of failing, let's simulate /tmp being
2776 * read-only. This way the service will get the EROFS result as if it was writing to the real
2777 * file system. */
2778 WITH_UMASK(0000)
2779 r = mkdir_p(RUN_SYSTEMD_EMPTY, 0500);
2780 if (r < 0)
2781 return r;
2782
2783 r = free_and_strdup(&x, RUN_SYSTEMD_EMPTY);
2784 if (r < 0)
2785 return r;
2786 }
2787
2788 *path = TAKE_PTR(x);
2789 return 0;
2790 }
2791
2792 int setup_tmp_dirs(const char *id, char **tmp_dir, char **var_tmp_dir) {
2793 _cleanup_(namespace_cleanup_tmpdirp) char *a = NULL;
2794 _cleanup_(rmdir_and_freep) char *a_tmp = NULL;
2795 char *b;
2796 int r;
2797
2798 assert(id);
2799 assert(tmp_dir);
2800 assert(var_tmp_dir);
2801
2802 r = setup_one_tmp_dir(id, "/tmp", &a, &a_tmp);
2803 if (r < 0)
2804 return r;
2805
2806 r = setup_one_tmp_dir(id, "/var/tmp", &b, NULL);
2807 if (r < 0)
2808 return r;
2809
2810 a_tmp = mfree(a_tmp); /* avoid rmdir */
2811 *tmp_dir = TAKE_PTR(a);
2812 *var_tmp_dir = TAKE_PTR(b);
2813
2814 return 0;
2815 }
2816
2817 int setup_shareable_ns(int ns_storage_socket[static 2], unsigned long nsflag) {
2818 _cleanup_close_ int ns = -EBADF;
2819 int r;
2820 const char *ns_name, *ns_path;
2821
2822 assert(ns_storage_socket);
2823 assert(ns_storage_socket[0] >= 0);
2824 assert(ns_storage_socket[1] >= 0);
2825
2826 ns_name = namespace_single_flag_to_string(nsflag);
2827 assert(ns_name);
2828
2829 /* We use the passed socketpair as a storage buffer for our
2830 * namespace reference fd. Whatever process runs this first
2831 * shall create a new namespace, all others should just join
2832 * it. To serialize that we use a file lock on the socket
2833 * pair.
2834 *
2835 * It's a bit crazy, but hey, works great! */
2836
2837 r = posix_lock(ns_storage_socket[0], LOCK_EX);
2838 if (r < 0)
2839 return r;
2840
2841 CLEANUP_POSIX_UNLOCK(ns_storage_socket[0]);
2842
2843 ns = receive_one_fd(ns_storage_socket[0], MSG_PEEK|MSG_DONTWAIT);
2844 if (ns >= 0) {
2845 /* Yay, found something, so let's join the namespace */
2846 r = RET_NERRNO(setns(ns, nsflag));
2847 if (r < 0)
2848 return r;
2849
2850 return 0;
2851 }
2852
2853 if (ns != -EAGAIN)
2854 return ns;
2855
2856 /* Nothing stored yet, so let's create a new namespace. */
2857
2858 if (unshare(nsflag) < 0)
2859 return -errno;
2860
2861 (void) loopback_setup();
2862
2863 ns_path = strjoina("/proc/self/ns/", ns_name);
2864 ns = open(ns_path, O_RDONLY|O_CLOEXEC|O_NOCTTY);
2865 if (ns < 0)
2866 return -errno;
2867
2868 r = send_one_fd(ns_storage_socket[1], ns, MSG_DONTWAIT);
2869 if (r < 0)
2870 return r;
2871
2872 return 1;
2873 }
2874
2875 int open_shareable_ns_path(int ns_storage_socket[static 2], const char *path, unsigned long nsflag) {
2876 _cleanup_close_ int ns = -EBADF;
2877 int r;
2878
2879 assert(ns_storage_socket);
2880 assert(ns_storage_socket[0] >= 0);
2881 assert(ns_storage_socket[1] >= 0);
2882 assert(path);
2883
2884 /* If the storage socket doesn't contain a ns fd yet, open one via the file system and store it in
2885 * it. This is supposed to be called ahead of time, i.e. before setup_shareable_ns() which will
2886 * allocate a new anonymous ns if needed. */
2887
2888 r = posix_lock(ns_storage_socket[0], LOCK_EX);
2889 if (r < 0)
2890 return r;
2891
2892 CLEANUP_POSIX_UNLOCK(ns_storage_socket[0]);
2893
2894 ns = receive_one_fd(ns_storage_socket[0], MSG_PEEK|MSG_DONTWAIT);
2895 if (ns >= 0)
2896 return 0;
2897 if (ns != -EAGAIN)
2898 return ns;
2899
2900 /* Nothing stored yet. Open the file from the file system. */
2901
2902 ns = open(path, O_RDONLY|O_NOCTTY|O_CLOEXEC);
2903 if (ns < 0)
2904 return -errno;
2905
2906 r = fd_is_ns(ns, nsflag);
2907 if (r == 0)
2908 return -EINVAL;
2909 if (r < 0 && r != -EUCLEAN) /* EUCLEAN: we don't know */
2910 return r;
2911
2912 r = send_one_fd(ns_storage_socket[1], ns, MSG_DONTWAIT);
2913 if (r < 0)
2914 return r;
2915
2916 return 1;
2917 }
2918
2919 bool ns_type_supported(NamespaceType type) {
2920 const char *t, *ns_proc;
2921
2922 t = namespace_type_to_string(type);
2923 if (!t) /* Don't know how to translate this? Then it's not supported */
2924 return false;
2925
2926 ns_proc = strjoina("/proc/self/ns/", t);
2927 return access(ns_proc, F_OK) == 0;
2928 }
2929
2930 static const char *const protect_home_table[_PROTECT_HOME_MAX] = {
2931 [PROTECT_HOME_NO] = "no",
2932 [PROTECT_HOME_YES] = "yes",
2933 [PROTECT_HOME_READ_ONLY] = "read-only",
2934 [PROTECT_HOME_TMPFS] = "tmpfs",
2935 };
2936
2937 DEFINE_STRING_TABLE_LOOKUP_WITH_BOOLEAN(protect_home, ProtectHome, PROTECT_HOME_YES);
2938
2939 static const char *const protect_system_table[_PROTECT_SYSTEM_MAX] = {
2940 [PROTECT_SYSTEM_NO] = "no",
2941 [PROTECT_SYSTEM_YES] = "yes",
2942 [PROTECT_SYSTEM_FULL] = "full",
2943 [PROTECT_SYSTEM_STRICT] = "strict",
2944 };
2945
2946 DEFINE_STRING_TABLE_LOOKUP_WITH_BOOLEAN(protect_system, ProtectSystem, PROTECT_SYSTEM_YES);
2947
2948 static const char* const namespace_type_table[] = {
2949 [NAMESPACE_MOUNT] = "mnt",
2950 [NAMESPACE_CGROUP] = "cgroup",
2951 [NAMESPACE_UTS] = "uts",
2952 [NAMESPACE_IPC] = "ipc",
2953 [NAMESPACE_USER] = "user",
2954 [NAMESPACE_PID] = "pid",
2955 [NAMESPACE_NET] = "net",
2956 [NAMESPACE_TIME] = "time",
2957 };
2958
2959 DEFINE_STRING_TABLE_LOOKUP(namespace_type, NamespaceType);
2960
2961 static const char* const protect_proc_table[_PROTECT_PROC_MAX] = {
2962 [PROTECT_PROC_DEFAULT] = "default",
2963 [PROTECT_PROC_NOACCESS] = "noaccess",
2964 [PROTECT_PROC_INVISIBLE] = "invisible",
2965 [PROTECT_PROC_PTRACEABLE] = "ptraceable",
2966 };
2967
2968 DEFINE_STRING_TABLE_LOOKUP(protect_proc, ProtectProc);
2969
2970 static const char* const proc_subset_table[_PROC_SUBSET_MAX] = {
2971 [PROC_SUBSET_ALL] = "all",
2972 [PROC_SUBSET_PID] = "pid",
2973 };
2974
2975 DEFINE_STRING_TABLE_LOOKUP(proc_subset, ProcSubset);