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