]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/fsck.c
manager: call generators with umask 0022
[thirdparty/systemd.git] / src / fsck.c
CommitLineData
3d20ed6d
LP
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 <stdio.h>
23#include <stdbool.h>
24#include <string.h>
25#include <errno.h>
26#include <unistd.h>
a84f5192 27#include <fcntl.h>
3d20ed6d 28
a9e1f5ec 29#include <libudev.h>
3d20ed6d
LP
30#include <dbus/dbus.h>
31
32#include "util.h"
3d20ed6d
LP
33#include "dbus-common.h"
34#include "special.h"
ef1de59b 35#include "bus-errors.h"
3d20ed6d
LP
36
37static bool arg_skip = false;
38static bool arg_force = false;
39
40static void start_target(const char *target, bool isolate) {
41 DBusMessage *m = NULL, *reply = NULL;
42 DBusError error;
70f12d37 43 const char *mode, *basic_target = "basic.target";
3d20ed6d
LP
44 DBusConnection *bus = NULL;
45
46 assert(target);
47
48 dbus_error_init(&error);
49
50 if (bus_connect(DBUS_BUS_SYSTEM, &bus, NULL, &error) < 0) {
51 log_error("Failed to get D-Bus connection: %s", bus_error_message(&error));
52 goto finish;
53 }
54
55 if (isolate)
56 mode = "isolate";
57 else
58 mode = "replace";
59
a4c24ff7 60 log_info("Running request %s/start/%s", target, mode);
3d20ed6d 61
90bb85e1 62 if (!(m = dbus_message_new_method_call("org.freedesktop.systemd1", "/org/freedesktop/systemd1", "org.freedesktop.systemd1.Manager", "StartUnitReplace"))) {
3d20ed6d
LP
63 log_error("Could not allocate message.");
64 goto finish;
65 }
66
90bb85e1
LP
67 /* Start these units only if we can replace base.target with it */
68
3d20ed6d 69 if (!dbus_message_append_args(m,
70f12d37 70 DBUS_TYPE_STRING, &basic_target,
3d20ed6d
LP
71 DBUS_TYPE_STRING, &target,
72 DBUS_TYPE_STRING, &mode,
73 DBUS_TYPE_INVALID)) {
74 log_error("Could not attach target and flag information to message.");
75 goto finish;
76 }
77
78 if (!(reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error))) {
ef1de59b
LP
79
80 /* Don't print a waring if we aren't called during
81 * startup */
82 if (!dbus_error_has_name(&error, BUS_ERROR_NO_SUCH_JOB))
83 log_error("Failed to start unit: %s", bus_error_message(&error));
84
3d20ed6d
LP
85 goto finish;
86 }
87
88finish:
89 if (m)
90 dbus_message_unref(m);
91
92 if (reply)
93 dbus_message_unref(reply);
94
95 if (bus) {
96 dbus_connection_flush(bus);
97 dbus_connection_close(bus);
98 dbus_connection_unref(bus);
99 }
100
101 dbus_error_free(&error);
102}
103
104static int parse_proc_cmdline(void) {
105 char *line, *w, *state;
106 int r;
107 size_t l;
108
03aea2ae 109 if (detect_container(NULL) > 0)
2fc97846
LP
110 return 0;
111
3d20ed6d
LP
112 if ((r = read_one_line_file("/proc/cmdline", &line)) < 0) {
113 log_warning("Failed to read /proc/cmdline, ignoring: %s", strerror(-r));
114 return 0;
115 }
116
117 FOREACH_WORD_QUOTED(w, l, line, state) {
118
119 if (strneq(w, "fsck.mode=auto", l))
120 arg_force = arg_skip = false;
121 else if (strneq(w, "fsck.mode=force", l))
122 arg_force = true;
123 else if (strneq(w, "fsck.mode=skip", l))
124 arg_skip = true;
125 else if (startswith(w, "fsck.mode"))
126 log_warning("Invalid fsck.mode= parameter. Ignoring.");
1de4d79b 127#if defined(TARGET_FEDORA) || defined(TARGET_MANDRIVA)
3d20ed6d
LP
128 else if (strneq(w, "fastboot", l))
129 arg_skip = true;
130 else if (strneq(w, "forcefsck", l))
131 arg_force = true;
132#endif
133 }
134
135 free(line);
136 return 0;
137}
138
139static void test_files(void) {
140 if (access("/fastboot", F_OK) >= 0)
141 arg_skip = true;
142
143 if (access("/forcefsck", F_OK) >= 0)
144 arg_force = true;
145}
146
147int main(int argc, char *argv[]) {
e9ecea88 148 const char *cmdline[8];
3d20ed6d
LP
149 int i = 0, r = EXIT_FAILURE, q;
150 pid_t pid;
151 siginfo_t status;
a9e1f5ec
LP
152 struct udev *udev = NULL;
153 struct udev_device *udev_device = NULL;
154 const char *device;
dc8e15c2 155 bool root_directory;
3d20ed6d 156
a9e1f5ec
LP
157 if (argc > 2) {
158 log_error("This program expects one or no arguments.");
3d20ed6d
LP
159 return EXIT_FAILURE;
160 }
161
162 log_set_target(LOG_TARGET_SYSLOG_OR_KMSG);
163 log_parse_environment();
164 log_open();
165
166 parse_proc_cmdline();
167 test_files();
168
a9e1f5ec
LP
169 if (!arg_force && arg_skip)
170 return 0;
171
dc8e15c2 172 if (argc > 1) {
a9e1f5ec 173 device = argv[1];
dc8e15c2
LP
174 root_directory = false;
175 } else {
a9e1f5ec 176 struct stat st;
a84f5192 177 struct timespec times[2];
3d20ed6d 178
a9e1f5ec
LP
179 /* Find root device */
180
181 if (stat("/", &st) < 0) {
182 log_error("Failed to stat() the root directory: %m");
183 goto finish;
184 }
185
186 /* Virtual root devices don't need an fsck */
187 if (major(st.st_dev) == 0)
3d20ed6d 188 return 0;
a9e1f5ec 189
a84f5192
KS
190 /* check if we are already writable */
191 times[0] = st.st_atim;
192 times[1] = st.st_mtim;
193 if (utimensat(AT_FDCWD, "/", times, 0) == 0) {
cf1a1055 194 log_info("Root directory is writable, skipping check.");
0f6aaf1b 195 return 0;
a84f5192
KS
196 }
197
a9e1f5ec
LP
198 if (!(udev = udev_new())) {
199 log_error("Out of memory");
200 goto finish;
201 }
202
203 if (!(udev_device = udev_device_new_from_devnum(udev, 'b', st.st_dev))) {
204 log_error("Failed to detect root device.");
205 goto finish;
206 }
207
208 if (!(device = udev_device_get_devnode(udev_device))) {
209 log_error("Failed to detect device node of root directory.");
210 goto finish;
3e33a44a 211 }
dc8e15c2
LP
212
213 root_directory = true;
3d20ed6d
LP
214 }
215
216 cmdline[i++] = "/sbin/fsck";
217 cmdline[i++] = "-a";
218 cmdline[i++] = "-T";
e9ecea88 219 cmdline[i++] = "-l";
dc8e15c2
LP
220
221 if (!root_directory)
222 cmdline[i++] = "-M";
3d20ed6d
LP
223
224 if (arg_force)
225 cmdline[i++] = "-f";
226
a9e1f5ec 227 cmdline[i++] = device;
3d20ed6d
LP
228 cmdline[i++] = NULL;
229
230 if ((pid = fork()) < 0) {
231 log_error("fork(): %m");
232 goto finish;
233 } else if (pid == 0) {
234 /* Child */
235 execv(cmdline[0], (char**) cmdline);
236 _exit(8); /* Operational error */
237 }
238
239 if ((q = wait_for_terminate(pid, &status)) < 0) {
240 log_error("waitid(): %s", strerror(-q));
241 goto finish;
242 }
243
a9e1f5ec 244 if (status.si_code != CLD_EXITED || (status.si_status & ~1)) {
3d20ed6d 245
a9e1f5ec
LP
246 if (status.si_code == CLD_KILLED || status.si_code == CLD_DUMPED)
247 log_error("fsck terminated by signal %s.", signal_to_string(status.si_status));
248 else if (status.si_code == CLD_EXITED)
249 log_error("fsck failed with error code %i.", status.si_status);
250 else
251 log_error("fsck failed due to unknown reason.");
3d20ed6d 252
a4c24ff7 253 if (status.si_code == CLD_EXITED && (status.si_status & 2) && root_directory)
3d20ed6d
LP
254 /* System should be rebooted. */
255 start_target(SPECIAL_REBOOT_TARGET, false);
a4c24ff7 256 else if (status.si_code == CLD_EXITED && (status.si_status & 6))
3d20ed6d
LP
257 /* Some other problem */
258 start_target(SPECIAL_EMERGENCY_TARGET, true);
a4c24ff7
LP
259 else {
260 r = EXIT_SUCCESS;
261 log_warning("Ignoring error.");
262 }
3d20ed6d
LP
263
264 } else
265 r = EXIT_SUCCESS;
266
a9e1f5ec 267 if (status.si_code == CLD_EXITED && (status.si_status & 1))
2b583ce6 268 touch("/run/systemd/quotacheck");
3d20ed6d
LP
269
270finish:
a9e1f5ec
LP
271 if (udev_device)
272 udev_device_unref(udev_device);
273
274 if (udev)
275 udev_unref(udev);
276
3d20ed6d
LP
277 return r;
278}