]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/mount-setup.c
tree-wide: drop missing.h
[thirdparty/systemd.git] / src / core / mount-setup.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
8e274523 2
8e274523 3#include <errno.h>
cf0fbc49 4#include <ftw.h>
8e274523 5#include <stdlib.h>
cf0fbc49 6#include <sys/mount.h>
6f7729c1 7#include <sys/statvfs.h>
5c0532d1 8#include <unistd.h>
8e274523 9
b5efdb8a 10#include "alloc-util.h"
64824462 11#include "bus-util.h"
4349cd7c 12#include "cgroup-util.h"
48da02ec 13#include "conf-files.h"
fdb3deca 14#include "cgroup-setup.h"
4349cd7c 15#include "dev-setup.h"
0bb2f0f1
ZJS
16#include "dirent-util.h"
17#include "efi-loader.h"
65e183d7 18#include "fd-util.h"
e07aefbd 19#include "fileio.h"
c4b41707 20#include "fs-util.h"
4349cd7c 21#include "label.h"
8e274523 22#include "log.h"
c9af1080 23#include "macro.h"
49e942b2 24#include "mkdir.h"
4349cd7c 25#include "mount-setup.h"
049af8ad 26#include "mountpoint-util.h"
d8b4d14d 27#include "nulstr-util.h"
9eb977db 28#include "path-util.h"
4349cd7c 29#include "set.h"
8552b176 30#include "smack-util.h"
4349cd7c 31#include "strv.h"
ee104e11 32#include "user-util.h"
4349cd7c 33#include "virt.h"
bef2733f 34
6aa220e0 35typedef enum MountMode {
ef31828d
LP
36 MNT_NONE = 0,
37 MNT_FATAL = 1 << 0,
38 MNT_IN_CONTAINER = 1 << 1,
39 MNT_CHECK_WRITABLE = 1 << 2,
6aa220e0
KS
40} MountMode;
41
ca714c0e
LP
42typedef struct MountPoint {
43 const char *what;
44 const char *where;
45 const char *type;
46 const char *options;
47 unsigned long flags;
6aa220e0
KS
48 bool (*condition_fn)(void);
49 MountMode mode;
ca714c0e
LP
50} MountPoint;
51
4ef31082 52/* The first three entries we might need before SELinux is up. The
160481f6 53 * fourth (securityfs) is needed by IMA to load a custom policy. The
7c96ab1d
LP
54 * other ones we can delay until SELinux and IMA are loaded. When
55 * SMACK is enabled we need smackfs, too, so it's a fifth one. */
f9fa32f0 56#if ENABLE_SMACK
ffbd2c4d 57#define N_EARLY_MOUNT 5
7c96ab1d
LP
58#else
59#define N_EARLY_MOUNT 4
60#endif
4ef31082 61
ca714c0e 62static const MountPoint mount_table[] = {
68d4c452
LP
63 { "sysfs", "/sys", "sysfs", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
64 NULL, MNT_FATAL|MNT_IN_CONTAINER },
65 { "proc", "/proc", "proc", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
66 NULL, MNT_FATAL|MNT_IN_CONTAINER },
67 { "devtmpfs", "/dev", "devtmpfs", "mode=755", MS_NOSUID|MS_STRICTATIME,
68 NULL, MNT_FATAL|MNT_IN_CONTAINER },
69 { "securityfs", "/sys/kernel/security", "securityfs", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
70 NULL, MNT_NONE },
f9fa32f0 71#if ENABLE_SMACK
68d4c452
LP
72 { "smackfs", "/sys/fs/smackfs", "smackfs", "smackfsdef=*", MS_NOSUID|MS_NOEXEC|MS_NODEV,
73 mac_smack_use, MNT_FATAL },
74 { "tmpfs", "/dev/shm", "tmpfs", "mode=1777,smackfsroot=*", MS_NOSUID|MS_NODEV|MS_STRICTATIME,
75 mac_smack_use, MNT_FATAL },
d407c940 76#endif
68d4c452
LP
77 { "tmpfs", "/dev/shm", "tmpfs", "mode=1777", MS_NOSUID|MS_NODEV|MS_STRICTATIME,
78 NULL, MNT_FATAL|MNT_IN_CONTAINER },
79 { "devpts", "/dev/pts", "devpts", "mode=620,gid=" STRINGIFY(TTY_GID), MS_NOSUID|MS_NOEXEC,
80 NULL, MNT_IN_CONTAINER },
f9fa32f0 81#if ENABLE_SMACK
68d4c452
LP
82 { "tmpfs", "/run", "tmpfs", "mode=755,smackfsroot=*", MS_NOSUID|MS_NODEV|MS_STRICTATIME,
83 mac_smack_use, MNT_FATAL },
d407c940 84#endif
68d4c452
LP
85 { "tmpfs", "/run", "tmpfs", "mode=755", MS_NOSUID|MS_NODEV|MS_STRICTATIME,
86 NULL, MNT_FATAL|MNT_IN_CONTAINER },
65900808 87 { "cgroup2", "/sys/fs/cgroup", "cgroup2", "nsdelegate", MS_NOSUID|MS_NOEXEC|MS_NODEV,
2d56b80a 88 cg_is_unified_wanted, MNT_IN_CONTAINER|MNT_CHECK_WRITABLE },
65900808 89 { "cgroup2", "/sys/fs/cgroup", "cgroup2", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
2d56b80a 90 cg_is_unified_wanted, MNT_IN_CONTAINER|MNT_CHECK_WRITABLE },
68d4c452 91 { "tmpfs", "/sys/fs/cgroup", "tmpfs", "mode=755", MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_STRICTATIME,
efdb0237 92 cg_is_legacy_wanted, MNT_FATAL|MNT_IN_CONTAINER },
65900808 93 { "cgroup2", "/sys/fs/cgroup/unified", "cgroup2", "nsdelegate", MS_NOSUID|MS_NOEXEC|MS_NODEV,
e07aefbd 94 cg_is_hybrid_wanted, MNT_IN_CONTAINER|MNT_CHECK_WRITABLE },
65900808 95 { "cgroup2", "/sys/fs/cgroup/unified", "cgroup2", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
e07aefbd 96 cg_is_hybrid_wanted, MNT_IN_CONTAINER|MNT_CHECK_WRITABLE },
68d4c452 97 { "cgroup", "/sys/fs/cgroup/systemd", "cgroup", "none,name=systemd,xattr", MS_NOSUID|MS_NOEXEC|MS_NODEV,
2977724b 98 cg_is_legacy_wanted, MNT_IN_CONTAINER },
68d4c452 99 { "cgroup", "/sys/fs/cgroup/systemd", "cgroup", "none,name=systemd", MS_NOSUID|MS_NOEXEC|MS_NODEV,
2977724b 100 cg_is_legacy_wanted, MNT_FATAL|MNT_IN_CONTAINER },
68d4c452
LP
101 { "pstore", "/sys/fs/pstore", "pstore", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
102 NULL, MNT_NONE },
349cc4a5 103#if ENABLE_EFI
68d4c452
LP
104 { "efivarfs", "/sys/firmware/efi/efivars", "efivarfs", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
105 is_efi_boot, MNT_NONE },
c06bf414 106#endif
39f305a9 107 { "bpf", "/sys/fs/bpf", "bpf", "mode=700", MS_NOSUID|MS_NOEXEC|MS_NODEV,
43b7f24b 108 NULL, MNT_NONE, },
63cc4c31
DM
109};
110
949c6510 111/* These are API file systems that might be mounted by other software,
46ff0ed7 112 * we just list them here so that we know that we should ignore them */
949c6510 113
eaeb18db
LP
114static const char ignore_paths[] =
115 /* SELinux file systems */
116 "/sys/fs/selinux\0"
eaeb18db
LP
117 /* Container bind mounts */
118 "/proc/sys\0"
119 "/dev/console\0"
c481f78b 120 "/proc/kmsg\0";
949c6510 121
dad08730
LP
122bool mount_point_is_api(const char *path) {
123 unsigned i;
124
125 /* Checks if this mount point is considered "API", and hence
126 * should be ignored */
127
ca714c0e 128 for (i = 0; i < ELEMENTSOF(mount_table); i ++)
449ddb2d 129 if (path_equal(path, mount_table[i].where))
dad08730
LP
130 return true;
131
57f2a956
KS
132 return path_startswith(path, "/sys/fs/cgroup/");
133}
134
135bool mount_point_ignore(const char *path) {
eaeb18db 136 const char *i;
57f2a956 137
eaeb18db
LP
138 NULSTR_FOREACH(i, ignore_paths)
139 if (path_equal(path, i))
949c6510
LP
140 return true;
141
57f2a956 142 return false;
dad08730
LP
143}
144
4ef31082 145static int mount_one(const MountPoint *p, bool relabel) {
713a8875 146 int r, priority;
8e274523 147
ca714c0e 148 assert(p);
8e274523 149
713a8875
LP
150 priority = (p->mode & MNT_FATAL) ? LOG_ERR : LOG_DEBUG;
151
6aa220e0
KS
152 if (p->condition_fn && !p->condition_fn())
153 return 0;
154
51b4af2c 155 /* Relabel first, just in case */
4ef31082 156 if (relabel)
08c84981 157 (void) label_fix(p->where, LABEL_IGNORE_ENOENT|LABEL_IGNORE_EROFS);
51b4af2c 158
e1873695 159 r = path_is_mount_point(p->where, NULL, AT_SYMLINK_FOLLOW);
1411b094 160 if (r < 0 && r != -ENOENT) {
713a8875 161 log_full_errno(priority, r, "Failed to determine whether %s is a mount point: %m", p->where);
1411b094
LP
162 return (p->mode & MNT_FATAL) ? r : 0;
163 }
8e274523 164 if (r > 0)
51b4af2c 165 return 0;
8e274523 166
c481f78b 167 /* Skip securityfs in a container */
75f86906 168 if (!(p->mode & MNT_IN_CONTAINER) && detect_container() > 0)
c481f78b
LP
169 return 0;
170
a04f58d6
LP
171 /* The access mode here doesn't really matter too much, since
172 * the mounted file system will take precedence anyway. */
c4bfd169 173 if (relabel)
1411b094 174 (void) mkdir_p_label(p->where, 0755);
c4bfd169 175 else
1411b094 176 (void) mkdir_p(p->where, 0755);
a04f58d6 177
8e274523 178 log_debug("Mounting %s to %s of type %s with options %s.",
ca714c0e
LP
179 p->what,
180 p->where,
181 p->type,
182 strna(p->options));
183
184 if (mount(p->what,
185 p->where,
186 p->type,
187 p->flags,
188 p->options) < 0) {
713a8875 189 log_full_errno(priority, errno, "Failed to mount %s at %s: %m", p->type, p->where);
6aa220e0 190 return (p->mode & MNT_FATAL) ? -errno : 0;
8e274523
LP
191 }
192
51b4af2c 193 /* Relabel again, since we now mounted something fresh here */
4ef31082 194 if (relabel)
08c84981 195 (void) label_fix(p->where, 0);
5275d3c1 196
e07aefbd 197 if (p->mode & MNT_CHECK_WRITABLE) {
713a8875
LP
198 if (access(p->where, W_OK) < 0) {
199 r = -errno;
200
e07aefbd 201 (void) umount(p->where);
1ff654e2 202 (void) rmdir(p->where);
713a8875
LP
203
204 log_full_errno(priority, r, "Mount point %s not writable after mounting: %m", p->where);
e07aefbd
CB
205 return (p->mode & MNT_FATAL) ? r : 0;
206 }
207 }
208
0c85a4f3 209 return 1;
8e274523
LP
210}
211
400fac06 212static int mount_points_setup(unsigned n, bool loaded_policy) {
4ef31082
LP
213 unsigned i;
214 int r = 0;
215
400fac06 216 for (i = 0; i < n; i ++) {
4ef31082
LP
217 int j;
218
400fac06 219 j = mount_one(mount_table + i, loaded_policy);
7ff307bc 220 if (j != 0 && r >= 0)
4ef31082
LP
221 r = j;
222 }
223
224 return r;
225}
226
400fac06
AK
227int mount_setup_early(void) {
228 assert_cc(N_EARLY_MOUNT <= ELEMENTSOF(mount_table));
229
230 /* Do a minimal mount of /proc and friends to enable the most
231 * basic stuff, such as SELinux */
232 return mount_points_setup(N_EARLY_MOUNT, false);
233}
234
143fadf3
LP
235static const char *join_with(const char *controller) {
236
237 static const char* const pairs[] = {
238 "cpu", "cpuacct",
239 "net_cls", "net_prio",
240 NULL
241 };
242
243 const char *const *x, *const *y;
244
245 assert(controller);
246
247 /* This will lookup which controller to mount another controller with. Input is a controller name, and output
248 * is the other controller name. The function works both ways: you can input one and get the other, and input
249 * the other to get the one. */
250
251 STRV_FOREACH_PAIR(x, y, pairs) {
252 if (streq(controller, *x))
253 return *y;
254 if (streq(controller, *y))
255 return *x;
256 }
257
258 return NULL;
259}
260
261static int symlink_controller(const char *target, const char *alias) {
262 const char *a;
263 int r;
264
265 assert(target);
266 assert(alias);
267
268 a = strjoina("/sys/fs/cgroup/", alias);
269
270 r = symlink_idempotent(target, a, false);
271 if (r < 0)
272 return log_error_errno(r, "Failed to create symlink %s: %m", a);
273
274#ifdef SMACK_RUN_LABEL
275 const char *p;
276
277 p = strjoina("/sys/fs/cgroup/", target);
278
279 r = mac_smack_copy(a, p);
280 if (r < 0 && r != -EOPNOTSUPP)
281 return log_error_errno(r, "Failed to copy smack label from %s to %s: %m", p, a);
282#endif
283
284 return 0;
285}
286
287int mount_cgroup_controllers(void) {
a6b26d90 288 _cleanup_set_free_free_ Set *controllers = NULL;
a641dcd9 289 int r;
2076ca54 290
efdb0237
LP
291 if (!cg_is_legacy_wanted())
292 return 0;
293
670802d4 294 /* Mount all available cgroup controllers that are built into the kernel. */
6925a0de 295 r = cg_kernel_controllers(&controllers);
b12afc8c
LP
296 if (r < 0)
297 return log_error_errno(r, "Failed to enumerate cgroup controllers: %m");
0c85a4f3
LP
298
299 for (;;) {
a641dcd9 300 _cleanup_free_ char *options = NULL, *controller = NULL, *where = NULL;
143fadf3 301 const char *other_controller;
a6b26d90
ZJS
302 MountPoint p = {
303 .what = "cgroup",
304 .type = "cgroup",
305 .flags = MS_NOSUID|MS_NOEXEC|MS_NODEV,
306 .mode = MNT_IN_CONTAINER,
307 };
0c85a4f3
LP
308
309 controller = set_steal_first(controllers);
310 if (!controller)
311 break;
312
143fadf3
LP
313 /* Check if we shall mount this together with another controller */
314 other_controller = join_with(controller);
315 if (other_controller) {
316 _cleanup_free_ char *c = NULL;
317
318 /* Check if the other controller is actually available in the kernel too */
319 c = set_remove(controllers, other_controller);
320 if (c) {
321
322 /* Join the two controllers into one string, and maintain a stable ordering */
323 if (strcmp(controller, other_controller) < 0)
324 options = strjoin(controller, ",", other_controller);
325 else
326 options = strjoin(other_controller, ",", controller);
327 if (!options)
328 return log_oom();
0c85a4f3 329 }
143fadf3 330 }
0c85a4f3 331
143fadf3
LP
332 /* The simple case, where there's only one controller to mount together */
333 if (!options)
ae2a15bc 334 options = TAKE_PTR(controller);
0c85a4f3 335
b910cc72 336 where = path_join("/sys/fs/cgroup", options);
a641dcd9
LP
337 if (!where)
338 return log_oom();
339
340 p.where = where;
0c85a4f3 341 p.options = options;
2076ca54 342
4ef31082 343 r = mount_one(&p, true);
a6b26d90
ZJS
344 if (r < 0)
345 return r;
0c85a4f3 346
143fadf3
LP
347 /* Create symlinks from the individual controller names, in case we have a joined mount */
348 if (controller)
349 (void) symlink_controller(options, controller);
350 if (other_controller)
351 (void) symlink_controller(options, other_controller);
2076ca54
LP
352 }
353
143fadf3 354 /* Now that we mounted everything, let's make the tmpfs the cgroup file systems are mounted into read-only. */
b12afc8c 355 (void) mount("tmpfs", "/sys/fs/cgroup", "tmpfs", MS_REMOUNT|MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_STRICTATIME|MS_RDONLY, "mode=755");
679142ce 356
a6b26d90 357 return 0;
2076ca54
LP
358}
359
f9fa32f0 360#if HAVE_SELINUX || ENABLE_SMACK
1829dc9d
LP
361static int nftw_cb(
362 const char *fpath,
363 const struct stat *sb,
364 int tflag,
365 struct FTW *ftwbuf) {
366
9fe117ea 367 /* No need to label /dev twice in a row... */
edb49778
LP
368 if (_unlikely_(ftwbuf->level == 0))
369 return FTW_CONTINUE;
370
08c84981 371 (void) label_fix(fpath, 0);
af65c248 372
edb49778 373 /* /run/initramfs is static data and big, no need to
af65c248 374 * dynamically relabel its contents at boot... */
edb49778
LP
375 if (_unlikely_(ftwbuf->level == 1 &&
376 tflag == FTW_D &&
377 streq(fpath, "/run/initramfs")))
378 return FTW_SKIP_SUBTREE;
9fe117ea 379
edb49778 380 return FTW_CONTINUE;
1829dc9d 381};
6f7729c1
KN
382
383static int relabel_cgroup_filesystems(void) {
384 int r;
385 struct statfs st;
386
387 r = cg_all_unified();
388 if (r == 0) {
389 /* Temporarily remount the root cgroup filesystem to give it a proper label. Do this
390 only when the filesystem has been already populated by a previous instance of systemd
391 running from initrd. Otherwise don't remount anything and leave the filesystem read-write
392 for the cgroup filesystems to be mounted inside. */
771b7ead 393 if (statfs("/sys/fs/cgroup", &st) < 0)
6f7729c1 394 return log_error_errno(errno, "Failed to determine mount flags for /sys/fs/cgroup: %m");
6f7729c1
KN
395
396 if (st.f_flags & ST_RDONLY)
397 (void) mount(NULL, "/sys/fs/cgroup", NULL, MS_REMOUNT, NULL);
398
399 (void) label_fix("/sys/fs/cgroup", 0);
771b7ead 400 (void) nftw("/sys/fs/cgroup", nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL);
6f7729c1
KN
401
402 if (st.f_flags & ST_RDONLY)
403 (void) mount(NULL, "/sys/fs/cgroup", NULL, MS_REMOUNT|MS_RDONLY, NULL);
771b7ead 404
6f7729c1
KN
405 } else if (r < 0)
406 return log_error_errno(r, "Failed to determine whether we are in all unified mode: %m");
407
408 return 0;
409}
65e183d7
LP
410
411static int relabel_extra(void) {
48da02ec
ZJS
412 _cleanup_strv_free_ char **files = NULL;
413 char **file;
65e183d7
LP
414 int r, c = 0;
415
416 /* Support for relabelling additional files or directories after loading the policy. For this, code in the
417 * initrd simply has to drop in *.relabel files into /run/systemd/relabel-extra.d/. We'll read all such files
418 * expecting one absolute path by line and will relabel each (and everyone below that in case the path refers
419 * to a directory). These drop-in files are supposed to be absolutely minimal, and do not understand comments
420 * and such. After the operation succeeded the files are removed, and the drop-in directory as well, if
421 * possible.
422 */
423
48da02ec
ZJS
424 r = conf_files_list(&files, ".relabel", NULL,
425 CONF_FILES_FILTER_MASKED | CONF_FILES_REGULAR,
36b12282 426 "/run/systemd/relabel-extra.d/");
48da02ec
ZJS
427 if (r < 0)
428 return log_error_errno(r, "Failed to enumerate /run/systemd/relabel-extra.d/, ignoring: %m");
65e183d7 429
48da02ec 430 STRV_FOREACH(file, files) {
65e183d7 431 _cleanup_fclose_ FILE *f = NULL;
65e183d7 432
48da02ec 433 f = fopen(*file, "re");
65e183d7 434 if (!f) {
48da02ec 435 log_warning_errno(errno, "Failed to open %s, ignoring: %m", *file);
65e183d7
LP
436 continue;
437 }
65e183d7
LP
438
439 for (;;) {
440 _cleanup_free_ char *line = NULL;
441
442 r = read_line(f, LONG_LINE_MAX, &line);
443 if (r < 0) {
48da02ec 444 log_warning_errno(r, "Failed to read %s, ignoring: %m", *file);
65e183d7
LP
445 break;
446 }
447 if (r == 0) /* EOF */
448 break;
449
450 path_simplify(line, true);
451
452 if (!path_is_normalized(line)) {
453 log_warning("Path to relabel is not normalized, ignoring: %s", line);
454 continue;
455 }
456
457 if (!path_is_absolute(line)) {
458 log_warning("Path to relabel is not absolute, ignoring: %s", line);
459 continue;
460 }
461
462 log_debug("Relabelling additional file/directory '%s'.", line);
71de6847 463 (void) label_fix(line, 0);
65e183d7
LP
464 (void) nftw(line, nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL);
465 c++;
466 }
467
48da02ec
ZJS
468 if (unlink(*file) < 0)
469 log_warning_errno(errno, "Failed to remove %s, ignoring: %m", *file);
65e183d7
LP
470 }
471
48da02ec 472 /* Remove when we complete things. */
90b059b6
ZJS
473 if (rmdir("/run/systemd/relabel-extra.d") < 0 &&
474 errno != ENOENT)
65e183d7
LP
475 log_warning_errno(errno, "Failed to remove /run/systemd/relabel-extra.d/ directory: %m");
476
477 return c;
478}
0fff82e5 479#endif
1829dc9d 480
0b3325e7 481int mount_setup(bool loaded_policy) {
68d4c452 482 int r = 0;
8e274523 483
400fac06 484 r = mount_points_setup(ELEMENTSOF(mount_table), loaded_policy);
68d4c452
LP
485 if (r < 0)
486 return r;
487
f9fa32f0 488#if HAVE_SELINUX || ENABLE_SMACK
f1d19aa4
LP
489 /* Nodes in devtmpfs and /run need to be manually updated for
490 * the appropriate labels, after mounting. The other virtual
491 * API file systems like /sys and /proc do not need that, they
492 * use the same label for all their files. */
0b3325e7
LP
493 if (loaded_policy) {
494 usec_t before_relabel, after_relabel;
495 char timespan[FORMAT_TIMESPAN_MAX];
c4217b43 496 const char *i;
65e183d7 497 int n_extra;
0b3325e7
LP
498
499 before_relabel = now(CLOCK_MONOTONIC);
500
c4217b43
LP
501 FOREACH_STRING(i, "/dev", "/dev/shm", "/run")
502 (void) nftw(i, nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL);
0b3325e7 503
70a74ec6 504 (void) relabel_cgroup_filesystems();
8739f23e 505
65e183d7
LP
506 n_extra = relabel_extra();
507
0b3325e7
LP
508 after_relabel = now(CLOCK_MONOTONIC);
509
65e183d7
LP
510 log_info("Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup%s in %s.",
511 n_extra > 0 ? ", additional files" : "",
2fa4092c 512 format_timespan(timespan, sizeof(timespan), after_relabel - before_relabel, 0));
3bbecb2f 513 }
0fff82e5 514#endif
1829dc9d 515
5c0532d1 516 /* Create a few default symlinks, which are normally created
f1d19aa4 517 * by udevd, but some scripts might need them before we start
5c0532d1 518 * udevd. */
03cfe0d5 519 dev_setup(NULL, UID_INVALID, GID_INVALID);
5c0532d1 520
dee22f39
LP
521 /* Mark the root directory as shared in regards to mount propagation. The kernel defaults to "private", but we
522 * think it makes more sense to have a default of "shared" so that nspawn and the container tools work out of
523 * the box. If specific setups need other settings they can reset the propagation mode to private if
524 * needed. Note that we set this only when we are invoked directly by the kernel. If we are invoked by a
525 * container manager we assume the container manager knows what it is doing (for example, because it set up
526 * some directories with different propagation modes). */
75f86906 527 if (detect_container() <= 0)
c481f78b 528 if (mount(NULL, "/", NULL, MS_REC|MS_SHARED, NULL) < 0)
56f64d95 529 log_warning_errno(errno, "Failed to set up the root directory for shared mount propagation: %m");
b3ac5f8c 530
dee22f39
LP
531 /* Create a few directories we always want around, Note that sd_booted() checks for /run/systemd/system, so
532 * this mkdir really needs to stay for good, otherwise software that copied sd-daemon.c into their sources will
533 * misdetect systemd. */
c4b41707
AP
534 (void) mkdir_label("/run/systemd", 0755);
535 (void) mkdir_label("/run/systemd/system", 0755);
dee22f39 536
30874dda
LP
537 /* Also create /run/systemd/inaccessible nodes, so that we always have something to mount inaccessible nodes
538 * from. */
539 (void) make_inaccessible_nodes(NULL, UID_INVALID, GID_INVALID);
fe80fcc7 540
0c85a4f3 541 return 0;
8e274523 542}