]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/namespace.c
detect-virt: do not try to read all of /proc/cpuinfo
[thirdparty/systemd.git] / src / core / namespace.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
15ae422b
LP
2
3#include <errno.h>
07630cea 4#include <sched.h>
15ae422b 5#include <stdio.h>
07630cea
LP
6#include <string.h>
7#include <sys/mount.h>
15ae422b 8#include <sys/stat.h>
07630cea 9#include <unistd.h>
25e870b5 10#include <linux/fs.h>
15ae422b 11
b5efdb8a 12#include "alloc-util.h"
10404d52 13#include "base-filesystem.h"
7f112f50 14#include "dev-setup.h"
3ffd4af2 15#include "fd-util.h"
d944dc95 16#include "fs-util.h"
e908468b 17#include "label.h"
915e6d16 18#include "loop-util.h"
07630cea
LP
19#include "loopback-setup.h"
20#include "missing.h"
21#include "mkdir.h"
4349cd7c 22#include "mount-util.h"
3ffd4af2 23#include "namespace.h"
07630cea 24#include "path-util.h"
d7b8eec7 25#include "selinux-util.h"
2583fbea 26#include "socket-util.h"
36ce7110 27#include "stat-util.h"
8b43440b 28#include "string-table.h"
07630cea
LP
29#include "string-util.h"
30#include "strv.h"
affb60b1 31#include "umask-util.h"
ee104e11 32#include "user-util.h"
07630cea 33#include "util.h"
15ae422b 34
737ba3c8 35#define DEV_MOUNT_OPTIONS (MS_NOSUID|MS_STRICTATIME|MS_NOEXEC)
36
c17ec25e 37typedef enum MountMode {
15ae422b
LP
38 /* This is ordered by priority! */
39 INACCESSIBLE,
d2d6c096
LP
40 BIND_MOUNT,
41 BIND_MOUNT_RECURSIVE,
ac0930c8 42 PRIVATE_TMP,
7f112f50 43 PRIVATE_DEV,
5d997827 44 BIND_DEV,
6c47cd7d 45 EMPTY_DIR,
5d997827
LP
46 SYSFS,
47 PROCFS,
48 READONLY,
59eeb84b 49 READWRITE,
2abd4e38 50 TMPFS,
c17ec25e 51} MountMode;
15ae422b 52
34de407a 53typedef struct MountEntry {
5327c910 54 const char *path_const; /* Memory allocated on stack or static */
cfbeb4ef 55 MountMode mode:5;
5327c910
LP
56 bool ignore:1; /* Ignore if path does not exist? */
57 bool has_prefix:1; /* Already is prefixed by the root dir? */
cfbeb4ef 58 bool read_only:1; /* Shall this mount point be read-only? */
088696fe 59 bool applied:1; /* Already applied */
55fe7432 60 char *path_malloc; /* Use this instead of 'path_const' if we had to allocate memory */
d2d6c096
LP
61 const char *source_const; /* The source path, for bind mounts */
62 char *source_malloc;
2abd4e38
YW
63 const char *options_const;/* Mount options for tmpfs */
64 char *options_malloc;
65 unsigned long flags; /* Mount flags used by EMPTY_DIR and TMPFS. Do not include MS_RDONLY here, but please use read_only. */
088696fe 66 unsigned n_followed;
34de407a 67} MountEntry;
15ae422b 68
5d997827 69/* 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 70 * something there already. These mounts are hence overridden by any other explicitly configured mounts. */
5d997827
LP
71static const MountEntry apivfs_table[] = {
72 { "/proc", PROCFS, false },
73 { "/dev", BIND_DEV, false },
74 { "/sys", SYSFS, false },
75};
f471b2af 76
11a30cec 77/* ProtectKernelTunables= option and the related filesystem APIs */
34de407a 78static const MountEntry protect_kernel_tunables_table[] = {
c6232fb0 79 { "/proc/acpi", READONLY, true },
4e2c0a22 80 { "/proc/apm", READONLY, true }, /* Obsolete API, there's no point in permitting access to this, ever */
c6232fb0
LP
81 { "/proc/asound", READONLY, true },
82 { "/proc/bus", READONLY, true },
83 { "/proc/fs", READONLY, true },
84 { "/proc/irq", READONLY, true },
4e2c0a22
LP
85 { "/proc/kallsyms", INACCESSIBLE, true },
86 { "/proc/kcore", INACCESSIBLE, true },
87 { "/proc/latency_stats", READONLY, true },
88 { "/proc/mtrr", READONLY, true },
89 { "/proc/scsi", READONLY, true },
90 { "/proc/sys", READONLY, false },
91 { "/proc/sysrq-trigger", READONLY, true },
92 { "/proc/timer_stats", READONLY, true },
c6232fb0 93 { "/sys", READONLY, false },
13a141f0 94 { "/sys/fs/bpf", READONLY, true },
c6232fb0 95 { "/sys/fs/cgroup", READWRITE, false }, /* READONLY is set by ProtectControlGroups= option */
3a0bf6d6 96 { "/sys/fs/selinux", READWRITE, true },
4e2c0a22
LP
97 { "/sys/kernel/debug", READONLY, true },
98 { "/sys/kernel/tracing", READONLY, true },
11a30cec
DH
99};
100
c575770b 101/* ProtectKernelModules= option */
34de407a 102static const MountEntry protect_kernel_modules_table[] = {
349cc4a5 103#if HAVE_SPLIT_USR
c6232fb0 104 { "/lib/modules", INACCESSIBLE, true },
c575770b 105#endif
c6232fb0 106 { "/usr/lib/modules", INACCESSIBLE, true },
c575770b
DH
107};
108
b6c432ca
DH
109/*
110 * ProtectHome=read-only table, protect $HOME and $XDG_RUNTIME_DIR and rest of
111 * system should be protected by ProtectSystem=
112 */
34de407a 113static const MountEntry protect_home_read_only_table[] = {
c6232fb0
LP
114 { "/home", READONLY, true },
115 { "/run/user", READONLY, true },
116 { "/root", READONLY, true },
b6c432ca
DH
117};
118
e4da7d8c
YW
119/* ProtectHome=tmpfs table */
120static const MountEntry protect_home_tmpfs_table[] = {
121 { "/home", TMPFS, true, .read_only = true, .options_const = "mode=0755", .flags = MS_NODEV|MS_STRICTATIME },
122 { "/run/user", TMPFS, true, .read_only = true, .options_const = "mode=0755", .flags = MS_NODEV|MS_STRICTATIME },
123 { "/root", TMPFS, true, .read_only = true, .options_const = "mode=0700", .flags = MS_NODEV|MS_STRICTATIME },
124};
125
b6c432ca 126/* ProtectHome=yes table */
34de407a 127static const MountEntry protect_home_yes_table[] = {
c6232fb0
LP
128 { "/home", INACCESSIBLE, true },
129 { "/run/user", INACCESSIBLE, true },
130 { "/root", INACCESSIBLE, true },
b6c432ca
DH
131};
132
f471b2af 133/* ProtectSystem=yes table */
34de407a 134static const MountEntry protect_system_yes_table[] = {
c6232fb0
LP
135 { "/usr", READONLY, false },
136 { "/boot", READONLY, true },
137 { "/efi", READONLY, true },
7486f305
AB
138#if HAVE_SPLIT_USR
139 { "/lib", READONLY, true },
140 { "/lib64", READONLY, true },
141 { "/bin", READONLY, true },
671f0f8d 142# if HAVE_SPLIT_BIN
7486f305 143 { "/sbin", READONLY, true },
671f0f8d 144# endif
7486f305 145#endif
f471b2af
DH
146};
147
148/* ProtectSystem=full includes ProtectSystem=yes */
34de407a 149static const MountEntry protect_system_full_table[] = {
c6232fb0
LP
150 { "/usr", READONLY, false },
151 { "/boot", READONLY, true },
152 { "/efi", READONLY, true },
153 { "/etc", READONLY, false },
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/*
165 * ProtectSystem=strict table. In this strict mode, we mount everything
166 * read-only, except for /proc, /dev, /sys which are the kernel API VFS,
167 * which are left writable, but PrivateDevices= + ProtectKernelTunables=
168 * protect those, and these options should be fully orthogonal.
169 * (And of course /home and friends are also left writable, as ProtectHome=
170 * shall manage those, orthogonally).
171 */
34de407a 172static const MountEntry protect_system_strict_table[] = {
ddbe0412
LP
173 { "/", READONLY, false },
174 { "/proc", READWRITE, false }, /* ProtectKernelTunables= */
175 { "/sys", READWRITE, false }, /* ProtectKernelTunables= */
176 { "/dev", READWRITE, false }, /* PrivateDevices= */
177 { "/home", READWRITE, true }, /* ProtectHome= */
178 { "/run/user", READWRITE, true }, /* ProtectHome= */
179 { "/root", READWRITE, true }, /* ProtectHome= */
f471b2af
DH
180};
181
34de407a 182static const char *mount_entry_path(const MountEntry *p) {
f0a4feb0
DH
183 assert(p);
184
5327c910
LP
185 /* Returns the path of this bind mount. If the malloc()-allocated ->path_buffer field is set we return that,
186 * otherwise the stack/static ->path field is returned. */
f0a4feb0 187
5327c910 188 return p->path_malloc ?: p->path_const;
f0a4feb0
DH
189}
190
34de407a 191static bool mount_entry_read_only(const MountEntry *p) {
cfbeb4ef
LP
192 assert(p);
193
194 return p->read_only || IN_SET(p->mode, READONLY, INACCESSIBLE);
195}
196
d2d6c096
LP
197static const char *mount_entry_source(const MountEntry *p) {
198 assert(p);
199
200 return p->source_malloc ?: p->source_const;
201}
202
2abd4e38
YW
203static const char *mount_entry_options(const MountEntry *p) {
204 assert(p);
205
206 return p->options_malloc ?: p->options_const;
207}
208
1eb7e08e
LP
209static void mount_entry_done(MountEntry *p) {
210 assert(p);
211
212 p->path_malloc = mfree(p->path_malloc);
213 p->source_malloc = mfree(p->source_malloc);
2abd4e38 214 p->options_malloc = mfree(p->options_malloc);
1eb7e08e
LP
215}
216
d18aff04 217static int append_access_mounts(MountEntry **p, char **strv, MountMode mode, bool forcibly_require_prefix) {
15ae422b
LP
218 char **i;
219
613b411c
LP
220 assert(p);
221
5327c910
LP
222 /* Adds a list of user-supplied READWRITE/READONLY/INACCESSIBLE entries */
223
15ae422b 224 STRV_FOREACH(i, strv) {
5327c910
LP
225 bool ignore = false, needs_prefix = false;
226 const char *e = *i;
15ae422b 227
5327c910
LP
228 /* Look for any prefixes */
229 if (startswith(e, "-")) {
230 e++;
9c94d52e 231 ignore = true;
ea92ae33 232 }
5327c910
LP
233 if (startswith(e, "+")) {
234 e++;
235 needs_prefix = true;
236 }
ea92ae33 237
763a260a
YW
238 if (!path_is_absolute(e)) {
239 log_debug("Path is not absolute: %s", e);
15ae422b 240 return -EINVAL;
763a260a 241 }
15ae422b 242
34de407a 243 *((*p)++) = (MountEntry) {
5327c910
LP
244 .path_const = e,
245 .mode = mode,
246 .ignore = ignore,
d18aff04 247 .has_prefix = !needs_prefix && !forcibly_require_prefix,
5327c910 248 };
15ae422b
LP
249 }
250
251 return 0;
252}
253
6c47cd7d
LP
254static int append_empty_dir_mounts(MountEntry **p, char **strv) {
255 char **i;
256
257 assert(p);
258
259 /* Adds tmpfs mounts to provide readable but empty directories. This is primarily used to implement the
260 * "/private/" boundary directories for DynamicUser=1. */
261
262 STRV_FOREACH(i, strv) {
263
264 *((*p)++) = (MountEntry) {
265 .path_const = *i,
266 .mode = EMPTY_DIR,
267 .ignore = false,
6c47cd7d 268 .read_only = true,
2abd4e38
YW
269 .options_const = "mode=755",
270 .flags = MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_STRICTATIME,
6c47cd7d
LP
271 };
272 }
273
274 return 0;
275}
276
da6053d0
LP
277static int append_bind_mounts(MountEntry **p, const BindMount *binds, size_t n) {
278 size_t i;
d2d6c096
LP
279
280 assert(p);
281
282 for (i = 0; i < n; i++) {
283 const BindMount *b = binds + i;
284
285 *((*p)++) = (MountEntry) {
286 .path_const = b->destination,
287 .mode = b->recursive ? BIND_MOUNT_RECURSIVE : BIND_MOUNT,
288 .read_only = b->read_only,
289 .source_const = b->source,
4ca763a9 290 .ignore = b->ignore_enoent,
d2d6c096
LP
291 };
292 }
293
294 return 0;
295}
296
da6053d0
LP
297static int append_tmpfs_mounts(MountEntry **p, const TemporaryFileSystem *tmpfs, size_t n) {
298 size_t i;
2abd4e38
YW
299 int r;
300
301 assert(p);
302
303 for (i = 0; i < n; i++) {
304 const TemporaryFileSystem *t = tmpfs + i;
305 _cleanup_free_ char *o = NULL, *str = NULL;
ad8e66dc 306 unsigned long flags;
2abd4e38
YW
307 bool ro = false;
308
763a260a
YW
309 if (!path_is_absolute(t->path)) {
310 log_debug("Path is not absolute: %s", t->path);
2abd4e38 311 return -EINVAL;
763a260a 312 }
2abd4e38 313
ad8e66dc
AJ
314 str = strjoin("mode=0755,", t->options);
315 if (!str)
316 return -ENOMEM;
2abd4e38 317
ad8e66dc
AJ
318 r = mount_option_mangle(str, MS_NODEV|MS_STRICTATIME, &flags, &o);
319 if (r < 0)
320 return log_debug_errno(r, "Failed to parse mount option '%s': %m", str);
2abd4e38 321
ad8e66dc
AJ
322 ro = flags & MS_RDONLY;
323 if (ro)
324 flags ^= MS_RDONLY;
2abd4e38
YW
325
326 *((*p)++) = (MountEntry) {
327 .path_const = t->path,
328 .mode = TMPFS,
329 .read_only = ro,
ad8e66dc 330 .options_malloc = TAKE_PTR(o),
2abd4e38
YW
331 .flags = flags,
332 };
2abd4e38
YW
333 }
334
335 return 0;
336}
337
da6053d0
LP
338static int append_static_mounts(MountEntry **p, const MountEntry *mounts, size_t n, bool ignore_protect) {
339 size_t i;
11a30cec
DH
340
341 assert(p);
f471b2af 342 assert(mounts);
11a30cec 343
5327c910 344 /* Adds a list of static pre-defined entries */
f471b2af 345
5327c910 346 for (i = 0; i < n; i++)
34de407a
LP
347 *((*p)++) = (MountEntry) {
348 .path_const = mount_entry_path(mounts+i),
5327c910
LP
349 .mode = mounts[i].mode,
350 .ignore = mounts[i].ignore || ignore_protect,
351 };
f471b2af
DH
352
353 return 0;
354}
355
34de407a 356static int append_protect_home(MountEntry **p, ProtectHome protect_home, bool ignore_protect) {
c575770b
DH
357 assert(p);
358
5327c910 359 switch (protect_home) {
b6c432ca 360
5327c910 361 case PROTECT_HOME_NO:
b6c432ca
DH
362 return 0;
363
b6c432ca 364 case PROTECT_HOME_READ_ONLY:
5327c910
LP
365 return append_static_mounts(p, protect_home_read_only_table, ELEMENTSOF(protect_home_read_only_table), ignore_protect);
366
e4da7d8c
YW
367 case PROTECT_HOME_TMPFS:
368 return append_static_mounts(p, protect_home_tmpfs_table, ELEMENTSOF(protect_home_tmpfs_table), ignore_protect);
369
b6c432ca 370 case PROTECT_HOME_YES:
5327c910
LP
371 return append_static_mounts(p, protect_home_yes_table, ELEMENTSOF(protect_home_yes_table), ignore_protect);
372
b6c432ca 373 default:
5327c910 374 assert_not_reached("Unexpected ProtectHome= value");
b6c432ca 375 }
b6c432ca
DH
376}
377
34de407a 378static int append_protect_system(MountEntry **p, ProtectSystem protect_system, bool ignore_protect) {
f471b2af
DH
379 assert(p);
380
5327c910
LP
381 switch (protect_system) {
382
383 case PROTECT_SYSTEM_NO:
f471b2af
DH
384 return 0;
385
f471b2af 386 case PROTECT_SYSTEM_STRICT:
5327c910
LP
387 return append_static_mounts(p, protect_system_strict_table, ELEMENTSOF(protect_system_strict_table), ignore_protect);
388
f471b2af 389 case PROTECT_SYSTEM_YES:
5327c910
LP
390 return append_static_mounts(p, protect_system_yes_table, ELEMENTSOF(protect_system_yes_table), ignore_protect);
391
f471b2af 392 case PROTECT_SYSTEM_FULL:
5327c910
LP
393 return append_static_mounts(p, protect_system_full_table, ELEMENTSOF(protect_system_full_table), ignore_protect);
394
f471b2af 395 default:
5327c910 396 assert_not_reached("Unexpected ProtectSystem= value");
f471b2af 397 }
11a30cec
DH
398}
399
c17ec25e 400static int mount_path_compare(const void *a, const void *b) {
34de407a 401 const MountEntry *p = a, *q = b;
a0827e2b 402 int d;
15ae422b 403
6ee1a919 404 /* If the paths are not equal, then order prefixes first */
34de407a 405 d = path_compare(mount_entry_path(p), mount_entry_path(q));
6ee1a919
LP
406 if (d != 0)
407 return d;
15ae422b 408
6ee1a919
LP
409 /* If the paths are equal, check the mode */
410 if (p->mode < q->mode)
411 return -1;
6ee1a919
LP
412 if (p->mode > q->mode)
413 return 1;
15ae422b 414
6ee1a919 415 return 0;
15ae422b
LP
416}
417
da6053d0
LP
418static int prefix_where_needed(MountEntry *m, size_t n, const char *root_directory) {
419 size_t i;
5327c910 420
4a756839 421 /* Prefixes all paths in the bind mount table with the root directory if the entry needs that. */
5327c910
LP
422
423 for (i = 0; i < n; i++) {
424 char *s;
425
426 if (m[i].has_prefix)
427 continue;
428
34de407a 429 s = prefix_root(root_directory, mount_entry_path(m+i));
5327c910
LP
430 if (!s)
431 return -ENOMEM;
432
e282f51f 433 free_and_replace(m[i].path_malloc, s);
5327c910
LP
434 m[i].has_prefix = true;
435 }
436
437 return 0;
438}
439
da6053d0 440static void drop_duplicates(MountEntry *m, size_t *n) {
34de407a 441 MountEntry *f, *t, *previous;
15ae422b 442
c17ec25e 443 assert(m);
15ae422b 444 assert(n);
15ae422b 445
fe3c2583
LP
446 /* Drops duplicate entries. Expects that the array is properly ordered already. */
447
1d54cd5d 448 for (f = m, t = m, previous = NULL; f < m + *n; f++) {
15ae422b 449
fe3c2583 450 /* The first one wins (which is the one with the more restrictive mode), see mount_path_compare()
088696fe
LP
451 * above. Note that we only drop duplicates that haven't been mounted yet. */
452 if (previous &&
453 path_equal(mount_entry_path(f), mount_entry_path(previous)) &&
454 !f->applied && !previous->applied) {
34de407a
LP
455 log_debug("%s is duplicate.", mount_entry_path(f));
456 previous->read_only = previous->read_only || mount_entry_read_only(f); /* Propagate the read-only flag to the remaining entry */
1eb7e08e 457 mount_entry_done(f);
15ae422b 458 continue;
fe3c2583 459 }
15ae422b 460
e2d7c1a0 461 *t = *f;
15ae422b 462 previous = t;
fe3c2583
LP
463 t++;
464 }
465
466 *n = t - m;
467}
468
da6053d0 469static void drop_inaccessible(MountEntry *m, size_t *n) {
34de407a 470 MountEntry *f, *t;
fe3c2583
LP
471 const char *clear = NULL;
472
473 assert(m);
474 assert(n);
475
476 /* Drops all entries obstructed by another entry further up the tree. Expects that the array is properly
477 * ordered already. */
478
1d54cd5d 479 for (f = m, t = m; f < m + *n; f++) {
fe3c2583
LP
480
481 /* If we found a path set for INACCESSIBLE earlier, and this entry has it as prefix we should drop
482 * it, as inaccessible paths really should drop the entire subtree. */
34de407a
LP
483 if (clear && path_startswith(mount_entry_path(f), clear)) {
484 log_debug("%s is masked by %s.", mount_entry_path(f), clear);
1eb7e08e 485 mount_entry_done(f);
fe3c2583
LP
486 continue;
487 }
15ae422b 488
34de407a 489 clear = f->mode == INACCESSIBLE ? mount_entry_path(f) : NULL;
fe3c2583
LP
490
491 *t = *f;
15ae422b
LP
492 t++;
493 }
494
c17ec25e 495 *n = t - m;
15ae422b
LP
496}
497
da6053d0 498static void drop_nop(MountEntry *m, size_t *n) {
34de407a 499 MountEntry *f, *t;
7648a565
LP
500
501 assert(m);
502 assert(n);
503
504 /* Drops all entries which have an immediate parent that has the same type, as they are redundant. Assumes the
505 * list is ordered by prefixes. */
506
1d54cd5d 507 for (f = m, t = m; f < m + *n; f++) {
7648a565
LP
508
509 /* Only suppress such subtrees for READONLY and READWRITE entries */
510 if (IN_SET(f->mode, READONLY, READWRITE)) {
34de407a 511 MountEntry *p;
7648a565
LP
512 bool found = false;
513
514 /* Now let's find the first parent of the entry we are looking at. */
515 for (p = t-1; p >= m; p--) {
34de407a 516 if (path_startswith(mount_entry_path(f), mount_entry_path(p))) {
7648a565
LP
517 found = true;
518 break;
519 }
520 }
521
522 /* We found it, let's see if it's the same mode, if so, we can drop this entry */
523 if (found && p->mode == f->mode) {
34de407a 524 log_debug("%s is redundant by %s", mount_entry_path(f), mount_entry_path(p));
1eb7e08e 525 mount_entry_done(f);
7648a565
LP
526 continue;
527 }
528 }
529
530 *t = *f;
531 t++;
532 }
533
534 *n = t - m;
535}
536
da6053d0 537static void drop_outside_root(const char *root_directory, MountEntry *m, size_t *n) {
34de407a 538 MountEntry *f, *t;
cd2902c9
LP
539
540 assert(m);
541 assert(n);
542
1d54cd5d 543 /* Nothing to do */
cd2902c9
LP
544 if (!root_directory)
545 return;
546
547 /* Drops all mounts that are outside of the root directory. */
548
1d54cd5d 549 for (f = m, t = m; f < m + *n; f++) {
cd2902c9 550
34de407a
LP
551 if (!path_startswith(mount_entry_path(f), root_directory)) {
552 log_debug("%s is outside of root directory.", mount_entry_path(f));
1eb7e08e 553 mount_entry_done(f);
cd2902c9
LP
554 continue;
555 }
556
557 *t = *f;
558 t++;
559 }
560
561 *n = t - m;
562}
563
b2a60844
LP
564static int clone_device_node(
565 const char *d,
566 const char *temporary_mount,
567 bool *make_devnode) {
568
569 _cleanup_free_ char *sl = NULL;
570 const char *dn, *bn, *t;
b5e99f23
ДГ
571 struct stat st;
572 int r;
573
414b304b 574 if (stat(d, &st) < 0) {
b2a60844
LP
575 if (errno == ENOENT) {
576 log_debug_errno(errno, "Device node '%s' to clone does not exist, ignoring.", d);
af984e13 577 return -ENXIO;
b2a60844
LP
578 }
579
580 return log_debug_errno(errno, "Failed to stat() device node '%s' to clone, ignoring: %m", d);
b5e99f23
ДГ
581 }
582
583 if (!S_ISBLK(st.st_mode) &&
b2a60844
LP
584 !S_ISCHR(st.st_mode)) {
585 log_debug("Device node '%s' to clone is not a device node, ignoring.", d);
b5e99f23 586 return -EINVAL;
b2a60844 587 }
b5e99f23 588
6f7f3a33 589 dn = strjoina(temporary_mount, d);
b5e99f23 590
b2a60844 591 /* First, try to create device node properly */
16498617
CB
592 if (*make_devnode) {
593 mac_selinux_create_file_prepare(d, st.st_mode);
594 r = mknod(dn, st.st_mode, st.st_rdev);
595 mac_selinux_create_file_clear();
b2a60844
LP
596 if (r >= 0)
597 goto add_symlink;
16498617
CB
598 if (errno != EPERM)
599 return log_debug_errno(errno, "mknod failed for %s: %m", d);
600
b2a60844 601 /* This didn't work, let's not try this again for the next iterations. */
16498617
CB
602 *make_devnode = false;
603 }
604
605 /* We're about to fallback to bind-mounting the device
606 * node. So create a dummy bind-mount target. */
607 mac_selinux_create_file_prepare(d, 0);
608 r = mknod(dn, S_IFREG, 0);
b5e99f23 609 mac_selinux_create_file_clear();
16498617 610 if (r < 0 && errno != EEXIST)
b2a60844 611 return log_debug_errno(errno, "mknod() fallback failed for '%s': %m", d);
16498617
CB
612
613 /* Fallback to bind-mounting:
614 * The assumption here is that all used device nodes carry standard
615 * properties. Specifically, the devices nodes we bind-mount should
616 * either be owned by root:root or root:tty (e.g. /dev/tty, /dev/ptmx)
617 * and should not carry ACLs. */
618 if (mount(d, dn, NULL, MS_BIND, NULL) < 0)
b2a60844
LP
619 return log_debug_errno(errno, "Bind mounting failed for '%s': %m", d);
620
621add_symlink:
622 bn = path_startswith(d, "/dev/");
623 if (!bn)
624 return 0;
625
626 /* Create symlinks like /dev/char/1:9 → ../urandom */
627 if (asprintf(&sl, "%s/dev/%s/%u:%u", temporary_mount, S_ISCHR(st.st_mode) ? "char" : "block", major(st.st_rdev), minor(st.st_rdev)) < 0)
628 return log_oom();
629
630 (void) mkdir_parents(sl, 0755);
631
632 t = strjoina("../", bn);
633
634 if (symlink(t, sl) < 0)
2e4a4fae 635 log_debug_errno(errno, "Failed to symlink '%s' to '%s', ignoring: %m", t, sl);
b5e99f23 636
af984e13 637 return 0;
b5e99f23
ДГ
638}
639
5d997827 640static int mount_private_dev(MountEntry *m) {
7f112f50
LP
641 static const char devnodes[] =
642 "/dev/null\0"
643 "/dev/zero\0"
644 "/dev/full\0"
645 "/dev/random\0"
646 "/dev/urandom\0"
647 "/dev/tty\0";
648
2b85f4e1 649 char temporary_mount[] = "/tmp/namespace-dev-XXXXXX";
63cc4c31 650 const char *d, *dev = NULL, *devpts = NULL, *devshm = NULL, *devhugepages = NULL, *devmqueue = NULL, *devlog = NULL, *devptmx = NULL;
16498617 651 bool can_mknod = true;
7f112f50
LP
652 _cleanup_umask_ mode_t u;
653 int r;
654
655 assert(m);
656
657 u = umask(0000);
658
2b85f4e1 659 if (!mkdtemp(temporary_mount))
2e4a4fae 660 return log_debug_errno(errno, "Failed to create temporary directory '%s': %m", temporary_mount);
2b85f4e1 661
63c372cb 662 dev = strjoina(temporary_mount, "/dev");
dc751688 663 (void) mkdir(dev, 0755);
737ba3c8 664 if (mount("tmpfs", dev, "tmpfs", DEV_MOUNT_OPTIONS, "mode=755") < 0) {
2e4a4fae 665 r = log_debug_errno(errno, "Failed to mount tmpfs on '%s': %m", dev);
2b85f4e1
LP
666 goto fail;
667 }
668
63c372cb 669 devpts = strjoina(temporary_mount, "/dev/pts");
dc751688 670 (void) mkdir(devpts, 0755);
2b85f4e1 671 if (mount("/dev/pts", devpts, NULL, MS_BIND, NULL) < 0) {
2e4a4fae 672 r = log_debug_errno(errno, "Failed to bind mount /dev/pts on '%s': %m", devpts);
2b85f4e1
LP
673 goto fail;
674 }
675
2e4a4fae
YW
676 /* /dev/ptmx can either be a device node or a symlink to /dev/pts/ptmx.
677 * When /dev/ptmx a device node, /dev/pts/ptmx has 000 permissions making it inaccessible.
678 * Thus, in that case make a clone.
679 * In nspawn and other containers it will be a symlink, in that case make it a symlink. */
36ce7110 680 r = is_symlink("/dev/ptmx");
2e4a4fae
YW
681 if (r < 0) {
682 log_debug_errno(r, "Failed to detect whether /dev/ptmx is a symlink or not: %m");
3164e3cb 683 goto fail;
2e4a4fae 684 } else if (r > 0) {
414b304b
ДГ
685 devptmx = strjoina(temporary_mount, "/dev/ptmx");
686 if (symlink("pts/ptmx", devptmx) < 0) {
2e4a4fae 687 r = log_debug_errno(errno, "Failed to create a symlink '%s' to pts/ptmx: %m", devptmx);
414b304b
ДГ
688 goto fail;
689 }
690 } else {
16498617 691 r = clone_device_node("/dev/ptmx", temporary_mount, &can_mknod);
152c475f
LP
692 if (r < 0)
693 goto fail;
414b304b 694 }
e06b6479 695
63c372cb 696 devshm = strjoina(temporary_mount, "/dev/shm");
8d953682 697 (void) mkdir(devshm, 0755);
2b85f4e1
LP
698 r = mount("/dev/shm", devshm, NULL, MS_BIND, NULL);
699 if (r < 0) {
2e4a4fae 700 r = log_debug_errno(errno, "Failed to bind mount /dev/shm on '%s': %m", devshm);
2b85f4e1
LP
701 goto fail;
702 }
703
63c372cb 704 devmqueue = strjoina(temporary_mount, "/dev/mqueue");
dc751688 705 (void) mkdir(devmqueue, 0755);
2e4a4fae
YW
706 if (mount("/dev/mqueue", devmqueue, NULL, MS_BIND, NULL) < 0)
707 log_debug_errno(errno, "Failed to bind mount /dev/mqueue on '%s', ignoring: %m", devmqueue);
2b85f4e1 708
63c372cb 709 devhugepages = strjoina(temporary_mount, "/dev/hugepages");
dc751688 710 (void) mkdir(devhugepages, 0755);
2e4a4fae
YW
711 if (mount("/dev/hugepages", devhugepages, NULL, MS_BIND, NULL) < 0)
712 log_debug_errno(errno, "Failed to bind mount /dev/hugepages on '%s', ignoring: %m", devhugepages);
2b85f4e1 713
63c372cb 714 devlog = strjoina(temporary_mount, "/dev/log");
2e4a4fae
YW
715 if (symlink("/run/systemd/journal/dev-log", devlog) < 0)
716 log_debug_errno(errno, "Failed to create a symlink '%s' to /run/systemd/journal/dev-log, ignoring: %m", devlog);
82d25240 717
7f112f50 718 NULSTR_FOREACH(d, devnodes) {
16498617 719 r = clone_device_node(d, temporary_mount, &can_mknod);
af984e13
ZJS
720 /* ENXIO means the the *source* is not a device file, skip creation in that case */
721 if (r < 0 && r != -ENXIO)
2b85f4e1 722 goto fail;
7f112f50
LP
723 }
724
2e4a4fae
YW
725 r = dev_setup(temporary_mount, UID_INVALID, GID_INVALID);
726 if (r < 0)
727 log_debug_errno(r, "Failed to setup basic device tree at '%s', ignoring: %m", temporary_mount);
7f112f50 728
ee818b89
AC
729 /* Create the /dev directory if missing. It is more likely to be
730 * missing when the service is started with RootDirectory. This is
731 * consistent with mount units creating the mount points when missing.
732 */
34de407a 733 (void) mkdir_p_label(mount_entry_path(m), 0755);
ee818b89 734
9e5f8252 735 /* Unmount everything in old /dev */
2e4a4fae
YW
736 r = umount_recursive(mount_entry_path(m), 0);
737 if (r < 0)
738 log_debug_errno(r, "Failed to unmount directories below '%s', ignoring: %m", mount_entry_path(m));
739
34de407a 740 if (mount(dev, mount_entry_path(m), NULL, MS_MOVE, NULL) < 0) {
2e4a4fae 741 r = log_debug_errno(errno, "Failed to move mount point '%s' to '%s': %m", dev, mount_entry_path(m));
2b85f4e1
LP
742 goto fail;
743 }
7f112f50 744
2b85f4e1
LP
745 rmdir(dev);
746 rmdir(temporary_mount);
7f112f50 747
2b85f4e1 748 return 0;
7f112f50 749
2b85f4e1
LP
750fail:
751 if (devpts)
752 umount(devpts);
7f112f50 753
2b85f4e1
LP
754 if (devshm)
755 umount(devshm);
7f112f50 756
2b85f4e1
LP
757 if (devhugepages)
758 umount(devhugepages);
7f112f50 759
2b85f4e1
LP
760 if (devmqueue)
761 umount(devmqueue);
7f112f50 762
d267c5aa
ZJS
763 umount(dev);
764 rmdir(dev);
2b85f4e1 765 rmdir(temporary_mount);
7f112f50 766
2b85f4e1 767 return r;
7f112f50
LP
768}
769
2a2969fd 770static int mount_bind_dev(const MountEntry *m) {
5d997827
LP
771 int r;
772
773 assert(m);
774
775 /* Implements the little brother of mount_private_dev(): simply bind mounts the host's /dev into the service's
776 * /dev. This is only used when RootDirectory= is set. */
777
645767d6
LP
778 (void) mkdir_p_label(mount_entry_path(m), 0755);
779
5d997827
LP
780 r = path_is_mount_point(mount_entry_path(m), NULL, 0);
781 if (r < 0)
782 return log_debug_errno(r, "Unable to determine whether /dev is already mounted: %m");
783 if (r > 0) /* make this a NOP if /dev is already a mount point */
784 return 0;
785
786 if (mount("/dev", mount_entry_path(m), NULL, MS_BIND|MS_REC, NULL) < 0)
787 return log_debug_errno(errno, "Failed to bind mount %s: %m", mount_entry_path(m));
788
789 return 1;
790}
791
2a2969fd 792static int mount_sysfs(const MountEntry *m) {
5d997827
LP
793 int r;
794
795 assert(m);
796
645767d6
LP
797 (void) mkdir_p_label(mount_entry_path(m), 0755);
798
5d997827
LP
799 r = path_is_mount_point(mount_entry_path(m), NULL, 0);
800 if (r < 0)
801 return log_debug_errno(r, "Unable to determine whether /sys is already mounted: %m");
802 if (r > 0) /* make this a NOP if /sys is already a mount point */
803 return 0;
804
805 /* Bind mount the host's version so that we get all child mounts of it, too. */
806 if (mount("/sys", mount_entry_path(m), NULL, MS_BIND|MS_REC, NULL) < 0)
807 return log_debug_errno(errno, "Failed to mount %s: %m", mount_entry_path(m));
808
809 return 1;
810}
811
2a2969fd 812static int mount_procfs(const MountEntry *m) {
5d997827
LP
813 int r;
814
815 assert(m);
816
645767d6
LP
817 (void) mkdir_p_label(mount_entry_path(m), 0755);
818
5d997827
LP
819 r = path_is_mount_point(mount_entry_path(m), NULL, 0);
820 if (r < 0)
821 return log_debug_errno(r, "Unable to determine whether /proc is already mounted: %m");
822 if (r > 0) /* make this a NOP if /proc is already a mount point */
823 return 0;
824
825 /* Mount a new instance, so that we get the one that matches our user namespace, if we are running in one */
826 if (mount("proc", mount_entry_path(m), "proc", MS_NOSUID|MS_NOEXEC|MS_NODEV, NULL) < 0)
827 return log_debug_errno(errno, "Failed to mount %s: %m", mount_entry_path(m));
828
829 return 1;
830}
831
2abd4e38 832static int mount_tmpfs(const MountEntry *m) {
6c47cd7d
LP
833 assert(m);
834
2abd4e38 835 /* First, get rid of everything that is below if there is anything. Then, overmount with our new tmpfs */
6c47cd7d
LP
836
837 (void) mkdir_p_label(mount_entry_path(m), 0755);
838 (void) umount_recursive(mount_entry_path(m), 0);
839
2abd4e38 840 if (mount("tmpfs", mount_entry_path(m), "tmpfs", m->flags, mount_entry_options(m)) < 0)
6c47cd7d
LP
841 return log_debug_errno(errno, "Failed to mount %s: %m", mount_entry_path(m));
842
843 return 1;
844}
845
088696fe 846static int follow_symlink(
d2d6c096 847 const char *root_directory,
088696fe 848 MountEntry *m) {
d2d6c096 849
088696fe 850 _cleanup_free_ char *target = NULL;
8fceda93
LP
851 int r;
852
088696fe
LP
853 /* Let's chase symlinks, but only one step at a time. That's because depending where the symlink points we
854 * might need to change the order in which we mount stuff. Hence: let's normalize piecemeal, and do one step at
855 * a time by specifying CHASE_STEP. This function returns 0 if we resolved one step, and > 0 if we reached the
856 * end and already have a fully normalized name. */
8fceda93 857
088696fe
LP
858 r = chase_symlinks(mount_entry_path(m), root_directory, CHASE_STEP|CHASE_NONEXISTENT, &target);
859 if (r < 0)
860 return log_debug_errno(r, "Failed to chase symlinks '%s': %m", mount_entry_path(m));
861 if (r > 0) /* Reached the end, nothing more to resolve */
862 return 1;
8fceda93 863
088696fe
LP
864 if (m->n_followed >= CHASE_SYMLINKS_MAX) { /* put a boundary on things */
865 log_debug("Symlink loop on '%s'.", mount_entry_path(m));
866 return -ELOOP;
8fceda93 867 }
8fceda93 868
088696fe 869 log_debug("Followed mount entry path symlink %s → %s.", mount_entry_path(m), target);
8fceda93 870
088696fe
LP
871 free_and_replace(m->path_malloc, target);
872 m->has_prefix = true;
8fceda93 873
088696fe
LP
874 m->n_followed ++;
875
876 return 0;
8fceda93
LP
877}
878
ac0930c8 879static int apply_mount(
8fceda93 880 const char *root_directory,
89bd586c 881 MountEntry *m) {
ac0930c8 882
a227a4be 883 bool rbind = true, make = false;
15ae422b 884 const char *what;
15ae422b 885 int r;
15ae422b 886
c17ec25e 887 assert(m);
15ae422b 888
34de407a 889 log_debug("Applying namespace mount on %s", mount_entry_path(m));
fe3c2583 890
c17ec25e 891 switch (m->mode) {
15ae422b 892
160cfdbe
LP
893 case INACCESSIBLE: {
894 struct stat target;
6d313367
LP
895
896 /* First, get rid of everything that is below if there
897 * is anything... Then, overmount it with an
c4b41707 898 * inaccessible path. */
34de407a 899 (void) umount_recursive(mount_entry_path(m), 0);
6d313367 900
088696fe
LP
901 if (lstat(mount_entry_path(m), &target) < 0) {
902 if (errno == ENOENT && m->ignore)
903 return 0;
904
34de407a 905 return log_debug_errno(errno, "Failed to lstat() %s to determine what to mount over it: %m", mount_entry_path(m));
088696fe 906 }
15ae422b 907
c4b41707 908 what = mode_to_inaccessible_node(target.st_mode);
5fd7cf6f
LP
909 if (!what) {
910 log_debug("File type not supported for inaccessible mounts. Note that symlinks are not allowed");
c4b41707
AP
911 return -ELOOP;
912 }
913 break;
160cfdbe 914 }
fe3c2583 915
15ae422b 916 case READONLY:
15ae422b 917 case READWRITE:
8fceda93 918 r = path_is_mount_point(mount_entry_path(m), root_directory, 0);
088696fe
LP
919 if (r == -ENOENT && m->ignore)
920 return 0;
d944dc95 921 if (r < 0)
34de407a 922 return log_debug_errno(r, "Failed to determine whether %s is already a mount point: %m", mount_entry_path(m));
6b7c9f8b
LP
923 if (r > 0) /* Nothing to do here, it is already a mount. We just later toggle the MS_RDONLY bit for the mount point if needed. */
924 return 0;
6b7c9f8b 925 /* This isn't a mount point yet, let's make it one. */
34de407a 926 what = mount_entry_path(m);
6b7c9f8b 927 break;
15ae422b 928
d2d6c096
LP
929 case BIND_MOUNT:
930 rbind = false;
d2d6c096 931
4831981d 932 _fallthrough_;
088696fe
LP
933 case BIND_MOUNT_RECURSIVE: {
934 _cleanup_free_ char *chased = NULL;
5d997827 935
088696fe
LP
936 /* Since mount() will always follow symlinks we chase the symlinks on our own first. Note that bind
937 * mount source paths are always relative to the host root, hence we pass NULL as root directory to
938 * chase_symlinks() here. */
939
940 r = chase_symlinks(mount_entry_source(m), NULL, CHASE_TRAIL_SLASH, &chased);
941 if (r == -ENOENT && m->ignore) {
942 log_debug_errno(r, "Path %s does not exist, ignoring.", mount_entry_source(m));
943 return 0;
944 }
945 if (r < 0)
946 return log_debug_errno(r, "Failed to follow symlinks on %s: %m", mount_entry_source(m));
947
948 log_debug("Followed source symlinks %s → %s.", mount_entry_source(m), chased);
949
950 free_and_replace(m->source_malloc, chased);
d2d6c096
LP
951
952 what = mount_entry_source(m);
a227a4be 953 make = true;
d2d6c096 954 break;
088696fe 955 }
d2d6c096 956
6c47cd7d 957 case EMPTY_DIR:
2abd4e38
YW
958 case TMPFS:
959 return mount_tmpfs(m);
6c47cd7d 960
ac0930c8 961 case PRIVATE_TMP:
89bd586c 962 what = mount_entry_source(m);
a227a4be 963 make = true;
15ae422b 964 break;
e364ad06 965
d6797c92 966 case PRIVATE_DEV:
5d997827
LP
967 return mount_private_dev(m);
968
969 case BIND_DEV:
970 return mount_bind_dev(m);
971
972 case SYSFS:
973 return mount_sysfs(m);
974
975 case PROCFS:
976 return mount_procfs(m);
d6797c92 977
e364ad06
LP
978 default:
979 assert_not_reached("Unknown mode");
15ae422b
LP
980 }
981
ac0930c8 982 assert(what);
15ae422b 983
a227a4be
LP
984 if (mount(what, mount_entry_path(m), NULL, MS_BIND|(rbind ? MS_REC : 0), NULL) < 0) {
985 bool try_again = false;
986 r = -errno;
987
988 if (r == -ENOENT && make) {
989 struct stat st;
990
991 /* Hmm, either the source or the destination are missing. Let's see if we can create the destination, then try again */
992
e8717862
LP
993 if (stat(what, &st) < 0)
994 log_debug_errno(errno, "Mount point source '%s' is not accessible: %m", what);
995 else {
996 int q;
a227a4be
LP
997
998 (void) mkdir_parents(mount_entry_path(m), 0755);
999
1000 if (S_ISDIR(st.st_mode))
e8717862 1001 q = mkdir(mount_entry_path(m), 0755) < 0 ? -errno : 0;
a227a4be 1002 else
e8717862
LP
1003 q = touch(mount_entry_path(m));
1004
1005 if (q < 0)
1006 log_debug_errno(q, "Failed to create destination mount point node '%s': %m", mount_entry_path(m));
1007 else
1008 try_again = true;
a227a4be
LP
1009 }
1010 }
1011
1012 if (try_again) {
1013 if (mount(what, mount_entry_path(m), NULL, MS_BIND|(rbind ? MS_REC : 0), NULL) < 0)
1014 r = -errno;
1015 else
1016 r = 0;
1017 }
1018
1019 if (r < 0)
1020 return log_debug_errno(r, "Failed to mount %s to %s: %m", what, mount_entry_path(m));
1021 }
6b7c9f8b 1022
34de407a 1023 log_debug("Successfully mounted %s to %s", what, mount_entry_path(m));
6b7c9f8b 1024 return 0;
ac0930c8 1025}
15ae422b 1026
69338c3d
AJ
1027/* Change the per-mount readonly flag on an existing mount */
1028static int remount_bind_readonly(const char *path, unsigned long orig_flags) {
1029 int r;
1030
1031 r = mount(NULL, path, NULL, MS_REMOUNT | MS_BIND | MS_RDONLY | orig_flags, NULL);
1032
1033 return r < 0 ? -errno : 0;
1034}
1035
2a2969fd 1036static int make_read_only(const MountEntry *m, char **blacklist, FILE *proc_self_mountinfo) {
763a260a 1037 bool submounts = false;
6b7c9f8b 1038 int r = 0;
15ae422b 1039
c17ec25e 1040 assert(m);
ac9de0b3 1041 assert(proc_self_mountinfo);
ac0930c8 1042
2abd4e38
YW
1043 if (mount_entry_read_only(m)) {
1044 if (IN_SET(m->mode, EMPTY_DIR, TMPFS)) {
69338c3d 1045 r = remount_bind_readonly(mount_entry_path(m), m->flags);
763a260a
YW
1046 } else {
1047 submounts = true;
2abd4e38 1048 r = bind_remount_recursive_with_mountinfo(mount_entry_path(m), true, blacklist, proc_self_mountinfo);
763a260a 1049 }
2abd4e38 1050 } else if (m->mode == PRIVATE_DEV) {
69338c3d
AJ
1051 /* Set /dev readonly, but not submounts like /dev/shm. Also, we only set the per-mount read-only flag.
1052 * We can't set it on the superblock, if we are inside a user namespace and running Linux <= 4.17. */
1053 r = remount_bind_readonly(mount_entry_path(m), DEV_MOUNT_OPTIONS);
737ba3c8 1054 } else
6b7c9f8b
LP
1055 return 0;
1056
1057 /* Not that we only turn on the MS_RDONLY flag here, we never turn it off. Something that was marked read-only
1058 * already stays this way. This improves compatibility with container managers, where we won't attempt to undo
1059 * read-only mounts already applied. */
ac0930c8 1060
8fceda93
LP
1061 if (r == -ENOENT && m->ignore)
1062 r = 0;
5327c910 1063
763a260a
YW
1064 if (r < 0)
1065 return log_debug_errno(r, "Failed to re-mount '%s'%s read-only: %m", mount_entry_path(m),
1066 submounts ? " and its submounts" : "");
1067
1068 return 0;
d944dc95
LP
1069}
1070
9b68367b 1071static bool namespace_info_mount_apivfs(const NamespaceInfo *ns_info) {
5d997827
LP
1072 assert(ns_info);
1073
9c988f93
DH
1074 /*
1075 * ProtectControlGroups= and ProtectKernelTunables= imply MountAPIVFS=,
1076 * since to protect the API VFS mounts, they need to be around in the
9b68367b 1077 * first place...
9c988f93 1078 */
5d997827 1079
9b68367b
YW
1080 return ns_info->mount_apivfs ||
1081 ns_info->protect_control_groups ||
1082 ns_info->protect_kernel_tunables;
5d997827
LP
1083}
1084
da6053d0 1085static size_t namespace_calculate_mounts(
bb0ff3fb 1086 const NamespaceInfo *ns_info,
2652c6c1
DH
1087 char** read_write_paths,
1088 char** read_only_paths,
1089 char** inaccessible_paths,
6c47cd7d 1090 char** empty_directories,
da6053d0
LP
1091 size_t n_bind_mounts,
1092 size_t n_temporary_filesystems,
2652c6c1
DH
1093 const char* tmp_dir,
1094 const char* var_tmp_dir,
2652c6c1
DH
1095 ProtectHome protect_home,
1096 ProtectSystem protect_system) {
1097
da6053d0
LP
1098 size_t protect_home_cnt;
1099 size_t protect_system_cnt =
f471b2af
DH
1100 (protect_system == PROTECT_SYSTEM_STRICT ?
1101 ELEMENTSOF(protect_system_strict_table) :
1102 ((protect_system == PROTECT_SYSTEM_FULL) ?
1103 ELEMENTSOF(protect_system_full_table) :
1104 ((protect_system == PROTECT_SYSTEM_YES) ?
1105 ELEMENTSOF(protect_system_yes_table) : 0)));
1106
b6c432ca
DH
1107 protect_home_cnt =
1108 (protect_home == PROTECT_HOME_YES ?
1109 ELEMENTSOF(protect_home_yes_table) :
1110 ((protect_home == PROTECT_HOME_READ_ONLY) ?
e4da7d8c
YW
1111 ELEMENTSOF(protect_home_read_only_table) :
1112 ((protect_home == PROTECT_HOME_TMPFS) ?
1113 ELEMENTSOF(protect_home_tmpfs_table) : 0)));
b6c432ca 1114
2652c6c1
DH
1115 return !!tmp_dir + !!var_tmp_dir +
1116 strv_length(read_write_paths) +
1117 strv_length(read_only_paths) +
1118 strv_length(inaccessible_paths) +
6c47cd7d 1119 strv_length(empty_directories) +
d2d6c096 1120 n_bind_mounts +
2abd4e38 1121 n_temporary_filesystems +
c575770b
DH
1122 ns_info->private_dev +
1123 (ns_info->protect_kernel_tunables ? ELEMENTSOF(protect_kernel_tunables_table) : 0) +
1124 (ns_info->protect_control_groups ? 1 : 0) +
1125 (ns_info->protect_kernel_modules ? ELEMENTSOF(protect_kernel_modules_table) : 0) +
5d997827 1126 protect_home_cnt + protect_system_cnt +
9b68367b 1127 (namespace_info_mount_apivfs(ns_info) ? ELEMENTSOF(apivfs_table) : 0);
2652c6c1
DH
1128}
1129
da6053d0 1130static void normalize_mounts(const char *root_directory, MountEntry *mounts, size_t *n_mounts) {
9b68367b 1131 assert(root_directory);
f8b64b57
LP
1132 assert(n_mounts);
1133 assert(mounts || *n_mounts == 0);
1134
1135 qsort_safe(mounts, *n_mounts, sizeof(MountEntry), mount_path_compare);
1136
1137 drop_duplicates(mounts, n_mounts);
1138 drop_outside_root(root_directory, mounts, n_mounts);
1139 drop_inaccessible(mounts, n_mounts);
1140 drop_nop(mounts, n_mounts);
1141}
1142
613b411c 1143int setup_namespace(
ee818b89 1144 const char* root_directory,
915e6d16 1145 const char* root_image,
bb0ff3fb 1146 const NamespaceInfo *ns_info,
2a624c36
AP
1147 char** read_write_paths,
1148 char** read_only_paths,
1149 char** inaccessible_paths,
6c47cd7d 1150 char** empty_directories,
d2d6c096 1151 const BindMount *bind_mounts,
da6053d0 1152 size_t n_bind_mounts,
2abd4e38 1153 const TemporaryFileSystem *temporary_filesystems,
da6053d0 1154 size_t n_temporary_filesystems,
a004cb4c
LP
1155 const char* tmp_dir,
1156 const char* var_tmp_dir,
1b8689f9
LP
1157 ProtectHome protect_home,
1158 ProtectSystem protect_system,
915e6d16
LP
1159 unsigned long mount_flags,
1160 DissectImageFlags dissect_image_flags) {
15ae422b 1161
915e6d16 1162 _cleanup_(loop_device_unrefp) LoopDevice *loop_device = NULL;
78ebe980 1163 _cleanup_(decrypted_image_unrefp) DecryptedImage *decrypted_image = NULL;
915e6d16 1164 _cleanup_(dissected_image_unrefp) DissectedImage *dissected_image = NULL;
78ebe980 1165 _cleanup_free_ void *root_hash = NULL;
34de407a 1166 MountEntry *m, *mounts = NULL;
9b68367b 1167 size_t n_mounts, root_hash_size = 0;
d18aff04 1168 bool require_prefix = false;
9b68367b 1169 const char *root;
c17ec25e 1170 int r = 0;
15ae422b 1171
915e6d16
LP
1172 assert(ns_info);
1173
613b411c 1174 if (mount_flags == 0)
c17ec25e 1175 mount_flags = MS_SHARED;
ac0930c8 1176
915e6d16
LP
1177 if (root_image) {
1178 dissect_image_flags |= DISSECT_IMAGE_REQUIRE_ROOT;
1179
c9ef8573
LP
1180 if (protect_system == PROTECT_SYSTEM_STRICT &&
1181 protect_home != PROTECT_HOME_NO &&
1182 strv_isempty(read_write_paths))
915e6d16
LP
1183 dissect_image_flags |= DISSECT_IMAGE_READ_ONLY;
1184
1185 r = loop_device_make_by_path(root_image,
1186 dissect_image_flags & DISSECT_IMAGE_READ_ONLY ? O_RDONLY : O_RDWR,
1187 &loop_device);
1188 if (r < 0)
763a260a 1189 return log_debug_errno(r, "Failed to create loop device for root image: %m");
915e6d16 1190
78ebe980
LP
1191 r = root_hash_load(root_image, &root_hash, &root_hash_size);
1192 if (r < 0)
763a260a 1193 return log_debug_errno(r, "Failed to load root hash: %m");
78ebe980
LP
1194
1195 r = dissect_image(loop_device->fd, root_hash, root_hash_size, dissect_image_flags, &dissected_image);
1196 if (r < 0)
763a260a 1197 return log_debug_errno(r, "Failed to dissect image: %m");
78ebe980
LP
1198
1199 r = dissected_image_decrypt(dissected_image, NULL, root_hash, root_hash_size, dissect_image_flags, &decrypted_image);
915e6d16 1200 if (r < 0)
763a260a 1201 return log_debug_errno(r, "Failed to decrypt dissected image: %m");
915e6d16
LP
1202 }
1203
e908468b
LP
1204 if (root_directory)
1205 root = root_directory;
0722b359
JS
1206 else {
1207 /* Always create the mount namespace in a temporary directory, instead of operating
1208 * directly in the root. The temporary directory prevents any mounts from being
1209 * potentially obscured my other mounts we already applied.
1210 * We use the same mount point for all images, which is safe, since they all live
1211 * in their own namespaces after all, and hence won't see each other. */
e908468b
LP
1212
1213 root = "/run/systemd/unit-root";
1214 (void) mkdir_label(root, 0700);
d18aff04 1215 require_prefix = true;
0722b359 1216 }
e908468b 1217
cfbeb4ef
LP
1218 n_mounts = namespace_calculate_mounts(
1219 ns_info,
1220 read_write_paths,
1221 read_only_paths,
1222 inaccessible_paths,
6c47cd7d 1223 empty_directories,
f5c52a77 1224 n_bind_mounts,
2abd4e38 1225 n_temporary_filesystems,
cfbeb4ef
LP
1226 tmp_dir, var_tmp_dir,
1227 protect_home, protect_system);
613b411c 1228
f0a4feb0 1229 if (n_mounts > 0) {
34de407a 1230 m = mounts = (MountEntry *) alloca0(n_mounts * sizeof(MountEntry));
d18aff04 1231 r = append_access_mounts(&m, read_write_paths, READWRITE, require_prefix);
613b411c 1232 if (r < 0)
f0a4feb0 1233 goto finish;
613b411c 1234
d18aff04 1235 r = append_access_mounts(&m, read_only_paths, READONLY, require_prefix);
613b411c 1236 if (r < 0)
f0a4feb0 1237 goto finish;
613b411c 1238
d18aff04 1239 r = append_access_mounts(&m, inaccessible_paths, INACCESSIBLE, require_prefix);
613b411c 1240 if (r < 0)
f0a4feb0 1241 goto finish;
7ff7394d 1242
6c47cd7d
LP
1243 r = append_empty_dir_mounts(&m, empty_directories);
1244 if (r < 0)
1245 goto finish;
1246
d2d6c096
LP
1247 r = append_bind_mounts(&m, bind_mounts, n_bind_mounts);
1248 if (r < 0)
1249 goto finish;
1250
2abd4e38
YW
1251 r = append_tmpfs_mounts(&m, temporary_filesystems, n_temporary_filesystems);
1252 if (r < 0)
1253 goto finish;
1254
613b411c 1255 if (tmp_dir) {
34de407a 1256 *(m++) = (MountEntry) {
5327c910
LP
1257 .path_const = "/tmp",
1258 .mode = PRIVATE_TMP,
89bd586c 1259 .source_const = tmp_dir,
5327c910 1260 };
613b411c 1261 }
7ff7394d 1262
613b411c 1263 if (var_tmp_dir) {
34de407a 1264 *(m++) = (MountEntry) {
5327c910 1265 .path_const = "/var/tmp",
89bd586c
YW
1266 .mode = PRIVATE_TMP,
1267 .source_const = var_tmp_dir,
5327c910 1268 };
7ff7394d 1269 }
ac0930c8 1270
c575770b 1271 if (ns_info->private_dev) {
34de407a 1272 *(m++) = (MountEntry) {
5327c910
LP
1273 .path_const = "/dev",
1274 .mode = PRIVATE_DEV,
1275 };
7f112f50
LP
1276 }
1277
c575770b 1278 if (ns_info->protect_kernel_tunables) {
5327c910 1279 r = append_static_mounts(&m, protect_kernel_tunables_table, ELEMENTSOF(protect_kernel_tunables_table), ns_info->ignore_protect_paths);
c575770b 1280 if (r < 0)
f0a4feb0 1281 goto finish;
c575770b
DH
1282 }
1283
1284 if (ns_info->protect_kernel_modules) {
5327c910 1285 r = append_static_mounts(&m, protect_kernel_modules_table, ELEMENTSOF(protect_kernel_modules_table), ns_info->ignore_protect_paths);
c575770b 1286 if (r < 0)
f0a4feb0 1287 goto finish;
c575770b 1288 }
59eeb84b 1289
c575770b 1290 if (ns_info->protect_control_groups) {
34de407a 1291 *(m++) = (MountEntry) {
5327c910
LP
1292 .path_const = "/sys/fs/cgroup",
1293 .mode = READONLY,
1294 };
59eeb84b
LP
1295 }
1296
5327c910 1297 r = append_protect_home(&m, protect_home, ns_info->ignore_protect_paths);
b6c432ca 1298 if (r < 0)
f0a4feb0 1299 goto finish;
417116f2 1300
5327c910 1301 r = append_protect_system(&m, protect_system, false);
f471b2af 1302 if (r < 0)
f0a4feb0 1303 goto finish;
417116f2 1304
9b68367b 1305 if (namespace_info_mount_apivfs(ns_info)) {
5d997827
LP
1306 r = append_static_mounts(&m, apivfs_table, ELEMENTSOF(apivfs_table), ns_info->ignore_protect_paths);
1307 if (r < 0)
1308 goto finish;
1309 }
1310
f0a4feb0 1311 assert(mounts + n_mounts == m);
ac0930c8 1312
5327c910 1313 /* Prepend the root directory where that's necessary */
e908468b 1314 r = prefix_where_needed(mounts, n_mounts, root);
5327c910
LP
1315 if (r < 0)
1316 goto finish;
1317
839f1877 1318 normalize_mounts(root, mounts, &n_mounts);
15ae422b
LP
1319 }
1320
1beab8b0
LP
1321 /* All above is just preparation, figuring out what to do. Let's now actually start doing something. */
1322
d944dc95 1323 if (unshare(CLONE_NEWNS) < 0) {
763a260a 1324 r = log_debug_errno(errno, "Failed to unshare the mount namespace: %m");
1beab8b0
LP
1325 if (IN_SET(r, -EACCES, -EPERM, -EOPNOTSUPP, -ENOSYS))
1326 /* If the kernel doesn't support namespaces, or when there's a MAC or seccomp filter in place
1327 * that doesn't allow us to create namespaces (or a missing cap), then propagate a recognizable
1328 * error back, which the caller can use to detect this case (and only this) and optionally
1329 * continue without namespacing applied. */
1330 r = -ENOANO;
1331
d944dc95
LP
1332 goto finish;
1333 }
1e4e94c8 1334
9b68367b
YW
1335 /* Remount / as SLAVE so that nothing now mounted in the namespace
1336 * shows up in the parent */
1337 if (mount(NULL, "/", NULL, MS_SLAVE|MS_REC, NULL) < 0) {
763a260a 1338 r = log_debug_errno(errno, "Failed to remount '/' as SLAVE: %m");
9b68367b 1339 goto finish;
ee818b89
AC
1340 }
1341
915e6d16 1342 if (root_image) {
e908468b 1343 /* A root image is specified, mount it to the right place */
2d3a5a73 1344 r = dissected_image_mount(dissected_image, root, UID_INVALID, dissect_image_flags);
763a260a
YW
1345 if (r < 0) {
1346 log_debug_errno(r, "Failed to mount root image: %m");
915e6d16 1347 goto finish;
763a260a 1348 }
915e6d16 1349
07ce7407
TM
1350 if (decrypted_image) {
1351 r = decrypted_image_relinquish(decrypted_image);
763a260a
YW
1352 if (r < 0) {
1353 log_debug_errno(r, "Failed to relinquish decrypted image: %m");
07ce7407 1354 goto finish;
763a260a 1355 }
07ce7407 1356 }
78ebe980 1357
915e6d16
LP
1358 loop_device_relinquish(loop_device);
1359
1360 } else if (root_directory) {
1361
e908468b
LP
1362 /* A root directory is specified. Turn its directory into bind mount, if it isn't one yet. */
1363 r = path_is_mount_point(root, NULL, AT_SYMLINK_FOLLOW);
763a260a
YW
1364 if (r < 0) {
1365 log_debug_errno(r, "Failed to detect that %s is a mount point or not: %m", root);
d944dc95 1366 goto finish;
763a260a 1367 }
8f1ad200 1368 if (r == 0) {
e908468b 1369 if (mount(root, root, NULL, MS_BIND|MS_REC, NULL) < 0) {
763a260a 1370 r = log_debug_errno(errno, "Failed to bind mount '%s': %m", root);
8f1ad200
LP
1371 goto finish;
1372 }
d944dc95 1373 }
e908468b 1374
9b68367b 1375 } else {
e908468b
LP
1376
1377 /* Let's mount the main root directory to the root directory to use */
1378 if (mount("/", root, NULL, MS_BIND|MS_REC, NULL) < 0) {
763a260a 1379 r = log_debug_errno(errno, "Failed to bind mount '/' on '%s': %m", root);
e908468b
LP
1380 goto finish;
1381 }
ee818b89 1382 }
c2c13f2d 1383
4e0c20de
LP
1384 /* Try to set up the new root directory before mounting anything else there. */
1385 if (root_image || root_directory)
1386 (void) base_filesystem_create(root, UID_INVALID, GID_INVALID);
1387
f0a4feb0 1388 if (n_mounts > 0) {
ac9de0b3 1389 _cleanup_fclose_ FILE *proc_self_mountinfo = NULL;
6b7c9f8b 1390 char **blacklist;
da6053d0 1391 size_t j;
6b7c9f8b 1392
ac9de0b3
TR
1393 /* Open /proc/self/mountinfo now as it may become unavailable if we mount anything on top of /proc.
1394 * For example, this is the case with the option: 'InaccessiblePaths=/proc' */
1395 proc_self_mountinfo = fopen("/proc/self/mountinfo", "re");
1396 if (!proc_self_mountinfo) {
763a260a 1397 r = log_debug_errno(errno, "Failed to open /proc/self/mountinfo: %m");
ac9de0b3
TR
1398 goto finish;
1399 }
1400
088696fe
LP
1401 /* First round, establish all mounts we need */
1402 for (;;) {
1403 bool again = false;
1404
1405 for (m = mounts; m < mounts + n_mounts; ++m) {
1406
1407 if (m->applied)
1408 continue;
1409
1410 r = follow_symlink(root, m);
1411 if (r < 0)
1412 goto finish;
1413 if (r == 0) {
1414 /* We hit a symlinked mount point. The entry got rewritten and might point to a
1415 * very different place now. Let's normalize the changed list, and start from
1416 * the beginning. After all to mount the entry at the new location we might
1417 * need some other mounts first */
1418 again = true;
1419 break;
1420 }
1421
1422 r = apply_mount(root, m);
1423 if (r < 0)
1424 goto finish;
1425
1426 m->applied = true;
1427 }
1428
1429 if (!again)
1430 break;
1431
839f1877 1432 normalize_mounts(root, mounts, &n_mounts);
c2c13f2d 1433 }
15ae422b 1434
6b7c9f8b 1435 /* Create a blacklist we can pass to bind_mount_recursive() */
f0a4feb0
DH
1436 blacklist = newa(char*, n_mounts+1);
1437 for (j = 0; j < n_mounts; j++)
34de407a 1438 blacklist[j] = (char*) mount_entry_path(mounts+j);
6b7c9f8b
LP
1439 blacklist[j] = NULL;
1440
1441 /* Second round, flip the ro bits if necessary. */
f0a4feb0 1442 for (m = mounts; m < mounts + n_mounts; ++m) {
ac9de0b3 1443 r = make_read_only(m, blacklist, proc_self_mountinfo);
c2c13f2d 1444 if (r < 0)
d944dc95 1445 goto finish;
c2c13f2d 1446 }
15ae422b
LP
1447 }
1448
9b68367b
YW
1449 /* MS_MOVE does not work on MS_SHARED so the remount MS_SHARED will be done later */
1450 r = mount_move_root(root);
763a260a
YW
1451 if (r < 0) {
1452 log_debug_errno(r, "Failed to mount root with MS_MOVE: %m");
9b68367b 1453 goto finish;
763a260a 1454 }
ee818b89 1455
55fe7432 1456 /* Remount / as the desired mode. Note that this will not
c2c13f2d
LP
1457 * reestablish propagation from our side to the host, since
1458 * what's disconnected is disconnected. */
d944dc95 1459 if (mount(NULL, "/", NULL, mount_flags | MS_REC, NULL) < 0) {
763a260a 1460 r = log_debug_errno(errno, "Failed to remount '/' with desired mount flags: %m");
d944dc95
LP
1461 goto finish;
1462 }
15ae422b 1463
d944dc95 1464 r = 0;
15ae422b 1465
d944dc95 1466finish:
f0a4feb0 1467 for (m = mounts; m < mounts + n_mounts; m++)
1eb7e08e 1468 mount_entry_done(m);
613b411c
LP
1469
1470 return r;
1471}
1472
da6053d0
LP
1473void bind_mount_free_many(BindMount *b, size_t n) {
1474 size_t i;
d2d6c096
LP
1475
1476 assert(b || n == 0);
1477
1478 for (i = 0; i < n; i++) {
1479 free(b[i].source);
1480 free(b[i].destination);
1481 }
1482
1483 free(b);
1484}
1485
da6053d0 1486int bind_mount_add(BindMount **b, size_t *n, const BindMount *item) {
d2d6c096
LP
1487 _cleanup_free_ char *s = NULL, *d = NULL;
1488 BindMount *c;
1489
1490 assert(b);
1491 assert(n);
1492 assert(item);
1493
1494 s = strdup(item->source);
1495 if (!s)
1496 return -ENOMEM;
1497
1498 d = strdup(item->destination);
1499 if (!d)
1500 return -ENOMEM;
1501
aa484f35 1502 c = reallocarray(*b, *n + 1, sizeof(BindMount));
d2d6c096
LP
1503 if (!c)
1504 return -ENOMEM;
1505
1506 *b = c;
1507
1508 c[(*n) ++] = (BindMount) {
1cc6c93a
YW
1509 .source = TAKE_PTR(s),
1510 .destination = TAKE_PTR(d),
d2d6c096
LP
1511 .read_only = item->read_only,
1512 .recursive = item->recursive,
1513 .ignore_enoent = item->ignore_enoent,
1514 };
1515
d2d6c096
LP
1516 return 0;
1517}
1518
da6053d0
LP
1519void temporary_filesystem_free_many(TemporaryFileSystem *t, size_t n) {
1520 size_t i;
2abd4e38
YW
1521
1522 assert(t || n == 0);
1523
1524 for (i = 0; i < n; i++) {
1525 free(t[i].path);
1526 free(t[i].options);
1527 }
1528
1529 free(t);
1530}
1531
1532int temporary_filesystem_add(
1533 TemporaryFileSystem **t,
da6053d0 1534 size_t *n,
2abd4e38
YW
1535 const char *path,
1536 const char *options) {
1537
1538 _cleanup_free_ char *p = NULL, *o = NULL;
1539 TemporaryFileSystem *c;
1540
1541 assert(t);
1542 assert(n);
1543 assert(path);
1544
1545 p = strdup(path);
1546 if (!p)
1547 return -ENOMEM;
1548
1549 if (!isempty(options)) {
1550 o = strdup(options);
1551 if (!o)
1552 return -ENOMEM;
1553 }
1554
aa484f35 1555 c = reallocarray(*t, *n + 1, sizeof(TemporaryFileSystem));
2abd4e38
YW
1556 if (!c)
1557 return -ENOMEM;
1558
1559 *t = c;
1560
1561 c[(*n) ++] = (TemporaryFileSystem) {
1cc6c93a
YW
1562 .path = TAKE_PTR(p),
1563 .options = TAKE_PTR(o),
2abd4e38
YW
1564 };
1565
2abd4e38
YW
1566 return 0;
1567}
1568
613b411c
LP
1569static int setup_one_tmp_dir(const char *id, const char *prefix, char **path) {
1570 _cleanup_free_ char *x = NULL;
6b46ea73
LP
1571 char bid[SD_ID128_STRING_MAX];
1572 sd_id128_t boot_id;
1573 int r;
613b411c
LP
1574
1575 assert(id);
1576 assert(prefix);
1577 assert(path);
1578
6b46ea73
LP
1579 /* We include the boot id in the directory so that after a
1580 * reboot we can easily identify obsolete directories. */
1581
1582 r = sd_id128_get_boot(&boot_id);
1583 if (r < 0)
1584 return r;
1585
605405c6 1586 x = strjoin(prefix, "/systemd-private-", sd_id128_to_string(boot_id, bid), "-", id, "-XXXXXX");
613b411c
LP
1587 if (!x)
1588 return -ENOMEM;
1589
1590 RUN_WITH_UMASK(0077)
1591 if (!mkdtemp(x))
1592 return -errno;
1593
1594 RUN_WITH_UMASK(0000) {
1595 char *y;
1596
63c372cb 1597 y = strjoina(x, "/tmp");
613b411c
LP
1598
1599 if (mkdir(y, 0777 | S_ISVTX) < 0)
1600 return -errno;
c17ec25e 1601 }
15ae422b 1602
1cc6c93a 1603 *path = TAKE_PTR(x);
613b411c
LP
1604
1605 return 0;
1606}
1607
1608int setup_tmp_dirs(const char *id, char **tmp_dir, char **var_tmp_dir) {
1609 char *a, *b;
1610 int r;
1611
1612 assert(id);
1613 assert(tmp_dir);
1614 assert(var_tmp_dir);
1615
1616 r = setup_one_tmp_dir(id, "/tmp", &a);
1617 if (r < 0)
1618 return r;
1619
1620 r = setup_one_tmp_dir(id, "/var/tmp", &b);
1621 if (r < 0) {
1622 char *t;
1623
63c372cb 1624 t = strjoina(a, "/tmp");
613b411c
LP
1625 rmdir(t);
1626 rmdir(a);
1627
1628 free(a);
1629 return r;
1630 }
1631
1632 *tmp_dir = a;
1633 *var_tmp_dir = b;
1634
1635 return 0;
1636}
1637
1638int setup_netns(int netns_storage_socket[2]) {
1639 _cleanup_close_ int netns = -1;
3ee897d6 1640 int r, q;
613b411c
LP
1641
1642 assert(netns_storage_socket);
1643 assert(netns_storage_socket[0] >= 0);
1644 assert(netns_storage_socket[1] >= 0);
1645
1646 /* We use the passed socketpair as a storage buffer for our
76cd584b
LP
1647 * namespace reference fd. Whatever process runs this first
1648 * shall create a new namespace, all others should just join
1649 * it. To serialize that we use a file lock on the socket
1650 * pair.
613b411c
LP
1651 *
1652 * It's a bit crazy, but hey, works great! */
1653
1654 if (lockf(netns_storage_socket[0], F_LOCK, 0) < 0)
1655 return -errno;
1656
3ee897d6
LP
1657 netns = receive_one_fd(netns_storage_socket[0], MSG_DONTWAIT);
1658 if (netns == -EAGAIN) {
613b411c
LP
1659 /* Nothing stored yet, so let's create a new namespace */
1660
1661 if (unshare(CLONE_NEWNET) < 0) {
1662 r = -errno;
1663 goto fail;
1664 }
1665
1666 loopback_setup();
1667
1668 netns = open("/proc/self/ns/net", O_RDONLY|O_CLOEXEC|O_NOCTTY);
1669 if (netns < 0) {
1670 r = -errno;
1671 goto fail;
1672 }
1673
1674 r = 1;
613b411c 1675
3ee897d6
LP
1676 } else if (netns < 0) {
1677 r = netns;
1678 goto fail;
613b411c 1679
3ee897d6
LP
1680 } else {
1681 /* Yay, found something, so let's join the namespace */
613b411c
LP
1682 if (setns(netns, CLONE_NEWNET) < 0) {
1683 r = -errno;
1684 goto fail;
1685 }
1686
1687 r = 0;
1688 }
1689
3ee897d6
LP
1690 q = send_one_fd(netns_storage_socket[1], netns, MSG_DONTWAIT);
1691 if (q < 0) {
1692 r = q;
613b411c
LP
1693 goto fail;
1694 }
1695
1696fail:
fe048ce5 1697 (void) lockf(netns_storage_socket[0], F_ULOCK, 0);
15ae422b
LP
1698 return r;
1699}
417116f2 1700
6e2d7c4f
MS
1701bool ns_type_supported(NamespaceType type) {
1702 const char *t, *ns_proc;
1703
0fa5b831
LP
1704 t = namespace_type_to_string(type);
1705 if (!t) /* Don't know how to translate this? Then it's not supported */
6e2d7c4f
MS
1706 return false;
1707
6e2d7c4f 1708 ns_proc = strjoina("/proc/self/ns/", t);
6e2d7c4f
MS
1709 return access(ns_proc, F_OK) == 0;
1710}
1711
1b8689f9
LP
1712static const char *const protect_home_table[_PROTECT_HOME_MAX] = {
1713 [PROTECT_HOME_NO] = "no",
1714 [PROTECT_HOME_YES] = "yes",
1715 [PROTECT_HOME_READ_ONLY] = "read-only",
e4da7d8c 1716 [PROTECT_HOME_TMPFS] = "tmpfs",
417116f2
LP
1717};
1718
1e8c7bd5 1719DEFINE_STRING_TABLE_LOOKUP_WITH_BOOLEAN(protect_home, ProtectHome, PROTECT_HOME_YES);
5e1c6154 1720
1b8689f9
LP
1721static const char *const protect_system_table[_PROTECT_SYSTEM_MAX] = {
1722 [PROTECT_SYSTEM_NO] = "no",
1723 [PROTECT_SYSTEM_YES] = "yes",
1724 [PROTECT_SYSTEM_FULL] = "full",
3f815163 1725 [PROTECT_SYSTEM_STRICT] = "strict",
1b8689f9
LP
1726};
1727
1e8c7bd5 1728DEFINE_STRING_TABLE_LOOKUP_WITH_BOOLEAN(protect_system, ProtectSystem, PROTECT_SYSTEM_YES);
03c791aa 1729
6e2d7c4f
MS
1730static const char* const namespace_type_table[] = {
1731 [NAMESPACE_MOUNT] = "mnt",
1732 [NAMESPACE_CGROUP] = "cgroup",
1733 [NAMESPACE_UTS] = "uts",
1734 [NAMESPACE_IPC] = "ipc",
1735 [NAMESPACE_USER] = "user",
1736 [NAMESPACE_PID] = "pid",
1737 [NAMESPACE_NET] = "net",
1738};
1739
1740DEFINE_STRING_TABLE_LOOKUP(namespace_type, NamespaceType);