]> git.ipfire.org Git - thirdparty/util-linux.git/blame - disk-utils/fsck.c
misc: consolidate macro style USAGE_HELP_OPTIONS
[thirdparty/util-linux.git] / disk-utils / fsck.c
CommitLineData
607c2a72 1/*
41e32d9f 2 * fsck --- A generic, parallelizing front-end for the fsck program.
607c2a72
KZ
3 * It will automatically try to run fsck programs in parallel if the
4 * devices are on separate spindles. It is based on the same ideas as
5 * the generic front end for fsck by David Engel and Fred van Kempen,
6 * but it has been completely rewritten from scratch to support
7 * parallel execution.
8 *
9 * Written by Theodore Ts'o, <tytso@mit.edu>
10 *
11 * Miquel van Smoorenburg (miquels@drinkel.ow.org) 20-Oct-1994:
12 * o Changed -t fstype to behave like with mount when -A (all file
13 * systems) or -M (like mount) is specified.
14 * o fsck looks if it can find the fsck.type program to decide
15 * if it should ignore the fs type. This way more fsck programs
16 * can be added without changing this front-end.
17 * o -R flag skip root file system.
18 *
19 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
20 * 2001, 2002, 2003, 2004, 2005 by Theodore Ts'o.
21 *
934530c7 22 * Copyright (C) 2009-2014 Karel Zak <kzak@redhat.com>
607c2a72
KZ
23 *
24 * This file may be redistributed under the terms of the GNU Public
25 * License.
26 */
27
28#define _XOPEN_SOURCE 600 /* for inclusion of sa_handler in Solaris */
29
30#include <sys/types.h>
31#include <sys/wait.h>
607c2a72 32#include <sys/stat.h>
dd0bd943
KZ
33#include <sys/file.h>
34#include <fcntl.h>
607c2a72
KZ
35#include <limits.h>
36#include <stdio.h>
37#include <ctype.h>
38#include <string.h>
39#include <time.h>
40#include <stdlib.h>
607c2a72
KZ
41#include <paths.h>
42#include <unistd.h>
43#include <errno.h>
607c2a72 44#include <signal.h>
0c0f93fc 45#include <dirent.h>
5a0da00a 46#include <sys/resource.h>
0556def4 47#include <sys/time.h>
0c0f93fc 48#include <blkid.h>
2b505124 49#include <libmount.h>
607c2a72
KZ
50
51#include "nls.h"
52#include "pathnames.h"
947558f5 53#include "exitcodes.h"
93bd18bc 54#include "c.h"
3bbdae63 55#include "fileutils.h"
c9e24d60 56#include "monotonic.h"
658c0891
KZ
57#include "strutils.h"
58
947558f5 59#define XALLOC_EXIT_CODE FSCK_EX_ERROR
0a09eb4e 60#include "xalloc.h"
607c2a72 61
090d8c76
KZ
62#define CLOSE_EXIT_CODE FSCK_EX_ERROR
63#include "closestream.h"
64
7ac166bf
KZ
65#ifndef DEFAULT_FSTYPE
66# define DEFAULT_FSTYPE "ext2"
67#endif
68
69#define MAX_DEVICES 32
70#define MAX_ARGS 32
71
3bbdae63
KZ
72#define FSCK_RUNTIME_DIRNAME "/run/fsck"
73
607c2a72
KZ
74static const char *ignored_types[] = {
75 "ignore",
76 "iso9660",
607c2a72 77 "sw",
607c2a72
KZ
78 NULL
79};
80
81static const char *really_wanted[] = {
82 "minix",
83 "ext2",
84 "ext3",
85 "ext4",
86 "ext4dev",
87 "jfs",
556c9c48 88 "reiserfs"
607c2a72
KZ
89};
90
7ac166bf 91/*
9e930041 92 * Internal structure for mount table entries.
7ac166bf
KZ
93 */
94struct fsck_fs_data
95{
96 const char *device;
97 dev_t disk;
98 unsigned int stacked:1,
99 done:1,
100 eval_device:1;
101};
102
103/*
104 * Structure to allow exit codes to be stored
105 */
106struct fsck_instance {
107 int pid;
108 int flags; /* FLAG_{DONE|PROGRESS} */
3bbdae63
KZ
109
110 int lock; /* flock()ed lockpath file descriptor or -1 */
111 char *lockpath; /* /run/fsck/<diskname>.lock or NULL */
112
7ac166bf 113 int exit_status;
0556def4
KZ
114 struct timeval start_time;
115 struct timeval end_time;
7ac166bf
KZ
116 char * prog;
117 char * type;
118
5a0da00a 119 struct rusage rusage;
7ac166bf
KZ
120 struct libmnt_fs *fs;
121 struct fsck_instance *next;
122};
123
124#define FLAG_DONE 1
125#define FLAG_PROGRESS 2
607c2a72
KZ
126
127/*
128 * Global variables for options
129 */
5894bcd4
KZ
130static char *devices[MAX_DEVICES];
131static char *args[MAX_ARGS];
132static int num_devices, num_args;
133
134static int lockdisk;
135static int verbose;
136static int doall;
137static int noexecute;
138static int serialize;
139static int skip_root;
140static int ignore_mounted;
141static int notitle;
142static int parallel_root;
143static int progress;
144static int progress_fd;
145static int force_all_parallel;
5a0da00a 146static int report_stats;
07c09a29 147static FILE *report_stats_file;
5894bcd4
KZ
148
149static int num_running;
150static int max_running;
151
152static volatile int cancel_requested;
153static int kill_sent;
154static char *fstype;
155static struct fsck_instance *instance_list;
156
a03bdbcd 157#define FSCK_DEFAULT_PATH "/sbin"
5894bcd4
KZ
158static char *fsck_path;
159
a03bdbcd 160
5894bcd4 161/* parsed fstab and mtab */
67f09eae 162static struct libmnt_table *fstab, *mtab;
e33b39a8 163static struct libmnt_cache *mntcache;
2b505124
KZ
164
165static int count_slaves(dev_t disk);
166
607c2a72
KZ
167static int string_to_int(const char *s)
168{
169 long l;
170 char *p;
171
172 l = strtol(s, &p, 0);
173 if (*p || l == LONG_MIN || l == LONG_MAX || l < 0 || l > INT_MAX)
174 return -1;
175 else
176 return (int) l;
177}
178
c7a96884
KZ
179/* Do we really really want to check this fs? */
180static int fs_check_required(const char *type)
181{
182 size_t i;
183
184 for(i = 0; i < ARRAY_SIZE(really_wanted); i++) {
185 if (strcmp(type, really_wanted[i]) == 0)
186 return 1;
187 }
188
189 return 0;
190}
191
67f09eae
KZ
192static int is_mounted(struct libmnt_fs *fs)
193{
194 int rc;
7a4f9885 195 const char *src;
67f09eae 196
7a4f9885
KZ
197 src = mnt_fs_get_source(fs);
198 if (!src)
199 return 0;
200 if (!mntcache)
201 mntcache = mnt_new_cache();
67f09eae
KZ
202 if (!mtab) {
203 mtab = mnt_new_table();
204 if (!mtab)
205 err(FSCK_EX_ERROR, ("failed to initialize libmount table"));
67f09eae
KZ
206 mnt_table_set_cache(mtab, mntcache);
207 mnt_table_parse_mtab(mtab, NULL);
208 }
209
7a4f9885 210 rc = mnt_table_find_source(mtab, src, MNT_ITER_BACKWARD) ? 1 : 0;
67f09eae
KZ
211 if (verbose) {
212 if (rc)
7a4f9885 213 printf(_("%s is mounted\n"), src);
67f09eae 214 else
7a4f9885 215 printf(_("%s is not mounted\n"), src);
67f09eae
KZ
216 }
217 return rc;
218}
219
2b505124 220static int ignore(struct libmnt_fs *);
607c2a72 221
2b505124 222static struct fsck_fs_data *fs_create_data(struct libmnt_fs *fs)
607c2a72 223{
2b505124 224 struct fsck_fs_data *data = mnt_fs_get_userdata(fs);
607c2a72 225
2b505124
KZ
226 if (!data) {
227 data = xcalloc(1, sizeof(*data));
228 mnt_fs_set_userdata(fs, data);
229 }
230 return data;
607c2a72
KZ
231}
232
2b505124
KZ
233/*
234 * fs from fstab might contains real device name as well as symlink,
235 * LABEL or UUID, this function returns canonicalized result.
236 */
237static const char *fs_get_device(struct libmnt_fs *fs)
607c2a72 238{
2b505124 239 struct fsck_fs_data *data = mnt_fs_get_userdata(fs);
607c2a72 240
2b505124
KZ
241 if (!data || !data->eval_device) {
242 const char *spec = mnt_fs_get_source(fs);
243
244 if (!data)
245 data = fs_create_data(fs);
246
247 data->eval_device = 1;
248 data->device = mnt_resolve_spec(spec, mnt_table_get_cache(fstab));
249 if (!data->device)
2a24e16e 250 data->device = xstrdup(spec);
607c2a72 251 }
2b505124
KZ
252
253 return data->device;
607c2a72
KZ
254}
255
2b505124 256static dev_t fs_get_disk(struct libmnt_fs *fs, int check)
607c2a72 257{
2b505124
KZ
258 struct fsck_fs_data *data;
259 const char *device;
260 struct stat st;
261
262 data = mnt_fs_get_userdata(fs);
263 if (data && data->disk)
264 return data->disk;
607c2a72 265
2b505124 266 if (!check)
607c2a72
KZ
267 return 0;
268
2b505124
KZ
269 if (mnt_fs_is_netfs(fs) || mnt_fs_is_pseudofs(fs))
270 return 0;
607c2a72 271
2b505124
KZ
272 device = fs_get_device(fs);
273 if (!device)
274 return 0;
607c2a72 275
2b505124 276 data = fs_create_data(fs);
607c2a72 277
2b505124
KZ
278 if (!stat(device, &st) &&
279 !blkid_devno_to_wholedisk(st.st_rdev, NULL, 0, &data->disk)) {
280
281 if (data->disk)
282 data->stacked = count_slaves(data->disk) > 0 ? 1 : 0;
283 return data->disk;
607c2a72 284 }
2b505124 285 return 0;
607c2a72
KZ
286}
287
2b505124 288static int fs_is_stacked(struct libmnt_fs *fs)
dd0bd943 289{
2b505124
KZ
290 struct fsck_fs_data *data = mnt_fs_get_userdata(fs);
291 return data ? data->stacked : 0;
292}
dd0bd943 293
2b505124
KZ
294static int fs_is_done(struct libmnt_fs *fs)
295{
296 struct fsck_fs_data *data = mnt_fs_get_userdata(fs);
297 return data ? data->done : 0;
298}
dd0bd943 299
2b505124
KZ
300static void fs_set_done(struct libmnt_fs *fs)
301{
302 struct fsck_fs_data *data = fs_create_data(fs);
303
304 if (data)
305 data->done = 1;
dd0bd943
KZ
306}
307
308static int is_irrotational_disk(dev_t disk)
309{
310 char path[PATH_MAX];
311 FILE *f;
312 int rc, x;
313
2b505124 314
dd0bd943
KZ
315 rc = snprintf(path, sizeof(path),
316 "/sys/dev/block/%d:%d/queue/rotational",
317 major(disk), minor(disk));
318
06fa5817 319 if (rc < 0 || (unsigned int) rc >= sizeof(path))
dd0bd943
KZ
320 return 0;
321
322 f = fopen(path, "r");
323 if (!f)
324 return 0;
325
0a09eb4e
SK
326 rc = fscanf(f, "%d", &x);
327 if (rc != 1) {
328 if (ferror(f))
47481cbd 329 warn(_("cannot read %s"), path);
0a09eb4e
SK
330 else
331 warnx(_("parse error: %s"), path);
332 }
dd0bd943
KZ
333 fclose(f);
334
335 return rc == 1 ? !x : 0;
336}
337
338static void lock_disk(struct fsck_instance *inst)
339{
2b505124 340 dev_t disk = fs_get_disk(inst->fs, 1);
3bbdae63
KZ
341 char *diskpath = NULL, *diskname;
342
343 inst->lock = -1;
dd0bd943
KZ
344
345 if (!disk || is_irrotational_disk(disk))
3bbdae63
KZ
346 goto done;
347
348 diskpath = blkid_devno_to_devname(disk);
349 if (!diskpath)
350 goto done;
351
352 if (access(FSCK_RUNTIME_DIRNAME, F_OK) != 0) {
353 int rc = mkdir(FSCK_RUNTIME_DIRNAME,
354 S_IWUSR|
355 S_IRUSR|S_IRGRP|S_IROTH|
356 S_IXUSR|S_IXGRP|S_IXOTH);
357 if (rc && errno != EEXIST) {
358 warn(_("cannot create directory %s"),
359 FSCK_RUNTIME_DIRNAME);
360 goto done;
361 }
362 }
dd0bd943 363
3bbdae63 364 diskname = stripoff_last_component(diskpath);
dd0bd943 365 if (!diskname)
3bbdae63
KZ
366 diskname = diskpath;
367
368 xasprintf(&inst->lockpath, FSCK_RUNTIME_DIRNAME "/%s.lock", diskname);
dd0bd943
KZ
369
370 if (verbose)
3bbdae63 371 printf(_("Locking disk by %s ... "), inst->lockpath);
dd0bd943 372
3bbdae63
KZ
373 inst->lock = open(inst->lockpath, O_RDONLY|O_CREAT|O_CLOEXEC,
374 S_IWUSR|S_IRUSR|S_IRGRP|S_IROTH);
dd0bd943
KZ
375 if (inst->lock >= 0) {
376 int rc = -1;
377
378 /* inform users that we're waiting on the lock */
379 if (verbose &&
380 (rc = flock(inst->lock, LOCK_EX | LOCK_NB)) != 0 &&
381 errno == EWOULDBLOCK)
382 printf(_("(waiting) "));
383
384 if (rc != 0 && flock(inst->lock, LOCK_EX) != 0) {
385 close(inst->lock); /* failed */
386 inst->lock = -1;
387 }
388 }
389
390 if (verbose)
fcc058f4
BS
391 /* TRANSLATORS: These are followups to "Locking disk...". */
392 printf("%s.\n", inst->lock >= 0 ? _("succeeded") : _("failed"));
dd0bd943 393
3bbdae63
KZ
394
395done:
396 if (inst->lock < 0) {
397 free(inst->lockpath);
398 inst->lockpath = NULL;
399 }
400 free(diskpath);
dd0bd943
KZ
401 return;
402}
403
404static void unlock_disk(struct fsck_instance *inst)
405{
3bbdae63
KZ
406 if (inst->lock < 0)
407 return;
ac8f2843 408
3bbdae63
KZ
409 if (verbose)
410 printf(_("Unlocking %s.\n"), inst->lockpath);
411
412 close(inst->lock); /* unlock */
3bbdae63
KZ
413
414 free(inst->lockpath);
415
416 inst->lock = -1;
417 inst->lockpath = NULL;
dd0bd943
KZ
418}
419
607c2a72
KZ
420static void free_instance(struct fsck_instance *i)
421{
dd0bd943
KZ
422 if (lockdisk)
423 unlock_disk(i);
7009077b 424 free(i->prog);
3bbdae63 425 free(i->lockpath);
72c08aa9 426 mnt_unref_fs(i->fs);
607c2a72
KZ
427 free(i);
428 return;
429}
430
2b505124 431static struct libmnt_fs *add_dummy_fs(const char *device)
607c2a72 432{
2b505124 433 struct libmnt_fs *fs = mnt_new_fs();
607c2a72 434
2b505124 435 if (fs && mnt_fs_set_source(fs, device) == 0 &&
72c08aa9
KZ
436 mnt_table_add_fs(fstab, fs) == 0) {
437 mnt_unref_fs(fs);
2b505124 438 return fs;
72c08aa9 439 }
607c2a72 440
72c08aa9 441 mnt_unref_fs(fs);
2b505124
KZ
442 err(FSCK_EX_ERROR, _("failed to setup description for %s"), device);
443}
607c2a72 444
2b505124 445static void fs_interpret_type(struct libmnt_fs *fs)
607c2a72 446{
2b505124
KZ
447 const char *device;
448 const char *type = mnt_fs_get_fstype(fs);
607c2a72 449
2b505124
KZ
450 if (type && strcmp(type, "auto") != 0)
451 return;
607c2a72 452
2b505124 453 mnt_fs_set_fstype(fs, NULL);
607c2a72 454
2b505124
KZ
455 device = fs_get_device(fs);
456 if (device) {
457 int ambi = 0;
52c56476
KZ
458 char *tp;
459 struct libmnt_cache *cache = mnt_table_get_cache(fstab);
607c2a72 460
52c56476 461 tp = mnt_get_fstype(device, &ambi, cache);
2b505124 462 if (!ambi)
52c56476
KZ
463 mnt_fs_set_fstype(fs, tp);
464 if (!cache)
465 free(tp);
2b505124 466 }
607c2a72
KZ
467}
468
2b505124
KZ
469static int parser_errcb(struct libmnt_table *tb __attribute__ ((__unused__)),
470 const char *filename, int line)
607c2a72 471{
b779c1ae 472 warnx(_("%s: parse error at line %d -- ignored"), filename, line);
1cd9d0d7 473 return 1;
607c2a72
KZ
474}
475
476/*
477 * Load the filesystem database from /etc/fstab
478 */
2b505124 479static void load_fs_info(void)
607c2a72 480{
2b505124 481 const char *path;
607c2a72 482
2b505124
KZ
483 fstab = mnt_new_table();
484 if (!fstab)
485 err(FSCK_EX_ERROR, ("failed to initialize libmount table"));
607c2a72 486
2b505124 487 mnt_table_set_parser_errcb(fstab, parser_errcb);
e33b39a8 488 mnt_table_set_cache(fstab, mntcache);
2b505124
KZ
489
490 errno = 0;
491
492 /*
9e930041 493 * Let's follow libmount defaults if $FSTAB_FILE is not specified
2b505124
KZ
494 */
495 path = getenv("FSTAB_FILE");
496
497 if (mnt_table_parse_fstab(fstab, path)) {
2b505124
KZ
498 if (!path)
499 path = mnt_get_fstab_path();
0525768a
KZ
500
501 /* don't print error when there is no fstab at all */
502 if (access(path, F_OK) == 0) {
503 if (errno)
504 warn(_("%s: failed to parse fstab"), path);
505 else
506 warnx(_("%s: failed to parse fstab"), path);
507 }
607c2a72
KZ
508 }
509}
510
e33b39a8
KZ
511/*
512 * Lookup filesys in /etc/fstab and return the corresponding entry.
513 * The @path has to be real path (no TAG) by mnt_resolve_spec().
514 */
515static struct libmnt_fs *lookup(char *path)
607c2a72 516{
2b505124 517 struct libmnt_fs *fs;
607c2a72 518
e33b39a8 519 if (!path)
607c2a72
KZ
520 return NULL;
521
e33b39a8 522 fs = mnt_table_find_srcpath(fstab, path, MNT_ITER_FORWARD);
7a4f9885
KZ
523 if (!fs) {
524 /*
525 * Maybe mountpoint has been specified on fsck command line.
526 * Yeah, crazy feature...
527 *
528 * Note that mnt_table_find_target() may canonicalize paths in
529 * the fstab to support symlinks. This is really unwanted,
530 * because readlink() on mountpoints may trigger automounts.
531 *
532 * So, disable the cache and compare the paths as strings
533 * without care about symlinks...
534 */
535 mnt_table_set_cache(fstab, NULL);
e33b39a8 536 fs = mnt_table_find_target(fstab, path, MNT_ITER_FORWARD);
7a4f9885
KZ
537 mnt_table_set_cache(fstab, mntcache);
538 }
607c2a72
KZ
539 return fs;
540}
541
542/* Find fsck program for a given fs type. */
2b505124 543static char *find_fsck(const char *type)
607c2a72 544{
41e32d9f
KZ
545 char *s;
546 const char *tpl;
547 static char prog[256];
2a24e16e 548 char *p = xstrdup(fsck_path);
41e32d9f
KZ
549
550 /* Are we looking for a program or just a type? */
551 tpl = (strncmp(type, "fsck.", 5) ? "%s/fsck.%s" : "%s/%s");
552
553 for(s = strtok(p, ":"); s; s = strtok(NULL, ":")) {
554 sprintf(prog, tpl, s, type);
d0a050e0 555 if (access(prog, X_OK) == 0)
7064679f 556 break;
41e32d9f
KZ
557 }
558 free(p);
559
560 return(s ? prog : NULL);
607c2a72
KZ
561}
562
7ac166bf 563static int progress_active(void)
607c2a72
KZ
564{
565 struct fsck_instance *inst;
566
567 for (inst = instance_list; inst; inst = inst->next) {
568 if (inst->flags & FLAG_DONE)
569 continue;
570 if (inst->flags & FLAG_PROGRESS)
571 return 1;
572 }
573 return 0;
574}
575
5a0da00a
FM
576/*
577 * Process run statistics for finished fsck instances.
578 *
579 * If report_stats is 0, do nothing, otherwise print a selection of
580 * interesting rusage statistics as well as elapsed wallclock time.
581 */
582static void print_stats(struct fsck_instance *inst)
583{
c9e24d60 584 struct timeval delta;
5a0da00a
FM
585
586 if (!inst || !report_stats || noexecute)
587 return;
588
c9e24d60 589 timersub(&inst->end_time, &inst->start_time, &delta);
0556def4 590
07c09a29
SB
591 if (report_stats_file)
592 fprintf(report_stats_file, "%s %d %ld "
7231fb2a 593 "%ld.%06ld %ld.%06ld %ld.%06ld\n",
07c09a29
SB
594 fs_get_device(inst->fs),
595 inst->exit_status,
596 inst->rusage.ru_maxrss,
7231fb2a
RM
597 (long)delta.tv_sec, (long)delta.tv_usec,
598 (long)inst->rusage.ru_utime.tv_sec,
599 (long)inst->rusage.ru_utime.tv_usec,
600 (long)inst->rusage.ru_stime.tv_sec,
601 (long)inst->rusage.ru_stime.tv_usec);
07c09a29
SB
602 else
603 fprintf(stdout, "%s: status %d, rss %ld, "
7231fb2a 604 "real %ld.%06ld, user %ld.%06ld, sys %ld.%06ld\n",
07c09a29
SB
605 fs_get_device(inst->fs),
606 inst->exit_status,
607 inst->rusage.ru_maxrss,
7231fb2a
RM
608 (long)delta.tv_sec, (long)delta.tv_usec,
609 (long)inst->rusage.ru_utime.tv_sec,
610 (long)inst->rusage.ru_utime.tv_usec,
611 (long)inst->rusage.ru_stime.tv_sec,
612 (long)inst->rusage.ru_stime.tv_usec);
5a0da00a
FM
613}
614
607c2a72
KZ
615/*
616 * Execute a particular fsck program, and link it into the list of
617 * child processes we are waiting for.
618 */
c7a96884
KZ
619static int execute(const char *progname, const char *progpath,
620 const char *type, struct libmnt_fs *fs, int interactive)
607c2a72 621{
c7a96884 622 char *argv[80];
607c2a72
KZ
623 int argc, i;
624 struct fsck_instance *inst, *p;
625 pid_t pid;
626
ac8f2843 627 inst = xcalloc(1, sizeof(*inst));
607c2a72 628
c7a96884 629 argv[0] = xstrdup(progname);
607c2a72
KZ
630 argc = 1;
631
632 for (i=0; i <num_args; i++)
2a24e16e 633 argv[argc++] = xstrdup(args[i]);
607c2a72 634
74ce680a
SK
635 if (progress &&
636 ((strcmp(type, "ext2") == 0) ||
637 (strcmp(type, "ext3") == 0) ||
638 (strcmp(type, "ext4") == 0) ||
639 (strcmp(type, "ext4dev") == 0))) {
640
641 char tmp[80];
642 tmp[0] = 0;
643 if (!progress_active()) {
644 snprintf(tmp, 80, "-C%d", progress_fd);
645 inst->flags |= FLAG_PROGRESS;
646 } else if (progress_fd)
647 snprintf(tmp, 80, "-C%d", progress_fd * -1);
648 if (tmp[0])
649 argv[argc++] = xstrdup(tmp);
607c2a72
KZ
650 }
651
2a24e16e 652 argv[argc++] = xstrdup(fs_get_device(fs));
87918040 653 argv[argc] = NULL;
607c2a72 654
607c2a72 655 if (verbose || noexecute) {
2b505124
KZ
656 const char *tgt = mnt_fs_get_target(fs);
657
658 if (!tgt)
659 tgt = fs_get_device(fs);
c7a96884 660 printf("[%s (%d) -- %s] ", progpath, num_running, tgt);
607c2a72
KZ
661 for (i=0; i < argc; i++)
662 printf("%s ", argv[i]);
663 printf("\n");
664 }
665
72c08aa9 666 mnt_ref_fs(fs);
dd0bd943
KZ
667 inst->fs = fs;
668 inst->lock = -1;
669
670 if (lockdisk)
671 lock_disk(inst);
672
607c2a72
KZ
673 /* Fork and execute the correct program. */
674 if (noexecute)
675 pid = -1;
676 else if ((pid = fork()) < 0) {
ac8f2843 677 warn(_("fork failed"));
72c08aa9 678 free_instance(inst);
607c2a72
KZ
679 return errno;
680 } else if (pid == 0) {
681 if (!interactive)
682 close(0);
c7a96884
KZ
683 execv(progpath, argv);
684 err(FSCK_EX_ERROR, _("%s: execute failed"), progpath);
607c2a72
KZ
685 }
686
687 for (i=0; i < argc; i++)
688 free(argv[i]);
689
690 inst->pid = pid;
c7a96884 691 inst->prog = xstrdup(progname);
2a24e16e 692 inst->type = xstrdup(type);
c9e24d60 693 gettime_monotonic(&inst->start_time);
607c2a72
KZ
694 inst->next = NULL;
695
696 /*
697 * Find the end of the list, so we add the instance on at the end.
698 */
699 for (p = instance_list; p && p->next; p = p->next);
700
701 if (p)
702 p->next = inst;
703 else
704 instance_list = inst;
705
706 return 0;
707}
708
709/*
710 * Send a signal to all outstanding fsck child processes
711 */
712static int kill_all(int signum)
713{
714 struct fsck_instance *inst;
715 int n = 0;
716
717 for (inst = instance_list; inst; inst = inst->next) {
718 if (inst->flags & FLAG_DONE)
719 continue;
720 kill(inst->pid, signum);
721 n++;
722 }
723 return n;
724}
725
726/*
727 * Wait for one child process to exit; when it does, unlink it from
728 * the list of executing child processes, and return it.
729 */
730static struct fsck_instance *wait_one(int flags)
731{
1bf9e264 732 int status = 0;
607c2a72
KZ
733 int sig;
734 struct fsck_instance *inst, *inst2, *prev;
735 pid_t pid;
5a0da00a 736 struct rusage rusage;
607c2a72
KZ
737
738 if (!instance_list)
739 return NULL;
740
741 if (noexecute) {
742 inst = instance_list;
87918040 743 prev = NULL;
607c2a72
KZ
744#ifdef RANDOM_DEBUG
745 while (inst->next && (random() & 1)) {
746 prev = inst;
747 inst = inst->next;
748 }
749#endif
750 inst->exit_status = 0;
751 goto ret_inst;
752 }
753
754 /*
755 * gcc -Wall fails saving throw against stupidity
756 * (inst and prev are thought to be uninitialized variables)
757 */
758 inst = prev = NULL;
759
760 do {
5a0da00a 761 pid = wait4(-1, &status, flags, &rusage);
607c2a72
KZ
762 if (cancel_requested && !kill_sent) {
763 kill_all(SIGTERM);
764 kill_sent++;
765 }
766 if ((pid == 0) && (flags & WNOHANG))
767 return NULL;
768 if (pid < 0) {
769 if ((errno == EINTR) || (errno == EAGAIN))
770 continue;
771 if (errno == ECHILD) {
0a09eb4e 772 warnx(_("wait: no more child process?!?"));
607c2a72
KZ
773 return NULL;
774 }
83217641 775 warn(_("waitpid failed"));
607c2a72
KZ
776 continue;
777 }
87918040 778 for (prev = NULL, inst = instance_list;
607c2a72
KZ
779 inst;
780 prev = inst, inst = inst->next) {
781 if (inst->pid == pid)
782 break;
783 }
784 } while (!inst);
785
786 if (WIFEXITED(status))
787 status = WEXITSTATUS(status);
788 else if (WIFSIGNALED(status)) {
789 sig = WTERMSIG(status);
790 if (sig == SIGINT) {
947558f5 791 status = FSCK_EX_UNCORRECTED;
607c2a72 792 } else {
0a09eb4e
SK
793 warnx(_("Warning... %s for device %s exited "
794 "with signal %d."),
2b505124 795 inst->prog, fs_get_device(inst->fs), sig);
947558f5 796 status = FSCK_EX_ERROR;
607c2a72
KZ
797 }
798 } else {
0a09eb4e 799 warnx(_("%s %s: status is %x, should never happen."),
2b505124 800 inst->prog, fs_get_device(inst->fs), status);
947558f5 801 status = FSCK_EX_ERROR;
607c2a72 802 }
5a0da00a 803
607c2a72
KZ
804 inst->exit_status = status;
805 inst->flags |= FLAG_DONE;
c9e24d60 806 gettime_monotonic(&inst->end_time);
5a0da00a
FM
807 memcpy(&inst->rusage, &rusage, sizeof(struct rusage));
808
607c2a72
KZ
809 if (progress && (inst->flags & FLAG_PROGRESS) &&
810 !progress_active()) {
811 for (inst2 = instance_list; inst2; inst2 = inst2->next) {
812 if (inst2->flags & FLAG_DONE)
813 continue;
814 if (strcmp(inst2->type, "ext2") &&
815 strcmp(inst2->type, "ext3") &&
816 strcmp(inst2->type, "ext4") &&
817 strcmp(inst2->type, "ext4dev"))
818 continue;
819 /*
820 * If we've just started the fsck, wait a tiny
821 * bit before sending the kill, to give it
822 * time to set up the signal handler
823 */
87918040 824 if (inst2->start_time.tv_sec < time(NULL) + 2) {
607c2a72
KZ
825 if (fork() == 0) {
826 sleep(1);
827 kill(inst2->pid, SIGUSR1);
947558f5 828 exit(FSCK_EX_OK);
607c2a72
KZ
829 }
830 } else
831 kill(inst2->pid, SIGUSR1);
832 inst2->flags |= FLAG_PROGRESS;
833 break;
834 }
835 }
836ret_inst:
837 if (prev)
838 prev->next = inst->next;
839 else
840 instance_list = inst->next;
5a0da00a
FM
841
842 print_stats(inst);
843
607c2a72
KZ
844 if (verbose > 1)
845 printf(_("Finished with %s (exit status %d)\n"),
2b505124 846 fs_get_device(inst->fs), inst->exit_status);
607c2a72
KZ
847 num_running--;
848 return inst;
849}
850
851#define FLAG_WAIT_ALL 0
852#define FLAG_WAIT_ATLEAST_ONE 1
853/*
854 * Wait until all executing child processes have exited; return the
855 * logical OR of all of their exit code values.
856 */
857static int wait_many(int flags)
858{
859 struct fsck_instance *inst;
860 int global_status = 0;
861 int wait_flags = 0;
862
863 while ((inst = wait_one(wait_flags))) {
864 global_status |= inst->exit_status;
865 free_instance(inst);
866#ifdef RANDOM_DEBUG
867 if (noexecute && (flags & WNOHANG) && !(random() % 3))
868 break;
869#endif
870 if (flags & FLAG_WAIT_ATLEAST_ONE)
871 wait_flags = WNOHANG;
872 }
873 return global_status;
874}
875
876/*
877 * Run the fsck program on a particular device
878 *
879 * If the type is specified using -t, and it isn't prefixed with "no"
880 * (as in "noext2") and only one filesystem type is specified, then
881 * use that type regardless of what is specified in /etc/fstab.
882 *
883 * If the type isn't specified by the user, then use either the type
884 * specified in /etc/fstab, or DEFAULT_FSTYPE.
885 */
2b505124 886static int fsck_device(struct libmnt_fs *fs, int interactive)
607c2a72 887{
c7a96884 888 char progname[80], *progpath;
607c2a72
KZ
889 const char *type;
890 int retval;
891
2b505124
KZ
892 fs_interpret_type(fs);
893
894 type = mnt_fs_get_fstype(fs);
607c2a72 895
2b505124
KZ
896 if (type && strcmp(type, "auto") != 0)
897 ;
607c2a72
KZ
898 else if (fstype && strncmp(fstype, "no", 2) &&
899 strncmp(fstype, "opts=", 5) && strncmp(fstype, "loop", 4) &&
900 !strchr(fstype, ','))
901 type = fstype;
902 else
903 type = DEFAULT_FSTYPE;
904
c7a96884
KZ
905 sprintf(progname, "fsck.%s", type);
906 progpath = find_fsck(progname);
907 if (progpath == NULL) {
908 if (fs_check_required(type)) {
909 retval = ENOENT;
910 goto err;
911 }
912 return 0;
913 }
914
607c2a72 915 num_running++;
c7a96884 916 retval = execute(progname, progpath, type, fs, interactive);
607c2a72 917 if (retval) {
607c2a72 918 num_running--;
c7a96884 919 goto err;
607c2a72 920 }
6c6f2af9 921 return 0;
c7a96884
KZ
922err:
923 warnx(_("error %d (%m) while executing fsck.%s for %s"),
924 retval, type, fs_get_device(fs));
925 return FSCK_EX_ERROR;
607c2a72
KZ
926}
927
928
929/*
930 * Deal with the fsck -t argument.
931 */
2ba641e5 932static struct fs_type_compile {
607c2a72
KZ
933 char **list;
934 int *type;
935 int negate;
936} fs_type_compiled;
937
938#define FS_TYPE_NORMAL 0
939#define FS_TYPE_OPT 1
940#define FS_TYPE_NEGOPT 2
941
607c2a72
KZ
942static void compile_fs_type(char *fs_type, struct fs_type_compile *cmp)
943{
5894bcd4 944 char *cp, *list, *s;
607c2a72
KZ
945 int num = 2;
946 int negate, first_negate = 1;
947
948 if (fs_type) {
949 for (cp=fs_type; *cp; cp++) {
950 if (*cp == ',')
951 num++;
952 }
953 }
954
ac8f2843
KZ
955 cmp->list = xcalloc(num, sizeof(char *));
956 cmp->type = xcalloc(num, sizeof(int));
607c2a72
KZ
957 cmp->negate = 0;
958
959 if (!fs_type)
960 return;
961
2a24e16e 962 list = xstrdup(fs_type);
607c2a72
KZ
963 num = 0;
964 s = strtok(list, ",");
965 while(s) {
966 negate = 0;
967 if (strncmp(s, "no", 2) == 0) {
968 s += 2;
969 negate = 1;
970 } else if (*s == '!') {
971 s++;
972 negate = 1;
973 }
974 if (strcmp(s, "loop") == 0)
975 /* loop is really short-hand for opts=loop */
976 goto loop_special_case;
977 else if (strncmp(s, "opts=", 5) == 0) {
978 s += 5;
979 loop_special_case:
980 cmp->type[num] = negate ? FS_TYPE_NEGOPT : FS_TYPE_OPT;
981 } else {
982 if (first_negate) {
983 cmp->negate = negate;
984 first_negate = 0;
985 }
986 if ((negate && !cmp->negate) ||
987 (!negate && cmp->negate)) {
947558f5 988 errx(FSCK_EX_USAGE,
e0eadc0d
SK
989 _("Either all or none of the filesystem types passed to -t must be prefixed\n"
990 "with 'no' or '!'."));
607c2a72
KZ
991 }
992 }
ac8f2843 993
2a24e16e 994 cmp->list[num++] = xstrdup(s);
607c2a72
KZ
995 s = strtok(NULL, ",");
996 }
997 free(list);
998}
999
1000/*
1001 * This function returns true if a particular option appears in a
1002 * comma-delimited options list
1003 */
2b505124 1004static int opt_in_list(const char *opt, const char *optlist)
607c2a72
KZ
1005{
1006 char *list, *s;
1007
1008 if (!optlist)
1009 return 0;
2a24e16e 1010 list = xstrdup(optlist);
607c2a72
KZ
1011
1012 s = strtok(list, ",");
1013 while(s) {
1014 if (strcmp(s, opt) == 0) {
1015 free(list);
1016 return 1;
1017 }
1018 s = strtok(NULL, ",");
1019 }
0a09eb4e 1020 free(list);
607c2a72
KZ
1021 return 0;
1022}
1023
1024/* See if the filesystem matches the criteria given by the -t option */
2b505124 1025static int fs_match(struct libmnt_fs *fs, struct fs_type_compile *cmp)
607c2a72
KZ
1026{
1027 int n, ret = 0, checked_type = 0;
1028 char *cp;
1029
87918040 1030 if (cmp->list == NULL || cmp->list[0] == NULL)
607c2a72
KZ
1031 return 1;
1032
1033 for (n=0; (cp = cmp->list[n]); n++) {
1034 switch (cmp->type[n]) {
1035 case FS_TYPE_NORMAL:
2b505124
KZ
1036 {
1037 const char *type = mnt_fs_get_fstype(fs);
1038
607c2a72 1039 checked_type++;
2b505124 1040 if (type && strcmp(cp, type) == 0)
607c2a72 1041 ret = 1;
607c2a72 1042 break;
2b505124 1043 }
607c2a72 1044 case FS_TYPE_NEGOPT:
2b505124 1045 if (opt_in_list(cp, mnt_fs_get_options(fs)))
607c2a72
KZ
1046 return 0;
1047 break;
1048 case FS_TYPE_OPT:
2b505124 1049 if (!opt_in_list(cp, mnt_fs_get_options(fs)))
607c2a72
KZ
1050 return 0;
1051 break;
1052 }
1053 }
1054 if (checked_type == 0)
1055 return 1;
1056 return (cmp->negate ? !ret : ret);
1057}
1058
1bb516c3
LN
1059/*
1060 * Check if a device exists
1061 */
1062static int device_exists(const char *device)
1063{
1064 struct stat st;
1065
1066 if (stat(device, &st) == -1)
1067 return 0;
1bb516c3
LN
1068 if (!S_ISBLK(st.st_mode))
1069 return 0;
1bb516c3
LN
1070 return 1;
1071}
1072
2b505124 1073static int fs_ignored_type(struct libmnt_fs *fs)
e3174198 1074{
2b505124
KZ
1075 const char **ip, *type;
1076
1077 if (mnt_fs_is_netfs(fs) || mnt_fs_is_pseudofs(fs) || mnt_fs_is_swaparea(fs))
1078 return 1;
1079
1080 type = mnt_fs_get_fstype(fs);
e3174198 1081
2b505124
KZ
1082 for(ip = ignored_types; type && *ip; ip++) {
1083 if (strcmp(type, *ip) == 0)
e3174198
KZ
1084 return 1;
1085 }
1086
1087 return 0;
1088}
1089
607c2a72 1090/* Check if we should ignore this filesystem. */
2b505124 1091static int ignore(struct libmnt_fs *fs)
607c2a72 1092{
c7a96884 1093 const char *type;
607c2a72
KZ
1094
1095 /*
1096 * If the pass number is 0, ignore it.
1097 */
2b505124 1098 if (mnt_fs_get_passno(fs) == 0)
607c2a72
KZ
1099 return 1;
1100
1101 /*
1102 * If this is a bind mount, ignore it.
1103 */
2b505124 1104 if (opt_in_list("bind", mnt_fs_get_options(fs))) {
0a09eb4e
SK
1105 warnx(_("%s: skipping bad line in /etc/fstab: "
1106 "bind mount with nonzero fsck pass number"),
2b505124 1107 mnt_fs_get_target(fs));
607c2a72
KZ
1108 return 1;
1109 }
1110
1bb516c3
LN
1111 /*
1112 * ignore devices that don't exist and have the "nofail" mount option
1113 */
2b505124
KZ
1114 if (!device_exists(fs_get_device(fs))) {
1115 if (opt_in_list("nofail", mnt_fs_get_options(fs))) {
236acf2d
KZ
1116 if (verbose)
1117 printf(_("%s: skipping nonexistent device\n"),
2b505124 1118 fs_get_device(fs));
236acf2d
KZ
1119 return 1;
1120 }
1bb516c3 1121 if (verbose)
236acf2d
KZ
1122 printf(_("%s: nonexistent device (\"nofail\" fstab "
1123 "option may be used to skip this device)\n"),
2b505124 1124 fs_get_device(fs));
1bb516c3
LN
1125 }
1126
2b505124 1127 fs_interpret_type(fs);
607c2a72
KZ
1128
1129 /*
1130 * If a specific fstype is specified, and it doesn't match,
1131 * ignore it.
1132 */
3d4820f4
KZ
1133 if (!fs_match(fs, &fs_type_compiled))
1134 return 1;
607c2a72 1135
2b505124 1136 type = mnt_fs_get_fstype(fs);
7064679f
KZ
1137 if (!type) {
1138 if (verbose)
1139 printf(_("%s: skipping unknown filesystem type\n"),
1140 fs_get_device(fs));
1141 return 1;
1142 }
2b505124 1143
607c2a72 1144 /* Are we ignoring this type? */
2b505124 1145 if (fs_ignored_type(fs))
e3174198 1146 return 1;
607c2a72 1147
c7a96884 1148
607c2a72
KZ
1149
1150 /* See if the <fsck.fs> program is available. */
2b505124 1151 if (find_fsck(type) == NULL) {
c7a96884 1152 if (fs_check_required(type))
0a09eb4e 1153 warnx(_("cannot check %s: fsck.%s not found"),
2b505124 1154 fs_get_device(fs), type);
607c2a72
KZ
1155 return 1;
1156 }
1157
1158 /* We can and want to check this file system type. */
1159 return 0;
1160}
1161
0c0f93fc
KZ
1162static int count_slaves(dev_t disk)
1163{
1164 DIR *dir;
1165 struct dirent *dp;
1166 char dirname[PATH_MAX];
1167 int count = 0;
1168
1169 snprintf(dirname, sizeof(dirname),
1170 "/sys/dev/block/%u:%u/slaves/",
1171 major(disk), minor(disk));
1172
1173 if (!(dir = opendir(dirname)))
1174 return -1;
1175
87918040 1176 while ((dp = readdir(dir)) != NULL) {
0c0f93fc
KZ
1177#ifdef _DIRENT_HAVE_D_TYPE
1178 if (dp->d_type != DT_UNKNOWN && dp->d_type != DT_LNK)
1179 continue;
1180#endif
1181 if (dp->d_name[0] == '.' &&
1182 ((dp->d_name[1] == 0) ||
1183 ((dp->d_name[1] == '.') && (dp->d_name[2] == 0))))
1184 continue;
1185
1186 count++;
1187 }
ac8f2843 1188
0c0f93fc
KZ
1189 closedir(dir);
1190 return count;
1191}
1192
607c2a72
KZ
1193/*
1194 * Returns TRUE if a partition on the same disk is already being
1195 * checked.
1196 */
2b505124 1197static int disk_already_active(struct libmnt_fs *fs)
607c2a72
KZ
1198{
1199 struct fsck_instance *inst;
2b505124 1200 dev_t disk;
607c2a72
KZ
1201
1202 if (force_all_parallel)
1203 return 0;
1204
2b505124 1205 if (instance_list && fs_is_stacked(instance_list->fs))
0c0f93fc 1206 /* any instance for a stacked device is already running */
607c2a72 1207 return 1;
607c2a72 1208
2b505124 1209 disk = fs_get_disk(fs, 1);
0c0f93fc 1210
607c2a72
KZ
1211 /*
1212 * If we don't know the base device, assume that the device is
1213 * already active if there are any fsck instances running.
0c0f93fc
KZ
1214 *
1215 * Don't check a stacked device with any other disk too.
607c2a72 1216 */
2b505124 1217 if (!disk || fs_is_stacked(fs))
87918040 1218 return (instance_list != NULL);
0c0f93fc 1219
607c2a72 1220 for (inst = instance_list; inst; inst = inst->next) {
2b505124
KZ
1221 dev_t idisk = fs_get_disk(inst->fs, 0);
1222
1223 if (!idisk || disk == idisk)
607c2a72 1224 return 1;
607c2a72 1225 }
ac8f2843 1226
607c2a72
KZ
1227 return 0;
1228}
1229
1230/* Check all file systems, using the /etc/fstab table. */
2b505124 1231static int check_all(void)
607c2a72 1232{
607c2a72
KZ
1233 int not_done_yet = 1;
1234 int passno = 1;
1235 int pass_done;
2b505124 1236 int status = FSCK_EX_OK;
607c2a72 1237
2b505124
KZ
1238 struct libmnt_fs *fs;
1239 struct libmnt_iter *itr = mnt_new_iter(MNT_ITER_FORWARD);
1240
1241 if (!itr)
1242 err(FSCK_EX_ERROR, _("failed to allocate iterator"));
607c2a72
KZ
1243
1244 /*
1245 * Do an initial scan over the filesystem; mark filesystems
1246 * which should be ignored as done, and resolve any "auto"
1247 * filesystem types (done as a side-effect of calling ignore()).
1248 */
2b505124
KZ
1249 while (mnt_table_next_fs(fstab, itr, &fs) == 0) {
1250 if (ignore(fs)) {
1251 fs_set_done(fs);
1252 continue;
1253 }
607c2a72
KZ
1254 }
1255
2b505124
KZ
1256 if (verbose)
1257 fputs(_("Checking all file systems.\n"), stdout);
1258
607c2a72
KZ
1259 /*
1260 * Find and check the root filesystem.
1261 */
1262 if (!parallel_root) {
2b505124 1263 fs = mnt_table_find_target(fstab, "/", MNT_ITER_FORWARD);
607c2a72 1264 if (fs) {
2b505124
KZ
1265 if (!skip_root &&
1266 !fs_is_done(fs) &&
67f09eae 1267 !(ignore_mounted && is_mounted(fs))) {
6c6f2af9 1268 status |= fsck_device(fs, 1);
607c2a72 1269 status |= wait_many(FLAG_WAIT_ALL);
2b505124
KZ
1270 if (status > FSCK_EX_NONDESTRUCT) {
1271 mnt_free_iter(itr);
607c2a72 1272 return status;
2b505124 1273 }
607c2a72 1274 }
2b505124 1275 fs_set_done(fs);
607c2a72
KZ
1276 }
1277 }
2b505124 1278
607c2a72
KZ
1279 /*
1280 * This is for the bone-headed user who enters the root
9e930041 1281 * filesystem twice. Skip root will skip all root entries.
607c2a72 1282 */
2b505124
KZ
1283 if (skip_root) {
1284 mnt_reset_iter(itr, MNT_ITER_FORWARD);
1285
1286 while(mnt_table_next_fs(fstab, itr, &fs) == 0) {
1287 const char *tgt = mnt_fs_get_target(fs);
1288
1289 if (tgt && strcmp(tgt, "/") == 0)
1290 fs_set_done(fs);
1291 }
1292 }
607c2a72
KZ
1293
1294 while (not_done_yet) {
1295 not_done_yet = 0;
1296 pass_done = 1;
1297
2b505124
KZ
1298 mnt_reset_iter(itr, MNT_ITER_FORWARD);
1299
1300 while(mnt_table_next_fs(fstab, itr, &fs) == 0) {
1301
607c2a72
KZ
1302 if (cancel_requested)
1303 break;
2b505124 1304 if (fs_is_done(fs))
607c2a72
KZ
1305 continue;
1306 /*
1307 * If the filesystem's pass number is higher
1308 * than the current pass number, then we don't
1309 * do it yet.
1310 */
2b505124 1311 if (mnt_fs_get_passno(fs) > passno) {
607c2a72
KZ
1312 not_done_yet++;
1313 continue;
1314 }
67f09eae 1315 if (ignore_mounted && is_mounted(fs)) {
2b505124 1316 fs_set_done(fs);
607c2a72
KZ
1317 continue;
1318 }
1319 /*
1320 * If a filesystem on a particular device has
1321 * already been spawned, then we need to defer
1322 * this to another pass.
1323 */
0c0f93fc 1324 if (disk_already_active(fs)) {
607c2a72
KZ
1325 pass_done = 0;
1326 continue;
1327 }
1328 /*
1329 * Spawn off the fsck process
1330 */
6c6f2af9 1331 status |= fsck_device(fs, serialize);
2b505124 1332 fs_set_done(fs);
607c2a72
KZ
1333
1334 /*
1335 * Only do one filesystem at a time, or if we
1336 * have a limit on the number of fsck's extant
1337 * at one time, apply that limit.
1338 */
1339 if (serialize ||
1340 (max_running && (num_running >= max_running))) {
1341 pass_done = 0;
1342 break;
1343 }
1344 }
1345 if (cancel_requested)
1346 break;
1347 if (verbose > 1)
1348 printf(_("--waiting-- (pass %d)\n"), passno);
2b505124 1349
607c2a72
KZ
1350 status |= wait_many(pass_done ? FLAG_WAIT_ALL :
1351 FLAG_WAIT_ATLEAST_ONE);
1352 if (pass_done) {
1353 if (verbose > 1)
1354 printf("----------------------------------\n");
1355 passno++;
1356 } else
1357 not_done_yet++;
1358 }
2b505124 1359
607c2a72
KZ
1360 if (cancel_requested && !kill_sent) {
1361 kill_all(SIGTERM);
1362 kill_sent++;
1363 }
2b505124 1364
607c2a72 1365 status |= wait_many(FLAG_WAIT_ATLEAST_ONE);
2b505124 1366 mnt_free_iter(itr);
607c2a72
KZ
1367 return status;
1368}
1369
58745f35 1370static void __attribute__((__noreturn__)) usage(void)
607c2a72 1371{
58745f35 1372 FILE *out = stdout;
1b8ce047
KZ
1373 fputs(USAGE_HEADER, out);
1374 fprintf(out, _(" %s [options] -- [fs-options] [<filesystem> ...]\n"),
1375 program_invocation_short_name);
1376
451dbcfa
BS
1377 fputs(USAGE_SEPARATOR, out);
1378 fputs(_("Check and repair a Linux filesystem.\n"), out);
1379
1b8ce047
KZ
1380 fputs(USAGE_OPTIONS, out);
1381 fputs(_(" -A check all filesystems\n"), out);
1382 fputs(_(" -C [<fd>] display progress bar; file descriptor is for GUIs\n"), out);
1383 fputs(_(" -l lock the device to guarantee exclusive access\n"), out);
1384 fputs(_(" -M do not check mounted filesystems\n"), out);
1385 fputs(_(" -N do not execute, just show what would be done\n"), out);
1386 fputs(_(" -P check filesystems in parallel, including root\n"), out);
1387 fputs(_(" -R skip root filesystem; useful only with '-A'\n"), out);
07c09a29
SB
1388 fputs(_(" -r [<fd>] report statistics for each device checked;\n"
1389 " file descriptor is for GUIs\n"), out);
1b8ce047
KZ
1390 fputs(_(" -s serialize the checking operations\n"), out);
1391 fputs(_(" -T do not show the title on startup\n"), out);
1392 fputs(_(" -t <type> specify filesystem types to be checked;\n"
07c09a29 1393 " <type> is allowed to be a comma-separated list\n"), out);
1b8ce047 1394 fputs(_(" -V explain what is being done\n"), out);
1b8ce047 1395
58745f35 1396 fputs(USAGE_SEPARATOR, out);
b3054454
RM
1397 printf( " -?, --help %s\n", USAGE_OPTSTR_HELP);
1398 printf( " --version %s\n", USAGE_OPTSTR_VERSION);
1b8ce047
KZ
1399 fputs(USAGE_SEPARATOR, out);
1400 fputs(_("See the specific fsck.* commands for available fs-options."), out);
f45f3ec3 1401 printf(USAGE_MAN_TAIL("fsck(8)"));
58745f35 1402 exit(FSCK_EX_OK);
607c2a72
KZ
1403}
1404
7ac166bf 1405static void signal_cancel(int sig __attribute__((__unused__)))
607c2a72
KZ
1406{
1407 cancel_requested++;
1408}
1409
9895daca 1410static void parse_argv(int argc, char *argv[])
607c2a72
KZ
1411{
1412 int i, j;
87918040 1413 char *arg, *dev, *tmp = NULL;
607c2a72
KZ
1414 char options[128];
1415 int opt = 0;
1416 int opts_for_fsck = 0;
1417 struct sigaction sa;
658c0891 1418 int report_stats_fd = -1;
607c2a72
KZ
1419
1420 /*
1421 * Set up signal action
1422 */
1423 memset(&sa, 0, sizeof(struct sigaction));
1424 sa.sa_handler = signal_cancel;
87918040
SK
1425 sigaction(SIGINT, &sa, NULL);
1426 sigaction(SIGTERM, &sa, NULL);
607c2a72
KZ
1427
1428 num_devices = 0;
1429 num_args = 0;
87918040 1430 instance_list = NULL;
607c2a72 1431
607c2a72
KZ
1432 for (i=1; i < argc; i++) {
1433 arg = argv[i];
1434 if (!arg)
1435 continue;
58745f35
RM
1436
1437 /* the only two longopts to satisfy UL standards */
1438 if (!opts_for_fsck && !strcmp(arg, "--help"))
1439 usage();
1440 if (!opts_for_fsck && !strcmp(arg, "--version")) {
1441 printf(UTIL_LINUX_VERSION);
1442 exit(FSCK_EX_OK);
1443 }
1444
607c2a72 1445 if ((arg[0] == '/' && !opts_for_fsck) || strchr(arg, '=')) {
0a09eb4e 1446 if (num_devices >= MAX_DEVICES)
947558f5 1447 errx(FSCK_EX_ERROR, _("too many devices"));
e33b39a8
KZ
1448
1449 dev = mnt_resolve_spec(arg, mntcache);
1450
607c2a72
KZ
1451 if (!dev && strchr(arg, '=')) {
1452 /*
1453 * Check to see if we failed because
1454 * /proc/partitions isn't found.
1455 */
fb429f22 1456 if (access(_PATH_PROC_PARTITIONS, R_OK) < 0) {
289dcc90 1457 warn(_("cannot open %s"),
0a09eb4e 1458 _PATH_PROC_PARTITIONS);
947558f5 1459 errx(FSCK_EX_ERROR, _("Is /proc mounted?"));
607c2a72
KZ
1460 }
1461 /*
1462 * Check to see if this is because
1463 * we're not running as root
1464 */
1465 if (geteuid())
947558f5 1466 errx(FSCK_EX_ERROR,
0a09eb4e
SK
1467 _("must be root to scan for matching filesystems: %s"),
1468 arg);
607c2a72 1469 else
947558f5 1470 errx(FSCK_EX_ERROR,
0a09eb4e
SK
1471 _("couldn't find matching filesystem: %s"),
1472 arg);
607c2a72 1473 }
2a24e16e 1474 devices[num_devices++] = dev ? dev : xstrdup(arg);
607c2a72
KZ
1475 continue;
1476 }
1477 if (arg[0] != '-' || opts_for_fsck) {
0a09eb4e 1478 if (num_args >= MAX_ARGS)
947558f5 1479 errx(FSCK_EX_ERROR, _("too many arguments"));
2a24e16e 1480 args[num_args++] = xstrdup(arg);
607c2a72
KZ
1481 continue;
1482 }
1483 for (j=1; arg[j]; j++) {
1484 if (opts_for_fsck) {
1485 options[++opt] = arg[j];
1486 continue;
1487 }
1488 switch (arg[j]) {
1489 case 'A':
0a09eb4e 1490 doall = 1;
607c2a72
KZ
1491 break;
1492 case 'C':
0a09eb4e 1493 progress = 1;
0b1bb283 1494 if (arg[j+1]) { /* -C<fd> */
607c2a72
KZ
1495 progress_fd = string_to_int(arg+j+1);
1496 if (progress_fd < 0)
1497 progress_fd = 0;
1498 else
1499 goto next_arg;
0b1bb283 1500 } else if (i+1 < argc && *argv[i+1] != '-') { /* -C <fd> */
d1bba731 1501 progress_fd = string_to_int(argv[i+1]);
607c2a72
KZ
1502 if (progress_fd < 0)
1503 progress_fd = 0;
1504 else {
f1c2eaac 1505 ++i;
607c2a72 1506 goto next_arg;
607c2a72
KZ
1507 }
1508 }
1509 break;
dd0bd943 1510 case 'l':
0a09eb4e 1511 lockdisk = 1;
dd0bd943 1512 break;
607c2a72
KZ
1513 case 'V':
1514 verbose++;
1515 break;
1516 case 'N':
0a09eb4e 1517 noexecute = 1;
607c2a72
KZ
1518 break;
1519 case 'R':
0a09eb4e 1520 skip_root = 1;
607c2a72
KZ
1521 break;
1522 case 'T':
0a09eb4e 1523 notitle = 1;
607c2a72
KZ
1524 break;
1525 case 'M':
0a09eb4e 1526 ignore_mounted = 1;
607c2a72
KZ
1527 break;
1528 case 'P':
0a09eb4e 1529 parallel_root = 1;
607c2a72 1530 break;
5a0da00a
FM
1531 case 'r':
1532 report_stats = 1;
07c09a29 1533 if (arg[j+1]) { /* -r<fd> */
62eea9ce 1534 report_stats_fd = strtou32_or_err(arg+j+1, _("invalid argument of -r"));
658c0891 1535 goto next_arg;
d60d5b74 1536 } else if (i+1 < argc && *argv[i+1] >= '0' && *argv[i+1] <= '9') { /* -r <fd> */
62eea9ce 1537 report_stats_fd = strtou32_or_err(argv[i+1], _("invalid argument of -r"));
658c0891
KZ
1538 ++i;
1539 goto next_arg;
07c09a29 1540 }
5a0da00a 1541 break;
607c2a72 1542 case 's':
0a09eb4e 1543 serialize = 1;
607c2a72
KZ
1544 break;
1545 case 't':
87918040 1546 tmp = NULL;
607c2a72 1547 if (fstype)
58745f35
RM
1548 errx(FSCK_EX_USAGE,
1549 _("option '%s' may be specified only once"), "-t");
607c2a72
KZ
1550 if (arg[j+1])
1551 tmp = arg+j+1;
1552 else if ((i+1) < argc)
1553 tmp = argv[++i];
1554 else
58745f35
RM
1555 errx(FSCK_EX_USAGE,
1556 _("option '%s' requires an argument"), "-t");
2a24e16e 1557 fstype = xstrdup(tmp);
607c2a72
KZ
1558 compile_fs_type(fstype, &fs_type_compiled);
1559 goto next_arg;
1560 case '-':
1561 opts_for_fsck++;
1562 break;
1563 case '?':
58745f35 1564 usage();
607c2a72
KZ
1565 break;
1566 default:
1567 options[++opt] = arg[j];
1568 break;
1569 }
1570 }
1571 next_arg:
1572 if (opt) {
1573 options[0] = '-';
1574 options[++opt] = '\0';
0a09eb4e 1575 if (num_args >= MAX_ARGS)
947558f5 1576 errx(FSCK_EX_ERROR, _("too many arguments"));
2a24e16e 1577 args[num_args++] = xstrdup(options);
607c2a72
KZ
1578 opt = 0;
1579 }
1580 }
07c09a29
SB
1581
1582 /* Validate the report stats file descriptor to avoid disasters */
658c0891 1583 if (report_stats_fd >= 0) {
07c09a29
SB
1584 report_stats_file = fdopen(report_stats_fd, "w");
1585 if (!report_stats_file)
1586 err(FSCK_EX_ERROR,
62eea9ce 1587 _("invalid argument of -r: %d"),
07c09a29
SB
1588 report_stats_fd);
1589 }
1590
607c2a72
KZ
1591 if (getenv("FSCK_FORCE_ALL_PARALLEL"))
1592 force_all_parallel++;
1593 if ((tmp = getenv("FSCK_MAX_INST")))
1594 max_running = atoi(tmp);
1595}
1596
1597int main(int argc, char *argv[])
1598{
1599 int i, status = 0;
1600 int interactive = 0;
2b505124 1601 struct libmnt_fs *fs;
a03bdbcd 1602 const char *path = getenv("PATH");
607c2a72
KZ
1603
1604 setvbuf(stdout, NULL, _IONBF, BUFSIZ);
1605 setvbuf(stderr, NULL, _IONBF, BUFSIZ);
1606
1607 setlocale(LC_MESSAGES, "");
1608 setlocale(LC_CTYPE, "");
1609 bindtextdomain(PACKAGE, LOCALEDIR);
1610 textdomain(PACKAGE);
45ca68ec 1611 atexit(close_stdout);
607c2a72 1612
9c8b9fba 1613 strutils_set_exitcode(FSCK_EX_USAGE);
e33b39a8
KZ
1614 mnt_init_debug(0); /* init libmount debug mask */
1615 mntcache = mnt_new_cache(); /* no fatal error if failed */
1616
9895daca 1617 parse_argv(argc, argv);
607c2a72
KZ
1618
1619 if (!notitle)
e421313d 1620 printf(UTIL_LINUX_VERSION);
607c2a72 1621
2b505124 1622 load_fs_info();
607c2a72 1623
a03bdbcd 1624 fsck_path = xstrdup(path && *path ? path : FSCK_DEFAULT_PATH);
607c2a72
KZ
1625
1626 if ((num_devices == 1) || (serialize))
1627 interactive = 1;
1628
dd0bd943 1629 if (lockdisk && (doall || num_devices > 1)) {
0a09eb4e
SK
1630 warnx(_("the -l option can be used with one "
1631 "device only -- ignore"));
dd0bd943
KZ
1632 lockdisk = 0;
1633 }
1634
607c2a72
KZ
1635 /* If -A was specified ("check all"), do that! */
1636 if (doall)
1637 return check_all();
1638
1639 if (num_devices == 0) {
1640 serialize++;
1641 interactive++;
1642 return check_all();
1643 }
1644 for (i = 0 ; i < num_devices; i++) {
1645 if (cancel_requested) {
1646 if (!kill_sent) {
1647 kill_all(SIGTERM);
1648 kill_sent++;
1649 }
1650 break;
1651 }
1652 fs = lookup(devices[i]);
2b505124
KZ
1653 if (!fs)
1654 fs = add_dummy_fs(devices[i]);
1655 else if (fs_ignored_type(fs))
e3174198 1656 continue;
67f09eae 1657 if (ignore_mounted && is_mounted(fs))
607c2a72 1658 continue;
6c6f2af9 1659 status |= fsck_device(fs, interactive);
607c2a72
KZ
1660 if (serialize ||
1661 (max_running && (num_running >= max_running))) {
1662 struct fsck_instance *inst;
1663
1664 inst = wait_one(0);
1665 if (inst) {
1666 status |= inst->exit_status;
1667 free_instance(inst);
1668 }
1669 if (verbose > 1)
1670 printf("----------------------------------\n");
1671 }
1672 }
1673 status |= wait_many(FLAG_WAIT_ALL);
1674 free(fsck_path);
6195f9e6 1675 mnt_unref_cache(mntcache);
50fccba1
KZ
1676 mnt_unref_table(fstab);
1677 mnt_unref_table(mtab);
607c2a72
KZ
1678 return status;
1679}