]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/mount-setup.c
Merge pull request #9274 from poettering/comment-header-cleanup
[thirdparty/systemd.git] / src / core / mount-setup.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <errno.h>
4 #include <ftw.h>
5 #include <stdlib.h>
6 #include <sys/mount.h>
7 #include <sys/statvfs.h>
8 #include <unistd.h>
9
10 #include "alloc-util.h"
11 #include "bus-util.h"
12 #include "cgroup-util.h"
13 #include "dev-setup.h"
14 #include "efivars.h"
15 #include "fileio.h"
16 #include "fs-util.h"
17 #include "label.h"
18 #include "log.h"
19 #include "macro.h"
20 #include "missing.h"
21 #include "mkdir.h"
22 #include "mount-setup.h"
23 #include "mount-util.h"
24 #include "path-util.h"
25 #include "set.h"
26 #include "smack-util.h"
27 #include "strv.h"
28 #include "user-util.h"
29 #include "util.h"
30 #include "virt.h"
31
32 typedef enum MountMode {
33 MNT_NONE = 0,
34 MNT_FATAL = 1 << 0,
35 MNT_IN_CONTAINER = 1 << 1,
36 MNT_CHECK_WRITABLE = 1 << 2,
37 } MountMode;
38
39 typedef struct MountPoint {
40 const char *what;
41 const char *where;
42 const char *type;
43 const char *options;
44 unsigned long flags;
45 bool (*condition_fn)(void);
46 MountMode mode;
47 } MountPoint;
48
49 /* The first three entries we might need before SELinux is up. The
50 * fourth (securityfs) is needed by IMA to load a custom policy. The
51 * other ones we can delay until SELinux and IMA are loaded. When
52 * SMACK is enabled we need smackfs, too, so it's a fifth one. */
53 #if ENABLE_SMACK
54 #define N_EARLY_MOUNT 5
55 #else
56 #define N_EARLY_MOUNT 4
57 #endif
58
59 static const MountPoint mount_table[] = {
60 { "sysfs", "/sys", "sysfs", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
61 NULL, MNT_FATAL|MNT_IN_CONTAINER },
62 { "proc", "/proc", "proc", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
63 NULL, MNT_FATAL|MNT_IN_CONTAINER },
64 { "devtmpfs", "/dev", "devtmpfs", "mode=755", MS_NOSUID|MS_STRICTATIME,
65 NULL, MNT_FATAL|MNT_IN_CONTAINER },
66 { "securityfs", "/sys/kernel/security", "securityfs", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
67 NULL, MNT_NONE },
68 #if ENABLE_SMACK
69 { "smackfs", "/sys/fs/smackfs", "smackfs", "smackfsdef=*", MS_NOSUID|MS_NOEXEC|MS_NODEV,
70 mac_smack_use, MNT_FATAL },
71 { "tmpfs", "/dev/shm", "tmpfs", "mode=1777,smackfsroot=*", MS_NOSUID|MS_NODEV|MS_STRICTATIME,
72 mac_smack_use, MNT_FATAL },
73 #endif
74 { "tmpfs", "/dev/shm", "tmpfs", "mode=1777", MS_NOSUID|MS_NODEV|MS_STRICTATIME,
75 NULL, MNT_FATAL|MNT_IN_CONTAINER },
76 { "devpts", "/dev/pts", "devpts", "mode=620,gid=" STRINGIFY(TTY_GID), MS_NOSUID|MS_NOEXEC,
77 NULL, MNT_IN_CONTAINER },
78 #if ENABLE_SMACK
79 { "tmpfs", "/run", "tmpfs", "mode=755,smackfsroot=*", MS_NOSUID|MS_NODEV|MS_STRICTATIME,
80 mac_smack_use, MNT_FATAL },
81 #endif
82 { "tmpfs", "/run", "tmpfs", "mode=755", MS_NOSUID|MS_NODEV|MS_STRICTATIME,
83 NULL, MNT_FATAL|MNT_IN_CONTAINER },
84 { "cgroup2", "/sys/fs/cgroup", "cgroup2", "nsdelegate", MS_NOSUID|MS_NOEXEC|MS_NODEV,
85 cg_is_unified_wanted, MNT_IN_CONTAINER|MNT_CHECK_WRITABLE },
86 { "cgroup2", "/sys/fs/cgroup", "cgroup2", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
87 cg_is_unified_wanted, MNT_IN_CONTAINER|MNT_CHECK_WRITABLE },
88 { "tmpfs", "/sys/fs/cgroup", "tmpfs", "mode=755", MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_STRICTATIME,
89 cg_is_legacy_wanted, MNT_FATAL|MNT_IN_CONTAINER },
90 { "cgroup2", "/sys/fs/cgroup/unified", "cgroup2", "nsdelegate", MS_NOSUID|MS_NOEXEC|MS_NODEV,
91 cg_is_hybrid_wanted, MNT_IN_CONTAINER|MNT_CHECK_WRITABLE },
92 { "cgroup2", "/sys/fs/cgroup/unified", "cgroup2", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
93 cg_is_hybrid_wanted, MNT_IN_CONTAINER|MNT_CHECK_WRITABLE },
94 { "cgroup", "/sys/fs/cgroup/systemd", "cgroup", "none,name=systemd,xattr", MS_NOSUID|MS_NOEXEC|MS_NODEV,
95 cg_is_legacy_wanted, MNT_IN_CONTAINER },
96 { "cgroup", "/sys/fs/cgroup/systemd", "cgroup", "none,name=systemd", MS_NOSUID|MS_NOEXEC|MS_NODEV,
97 cg_is_legacy_wanted, MNT_FATAL|MNT_IN_CONTAINER },
98 { "pstore", "/sys/fs/pstore", "pstore", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
99 NULL, MNT_NONE },
100 #if ENABLE_EFI
101 { "efivarfs", "/sys/firmware/efi/efivars", "efivarfs", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
102 is_efi_boot, MNT_NONE },
103 #endif
104 { "bpf", "/sys/fs/bpf", "bpf", "mode=700", MS_NOSUID|MS_NOEXEC|MS_NODEV,
105 NULL, MNT_NONE, },
106 };
107
108 /* These are API file systems that might be mounted by other software,
109 * we just list them here so that we know that we should ignore them */
110
111 static const char ignore_paths[] =
112 /* SELinux file systems */
113 "/sys/fs/selinux\0"
114 /* Container bind mounts */
115 "/proc/sys\0"
116 "/dev/console\0"
117 "/proc/kmsg\0";
118
119 bool mount_point_is_api(const char *path) {
120 unsigned i;
121
122 /* Checks if this mount point is considered "API", and hence
123 * should be ignored */
124
125 for (i = 0; i < ELEMENTSOF(mount_table); i ++)
126 if (path_equal(path, mount_table[i].where))
127 return true;
128
129 return path_startswith(path, "/sys/fs/cgroup/");
130 }
131
132 bool mount_point_ignore(const char *path) {
133 const char *i;
134
135 NULSTR_FOREACH(i, ignore_paths)
136 if (path_equal(path, i))
137 return true;
138
139 return false;
140 }
141
142 static int mount_one(const MountPoint *p, bool relabel) {
143 int r, priority;
144
145 assert(p);
146
147 priority = (p->mode & MNT_FATAL) ? LOG_ERR : LOG_DEBUG;
148
149 if (p->condition_fn && !p->condition_fn())
150 return 0;
151
152 /* Relabel first, just in case */
153 if (relabel)
154 (void) label_fix(p->where, LABEL_IGNORE_ENOENT|LABEL_IGNORE_EROFS);
155
156 r = path_is_mount_point(p->where, NULL, AT_SYMLINK_FOLLOW);
157 if (r < 0 && r != -ENOENT) {
158 log_full_errno(priority, r, "Failed to determine whether %s is a mount point: %m", p->where);
159 return (p->mode & MNT_FATAL) ? r : 0;
160 }
161 if (r > 0)
162 return 0;
163
164 /* Skip securityfs in a container */
165 if (!(p->mode & MNT_IN_CONTAINER) && detect_container() > 0)
166 return 0;
167
168 /* The access mode here doesn't really matter too much, since
169 * the mounted file system will take precedence anyway. */
170 if (relabel)
171 (void) mkdir_p_label(p->where, 0755);
172 else
173 (void) mkdir_p(p->where, 0755);
174
175 log_debug("Mounting %s to %s of type %s with options %s.",
176 p->what,
177 p->where,
178 p->type,
179 strna(p->options));
180
181 if (mount(p->what,
182 p->where,
183 p->type,
184 p->flags,
185 p->options) < 0) {
186 log_full_errno(priority, errno, "Failed to mount %s at %s: %m", p->type, p->where);
187 return (p->mode & MNT_FATAL) ? -errno : 0;
188 }
189
190 /* Relabel again, since we now mounted something fresh here */
191 if (relabel)
192 (void) label_fix(p->where, 0);
193
194 if (p->mode & MNT_CHECK_WRITABLE) {
195 if (access(p->where, W_OK) < 0) {
196 r = -errno;
197
198 (void) umount(p->where);
199 (void) rmdir(p->where);
200
201 log_full_errno(priority, r, "Mount point %s not writable after mounting: %m", p->where);
202 return (p->mode & MNT_FATAL) ? r : 0;
203 }
204 }
205
206 return 1;
207 }
208
209 static int mount_points_setup(unsigned n, bool loaded_policy) {
210 unsigned i;
211 int r = 0;
212
213 for (i = 0; i < n; i ++) {
214 int j;
215
216 j = mount_one(mount_table + i, loaded_policy);
217 if (j != 0 && r >= 0)
218 r = j;
219 }
220
221 return r;
222 }
223
224 int mount_setup_early(void) {
225 assert_cc(N_EARLY_MOUNT <= ELEMENTSOF(mount_table));
226
227 /* Do a minimal mount of /proc and friends to enable the most
228 * basic stuff, such as SELinux */
229 return mount_points_setup(N_EARLY_MOUNT, false);
230 }
231
232 int mount_cgroup_controllers(char ***join_controllers) {
233 _cleanup_set_free_free_ Set *controllers = NULL;
234 bool has_argument = !!join_controllers;
235 int r;
236
237 if (!cg_is_legacy_wanted())
238 return 0;
239
240 /* Mount all available cgroup controllers that are built into the kernel. */
241
242 if (!has_argument)
243 /* The defaults:
244 * mount "cpu" + "cpuacct" together, and "net_cls" + "net_prio".
245 *
246 * We'd like to add "cpuset" to the mix, but "cpuset" doesn't really
247 * work for groups with no initialized attributes.
248 */
249 join_controllers = (char**[]) {
250 STRV_MAKE("cpu", "cpuacct"),
251 STRV_MAKE("net_cls", "net_prio"),
252 NULL,
253 };
254
255 r = cg_kernel_controllers(&controllers);
256 if (r < 0)
257 return log_error_errno(r, "Failed to enumerate cgroup controllers: %m");
258
259 for (;;) {
260 _cleanup_free_ char *options = NULL, *controller = NULL, *where = NULL;
261 MountPoint p = {
262 .what = "cgroup",
263 .type = "cgroup",
264 .flags = MS_NOSUID|MS_NOEXEC|MS_NODEV,
265 .mode = MNT_IN_CONTAINER,
266 };
267 char ***k = NULL;
268
269 controller = set_steal_first(controllers);
270 if (!controller)
271 break;
272
273 for (k = join_controllers; *k; k++)
274 if (strv_find(*k, controller))
275 break;
276
277 if (*k) {
278 char **i, **j;
279
280 for (i = *k, j = *k; *i; i++) {
281
282 if (!streq(*i, controller)) {
283 _cleanup_free_ char *t;
284
285 t = set_remove(controllers, *i);
286 if (!t) {
287 if (has_argument)
288 free(*i);
289 continue;
290 }
291 }
292
293 *(j++) = *i;
294 }
295
296 *j = NULL;
297
298 options = strv_join(*k, ",");
299 if (!options)
300 return log_oom();
301 } else
302 options = TAKE_PTR(controller);
303
304 where = strappend("/sys/fs/cgroup/", options);
305 if (!where)
306 return log_oom();
307
308 p.where = where;
309 p.options = options;
310
311 r = mount_one(&p, true);
312 if (r < 0)
313 return r;
314
315 if (r > 0 && *k) {
316 char **i;
317
318 for (i = *k; *i; i++) {
319 _cleanup_free_ char *t = NULL;
320
321 t = strappend("/sys/fs/cgroup/", *i);
322 if (!t)
323 return log_oom();
324
325 r = symlink(options, t);
326 if (r >= 0) {
327 #ifdef SMACK_RUN_LABEL
328 _cleanup_free_ char *src;
329 src = strappend("/sys/fs/cgroup/", options);
330 if (!src)
331 return log_oom();
332 r = mac_smack_copy(t, src);
333 if (r < 0 && r != -EOPNOTSUPP)
334 return log_error_errno(r, "Failed to copy smack label from %s to %s: %m", src, t);
335 #endif
336 } else if (errno != EEXIST)
337 return log_error_errno(errno, "Failed to create symlink %s: %m", t);
338 }
339 }
340 }
341
342 /* Now that we mounted everything, let's make the tmpfs the
343 * cgroup file systems are mounted into read-only. */
344 (void) mount("tmpfs", "/sys/fs/cgroup", "tmpfs", MS_REMOUNT|MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_STRICTATIME|MS_RDONLY, "mode=755");
345
346 return 0;
347 }
348
349 #if HAVE_SELINUX || ENABLE_SMACK
350 static int nftw_cb(
351 const char *fpath,
352 const struct stat *sb,
353 int tflag,
354 struct FTW *ftwbuf) {
355
356 /* No need to label /dev twice in a row... */
357 if (_unlikely_(ftwbuf->level == 0))
358 return FTW_CONTINUE;
359
360 (void) label_fix(fpath, 0);
361
362 /* /run/initramfs is static data and big, no need to
363 * dynamically relabel its contents at boot... */
364 if (_unlikely_(ftwbuf->level == 1 &&
365 tflag == FTW_D &&
366 streq(fpath, "/run/initramfs")))
367 return FTW_SKIP_SUBTREE;
368
369 return FTW_CONTINUE;
370 };
371
372 static int relabel_cgroup_filesystems(void) {
373 int r;
374 struct statfs st;
375
376 r = cg_all_unified();
377 if (r == 0) {
378 /* Temporarily remount the root cgroup filesystem to give it a proper label. Do this
379 only when the filesystem has been already populated by a previous instance of systemd
380 running from initrd. Otherwise don't remount anything and leave the filesystem read-write
381 for the cgroup filesystems to be mounted inside. */
382 if (statfs("/sys/fs/cgroup", &st) < 0)
383 return log_error_errno(errno, "Failed to determine mount flags for /sys/fs/cgroup: %m");
384
385 if (st.f_flags & ST_RDONLY)
386 (void) mount(NULL, "/sys/fs/cgroup", NULL, MS_REMOUNT, NULL);
387
388 (void) label_fix("/sys/fs/cgroup", 0);
389 (void) nftw("/sys/fs/cgroup", nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL);
390
391 if (st.f_flags & ST_RDONLY)
392 (void) mount(NULL, "/sys/fs/cgroup", NULL, MS_REMOUNT|MS_RDONLY, NULL);
393
394 } else if (r < 0)
395 return log_error_errno(r, "Failed to determine whether we are in all unified mode: %m");
396
397 return 0;
398 }
399 #endif
400
401 int mount_setup(bool loaded_policy) {
402 int r = 0;
403
404 r = mount_points_setup(ELEMENTSOF(mount_table), loaded_policy);
405 if (r < 0)
406 return r;
407
408 #if HAVE_SELINUX || ENABLE_SMACK
409 /* Nodes in devtmpfs and /run need to be manually updated for
410 * the appropriate labels, after mounting. The other virtual
411 * API file systems like /sys and /proc do not need that, they
412 * use the same label for all their files. */
413 if (loaded_policy) {
414 usec_t before_relabel, after_relabel;
415 char timespan[FORMAT_TIMESPAN_MAX];
416
417 before_relabel = now(CLOCK_MONOTONIC);
418
419 (void) nftw("/dev", nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL);
420 (void) nftw("/dev/shm", nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL);
421 (void) nftw("/run", nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL);
422
423 r = relabel_cgroup_filesystems();
424 if (r < 0)
425 return r;
426
427 after_relabel = now(CLOCK_MONOTONIC);
428
429 log_info("Relabelled /dev, /run and /sys/fs/cgroup in %s.",
430 format_timespan(timespan, sizeof(timespan), after_relabel - before_relabel, 0));
431 }
432 #endif
433
434 /* Create a few default symlinks, which are normally created
435 * by udevd, but some scripts might need them before we start
436 * udevd. */
437 dev_setup(NULL, UID_INVALID, GID_INVALID);
438
439 /* Mark the root directory as shared in regards to mount propagation. The kernel defaults to "private", but we
440 * think it makes more sense to have a default of "shared" so that nspawn and the container tools work out of
441 * the box. If specific setups need other settings they can reset the propagation mode to private if
442 * needed. Note that we set this only when we are invoked directly by the kernel. If we are invoked by a
443 * container manager we assume the container manager knows what it is doing (for example, because it set up
444 * some directories with different propagation modes). */
445 if (detect_container() <= 0)
446 if (mount(NULL, "/", NULL, MS_REC|MS_SHARED, NULL) < 0)
447 log_warning_errno(errno, "Failed to set up the root directory for shared mount propagation: %m");
448
449 /* Create a few directories we always want around, Note that sd_booted() checks for /run/systemd/system, so
450 * this mkdir really needs to stay for good, otherwise software that copied sd-daemon.c into their sources will
451 * misdetect systemd. */
452 (void) mkdir_label("/run/systemd", 0755);
453 (void) mkdir_label("/run/systemd/system", 0755);
454
455 /* Set up inaccessible (and empty) file nodes of all types */
456 (void) mkdir_label("/run/systemd/inaccessible", 0000);
457 (void) mknod("/run/systemd/inaccessible/reg", S_IFREG | 0000, 0);
458 (void) mkdir_label("/run/systemd/inaccessible/dir", 0000);
459 (void) mkfifo("/run/systemd/inaccessible/fifo", 0000);
460 (void) mknod("/run/systemd/inaccessible/sock", S_IFSOCK | 0000, 0);
461
462 /* The following two are likely to fail if we lack the privs for it (for example in an userns environment, if
463 * CAP_SYS_MKNOD is missing, or if a device node policy prohibit major/minor of 0 device nodes to be
464 * created). But that's entirely fine. Consumers of these files should carry fallback to use a different node
465 * then, for example /run/systemd/inaccessible/sock, which is close enough in behaviour and semantics for most
466 * uses. */
467 (void) mknod("/run/systemd/inaccessible/chr", S_IFCHR | 0000, makedev(0, 0));
468 (void) mknod("/run/systemd/inaccessible/blk", S_IFBLK | 0000, makedev(0, 0));
469
470 return 0;
471 }