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