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