Whamcloud - gitweb
Document the resize_inode filesystem option in mke2fs man page
[tools/e2fsprogs.git] / misc / fsck.c
1 /*
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
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  *
22  * %Begin-Header%
23  * This file may be redistributed under the terms of the GNU Public
24  * License.
25  * %End-Header%
26  */
27
28 #include <sys/types.h>
29 #include <sys/wait.h>
30 #include <sys/signal.h>
31 #include <sys/stat.h>
32 #include <limits.h>
33 #include <stdio.h>
34 #include <ctype.h>
35 #include <string.h>
36 #include <time.h>
37 #if HAVE_STDLIB_H
38 #include <stdlib.h>
39 #endif
40 #if HAVE_ERRNO_H
41 #include <errno.h>
42 #endif
43 #if HAVE_PATHS_H
44 #include <paths.h>
45 #endif
46 #if HAVE_UNISTD_H
47 #include <unistd.h>
48 #endif
49 #if HAVE_ERRNO_H
50 #include <errno.h>
51 #endif
52 #if HAVE_MALLOC_H
53 #include <malloc.h>
54 #endif
55 #ifdef HAVE_SIGNAL_H
56 #include <signal.h>
57 #endif
58
59 #include "../version.h"
60 #include "nls-enable.h"
61 #include "fsck.h"
62 #include "blkid/blkid.h"
63
64 #ifndef _PATH_MNTTAB
65 #define _PATH_MNTTAB    "/etc/fstab"
66 #endif
67
68 static const char *ignored_types[] = {
69         "ignore",
70         "iso9660",
71         "nfs",
72         "proc",
73         "sw",
74         "swap",
75         "tmpfs",
76         "devpts",
77         NULL
78 };
79
80 static const char *really_wanted[] = {
81         "minix",
82         "ext2",
83         "ext3",
84         "jfs",
85         "reiserfs",
86         "xiafs",
87         "xfs",
88         NULL
89 };
90
91 #define BASE_MD "/dev/md"
92
93 /*
94  * Global variables for options
95  */
96 char *devices[MAX_DEVICES];
97 char *args[MAX_ARGS];
98 int num_devices, num_args;
99
100 int verbose = 0;
101 int doall = 0;
102 int noexecute = 0;
103 int serialize = 0;
104 int skip_root = 0;
105 int like_mount = 0;
106 int notitle = 0;
107 int parallel_root = 0;
108 int progress = 0;
109 int progress_fd = 0;
110 int force_all_parallel = 0;
111 int num_running = 0;
112 int max_running = 0;
113 volatile int cancel_requested = 0;
114 int kill_sent = 0;
115 char *progname;
116 char *fstype = NULL;
117 struct fs_info *filesys_info = NULL, *filesys_last = NULL;
118 struct fsck_instance *instance_list;
119 const char *fsck_prefix_path = "/sbin:/sbin/fs.d:/sbin/fs:/etc/fs:/etc";
120 char *fsck_path = 0;
121 blkid_cache cache = NULL;
122
123 static char *string_copy(const char *s)
124 {
125         char    *ret;
126
127         if (!s)
128                 return 0;
129         ret = malloc(strlen(s)+1);
130         if (ret)
131                 strcpy(ret, s);
132         return ret;
133 }
134
135 static int string_to_int(const char *s)
136 {
137         long l;
138         char *p;
139
140         l = strtol(s, &p, 0);
141         if (*p || l == LONG_MIN || l == LONG_MAX || l < 0 || l > INT_MAX)
142                 return -1;
143         else
144                 return (int) l;
145 }
146
147 static int ignore(struct fs_info *);
148
149 static char *skip_over_blank(char *cp)
150 {
151         while (*cp && isspace(*cp))
152                 cp++;
153         return cp;
154 }
155
156 static char *skip_over_word(char *cp)
157 {
158         while (*cp && !isspace(*cp))
159                 cp++;
160         return cp;
161 }
162
163 static void strip_line(char *line)
164 {
165         char    *p;
166
167         while (*line) {
168                 p = line + strlen(line) - 1;
169                 if ((*p == '\n') || (*p == '\r'))
170                         *p = 0;
171                 else
172                         break;
173         }
174 }
175
176 static char *parse_word(char **buf)
177 {
178         char *word, *next;
179
180         word = *buf;
181         if (*word == 0)
182                 return 0;
183
184         word = skip_over_blank(word);
185         next = skip_over_word(word);
186         if (*next)
187                 *next++ = 0;
188         *buf = next;
189         return word;
190 }
191
192 static void parse_escape(char *word)
193 {
194         char    *p, *q;
195         int     ac, i;
196
197         if (!word)
198                 return;
199
200         for (p = word, q = word; *p; p++, q++) {
201                 *q = *p;
202                 if (*p != '\\')
203                         continue;
204                 if (*++p == 0)
205                         break;
206                 if (*p == 't') {
207                         *q = '\t';
208                         continue;
209                 }
210                 if (*p == 'n') {
211                         *q = '\n';
212                         continue;
213                 }
214                 if (!isdigit(*p)) {
215                         *q = *p;
216                         continue;
217                 }
218                 ac = 0;
219                 for (i = 0; i < 3; i++, p++) {
220                         if (!isdigit(*p))
221                                 break;
222                         ac = (ac * 8) + (*p - '0');
223                 }
224                 *q = ac;
225                 p--;
226         }
227         *q = 0;
228 }
229
230 static void free_instance(struct fsck_instance *i)
231 {
232         if (i->prog)
233                 free(i->prog);
234         if (i->device)
235                 free(i->device);
236         if (i->base_device)
237                 free(i->base_device);
238         free(i);
239         return;
240 }
241
242 static struct fs_info *create_fs_device(const char *device, const char *mntpnt,
243                                         const char *type, const char *opts, 
244                                         int freq, int passno)
245 {
246         struct fs_info *fs;
247
248         if (!(fs = malloc(sizeof(struct fs_info))))
249                 return NULL;
250
251         fs->device = string_copy(device);
252         fs->mountpt = string_copy(mntpnt);
253         fs->type = string_copy(type);
254         fs->opts = string_copy(opts ? opts : "");
255         fs->freq = freq;
256         fs->passno = passno;
257         fs->flags = 0;
258         fs->next = NULL;
259
260         if (!filesys_info)
261                 filesys_info = fs;
262         else
263                 filesys_last->next = fs;
264         filesys_last = fs;
265
266         return fs;
267 }
268
269
270
271 static int parse_fstab_line(char *line, struct fs_info **ret_fs)
272 {
273         char    *dev, *device, *mntpnt, *type, *opts, *freq, *passno, *cp;
274         struct fs_info *fs;
275
276         *ret_fs = 0;
277         strip_line(line);
278         if ((cp = strchr(line, '#')))
279                 *cp = 0;        /* Ignore everything after the comment char */
280         cp = line;
281
282         device = parse_word(&cp);
283         mntpnt = parse_word(&cp);
284         type = parse_word(&cp);
285         opts = parse_word(&cp);
286         freq = parse_word(&cp);
287         passno = parse_word(&cp);
288
289         if (!device)
290                 return 0;       /* Allow blank lines */
291         
292         if (!mntpnt || !type)
293                 return -1;
294
295         parse_escape(device);
296         parse_escape(mntpnt);
297         parse_escape(type);
298         parse_escape(opts);
299         parse_escape(freq);
300         parse_escape(passno);
301
302         dev = blkid_get_devname(cache, device, NULL);
303         if (dev)
304                 device = dev;
305
306         if (strchr(type, ','))
307                 type = 0;
308
309         fs = create_fs_device(device, mntpnt, type ? type : "auto", opts,
310                               freq ? atoi(freq) : -1,
311                               passno ? atoi(passno) : -1);
312         if (dev)
313                 free(dev);
314            
315         if (!fs)
316                 return -1;
317         *ret_fs = fs;
318         return 0;
319 }
320
321 static void interpret_type(struct fs_info *fs)
322 {
323         char    *t;
324         
325         if (strcmp(fs->type, "auto") != 0)
326                 return;
327         t = blkid_get_tag_value(cache, "TYPE", fs->device);
328         if (t) {
329                 free(fs->type);
330                 fs->type = t;
331         }
332 }
333
334 /*
335  * Load the filesystem database from /etc/fstab
336  */
337 static void load_fs_info(const char *filename)
338 {
339         FILE    *f;
340         char    buf[1024];
341         int     lineno = 0;
342         int     old_fstab = 1;
343         struct fs_info *fs;
344
345         if ((f = fopen(filename, "r")) == NULL) {
346                 fprintf(stderr, _("WARNING: couldn't open %s: %s\n"),
347                         filename, strerror(errno));
348                 return;
349         }
350         while (!feof(f)) {
351                 lineno++;
352                 if (!fgets(buf, sizeof(buf), f))
353                         break;
354                 buf[sizeof(buf)-1] = 0;
355                 if (parse_fstab_line(buf, &fs) < 0) {
356                         fprintf(stderr, _("WARNING: bad format "
357                                 "on line %d of %s\n"), lineno, filename);
358                         continue;
359                 }
360                 if (!fs)
361                         continue;
362                 if (fs->passno < 0)
363                         fs->passno = 0;
364                 else
365                         old_fstab = 0;
366         }
367         
368         fclose(f);
369         
370         if (old_fstab) {
371                 fputs(_("\007\007\007"
372                 "WARNING: Your /etc/fstab does not contain the fsck passno\n"
373                 "       field.  I will kludge around things for you, but you\n"
374                 "       should fix your /etc/fstab file as soon as you can.\n\n"), stderr);
375                 
376                 for (fs = filesys_info; fs; fs = fs->next) {
377                         fs->passno = 1;
378                 }
379         }
380 }
381         
382 /* Lookup filesys in /etc/fstab and return the corresponding entry. */
383 static struct fs_info *lookup(char *filesys)
384 {
385         struct fs_info *fs;
386
387         /* No filesys name given. */
388         if (filesys == NULL)
389                 return NULL;
390
391         for (fs = filesys_info; fs; fs = fs->next) {
392                 if (!strcmp(filesys, fs->device) ||
393                     (fs->mountpt && !strcmp(filesys, fs->mountpt)))
394                         break;
395         }
396
397         return fs;
398 }
399
400 /* Find fsck program for a given fs type. */
401 static char *find_fsck(char *type)
402 {
403   char *s;
404   const char *tpl;
405   static char prog[256];
406   char *p = string_copy(fsck_path);
407   struct stat st;
408
409   /* Are we looking for a program or just a type? */
410   tpl = (strncmp(type, "fsck.", 5) ? "%s/fsck.%s" : "%s/%s");
411
412   for(s = strtok(p, ":"); s; s = strtok(NULL, ":")) {
413         sprintf(prog, tpl, s, type);
414         if (stat(prog, &st) == 0) break;
415   }
416   free(p);
417   return(s ? prog : NULL);
418 }
419
420 static int progress_active(NOARGS)
421 {
422         struct fsck_instance *inst;
423
424         for (inst = instance_list; inst; inst = inst->next) {
425                 if (inst->flags & FLAG_DONE)
426                         continue;
427                 if (inst->flags & FLAG_PROGRESS)
428                         return 1;
429         }
430         return 0;
431 }
432
433 /*
434  * Execute a particular fsck program, and link it into the list of
435  * child processes we are waiting for.
436  */
437 static int execute(const char *type, const char *device, const char *mntpt,
438                    int interactive)
439 {
440         char *s, *argv[80], prog[80];
441         int  argc, i;
442         struct fsck_instance *inst, *p;
443         pid_t   pid;
444
445         inst = malloc(sizeof(struct fsck_instance));
446         if (!inst)
447                 return ENOMEM;
448         memset(inst, 0, sizeof(struct fsck_instance));
449
450         sprintf(prog, "fsck.%s", type);
451         argv[0] = string_copy(prog);
452         argc = 1;
453         
454         for (i=0; i <num_args; i++)
455                 argv[argc++] = string_copy(args[i]);
456
457         if (progress && !progress_active()) {
458                 if ((strcmp(type, "ext2") == 0) ||
459                     (strcmp(type, "ext3") == 0)) {
460                         char tmp[80];
461                         snprintf(tmp, 80, "-C%d", progress_fd);
462                         argv[argc++] = string_copy(tmp);
463                         inst->flags |= FLAG_PROGRESS;
464                 }
465         }
466
467         argv[argc++] = string_copy(device);
468         argv[argc] = 0;
469
470         s = find_fsck(prog);
471         if (s == NULL) {
472                 fprintf(stderr, _("fsck: %s: not found\n"), prog);
473                 return ENOENT;
474         }
475
476         if (verbose || noexecute) {
477                 printf("[%s (%d) -- %s] ", s, num_running,
478                        mntpt ? mntpt : device);
479                 for (i=0; i < argc; i++)
480                         printf("%s ", argv[i]);
481                 printf("\n");
482         }
483         
484         /* Fork and execute the correct program. */
485         if (noexecute)
486                 pid = -1;
487         else if ((pid = fork()) < 0) {
488                 perror("fork");
489                 return errno;
490         } else if (pid == 0) {
491                 if (!interactive)
492                         close(0);
493                 (void) execv(s, argv);
494                 perror(argv[0]);
495                 exit(EXIT_ERROR);
496         }
497
498         for (i=0; i < argc; i++)
499                 free(argv[i]);
500         
501         inst->pid = pid;
502         inst->prog = string_copy(prog);
503         inst->type = string_copy(type);
504         inst->device = string_copy(device);
505         inst->base_device = base_device(device);
506         inst->start_time = time(0);
507         inst->next = NULL;
508
509         /*
510          * Find the end of the list, so we add the instance on at the end.
511          */
512         for (p = instance_list; p && p->next; p = p->next);
513
514         if (p)
515                 p->next = inst;
516         else
517                 instance_list = inst;
518         
519         return 0;
520 }
521
522 /*
523  * Send a signal to all outstanding fsck child processes
524  */
525 static int kill_all(int signum)
526 {
527         struct fsck_instance *inst;
528         int     n = 0;
529
530         for (inst = instance_list; inst; inst = inst->next) {
531                 if (inst->flags & FLAG_DONE)
532                         continue;
533                 kill(inst->pid, signum);
534                 n++;
535         }
536         return n;
537 }
538
539 /*
540  * Wait for one child process to exit; when it does, unlink it from
541  * the list of executing child processes, and return it.
542  */
543 static struct fsck_instance *wait_one(int flags)
544 {
545         int     status;
546         int     sig;
547         struct fsck_instance *inst, *inst2, *prev;
548         pid_t   pid;
549
550         if (!instance_list)
551                 return NULL;
552
553         if (noexecute) {
554                 inst = instance_list;
555                 prev = 0;
556 #ifdef RANDOM_DEBUG
557                 while (inst->next && (random() & 1)) {
558                         prev = inst;
559                         inst = inst->next;
560                 }
561 #endif
562                 inst->exit_status = 0;
563                 goto ret_inst;
564         }
565
566         /*
567          * gcc -Wall fails saving throw against stupidity
568          * (inst and prev are thought to be uninitialized variables)
569          */
570         inst = prev = NULL;
571         
572         do {
573                 pid = waitpid(-1, &status, flags);
574                 if (cancel_requested && !kill_sent) {
575                         kill_all(SIGTERM);
576                         kill_sent++;
577                 }
578                 if ((pid == 0) && (flags & WNOHANG))
579                         return NULL;
580                 if (pid < 0) {
581                         if ((errno == EINTR) || (errno == EAGAIN))
582                                 continue;
583                         if (errno == ECHILD) {
584                                 fprintf(stderr,
585                                         _("%s: wait: No more child process?!?\n"),
586                                         progname);
587                                 return NULL;
588                         }
589                         perror("wait");
590                         continue;
591                 }
592                 for (prev = 0, inst = instance_list;
593                      inst;
594                      prev = inst, inst = inst->next) {
595                         if (inst->pid == pid)
596                                 break;
597                 }
598         } while (!inst);
599
600         if (WIFEXITED(status)) 
601                 status = WEXITSTATUS(status);
602         else if (WIFSIGNALED(status)) {
603                 sig = WTERMSIG(status);
604                 if (sig == SIGINT) {
605                         status = EXIT_UNCORRECTED;
606                 } else {
607                         printf(_("Warning... %s for device %s exited "
608                                "with signal %d.\n"),
609                                inst->prog, inst->device, sig);
610                         status = EXIT_ERROR;
611                 }
612         } else {
613                 printf(_("%s %s: status is %x, should never happen.\n"),
614                        inst->prog, inst->device, status);
615                 status = EXIT_ERROR;
616         }
617         inst->exit_status = status;
618         if (progress && (inst->flags & FLAG_PROGRESS) &&
619             !progress_active()) {
620                 for (inst2 = instance_list; inst2; inst2 = inst2->next) {
621                         if (inst2->flags & FLAG_DONE)
622                                 continue;
623                         if (strcmp(inst2->type, "ext2") &&
624                             strcmp(inst2->type, "ext3"))
625                                 continue;
626                         /*
627                          * If we've just started the fsck, wait a tiny
628                          * bit before sending the kill, to give it
629                          * time to set up the signal handler
630                          */
631                         if (inst2->start_time < time(0)+2) {
632                                 if (fork() == 0) {
633                                         sleep(1);
634                                         kill(inst2->pid, SIGUSR1);
635                                         exit(0);
636                                 }
637                         } else
638                                 kill(inst2->pid, SIGUSR1);
639                         inst2->flags |= FLAG_PROGRESS;
640                         break;
641                 }
642         }
643 ret_inst:
644         if (prev)
645                 prev->next = inst->next;
646         else
647                 instance_list = inst->next;
648         if (verbose > 1)
649                 printf(_("Finished with %s (exit status %d)\n"),
650                        inst->device, inst->exit_status);
651         num_running--;
652         return inst;
653 }
654
655 #define FLAG_WAIT_ALL           0
656 #define FLAG_WAIT_ATLEAST_ONE   1
657 /*
658  * Wait until all executing child processes have exited; return the
659  * logical OR of all of their exit code values.
660  */
661 static int wait_many(int flags)
662 {
663         struct fsck_instance *inst;
664         int     global_status = 0;
665         int     wait_flags = 0;
666
667         while ((inst = wait_one(wait_flags))) {
668                 global_status |= inst->exit_status;
669                 free_instance(inst);
670 #ifdef RANDOM_DEBUG
671                 if (noexecute && (flags & WNOHANG) && !(random() % 3))
672                         break;
673 #endif
674                 if (flags & FLAG_WAIT_ATLEAST_ONE)
675                         wait_flags = WNOHANG;
676         }
677         return global_status;
678 }
679
680 /*
681  * Run the fsck program on a particular device
682  * 
683  * If the type is specified using -t, and it isn't prefixed with "no"
684  * (as in "noext2") and only one filesystem type is specified, then
685  * use that type regardless of what is specified in /etc/fstab.
686  * 
687  * If the type isn't specified by the user, then use either the type
688  * specified in /etc/fstab, or DEFAULT_FSTYPE.
689  */
690 static void fsck_device(struct fs_info *fs, int interactive)
691 {
692         const char *type;
693         int retval;
694
695         interpret_type(fs);
696
697         if (strcmp(fs->type, "auto") != 0)
698                 type = fs->type;
699         else if (fstype && strncmp(fstype, "no", 2) &&
700             strncmp(fstype, "opts=", 5) && strncmp(fstype, "loop", 4) && 
701             !strchr(fstype, ','))
702                 type = fstype;
703         else
704                 type = DEFAULT_FSTYPE;
705
706         num_running++;
707         retval = execute(type, fs->device, fs->mountpt, interactive);
708         if (retval) {
709                 fprintf(stderr, _("%s: Error %d while executing fsck.%s "
710                         "for %s\n"), progname, retval, type, fs->device);
711                 num_running--;
712         }
713 }
714
715
716 /*
717  * Deal with the fsck -t argument.
718  */
719 struct fs_type_compile {
720         char **list;
721         int *type;
722         int  negate;
723 } fs_type_compiled;
724
725 #define FS_TYPE_NORMAL  0
726 #define FS_TYPE_OPT     1
727 #define FS_TYPE_NEGOPT  2
728
729 static const char *fs_type_syntax_error =
730 N_("Either all or none of the filesystem types passed to -t must be prefixed\n"
731    "with 'no' or '!'.\n");
732
733 static void compile_fs_type(char *fs_type, struct fs_type_compile *cmp)
734 {
735         char    *cp, *list, *s;
736         int     num = 2;
737         int     negate, first_negate = 1;
738
739         if (fs_type) {
740                 for (cp=fs_type; *cp; cp++) {
741                         if (*cp == ',')
742                                 num++;
743                 }
744         }
745
746         cmp->list = malloc(num * sizeof(char *));
747         cmp->type = malloc(num * sizeof(int));
748         if (!cmp->list || !cmp->type) {
749                 fputs(_("Couldn't allocate memory for filesystem types\n"), 
750                       stderr);
751                 exit(EXIT_ERROR);
752         }
753         memset(cmp->list, 0, num * sizeof(char *));
754         memset(cmp->type, 0, num * sizeof(int));
755         cmp->negate = 0;
756
757         if (!fs_type)
758                 return;
759         
760         list = string_copy(fs_type);
761         num = 0;
762         s = strtok(list, ",");
763         while(s) {
764                 negate = 0;
765                 if (strncmp(s, "no", 2) == 0) {
766                         s += 2;
767                         negate = 1;
768                 } else if (*s == '!') {
769                         s++;
770                         negate = 1;
771                 }
772                 if (strcmp(s, "loop") == 0)
773                         /* loop is really short-hand for opts=loop */
774                         goto loop_special_case;
775                 else if (strncmp(s, "opts=", 5) == 0) {
776                         s += 5;
777                 loop_special_case:
778                         cmp->type[num] = negate ? FS_TYPE_NEGOPT : FS_TYPE_OPT;
779                 } else {
780                         if (first_negate) {
781                                 cmp->negate = negate;
782                                 first_negate = 0;
783                         }
784                         if ((negate && !cmp->negate) ||
785                             (!negate && cmp->negate)) {
786                                 fputs(_(fs_type_syntax_error), stderr);
787                                 exit(EXIT_USAGE);
788                         }
789                 }
790 #if 0
791                 printf("Adding %s to list (type %d).\n", s, cmp->type[num]);
792 #endif
793                 cmp->list[num++] = string_copy(s);
794                 s = strtok(NULL, ",");
795         }
796         free(list);
797 }
798
799 /*
800  * This function returns true if a particular option appears in a
801  * comma-delimited options list
802  */
803 static int opt_in_list(char *opt, char *optlist)
804 {
805         char    *list, *s;
806
807         if (!optlist)
808                 return 0;
809         list = string_copy(optlist);
810         
811         s = strtok(list, ",");
812         while(s) {
813                 if (strcmp(s, opt) == 0) {
814                         free(list);
815                         return 1;
816                 }
817                 s = strtok(NULL, ",");
818         }
819         free(list);
820         return 0;
821 }
822
823 /* See if the filesystem matches the criteria given by the -t option */
824 static int fs_match(struct fs_info *fs, struct fs_type_compile *cmp)
825 {
826         int n, ret = 0, checked_type = 0;
827         char *cp;
828
829         if (cmp->list == 0 || cmp->list[0] == 0)
830                 return 1;
831
832         for (n=0; (cp = cmp->list[n]); n++) {
833                 switch (cmp->type[n]) {
834                 case FS_TYPE_NORMAL:
835                         checked_type++;
836                         if (strcmp(cp, fs->type) == 0) {
837                                 ret = 1;
838                         }
839                         break;
840                 case FS_TYPE_NEGOPT:
841                         if (opt_in_list(cp, fs->opts))
842                                 return 0;
843                         break;
844                 case FS_TYPE_OPT:
845                         if (!opt_in_list(cp, fs->opts))
846                                 return 0;
847                         break;
848                 }
849         }
850         if (checked_type == 0)
851                 return 1;
852         return (cmp->negate ? !ret : ret);
853 }
854
855 /* Check if we should ignore this filesystem. */
856 static int ignore(struct fs_info *fs)
857 {
858         const char **ip;
859         int wanted = 0;
860
861         /*
862          * If the pass number is 0, ignore it.
863          */
864         if (fs->passno == 0)
865                 return 1;
866
867         interpret_type(fs);
868
869         /*
870          * If a specific fstype is specified, and it doesn't match,
871          * ignore it.
872          */
873         if (!fs_match(fs, &fs_type_compiled)) return 1;
874         
875         /* Are we ignoring this type? */
876         for(ip = ignored_types; *ip; ip++)
877                 if (strcmp(fs->type, *ip) == 0) return 1;
878
879         /* Do we really really want to check this fs? */
880         for(ip = really_wanted; *ip; ip++)
881                 if (strcmp(fs->type, *ip) == 0) {
882                         wanted = 1;
883                         break;
884                 }
885
886         /* See if the <fsck.fs> program is available. */
887         if (find_fsck(fs->type) == NULL) {
888                 if (wanted)
889                         fprintf(stderr, _("fsck: cannot check %s: fsck.%s not found\n"),
890                                 fs->device, fs->type);
891                 return 1;
892         }
893
894         /* We can and want to check this file system type. */
895         return 0;
896 }
897
898 /*
899  * Returns TRUE if a partition on the same disk is already being
900  * checked.
901  */
902 static int device_already_active(char *device)
903 {
904         struct fsck_instance *inst;
905         char *base;
906
907         if (force_all_parallel)
908                 return 0;
909
910 #ifdef BASE_MD
911         /* Don't check a soft raid disk with any other disk */
912         if (instance_list &&
913             (!strncmp(instance_list->device, BASE_MD, sizeof(BASE_MD)-1) ||
914              !strncmp(device, BASE_MD, sizeof(BASE_MD)-1)))
915                 return 1;
916 #endif
917
918         base = base_device(device);
919         /*
920          * If we don't know the base device, assume that the device is
921          * already active if there are any fsck instances running.
922          */
923         if (!base) 
924                 return (instance_list != 0);
925         for (inst = instance_list; inst; inst = inst->next) {
926                 if (!inst->base_device || !strcmp(base, inst->base_device)) {
927                         free(base);
928                         return 1;
929                 }
930         }
931         free(base);
932         return 0;
933 }
934
935 /* Check all file systems, using the /etc/fstab table. */
936 static int check_all(NOARGS)
937 {
938         struct fs_info *fs = NULL;
939         int status = EXIT_OK;
940         int not_done_yet = 1;
941         int passno = 1;
942         int pass_done;
943
944         if (verbose)
945                 fputs(_("Checking all file systems.\n"), stdout);
946
947         /*
948          * Do an initial scan over the filesystem; mark filesystems
949          * which should be ignored as done, and resolve any "auto"
950          * filesystem types (done as a side-effect of calling ignore()).
951          */
952         for (fs = filesys_info; fs; fs = fs->next) {
953                 if (ignore(fs))
954                         fs->flags |= FLAG_DONE;
955         }
956                 
957         /*
958          * Find and check the root filesystem.
959          */
960         if (!parallel_root) {
961                 for (fs = filesys_info; fs; fs = fs->next) {
962                         if (!strcmp(fs->mountpt, "/"))
963                                 break;
964                 }
965                 if (fs) {
966                         if (!skip_root && !ignore(fs)) {
967                                 fsck_device(fs, 1);
968                                 status |= wait_many(FLAG_WAIT_ALL);
969                                 if (status > EXIT_NONDESTRUCT)
970                                         return status;
971                         }
972                         fs->flags |= FLAG_DONE;
973                 }
974         }
975         /*
976          * This is for the bone-headed user who enters the root
977          * filesystem twice.  Skip root will skep all root entries.
978          */
979         if (skip_root)
980                 for (fs = filesys_info; fs; fs = fs->next)
981                         if (!strcmp(fs->mountpt, "/"))
982                                 fs->flags |= FLAG_DONE;
983
984         while (not_done_yet) {
985                 not_done_yet = 0;
986                 pass_done = 1;
987
988                 for (fs = filesys_info; fs; fs = fs->next) {
989                         if (cancel_requested)
990                                 break;
991                         if (fs->flags & FLAG_DONE)
992                                 continue;
993                         /*
994                          * If the filesystem's pass number is higher
995                          * than the current pass number, then we don't
996                          * do it yet.
997                          */
998                         if (fs->passno > passno) {
999                                 not_done_yet++;
1000                                 continue;
1001                         }
1002                         /*
1003                          * If a filesystem on a particular device has
1004                          * already been spawned, then we need to defer
1005                          * this to another pass.
1006                          */
1007                         if (device_already_active(fs->device)) {
1008                                 pass_done = 0;
1009                                 continue;
1010                         }
1011                         /*
1012                          * Spawn off the fsck process
1013                          */
1014                         fsck_device(fs, serialize);
1015                         fs->flags |= FLAG_DONE;
1016
1017                         /*
1018                          * Only do one filesystem at a time, or if we
1019                          * have a limit on the number of fsck's extant
1020                          * at one time, apply that limit.
1021                          */
1022                         if (serialize ||
1023                             (max_running && (num_running >= max_running))) {
1024                                 pass_done = 0;
1025                                 break;
1026                         }
1027                 }
1028                 if (cancel_requested)
1029                         break;
1030                 if (verbose > 1)
1031                         printf(_("--waiting-- (pass %d)\n"), passno);
1032                 status |= wait_many(pass_done ? FLAG_WAIT_ALL :
1033                                     FLAG_WAIT_ATLEAST_ONE);
1034                 if (pass_done) {
1035                         if (verbose > 1) 
1036                                 printf("----------------------------------\n");
1037                         passno++;
1038                 } else
1039                         not_done_yet++;
1040         }
1041         if (cancel_requested && !kill_sent) {
1042                 kill_all(SIGTERM);
1043                 kill_sent++;
1044         }
1045         status |= wait_many(FLAG_WAIT_ATLEAST_ONE);
1046         return status;
1047 }
1048
1049 static void usage(NOARGS)
1050 {
1051         fputs(_("Usage: fsck [-ANPRTV] [ -C [ fd ] ] [-t fstype] [fs-options] [filesys ...]\n"), stderr);
1052         exit(EXIT_USAGE);
1053 }
1054
1055 #ifdef HAVE_SIGNAL_H
1056 static void signal_cancel(int sig FSCK_ATTR((unused)))
1057 {
1058         cancel_requested++;
1059 }
1060 #endif
1061
1062 static void PRS(int argc, char *argv[])
1063 {
1064         int     i, j;
1065         char    *arg, *dev, *tmp = 0;
1066         char    options[128];
1067         int     opt = 0;
1068         int     opts_for_fsck = 0;
1069 #ifdef HAVE_SIGNAL_H
1070         struct sigaction        sa;
1071
1072         /*
1073          * Set up signal action
1074          */
1075         memset(&sa, 0, sizeof(struct sigaction));
1076         sa.sa_handler = signal_cancel;
1077         sigaction(SIGINT, &sa, 0);
1078         sigaction(SIGTERM, &sa, 0);
1079 #endif
1080         
1081         num_devices = 0;
1082         num_args = 0;
1083         instance_list = 0;
1084
1085         progname = argv[0];
1086
1087         for (i=1; i < argc; i++) {
1088                 arg = argv[i];
1089                 if (!arg)
1090                         continue;
1091                 if ((arg[0] == '/' && !opts_for_fsck) || strchr(arg, '=')) {
1092                         if (num_devices >= MAX_DEVICES) {
1093                                 fprintf(stderr, _("%s: too many devices\n"),
1094                                         progname);
1095                                 exit(EXIT_ERROR);
1096                         }
1097                         dev = blkid_get_devname(cache, arg, NULL);
1098                         if (!dev && strchr(arg, '=')) {
1099                                 /*
1100                                  * Check to see if we failed because
1101                                  * /proc/partitions isn't found.
1102                                  */
1103                                 if (access("/proc/partitions", R_OK) < 0) {
1104                                         fprintf(stderr, "Couldn't open /proc/partitions: %s\n",
1105                                                 strerror(errno));
1106                                         fprintf(stderr, "Is /proc mounted?\n");
1107                                         exit(EXIT_ERROR);
1108                                 }
1109                                 /*
1110                                  * Check to see if this is because
1111                                  * we're not running as root
1112                                  */
1113                                 if (geteuid())
1114                                         fprintf(stderr,
1115                 "Must be root to scan for matching filesystems: %s\n", arg);
1116                                 else
1117                                         fprintf(stderr,
1118                 "Couldn't find matching filesystem: %s\n", arg);
1119                                 exit(EXIT_ERROR);
1120                         }
1121                         devices[num_devices++] = dev ? dev : string_copy(arg);
1122                         continue;
1123                 }
1124                 if (arg[0] != '-' || opts_for_fsck) {
1125                         if (num_args >= MAX_ARGS) {
1126                                 fprintf(stderr, _("%s: too many arguments\n"),
1127                                         progname);
1128                                 exit(EXIT_ERROR);
1129                         }
1130                         args[num_args++] = string_copy(arg);
1131                         continue;
1132                 }
1133                 for (j=1; arg[j]; j++) {
1134                         if (opts_for_fsck) {
1135                                 options[++opt] = arg[j];
1136                                 continue;
1137                         }
1138                         switch (arg[j]) {
1139                         case 'A':
1140                                 doall++;
1141                                 break;
1142                         case 'C':
1143                                 progress++;
1144                                 if (arg[j+1]) {
1145                                         progress_fd = string_to_int(arg+j+1);
1146                                         if (progress_fd < 0)
1147                                                 progress_fd = 0;
1148                                         else
1149                                                 goto next_arg;
1150                                 } else if ((i+1) < argc && 
1151                                            !strncmp(argv[i+1], "-", 1) == 0) {
1152                                         progress_fd = string_to_int(argv[i]);
1153                                         if (progress_fd < 0)
1154                                                 progress_fd = 0;
1155                                         else {
1156                                                 goto next_arg;
1157                                                 i++;
1158                                         }
1159                                 }
1160                                 break;
1161                         case 'V':
1162                                 verbose++;
1163                                 break;
1164                         case 'N':
1165                                 noexecute++;
1166                                 break;
1167                         case 'R':
1168                                 skip_root++;
1169                                 break;
1170                         case 'T':
1171                                 notitle++;
1172                                 break;
1173                         case 'M':
1174                                 like_mount++;
1175                                 break;
1176                         case 'P':
1177                                 parallel_root++;
1178                                 break;
1179                         case 's':
1180                                 serialize++;
1181                                 break;
1182                         case 't':
1183                                 tmp = 0;
1184                                 if (fstype)
1185                                         usage();
1186                                 if (arg[j+1])
1187                                         tmp = arg+j+1;
1188                                 else if ((i+1) < argc)
1189                                         tmp = argv[++i];
1190                                 else
1191                                         usage();
1192                                 fstype = string_copy(tmp);
1193                                 compile_fs_type(fstype, &fs_type_compiled);
1194                                 goto next_arg;
1195                         case '-':
1196                                 opts_for_fsck++;
1197                                 break;
1198                         case '?':
1199                                 usage();
1200                                 break;
1201                         default:
1202                                 options[++opt] = arg[j];
1203                                 break;
1204                         }
1205                 }
1206         next_arg:
1207                 if (opt) {
1208                         options[0] = '-';
1209                         options[++opt] = '\0';
1210                         if (num_args >= MAX_ARGS) {
1211                                 fprintf(stderr,
1212                                         _("%s: too many arguments\n"),
1213                                         progname);
1214                                 exit(EXIT_ERROR);
1215                         }
1216                         args[num_args++] = string_copy(options);
1217                         opt = 0;
1218                 }
1219         }
1220         if (getenv("FSCK_FORCE_ALL_PARALLEL"))
1221                 force_all_parallel++;
1222         if ((tmp = getenv("FSCK_MAX_INST")))
1223             max_running = atoi(tmp);
1224 }
1225
1226 int main(int argc, char *argv[])
1227 {
1228         int i, status = 0;
1229         int interactive = 0;
1230         char *oldpath = getenv("PATH");
1231         const char *fstab;
1232         struct fs_info *fs;
1233
1234         setvbuf(stdout, NULL, _IONBF, BUFSIZ);
1235         setvbuf(stderr, NULL, _IONBF, BUFSIZ);
1236
1237 #ifdef ENABLE_NLS
1238         setlocale(LC_MESSAGES, "");
1239         setlocale(LC_CTYPE, "");
1240         bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
1241         textdomain(NLS_CAT_NAME);
1242 #endif
1243         blkid_get_cache(&cache, NULL);
1244         PRS(argc, argv);
1245
1246         if (!notitle)
1247                 printf("fsck %s (%s)\n", E2FSPROGS_VERSION, E2FSPROGS_DATE);
1248
1249         fstab = getenv("FSTAB_FILE");
1250         if (!fstab)
1251                 fstab = _PATH_MNTTAB;
1252         load_fs_info(fstab);
1253
1254         /* Update our search path to include uncommon directories. */
1255         if (oldpath) {
1256                 fsck_path = malloc (strlen (fsck_prefix_path) + 1 +
1257                                     strlen (oldpath) + 1);
1258                 if (!fsck_path) {
1259                         fprintf(stderr, "%s: Unable to allocate memory for fsck_path\n", progname);
1260                         exit(EXIT_ERROR);
1261                 }
1262                 strcpy (fsck_path, fsck_prefix_path);
1263                 strcat (fsck_path, ":");
1264                 strcat (fsck_path, oldpath);
1265         } else {
1266                 fsck_path = string_copy(fsck_prefix_path);
1267         }
1268         
1269         if ((num_devices == 1) || (serialize))
1270                 interactive = 1;
1271
1272         /* If -A was specified ("check all"), do that! */
1273         if (doall)
1274                 return check_all();
1275
1276         if (num_devices == 0) {
1277                 serialize++;
1278                 interactive++;
1279                 return check_all();
1280         }
1281         for (i = 0 ; i < num_devices; i++) {
1282                 if (cancel_requested) {
1283                         if (!kill_sent) {
1284                                 kill_all(SIGTERM);
1285                                 kill_sent++;
1286                         }
1287                         break;
1288                 }
1289                 fs = lookup(devices[i]);
1290                 if (!fs) {
1291                         fs = create_fs_device(devices[i], 0, "auto",
1292                                               0, -1, -1);
1293                         if (!fs)
1294                                 continue;
1295                 }
1296                 fsck_device(fs, interactive);
1297                 if (serialize ||
1298                     (max_running && (num_running >= max_running))) {
1299                         struct fsck_instance *inst;
1300
1301                         inst = wait_one(0);
1302                         if (inst) {
1303                                 status |= inst->exit_status;
1304                                 free_instance(inst);
1305                         }
1306                         if (verbose > 1) 
1307                                 printf("----------------------------------\n");
1308                 }
1309         }
1310         status |= wait_many(FLAG_WAIT_ALL);
1311         free(fsck_path);
1312         blkid_put_cache(cache);
1313         return status;
1314 }