]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/mount-setup.c
cgroup-util: fix the reversed return value of cg_is_unified_systemd_contoller_wanted
[thirdparty/systemd.git] / src / core / mount-setup.c
CommitLineData
8e274523
LP
1/***
2 This file is part of systemd.
3
4 Copyright 2010 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
8e274523
LP
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 14 Lesser General Public License for more details.
8e274523 15
5430f7f2 16 You should have received a copy of the GNU Lesser General Public License
8e274523
LP
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
8e274523 20#include <errno.h>
cf0fbc49 21#include <ftw.h>
8e274523 22#include <stdlib.h>
cf0fbc49 23#include <sys/mount.h>
5c0532d1 24#include <unistd.h>
8e274523 25
b5efdb8a 26#include "alloc-util.h"
64824462 27#include "bus-util.h"
4349cd7c
LP
28#include "cgroup-util.h"
29#include "dev-setup.h"
30#include "efivars.h"
c4b41707 31#include "fs-util.h"
4349cd7c 32#include "label.h"
8e274523 33#include "log.h"
c9af1080 34#include "macro.h"
4349cd7c 35#include "missing.h"
49e942b2 36#include "mkdir.h"
4349cd7c
LP
37#include "mount-setup.h"
38#include "mount-util.h"
9eb977db 39#include "path-util.h"
4349cd7c 40#include "set.h"
8552b176 41#include "smack-util.h"
4349cd7c 42#include "strv.h"
ee104e11 43#include "user-util.h"
4349cd7c
LP
44#include "util.h"
45#include "virt.h"
bef2733f 46
6aa220e0
KS
47typedef enum MountMode {
48 MNT_NONE = 0,
49 MNT_FATAL = 1 << 0,
50 MNT_IN_CONTAINER = 1 << 1,
51} MountMode;
52
ca714c0e
LP
53typedef struct MountPoint {
54 const char *what;
55 const char *where;
56 const char *type;
57 const char *options;
58 unsigned long flags;
6aa220e0
KS
59 bool (*condition_fn)(void);
60 MountMode mode;
ca714c0e
LP
61} MountPoint;
62
4ef31082 63/* The first three entries we might need before SELinux is up. The
160481f6 64 * fourth (securityfs) is needed by IMA to load a custom policy. The
7c96ab1d
LP
65 * other ones we can delay until SELinux and IMA are loaded. When
66 * SMACK is enabled we need smackfs, too, so it's a fifth one. */
67#ifdef HAVE_SMACK
ffbd2c4d 68#define N_EARLY_MOUNT 5
7c96ab1d
LP
69#else
70#define N_EARLY_MOUNT 4
71#endif
4ef31082 72
ca714c0e 73static const MountPoint mount_table[] = {
68d4c452
LP
74 { "sysfs", "/sys", "sysfs", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
75 NULL, MNT_FATAL|MNT_IN_CONTAINER },
76 { "proc", "/proc", "proc", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
77 NULL, MNT_FATAL|MNT_IN_CONTAINER },
78 { "devtmpfs", "/dev", "devtmpfs", "mode=755", MS_NOSUID|MS_STRICTATIME,
79 NULL, MNT_FATAL|MNT_IN_CONTAINER },
80 { "securityfs", "/sys/kernel/security", "securityfs", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
81 NULL, MNT_NONE },
d407c940 82#ifdef HAVE_SMACK
68d4c452
LP
83 { "smackfs", "/sys/fs/smackfs", "smackfs", "smackfsdef=*", MS_NOSUID|MS_NOEXEC|MS_NODEV,
84 mac_smack_use, MNT_FATAL },
85 { "tmpfs", "/dev/shm", "tmpfs", "mode=1777,smackfsroot=*", MS_NOSUID|MS_NODEV|MS_STRICTATIME,
86 mac_smack_use, MNT_FATAL },
d407c940 87#endif
68d4c452
LP
88 { "tmpfs", "/dev/shm", "tmpfs", "mode=1777", MS_NOSUID|MS_NODEV|MS_STRICTATIME,
89 NULL, MNT_FATAL|MNT_IN_CONTAINER },
90 { "devpts", "/dev/pts", "devpts", "mode=620,gid=" STRINGIFY(TTY_GID), MS_NOSUID|MS_NOEXEC,
91 NULL, MNT_IN_CONTAINER },
d407c940 92#ifdef HAVE_SMACK
68d4c452
LP
93 { "tmpfs", "/run", "tmpfs", "mode=755,smackfsroot=*", MS_NOSUID|MS_NODEV|MS_STRICTATIME,
94 mac_smack_use, MNT_FATAL },
d407c940 95#endif
68d4c452
LP
96 { "tmpfs", "/run", "tmpfs", "mode=755", MS_NOSUID|MS_NODEV|MS_STRICTATIME,
97 NULL, MNT_FATAL|MNT_IN_CONTAINER },
09961995 98 { "cgroup", "/sys/fs/cgroup", "cgroup2", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
efdb0237 99 cg_is_unified_wanted, MNT_FATAL|MNT_IN_CONTAINER },
68d4c452 100 { "tmpfs", "/sys/fs/cgroup", "tmpfs", "mode=755", MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_STRICTATIME,
efdb0237 101 cg_is_legacy_wanted, MNT_FATAL|MNT_IN_CONTAINER },
5da38d07
TH
102 { "cgroup", "/sys/fs/cgroup/systemd", "cgroup2", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
103 cg_is_unified_systemd_controller_wanted, MNT_IN_CONTAINER },
68d4c452 104 { "cgroup", "/sys/fs/cgroup/systemd", "cgroup", "none,name=systemd,xattr", MS_NOSUID|MS_NOEXEC|MS_NODEV,
5da38d07 105 cg_is_legacy_systemd_controller_wanted, MNT_IN_CONTAINER },
68d4c452 106 { "cgroup", "/sys/fs/cgroup/systemd", "cgroup", "none,name=systemd", MS_NOSUID|MS_NOEXEC|MS_NODEV,
5da38d07 107 cg_is_legacy_systemd_controller_wanted, MNT_FATAL|MNT_IN_CONTAINER },
68d4c452
LP
108 { "pstore", "/sys/fs/pstore", "pstore", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
109 NULL, MNT_NONE },
c06bf414 110#ifdef ENABLE_EFI
68d4c452
LP
111 { "efivarfs", "/sys/firmware/efi/efivars", "efivarfs", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
112 is_efi_boot, MNT_NONE },
c06bf414 113#endif
63cc4c31
DM
114};
115
949c6510 116/* These are API file systems that might be mounted by other software,
46ff0ed7 117 * we just list them here so that we know that we should ignore them */
949c6510 118
eaeb18db
LP
119static const char ignore_paths[] =
120 /* SELinux file systems */
121 "/sys/fs/selinux\0"
eaeb18db
LP
122 /* Container bind mounts */
123 "/proc/sys\0"
124 "/dev/console\0"
c481f78b 125 "/proc/kmsg\0";
949c6510 126
dad08730
LP
127bool mount_point_is_api(const char *path) {
128 unsigned i;
129
130 /* Checks if this mount point is considered "API", and hence
131 * should be ignored */
132
ca714c0e 133 for (i = 0; i < ELEMENTSOF(mount_table); i ++)
449ddb2d 134 if (path_equal(path, mount_table[i].where))
dad08730
LP
135 return true;
136
57f2a956
KS
137 return path_startswith(path, "/sys/fs/cgroup/");
138}
139
140bool mount_point_ignore(const char *path) {
eaeb18db 141 const char *i;
57f2a956 142
eaeb18db
LP
143 NULSTR_FOREACH(i, ignore_paths)
144 if (path_equal(path, i))
949c6510
LP
145 return true;
146
57f2a956 147 return false;
dad08730
LP
148}
149
4ef31082 150static int mount_one(const MountPoint *p, bool relabel) {
8e274523
LP
151 int r;
152
ca714c0e 153 assert(p);
8e274523 154
6aa220e0
KS
155 if (p->condition_fn && !p->condition_fn())
156 return 0;
157
51b4af2c 158 /* Relabel first, just in case */
4ef31082 159 if (relabel)
1411b094 160 (void) label_fix(p->where, true, true);
51b4af2c 161
e1873695 162 r = path_is_mount_point(p->where, NULL, AT_SYMLINK_FOLLOW);
1411b094
LP
163 if (r < 0 && r != -ENOENT) {
164 log_full_errno((p->mode & MNT_FATAL) ? LOG_ERR : LOG_DEBUG, r, "Failed to determine whether %s is a mount point: %m", p->where);
165 return (p->mode & MNT_FATAL) ? r : 0;
166 }
8e274523 167 if (r > 0)
51b4af2c 168 return 0;
8e274523 169
c481f78b 170 /* Skip securityfs in a container */
75f86906 171 if (!(p->mode & MNT_IN_CONTAINER) && detect_container() > 0)
c481f78b
LP
172 return 0;
173
a04f58d6
LP
174 /* The access mode here doesn't really matter too much, since
175 * the mounted file system will take precedence anyway. */
c4bfd169 176 if (relabel)
1411b094 177 (void) mkdir_p_label(p->where, 0755);
c4bfd169 178 else
1411b094 179 (void) mkdir_p(p->where, 0755);
a04f58d6 180
8e274523 181 log_debug("Mounting %s to %s of type %s with options %s.",
ca714c0e
LP
182 p->what,
183 p->where,
184 p->type,
185 strna(p->options));
186
187 if (mount(p->what,
188 p->where,
189 p->type,
190 p->flags,
191 p->options) < 0) {
1411b094 192 log_full_errno((p->mode & MNT_FATAL) ? LOG_ERR : LOG_DEBUG, errno, "Failed to mount %s at %s: %m", p->type, p->where);
6aa220e0 193 return (p->mode & MNT_FATAL) ? -errno : 0;
8e274523
LP
194 }
195
51b4af2c 196 /* Relabel again, since we now mounted something fresh here */
4ef31082 197 if (relabel)
1411b094 198 (void) label_fix(p->where, false, false);
5275d3c1 199
0c85a4f3 200 return 1;
8e274523
LP
201}
202
400fac06 203static int mount_points_setup(unsigned n, bool loaded_policy) {
4ef31082
LP
204 unsigned i;
205 int r = 0;
206
400fac06 207 for (i = 0; i < n; i ++) {
4ef31082
LP
208 int j;
209
400fac06 210 j = mount_one(mount_table + i, loaded_policy);
7ff307bc 211 if (j != 0 && r >= 0)
4ef31082
LP
212 r = j;
213 }
214
215 return r;
216}
217
400fac06
AK
218int mount_setup_early(void) {
219 assert_cc(N_EARLY_MOUNT <= ELEMENTSOF(mount_table));
220
221 /* Do a minimal mount of /proc and friends to enable the most
222 * basic stuff, such as SELinux */
223 return mount_points_setup(N_EARLY_MOUNT, false);
224}
225
0c85a4f3 226int mount_cgroup_controllers(char ***join_controllers) {
a6b26d90 227 _cleanup_set_free_free_ Set *controllers = NULL;
a641dcd9 228 int r;
2076ca54 229
efdb0237
LP
230 if (!cg_is_legacy_wanted())
231 return 0;
232
670802d4 233 /* Mount all available cgroup controllers that are built into the kernel. */
2076ca54 234
d5099efc 235 controllers = set_new(&string_hash_ops);
a6b26d90
ZJS
236 if (!controllers)
237 return log_oom();
0c85a4f3 238
b12afc8c
LP
239 r = cg_kernel_controllers(controllers);
240 if (r < 0)
241 return log_error_errno(r, "Failed to enumerate cgroup controllers: %m");
0c85a4f3
LP
242
243 for (;;) {
a641dcd9 244 _cleanup_free_ char *options = NULL, *controller = NULL, *where = NULL;
a6b26d90
ZJS
245 MountPoint p = {
246 .what = "cgroup",
247 .type = "cgroup",
248 .flags = MS_NOSUID|MS_NOEXEC|MS_NODEV,
249 .mode = MNT_IN_CONTAINER,
250 };
0c85a4f3
LP
251 char ***k = NULL;
252
253 controller = set_steal_first(controllers);
254 if (!controller)
255 break;
256
257 if (join_controllers)
258 for (k = join_controllers; *k; k++)
259 if (strv_find(*k, controller))
260 break;
261
262 if (k && *k) {
263 char **i, **j;
264
265 for (i = *k, j = *k; *i; i++) {
266
267 if (!streq(*i, controller)) {
a641dcd9 268 _cleanup_free_ char *t;
0c85a4f3
LP
269
270 t = set_remove(controllers, *i);
271 if (!t) {
272 free(*i);
273 continue;
274 }
0c85a4f3
LP
275 }
276
277 *(j++) = *i;
278 }
279
280 *j = NULL;
281
282 options = strv_join(*k, ",");
a6b26d90
ZJS
283 if (!options)
284 return log_oom();
0c85a4f3
LP
285 } else {
286 options = controller;
287 controller = NULL;
288 }
289
a641dcd9
LP
290 where = strappend("/sys/fs/cgroup/", options);
291 if (!where)
292 return log_oom();
293
294 p.where = where;
0c85a4f3 295 p.options = options;
2076ca54 296
4ef31082 297 r = mount_one(&p, true);
a6b26d90
ZJS
298 if (r < 0)
299 return r;
0c85a4f3
LP
300
301 if (r > 0 && k && *k) {
302 char **i;
303
304 for (i = *k; *i; i++) {
a641dcd9
LP
305 _cleanup_free_ char *t = NULL;
306
307 t = strappend("/sys/fs/cgroup/", *i);
308 if (!t)
309 return log_oom();
0c85a4f3
LP
310
311 r = symlink(options, t);
ea2b93a8 312 if (r >= 0) {
f8c1a81c 313#ifdef SMACK_RUN_LABEL
ea2b93a8
PO
314 _cleanup_free_ char *src;
315 src = strappend("/sys/fs/cgroup/", options);
316 if (!src)
317 return log_oom();
318 r = mac_smack_copy(t, src);
319 if (r < 0 && r != -EOPNOTSUPP)
320 return log_error_errno(r, "Failed to copy smack label from %s to %s: %m", src, t);
f8c1a81c 321#endif
ea2b93a8
PO
322 } else if (errno != EEXIST)
323 return log_error_errno(errno, "Failed to create symlink %s: %m", t);
0c85a4f3
LP
324 }
325 }
2076ca54
LP
326 }
327
679142ce
LP
328 /* Now that we mounted everything, let's make the tmpfs the
329 * cgroup file systems are mounted into read-only. */
b12afc8c 330 (void) mount("tmpfs", "/sys/fs/cgroup", "tmpfs", MS_REMOUNT|MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_STRICTATIME|MS_RDONLY, "mode=755");
679142ce 331
a6b26d90 332 return 0;
2076ca54
LP
333}
334
0fff82e5 335#if defined(HAVE_SELINUX) || defined(HAVE_SMACK)
1829dc9d
LP
336static int nftw_cb(
337 const char *fpath,
338 const struct stat *sb,
339 int tflag,
340 struct FTW *ftwbuf) {
341
9fe117ea 342 /* No need to label /dev twice in a row... */
edb49778
LP
343 if (_unlikely_(ftwbuf->level == 0))
344 return FTW_CONTINUE;
345
c9bc0764 346 label_fix(fpath, false, false);
af65c248 347
edb49778 348 /* /run/initramfs is static data and big, no need to
af65c248 349 * dynamically relabel its contents at boot... */
edb49778
LP
350 if (_unlikely_(ftwbuf->level == 1 &&
351 tflag == FTW_D &&
352 streq(fpath, "/run/initramfs")))
353 return FTW_SKIP_SUBTREE;
9fe117ea 354
edb49778 355 return FTW_CONTINUE;
1829dc9d 356};
0fff82e5 357#endif
1829dc9d 358
0b3325e7 359int mount_setup(bool loaded_policy) {
68d4c452 360 int r = 0;
8e274523 361
400fac06 362 r = mount_points_setup(ELEMENTSOF(mount_table), loaded_policy);
68d4c452
LP
363 if (r < 0)
364 return r;
365
0fff82e5 366#if defined(HAVE_SELINUX) || defined(HAVE_SMACK)
f1d19aa4
LP
367 /* Nodes in devtmpfs and /run need to be manually updated for
368 * the appropriate labels, after mounting. The other virtual
369 * API file systems like /sys and /proc do not need that, they
370 * use the same label for all their files. */
0b3325e7
LP
371 if (loaded_policy) {
372 usec_t before_relabel, after_relabel;
373 char timespan[FORMAT_TIMESPAN_MAX];
374
375 before_relabel = now(CLOCK_MONOTONIC);
376
edb49778 377 nftw("/dev", nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL);
cacf980e 378 nftw("/dev/shm", nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL);
edb49778 379 nftw("/run", nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL);
0b3325e7
LP
380
381 after_relabel = now(CLOCK_MONOTONIC);
382
383 log_info("Relabelled /dev and /run in %s.",
2fa4092c 384 format_timespan(timespan, sizeof(timespan), after_relabel - before_relabel, 0));
3bbecb2f 385 }
0fff82e5 386#endif
1829dc9d 387
5c0532d1 388 /* Create a few default symlinks, which are normally created
f1d19aa4 389 * by udevd, but some scripts might need them before we start
5c0532d1 390 * udevd. */
03cfe0d5 391 dev_setup(NULL, UID_INVALID, GID_INVALID);
5c0532d1 392
dee22f39
LP
393 /* Mark the root directory as shared in regards to mount propagation. The kernel defaults to "private", but we
394 * think it makes more sense to have a default of "shared" so that nspawn and the container tools work out of
395 * the box. If specific setups need other settings they can reset the propagation mode to private if
396 * needed. Note that we set this only when we are invoked directly by the kernel. If we are invoked by a
397 * container manager we assume the container manager knows what it is doing (for example, because it set up
398 * some directories with different propagation modes). */
75f86906 399 if (detect_container() <= 0)
c481f78b 400 if (mount(NULL, "/", NULL, MS_REC|MS_SHARED, NULL) < 0)
56f64d95 401 log_warning_errno(errno, "Failed to set up the root directory for shared mount propagation: %m");
b3ac5f8c 402
dee22f39
LP
403 /* Create a few directories we always want around, Note that sd_booted() checks for /run/systemd/system, so
404 * this mkdir really needs to stay for good, otherwise software that copied sd-daemon.c into their sources will
405 * misdetect systemd. */
c4b41707
AP
406 (void) mkdir_label("/run/systemd", 0755);
407 (void) mkdir_label("/run/systemd/system", 0755);
dee22f39 408
c4b41707 409 /* Set up inaccessible items */
dee22f39 410 (void) mkdir_label("/run/systemd/inaccessible", 0000);
c4b41707
AP
411 (void) mknod("/run/systemd/inaccessible/reg", S_IFREG | 0000, 0);
412 (void) mkdir_label("/run/systemd/inaccessible/dir", 0000);
413 (void) mknod("/run/systemd/inaccessible/chr", S_IFCHR | 0000, makedev(0, 0));
414 (void) mknod("/run/systemd/inaccessible/blk", S_IFBLK | 0000, makedev(0, 0));
415 (void) mkfifo("/run/systemd/inaccessible/fifo", 0000);
416 (void) mknod("/run/systemd/inaccessible/sock", S_IFSOCK | 0000, 0);
b925e726 417
0c85a4f3 418 return 0;
8e274523 419}