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