c3c493fd2fe8345bf86f488b6dd4712132a08afc
[oweals/busybox.git] / util-linux / fsck_minix.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * fsck.c - a file system consistency checker for Linux.
4  *
5  * (C) 1991, 1992 Linus Torvalds. This file may be redistributed
6  * as per the GNU copyleft.
7  */
8
9 /*
10  * 09.11.91  -  made the first rudimetary functions
11  *
12  * 10.11.91  -  updated, does checking, no repairs yet.
13  *              Sent out to the mailing-list for testing.
14  *
15  * 14.11.91  -  Testing seems to have gone well. Added some
16  *              correction-code, and changed some functions.
17  *
18  * 15.11.91  -  More correction code. Hopefully it notices most
19  *              cases now, and tries to do something about them.
20  *
21  * 16.11.91  -  More corrections (thanks to Mika Jalava). Most
22  *              things seem to work now. Yeah, sure.
23  *
24  *
25  * 19.04.92  -  Had to start over again from this old version, as a
26  *              kernel bug ate my enhanced fsck in february.
27  *
28  * 28.02.93  -  added support for different directory entry sizes..
29  *
30  * Sat Mar  6 18:59:42 1993, faith@cs.unc.edu: Output namelen with
31  *                           super-block information
32  *
33  * Sat Oct  9 11:17:11 1993, faith@cs.unc.edu: make exit status conform
34  *                           to that required by fsutil
35  *
36  * Mon Jan  3 11:06:52 1994 - Dr. Wettstein (greg%wind.uucp@plains.nodak.edu)
37  *                            Added support for file system valid flag.  Also
38  *                            added program_version variable and output of
39  *                            program name and version number when program
40  *                            is executed.
41  *
42  * 30.10.94 - added support for v2 filesystem
43  *            (Andreas Schwab, schwab@issan.informatik.uni-dortmund.de)
44  *
45  * 10.12.94  -  added test to prevent checking of mounted fs adapted
46  *              from Theodore Ts'o's (tytso@athena.mit.edu) e2fsck
47  *              program.  (Daniel Quinlan, quinlan@yggdrasil.com)
48  *
49  * 01.07.96  - Fixed the v2 fs stuff to use the right #defines and such
50  *             for modern libcs (janl@math.uio.no, Nicolai Langfeldt)
51  *
52  * 02.07.96  - Added C bit fiddling routines from rmk@ecs.soton.ac.uk 
53  *             (Russell King).  He made them for ARM.  It would seem
54  *             that the ARM is powerful enough to do this in C whereas
55  *             i386 and m64k must use assembly to get it fast >:-)
56  *             This should make minix fsck systemindependent.
57  *             (janl@math.uio.no, Nicolai Langfeldt)
58  *
59  * 04.11.96  - Added minor fixes from Andreas Schwab to avoid compiler
60  *             warnings.  Added mc68k bitops from 
61  *             Joerg Dorchain <dorchain@mpi-sb.mpg.de>.
62  *
63  * 06.11.96  - Added v2 code submitted by Joerg Dorchain, but written by
64  *             Andreas Schwab.
65  *
66  * 1999-02-22 Arkadiusz Mi¶kiewicz <misiek@misiek.eu.org>
67  * - added Native Language Support
68  *
69  *
70  * I've had no time to add comments - hopefully the function names
71  * are comments enough. As with all file system checkers, this assumes
72  * the file system is quiescent - don't use it on a mounted device
73  * unless you can be sure nobody is writing to it (and remember that the
74  * kernel can write to it when it searches for files).
75  *
76  * Usuage: fsck [-larvsm] device
77  *      -l for a listing of all the filenames
78  *      -a for automatic repairs (not implemented)
79  *      -r for repairs (interactive) (not implemented)
80  *      -v for verbose (tells how many files)
81  *      -s for super-block info
82  *      -m for minix-like "mode not cleared" warnings
83  *      -f force filesystem check even if filesystem marked as valid
84  *
85  * The device may be a block device or a image of one, but this isn't
86  * enforced (but it's not much fun on a character device :-). 
87  */
88
89 #include "internal.h"
90 #include <stdio.h>
91 #include <errno.h>
92 #include <unistd.h>
93 #include <string.h>
94 #include <fcntl.h>
95 #include <ctype.h>
96 #include <stdlib.h>
97 #include <termios.h>
98 #include <mntent.h>
99 #include <sys/stat.h>
100 #include <sys/param.h>
101
102  
103  typedef unsigned char u8;
104 typedef unsigned short u16;
105 typedef unsigned int u32;
106
107
108 #define MINIX_ROOT_INO 1
109 #define MINIX_LINK_MAX  250
110 #define MINIX2_LINK_MAX 65530
111
112 #define MINIX_I_MAP_SLOTS       8
113 #define MINIX_Z_MAP_SLOTS       64
114 #define MINIX_SUPER_MAGIC       0x137F          /* original minix fs */
115 #define MINIX_SUPER_MAGIC2      0x138F          /* minix fs, 30 char names */
116 #define MINIX2_SUPER_MAGIC      0x2468          /* minix V2 fs */
117 #define MINIX2_SUPER_MAGIC2     0x2478          /* minix V2 fs, 30 char names */
118 #define MINIX_VALID_FS          0x0001          /* Clean fs. */
119 #define MINIX_ERROR_FS          0x0002          /* fs has errors. */
120
121 #define MINIX_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix_inode)))
122 #define MINIX2_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix2_inode)))
123
124 #define MINIX_V1                0x0001          /* original minix fs */
125 #define MINIX_V2                0x0002          /* minix V2 fs */
126
127 #define INODE_VERSION(inode)    inode->i_sb->u.minix_sb.s_version
128
129 /*
130  * This is the original minix inode layout on disk.
131  * Note the 8-bit gid and atime and ctime.
132  */
133 struct minix_inode {
134         u16 i_mode;
135         u16 i_uid;
136         u32 i_size;
137         u32 i_time;
138         u8  i_gid;
139         u8  i_nlinks;
140         u16 i_zone[9];
141 };
142
143 /*
144  * The new minix inode has all the time entries, as well as
145  * long block numbers and a third indirect block (7+1+1+1
146  * instead of 7+1+1). Also, some previously 8-bit values are
147  * now 16-bit. The inode is now 64 bytes instead of 32.
148  */
149 struct minix2_inode {
150         u16 i_mode;
151         u16 i_nlinks;
152         u16 i_uid;
153         u16 i_gid;
154         u32 i_size;
155         u32 i_atime;
156         u32 i_mtime;
157         u32 i_ctime;
158         u32 i_zone[10];
159 };
160
161 /*
162  * minix super-block data on disk
163  */
164 struct minix_super_block {
165         u16 s_ninodes;
166         u16 s_nzones;
167         u16 s_imap_blocks;
168         u16 s_zmap_blocks;
169         u16 s_firstdatazone;
170         u16 s_log_zone_size;
171         u32 s_max_size;
172         u16 s_magic;
173         u16 s_state;
174         u32 s_zones;
175 };
176
177 struct minix_dir_entry {
178         u16 inode;
179         char name[0];
180 };
181
182 #define BLOCK_SIZE_BITS 10
183 #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)
184
185 #define NAME_MAX         255   /* # chars in a file name */
186
187 #define MINIX_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix_inode)))
188
189 #define MINIX_VALID_FS               0x0001          /* Clean fs. */
190 #define MINIX_ERROR_FS               0x0002          /* fs has errors. */
191
192 #define MINIX_SUPER_MAGIC    0x137F          /* original minix fs */
193 #define MINIX_SUPER_MAGIC2   0x138F          /* minix fs, 30 char names */
194
195 #ifndef BLKGETSIZE
196 #define BLKGETSIZE _IO(0x12,96)    /* return device size */
197 #endif
198
199 #ifndef __linux__
200 #define volatile
201 #endif
202
203 #define ROOT_INO 1
204
205 #define UPPER(size,n) ((size+((n)-1))/(n))
206 #define INODE_SIZE (sizeof(struct minix_inode))
207 #ifdef BB_FEATURE_MINIX2
208 #define INODE_SIZE2 (sizeof(struct minix2_inode))
209 #define INODE_BLOCKS UPPER(INODES, (version2 ? MINIX2_INODES_PER_BLOCK \
210                                     : MINIX_INODES_PER_BLOCK))
211 #else
212 #define INODE_BLOCKS UPPER(INODES, (MINIX_INODES_PER_BLOCK))
213 #endif
214 #define INODE_BUFFER_SIZE (INODE_BLOCKS * BLOCK_SIZE)
215
216 #define BITS_PER_BLOCK (BLOCK_SIZE<<3)
217
218 static char *program_version = "1.2 - 11/11/96";
219 static char *device_name = NULL;
220 static int IN;
221 static int repair = 0, automatic = 0, verbose = 0, list = 0, show =
222         0, warn_mode = 0, force = 0;
223 static int directory = 0, regular = 0, blockdev = 0, chardev = 0, links =
224         0, symlinks = 0, total = 0;
225
226 static int changed = 0;                 /* flags if the filesystem has been changed */
227 static int errors_uncorrected = 0;      /* flag if some error was not corrected */
228 static int dirsize = 16;
229 static int namelen = 14;
230 static int version2 = 0;
231 static struct termios termios;
232 static int termios_set = 0;
233
234 /* File-name data */
235 #define MAX_DEPTH 32
236 static int name_depth = 0;
237 // static char name_list[MAX_DEPTH][BUFSIZ + 1];
238 static char **name_list = NULL;
239
240 static char *inode_buffer = NULL;
241
242 #define Inode (((struct minix_inode *) inode_buffer)-1)
243 #define Inode2 (((struct minix2_inode *) inode_buffer)-1)
244 static char super_block_buffer[BLOCK_SIZE];
245
246 #define Super (*(struct minix_super_block *)super_block_buffer)
247 #define INODES ((unsigned long)Super.s_ninodes)
248 #ifdef BB_FEATURE_MINIX2
249 #define ZONES ((unsigned long)(version2 ? Super.s_zones : Super.s_nzones))
250 #else
251 #define ZONES ((unsigned long)(Super.s_nzones))
252 #endif
253 #define IMAPS ((unsigned long)Super.s_imap_blocks)
254 #define ZMAPS ((unsigned long)Super.s_zmap_blocks)
255 #define FIRSTZONE ((unsigned long)Super.s_firstdatazone)
256 #define ZONESIZE ((unsigned long)Super.s_log_zone_size)
257 #define MAXSIZE ((unsigned long)Super.s_max_size)
258 #define MAGIC (Super.s_magic)
259 #define NORM_FIRSTZONE (2+IMAPS+ZMAPS+INODE_BLOCKS)
260
261 static char *inode_map;
262 static char *zone_map;
263
264 static unsigned char *inode_count = NULL;
265 static unsigned char *zone_count = NULL;
266
267 static void recursive_check(unsigned int ino);
268 #ifdef BB_FEATURE_MINIX2
269 static void recursive_check2(unsigned int ino);
270 #endif
271
272 #define inode_in_use(x) (isset(inode_map,(x)))
273 #define zone_in_use(x) (isset(zone_map,(x)-FIRSTZONE+1))
274
275 #define mark_inode(x) (setbit(inode_map,(x)),changed=1)
276 #define unmark_inode(x) (clrbit(inode_map,(x)),changed=1)
277
278 #define mark_zone(x) (setbit(zone_map,(x)-FIRSTZONE+1),changed=1)
279 #define unmark_zone(x) (clrbit(zone_map,(x)-FIRSTZONE+1),changed=1)
280
281 static void leave(int) __attribute__ ((noreturn));
282 static void leave(int status)
283 {
284         if (termios_set)
285                 tcsetattr(0, TCSANOW, &termios);
286         exit(status);
287 }
288
289 static void show_usage(void)
290 {
291         usage(fsck_minix_usage);
292 }
293
294 static void die(const char *str)
295 {
296         errorMsg("%s\n", str);
297         leave(8);
298 }
299
300 /*
301  * This simply goes through the file-name data and prints out the
302  * current file.
303  */
304 static void print_current_name(void)
305 {
306         int i = 0;
307
308         while (i < name_depth)
309                 printf("/%.*s", namelen, name_list[i++]);
310         if (i == 0)
311                 printf("/");
312 }
313
314 static int ask(const char *string, int def)
315 {
316         int c;
317
318         if (!repair) {
319                 printf("\n");
320                 errors_uncorrected = 1;
321                 return 0;
322         }
323         if (automatic) {
324                 printf("\n");
325                 if (!def)
326                         errors_uncorrected = 1;
327                 return def;
328         }
329         printf(def ? "%s (y/n)? " : "%s (n/y)? ", string);
330         for (;;) {
331                 fflush(stdout);
332                 if ((c = getchar()) == EOF) {
333                         if (!def)
334                                 errors_uncorrected = 1;
335                         return def;
336                 }
337                 c = toupper(c);
338                 if (c == 'Y') {
339                         def = 1;
340                         break;
341                 } else if (c == 'N') {
342                         def = 0;
343                         break;
344                 } else if (c == ' ' || c == '\n')
345                         break;
346         }
347         if (def)
348                 printf("y\n");
349         else {
350                 printf("n\n");
351                 errors_uncorrected = 1;
352         }
353         return def;
354 }
355
356 /*
357  * Make certain that we aren't checking a filesystem that is on a
358  * mounted partition.  Code adapted from e2fsck, Copyright (C) 1993,
359  * 1994 Theodore Ts'o.  Also licensed under GPL.
360  */
361 static void check_mount(void)
362 {
363         FILE *f;
364         struct mntent *mnt;
365         int cont;
366         int fd;
367
368         if ((f = setmntent(MOUNTED, "r")) == NULL)
369                 return;
370         while ((mnt = getmntent(f)) != NULL)
371                 if (strcmp(device_name, mnt->mnt_fsname) == 0)
372                         break;
373         endmntent(f);
374         if (!mnt)
375                 return;
376
377         /*
378          * If the root is mounted read-only, then /etc/mtab is
379          * probably not correct; so we won't issue a warning based on
380          * it.
381          */
382         fd = open(MOUNTED, O_RDWR);
383         if (fd < 0 && errno == EROFS)
384                 return;
385         else
386                 close(fd);
387
388         printf("%s is mounted.   ", device_name);
389         if (isatty(0) && isatty(1))
390                 cont = ask("Do you really want to continue", 0);
391         else
392                 cont = 0;
393         if (!cont) {
394                 printf("check aborted.\n");
395                 exit(0);
396         }
397         return;
398 }
399
400 /*
401  * check_zone_nr checks to see that *nr is a valid zone nr. If it
402  * isn't, it will possibly be repaired. Check_zone_nr sets *corrected
403  * if an error was corrected, and returns the zone (0 for no zone
404  * or a bad zone-number).
405  */
406 static int check_zone_nr(unsigned short *nr, int *corrected)
407 {
408         if (!*nr)
409                 return 0;
410         if (*nr < FIRSTZONE)
411                 printf("Zone nr < FIRSTZONE in file `");
412         else if (*nr >= ZONES)
413                 printf("Zone nr >= ZONES in file `");
414         else
415                 return *nr;
416         print_current_name();
417         printf("'.");
418         if (ask("Remove block", 1)) {
419                 *nr = 0;
420                 *corrected = 1;
421         }
422         return 0;
423 }
424
425 #ifdef BB_FEATURE_MINIX2
426 static int check_zone_nr2(unsigned int *nr, int *corrected)
427 {
428         if (!*nr)
429                 return 0;
430         if (*nr < FIRSTZONE)
431                 printf("Zone nr < FIRSTZONE in file `");
432         else if (*nr >= ZONES)
433                 printf("Zone nr >= ZONES in file `");
434         else
435                 return *nr;
436         print_current_name();
437         printf("'.");
438         if (ask("Remove block", 1)) {
439                 *nr = 0;
440                 *corrected = 1;
441         }
442         return 0;
443 }
444 #endif
445
446 /*
447  * read-block reads block nr into the buffer at addr.
448  */
449 static void read_block(unsigned int nr, char *addr)
450 {
451         if (!nr) {
452                 memset(addr, 0, BLOCK_SIZE);
453                 return;
454         }
455         if (BLOCK_SIZE * nr != lseek(IN, BLOCK_SIZE * nr, SEEK_SET)) {
456                 printf("Read error: unable to seek to block in file '");
457                 print_current_name();
458                 printf("'\n");
459                 memset(addr, 0, BLOCK_SIZE);
460                 errors_uncorrected = 1;
461         } else if (BLOCK_SIZE != read(IN, addr, BLOCK_SIZE)) {
462                 printf("Read error: bad block in file '");
463                 print_current_name();
464                 printf("'\n");
465                 memset(addr, 0, BLOCK_SIZE);
466                 errors_uncorrected = 1;
467         }
468 }
469
470 /*
471  * write_block writes block nr to disk.
472  */
473 static void write_block(unsigned int nr, char *addr)
474 {
475         if (!nr)
476                 return;
477         if (nr < FIRSTZONE || nr >= ZONES) {
478                 printf("Internal error: trying to write bad block\n"
479                            "Write request ignored\n");
480                 errors_uncorrected = 1;
481                 return;
482         }
483         if (BLOCK_SIZE * nr != lseek(IN, BLOCK_SIZE * nr, SEEK_SET))
484                 die("seek failed in write_block");
485         if (BLOCK_SIZE != write(IN, addr, BLOCK_SIZE)) {
486                 printf("Write error: bad block in file '");
487                 print_current_name();
488                 printf("'\n");
489                 errors_uncorrected = 1;
490         }
491 }
492
493 /*
494  * map-block calculates the absolute block nr of a block in a file.
495  * It sets 'changed' if the inode has needed changing, and re-writes
496  * any indirect blocks with errors.
497  */
498 static int map_block(struct minix_inode *inode, unsigned int blknr)
499 {
500         unsigned short ind[BLOCK_SIZE >> 1];
501         unsigned short dind[BLOCK_SIZE >> 1];
502         int blk_chg, block, result;
503
504         if (blknr < 7)
505                 return check_zone_nr(inode->i_zone + blknr, &changed);
506         blknr -= 7;
507         if (blknr < 512) {
508                 block = check_zone_nr(inode->i_zone + 7, &changed);
509                 read_block(block, (char *) ind);
510                 blk_chg = 0;
511                 result = check_zone_nr(blknr + ind, &blk_chg);
512                 if (blk_chg)
513                         write_block(block, (char *) ind);
514                 return result;
515         }
516         blknr -= 512;
517         block = check_zone_nr(inode->i_zone + 8, &changed);
518         read_block(block, (char *) dind);
519         blk_chg = 0;
520         result = check_zone_nr(dind + (blknr / 512), &blk_chg);
521         if (blk_chg)
522                 write_block(block, (char *) dind);
523         block = result;
524         read_block(block, (char *) ind);
525         blk_chg = 0;
526         result = check_zone_nr(ind + (blknr % 512), &blk_chg);
527         if (blk_chg)
528                 write_block(block, (char *) ind);
529         return result;
530 }
531
532 #ifdef BB_FEATURE_MINIX2
533 static int map_block2(struct minix2_inode *inode, unsigned int blknr)
534 {
535         unsigned int ind[BLOCK_SIZE >> 2];
536         unsigned int dind[BLOCK_SIZE >> 2];
537         unsigned int tind[BLOCK_SIZE >> 2];
538         int blk_chg, block, result;
539
540         if (blknr < 7)
541                 return check_zone_nr2(inode->i_zone + blknr, &changed);
542         blknr -= 7;
543         if (blknr < 256) {
544                 block = check_zone_nr2(inode->i_zone + 7, &changed);
545                 read_block(block, (char *) ind);
546                 blk_chg = 0;
547                 result = check_zone_nr2(blknr + ind, &blk_chg);
548                 if (blk_chg)
549                         write_block(block, (char *) ind);
550                 return result;
551         }
552         blknr -= 256;
553         if (blknr >= 256 * 256) {
554                 block = check_zone_nr2(inode->i_zone + 8, &changed);
555                 read_block(block, (char *) dind);
556                 blk_chg = 0;
557                 result = check_zone_nr2(dind + blknr / 256, &blk_chg);
558                 if (blk_chg)
559                         write_block(block, (char *) dind);
560                 block = result;
561                 read_block(block, (char *) ind);
562                 blk_chg = 0;
563                 result = check_zone_nr2(ind + blknr % 256, &blk_chg);
564                 if (blk_chg)
565                         write_block(block, (char *) ind);
566                 return result;
567         }
568         blknr -= 256 * 256;
569         block = check_zone_nr2(inode->i_zone + 9, &changed);
570         read_block(block, (char *) tind);
571         blk_chg = 0;
572         result = check_zone_nr2(tind + blknr / (256 * 256), &blk_chg);
573         if (blk_chg)
574                 write_block(block, (char *) tind);
575         block = result;
576         read_block(block, (char *) dind);
577         blk_chg = 0;
578         result = check_zone_nr2(dind + (blknr / 256) % 256, &blk_chg);
579         if (blk_chg)
580                 write_block(block, (char *) dind);
581         block = result;
582         read_block(block, (char *) ind);
583         blk_chg = 0;
584         result = check_zone_nr2(ind + blknr % 256, &blk_chg);
585         if (blk_chg)
586                 write_block(block, (char *) ind);
587         return result;
588 }
589 #endif
590
591 static void write_super_block(void)
592 {
593         /*
594          * Set the state of the filesystem based on whether or not there
595          * are uncorrected errors.  The filesystem valid flag is
596          * unconditionally set if we get this far.
597          */
598         Super.s_state |= MINIX_VALID_FS;
599         if (errors_uncorrected)
600                 Super.s_state |= MINIX_ERROR_FS;
601         else
602                 Super.s_state &= ~MINIX_ERROR_FS;
603
604         if (BLOCK_SIZE != lseek(IN, BLOCK_SIZE, SEEK_SET))
605                 die("seek failed in write_super_block");
606         if (BLOCK_SIZE != write(IN, super_block_buffer, BLOCK_SIZE))
607                 die("unable to write super-block");
608
609         return;
610 }
611
612 static void write_tables(void)
613 {
614         write_super_block();
615
616         if (IMAPS * BLOCK_SIZE != write(IN, inode_map, IMAPS * BLOCK_SIZE))
617                 die("Unable to write inode map");
618         if (ZMAPS * BLOCK_SIZE != write(IN, zone_map, ZMAPS * BLOCK_SIZE))
619                 die("Unable to write zone map");
620         if (INODE_BUFFER_SIZE != write(IN, inode_buffer, INODE_BUFFER_SIZE))
621                 die("Unable to write inodes");
622 }
623
624 static void get_dirsize(void)
625 {
626         int block;
627         char blk[BLOCK_SIZE];
628         int size;
629
630 #ifdef BB_FEATURE_MINIX2
631         if (version2)
632                 block = Inode2[ROOT_INO].i_zone[0];
633         else
634 #endif
635                 block = Inode[ROOT_INO].i_zone[0];
636         read_block(block, blk);
637         for (size = 16; size < BLOCK_SIZE; size <<= 1) {
638                 if (strcmp(blk + size + 2, "..") == 0) {
639                         dirsize = size;
640                         namelen = size - 2;
641                         return;
642                 }
643         }
644         /* use defaults */
645 }
646
647 static void read_superblock(void)
648 {
649         if (BLOCK_SIZE != lseek(IN, BLOCK_SIZE, SEEK_SET))
650                 die("seek failed");
651         if (BLOCK_SIZE != read(IN, super_block_buffer, BLOCK_SIZE))
652                 die("unable to read super block");
653         if (MAGIC == MINIX_SUPER_MAGIC) {
654                 namelen = 14;
655                 dirsize = 16;
656                 version2 = 0;
657         } else if (MAGIC == MINIX_SUPER_MAGIC2) {
658                 namelen = 30;
659                 dirsize = 32;
660                 version2 = 0;
661 #ifdef BB_FEATURE_MINIX2
662         } else if (MAGIC == MINIX2_SUPER_MAGIC) {
663                 namelen = 14;
664                 dirsize = 16;
665                 version2 = 1;
666         } else if (MAGIC == MINIX2_SUPER_MAGIC2) {
667                 namelen = 30;
668                 dirsize = 32;
669                 version2 = 1;
670 #endif
671         } else
672                 die("bad magic number in super-block");
673         if (ZONESIZE != 0 || BLOCK_SIZE != 1024)
674                 die("Only 1k blocks/zones supported");
675         if (IMAPS * BLOCK_SIZE * 8 < INODES + 1)
676                 die("bad s_imap_blocks field in super-block");
677         if (ZMAPS * BLOCK_SIZE * 8 < ZONES - FIRSTZONE + 1)
678                 die("bad s_zmap_blocks field in super-block");
679 }
680
681 static void read_tables(void)
682 {
683         inode_map = xmalloc(IMAPS * BLOCK_SIZE);
684         zone_map = xmalloc(ZMAPS * BLOCK_SIZE);
685         memset(inode_map, 0, sizeof(inode_map));
686         memset(zone_map, 0, sizeof(zone_map));
687         inode_buffer = xmalloc(INODE_BUFFER_SIZE);
688         inode_count = xmalloc(INODES + 1);
689         zone_count = xmalloc(ZONES);
690         if (IMAPS * BLOCK_SIZE != read(IN, inode_map, IMAPS * BLOCK_SIZE))
691                 die("Unable to read inode map");
692         if (ZMAPS * BLOCK_SIZE != read(IN, zone_map, ZMAPS * BLOCK_SIZE))
693                 die("Unable to read zone map");
694         if (INODE_BUFFER_SIZE != read(IN, inode_buffer, INODE_BUFFER_SIZE))
695                 die("Unable to read inodes");
696         if (NORM_FIRSTZONE != FIRSTZONE) {
697                 printf("Warning: Firstzone != Norm_firstzone\n");
698                 errors_uncorrected = 1;
699         }
700         get_dirsize();
701         if (show) {
702                 printf("%ld inodes\n", INODES);
703                 printf("%ld blocks\n", ZONES);
704                 printf("Firstdatazone=%ld (%ld)\n", FIRSTZONE, NORM_FIRSTZONE);
705                 printf("Zonesize=%d\n", BLOCK_SIZE << ZONESIZE);
706                 printf("Maxsize=%ld\n", MAXSIZE);
707                 printf("Filesystem state=%d\n", Super.s_state);
708                 printf("namelen=%d\n\n", namelen);
709         }
710 }
711
712 struct minix_inode *get_inode(unsigned int nr)
713 {
714         struct minix_inode *inode;
715
716         if (!nr || nr > INODES)
717                 return NULL;
718         total++;
719         inode = Inode + nr;
720         if (!inode_count[nr]) {
721                 if (!inode_in_use(nr)) {
722                         printf("Inode %d marked not used, but used for file '", nr);
723                         print_current_name();
724                         printf("'\n");
725                         if (repair) {
726                                 if (ask("Mark in use", 1))
727                                         mark_inode(nr);
728                         } else {
729                                 errors_uncorrected = 1;
730                         }
731                 }
732                 if (S_ISDIR(inode->i_mode))
733                         directory++;
734                 else if (S_ISREG(inode->i_mode))
735                         regular++;
736                 else if (S_ISCHR(inode->i_mode))
737                         chardev++;
738                 else if (S_ISBLK(inode->i_mode))
739                         blockdev++;
740                 else if (S_ISLNK(inode->i_mode))
741                         symlinks++;
742                 else if (S_ISSOCK(inode->i_mode));
743                 else if (S_ISFIFO(inode->i_mode));
744                 else {
745                         print_current_name();
746                         printf(" has mode %05o\n", inode->i_mode);
747                 }
748
749         } else
750                 links++;
751         if (!++inode_count[nr]) {
752                 printf("Warning: inode count too big.\n");
753                 inode_count[nr]--;
754                 errors_uncorrected = 1;
755         }
756         return inode;
757 }
758
759 #ifdef BB_FEATURE_MINIX2
760 struct minix2_inode *get_inode2(unsigned int nr)
761 {
762         struct minix2_inode *inode;
763
764         if (!nr || nr > INODES)
765                 return NULL;
766         total++;
767         inode = Inode2 + nr;
768         if (!inode_count[nr]) {
769                 if (!inode_in_use(nr)) {
770                         printf("Inode %d marked not used, but used for file '", nr);
771                         print_current_name();
772                         printf("'\n");
773                         if (repair) {
774                                 if (ask("Mark in use", 1))
775                                         mark_inode(nr);
776                                 else
777                                         errors_uncorrected = 1;
778                         }
779                 }
780                 if (S_ISDIR(inode->i_mode))
781                         directory++;
782                 else if (S_ISREG(inode->i_mode))
783                         regular++;
784                 else if (S_ISCHR(inode->i_mode))
785                         chardev++;
786                 else if (S_ISBLK(inode->i_mode))
787                         blockdev++;
788                 else if (S_ISLNK(inode->i_mode))
789                         symlinks++;
790                 else if (S_ISSOCK(inode->i_mode));
791                 else if (S_ISFIFO(inode->i_mode));
792                 else {
793                         print_current_name();
794                         printf(" has mode %05o\n", inode->i_mode);
795                 }
796         } else
797                 links++;
798         if (!++inode_count[nr]) {
799                 printf("Warning: inode count too big.\n");
800                 inode_count[nr]--;
801                 errors_uncorrected = 1;
802         }
803         return inode;
804 }
805 #endif
806
807 static void check_root(void)
808 {
809         struct minix_inode *inode = Inode + ROOT_INO;
810
811         if (!inode || !S_ISDIR(inode->i_mode))
812                 die("root inode isn't a directory");
813 }
814
815 #ifdef BB_FEATURE_MINIX2
816 static void check_root2(void)
817 {
818         struct minix2_inode *inode = Inode2 + ROOT_INO;
819
820         if (!inode || !S_ISDIR(inode->i_mode))
821                 die("root inode isn't a directory");
822 }
823 #endif
824
825 static int add_zone(unsigned short *znr, int *corrected)
826 {
827         int result;
828         int block;
829
830         result = 0;
831         block = check_zone_nr(znr, corrected);
832         if (!block)
833                 return 0;
834         if (zone_count[block]) {
835                 printf("Block has been used before. Now in file `");
836                 print_current_name();
837                 printf("'.");
838                 if (ask("Clear", 1)) {
839                         *znr = 0;
840                         block = 0;
841                         *corrected = 1;
842                 }
843         }
844         if (!block)
845                 return 0;
846         if (!zone_in_use(block)) {
847                 printf("Block %d in file `", block);
848                 print_current_name();
849                 printf("' is marked not in use.");
850                 if (ask("Correct", 1))
851                         mark_zone(block);
852         }
853         if (!++zone_count[block])
854                 zone_count[block]--;
855         return block;
856 }
857
858 #ifdef BB_FEATURE_MINIX2
859 static int add_zone2(unsigned int *znr, int *corrected)
860 {
861         int result;
862         int block;
863
864         result = 0;
865         block = check_zone_nr2(znr, corrected);
866         if (!block)
867                 return 0;
868         if (zone_count[block]) {
869                 printf("Block has been used before. Now in file `");
870                 print_current_name();
871                 printf("'.");
872                 if (ask("Clear", 1)) {
873                         *znr = 0;
874                         block = 0;
875                         *corrected = 1;
876                 }
877         }
878         if (!block)
879                 return 0;
880         if (!zone_in_use(block)) {
881                 printf("Block %d in file `", block);
882                 print_current_name();
883                 printf("' is marked not in use.");
884                 if (ask("Correct", 1))
885                         mark_zone(block);
886         }
887         if (!++zone_count[block])
888                 zone_count[block]--;
889         return block;
890 }
891 #endif
892
893 static void add_zone_ind(unsigned short *znr, int *corrected)
894 {
895         static char blk[BLOCK_SIZE];
896         int i, chg_blk = 0;
897         int block;
898
899         block = add_zone(znr, corrected);
900         if (!block)
901                 return;
902         read_block(block, blk);
903         for (i = 0; i < (BLOCK_SIZE >> 1); i++)
904                 add_zone(i + (unsigned short *) blk, &chg_blk);
905         if (chg_blk)
906                 write_block(block, blk);
907 }
908
909 #ifdef BB_FEATURE_MINIX2
910 static void add_zone_ind2(unsigned int *znr, int *corrected)
911 {
912         static char blk[BLOCK_SIZE];
913         int i, chg_blk = 0;
914         int block;
915
916         block = add_zone2(znr, corrected);
917         if (!block)
918                 return;
919         read_block(block, blk);
920         for (i = 0; i < BLOCK_SIZE >> 2; i++)
921                 add_zone2(i + (unsigned int *) blk, &chg_blk);
922         if (chg_blk)
923                 write_block(block, blk);
924 }
925 #endif
926
927 static void add_zone_dind(unsigned short *znr, int *corrected)
928 {
929         static char blk[BLOCK_SIZE];
930         int i, blk_chg = 0;
931         int block;
932
933         block = add_zone(znr, corrected);
934         if (!block)
935                 return;
936         read_block(block, blk);
937         for (i = 0; i < (BLOCK_SIZE >> 1); i++)
938                 add_zone_ind(i + (unsigned short *) blk, &blk_chg);
939         if (blk_chg)
940                 write_block(block, blk);
941 }
942
943 #ifdef BB_FEATURE_MINIX2
944 static void add_zone_dind2(unsigned int *znr, int *corrected)
945 {
946         static char blk[BLOCK_SIZE];
947         int i, blk_chg = 0;
948         int block;
949
950         block = add_zone2(znr, corrected);
951         if (!block)
952                 return;
953         read_block(block, blk);
954         for (i = 0; i < BLOCK_SIZE >> 2; i++)
955                 add_zone_ind2(i + (unsigned int *) blk, &blk_chg);
956         if (blk_chg)
957                 write_block(block, blk);
958 }
959
960 static void add_zone_tind2(unsigned int *znr, int *corrected)
961 {
962         static char blk[BLOCK_SIZE];
963         int i, blk_chg = 0;
964         int block;
965
966         block = add_zone2(znr, corrected);
967         if (!block)
968                 return;
969         read_block(block, blk);
970         for (i = 0; i < BLOCK_SIZE >> 2; i++)
971                 add_zone_dind2(i + (unsigned int *) blk, &blk_chg);
972         if (blk_chg)
973                 write_block(block, blk);
974 }
975 #endif
976
977 static void check_zones(unsigned int i)
978 {
979         struct minix_inode *inode;
980
981         if (!i || i > INODES)
982                 return;
983         if (inode_count[i] > 1)         /* have we counted this file already? */
984                 return;
985         inode = Inode + i;
986         if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
987                 !S_ISLNK(inode->i_mode)) return;
988         for (i = 0; i < 7; i++)
989                 add_zone(i + inode->i_zone, &changed);
990         add_zone_ind(7 + inode->i_zone, &changed);
991         add_zone_dind(8 + inode->i_zone, &changed);
992 }
993
994 #ifdef BB_FEATURE_MINIX2
995 static void check_zones2(unsigned int i)
996 {
997         struct minix2_inode *inode;
998
999         if (!i || i > INODES)
1000                 return;
1001         if (inode_count[i] > 1)         /* have we counted this file already? */
1002                 return;
1003         inode = Inode2 + i;
1004         if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode)
1005                 && !S_ISLNK(inode->i_mode))
1006                 return;
1007         for (i = 0; i < 7; i++)
1008                 add_zone2(i + inode->i_zone, &changed);
1009         add_zone_ind2(7 + inode->i_zone, &changed);
1010         add_zone_dind2(8 + inode->i_zone, &changed);
1011         add_zone_tind2(9 + inode->i_zone, &changed);
1012 }
1013 #endif
1014
1015 static void check_file(struct minix_inode *dir, unsigned int offset)
1016 {
1017         static char blk[BLOCK_SIZE];
1018         struct minix_inode *inode;
1019         int ino;
1020         char *name;
1021         int block;
1022
1023         block = map_block(dir, offset / BLOCK_SIZE);
1024         read_block(block, blk);
1025         name = blk + (offset % BLOCK_SIZE) + 2;
1026         ino = *(unsigned short *) (name - 2);
1027         if (ino > INODES) {
1028                 print_current_name();
1029                 printf(" contains a bad inode number for file '");
1030                 printf("%.*s'.", namelen, name);
1031                 if (ask(" Remove", 1)) {
1032                         *(unsigned short *) (name - 2) = 0;
1033                         write_block(block, blk);
1034                 }
1035                 ino = 0;
1036         }
1037         if (name_depth < MAX_DEPTH)
1038                 strncpy(name_list[name_depth], name, namelen);
1039         name_depth++;
1040         inode = get_inode(ino);
1041         name_depth--;
1042         if (!offset) {
1043                 if (!inode || strcmp(".", name)) {
1044                         print_current_name();
1045                         printf(": bad directory: '.' isn't first\n");
1046                         errors_uncorrected = 1;
1047                 } else
1048                         return;
1049         }
1050         if (offset == dirsize) {
1051                 if (!inode || strcmp("..", name)) {
1052                         print_current_name();
1053                         printf(": bad directory: '..' isn't second\n");
1054                         errors_uncorrected = 1;
1055                 } else
1056                         return;
1057         }
1058         if (!inode)
1059                 return;
1060         if (name_depth < MAX_DEPTH)
1061                 strncpy(name_list[name_depth], name, namelen);
1062         name_depth++;
1063         if (list) {
1064                 if (verbose)
1065                         printf("%6d %07o %3d ", ino, inode->i_mode, inode->i_nlinks);
1066                 print_current_name();
1067                 if (S_ISDIR(inode->i_mode))
1068                         printf(":\n");
1069                 else
1070                         printf("\n");
1071         }
1072         check_zones(ino);
1073         if (inode && S_ISDIR(inode->i_mode))
1074                 recursive_check(ino);
1075         name_depth--;
1076         return;
1077 }
1078
1079 #ifdef BB_FEATURE_MINIX2
1080 static void check_file2(struct minix2_inode *dir, unsigned int offset)
1081 {
1082         static char blk[BLOCK_SIZE];
1083         struct minix2_inode *inode;
1084         int ino;
1085         char *name;
1086         int block;
1087
1088         block = map_block2(dir, offset / BLOCK_SIZE);
1089         read_block(block, blk);
1090         name = blk + (offset % BLOCK_SIZE) + 2;
1091         ino = *(unsigned short *) (name - 2);
1092         if (ino > INODES) {
1093                 print_current_name();
1094                 printf(" contains a bad inode number for file '");
1095                 printf("%.*s'.", namelen, name);
1096                 if (ask(" Remove", 1)) {
1097                         *(unsigned short *) (name - 2) = 0;
1098                         write_block(block, blk);
1099                 }
1100                 ino = 0;
1101         }
1102         if (name_depth < MAX_DEPTH)
1103                 strncpy(name_list[name_depth], name, namelen);
1104         name_depth++;
1105         inode = get_inode2(ino);
1106         name_depth--;
1107         if (!offset) {
1108                 if (!inode || strcmp(".", name)) {
1109                         print_current_name();
1110                         printf(": bad directory: '.' isn't first\n");
1111                         errors_uncorrected = 1;
1112                 } else
1113                         return;
1114         }
1115         if (offset == dirsize) {
1116                 if (!inode || strcmp("..", name)) {
1117                         print_current_name();
1118                         printf(": bad directory: '..' isn't second\n");
1119                         errors_uncorrected = 1;
1120                 } else
1121                         return;
1122         }
1123         if (!inode)
1124                 return;
1125         name_depth++;
1126         if (list) {
1127                 if (verbose)
1128                         printf("%6d %07o %3d ", ino, inode->i_mode, inode->i_nlinks);
1129                 print_current_name();
1130                 if (S_ISDIR(inode->i_mode))
1131                         printf(":\n");
1132                 else
1133                         printf("\n");
1134         }
1135         check_zones2(ino);
1136         if (inode && S_ISDIR(inode->i_mode))
1137                 recursive_check2(ino);
1138         name_depth--;
1139         return;
1140 }
1141 #endif
1142
1143 static void recursive_check(unsigned int ino)
1144 {
1145         struct minix_inode *dir;
1146         unsigned int offset;
1147
1148         dir = Inode + ino;
1149         if (!S_ISDIR(dir->i_mode))
1150                 die("internal error");
1151         if (dir->i_size < 2 * dirsize) {
1152                 print_current_name();
1153                 printf(": bad directory: size<32");
1154                 errors_uncorrected = 1;
1155         }
1156         for (offset = 0; offset < dir->i_size; offset += dirsize)
1157                 check_file(dir, offset);
1158 }
1159
1160 #ifdef BB_FEATURE_MINIX2
1161 static void recursive_check2(unsigned int ino)
1162 {
1163         struct minix2_inode *dir;
1164         unsigned int offset;
1165
1166         dir = Inode2 + ino;
1167         if (!S_ISDIR(dir->i_mode))
1168                 die("internal error");
1169         if (dir->i_size < 2 * dirsize) {
1170                 print_current_name();
1171                 printf(": bad directory: size < 32");
1172                 errors_uncorrected = 1;
1173         }
1174         for (offset = 0; offset < dir->i_size; offset += dirsize)
1175                 check_file2(dir, offset);
1176 }
1177 #endif
1178
1179 static int bad_zone(int i)
1180 {
1181         char buffer[1024];
1182
1183         if (BLOCK_SIZE * i != lseek(IN, BLOCK_SIZE * i, SEEK_SET))
1184                 die("seek failed in bad_zone");
1185         return (BLOCK_SIZE != read(IN, buffer, BLOCK_SIZE));
1186 }
1187
1188 static void check_counts(void)
1189 {
1190         int i;
1191
1192         for (i = 1; i <= INODES; i++) {
1193                 if (!inode_in_use(i) && Inode[i].i_mode && warn_mode) {
1194                         printf("Inode %d mode not cleared.", i);
1195                         if (ask("Clear", 1)) {
1196                                 Inode[i].i_mode = 0;
1197                                 changed = 1;
1198                         }
1199                 }
1200                 if (!inode_count[i]) {
1201                         if (!inode_in_use(i))
1202                                 continue;
1203                         printf("Inode %d not used, marked used in the bitmap.", i);
1204                         if (ask("Clear", 1))
1205                                 unmark_inode(i);
1206                         continue;
1207                 }
1208                 if (!inode_in_use(i)) {
1209                         printf("Inode %d used, marked unused in the bitmap.", i);
1210                         if (ask("Set", 1))
1211                                 mark_inode(i);
1212                 }
1213                 if (Inode[i].i_nlinks != inode_count[i]) {
1214                         printf("Inode %d (mode = %07o), i_nlinks=%d, counted=%d.",
1215                                    i, Inode[i].i_mode, Inode[i].i_nlinks, inode_count[i]);
1216                         if (ask("Set i_nlinks to count", 1)) {
1217                                 Inode[i].i_nlinks = inode_count[i];
1218                                 changed = 1;
1219                         }
1220                 }
1221         }
1222         for (i = FIRSTZONE; i < ZONES; i++) {
1223                 if (zone_in_use(i) == zone_count[i])
1224                         continue;
1225                 if (!zone_count[i]) {
1226                         if (bad_zone(i))
1227                                 continue;
1228                         printf("Zone %d: marked in use, no file uses it.", i);
1229                         if (ask("Unmark", 1))
1230                                 unmark_zone(i);
1231                         continue;
1232                 }
1233                 printf("Zone %d: %sin use, counted=%d\n",
1234                            i, zone_in_use(i) ? "" : "not ", zone_count[i]);
1235         }
1236 }
1237
1238 #ifdef BB_FEATURE_MINIX2
1239 static void check_counts2(void)
1240 {
1241         int i;
1242
1243         for (i = 1; i <= INODES; i++) {
1244                 if (!inode_in_use(i) && Inode2[i].i_mode && warn_mode) {
1245                         printf("Inode %d mode not cleared.", i);
1246                         if (ask("Clear", 1)) {
1247                                 Inode2[i].i_mode = 0;
1248                                 changed = 1;
1249                         }
1250                 }
1251                 if (!inode_count[i]) {
1252                         if (!inode_in_use(i))
1253                                 continue;
1254                         printf("Inode %d not used, marked used in the bitmap.", i);
1255                         if (ask("Clear", 1))
1256                                 unmark_inode(i);
1257                         continue;
1258                 }
1259                 if (!inode_in_use(i)) {
1260                         printf("Inode %d used, marked unused in the bitmap.", i);
1261                         if (ask("Set", 1))
1262                                 mark_inode(i);
1263                 }
1264                 if (Inode2[i].i_nlinks != inode_count[i]) {
1265                         printf("Inode %d (mode = %07o), i_nlinks=%d, counted=%d.",
1266                                    i, Inode2[i].i_mode, Inode2[i].i_nlinks,
1267                                    inode_count[i]);
1268                         if (ask("Set i_nlinks to count", 1)) {
1269                                 Inode2[i].i_nlinks = inode_count[i];
1270                                 changed = 1;
1271                         }
1272                 }
1273         }
1274         for (i = FIRSTZONE; i < ZONES; i++) {
1275                 if (zone_in_use(i) == zone_count[i])
1276                         continue;
1277                 if (!zone_count[i]) {
1278                         if (bad_zone(i))
1279                                 continue;
1280                         printf("Zone %d: marked in use, no file uses it.", i);
1281                         if (ask("Unmark", 1))
1282                                 unmark_zone(i);
1283                         continue;
1284                 }
1285                 printf("Zone %d: %sin use, counted=%d\n",
1286                            i, zone_in_use(i) ? "" : "not ", zone_count[i]);
1287         }
1288 }
1289 #endif
1290
1291 static void check(void)
1292 {
1293         memset(inode_count, 0, (INODES + 1) * sizeof(*inode_count));
1294         memset(zone_count, 0, ZONES * sizeof(*zone_count));
1295         check_zones(ROOT_INO);
1296         recursive_check(ROOT_INO);
1297         check_counts();
1298 }
1299
1300 #ifdef BB_FEATURE_MINIX2
1301 static void check2(void)
1302 {
1303         memset(inode_count, 0, (INODES + 1) * sizeof(*inode_count));
1304         memset(zone_count, 0, ZONES * sizeof(*zone_count));
1305         check_zones2(ROOT_INO);
1306         recursive_check2(ROOT_INO);
1307         check_counts2();
1308 }
1309 #endif
1310
1311 /* Wed Feb  9 15:17:06 MST 2000 */
1312 /* dynamically allocate name_list (instead of making it static) */
1313 static void alloc_name_list(void)
1314 {
1315         int i;
1316
1317         name_list = xmalloc(sizeof(char *) * MAX_DEPTH);
1318         for (i = 0; i < MAX_DEPTH; i++)
1319                 name_list[i] = xmalloc(sizeof(char) * BUFSIZ + 1);
1320 }
1321
1322 #if 0
1323 /* execute this atexit() to deallocate name_list[] */
1324 /* piptigger was here */
1325 static void free_name_list(void)
1326 {
1327         int i;
1328
1329         if (name_list) { 
1330                 for (i = 0; i < MAX_DEPTH; i++) {
1331                         if (name_list[i]) {
1332                                 free(name_list[i]);
1333                         }
1334                 }
1335                 free(name_list);
1336         }
1337 }
1338 #endif
1339
1340 extern int fsck_minix_main(int argc, char **argv)
1341 {
1342         struct termios tmp;
1343         int count;
1344         int retcode = 0;
1345
1346         alloc_name_list();
1347         /* Don't bother to free memory.  Exit does
1348          * that automagically, so we can save a few bytes */
1349         //atexit(free_name_list);
1350
1351         if (INODE_SIZE * MINIX_INODES_PER_BLOCK != BLOCK_SIZE)
1352                 die("bad inode size");
1353 #ifdef BB_FEATURE_MINIX2
1354         if (INODE_SIZE2 * MINIX2_INODES_PER_BLOCK != BLOCK_SIZE)
1355                 die("bad v2 inode size");
1356 #endif
1357         while (argc-- > 1) {
1358                 argv++;
1359                 if (argv[0][0] != '-') {
1360                         if (device_name)
1361                                 show_usage();
1362                         else
1363                                 device_name = argv[0];
1364                 } else
1365                         while (*++argv[0])
1366                                 switch (argv[0][0]) {
1367                                 case 'l':
1368                                         list = 1;
1369                                         break;
1370                                 case 'a':
1371                                         automatic = 1;
1372                                         repair = 1;
1373                                         break;
1374                                 case 'r':
1375                                         automatic = 0;
1376                                         repair = 1;
1377                                         break;
1378                                 case 'v':
1379                                         verbose = 1;
1380                                         break;
1381                                 case 's':
1382                                         show = 1;
1383                                         break;
1384                                 case 'm':
1385                                         warn_mode = 1;
1386                                         break;
1387                                 case 'f':
1388                                         force = 1;
1389                                         break;
1390                                 default:
1391                                         show_usage();
1392                                 }
1393         }
1394         if (!device_name)
1395                 show_usage();
1396         check_mount();                          /* trying to check a mounted filesystem? */
1397         if (repair && !automatic) {
1398                 if (!isatty(0) || !isatty(1))
1399                         die("need terminal for interactive repairs");
1400         }
1401         IN = open(device_name, repair ? O_RDWR : O_RDONLY);
1402         if (IN < 0)
1403                 die("unable to open '%s'");
1404         for (count = 0; count < 3; count++)
1405                 sync();
1406         read_superblock();
1407
1408         /*
1409          * Determine whether or not we should continue with the checking.
1410          * This is based on the status of the filesystem valid and error
1411          * flags and whether or not the -f switch was specified on the 
1412          * command line.
1413          */
1414         printf("%s, %s\n", applet_name, program_version);
1415         if (!(Super.s_state & MINIX_ERROR_FS) &&
1416                 (Super.s_state & MINIX_VALID_FS) && !force) {
1417                 if (repair)
1418                         printf("%s is clean, no check.\n", device_name);
1419                 return retcode;
1420         } else if (force)
1421                 printf("Forcing filesystem check on %s.\n", device_name);
1422         else if (repair)
1423                 printf("Filesystem on %s is dirty, needs checking.\n",
1424                            device_name);
1425
1426         read_tables();
1427
1428         if (repair && !automatic) {
1429                 tcgetattr(0, &termios);
1430                 tmp = termios;
1431                 tmp.c_lflag &= ~(ICANON | ECHO);
1432                 tcsetattr(0, TCSANOW, &tmp);
1433                 termios_set = 1;
1434         }
1435 #ifdef BB_FEATURE_MINIX2
1436         if (version2) {
1437                 check_root2();
1438                 check2();
1439         } else
1440 #endif
1441         {
1442                 check_root();
1443                 check();
1444         }
1445         if (verbose) {
1446                 int i, free;
1447
1448                 for (i = 1, free = 0; i <= INODES; i++)
1449                         if (!inode_in_use(i))
1450                                 free++;
1451                 printf("\n%6ld inodes used (%ld%%)\n", (INODES - free),
1452                            100 * (INODES - free) / INODES);
1453                 for (i = FIRSTZONE, free = 0; i < ZONES; i++)
1454                         if (!zone_in_use(i))
1455                                 free++;
1456                 printf("%6ld zones used (%ld%%)\n", (ZONES - free),
1457                            100 * (ZONES - free) / ZONES);
1458                 printf("\n%6d regular files\n"
1459                            "%6d directories\n"
1460                            "%6d character device files\n"
1461                            "%6d block device files\n"
1462                            "%6d links\n"
1463                            "%6d symbolic links\n"
1464                            "------\n"
1465                            "%6d files\n",
1466                            regular, directory, chardev, blockdev,
1467                            links - 2 * directory + 1, symlinks,
1468                            total - 2 * directory + 1);
1469         }
1470         if (changed) {
1471                 write_tables();
1472                 printf("----------------------------\n"
1473                            "FILE SYSTEM HAS BEEN CHANGED\n"
1474                            "----------------------------\n");
1475                 for (count = 0; count < 3; count++)
1476                         sync();
1477         } else if (repair)
1478                 write_super_block();
1479
1480         if (repair && !automatic)
1481                 tcsetattr(0, TCSANOW, &termios);
1482
1483         if (changed)
1484                 retcode += 3;
1485         if (errors_uncorrected)
1486                 retcode += 4;
1487         return retcode;
1488 }