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