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