2 * pfsck --- A generic, parallelizing front-end for the fsck program.
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
9 * Written by Theodore Ts'o, <tytso@mit.edu>
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.
19 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
20 * 2001, 2002, 2003, 2004, 2005 by Theodore Ts'o.
23 * This file may be redistributed under the terms of the GNU Public
28 #define _XOPEN_SOURCE 600 /* for inclusion of sa_handler in Solaris */
31 #include <sys/types.h>
61 #include "../version.h"
62 #include "support/devname.h"
63 #include "support/nls-enable.h"
65 #include "blkid/blkid.h"
68 #define _PATH_MNTTAB "/etc/fstab"
71 static const char *ignored_types
[] = {
83 static const char *really_wanted
[] = {
96 #define BASE_MD "/dev/md"
99 * Global variables for options
101 static char *devices
[MAX_DEVICES
];
102 static char *args
[MAX_ARGS
];
103 static int num_devices
, num_args
;
105 static int verbose
= 0;
106 static int doall
= 0;
107 static int noexecute
= 0;
108 static int serialize
= 0;
109 static int skip_root
= 0;
110 static int ignore_mounted
= 0;
111 static int notitle
= 0;
112 static int parallel_root
= 0;
113 static int progress
= 0;
114 static int progress_fd
= 0;
115 static int force_all_parallel
= 0;
116 static int num_running
= 0;
117 static int max_running
= 0;
118 static volatile int cancel_requested
= 0;
119 static int kill_sent
= 0;
120 static char *progname
;
121 static char *fstype
= NULL
;
122 static struct fs_info
*filesys_info
= NULL
, *filesys_last
= NULL
;
123 static struct fsck_instance
*instance_list
;
124 static const char *fsck_prefix_path
= "/sbin:/sbin/fs.d:/sbin/fs:/etc/fs:/etc";
125 static char *fsck_path
= 0;
126 static blkid_cache cache
= NULL
;
128 static char *string_copy(const char *s
)
134 ret
= malloc(strlen(s
)+1);
140 static int string_to_int(const char *s
)
145 l
= strtol(s
, &p
, 0);
146 if (*p
|| l
== LONG_MIN
|| l
== LONG_MAX
|| l
< 0 || l
> INT_MAX
)
152 static int ignore(struct fs_info
*);
154 static char *skip_over_blank(char *cp
)
156 while (*cp
&& isspace(*cp
))
161 static char *skip_over_word(char *cp
)
163 while (*cp
&& !isspace(*cp
))
168 static void strip_line(char *line
)
173 p
= line
+ strlen(line
) - 1;
174 if ((*p
== '\n') || (*p
== '\r'))
181 static char *parse_word(char **buf
)
189 word
= skip_over_blank(word
);
190 next
= skip_over_word(word
);
197 static void parse_escape(char *word
)
205 for (p
= word
, q
= word
; *p
; p
++, q
++) {
224 for (i
= 0; i
< 3; i
++, p
++) {
227 ac
= (ac
* 8) + (*p
- '0');
235 static void free_instance(struct fsck_instance
*i
)
239 free(i
->base_device
);
244 static struct fs_info
*create_fs_device(const char *device
, const char *mntpnt
,
245 const char *type
, const char *opts
,
246 int freq
, int passno
)
250 if (!(fs
= malloc(sizeof(struct fs_info
))))
253 fs
->device
= string_copy(device
);
254 fs
->mountpt
= string_copy(mntpnt
);
255 fs
->type
= string_copy(type
);
256 fs
->opts
= string_copy(opts
? opts
: "");
265 filesys_last
->next
= fs
;
273 static int parse_fstab_line(char *line
, struct fs_info
**ret_fs
)
275 char *dev
, *device
, *mntpnt
, *type
, *opts
, *freq
, *passno
, *cp
;
282 device
= parse_word(&cp
);
283 if (!device
|| *device
== '#')
284 return 0; /* Ignore blank lines and comments */
285 mntpnt
= parse_word(&cp
);
286 type
= parse_word(&cp
);
287 opts
= parse_word(&cp
);
288 freq
= parse_word(&cp
);
289 passno
= parse_word(&cp
);
291 if (!mntpnt
|| !type
)
294 parse_escape(device
);
295 parse_escape(mntpnt
);
299 parse_escape(passno
);
301 dev
= get_devname(cache
, device
, NULL
);
305 if (strchr(type
, ','))
308 fs
= create_fs_device(device
, mntpnt
, type
? type
: "auto", opts
,
309 freq
? atoi(freq
) : -1,
310 passno
? atoi(passno
) : -1);
319 static void interpret_type(struct fs_info
*fs
)
323 if (strcmp(fs
->type
, "auto") != 0)
325 t
= blkid_get_tag_value(cache
, "TYPE", fs
->device
);
333 * Load the filesystem database from /etc/fstab
335 static void load_fs_info(const char *filename
)
343 if ((f
= fopen(filename
, "r")) == NULL
) {
344 fprintf(stderr
, _("WARNING: couldn't open %s: %s\n"),
345 filename
, strerror(errno
));
350 if (!fgets(buf
, sizeof(buf
), f
))
352 buf
[sizeof(buf
)-1] = 0;
353 if (parse_fstab_line(buf
, &fs
) < 0) {
354 fprintf(stderr
, _("WARNING: bad format "
355 "on line %d of %s\n"), lineno
, filename
);
368 if (old_fstab
&& filesys_info
) {
369 fputs("\007\007\007", stderr
);
371 "WARNING: Your /etc/fstab does not contain the fsck passno\n"
372 " field. I will kludge around things for you, but you\n"
373 " should fix your /etc/fstab file as soon as you can.\n\n"), stderr
);
375 for (fs
= filesys_info
; fs
; fs
= fs
->next
) {
381 /* Lookup filesys in /etc/fstab and return the corresponding entry. */
382 static struct fs_info
*lookup(char *filesys
)
386 /* No filesys name given. */
390 for (fs
= filesys_info
; fs
; fs
= fs
->next
) {
391 if (!strcmp(filesys
, fs
->device
) ||
392 (fs
->mountpt
&& !strcmp(filesys
, fs
->mountpt
)))
399 /* Find fsck program for a given fs type. */
400 static char *find_fsck(char *type
)
404 static char prog
[256];
405 char *p
= string_copy(fsck_path
);
408 /* Are we looking for a program or just a type? */
409 tpl
= (strncmp(type
, "fsck.", 5) ? "%s/fsck.%s" : "%s/%s");
411 for(s
= strtok(p
, ":"); s
; s
= strtok(NULL
, ":")) {
412 int len
= snprintf(prog
, sizeof(prog
), tpl
, s
, type
);
414 if ((len
< 0) || (len
>= (int) sizeof(prog
)))
416 if (stat(prog
, &st
) == 0)
420 return(s
? prog
: NULL
);
423 static int progress_active(NOARGS
)
425 struct fsck_instance
*inst
;
427 for (inst
= instance_list
; inst
; inst
= inst
->next
) {
428 if (inst
->flags
& FLAG_DONE
)
430 if (inst
->flags
& FLAG_PROGRESS
)
437 * Execute a particular fsck program, and link it into the list of
438 * child processes we are waiting for.
440 static int execute(const char *type
, const char *device
, const char *mntpt
,
443 char *s
, *argv
[80], prog
[256];
445 struct fsck_instance
*inst
, *p
;
448 len
= snprintf(prog
, sizeof(prog
), "fsck.%s", type
);
449 if ((len
< 0) || (len
>= (int) sizeof(prog
)))
452 inst
= malloc(sizeof(struct fsck_instance
));
455 memset(inst
, 0, sizeof(struct fsck_instance
));
457 argv
[0] = string_copy(prog
);
460 for (i
=0; i
<num_args
; i
++)
461 argv
[argc
++] = string_copy(args
[i
]);
464 if ((strcmp(type
, "ext2") == 0) ||
465 (strcmp(type
, "ext3") == 0) ||
466 (strcmp(type
, "ext4") == 0) ||
467 (strcmp(type
, "ext4dev") == 0)) {
471 if (!progress_active()) {
472 snprintf(tmp
, 80, "-C%d", progress_fd
);
473 inst
->flags
|= FLAG_PROGRESS
;
474 } else if (progress_fd
)
475 snprintf(tmp
, 80, "-C%d", progress_fd
* -1);
477 argv
[argc
++] = string_copy(tmp
);
481 argv
[argc
++] = string_copy(device
);
486 fprintf(stderr
, _("fsck: %s: not found\n"), prog
);
491 if (verbose
|| noexecute
) {
492 printf("[%s (%d) -- %s] ", s
, num_running
,
493 mntpt
? mntpt
: device
);
494 for (i
=0; i
< argc
; i
++)
495 printf("%s ", argv
[i
]);
499 /* Fork and execute the correct program. */
502 else if ((pid
= fork()) < 0) {
506 } else if (pid
== 0) {
509 (void) execv(s
, argv
);
515 for (i
=0; i
< argc
; i
++)
519 inst
->prog
= string_copy(prog
);
520 inst
->type
= string_copy(type
);
521 inst
->device
= string_copy(device
);
522 inst
->base_device
= base_device(device
);
523 inst
->start_time
= time(0);
527 * Find the end of the list, so we add the instance on at the end.
529 for (p
= instance_list
; p
&& p
->next
; p
= p
->next
);
534 instance_list
= inst
;
540 * Send a signal to all outstanding fsck child processes
542 static int kill_all(int signum
)
544 struct fsck_instance
*inst
;
547 for (inst
= instance_list
; inst
; inst
= inst
->next
) {
548 if (inst
->flags
& FLAG_DONE
)
552 kill(inst
->pid
, signum
);
559 * Wait for one child process to exit; when it does, unlink it from
560 * the list of executing child processes, and return it.
562 static struct fsck_instance
*wait_one(int flags
)
566 struct fsck_instance
*inst
, *inst2
, *prev
;
573 inst
= instance_list
;
576 while (inst
->next
&& (random() & 1)) {
581 inst
->exit_status
= 0;
586 * gcc -Wall fails saving throw against stupidity
587 * (inst and prev are thought to be uninitialized variables)
592 pid
= waitpid(-1, &status
, flags
);
593 if (cancel_requested
&& !kill_sent
) {
597 if ((pid
== 0) && (flags
& WNOHANG
))
600 if ((errno
== EINTR
) || (errno
== EAGAIN
))
602 if (errno
== ECHILD
) {
604 _("%s: wait: No more child process?!?\n"),
611 for (prev
= 0, inst
= instance_list
;
613 prev
= inst
, inst
= inst
->next
) {
614 if (inst
->pid
== pid
)
619 if (WIFEXITED(status
))
620 status
= WEXITSTATUS(status
);
621 else if (WIFSIGNALED(status
)) {
622 sig
= WTERMSIG(status
);
624 status
= EXIT_UNCORRECTED
;
626 printf(_("Warning... %s for device %s exited "
627 "with signal %d.\n"),
628 inst
->prog
, inst
->device
, sig
);
632 printf(_("%s %s: status is %x, should never happen.\n"),
633 inst
->prog
, inst
->device
, status
);
636 inst
->exit_status
= status
;
637 inst
->flags
|= FLAG_DONE
;
638 if (progress
&& (inst
->flags
& FLAG_PROGRESS
) &&
639 !progress_active()) {
640 for (inst2
= instance_list
; inst2
; inst2
= inst2
->next
) {
641 if (inst2
->flags
& FLAG_DONE
)
643 if (strcmp(inst2
->type
, "ext2") &&
644 strcmp(inst2
->type
, "ext3") &&
645 strcmp(inst2
->type
, "ext4") &&
646 strcmp(inst2
->type
, "ext4dev"))
649 * If we've just started the fsck, wait a tiny
650 * bit before sending the kill, to give it
651 * time to set up the signal handler
653 if (inst2
->start_time
< time(0)+2) {
656 kill(inst2
->pid
, SIGUSR1
);
660 kill(inst2
->pid
, SIGUSR1
);
661 inst2
->flags
|= FLAG_PROGRESS
;
667 prev
->next
= inst
->next
;
669 instance_list
= inst
->next
;
671 printf(_("Finished with %s (exit status %d)\n"),
672 inst
->device
, inst
->exit_status
);
677 #define FLAG_WAIT_ALL 0
678 #define FLAG_WAIT_ATLEAST_ONE 1
680 * Wait until all executing child processes have exited; return the
681 * logical OR of all of their exit code values.
683 static int wait_many(int flags
)
685 struct fsck_instance
*inst
;
686 int global_status
= 0;
689 while ((inst
= wait_one(wait_flags
))) {
690 global_status
|= inst
->exit_status
;
693 if (noexecute
&& (flags
& WNOHANG
) && !(random() % 3))
696 if (flags
& FLAG_WAIT_ATLEAST_ONE
)
697 wait_flags
= WNOHANG
;
699 return global_status
;
703 * Run the fsck program on a particular device
705 * If the type is specified using -t, and it isn't prefixed with "no"
706 * (as in "noext2") and only one filesystem type is specified, then
707 * use that type regardless of what is specified in /etc/fstab.
709 * If the type isn't specified by the user, then use either the type
710 * specified in /etc/fstab, or DEFAULT_FSTYPE.
712 static void fsck_device(struct fs_info
*fs
, int interactive
)
719 if (strcmp(fs
->type
, "auto") != 0)
721 else if (fstype
&& strncmp(fstype
, "no", 2) &&
722 strncmp(fstype
, "opts=", 5) && strncmp(fstype
, "loop", 4) &&
723 !strchr(fstype
, ','))
726 type
= DEFAULT_FSTYPE
;
729 retval
= execute(type
, fs
->device
, fs
->mountpt
, interactive
);
731 fprintf(stderr
, _("%s: Error %d while executing fsck.%s "
732 "for %s\n"), progname
, retval
, type
, fs
->device
);
739 * Deal with the fsck -t argument.
741 static struct fs_type_compile
{
747 #define FS_TYPE_NORMAL 0
748 #define FS_TYPE_OPT 1
749 #define FS_TYPE_NEGOPT 2
751 static const char *fs_type_syntax_error
=
752 N_("Either all or none of the filesystem types passed to -t must be prefixed\n"
753 "with 'no' or '!'.\n");
755 static void compile_fs_type(char *fs_type
, struct fs_type_compile
*cmp
)
759 int negate
, first_negate
= 1;
762 for (cp
=fs_type
; *cp
; cp
++) {
768 cmp
->list
= malloc(num
* sizeof(char *));
769 cmp
->type
= malloc(num
* sizeof(int));
770 if (!cmp
->list
|| !cmp
->type
) {
771 fputs(_("Couldn't allocate memory for filesystem types\n"),
775 memset(cmp
->list
, 0, num
* sizeof(char *));
776 memset(cmp
->type
, 0, num
* sizeof(int));
782 list
= string_copy(fs_type
);
784 s
= strtok(list
, ",");
787 if (strncmp(s
, "no", 2) == 0) {
790 } else if (*s
== '!') {
794 if (strcmp(s
, "loop") == 0)
795 /* loop is really short-hand for opts=loop */
796 goto loop_special_case
;
797 else if (strncmp(s
, "opts=", 5) == 0) {
800 cmp
->type
[num
] = negate
? FS_TYPE_NEGOPT
: FS_TYPE_OPT
;
803 cmp
->negate
= negate
;
806 if ((negate
&& !cmp
->negate
) ||
807 (!negate
&& cmp
->negate
)) {
808 fputs(_(fs_type_syntax_error
), stderr
);
814 printf("Adding %s to list (type %d).\n", s
, cmp
->type
[num
]);
816 cmp
->list
[num
++] = string_copy(s
);
817 s
= strtok(NULL
, ",");
823 * This function returns true if a particular option appears in a
824 * comma-delimited options list
826 static int opt_in_list(const char *opt
, char *optlist
)
832 list
= string_copy(optlist
);
834 s
= strtok(list
, ",");
836 if (strcmp(s
, opt
) == 0) {
840 s
= strtok(NULL
, ",");
846 /* See if the filesystem matches the criteria given by the -t option */
847 static int fs_match(struct fs_info
*fs
, struct fs_type_compile
*cmp
)
849 int n
, ret
= 0, checked_type
= 0;
852 if (cmp
->list
== 0 || cmp
->list
[0] == 0)
855 for (n
=0; (cp
= cmp
->list
[n
]); n
++) {
856 switch (cmp
->type
[n
]) {
859 if (strcmp(cp
, fs
->type
) == 0) {
864 if (opt_in_list(cp
, fs
->opts
))
868 if (!opt_in_list(cp
, fs
->opts
))
873 if (checked_type
== 0)
875 return (cmp
->negate
? !ret
: ret
);
878 /* Check if we should ignore this filesystem. */
879 static int ignore(struct fs_info
*fs
)
885 * If the pass number is 0, ignore it.
891 * If this is a bind mount, ignore it.
893 if (opt_in_list("bind", fs
->opts
)) {
895 _("%s: skipping bad line in /etc/fstab: bind mount with nonzero fsck pass number\n"),
903 * If a specific fstype is specified, and it doesn't match,
906 if (!fs_match(fs
, &fs_type_compiled
)) return 1;
908 /* Are we ignoring this type? */
909 for(ip
= ignored_types
; *ip
; ip
++)
910 if (strcmp(fs
->type
, *ip
) == 0) return 1;
912 /* Do we really really want to check this fs? */
913 for(ip
= really_wanted
; *ip
; ip
++)
914 if (strcmp(fs
->type
, *ip
) == 0) {
919 /* See if the <fsck.fs> program is available. */
920 if (find_fsck(fs
->type
) == NULL
) {
922 fprintf(stderr
, _("fsck: cannot check %s: fsck.%s not found\n"),
923 fs
->device
, fs
->type
);
927 /* We can and want to check this file system type. */
932 * Returns TRUE if a partition on the same disk is already being
935 static int device_already_active(char *device
)
937 struct fsck_instance
*inst
;
940 if (force_all_parallel
)
944 /* Don't check a soft raid disk with any other disk */
946 (!strncmp(instance_list
->device
, BASE_MD
, sizeof(BASE_MD
)-1) ||
947 !strncmp(device
, BASE_MD
, sizeof(BASE_MD
)-1)))
951 base
= base_device(device
);
953 * If we don't know the base device, assume that the device is
954 * already active if there are any fsck instances running.
957 return (instance_list
!= 0);
958 for (inst
= instance_list
; inst
; inst
= inst
->next
) {
959 if (!inst
->base_device
|| !strcmp(base
, inst
->base_device
)) {
968 /* Check all file systems, using the /etc/fstab table. */
969 static int check_all(NOARGS
)
971 struct fs_info
*fs
= NULL
;
972 int status
= EXIT_OK
;
973 int not_done_yet
= 1;
978 fputs(_("Checking all file systems.\n"), stdout
);
981 * Do an initial scan over the filesystem; mark filesystems
982 * which should be ignored as done, and resolve any "auto"
983 * filesystem types (done as a side-effect of calling ignore()).
985 for (fs
= filesys_info
; fs
; fs
= fs
->next
) {
987 fs
->flags
|= FLAG_DONE
;
991 * Find and check the root filesystem.
993 if (!parallel_root
) {
994 for (fs
= filesys_info
; fs
; fs
= fs
->next
) {
995 if (!strcmp(fs
->mountpt
, "/"))
999 if (!skip_root
&& !ignore(fs
) &&
1000 !(ignore_mounted
&& is_mounted(fs
->device
))) {
1002 status
|= wait_many(FLAG_WAIT_ALL
);
1003 if (status
> EXIT_NONDESTRUCT
)
1006 fs
->flags
|= FLAG_DONE
;
1010 * This is for the bone-headed user who enters the root
1011 * filesystem twice. Skip root will skip all root entries.
1014 for (fs
= filesys_info
; fs
; fs
= fs
->next
)
1015 if (!strcmp(fs
->mountpt
, "/"))
1016 fs
->flags
|= FLAG_DONE
;
1018 while (not_done_yet
) {
1022 for (fs
= filesys_info
; fs
; fs
= fs
->next
) {
1023 if (cancel_requested
)
1025 if (fs
->flags
& FLAG_DONE
)
1028 * If the filesystem's pass number is higher
1029 * than the current pass number, then we don't
1032 if (fs
->passno
> passno
) {
1036 if (ignore_mounted
&& is_mounted(fs
->device
)) {
1037 fs
->flags
|= FLAG_DONE
;
1041 * If a filesystem on a particular device has
1042 * already been spawned, then we need to defer
1043 * this to another pass.
1045 if (device_already_active(fs
->device
)) {
1050 * Spawn off the fsck process
1052 fsck_device(fs
, serialize
);
1053 fs
->flags
|= FLAG_DONE
;
1056 * Only do one filesystem at a time, or if we
1057 * have a limit on the number of fsck's extant
1058 * at one time, apply that limit.
1061 (max_running
&& (num_running
>= max_running
))) {
1066 if (cancel_requested
)
1069 printf(_("--waiting-- (pass %d)\n"), passno
);
1070 status
|= wait_many(pass_done
? FLAG_WAIT_ALL
:
1071 FLAG_WAIT_ATLEAST_ONE
);
1074 printf("----------------------------------\n");
1079 if (cancel_requested
&& !kill_sent
) {
1083 status
|= wait_many(FLAG_WAIT_ATLEAST_ONE
);
1087 static void usage(NOARGS
)
1089 fputs(_("Usage: fsck [-AMNPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"), stderr
);
1093 #ifdef HAVE_SIGNAL_H
1094 static void signal_cancel(int sig
FSCK_ATTR((unused
)))
1100 static void PRS(int argc
, char *argv
[])
1103 char *arg
, *dev
, *tmp
= 0;
1106 int opts_for_fsck
= 0;
1107 #ifdef HAVE_SIGNAL_H
1108 struct sigaction sa
;
1111 * Set up signal action
1113 memset(&sa
, 0, sizeof(struct sigaction
));
1114 sa
.sa_handler
= signal_cancel
;
1115 sigaction(SIGINT
, &sa
, 0);
1116 sigaction(SIGTERM
, &sa
, 0);
1125 for (i
=1; i
< argc
; i
++) {
1129 if ((arg
[0] == '/' && !opts_for_fsck
) || strchr(arg
, '=')) {
1130 if (num_devices
>= MAX_DEVICES
) {
1131 fprintf(stderr
, _("%s: too many devices\n"),
1135 dev
= get_devname(cache
, arg
, NULL
);
1136 if (!dev
&& strchr(arg
, '=')) {
1138 * Check to see if we failed because
1139 * /proc/partitions isn't found.
1141 if (access("/proc/partitions", R_OK
) < 0) {
1142 fprintf(stderr
, "Couldn't open /proc/partitions: %s\n",
1144 fprintf(stderr
, "Is /proc mounted?\n");
1148 * Check to see if this is because
1149 * we're not running as root
1153 "Must be root to scan for matching filesystems: %s\n", arg
);
1156 "Couldn't find matching filesystem: %s\n", arg
);
1159 devices
[num_devices
++] = dev
? dev
: string_copy(arg
);
1162 if (arg
[0] != '-' || opts_for_fsck
) {
1163 if (num_args
>= MAX_ARGS
) {
1164 fprintf(stderr
, _("%s: too many arguments\n"),
1168 args
[num_args
++] = string_copy(arg
);
1171 for (j
=1; arg
[j
]; j
++) {
1172 if (opts_for_fsck
) {
1173 options
[++opt
] = arg
[j
];
1183 progress_fd
= string_to_int(arg
+j
+1);
1184 if (progress_fd
< 0)
1188 } else if (argc
> i
+ 1 &&
1189 argv
[i
+ 1][0] != '-') {
1190 progress_fd
= string_to_int(argv
[i
]);
1191 if (progress_fd
< 0)
1226 else if ((i
+1) < argc
)
1230 fstype
= string_copy(tmp
);
1231 compile_fs_type(fstype
, &fs_type_compiled
);
1240 options
[++opt
] = arg
[j
];
1247 options
[++opt
] = '\0';
1248 if (num_args
>= MAX_ARGS
) {
1250 _("%s: too many arguments\n"),
1254 args
[num_args
++] = string_copy(options
);
1258 if (getenv("FSCK_FORCE_ALL_PARALLEL"))
1259 force_all_parallel
++;
1260 if ((tmp
= getenv("FSCK_MAX_INST")))
1261 max_running
= atoi(tmp
);
1264 int main(int argc
, char *argv
[])
1267 int interactive
= 0;
1268 char *oldpath
= getenv("PATH");
1272 setvbuf(stdout
, NULL
, _IONBF
, BUFSIZ
);
1273 setvbuf(stderr
, NULL
, _IONBF
, BUFSIZ
);
1276 setlocale(LC_MESSAGES
, "");
1277 setlocale(LC_CTYPE
, "");
1278 bindtextdomain(NLS_CAT_NAME
, LOCALEDIR
);
1279 textdomain(NLS_CAT_NAME
);
1281 blkid_get_cache(&cache
, NULL
);
1285 printf("fsck %s (%s)\n", E2FSPROGS_VERSION
, E2FSPROGS_DATE
);
1287 fstab
= getenv("FSTAB_FILE");
1289 fstab
= _PATH_MNTTAB
;
1290 load_fs_info(fstab
);
1292 /* Update our search path to include uncommon directories. */
1294 fsck_path
= malloc (strlen (fsck_prefix_path
) + 1 +
1295 strlen (oldpath
) + 1);
1297 fprintf(stderr
, "%s: Unable to allocate memory for fsck_path\n", progname
);
1300 strcpy (fsck_path
, fsck_prefix_path
);
1301 strcat (fsck_path
, ":");
1302 strcat (fsck_path
, oldpath
);
1304 fsck_path
= string_copy(fsck_prefix_path
);
1307 if ((num_devices
== 1) || (serialize
))
1310 /* If -A was specified ("check all"), do that! */
1314 if (num_devices
== 0) {
1319 for (i
= 0 ; i
< num_devices
; i
++) {
1320 if (cancel_requested
) {
1327 fs
= lookup(devices
[i
]);
1329 fs
= create_fs_device(devices
[i
], 0, "auto",
1334 if (ignore_mounted
&& is_mounted(fs
->device
))
1336 fsck_device(fs
, interactive
);
1338 (max_running
&& (num_running
>= max_running
))) {
1339 struct fsck_instance
*inst
;
1343 status
|= inst
->exit_status
;
1344 free_instance(inst
);
1347 printf("----------------------------------\n");
1350 status
|= wait_many(FLAG_WAIT_ALL
);
1352 blkid_put_cache(cache
);