chiark / gitweb /
8ad37f860b50f88c80975838a3a6cf46e6ce5897
[elogind.git] / mount-setup.c
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
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
30 #include "mount-setup.h"
31 #include "log.h"
32 #include "macro.h"
33 #include "util.h"
34
35 enum {
36         MOUNT_WHAT,
37         MOUNT_WHERE,
38         MOUNT_TYPE,
39         MOUNT_OPTIONS,
40         MOUNT_SKIP
41 };
42
43 static const char *table[] = {
44         "proc",    "/proc",             "proc",     NULL,
45         "sysfs",   "/sys",              "sysfs",    NULL,
46         "devtmps", "/dev",              "devtmpfs", "mode=755,noexec,nosuid",
47         "tmpfs",   "/dev/shm",          "tmpfs",    "mode=1777,nodev,noexec,nosuid",
48         "devpts",  "/dev/pts",          "devpts",   NULL,
49         "cgroup",  "/cgroup/debug",     "cgroup",   "debug",
50         "debugfs", "/sys/kernel/debug", "debugfs",  NULL,
51 };
52
53 bool mount_point_is_api(const char *path) {
54         unsigned i;
55
56         /* Checks if this mount point is considered "API", and hence
57          * should be ignored */
58
59         for (i = 0; i < ELEMENTSOF(table); i += MOUNT_SKIP)
60                 if (path_startswith(path, table[i+MOUNT_WHERE]))
61                         return true;
62
63         return false;
64 }
65
66 static int is_mount_point(const char *t) {
67         struct stat a, b;
68         char *copy;
69
70         if (lstat(t, &a) < 0) {
71
72                 if (errno == ENOENT)
73                         return 0;
74
75                 return -errno;
76         }
77
78         if (!(copy = strdup(t)))
79                 return -ENOMEM;
80
81         if (lstat(dirname(copy), &b) < 0) {
82                 free(copy);
83                 return -errno;
84         }
85
86         free(copy);
87
88         return a.st_dev != b.st_dev;
89
90 }
91
92 static int mount_one(const char *t[]) {
93         int r;
94
95         assert(t);
96
97         if ((r = is_mount_point(t[MOUNT_WHERE])) < 0)
98                 return r;
99
100         if (r > 0)
101                 return 0;
102
103         /* The access mode here doesn't really matter too much, since
104          * the mounted file system will take precedence anyway. */
105         mkdir_p(t[MOUNT_WHERE], 0755);
106
107         log_debug("Mounting %s to %s of type %s with options %s.",
108                   t[MOUNT_WHAT],
109                   t[MOUNT_WHERE],
110                   t[MOUNT_TYPE],
111                   strna(t[MOUNT_OPTIONS]));
112
113         if (mount(t[MOUNT_WHAT],
114                   t[MOUNT_WHERE],
115                   t[MOUNT_TYPE],
116                   0,
117                   t[MOUNT_OPTIONS]) < 0) {
118                 log_error("Failed to mount %s: %s", t[MOUNT_WHERE], strerror(errno));
119                 return -errno;
120         }
121
122         return 0;
123 }
124
125 int mount_setup(void) {
126         int r;
127         unsigned i;
128
129         for (i = 0; i < ELEMENTSOF(table); i += MOUNT_SKIP)
130                 if ((r = mount_one(table + i)) < 0)
131                         return r;
132
133         return 0;
134 }