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