]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/fsck/fsck.c
Merge pull request #1654 from poettering/util-lib
[thirdparty/systemd.git] / src / fsck / 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
f1f0198c 7 Copyright 2014 Holger Hans Peter Freyther
3d20ed6d
LP
8
9 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
10 under the terms of the GNU Lesser General Public License as published by
11 the Free Software Foundation; either version 2.1 of the License, or
3d20ed6d
LP
12 (at your option) any later version.
13
14 systemd is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 17 Lesser General Public License for more details.
3d20ed6d 18
5430f7f2 19 You should have received a copy of the GNU Lesser General Public License
3d20ed6d
LP
20 along with systemd; If not, see <http://www.gnu.org/licenses/>.
21***/
22
23#include <stdio.h>
24#include <stdbool.h>
3d20ed6d
LP
25#include <errno.h>
26#include <unistd.h>
a84f5192 27#include <fcntl.h>
27d340c7 28#include <sys/file.h>
ac6e2f0d 29#include <sys/stat.h>
96d9117a 30#include <sys/prctl.h>
3d20ed6d 31
0c842e0a 32#include "sd-bus.h"
9102fdc5 33#include "sd-device.h"
3d20ed6d 34
96aad8d1 35#include "bus-common-errors.h"
3ffd4af2
LP
36#include "bus-error.h"
37#include "bus-util.h"
9102fdc5 38#include "device-util.h"
3ffd4af2 39#include "fd-util.h"
eb66db55 40#include "path-util.h"
3ffd4af2
LP
41#include "process-util.h"
42#include "signal-util.h"
ac6e2f0d 43#include "socket-util.h"
3ffd4af2
LP
44#include "special.h"
45#include "util.h"
3d20ed6d 46
91077af6
TA
47/* exit codes as defined in fsck(8) */
48enum {
49 FSCK_SUCCESS = 0,
50 FSCK_ERROR_CORRECTED = 1,
51 FSCK_SYSTEM_SHOULD_REBOOT = 2,
52 FSCK_ERRORS_LEFT_UNCORRECTED = 4,
53 FSCK_OPERATIONAL_ERROR = 8,
54 FSCK_USAGE_OR_SYNTAX_ERROR = 16,
55 FSCK_USER_CANCELLED = 32,
56 FSCK_SHARED_LIB_ERROR = 128,
57};
58
3d20ed6d
LP
59static bool arg_skip = false;
60static bool arg_force = false;
96d9117a 61static bool arg_show_progress = false;
f1f0198c 62static const char *arg_repair = "-a";
3d20ed6d 63
48db40b3 64static void start_target(const char *target, const char *mode) {
0c842e0a 65 _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
03976f7b 66 _cleanup_bus_flush_close_unref_ sd_bus *bus = NULL;
0c842e0a 67 int r;
3d20ed6d
LP
68
69 assert(target);
70
266f3e26 71 r = bus_connect_system_systemd(&bus);
0c842e0a 72 if (r < 0) {
da927ba9 73 log_error_errno(r, "Failed to get D-Bus connection: %m");
0c842e0a 74 return;
3d20ed6d
LP
75 }
76
0c842e0a 77 log_info("Running request %s/start/replace", target);
3d20ed6d 78
90bb85e1 79 /* Start these units only if we can replace base.target with it */
0c842e0a
TG
80 r = sd_bus_call_method(bus,
81 "org.freedesktop.systemd1",
82 "/org/freedesktop/systemd1",
83 "org.freedesktop.systemd1.Manager",
84 "StartUnitReplace",
85 &error,
86 NULL,
48db40b3 87 "sss", "basic.target", target, mode);
3d20ed6d 88
5220a6f3
LP
89 /* Don't print a warning if we aren't called during startup */
90 if (r < 0 && !sd_bus_error_has_name(&error, BUS_ERROR_NO_SUCH_JOB))
24b52437 91 log_error("Failed to start unit: %s", bus_error_message(&error, r));
3d20ed6d
LP
92}
93
059cb385 94static int parse_proc_cmdline_item(const char *key, const char *value) {
24b52437
LP
95 int r;
96
97 assert(key);
059cb385
LP
98
99 if (streq(key, "fsck.mode") && value) {
100
101 if (streq(value, "auto"))
102 arg_force = arg_skip = false;
103 else if (streq(value, "force"))
104 arg_force = true;
105 else if (streq(value, "skip"))
106 arg_skip = true;
107 else
85013844
LP
108 log_warning("Invalid fsck.mode= parameter '%s'. Ignoring.", value);
109
f1f0198c
HHPF
110 } else if (streq(key, "fsck.repair") && value) {
111
112 if (streq(value, "preen"))
113 arg_repair = "-a";
24b52437
LP
114 else {
115 r = parse_boolean(value);
116 if (r > 0)
117 arg_repair = "-y";
118 else if (r == 0)
119 arg_repair = "-n";
120 else
121 log_warning("Invalid fsck.repair= parameter '%s'. Ignoring.", value);
122 }
85013844
LP
123 }
124
32f992a5 125#ifdef HAVE_SYSV_COMPAT
059cb385
LP
126 else if (streq(key, "fastboot") && !value) {
127 log_warning("Please pass 'fsck.mode=skip' rather than 'fastboot' on the kernel command line.");
141a79f4 128 arg_skip = true;
85013844 129
059cb385
LP
130 } else if (streq(key, "forcefsck") && !value) {
131 log_warning("Please pass 'fsck.mode=force' rather than 'forcefsck' on the kernel command line.");
141a79f4 132 arg_force = true;
3d20ed6d 133 }
141a79f4 134#endif
3d20ed6d 135
3d20ed6d
LP
136 return 0;
137}
138
139static void test_files(void) {
85013844 140
32f992a5
LP
141#ifdef HAVE_SYSV_COMPAT
142 if (access("/fastboot", F_OK) >= 0) {
143 log_error("Please pass 'fsck.mode=skip' on the kernel command line rather than creating /fastboot on the root file system.");
3d20ed6d 144 arg_skip = true;
32f992a5 145 }
3d20ed6d 146
32f992a5
LP
147 if (access("/forcefsck", F_OK) >= 0) {
148 log_error("Please pass 'fsck.mode=force' on the kernel command line rather than creating /forcefsck on the root file system.");
3d20ed6d 149 arg_force = true;
32f992a5
LP
150 }
151#endif
27d340c7 152
96d9117a 153 arg_show_progress = access("/run/systemd/show-status", F_OK) >= 0;
27d340c7
LP
154}
155
96d9117a
LP
156static double percent(int pass, unsigned long cur, unsigned long max) {
157 /* Values stolen from e2fsck */
158
159 static const int pass_table[] = {
160 0, 70, 90, 92, 95, 100
27d340c7
LP
161 };
162
96d9117a
LP
163 if (pass <= 0)
164 return 0.0;
165
166 if ((unsigned) pass >= ELEMENTSOF(pass_table) || max == 0)
167 return 100.0;
168
169 return (double) pass_table[pass-1] +
170 ((double) pass_table[pass] - (double) pass_table[pass-1]) *
171 (double) cur / (double) max;
172}
173
174static int process_progress(int fd) {
175 _cleanup_fclose_ FILE *console = NULL, *f = NULL;
176 usec_t last = 0;
177 bool locked = false;
178 int clear = 0, r;
179
180 /* No progress pipe to process? Then we are a NOP. */
181 if (fd < 0)
182 return 0;
183
184 f = fdopen(fd, "re");
185 if (!f) {
186 safe_close(fd);
187 return -errno;
188 }
189
190 console = fopen("/dev/console", "we");
191 if (!console)
192 return -ENOMEM;
193
194 for (;;) {
195 int pass, m;
196 unsigned long cur, max;
ac6e2f0d 197 _cleanup_free_ char *device = NULL;
96d9117a
LP
198 double p;
199 usec_t t;
27d340c7 200
96d9117a
LP
201 if (fscanf(f, "%i %lu %lu %ms", &pass, &cur, &max, &device) != 4) {
202
203 if (ferror(f))
204 r = log_warning_errno(errno, "Failed to read from progress pipe: %m");
205 else if (feof(f))
206 r = 0;
207 else {
208 log_warning("Failed to parse progress pipe data");
209 r = -EBADMSG;
210 }
27d340c7 211 break;
96d9117a
LP
212 }
213
214 /* Only show one progress counter at max */
215 if (!locked) {
216 if (flock(fileno(console), LOCK_EX|LOCK_NB) < 0)
217 continue;
218
219 locked = true;
220 }
27d340c7 221
27d340c7
LP
222 /* Only update once every 50ms */
223 t = now(CLOCK_MONOTONIC);
e375825d 224 if (last + 50 * USEC_PER_MSEC > t)
27d340c7 225 continue;
27d340c7
LP
226
227 last = t;
228
96d9117a
LP
229 p = percent(pass, cur, max);
230 fprintf(console, "\r%s: fsck %3.1f%% complete...\r%n", device, p, &m);
231 fflush(console);
232
233 if (m > clear)
234 clear = m;
27d340c7
LP
235 }
236
96d9117a
LP
237 if (clear > 0) {
238 unsigned j;
239
240 fputc('\r', console);
241 for (j = 0; j < (unsigned) clear; j++)
242 fputc(' ', console);
243 fputc('\r', console);
244 fflush(console);
245 }
246
247 return r;
248}
249
250static int fsck_progress_socket(void) {
251 static const union sockaddr_union sa = {
252 .un.sun_family = AF_UNIX,
253 .un.sun_path = "/run/systemd/fsck.progress",
254 };
255
256 int fd, r;
257
258 fd = socket(AF_UNIX, SOCK_STREAM, 0);
259 if (fd < 0)
260 return log_warning_errno(errno, "socket(): %m");
261
262 if (connect(fd, &sa.sa, offsetof(struct sockaddr_un, sun_path) + strlen(sa.un.sun_path)) < 0) {
263 r = log_full_errno(errno == ECONNREFUSED || errno == ENOENT ? LOG_DEBUG : LOG_WARNING,
264 errno, "Failed to connect to progress socket %s, ignoring: %m", sa.un.sun_path);
265 safe_close(fd);
266 return r;
267 }
268
269 return fd;
3d20ed6d
LP
270}
271
272int main(int argc, char *argv[]) {
96d9117a 273 _cleanup_close_pair_ int progress_pipe[2] = { -1, -1 };
9102fdc5 274 _cleanup_device_unref_ sd_device *dev = NULL;
94192cda 275 const char *device, *type;
dc8e15c2 276 bool root_directory;
96d9117a 277 siginfo_t status;
94192cda 278 struct stat st;
96d9117a
LP
279 int r;
280 pid_t pid;
3d20ed6d 281
a9e1f5ec
LP
282 if (argc > 2) {
283 log_error("This program expects one or no arguments.");
3d20ed6d
LP
284 return EXIT_FAILURE;
285 }
286
27d340c7 287 log_set_target(LOG_TARGET_AUTO);
3d20ed6d
LP
288 log_parse_environment();
289 log_open();
290
4c12626c
LP
291 umask(0022);
292
e7a3aa3d
LP
293 r = parse_proc_cmdline(parse_proc_cmdline_item);
294 if (r < 0)
295 log_warning_errno(r, "Failed to parse kernel command line, ignoring: %m");
b5884878 296
3d20ed6d
LP
297 test_files();
298
566690fd
LP
299 if (!arg_force && arg_skip) {
300 r = 0;
301 goto finish;
302 }
a9e1f5ec 303
dc8e15c2 304 if (argc > 1) {
a9e1f5ec 305 device = argv[1];
94192cda
ZJS
306
307 if (stat(device, &st) < 0) {
e7a3aa3d
LP
308 r = log_error_errno(errno, "Failed to stat %s: %m", device);
309 goto finish;
310 }
311
312 if (!S_ISBLK(st.st_mode)) {
313 log_error("%s is not a block device.", device);
314 r = -EINVAL;
566690fd 315 goto finish;
94192cda
ZJS
316 }
317
9102fdc5
TG
318 r = sd_device_new_from_devnum(&dev, 'b', st.st_rdev);
319 if (r < 0) {
320 log_error_errno(r, "Failed to detect device %s: %m", device);
566690fd 321 goto finish;
94192cda 322 }
e7a3aa3d
LP
323
324 root_directory = false;
dc8e15c2 325 } else {
a84f5192 326 struct timespec times[2];
3d20ed6d 327
a9e1f5ec
LP
328 /* Find root device */
329
330 if (stat("/", &st) < 0) {
566690fd
LP
331 r = log_error_errno(errno, "Failed to stat() the root directory: %m");
332 goto finish;
a9e1f5ec
LP
333 }
334
335 /* Virtual root devices don't need an fsck */
566690fd 336 if (major(st.st_dev) == 0) {
e7a3aa3d 337 log_debug("Root directory is virtual or btrfs, skipping check.");
566690fd
LP
338 r = 0;
339 goto finish;
340 }
a9e1f5ec 341
a84f5192
KS
342 /* check if we are already writable */
343 times[0] = st.st_atim;
344 times[1] = st.st_mtim;
e7a3aa3d 345
a84f5192 346 if (utimensat(AT_FDCWD, "/", times, 0) == 0) {
cf1a1055 347 log_info("Root directory is writable, skipping check.");
566690fd
LP
348 r = 0;
349 goto finish;
a84f5192
KS
350 }
351
9102fdc5
TG
352 r = sd_device_new_from_devnum(&dev, 'b', st.st_dev);
353 if (r < 0) {
354 log_error_errno(r, "Failed to detect root device: %m");
566690fd 355 goto finish;
a9e1f5ec
LP
356 }
357
9102fdc5
TG
358 r = sd_device_get_devname(dev, &device);
359 if (r < 0) {
360 log_error_errno(r, "Failed to detect device node of root directory: %m");
566690fd 361 goto finish;
3e33a44a 362 }
dc8e15c2
LP
363
364 root_directory = true;
3d20ed6d
LP
365 }
366
9102fdc5
TG
367 r = sd_device_get_property_value(dev, "ID_FS_TYPE", &type);
368 if (r >= 0) {
eb66db55 369 r = fsck_exists(type);
85eca92e
LP
370 if (r < 0)
371 log_warning_errno(r, "Couldn't detect if fsck.%s may be used for %s, proceeding: %m", type, device);
372 else if (r == 0) {
373 log_info("fsck.%s doesn't exist, not checking file system on %s.", type, device);
566690fd 374 goto finish;
85eca92e 375 }
94192cda
ZJS
376 }
377
96d9117a
LP
378 if (arg_show_progress) {
379 if (pipe(progress_pipe) < 0) {
380 r = log_error_errno(errno, "pipe(): %m");
381 goto finish;
382 }
19e887e7 383 }
27d340c7 384
27d340c7
LP
385 pid = fork();
386 if (pid < 0) {
566690fd 387 r = log_error_errno(errno, "fork(): %m");
3d20ed6d 388 goto finish;
96d9117a
LP
389 }
390 if (pid == 0) {
391 char dash_c[sizeof("-C")-1 + DECIMAL_STR_MAX(int) + 1];
392 int progress_socket = -1;
393 const char *cmdline[9];
394 int i = 0;
395
3d20ed6d 396 /* Child */
96d9117a 397
ce30c8dc
LP
398 (void) reset_all_signal_handlers();
399 (void) reset_signal_mask();
96d9117a
LP
400 assert_se(prctl(PR_SET_PDEATHSIG, SIGTERM) == 0);
401
402 /* Close the reading side of the progress pipe */
1952708a 403 progress_pipe[0] = safe_close(progress_pipe[0]);
96d9117a
LP
404
405 /* Try to connect to a progress management daemon, if there is one */
406 progress_socket = fsck_progress_socket();
407 if (progress_socket >= 0) {
408 /* If this worked we close the progress pipe early, and just use the socket */
409 progress_pipe[1] = safe_close(progress_pipe[1]);
410 xsprintf(dash_c, "-C%i", progress_socket);
411 } else if (progress_pipe[1] >= 0) {
412 /* Otherwise if we have the progress pipe to our own local handle, we use it */
413 xsprintf(dash_c, "-C%i", progress_pipe[1]);
414 } else
415 dash_c[0] = 0;
416
417 cmdline[i++] = "/sbin/fsck";
418 cmdline[i++] = arg_repair;
419 cmdline[i++] = "-T";
420
421 /*
422 * Since util-linux v2.25 fsck uses /run/fsck/<diskname>.lock files.
423 * The previous versions use flock for the device and conflict with
424 * udevd, see https://bugs.freedesktop.org/show_bug.cgi?id=79576#c5
425 */
426 cmdline[i++] = "-l";
427
428 if (!root_directory)
429 cmdline[i++] = "-M";
430
431 if (arg_force)
432 cmdline[i++] = "-f";
433
434 if (!isempty(dash_c))
435 cmdline[i++] = dash_c;
436
437 cmdline[i++] = device;
438 cmdline[i++] = NULL;
439
3d20ed6d 440 execv(cmdline[0], (char**) cmdline);
91077af6 441 _exit(FSCK_OPERATIONAL_ERROR);
3d20ed6d
LP
442 }
443
03e334a1 444 progress_pipe[1] = safe_close(progress_pipe[1]);
96d9117a 445 (void) process_progress(progress_pipe[0]);
576a13ea 446 progress_pipe[0] = -1;
27d340c7 447
566690fd
LP
448 r = wait_for_terminate(pid, &status);
449 if (r < 0) {
450 log_error_errno(r, "waitid(): %m");
3d20ed6d
LP
451 goto finish;
452 }
453
96d9117a 454 if (status.si_code != CLD_EXITED || (status.si_status & ~1)) {
3d20ed6d 455
96d9117a 456 if (status.si_code == CLD_KILLED || status.si_code == CLD_DUMPED)
a9e1f5ec
LP
457 log_error("fsck terminated by signal %s.", signal_to_string(status.si_status));
458 else if (status.si_code == CLD_EXITED)
459 log_error("fsck failed with error code %i.", status.si_status);
96d9117a 460 else
a9e1f5ec 461 log_error("fsck failed due to unknown reason.");
3d20ed6d 462
566690fd
LP
463 r = -EINVAL;
464
91077af6 465 if (status.si_code == CLD_EXITED && (status.si_status & FSCK_SYSTEM_SHOULD_REBOOT) && root_directory)
3d20ed6d 466 /* System should be rebooted. */
48db40b3 467 start_target(SPECIAL_REBOOT_TARGET, "replace-irreversibly");
91077af6 468 else if (status.si_code == CLD_EXITED && (status.si_status & (FSCK_SYSTEM_SHOULD_REBOOT | FSCK_ERRORS_LEFT_UNCORRECTED)))
3d20ed6d 469 /* Some other problem */
48db40b3 470 start_target(SPECIAL_EMERGENCY_TARGET, "replace");
a4c24ff7 471 else {
96d9117a 472 log_warning("Ignoring error.");
566690fd 473 r = 0;
a4c24ff7 474 }
3d20ed6d
LP
475
476 } else
566690fd 477 r = 0;
3d20ed6d 478
91077af6 479 if (status.si_code == CLD_EXITED && (status.si_status & FSCK_ERROR_CORRECTED))
e7a3aa3d 480 (void) touch("/run/systemd/quotacheck");
3d20ed6d
LP
481
482finish:
566690fd 483 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
3d20ed6d 484}