chiark / gitweb /
path: optionally, create watched directories in .path units
[elogind.git] / src / fsck.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 <stdio.h>
23 #include <stdbool.h>
24 #include <string.h>
25 #include <errno.h>
26 #include <unistd.h>
27 #include <fcntl.h>
28
29 #include <libudev.h>
30 #include <dbus/dbus.h>
31
32 #include "util.h"
33 #include "dbus-common.h"
34 #include "special.h"
35 #include "bus-errors.h"
36
37 static bool arg_skip = false;
38 static bool arg_force = false;
39
40 static void start_target(const char *target, bool isolate) {
41         DBusMessage *m = NULL, *reply = NULL;
42         DBusError error;
43         const char *mode, *basic_target = "basic.target";
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
60         log_info("Running request %s/start/%s", target, mode);
61
62         if (!(m = dbus_message_new_method_call("org.freedesktop.systemd1", "/org/freedesktop/systemd1", "org.freedesktop.systemd1.Manager", "StartUnitReplace"))) {
63                 log_error("Could not allocate message.");
64                 goto finish;
65         }
66
67         /* Start these units only if we can replace base.target with it */
68
69         if (!dbus_message_append_args(m,
70                                       DBUS_TYPE_STRING, &basic_target,
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))) {
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
85                 goto finish;
86         }
87
88 finish:
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
104 static int parse_proc_cmdline(void) {
105         char *line, *w, *state;
106         int r;
107         size_t l;
108
109         if (detect_container(NULL) > 0)
110                 return 0;
111
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.");
127 #if defined(TARGET_FEDORA) || defined(TARGET_MANDRIVA)
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
139 static 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
147 int main(int argc, char *argv[]) {
148         const char *cmdline[8];
149         int i = 0, r = EXIT_FAILURE, q;
150         pid_t pid;
151         siginfo_t status;
152         struct udev *udev = NULL;
153         struct udev_device *udev_device = NULL;
154         const char *device;
155         bool root_directory;
156
157         if (argc > 2) {
158                 log_error("This program expects one or no arguments.");
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
169         if (!arg_force && arg_skip)
170                 return 0;
171
172         if (argc > 1) {
173                 device = argv[1];
174                 root_directory = false;
175         } else {
176                 struct stat st;
177                 struct timespec times[2];
178
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)
188                         return 0;
189
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) {
194                         log_info("Root directory is writable, skipping check.");
195                         return 0;
196                 }
197
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;
211                 }
212
213                 root_directory = true;
214         }
215
216         cmdline[i++] = "/sbin/fsck";
217         cmdline[i++] = "-a";
218         cmdline[i++] = "-T";
219         cmdline[i++] = "-l";
220
221         if (!root_directory)
222                 cmdline[i++] = "-M";
223
224         if (arg_force)
225                 cmdline[i++] = "-f";
226
227         cmdline[i++] = device;
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
244         if (status.si_code != CLD_EXITED || (status.si_status & ~1)) {
245
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.");
252
253                 if (status.si_code == CLD_EXITED && (status.si_status & 2) && root_directory)
254                         /* System should be rebooted. */
255                         start_target(SPECIAL_REBOOT_TARGET, false);
256                 else if (status.si_code == CLD_EXITED && (status.si_status & 6))
257                         /* Some other problem */
258                         start_target(SPECIAL_EMERGENCY_TARGET, true);
259                 else {
260                         r = EXIT_SUCCESS;
261                         log_warning("Ignoring error.");
262                 }
263
264         } else
265                 r = EXIT_SUCCESS;
266
267         if (status.si_code == CLD_EXITED && (status.si_status & 1))
268                 touch("/run/systemd/quotacheck");
269
270 finish:
271         if (udev_device)
272                 udev_device_unref(udev_device);
273
274         if (udev)
275                 udev_unref(udev);
276
277         return r;
278 }