ps: fix build breakage from vda's recent commit
[oweals/busybox.git] / e2fsprogs / fsck.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * fsck --- A generic, parallelizing front-end for the fsck program.
4  * It will automatically try to run fsck programs in parallel if the
5  * devices are on separate spindles.  It is based on the same ideas as
6  * the generic front end for fsck by David Engel and Fred van Kempen,
7  * but it has been completely rewritten from scratch to support
8  * parallel execution.
9  *
10  * Written by Theodore Ts'o, <tytso@mit.edu>
11  *
12  * Miquel van Smoorenburg (miquels@drinkel.ow.org) 20-Oct-1994:
13  *   o Changed -t fstype to behave like with mount when -A (all file
14  *     systems) or -M (like mount) is specified.
15  *   o fsck looks if it can find the fsck.type program to decide
16  *     if it should ignore the fs type. This way more fsck programs
17  *     can be added without changing this front-end.
18  *   o -R flag skip root file system.
19  *
20  * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
21  *      2001, 2002, 2003, 2004, 2005 by  Theodore Ts'o.
22  *
23  * %Begin-Header%
24  * This file may be redistributed under the terms of the GNU Public
25  * License.
26  * %End-Header%
27  */
28
29 /* All filesystem specific hooks have been removed.
30  * If filesystem cannot be determined, we will execute
31  * "fsck.auto". Currently this also happens if you specify
32  * UUID=xxx or LABEL=xxx as an object to check.
33  * Detection code for that is also probably has to be in fsck.auto.
34  *
35  * In other words, this is _really_ is just a driver program which
36  * spawns actual fsck.something for each filesystem to check.
37  * It doesn't guess filesystem types from on-disk format.
38  */
39
40 #include "libbb.h"
41
42 #define EXIT_OK          0
43 #define EXIT_NONDESTRUCT 1
44 #define EXIT_DESTRUCT    2
45 #define EXIT_UNCORRECTED 4
46 #define EXIT_ERROR       8
47 #define EXIT_USAGE       16
48 #define FSCK_CANCELED    32     /* Aborted with a signal or ^C */
49
50 /*
51  * Internal structure for mount table entries.
52  */
53
54 struct fs_info {
55         struct fs_info *next;
56         char    *device;
57         char    *mountpt;
58         char    *type;
59         char    *opts;
60         int     freq;
61         int     passno;
62         int     flags;
63 };
64
65 #define FLAG_DONE 1
66 #define FLAG_PROGRESS 2
67 /*
68  * Structure to allow exit codes to be stored
69  */
70 struct fsck_instance {
71         struct fsck_instance *next;
72         int     pid;
73         int     flags;
74         int     exit_status;
75         time_t  start_time;
76         char    *prog;
77         char    *type;
78         char    *device;
79         char    *base_device; /* /dev/hda for /dev/hdaN etc */
80 };
81
82 static const char ignored_types[] ALIGN1 =
83         "ignore\0"
84         "iso9660\0"
85         "nfs\0"
86         "proc\0"
87         "sw\0"
88         "swap\0"
89         "tmpfs\0"
90         "devpts\0";
91
92 #if 0
93 static const char really_wanted[] ALIGN1 =
94         "minix\0"
95         "ext2\0"
96         "ext3\0"
97         "jfs\0"
98         "reiserfs\0"
99         "xiafs\0"
100         "xfs\0";
101 #endif
102
103 #define BASE_MD "/dev/md"
104
105 static char **devices;
106 static char **args;
107 static int num_devices;
108 static int num_args;
109 static int verbose;
110
111 #define FS_TYPE_FLAG_NORMAL 0
112 #define FS_TYPE_FLAG_OPT    1
113 #define FS_TYPE_FLAG_NEGOPT 2
114 static char **fs_type_list;
115 static uint8_t *fs_type_flag;
116 static smallint fs_type_negated;
117
118 static volatile smallint cancel_requested;
119 static smallint doall;
120 static smallint noexecute;
121 static smallint serialize;
122 static smallint skip_root;
123 /* static smallint like_mount; */
124 static smallint notitle;
125 static smallint parallel_root;
126 static smallint force_all_parallel;
127
128 /* "progress indicator" code is somewhat buggy and ext[23] specific.
129  * We should be filesystem agnostic. IOW: there should be a well-defined
130  * API for fsck.something, NOT ad-hoc hacks in generic fsck. */
131 #define DO_PROGRESS_INDICATOR 0
132 #if DO_PROGRESS_INDICATOR
133 static smallint progress;
134 static int progress_fd;
135 #endif
136
137 static int num_running;
138 static int max_running;
139 static char *fstype;
140 static struct fs_info *filesys_info;
141 static struct fs_info *filesys_last;
142 static struct fsck_instance *instance_list;
143
144 /*
145  * Return the "base device" given a particular device; this is used to
146  * assure that we only fsck one partition on a particular drive at any
147  * one time.  Otherwise, the disk heads will be seeking all over the
148  * place.  If the base device cannot be determined, return NULL.
149  *
150  * The base_device() function returns an allocated string which must
151  * be freed.
152  */
153 #if ENABLE_FEATURE_DEVFS
154 /*
155  * Required for the uber-silly devfs /dev/ide/host1/bus2/target3/lun3
156  * pathames.
157  */
158 static const char *const devfs_hier[] = {
159         "host", "bus", "target", "lun", NULL
160 };
161 #endif
162
163 static char *base_device(const char *device)
164 {
165         char *str, *cp;
166 #if ENABLE_FEATURE_DEVFS
167         const char *const *hier;
168         const char *disk;
169         int len;
170 #endif
171         cp = str = xstrdup(device);
172
173         /* Skip over /dev/; if it's not present, give up. */
174         if (strncmp(cp, "/dev/", 5) != 0)
175                 goto errout;
176         cp += 5;
177
178         /*
179          * For md devices, we treat them all as if they were all
180          * on one disk, since we don't know how to parallelize them.
181          */
182         if (cp[0] == 'm' && cp[1] == 'd') {
183                 cp[2] = 0;
184                 return str;
185         }
186
187         /* Handle DAC 960 devices */
188         if (strncmp(cp, "rd/", 3) == 0) {
189                 cp += 3;
190                 if (cp[0] != 'c' || !isdigit(cp[1])
191                  || cp[2] != 'd' || !isdigit(cp[3]))
192                         goto errout;
193                 cp[4] = 0;
194                 return str;
195         }
196
197         /* Now let's handle /dev/hd* and /dev/sd* devices.... */
198         if ((cp[0] == 'h' || cp[0] == 's') && cp[1] == 'd') {
199                 cp += 2;
200                 /* If there's a single number after /dev/hd, skip it */
201                 if (isdigit(*cp))
202                         cp++;
203                 /* What follows must be an alpha char, or give up */
204                 if (!isalpha(*cp))
205                         goto errout;
206                 cp[1] = 0;
207                 return str;
208         }
209
210 #if ENABLE_FEATURE_DEVFS
211         /* Now let's handle devfs (ugh) names */
212         len = 0;
213         if (strncmp(cp, "ide/", 4) == 0)
214                 len = 4;
215         if (strncmp(cp, "scsi/", 5) == 0)
216                 len = 5;
217         if (len) {
218                 cp += len;
219                 /*
220                  * Now we proceed down the expected devfs hierarchy.
221                  * i.e., .../host1/bus2/target3/lun4/...
222                  * If we don't find the expected token, followed by
223                  * some number of digits at each level, abort.
224                  */
225                 for (hier = devfs_hier; *hier; hier++) {
226                         len = strlen(*hier);
227                         if (strncmp(cp, *hier, len) != 0)
228                                 goto errout;
229                         cp += len;
230                         while (*cp != '/' && *cp != 0) {
231                                 if (!isdigit(*cp))
232                                         goto errout;
233                                 cp++;
234                         }
235                         cp++;
236                 }
237                 cp[-1] = 0;
238                 return str;
239         }
240
241         /* Now handle devfs /dev/disc or /dev/disk names */
242         disk = 0;
243         if (strncmp(cp, "discs/", 6) == 0)
244                 disk = "disc";
245         else if (strncmp(cp, "disks/", 6) == 0)
246                 disk = "disk";
247         if (disk) {
248                 cp += 6;
249                 if (strncmp(cp, disk, 4) != 0)
250                         goto errout;
251                 cp += 4;
252                 while (*cp != '/' && *cp != 0) {
253                         if (!isdigit(*cp))
254                                 goto errout;
255                         cp++;
256                 }
257                 *cp = 0;
258                 return str;
259         }
260 #endif
261  errout:
262         free(str);
263         return NULL;
264 }
265
266 static void free_instance(struct fsck_instance *p)
267 {
268         free(p->prog);
269         free(p->device);
270         free(p->base_device);
271         free(p);
272 }
273
274 static struct fs_info *create_fs_device(const char *device, const char *mntpnt,
275                                         const char *type, const char *opts,
276                                         int freq, int passno)
277 {
278         struct fs_info *fs;
279
280         fs = xzalloc(sizeof(*fs));
281         fs->device = xstrdup(device);
282         fs->mountpt = xstrdup(mntpnt);
283         fs->type = xstrdup(type);
284         fs->opts = xstrdup(opts ? opts : "");
285         fs->freq = freq;
286         fs->passno = passno;
287         /*fs->flags = 0; */
288         /*fs->next = NULL; */
289
290         if (!filesys_info)
291                 filesys_info = fs;
292         else
293                 filesys_last->next = fs;
294         filesys_last = fs;
295
296         return fs;
297 }
298
299 static void strip_line(char *line)
300 {
301         char *p = line + strlen(line) - 1;
302
303         while (*line) {
304                 if (*p != '\n' && *p != '\r')
305                         break;
306                 *p-- = '\0';
307         }
308 }
309
310 static char *parse_word(char **buf)
311 {
312         char *word, *next;
313
314         word = *buf;
315         if (*word == '\0')
316                 return NULL;
317
318         word = skip_whitespace(word);
319         next = skip_non_whitespace(word);
320         if (*next)
321                 *next++ = '\0';
322         *buf = next;
323         return word;
324 }
325
326 static void parse_escape(char *word)
327 {
328         char *q, c;
329         const char *p;
330
331         if (!word)
332                 return;
333
334         for (p = q = word; *p; q++) {
335                 c = *p++;
336                 if (c != '\\') {
337                         *q = c;
338                 } else {
339                         *q = bb_process_escape_sequence(&p);
340                 }
341         }
342         *q = '\0';
343 }
344
345 static int parse_fstab_line(char *line, struct fs_info **ret_fs)
346 {
347         char *device, *mntpnt, *type, *opts, *freq, *passno, *cp;
348         struct fs_info *fs;
349
350         *ret_fs = 0;
351         strip_line(line);
352         *strchrnul(line, '#') = '\0'; /* Ignore everything after comment */
353         cp = line;
354
355         device = parse_word(&cp);
356         if (!device) return 0; /* Allow blank lines */
357         mntpnt = parse_word(&cp);
358         type = parse_word(&cp);
359         opts = parse_word(&cp);
360         freq = parse_word(&cp);
361         passno = parse_word(&cp);
362
363         if (!mntpnt || !type)
364                 return -1;
365
366         parse_escape(device);
367         parse_escape(mntpnt);
368         parse_escape(type);
369         parse_escape(opts);
370         parse_escape(freq);
371         parse_escape(passno);
372
373         if (strchr(type, ','))
374                 type = NULL;
375
376         fs = create_fs_device(device, mntpnt, type ? type : "auto", opts,
377                             freq ? atoi(freq) : -1,
378                             passno ? atoi(passno) : -1);
379         *ret_fs = fs;
380         return 0;
381 }
382
383 /* Load the filesystem database from /etc/fstab */
384 static void load_fs_info(const char *filename)
385 {
386         FILE *f;
387         int lineno = 0;
388         int old_fstab = 1;
389         struct fs_info *fs;
390
391         f = fopen_or_warn(filename, "r");
392         if (f == NULL) {
393                 return;
394         }
395         while (1) {
396                 int r;
397                 char *buf = xmalloc_getline(f);
398                 if (!buf) break;
399                 r = parse_fstab_line(buf, &fs);
400                 free(buf);
401                 lineno++;
402                 if (r < 0) {
403                         bb_error_msg("WARNING: bad format "
404                                 "on line %d of %s", lineno, filename);
405                         continue;
406                 }
407                 if (!fs)
408                         continue;
409                 if (fs->passno < 0)
410                         fs->passno = 0;
411                 else
412                         old_fstab = 0;
413         }
414         fclose(f);
415
416         if (old_fstab) {
417                 fputs("\007"
418 "WARNING: Your /etc/fstab does not contain the fsck passno field.\n"
419 "I will kludge around things for you, but you should fix\n"
420 "your /etc/fstab file as soon as you can.\n\n", stderr);
421                 for (fs = filesys_info; fs; fs = fs->next) {
422                         fs->passno = 1;
423                 }
424         }
425 }
426
427 /* Lookup filesys in /etc/fstab and return the corresponding entry. */
428 static struct fs_info *lookup(char *filesys)
429 {
430         struct fs_info *fs;
431
432         for (fs = filesys_info; fs; fs = fs->next) {
433                 if (strcmp(filesys, fs->device) == 0
434                  || (fs->mountpt && strcmp(filesys, fs->mountpt) == 0)
435                 )
436                         break;
437         }
438
439         return fs;
440 }
441
442 #if DO_PROGRESS_INDICATOR
443 static int progress_active(void)
444 {
445         struct fsck_instance *inst;
446
447         for (inst = instance_list; inst; inst = inst->next) {
448                 if (inst->flags & FLAG_DONE)
449                         continue;
450                 if (inst->flags & FLAG_PROGRESS)
451                         return 1;
452         }
453         return 0;
454 }
455 #endif
456
457
458 /*
459  * Send a signal to all outstanding fsck child processes
460  */
461 static void kill_all_if_cancel_requested(void)
462 {
463         static smallint kill_sent;
464
465         struct fsck_instance *inst;
466
467         if (!cancel_requested || kill_sent)
468                 return;
469
470         for (inst = instance_list; inst; inst = inst->next) {
471                 if (inst->flags & FLAG_DONE)
472                         continue;
473                 kill(inst->pid, SIGTERM);
474         }
475         kill_sent = 1;
476 }
477
478 /*
479  * Wait for one child process to exit; when it does, unlink it from
480  * the list of executing child processes, and return it.
481  */
482 static struct fsck_instance *wait_one(int flags)
483 {
484         int status;
485         int sig;
486         struct fsck_instance *inst, *prev;
487         pid_t pid;
488
489         if (!instance_list)
490                 return NULL;
491
492         if (noexecute) {
493                 inst = instance_list;
494                 prev = NULL;
495 #ifdef RANDOM_DEBUG
496                 while (inst->next && (random() & 1)) {
497                         prev = inst;
498                         inst = inst->next;
499                 }
500 #endif
501                 inst->exit_status = 0;
502                 goto ret_inst;
503         }
504
505         inst = prev = NULL; /* for gcc */
506         do {
507                 pid = waitpid(-1, &status, flags);
508                 kill_all_if_cancel_requested();
509                 if (pid == 0 && (flags & WNOHANG))
510                         return NULL;
511                 if (pid < 0) {
512                         if (errno == EINTR || errno == EAGAIN)
513                                 continue;
514                         if (errno == ECHILD) {
515                                 bb_error_msg("wait: no more child process?!?");
516                                 return NULL;
517                         }
518                         bb_perror_msg("wait");
519                         continue;
520                 }
521                 prev = NULL;
522                 inst = instance_list;
523                 while (inst) {
524                         if (inst->pid == pid)
525                                 break;
526                         prev = inst;
527                         inst = inst->next;
528                 }
529         } while (!inst);
530
531         if (WIFEXITED(status))
532                 status = WEXITSTATUS(status);
533         else if (WIFSIGNALED(status)) {
534                 sig = WTERMSIG(status);
535                 status = EXIT_UNCORRECTED;
536                 if (sig != SIGINT) {
537                         printf("Warning... %s %s exited "
538                                 "with signal %d\n",
539                                 inst->prog, inst->device, sig);
540                         status = EXIT_ERROR;
541                 }
542         } else {
543                 printf("%s %s: status is %x, should never happen\n",
544                         inst->prog, inst->device, status);
545                 status = EXIT_ERROR;
546         }
547         inst->exit_status = status;
548
549 #if DO_PROGRESS_INDICATOR
550         if (progress && (inst->flags & FLAG_PROGRESS) && !progress_active()) {
551                 struct fsck_instance *inst2;
552                 for (inst2 = instance_list; inst2; inst2 = inst2->next) {
553                         if (inst2->flags & FLAG_DONE)
554                                 continue;
555                         if (strcmp(inst2->type, "ext2") != 0
556                          && strcmp(inst2->type, "ext3") != 0
557                         ) {
558                                 continue;
559                         }
560                         /* ext[23], we will send USR1
561                          * (request to start displaying progress bar)
562                          *
563                          * If we've just started the fsck, wait a tiny
564                          * bit before sending the kill, to give it
565                          * time to set up the signal handler
566                          */
567                         if (inst2->start_time >= time(NULL) - 1)
568                                 sleep(1);
569                         kill(inst2->pid, SIGUSR1);
570                         inst2->flags |= FLAG_PROGRESS;
571                         break;
572                 }
573         }
574 #endif
575
576  ret_inst:
577         if (prev)
578                 prev->next = inst->next;
579         else
580                 instance_list = inst->next;
581         if (verbose > 1)
582                 printf("Finished with %s (exit status %d)\n",
583                        inst->device, inst->exit_status);
584         num_running--;
585         return inst;
586 }
587
588 #define FLAG_WAIT_ALL           0
589 #define FLAG_WAIT_ATLEAST_ONE   1
590 /*
591  * Wait until all executing child processes have exited; return the
592  * logical OR of all of their exit code values.
593  */
594 static int wait_many(int flags)
595 {
596         struct fsck_instance *inst;
597         int global_status = 0;
598         int wait_flags = 0;
599
600         while ((inst = wait_one(wait_flags))) {
601                 global_status |= inst->exit_status;
602                 free_instance(inst);
603 #ifdef RANDOM_DEBUG
604                 if (noexecute && (flags & WNOHANG) && !(random() % 3))
605                         break;
606 #endif
607                 if (flags & FLAG_WAIT_ATLEAST_ONE)
608                         wait_flags = WNOHANG;
609         }
610         return global_status;
611 }
612
613 /*
614  * Execute a particular fsck program, and link it into the list of
615  * child processes we are waiting for.
616  */
617 static void execute(const char *type, const char *device, const char *mntpt,
618                 int interactive)
619 {
620         char *argv[num_args + 4]; /* see count below: */
621         int argc;
622         int i;
623         struct fsck_instance *inst;
624         pid_t pid;
625
626         inst = xzalloc(sizeof(*inst));
627
628         argv[0] = xasprintf("fsck.%s", type); /* 1 */
629         for (i = 0; i < num_args; i++)
630                 argv[i+1] = args[i]; /* num_args */
631         argc = num_args + 1;
632
633 #if DO_PROGRESS_INDICATOR
634         if (progress && !progress_active()) {
635                 if (strcmp(type, "ext2") == 0
636                  || strcmp(type, "ext3") == 0
637                 ) {
638                         argv[argc++] = xasprintf("-C%d", progress_fd); /* 1 */
639                         inst->flags |= FLAG_PROGRESS;
640                 }
641         }
642 #endif
643
644         argv[argc++] = xstrdup(device); /* 1 */
645         argv[argc] = NULL; /* 1 */
646
647         if (verbose || noexecute) {
648                 printf("[%s (%d) -- %s]", argv[0], num_running,
649                                         mntpt ? mntpt : device);
650                 for (i = 0; i < argc; i++)
651                         printf(" %s", argv[i]);
652                 bb_putchar('\n');
653         }
654
655         /* Fork and execute the correct program. */
656         pid = -1;
657         if (!noexecute) {
658                 pid = spawn(argv);
659                 if (pid < 0)
660                         bb_simple_perror_msg(argv[0]);
661         }
662
663         for (i = num_args+1; i < argc; i++)
664                 free(argv[i]);
665
666         inst->pid = pid;
667         inst->prog = argv[0];
668         inst->type = xstrdup(type);
669         inst->device = xstrdup(device);
670         inst->base_device = base_device(device);
671         inst->start_time = time(NULL);
672
673         /* Add to the list of running fsck's.
674          * (was adding to the end, but adding to the front is simpler...) */
675         inst->next = instance_list;
676         instance_list = inst;
677 }
678
679 /*
680  * Run the fsck program on a particular device
681  *
682  * If the type is specified using -t, and it isn't prefixed with "no"
683  * (as in "noext2") and only one filesystem type is specified, then
684  * use that type regardless of what is specified in /etc/fstab.
685  *
686  * If the type isn't specified by the user, then use either the type
687  * specified in /etc/fstab, or "auto".
688  */
689 static void fsck_device(struct fs_info *fs, int interactive)
690 {
691         const char *type;
692
693         if (strcmp(fs->type, "auto") != 0) {
694                 type = fs->type;
695                 if (verbose > 2)
696                         bb_info_msg("using filesystem type '%s' %s",
697                                         type, "from fstab");
698         } else if (fstype
699          && (fstype[0] != 'n' || fstype[1] != 'o') /* != "no" */
700          && strncmp(fstype, "opts=", 5) != 0
701          && strncmp(fstype, "loop", 4) != 0
702          && !strchr(fstype, ',')
703         ) {
704                 type = fstype;
705                 if (verbose > 2)
706                         bb_info_msg("using filesystem type '%s' %s",
707                                         type, "from -t");
708         } else {
709                 type = "auto";
710                 if (verbose > 2)
711                         bb_info_msg("using filesystem type '%s' %s",
712                                         type, "(default)");
713         }
714
715         num_running++;
716         execute(type, fs->device, fs->mountpt, interactive);
717 }
718
719 /*
720  * Returns TRUE if a partition on the same disk is already being
721  * checked.
722  */
723 static int device_already_active(char *device)
724 {
725         struct fsck_instance *inst;
726         char *base;
727
728         if (force_all_parallel)
729                 return 0;
730
731 #ifdef BASE_MD
732         /* Don't check a soft raid disk with any other disk */
733         if (instance_list
734          && (!strncmp(instance_list->device, BASE_MD, sizeof(BASE_MD)-1)
735              || !strncmp(device, BASE_MD, sizeof(BASE_MD)-1))
736         ) {
737                 return 1;
738         }
739 #endif
740
741         base = base_device(device);
742         /*
743          * If we don't know the base device, assume that the device is
744          * already active if there are any fsck instances running.
745          */
746         if (!base)
747                 return (instance_list != NULL);
748
749         for (inst = instance_list; inst; inst = inst->next) {
750                 if (!inst->base_device || !strcmp(base, inst->base_device)) {
751                         free(base);
752                         return 1;
753                 }
754         }
755
756         free(base);
757         return 0;
758 }
759
760 /*
761  * This function returns true if a particular option appears in a
762  * comma-delimited options list
763  */
764 static int opt_in_list(char *opt, char *optlist)
765 {
766         char *s;
767         int len;
768
769         if (!optlist)
770                 return 0;
771
772         len = strlen(opt);
773         s = optlist - 1;
774         while (1) {
775                 s = strstr(s + 1, opt);
776                 if (!s)
777                         return 0;
778                 /* neither "opt.." nor "xxx,opt.."? */
779                 if (s != optlist && s[-1] != ',')
780                         continue;
781                 /* neither "..opt" nor "..opt,xxx"? */
782                 if (s[len] != '\0' && s[len] != ',')
783                         continue;
784                 return 1;
785         }
786 }
787
788 /* See if the filesystem matches the criteria given by the -t option */
789 static int fs_match(struct fs_info *fs)
790 {
791         int n, ret, checked_type;
792         char *cp;
793
794         if (!fs_type_list)
795                 return 1;
796
797         ret = 0;
798         checked_type = 0;
799         n = 0;
800         while (1) {
801                 cp = fs_type_list[n];
802                 if (!cp)
803                         break;
804                 switch (fs_type_flag[n]) {
805                 case FS_TYPE_FLAG_NORMAL:
806                         checked_type++;
807                         if (strcmp(cp, fs->type) == 0)
808                                 ret = 1;
809                         break;
810                 case FS_TYPE_FLAG_NEGOPT:
811                         if (opt_in_list(cp, fs->opts))
812                                 return 0;
813                         break;
814                 case FS_TYPE_FLAG_OPT:
815                         if (!opt_in_list(cp, fs->opts))
816                                 return 0;
817                         break;
818                 }
819                 n++;
820         }
821         if (checked_type == 0)
822                 return 1;
823
824         return (fs_type_negated ? !ret : ret);
825 }
826
827 /* Check if we should ignore this filesystem. */
828 static int ignore(struct fs_info *fs)
829 {
830         /*
831          * If the pass number is 0, ignore it.
832          */
833         if (fs->passno == 0)
834                 return 1;
835
836         /*
837          * If a specific fstype is specified, and it doesn't match,
838          * ignore it.
839          */
840         if (!fs_match(fs))
841                 return 1;
842
843         /* Are we ignoring this type? */
844         if (index_in_strings(ignored_types, fs->type) >= 0)
845                 return 1;
846
847         /* We can and want to check this file system type. */
848         return 0;
849 }
850
851 /* Check all file systems, using the /etc/fstab table. */
852 static int check_all(void)
853 {
854         struct fs_info *fs;
855         int status = EXIT_OK;
856         smallint not_done_yet;
857         smallint pass_done;
858         int passno;
859
860         if (verbose)
861                 puts("Checking all filesystems");
862
863         /*
864          * Do an initial scan over the filesystem; mark filesystems
865          * which should be ignored as done, and resolve any "auto"
866          * filesystem types (done as a side-effect of calling ignore()).
867          */
868         for (fs = filesys_info; fs; fs = fs->next) {
869                 if (ignore(fs))
870                         fs->flags |= FLAG_DONE;
871         }
872
873         /*
874          * Find and check the root filesystem.
875          */
876         if (!parallel_root) {
877                 for (fs = filesys_info; fs; fs = fs->next) {
878                         if (LONE_CHAR(fs->mountpt, '/'))
879                                 break;
880                 }
881                 if (fs) {
882                         if (!skip_root && !ignore(fs)) {
883                                 fsck_device(fs, 1);
884                                 status |= wait_many(FLAG_WAIT_ALL);
885                                 if (status > EXIT_NONDESTRUCT)
886                                         return status;
887                         }
888                         fs->flags |= FLAG_DONE;
889                 }
890         }
891         /*
892          * This is for the bone-headed user who enters the root
893          * filesystem twice.  Skip root will skip all root entries.
894          */
895         if (skip_root)
896                 for (fs = filesys_info; fs; fs = fs->next)
897                         if (LONE_CHAR(fs->mountpt, '/'))
898                                 fs->flags |= FLAG_DONE;
899
900         not_done_yet = 1;
901         passno = 1;
902         while (not_done_yet) {
903                 not_done_yet = 0;
904                 pass_done = 1;
905
906                 for (fs = filesys_info; fs; fs = fs->next) {
907                         if (cancel_requested)
908                                 break;
909                         if (fs->flags & FLAG_DONE)
910                                 continue;
911                         /*
912                          * If the filesystem's pass number is higher
913                          * than the current pass number, then we don't
914                          * do it yet.
915                          */
916                         if (fs->passno > passno) {
917                                 not_done_yet = 1;
918                                 continue;
919                         }
920                         /*
921                          * If a filesystem on a particular device has
922                          * already been spawned, then we need to defer
923                          * this to another pass.
924                          */
925                         if (device_already_active(fs->device)) {
926                                 pass_done = 0;
927                                 continue;
928                         }
929                         /*
930                          * Spawn off the fsck process
931                          */
932                         fsck_device(fs, serialize);
933                         fs->flags |= FLAG_DONE;
934
935                         /*
936                          * Only do one filesystem at a time, or if we
937                          * have a limit on the number of fsck's extant
938                          * at one time, apply that limit.
939                          */
940                         if (serialize
941                          || (max_running && (num_running >= max_running))
942                         ) {
943                                 pass_done = 0;
944                                 break;
945                         }
946                 }
947                 if (cancel_requested)
948                         break;
949                 if (verbose > 1)
950                         printf("--waiting-- (pass %d)\n", passno);
951                 status |= wait_many(pass_done ? FLAG_WAIT_ALL :
952                                     FLAG_WAIT_ATLEAST_ONE);
953                 if (pass_done) {
954                         if (verbose > 1)
955                                 puts("----------------------------------");
956                         passno++;
957                 } else
958                         not_done_yet = 1;
959         }
960         kill_all_if_cancel_requested();
961         status |= wait_many(FLAG_WAIT_ATLEAST_ONE);
962         return status;
963 }
964
965 /*
966  * Deal with the fsck -t argument.
967  * Huh, for mount "-t novfat,nfs" means "neither vfat nor nfs"!
968  * Why here we require "-t novfat,nonfs" ??
969  */
970 static void compile_fs_type(char *fs_type)
971 {
972         char *s;
973         int num = 2;
974         smallint negate;
975
976         if (fs_type) {
977                 s = fs_type;
978                 while ((s = strchr(s, ','))) {
979                         num++;
980                         s++;
981                 }
982         }
983
984         fs_type_list = xzalloc(num * sizeof(fs_type_list[0]));
985         fs_type_flag = xzalloc(num * sizeof(fs_type_flag[0]));
986         fs_type_negated = -1; /* not yet known is it negated or not */
987
988         if (!fs_type)
989                 return;
990
991         num = 0;
992         s = fs_type;
993         while (1) {
994                 char *comma;
995
996                 negate = 0;
997                 if (s[0] == 'n' && s[1] == 'o') { /* "no.." */
998                         s += 2;
999                         negate = 1;
1000                 } else if (s[0] == '!') {
1001                         s++;
1002                         negate = 1;
1003                 }
1004
1005                 if (strcmp(s, "loop") == 0)
1006                         /* loop is really short-hand for opts=loop */
1007                         goto loop_special_case;
1008                 if (strncmp(s, "opts=", 5) == 0) {
1009                         s += 5;
1010  loop_special_case:
1011                         fs_type_flag[num] = negate ? FS_TYPE_FLAG_NEGOPT : FS_TYPE_FLAG_OPT;
1012                 } else {
1013                         if (fs_type_negated == -1)
1014                                 fs_type_negated = negate;
1015                         if (fs_type_negated != negate)
1016                                 bb_error_msg_and_die(
1017 "either all or none of the filesystem types passed to -t must be prefixed "
1018 "with 'no' or '!'");
1019                 }
1020                 comma = strchr(s, ',');
1021                 fs_type_list[num++] = comma ? xstrndup(s, comma-s) : xstrdup(s);
1022                 if (!comma)
1023                         break;
1024                 s = comma + 1;
1025         }
1026 }
1027
1028 static void parse_args(int argc, char **argv)
1029 {
1030         int i, j;
1031         char *arg, *tmp;
1032         char *options = NULL;
1033         int optpos = 0;
1034         int opts_for_fsck = 0;
1035
1036         /* in bss, so already zeroed
1037         num_devices = 0;
1038         num_args = 0;
1039         instance_list = NULL;
1040         */
1041
1042 /* TODO: getopt32 */
1043         for (i = 1; i < argc; i++) {
1044                 arg = argv[i];
1045
1046                 /* "/dev/blk" or "/path" or "UUID=xxx" or "LABEL=xxx" */
1047                 if ((arg[0] == '/' && !opts_for_fsck) || strchr(arg, '=')) {
1048 // FIXME: must check that arg is a blkdev, or resolve
1049 // "/path", "UUID=xxx" or "LABEL=xxx" into block device name
1050 // ("UUID=xxx"/"LABEL=xxx" can probably shifted to fsck.auto duties)
1051                         devices = xrealloc(devices, (num_devices+1) * sizeof(devices[0]));
1052                         devices[num_devices++] = xstrdup(arg);
1053                         continue;
1054                 }
1055
1056                 if (arg[0] != '-' || opts_for_fsck) {
1057                         args = xrealloc(args, (num_args+1) * sizeof(args[0]));
1058                         args[num_args++] = xstrdup(arg);
1059                         continue;
1060                 }
1061
1062                 for (j = 1; arg[j]; j++) {
1063                         if (opts_for_fsck) {
1064                                 optpos++;
1065                                 /* one extra for '\0' */
1066                                 options = xrealloc(options, optpos + 2);
1067                                 options[optpos] = arg[j];
1068                                 continue;
1069                         }
1070                         switch (arg[j]) {
1071                         case 'A':
1072                                 doall = 1;
1073                                 break;
1074 #if DO_PROGRESS_INDICATOR
1075                         case 'C':
1076                                 progress = 1;
1077                                 if (arg[++j]) { /* -Cn */
1078                                         progress_fd = xatoi_u(&arg[j]);
1079                                         goto next_arg;
1080                                 }
1081                                 /* -C n */
1082                                 progress_fd = xatoi_u(argv[++i]);
1083                                 goto next_arg;
1084 #endif
1085                         case 'V':
1086                                 verbose++;
1087                                 break;
1088                         case 'N':
1089                                 noexecute = 1;
1090                                 break;
1091                         case 'R':
1092                                 skip_root = 1;
1093                                 break;
1094                         case 'T':
1095                                 notitle = 1;
1096                                 break;
1097 /*                      case 'M':
1098                                 like_mount = 1;
1099                                 break; */
1100                         case 'P':
1101                                 parallel_root = 1;
1102                                 break;
1103                         case 's':
1104                                 serialize = 1;
1105                                 break;
1106                         case 't':
1107                                 if (fstype)
1108                                         bb_show_usage();
1109                                 if (arg[++j])
1110                                         tmp = &arg[j];
1111                                 else if (++i < argc)
1112                                         tmp = argv[i];
1113                                 else
1114                                         bb_show_usage();
1115                                 fstype = xstrdup(tmp);
1116                                 compile_fs_type(fstype);
1117                                 goto next_arg;
1118                         case '-':
1119                                 opts_for_fsck++;
1120                                 break;
1121                         case '?':
1122                                 bb_show_usage();
1123                                 break;
1124                         default:
1125                                 optpos++;
1126                                 /* one extra for '\0' */
1127                                 options = xrealloc(options, optpos + 2);
1128                                 options[optpos] = arg[j];
1129                                 break;
1130                         }
1131                 }
1132  next_arg:
1133                 if (optpos) {
1134                         options[0] = '-';
1135                         options[optpos + 1] = '\0';
1136                         args = xrealloc(args, (num_args+1) * sizeof(args[0]));
1137                         args[num_args++] = options;
1138                         optpos = 0;
1139                         options = NULL;
1140                 }
1141         }
1142         if (getenv("FSCK_FORCE_ALL_PARALLEL"))
1143                 force_all_parallel = 1;
1144         tmp = getenv("FSCK_MAX_INST");
1145         if (tmp)
1146                 max_running = xatoi(tmp);
1147 }
1148
1149 static void signal_cancel(int sig ATTRIBUTE_UNUSED)
1150 {
1151         cancel_requested = 1;
1152 }
1153
1154 int fsck_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
1155 int fsck_main(int argc, char **argv)
1156 {
1157         int i, status = 0;
1158         int interactive;
1159         const char *fstab;
1160         struct fs_info *fs;
1161         struct sigaction sa;
1162
1163         memset(&sa, 0, sizeof(sa));
1164         sa.sa_handler = signal_cancel;
1165         sigaction(SIGINT, &sa, 0);
1166         sigaction(SIGTERM, &sa, 0);
1167
1168         setbuf(stdout, NULL);
1169
1170         parse_args(argc, argv);
1171
1172         if (!notitle)
1173                 puts("fsck (busybox "BB_VER", "BB_BT")");
1174
1175         /* Even plain "fsck /dev/hda1" needs fstab to get fs type,
1176          * so we are scanning it anyway */
1177         fstab = getenv("FSTAB_FILE");
1178         if (!fstab)
1179                 fstab = "/etc/fstab";
1180         load_fs_info(fstab);
1181
1182         interactive = (num_devices == 1) | serialize;
1183
1184         /* If -A was specified ("check all"), do that! */
1185         if (doall)
1186                 return check_all();
1187
1188         if (num_devices == 0) {
1189                 serialize = 1;
1190                 interactive = 1;
1191                 return check_all();
1192         }
1193
1194         for (i = 0; i < num_devices; i++) {
1195                 if (cancel_requested) {
1196                         kill_all_if_cancel_requested();
1197                         break;
1198                 }
1199
1200                 fs = lookup(devices[i]);
1201                 if (!fs)
1202                         fs = create_fs_device(devices[i], 0, "auto", 0, -1, -1);
1203                 fsck_device(fs, interactive);
1204
1205                 if (serialize
1206                  || (max_running && (num_running >= max_running))
1207                 ) {
1208                         struct fsck_instance *inst;
1209
1210                         inst = wait_one(0);
1211                         if (inst) {
1212                                 status |= inst->exit_status;
1213                                 free_instance(inst);
1214                         }
1215                         if (verbose > 1)
1216                                 puts("----------------------------------");
1217                 }
1218         }
1219         status |= wait_many(FLAG_WAIT_ALL);
1220         return status;
1221 }