1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 #include <sys/mount.h>
32 #include "mount-setup.h"
44 typedef struct MountPoint {
53 /* The first three entries we might need before SELinux is up. The
54 * other ones we can delay until SELinux is loaded. */
55 #define N_EARLY_MOUNT 3
57 static const MountPoint mount_table[] = {
58 { "proc", "/proc", "proc", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV, true },
59 { "sysfs", "/sys", "sysfs", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV, true },
60 { "devtmpfs", "/dev", "devtmpfs", "mode=755", MS_NOSUID, true },
61 { "tmpfs", "/dev/shm", "tmpfs", "mode=1777", MS_NOSUID|MS_NODEV, true },
62 { "devpts", "/dev/pts", "devpts", "mode=620,gid=" STRINGIFY(TTY_GID), MS_NOSUID|MS_NOEXEC, false },
63 { "tmpfs", "/run", "tmpfs", "mode=755", MS_NOSUID|MS_NODEV, true },
64 { "tmpfs", "/sys/fs/cgroup", "tmpfs", "mode=755", MS_NOSUID|MS_NOEXEC|MS_NODEV, false },
65 { "cgroup", "/sys/fs/cgroup/systemd", "cgroup", "none,name=systemd", MS_NOSUID|MS_NOEXEC|MS_NODEV, false },
68 /* These are API file systems that might be mounted by other software,
69 * we just list them here so that we know that we should ignore them */
71 static const char * const ignore_paths[] = {
77 bool mount_point_is_api(const char *path) {
80 /* Checks if this mount point is considered "API", and hence
81 * should be ignored */
83 for (i = 0; i < ELEMENTSOF(mount_table); i ++)
84 if (path_equal(path, mount_table[i].where))
87 return path_startswith(path, "/sys/fs/cgroup/");
90 bool mount_point_ignore(const char *path) {
93 for (i = 0; i < ELEMENTSOF(ignore_paths); i++)
94 if (path_equal(path, ignore_paths[i]))
100 static int mount_one(const MountPoint *p, bool relabel) {
105 /* Relabel first, just in case */
107 label_fix(p->where, true);
109 if ((r = path_is_mount_point(p->where, true)) < 0)
115 /* The access mode here doesn't really matter too much, since
116 * the mounted file system will take precedence anyway. */
117 mkdir_p(p->where, 0755);
119 log_debug("Mounting %s to %s of type %s with options %s.",
130 log_error("Failed to mount %s: %s", p->where, strerror(errno));
131 return p->fatal ? -errno : 0;
134 /* Relabel again, since we now mounted something fresh here */
136 label_fix(p->where, false);
141 int mount_setup_early(void) {
145 assert_cc(N_EARLY_MOUNT <= ELEMENTSOF(mount_table));
147 /* Do a minimal mount of /proc and friends to enable the most
148 * basic stuff, such as SELinux */
149 for (i = 0; i < N_EARLY_MOUNT; i ++) {
152 j = mount_one(mount_table + i, false);
160 int mount_cgroup_controllers(char ***join_controllers) {
166 /* Mount all available cgroup controllers that are built into the kernel. */
168 f = fopen("/proc/cgroups", "re");
170 log_error("Failed to enumerate cgroup controllers: %m");
174 controllers = set_new(string_hash_func, string_compare_func);
177 log_error("Failed to allocate controller set.");
181 /* Ignore the header line */
182 (void) fgets(buf, sizeof(buf), f);
188 if (fscanf(f, "%ms %*i %*i %i", &controller, &enabled) != 2) {
193 log_error("Failed to parse /proc/cgroups.");
203 r = set_put(controllers, controller);
205 log_error("Failed to add controller to set.");
213 char *controller, *where, *options;
216 controller = set_steal_first(controllers);
220 if (join_controllers)
221 for (k = join_controllers; *k; k++)
222 if (strv_find(*k, controller))
228 for (i = *k, j = *k; *i; i++) {
230 if (!streq(*i, controller)) {
233 t = set_remove(controllers, *i);
246 options = strv_join(*k, ",");
248 log_error("Failed to join options");
255 options = controller;
259 where = strappend("/sys/fs/cgroup/", options);
261 log_error("Failed to build path");
272 p.flags = MS_NOSUID|MS_NOEXEC|MS_NODEV;
275 r = mount_one(&p, true);
284 if (r > 0 && k && *k) {
287 for (i = *k; *i; i++) {
290 t = strappend("/sys/fs/cgroup/", *i);
292 log_error("Failed to build path");
298 r = symlink(options, t);
301 if (r < 0 && errno != EEXIST) {
302 log_error("Failed to create symlink: %m");
316 set_free_free(controllers);
323 static int symlink_and_label(const char *old_path, const char *new_path) {
329 if ((r = label_symlinkfile_set(new_path)) < 0)
332 if (symlink(old_path, new_path) < 0)
342 const struct stat *sb,
344 struct FTW *ftwbuf) {
346 /* No need to label /dev twice in a row... */
347 if (_unlikely_(ftwbuf->level == 0))
350 label_fix(fpath, true);
352 /* /run/initramfs is static data and big, no need to
353 * dynamically relabel its contents at boot... */
354 if (_unlikely_(ftwbuf->level == 1 &&
356 streq(fpath, "/run/initramfs")))
357 return FTW_SKIP_SUBTREE;
362 int mount_setup(bool loaded_policy) {
364 static const char symlinks[] =
365 "/proc/kcore\0" "/dev/core\0"
366 "/proc/self/fd\0" "/dev/fd\0"
367 "/proc/self/fd/0\0" "/dev/stdin\0"
368 "/proc/self/fd/1\0" "/dev/stdout\0"
369 "/proc/self/fd/2\0" "/dev/stderr\0";
371 static const char relabel[] =
372 "/run/initramfs/root-fsck\0"
373 "/run/initramfs/shutdown\0";
379 for (i = 0; i < ELEMENTSOF(mount_table); i ++) {
380 r = mount_one(mount_table + i, true);
386 /* Nodes in devtmpfs and /run need to be manually updated for
387 * the appropriate labels, after mounting. The other virtual
388 * API file systems like /sys and /proc do not need that, they
389 * use the same label for all their files. */
391 usec_t before_relabel, after_relabel;
392 char timespan[FORMAT_TIMESPAN_MAX];
394 before_relabel = now(CLOCK_MONOTONIC);
396 nftw("/dev", nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL);
397 nftw("/run", nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL);
399 /* Explicitly relabel these */
400 NULSTR_FOREACH(j, relabel)
403 after_relabel = now(CLOCK_MONOTONIC);
405 log_info("Relabelled /dev and /run in %s.",
406 format_timespan(timespan, sizeof(timespan), after_relabel - before_relabel));
409 /* Create a few default symlinks, which are normally created
410 * by udevd, but some scripts might need them before we start
412 NULSTR_FOREACH_PAIR(j, k, symlinks)
413 symlink_and_label(j, k);
415 /* Create a few directories we always want around */
416 label_mkdir("/run/systemd", 0755);
417 label_mkdir("/run/systemd/system", 0755);