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