1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
3 Copyright © 2014 Holger Hans Peter Freyther
10 #include <sys/prctl.h>
15 #include "sd-device.h"
17 #include "alloc-util.h"
18 #include "bus-common-errors.h"
19 #include "bus-error.h"
20 #include "bus-locator.h"
22 #include "device-util.h"
25 #include "fsck-util.h"
26 #include "main-func.h"
27 #include "parse-util.h"
28 #include "path-util.h"
29 #include "proc-cmdline.h"
30 #include "process-util.h"
31 #include "signal-util.h"
32 #include "socket-util.h"
34 #include "stdio-util.h"
36 static bool arg_skip
= false;
37 static bool arg_force
= false;
38 static bool arg_show_progress
= false;
39 static const char *arg_repair
= "-a";
41 static void start_target(const char *target
, const char *mode
) {
42 _cleanup_(sd_bus_error_free
) sd_bus_error error
= SD_BUS_ERROR_NULL
;
43 _cleanup_(sd_bus_flush_close_unrefp
) sd_bus
*bus
= NULL
;
48 r
= bus_connect_system_systemd(&bus
);
50 log_error_errno(r
, "Failed to get D-Bus connection: %m");
54 log_info("Requesting %s/start/%s", target
, mode
);
56 /* Start this unit only if we can replace basic.target with it */
57 r
= bus_call_method(bus
, bus_systemd_mgr
, "StartUnitReplace", &error
, NULL
, "sss", "basic.target", target
, mode
);
59 /* Don't print a warning if we aren't called during startup */
60 if (r
< 0 && !sd_bus_error_has_name(&error
, BUS_ERROR_NO_SUCH_JOB
))
61 log_error("Failed to start unit: %s", bus_error_message(&error
, r
));
64 static int parse_proc_cmdline_item(const char *key
, const char *value
, void *data
) {
69 if (streq(key
, "fsck.mode")) {
71 if (proc_cmdline_value_missing(key
, value
))
74 if (streq(value
, "auto"))
75 arg_force
= arg_skip
= false;
76 else if (streq(value
, "force"))
78 else if (streq(value
, "skip"))
81 log_warning("Invalid fsck.mode= parameter '%s'. Ignoring.", value
);
83 } else if (streq(key
, "fsck.repair")) {
85 if (proc_cmdline_value_missing(key
, value
))
88 if (streq(value
, "preen"))
91 r
= parse_boolean(value
);
97 log_warning("Invalid fsck.repair= parameter '%s'. Ignoring.", value
);
102 else if (streq(key
, "fastboot") && !value
) {
103 log_warning("Please pass 'fsck.mode=skip' rather than 'fastboot' on the kernel command line.");
106 } else if (streq(key
, "forcefsck") && !value
) {
107 log_warning("Please pass 'fsck.mode=force' rather than 'forcefsck' on the kernel command line.");
115 static void test_files(void) {
118 if (access("/fastboot", F_OK
) >= 0) {
119 log_error("Please pass 'fsck.mode=skip' on the kernel command line rather than creating /fastboot on the root file system.");
123 if (access("/forcefsck", F_OK
) >= 0) {
124 log_error("Please pass 'fsck.mode=force' on the kernel command line rather than creating /forcefsck on the root file system.");
129 arg_show_progress
= access("/run/systemd/show-status", F_OK
) >= 0;
132 static double percent(int pass
, unsigned long cur
, unsigned long max
) {
133 /* Values stolen from e2fsck */
135 static const int pass_table
[] = {
136 0, 70, 90, 92, 95, 100
142 if ((unsigned) pass
>= ELEMENTSOF(pass_table
) || max
== 0)
145 return (double) pass_table
[pass
-1] +
146 ((double) pass_table
[pass
] - (double) pass_table
[pass
-1]) *
147 (double) cur
/ (double) max
;
150 static int process_progress(int fd
, FILE* console
) {
151 _cleanup_fclose_
FILE *f
= NULL
;
156 /* No progress pipe to process? Then we are a NOP. */
163 return log_debug_errno(errno
, "Failed to use pipe: %m");
168 unsigned long cur
, max
;
169 _cleanup_free_
char *device
= NULL
;
173 if (fscanf(f
, "%i %lu %lu %ms", &pass
, &cur
, &max
, &device
) != 4) {
176 r
= log_warning_errno(errno
, "Failed to read from progress pipe: %m");
180 r
= log_warning_errno(SYNTHETIC_ERRNO(errno
), "Failed to parse progress pipe data");
185 /* Only show one progress counter at max */
187 if (flock(fileno(console
), LOCK_EX
|LOCK_NB
) < 0)
193 /* Only update once every 50ms */
194 t
= now(CLOCK_MONOTONIC
);
195 if (last
+ 50 * USEC_PER_MSEC
> t
)
200 p
= percent(pass
, cur
, max
);
201 r
= fprintf(console
, "\r%s: fsck %3.1f%% complete...\r", device
, p
);
203 return -EIO
; /* No point in continuing if something happened to our output stream */
206 clear
= MAX(clear
, r
);
210 fputc('\r', console
);
211 for (int j
= 0; j
< clear
; j
++)
213 fputc('\r', console
);
220 static int fsck_progress_socket(void) {
221 _cleanup_close_
int fd
= -EBADF
;
224 fd
= socket(AF_UNIX
, SOCK_STREAM
, 0);
226 return log_warning_errno(errno
, "socket(): %m");
228 r
= connect_unix_path(fd
, AT_FDCWD
, "/run/systemd/fsck.progress");
230 return log_full_errno(IN_SET(r
, -ECONNREFUSED
, -ENOENT
) ? LOG_DEBUG
: LOG_WARNING
,
231 r
, "Failed to connect to progress socket, ignoring: %m");
236 static int run(int argc
, char *argv
[]) {
237 _cleanup_close_pair_
int progress_pipe
[2] = EBADF_PAIR
;
238 _cleanup_(sd_device_unrefp
) sd_device
*dev
= NULL
;
239 _cleanup_free_
char *dpath
= NULL
;
240 _cleanup_fclose_
FILE *console
= NULL
;
241 const char *device
, *type
;
250 return log_error_errno(SYNTHETIC_ERRNO(EINVAL
),
251 "This program expects one or no arguments.");
255 r
= proc_cmdline_parse(parse_proc_cmdline_item
, NULL
, PROC_CMDLINE_STRIP_RD_PREFIX
);
257 log_warning_errno(r
, "Failed to parse kernel command line, ignoring: %m");
261 if (!arg_force
&& arg_skip
)
265 dpath
= strdup(argv
[1]);
271 if (stat(device
, &st
) < 0)
272 return log_error_errno(errno
, "Failed to stat %s: %m", device
);
274 if (!S_ISBLK(st
.st_mode
))
275 return log_error_errno(SYNTHETIC_ERRNO(EINVAL
),
276 "%s is not a block device.",
279 r
= sd_device_new_from_stat_rdev(&dev
, &st
);
281 return log_error_errno(r
, "Failed to detect device %s: %m", device
);
283 root_directory
= false;
285 struct timespec times
[2];
287 /* Find root device */
289 if (stat("/", &st
) < 0)
290 return log_error_errno(errno
, "Failed to stat() the root directory: %m");
292 /* Virtual root devices don't need an fsck */
293 if (major(st
.st_dev
) == 0) {
294 log_debug("Root directory is virtual or btrfs, skipping check.");
298 /* check if we are already writable */
299 times
[0] = st
.st_atim
;
300 times
[1] = st
.st_mtim
;
302 if (utimensat(AT_FDCWD
, "/", times
, 0) == 0) {
303 log_info("Root directory is writable, skipping check.");
307 r
= sd_device_new_from_devnum(&dev
, 'b', st
.st_dev
);
309 return log_error_errno(r
, "Failed to detect root device: %m");
311 r
= sd_device_get_devname(dev
, &device
);
313 return log_device_error_errno(dev
, r
, "Failed to detect device node of root directory: %m");
315 root_directory
= true;
318 if (sd_device_get_property_value(dev
, "ID_FS_TYPE", &type
) >= 0) {
319 r
= fsck_exists_for_fstype(type
);
321 log_device_warning_errno(dev
, r
, "Couldn't detect if fsck.%s may be used, proceeding: %m", type
);
323 log_device_info(dev
, "fsck.%s doesn't exist, not checking file system.", type
);
329 log_device_warning_errno(dev
, r
, "Couldn't detect if the fsck command may be used, proceeding: %m");
331 log_device_info(dev
, "The fsck command does not exist, not checking file system.");
336 console
= fopen("/dev/console", "we");
339 pipe(progress_pipe
) < 0)
340 return log_error_errno(errno
, "pipe(): %m");
342 r
= safe_fork("(fsck)", FORK_RESET_SIGNALS
|FORK_DEATHSIG_SIGTERM
|FORK_LOG
|FORK_RLIMIT_NOFILE_SAFE
, &pid
);
346 char dash_c
[STRLEN("-C") + DECIMAL_STR_MAX(int) + 1];
347 int progress_socket
= -1;
348 const char *cmdline
[9];
353 /* Close the reading side of the progress pipe */
354 progress_pipe
[0] = safe_close(progress_pipe
[0]);
356 /* Try to connect to a progress management daemon, if there is one */
357 progress_socket
= fsck_progress_socket();
358 if (progress_socket
>= 0) {
359 /* If this worked we close the progress pipe early, and just use the socket */
360 progress_pipe
[1] = safe_close(progress_pipe
[1]);
361 xsprintf(dash_c
, "-C%i", progress_socket
);
362 } else if (progress_pipe
[1] >= 0) {
363 /* Otherwise if we have the progress pipe to our own local handle, we use it */
364 xsprintf(dash_c
, "-C%i", progress_pipe
[1]);
368 cmdline
[i
++] = "fsck";
369 cmdline
[i
++] = arg_repair
;
373 * Since util-linux v2.25 fsck uses /run/fsck/<diskname>.lock files.
374 * The previous versions use flock for the device and conflict with
375 * udevd, see https://bugs.freedesktop.org/show_bug.cgi?id=79576#c5
385 if (!isempty(dash_c
))
386 cmdline
[i
++] = dash_c
;
388 cmdline
[i
++] = device
;
391 execvp(cmdline
[0], (char**) cmdline
);
392 _exit(FSCK_OPERATIONAL_ERROR
);
396 progress_pipe
[1] = safe_close(progress_pipe
[1]);
397 (void) process_progress(TAKE_FD(progress_pipe
[0]), console
);
400 exit_status
= wait_for_terminate_and_check("fsck", pid
, WAIT_LOG_ABNORMAL
);
403 if ((exit_status
& ~FSCK_ERROR_CORRECTED
) != FSCK_SUCCESS
) {
404 log_error("fsck failed with exit status %i.", exit_status
);
406 if ((exit_status
& FSCK_SYSTEM_SHOULD_REBOOT
) && root_directory
) {
407 /* System should be rebooted. */
408 start_target(SPECIAL_REBOOT_TARGET
, "replace-irreversibly");
410 } else if (!(exit_status
& (FSCK_SYSTEM_SHOULD_REBOOT
| FSCK_ERRORS_LEFT_UNCORRECTED
)))
411 log_warning("Ignoring error.");
414 if (exit_status
& FSCK_ERROR_CORRECTED
)
415 (void) touch("/run/systemd/quotacheck");
417 return !!(exit_status
& (FSCK_SYSTEM_SHOULD_REBOOT
| FSCK_ERRORS_LEFT_UNCORRECTED
));
420 DEFINE_MAIN_FUNCTION_WITH_POSITIVE_FAILURE(run
);