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