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