chiark / gitweb /
main: added support for loading IMA custom policies
[elogind.git] / src / mount-setup.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
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   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <sys/mount.h>
23 #include <errno.h>
24 #include <sys/stat.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <libgen.h>
28 #include <assert.h>
29 #include <unistd.h>
30 #include <ftw.h>
31
32 #include "mount-setup.h"
33 #include "log.h"
34 #include "macro.h"
35 #include "util.h"
36 #include "label.h"
37 #include "set.h"
38 #include "strv.h"
39
40 #ifndef TTY_GID
41 #define TTY_GID 5
42 #endif
43
44 typedef struct MountPoint {
45         const char *what;
46         const char *where;
47         const char *type;
48         const char *options;
49         unsigned long flags;
50         bool fatal;
51 } MountPoint;
52
53 /* The first three entries we might need before SELinux is up. The
54  * fourth (securityfs) is needed by IMA to load a custom policy. The
55  * other ones we can delay until SELinux and IMA are loaded. */
56 #define N_EARLY_MOUNT 4
57
58 static const MountPoint mount_table[] = {
59         { "proc",     "/proc",                  "proc",     NULL,                MS_NOSUID|MS_NOEXEC|MS_NODEV, true },
60         { "sysfs",    "/sys",                   "sysfs",    NULL,                MS_NOSUID|MS_NOEXEC|MS_NODEV, true },
61         { "devtmpfs", "/dev",                   "devtmpfs", "mode=755",          MS_NOSUID,                    true },
62         { "securityfs", "/sys/kernel/security", "securityfs", NULL,              MS_NOSUID|MS_NOEXEC|MS_NODEV, false },
63         { "tmpfs",    "/dev/shm",               "tmpfs",    "mode=1777",         MS_NOSUID|MS_NODEV,           true },
64         { "devpts",   "/dev/pts",               "devpts",   "mode=620,gid=" STRINGIFY(TTY_GID), MS_NOSUID|MS_NOEXEC, false },
65         { "tmpfs",    "/run",                   "tmpfs",    "mode=755",          MS_NOSUID|MS_NODEV, true },
66         { "tmpfs",    "/sys/fs/cgroup",         "tmpfs",    "mode=755",          MS_NOSUID|MS_NOEXEC|MS_NODEV, false },
67         { "cgroup",   "/sys/fs/cgroup/systemd", "cgroup",   "none,name=systemd", MS_NOSUID|MS_NOEXEC|MS_NODEV, false },
68 };
69
70 /* These are API file systems that might be mounted by other software,
71  * we just list them here so that we know that we should ignore them */
72
73 static const char * const ignore_paths[] = {
74         "/sys/fs/selinux",
75         "/selinux",
76         "/proc/bus/usb"
77 };
78
79 bool mount_point_is_api(const char *path) {
80         unsigned i;
81
82         /* Checks if this mount point is considered "API", and hence
83          * should be ignored */
84
85         for (i = 0; i < ELEMENTSOF(mount_table); i ++)
86                 if (path_equal(path, mount_table[i].where))
87                         return true;
88
89         return path_startswith(path, "/sys/fs/cgroup/");
90 }
91
92 bool mount_point_ignore(const char *path) {
93         unsigned i;
94
95         for (i = 0; i < ELEMENTSOF(ignore_paths); i++)
96                 if (path_equal(path, ignore_paths[i]))
97                         return true;
98
99         return false;
100 }
101
102 static int mount_one(const MountPoint *p, bool relabel) {
103         int r;
104
105         assert(p);
106
107         /* Relabel first, just in case */
108         if (relabel)
109                 label_fix(p->where, true);
110
111         if ((r = path_is_mount_point(p->where, true)) < 0)
112                 return r;
113
114         if (r > 0)
115                 return 0;
116
117         /* The access mode here doesn't really matter too much, since
118          * the mounted file system will take precedence anyway. */
119         mkdir_p(p->where, 0755);
120
121         log_debug("Mounting %s to %s of type %s with options %s.",
122                   p->what,
123                   p->where,
124                   p->type,
125                   strna(p->options));
126
127         if (mount(p->what,
128                   p->where,
129                   p->type,
130                   p->flags,
131                   p->options) < 0) {
132                 log_error("Failed to mount %s: %s", p->where, strerror(errno));
133                 return p->fatal ? -errno : 0;
134         }
135
136         /* Relabel again, since we now mounted something fresh here */
137         if (relabel)
138                 label_fix(p->where, false);
139
140         return 1;
141 }
142
143 int mount_setup_early(void) {
144         unsigned i;
145         int r = 0;
146
147         assert_cc(N_EARLY_MOUNT <= ELEMENTSOF(mount_table));
148
149         /* Do a minimal mount of /proc and friends to enable the most
150          * basic stuff, such as SELinux */
151         for (i = 0; i < N_EARLY_MOUNT; i ++)  {
152                 int j;
153
154                 j = mount_one(mount_table + i, false);
155                 if (r == 0)
156                         r = j;
157         }
158
159         return r;
160 }
161
162 int mount_cgroup_controllers(char ***join_controllers) {
163         int r;
164         FILE *f;
165         char buf[LINE_MAX];
166         Set *controllers;
167
168         /* Mount all available cgroup controllers that are built into the kernel. */
169
170         f = fopen("/proc/cgroups", "re");
171         if (!f) {
172                 log_error("Failed to enumerate cgroup controllers: %m");
173                 return 0;
174         }
175
176         controllers = set_new(string_hash_func, string_compare_func);
177         if (!controllers) {
178                 r = -ENOMEM;
179                 log_error("Failed to allocate controller set.");
180                 goto finish;
181         }
182
183         /* Ignore the header line */
184         (void) fgets(buf, sizeof(buf), f);
185
186         for (;;) {
187                 char *controller;
188                 int enabled = 0;
189
190                 if (fscanf(f, "%ms %*i %*i %i", &controller, &enabled) != 2) {
191
192                         if (feof(f))
193                                 break;
194
195                         log_error("Failed to parse /proc/cgroups.");
196                         r = -EIO;
197                         goto finish;
198                 }
199
200                 if (!enabled) {
201                         free(controller);
202                         continue;
203                 }
204
205                 r = set_put(controllers, controller);
206                 if (r < 0) {
207                         log_error("Failed to add controller to set.");
208                         free(controller);
209                         goto finish;
210                 }
211         }
212
213         for (;;) {
214                 MountPoint p;
215                 char *controller, *where, *options;
216                 char ***k = NULL;
217
218                 controller = set_steal_first(controllers);
219                 if (!controller)
220                         break;
221
222                 if (join_controllers)
223                         for (k = join_controllers; *k; k++)
224                                 if (strv_find(*k, controller))
225                                         break;
226
227                 if (k && *k) {
228                         char **i, **j;
229
230                         for (i = *k, j = *k; *i; i++) {
231
232                                 if (!streq(*i, controller)) {
233                                         char *t;
234
235                                         t = set_remove(controllers, *i);
236                                         if (!t) {
237                                                 free(*i);
238                                                 continue;
239                                         }
240                                         free(t);
241                                 }
242
243                                 *(j++) = *i;
244                         }
245
246                         *j = NULL;
247
248                         options = strv_join(*k, ",");
249                         if (!options) {
250                                 log_error("Failed to join options");
251                                 free(controller);
252                                 r = -ENOMEM;
253                                 goto finish;
254                         }
255
256                 } else {
257                         options = controller;
258                         controller = NULL;
259                 }
260
261                 where = strappend("/sys/fs/cgroup/", options);
262                 if (!where) {
263                         log_error("Failed to build path");
264                         free(options);
265                         r = -ENOMEM;
266                         goto finish;
267                 }
268
269                 zero(p);
270                 p.what = "cgroup";
271                 p.where = where;
272                 p.type = "cgroup";
273                 p.options = options;
274                 p.flags = MS_NOSUID|MS_NOEXEC|MS_NODEV;
275                 p.fatal = false;
276
277                 r = mount_one(&p, true);
278                 free(controller);
279                 free(where);
280
281                 if (r < 0) {
282                         free(options);
283                         goto finish;
284                 }
285
286                 if (r > 0 && k && *k) {
287                         char **i;
288
289                         for (i = *k; *i; i++) {
290                                 char *t;
291
292                                 t = strappend("/sys/fs/cgroup/", *i);
293                                 if (!t) {
294                                         log_error("Failed to build path");
295                                         r = -ENOMEM;
296                                         free(options);
297                                         goto finish;
298                                 }
299
300                                 r = symlink(options, t);
301                                 free(t);
302
303                                 if (r < 0 && errno != EEXIST) {
304                                         log_error("Failed to create symlink: %m");
305                                         r = -errno;
306                                         free(options);
307                                         goto finish;
308                                 }
309                         }
310                 }
311
312                 free(options);
313         }
314
315         r = 0;
316
317 finish:
318         set_free_free(controllers);
319
320         fclose(f);
321
322         return r;
323 }
324
325 static int symlink_and_label(const char *old_path, const char *new_path) {
326         int r;
327
328         assert(old_path);
329         assert(new_path);
330
331         if ((r = label_symlinkfile_set(new_path)) < 0)
332                 return r;
333
334         if (symlink(old_path, new_path) < 0)
335                 r = -errno;
336
337         label_file_clear();
338
339         return r;
340 }
341
342 static int nftw_cb(
343                 const char *fpath,
344                 const struct stat *sb,
345                 int tflag,
346                 struct FTW *ftwbuf) {
347
348         /* No need to label /dev twice in a row... */
349         if (_unlikely_(ftwbuf->level == 0))
350                 return FTW_CONTINUE;
351
352         label_fix(fpath, true);
353
354         /* /run/initramfs is static data and big, no need to
355          * dynamically relabel its contents at boot... */
356         if (_unlikely_(ftwbuf->level == 1 &&
357                       tflag == FTW_D &&
358                       streq(fpath, "/run/initramfs")))
359                 return FTW_SKIP_SUBTREE;
360
361         return FTW_CONTINUE;
362 };
363
364 int mount_setup(bool loaded_policy) {
365
366         static const char symlinks[] =
367                 "/proc/kcore\0"      "/dev/core\0"
368                 "/proc/self/fd\0"    "/dev/fd\0"
369                 "/proc/self/fd/0\0"  "/dev/stdin\0"
370                 "/proc/self/fd/1\0"  "/dev/stdout\0"
371                 "/proc/self/fd/2\0"  "/dev/stderr\0";
372
373         static const char relabel[] =
374                 "/run/initramfs/root-fsck\0"
375                 "/run/initramfs/shutdown\0";
376
377         int r;
378         unsigned i;
379         const char *j, *k;
380
381         for (i = 0; i < ELEMENTSOF(mount_table); i ++) {
382                 r = mount_one(mount_table + i, true);
383
384                 if (r < 0)
385                         return r;
386         }
387
388         /* Nodes in devtmpfs and /run need to be manually updated for
389          * the appropriate labels, after mounting. The other virtual
390          * API file systems like /sys and /proc do not need that, they
391          * use the same label for all their files. */
392         if (loaded_policy) {
393                 usec_t before_relabel, after_relabel;
394                 char timespan[FORMAT_TIMESPAN_MAX];
395
396                 before_relabel = now(CLOCK_MONOTONIC);
397
398                 nftw("/dev", nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL);
399                 nftw("/run", nftw_cb, 64, FTW_MOUNT|FTW_PHYS|FTW_ACTIONRETVAL);
400
401                 /* Explicitly relabel these */
402                 NULSTR_FOREACH(j, relabel)
403                         label_fix(j, true);
404
405                 after_relabel = now(CLOCK_MONOTONIC);
406
407                 log_info("Relabelled /dev and /run in %s.",
408                          format_timespan(timespan, sizeof(timespan), after_relabel - before_relabel));
409         }
410
411         /* Create a few default symlinks, which are normally created
412          * by udevd, but some scripts might need them before we start
413          * udevd. */
414         NULSTR_FOREACH_PAIR(j, k, symlinks)
415                 symlink_and_label(j, k);
416
417         /* Create a few directories we always want around */
418         label_mkdir("/run/systemd", 0755);
419         label_mkdir("/run/systemd/system", 0755);
420
421         return 0;
422 }