chiark / gitweb /
Fix service file to match installed elogind binary location
[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           cg_is_legacy_wanted, MNT_FATAL|MNT_IN_CONTAINER },
114         { "pstore",      "/sys/fs/pstore",            "pstore",     NULL,                      MS_NOSUID|MS_NOEXEC|MS_NODEV,
115           NULL,          MNT_NONE                   },
116 #ifdef ENABLE_EFI
117         { "efivarfs",    "/sys/firmware/efi/efivars", "efivarfs",   NULL,                      MS_NOSUID|MS_NOEXEC|MS_NODEV,
118           is_efi_boot,   MNT_NONE                   },
119 #endif
120 #else
121         { "cgroup",      "/sys/fs/cgroup/elogind",    "cgroup",     "none,name=elogind,release_agent="SYSTEMD_CGROUP_AGENT_PATH",xattr", MS_NOSUID|MS_NOEXEC|MS_NODEV,
122           cg_is_legacy_wanted, MNT_IN_CONTAINER  },
123         { "cgroup",      "/sys/fs/cgroup/elogind",    "cgroup",     "none,name=elogind,release_agent="SYSTEMD_CGROUP_AGENT_PATH,       MS_NOSUID|MS_NOEXEC|MS_NODEV,
124           cg_is_legacy_wanted, MNT_FATAL|MNT_IN_CONTAINER },
125 #endif // 0
126 };
127
128 #if 0 /// UNNEEDED by elogind
129 /* These are API file systems that might be mounted by other software,
130  * we just list them here so that we know that we should ignore them */
131
132 static const char ignore_paths[] =
133         /* SELinux file systems */
134         "/sys/fs/selinux\0"
135         /* Container bind mounts */
136         "/proc/sys\0"
137         "/dev/console\0"
138         "/proc/kmsg\0";
139
140 bool mount_point_is_api(const char *path) {
141         unsigned i;
142
143         /* Checks if this mount point is considered "API", and hence
144          * should be ignored */
145
146         for (i = 0; i < ELEMENTSOF(mount_table); i ++)
147                 if (path_equal(path, mount_table[i].where))
148                         return true;
149
150         return path_startswith(path, "/sys/fs/cgroup/");
151 }
152
153 bool mount_point_ignore(const char *path) {
154         const char *i;
155
156         NULSTR_FOREACH(i, ignore_paths)
157                 if (path_equal(path, i))
158                         return true;
159
160         return false;
161 }
162 #endif // 0
163
164 static int mount_one(const MountPoint *p, bool relabel) {
165         int r;
166
167         assert(p);
168
169         if (p->condition_fn && !p->condition_fn())
170                 return 0;
171
172         /* Relabel first, just in case */
173         if (relabel)
174                 (void) label_fix(p->where, true, true);
175
176         r = path_is_mount_point(p->where, NULL, AT_SYMLINK_FOLLOW);
177         if (r < 0 && r != -ENOENT) {
178                 log_full_errno((p->mode & MNT_FATAL) ? LOG_ERR : LOG_DEBUG, r, "Failed to determine whether %s is a mount point: %m", p->where);
179                 return (p->mode & MNT_FATAL) ? r : 0;
180         }
181         if (r > 0)
182                 return 0;
183
184         /* Skip securityfs in a container */
185         if (!(p->mode & MNT_IN_CONTAINER) && detect_container() > 0)
186                 return 0;
187
188         /* The access mode here doesn't really matter too much, since
189          * the mounted file system will take precedence anyway. */
190         if (relabel)
191                 (void) mkdir_p_label(p->where, 0755);
192         else
193                 (void) mkdir_p(p->where, 0755);
194
195         log_debug("Mounting %s to %s of type %s with options %s.",
196                   p->what,
197                   p->where,
198                   p->type,
199                   strna(p->options));
200
201         if (mount(p->what,
202                   p->where,
203                   p->type,
204                   p->flags,
205                   p->options) < 0) {
206                 log_full_errno((p->mode & MNT_FATAL) ? LOG_ERR : LOG_DEBUG, errno, "Failed to mount %s at %s: %m", p->type, p->where);
207                 return (p->mode & MNT_FATAL) ? -errno : 0;
208         }
209
210         /* Relabel again, since we now mounted something fresh here */
211         if (relabel)
212                 (void) label_fix(p->where, false, false);
213
214         return 1;
215 }
216
217 static int mount_points_setup(unsigned n, bool loaded_policy) {
218         unsigned i;
219         int r = 0;
220
221         for (i = 0; i < n; i ++) {
222                 int j;
223
224                 j = mount_one(mount_table + i, loaded_policy);
225                 if (j != 0 && r >= 0)
226                         r = j;
227         }
228
229         return r;
230 }
231
232 #if 0 /// UNNEEDED by elogind
233 int mount_setup_early(void) {
234         assert_cc(N_EARLY_MOUNT <= ELEMENTSOF(mount_table));
235
236         /* Do a minimal mount of /proc and friends to enable the most
237          * basic stuff, such as SELinux */
238         return mount_points_setup(N_EARLY_MOUNT, false);
239 }
240
241 int mount_cgroup_controllers(char ***join_controllers) {
242         _cleanup_set_free_free_ Set *controllers = NULL;
243         int r;
244
245         if (!cg_is_legacy_wanted())
246                 return 0;
247
248         /* Mount all available cgroup controllers that are built into the kernel. */
249
250         controllers = set_new(&string_hash_ops);
251         if (!controllers)
252                 return log_oom();
253
254         r = cg_kernel_controllers(controllers);
255         if (r < 0)
256                 return log_error_errno(r, "Failed to enumerate cgroup controllers: %m");
257
258         for (;;) {
259                 _cleanup_free_ char *options = NULL, *controller = NULL, *where = NULL;
260                 MountPoint p = {
261                         .what = "cgroup",
262                         .type = "cgroup",
263                         .flags = MS_NOSUID|MS_NOEXEC|MS_NODEV,
264                         .mode = MNT_IN_CONTAINER,
265                 };
266                 char ***k = NULL;
267
268                 controller = set_steal_first(controllers);
269                 if (!controller)
270                         break;
271
272                 if (join_controllers)
273                         for (k = join_controllers; *k; k++)
274                                 if (strv_find(*k, controller))
275                                         break;
276
277                 if (k && *k) {
278                         char **i, **j;
279
280                         for (i = *k, j = *k; *i; i++) {
281
282                                 if (!streq(*i, controller)) {
283                                         _cleanup_free_ char *t;
284
285                                         t = set_remove(controllers, *i);
286                                         if (!t) {
287                                                 free(*i);
288                                                 continue;
289                                         }
290                                 }
291
292                                 *(j++) = *i;
293                         }
294
295                         *j = NULL;
296
297                         options = strv_join(*k, ",");
298                         if (!options)
299                                 return log_oom();
300                 } else {
301                         options = controller;
302                         controller = NULL;
303                 }
304
305                 where = strappend("/sys/fs/cgroup/", options);
306                 if (!where)
307                         return log_oom();
308
309                 p.where = where;
310                 p.options = options;
311
312                 r = mount_one(&p, true);
313                 if (r < 0)
314                         return r;
315
316                 if (r > 0 && k && *k) {
317                         char **i;
318
319                         for (i = *k; *i; i++) {
320                                 _cleanup_free_ char *t = NULL;
321
322                                 t = strappend("/sys/fs/cgroup/", *i);
323                                 if (!t)
324                                         return log_oom();
325
326                                 r = symlink(options, t);
327                                 if (r >= 0) {
328 #ifdef SMACK_RUN_LABEL
329                                         _cleanup_free_ char *src;
330                                         src = strappend("/sys/fs/cgroup/", options);
331                                         if (!src)
332                                                 return log_oom();
333                                         r = mac_smack_copy(t, src);
334                                         if (r < 0 && r != -EOPNOTSUPP)
335                                                 return log_error_errno(r, "Failed to copy smack label from %s to %s: %m", src, t);
336 #endif
337                                 } else if (errno != EEXIST)
338                                         return log_error_errno(errno, "Failed to create symlink %s: %m", t);
339                         }
340                 }
341         }
342
343         /* Now that we mounted everything, let's make the tmpfs the
344          * cgroup file systems are mounted into read-only. */
345         (void) mount("tmpfs", "/sys/fs/cgroup", "tmpfs", MS_REMOUNT|MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_STRICTATIME|MS_RDONLY, "mode=755");
346
347         return 0;
348 }
349
350 #if defined(HAVE_SELINUX) || defined(HAVE_SMACK)
351 static int nftw_cb(
352                 const char *fpath,
353                 const struct stat *sb,
354                 int tflag,
355                 struct FTW *ftwbuf) {
356
357         /* No need to label /dev twice in a row... */
358         if (_unlikely_(ftwbuf->level == 0))
359                 return FTW_CONTINUE;
360
361         label_fix(fpath, false, false);
362
363         /* /run/initramfs is static data and big, no need to
364          * dynamically relabel its contents at boot... */
365         if (_unlikely_(ftwbuf->level == 1 &&
366                       tflag == FTW_D &&
367                       streq(fpath, "/run/initramfs")))
368                 return FTW_SKIP_SUBTREE;
369
370         return FTW_CONTINUE;
371 };
372 #endif
373 #endif // 0
374
375 int mount_setup(bool loaded_policy) {
376         int r = 0;
377
378         r = mount_points_setup(ELEMENTSOF(mount_table), loaded_policy);
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 propagation. The kernel defaults to "private", but we
411          * think it makes more sense to have a default of "shared" so that nspawn and the container tools work out of
412          * the box. If specific setups need other settings they can reset the propagation mode to private if
413          * needed. Note that we set this only when we are invoked directly by the kernel. If we are invoked by a
414          * container manager we assume the container manager knows what it is doing (for example, because it set up
415          * some directories with different propagation modes). */
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 #endif // 0
421         /* Create a few directories we always want around, Note that sd_booted() checks for /run/systemd/system, so
422          * this mkdir really needs to stay for good, otherwise software that copied sd-daemon.c into their sources will
423          * misdetect systemd. */
424         (void) mkdir_label("/run/systemd", 0755);
425 #if 0 /// Yeah, but elogind is not used with systemd, so this directory would be toxic.
426         (void) mkdir_label("/run/systemd/system", 0755);
427 #endif // 0
428
429         /* Set up inaccessible items */
430         (void) mkdir_label("/run/systemd/inaccessible", 0000);
431         (void) mknod("/run/systemd/inaccessible/reg", S_IFREG | 0000, 0);
432         (void) mkdir_label("/run/systemd/inaccessible/dir", 0000);
433         (void) mknod("/run/systemd/inaccessible/chr", S_IFCHR | 0000, makedev(0, 0));
434         (void) mknod("/run/systemd/inaccessible/blk", S_IFBLK | 0000, makedev(0, 0));
435         (void) mkfifo("/run/systemd/inaccessible/fifo", 0000);
436         (void) mknod("/run/systemd/inaccessible/sock", S_IFSOCK | 0000, 0);
437
438         return 0;
439 }