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