]>
git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/mount-setup.c
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 Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser 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"
33 #include "dev-setup.h"
41 #include "path-util.h"
50 typedef enum MountMode
{
53 MNT_IN_CONTAINER
= 1 << 1,
56 typedef struct MountPoint
{
62 bool (*condition_fn
)(void);
66 /* The first three entries we might need before SELinux is up. The
67 * fourth (securityfs) is needed by IMA to load a custom policy. The
68 * other ones we can delay until SELinux and IMA are loaded. */
69 #define N_EARLY_MOUNT 5
71 static const MountPoint mount_table
[] = {
72 { "proc", "/proc", "proc", NULL
, MS_NOSUID
|MS_NOEXEC
|MS_NODEV
,
73 NULL
, MNT_FATAL
|MNT_IN_CONTAINER
},
74 { "sysfs", "/sys", "sysfs", NULL
, MS_NOSUID
|MS_NOEXEC
|MS_NODEV
,
75 NULL
, MNT_FATAL
|MNT_IN_CONTAINER
},
76 { "devtmpfs", "/dev", "devtmpfs", "mode=755", MS_NOSUID
|MS_STRICTATIME
,
77 NULL
, MNT_FATAL
|MNT_IN_CONTAINER
},
78 { "securityfs", "/sys/kernel/security", "securityfs", NULL
, MS_NOSUID
|MS_NOEXEC
|MS_NODEV
,
80 { "smackfs", "/sys/fs/smackfs", "smackfs", "smackfsdef=*", MS_NOSUID
|MS_NOEXEC
|MS_NODEV
|MS_STRICTATIME
,
82 { "tmpfs", "/dev/shm", "tmpfs", "mode=1777", MS_NOSUID
|MS_NODEV
|MS_STRICTATIME
,
83 NULL
, MNT_FATAL
|MNT_IN_CONTAINER
},
84 { "devpts", "/dev/pts", "devpts", "mode=620,gid=" STRINGIFY(TTY_GID
), MS_NOSUID
|MS_NOEXEC
,
85 NULL
, MNT_IN_CONTAINER
},
86 { "tmpfs", "/run", "tmpfs", "mode=755", MS_NOSUID
|MS_NODEV
|MS_STRICTATIME
,
87 NULL
, MNT_FATAL
|MNT_IN_CONTAINER
},
88 { "tmpfs", "/sys/fs/cgroup", "tmpfs", "mode=755", MS_NOSUID
|MS_NOEXEC
|MS_NODEV
|MS_STRICTATIME
,
89 NULL
, MNT_IN_CONTAINER
},
90 { "cgroup", "/sys/fs/cgroup/systemd", "cgroup", "none,name=systemd", MS_NOSUID
|MS_NOEXEC
|MS_NODEV
,
91 NULL
, MNT_IN_CONTAINER
},
92 { "pstore", "/sys/fs/pstore", "pstore", NULL
, MS_NOSUID
|MS_NOEXEC
|MS_NODEV
,
95 { "efivarfs", "/sys/firmware/efi/efivars", "efivarfs", NULL
, MS_NOSUID
|MS_NOEXEC
|MS_NODEV
,
96 is_efi_boot
, MNT_NONE
},
100 /* These are API file systems that might be mounted by other software,
101 * we just list them here so that we know that we should ignore them */
103 static const char ignore_paths
[] =
104 /* SELinux file systems */
107 /* Legacy cgroup mount points */
110 /* Legacy kernel file system */
112 /* Container bind mounts */
117 bool mount_point_is_api(const char *path
) {
120 /* Checks if this mount point is considered "API", and hence
121 * should be ignored */
123 for (i
= 0; i
< ELEMENTSOF(mount_table
); i
++)
124 if (path_equal(path
, mount_table
[i
].where
))
127 return path_startswith(path
, "/sys/fs/cgroup/");
130 bool mount_point_ignore(const char *path
) {
133 NULSTR_FOREACH(i
, ignore_paths
)
134 if (path_equal(path
, i
))
140 static int mount_one(const MountPoint
*p
, bool relabel
) {
145 if (p
->condition_fn
&& !p
->condition_fn())
148 /* Relabel first, just in case */
150 label_fix(p
->where
, true, true);
152 r
= path_is_mount_point(p
->where
, true);
159 /* Skip securityfs in a container */
160 if (!(p
->mode
& MNT_IN_CONTAINER
) && detect_container(NULL
) > 0)
163 /* The access mode here doesn't really matter too much, since
164 * the mounted file system will take precedence anyway. */
165 mkdir_p_label(p
->where
, 0755);
167 log_debug("Mounting %s to %s of type %s with options %s.",
178 log_full((p
->mode
& MNT_FATAL
) ? LOG_ERR
: LOG_DEBUG
, "Failed to mount %s: %s", p
->where
, strerror(errno
));
179 return (p
->mode
& MNT_FATAL
) ? -errno
: 0;
182 /* Relabel again, since we now mounted something fresh here */
184 label_fix(p
->where
, false, false);
189 int mount_setup_early(void) {
193 assert_cc(N_EARLY_MOUNT
<= ELEMENTSOF(mount_table
));
195 /* Do a minimal mount of /proc and friends to enable the most
196 * basic stuff, such as SELinux */
197 for (i
= 0; i
< N_EARLY_MOUNT
; i
++) {
200 j
= mount_one(mount_table
+ i
, false);
208 int mount_cgroup_controllers(char ***join_controllers
) {
214 /* Mount all available cgroup controllers that are built into the kernel. */
216 f
= fopen("/proc/cgroups", "re");
218 log_error("Failed to enumerate cgroup controllers: %m");
222 controllers
= set_new(string_hash_func
, string_compare_func
);
228 /* Ignore the header line */
229 (void) fgets(buf
, sizeof(buf
), f
);
235 if (fscanf(f
, "%ms %*i %*i %i", &controller
, &enabled
) != 2) {
240 log_error("Failed to parse /proc/cgroups.");
250 r
= set_put(controllers
, controller
);
252 log_error("Failed to add controller to set.");
260 char *controller
, *where
, *options
;
263 controller
= set_steal_first(controllers
);
267 if (join_controllers
)
268 for (k
= join_controllers
; *k
; k
++)
269 if (strv_find(*k
, controller
))
275 for (i
= *k
, j
= *k
; *i
; i
++) {
277 if (!streq(*i
, controller
)) {
280 t
= set_remove(controllers
, *i
);
293 options
= strv_join(*k
, ",");
301 options
= controller
;
305 where
= strappend("/sys/fs/cgroup/", options
);
317 p
.flags
= MS_NOSUID
|MS_NOEXEC
|MS_NODEV
;
318 p
.mode
= MNT_IN_CONTAINER
;
320 r
= mount_one(&p
, true);
329 if (r
> 0 && k
&& *k
) {
332 for (i
= *k
; *i
; i
++) {
335 t
= strappend("/sys/fs/cgroup/", *i
);
342 r
= symlink(options
, t
);
345 if (r
< 0 && errno
!= EEXIST
) {
346 log_error("Failed to create symlink: %m");
360 set_free_free(controllers
);
369 const struct stat
*sb
,
371 struct FTW
*ftwbuf
) {
373 /* No need to label /dev twice in a row... */
374 if (_unlikely_(ftwbuf
->level
== 0))
377 label_fix(fpath
, false, false);
379 /* /run/initramfs is static data and big, no need to
380 * dynamically relabel its contents at boot... */
381 if (_unlikely_(ftwbuf
->level
== 1 &&
383 streq(fpath
, "/run/initramfs")))
384 return FTW_SKIP_SUBTREE
;
389 int mount_setup(bool loaded_policy
) {
391 static const char relabel
[] =
392 "/run/initramfs/root-fsck\0"
393 "/run/initramfs/shutdown\0";
399 for (i
= 0; i
< ELEMENTSOF(mount_table
); i
++) {
400 r
= mount_one(mount_table
+ i
, true);
406 /* Nodes in devtmpfs and /run need to be manually updated for
407 * the appropriate labels, after mounting. The other virtual
408 * API file systems like /sys and /proc do not need that, they
409 * use the same label for all their files. */
411 usec_t before_relabel
, after_relabel
;
412 char timespan
[FORMAT_TIMESPAN_MAX
];
414 before_relabel
= now(CLOCK_MONOTONIC
);
416 nftw("/dev", nftw_cb
, 64, FTW_MOUNT
|FTW_PHYS
|FTW_ACTIONRETVAL
);
417 nftw("/run", nftw_cb
, 64, FTW_MOUNT
|FTW_PHYS
|FTW_ACTIONRETVAL
);
419 /* Explicitly relabel these */
420 NULSTR_FOREACH(j
, relabel
)
421 label_fix(j
, true, false);
423 after_relabel
= now(CLOCK_MONOTONIC
);
425 log_info("Relabelled /dev and /run in %s.",
426 format_timespan(timespan
, sizeof(timespan
), after_relabel
- before_relabel
, 0));
429 /* Create a few default symlinks, which are normally created
430 * by udevd, but some scripts might need them before we start
434 /* Mark the root directory as shared in regards to mount
435 * propagation. The kernel defaults to "private", but we think
436 * it makes more sense to have a default of "shared" so that
437 * nspawn and the container tools work out of the box. If
438 * specific setups need other settings they can reset the
439 * propagation mode to private if needed. */
440 if (detect_container(NULL
) <= 0)
441 if (mount(NULL
, "/", NULL
, MS_REC
|MS_SHARED
, NULL
) < 0)
442 log_warning("Failed to set up the root directory for shared mount propagation: %m");
444 /* Create a few directories we always want around, Note that
445 * sd_booted() checks for /run/systemd/system, so this mkdir
446 * really needs to stay for good, otherwise software that
447 * copied sd-daemon.c into their sources will misdetect
449 mkdir_label("/run/systemd", 0755);
450 mkdir_label("/run/systemd/system", 0755);
451 mkdir_label("/run/systemd/inaccessible", 0000);