Initial implementation of wget, from Chip Rosenthal <chip@laserlink.net>.
[oweals/busybox.git] / mkfs_minix.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * mkfs.c - make a linux (minix) file-system.
4  *
5  * (C) 1991 Linus Torvalds. This file may be redistributed as per
6  * the Linux copyright.
7  */
8
9 /*
10  * DD.MM.YY
11  *
12  * 24.11.91  -  Time began. Used the fsck sources to get started.
13  *
14  * 25.11.91  -  Corrected some bugs. Added support for ".badblocks"
15  *              The algorithm for ".badblocks" is a bit weird, but
16  *              it should work. Oh, well.
17  *
18  * 25.01.92  -  Added the -l option for getting the list of bad blocks
19  *              out of a named file. (Dave Rivers, rivers@ponds.uucp)
20  *
21  * 28.02.92  -  Added %-information when using -c.
22  *
23  * 28.02.93  -  Added support for other namelengths than the original
24  *              14 characters so that I can test the new kernel routines..
25  *
26  * 09.10.93  -  Make exit status conform to that required by fsutil
27  *              (Rik Faith, faith@cs.unc.edu)
28  *
29  * 31.10.93  -  Added inode request feature, for backup floppies: use
30  *              32 inodes, for a news partition use more.
31  *              (Scott Heavner, sdh@po.cwru.edu)
32  *
33  * 03.01.94  -  Added support for file system valid flag.
34  *              (Dr. Wettstein, greg%wind.uucp@plains.nodak.edu)
35  *
36  * 30.10.94 - added support for v2 filesystem
37  *            (Andreas Schwab, schwab@issan.informatik.uni-dortmund.de)
38  * 
39  * 09.11.94  -  Added test to prevent overwrite of mounted fs adapted
40  *              from Theodore Ts'o's (tytso@athena.mit.edu) mke2fs
41  *              program.  (Daniel Quinlan, quinlan@yggdrasil.com)
42  *
43  * 03.20.95  -  Clear first 512 bytes of filesystem to make certain that
44  *              the filesystem is not misidentified as a MS-DOS FAT filesystem.
45  *              (Daniel Quinlan, quinlan@yggdrasil.com)
46  *
47  * 02.07.96  -  Added small patch from Russell King to make the program a
48  *              good deal more portable (janl@math.uio.no)
49  *
50  * Usage:  mkfs [-c | -l filename ] [-v] [-nXX] [-iXX] device [size-in-blocks]
51  *
52  *      -c for readablility checking (SLOW!)
53  *      -l for getting a list of bad blocks from a file.
54  *      -n for namelength (currently the kernel only uses 14 or 30)
55  *      -i for number of inodes
56  *      -v for v2 filesystem
57  *
58  * The device may be a block device or a image of one, but this isn't
59  * enforced (but it's not much fun on a character device :-). 
60  *
61  * Modified for BusyBox by Erik Andersen <andersen@debian.org> --
62  *      removed getopt based parser and added a hand rolled one.
63  */
64
65 #include "internal.h"
66 #include <stdio.h>
67 #include <time.h>
68 #include <unistd.h>
69 #include <string.h>
70 #include <signal.h>
71 #include <fcntl.h>
72 #include <ctype.h>
73 #include <stdlib.h>
74 #include <termios.h>
75 #include <sys/ioctl.h>
76 #include <sys/param.h>
77 #include <mntent.h>
78
79
80 typedef unsigned char u8;
81 typedef unsigned short u16;
82 typedef unsigned int u32;
83
84
85 #define MINIX_ROOT_INO 1
86 #define MINIX_LINK_MAX  250
87 #define MINIX2_LINK_MAX 65530
88
89 #define MINIX_I_MAP_SLOTS       8
90 #define MINIX_Z_MAP_SLOTS       64
91 #define MINIX_SUPER_MAGIC       0x137F          /* original minix fs */
92 #define MINIX_SUPER_MAGIC2      0x138F          /* minix fs, 30 char names */
93 #define MINIX2_SUPER_MAGIC      0x2468          /* minix V2 fs */
94 #define MINIX2_SUPER_MAGIC2     0x2478          /* minix V2 fs, 30 char names */
95 #define MINIX_VALID_FS          0x0001          /* Clean fs. */
96 #define MINIX_ERROR_FS          0x0002          /* fs has errors. */
97
98 #define MINIX_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix_inode)))
99 #define MINIX2_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix2_inode)))
100
101 #define MINIX_V1                0x0001          /* original minix fs */
102 #define MINIX_V2                0x0002          /* minix V2 fs */
103
104 #define INODE_VERSION(inode)    inode->i_sb->u.minix_sb.s_version
105
106 /*
107  * This is the original minix inode layout on disk.
108  * Note the 8-bit gid and atime and ctime.
109  */
110 struct minix_inode {
111         u16 i_mode;
112         u16 i_uid;
113         u32 i_size;
114         u32 i_time;
115         u8  i_gid;
116         u8  i_nlinks;
117         u16 i_zone[9];
118 };
119
120 /*
121  * The new minix inode has all the time entries, as well as
122  * long block numbers and a third indirect block (7+1+1+1
123  * instead of 7+1+1). Also, some previously 8-bit values are
124  * now 16-bit. The inode is now 64 bytes instead of 32.
125  */
126 struct minix2_inode {
127         u16 i_mode;
128         u16 i_nlinks;
129         u16 i_uid;
130         u16 i_gid;
131         u32 i_size;
132         u32 i_atime;
133         u32 i_mtime;
134         u32 i_ctime;
135         u32 i_zone[10];
136 };
137
138 /*
139  * minix super-block data on disk
140  */
141 struct minix_super_block {
142         u16 s_ninodes;
143         u16 s_nzones;
144         u16 s_imap_blocks;
145         u16 s_zmap_blocks;
146         u16 s_firstdatazone;
147         u16 s_log_zone_size;
148         u32 s_max_size;
149         u16 s_magic;
150         u16 s_state;
151         u32 s_zones;
152 };
153
154 struct minix_dir_entry {
155         u16 inode;
156         char name[0];
157 };
158
159 #define BLOCK_SIZE_BITS 10
160 #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)
161
162 #define NAME_MAX         255   /* # chars in a file name */
163
164 #define MINIX_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix_inode)))
165
166 #define MINIX_VALID_FS               0x0001          /* Clean fs. */
167 #define MINIX_ERROR_FS               0x0002          /* fs has errors. */
168
169 #define MINIX_SUPER_MAGIC    0x137F          /* original minix fs */
170 #define MINIX_SUPER_MAGIC2   0x138F          /* minix fs, 30 char names */
171
172 #ifndef BLKGETSIZE
173 #define BLKGETSIZE _IO(0x12,96)    /* return device size */
174 #endif
175
176
177 #ifndef __linux__
178 #define volatile
179 #endif
180
181 #define MINIX_ROOT_INO 1
182 #define MINIX_BAD_INO 2
183
184 #define TEST_BUFFER_BLOCKS 16
185 #define MAX_GOOD_BLOCKS 512
186
187 #define UPPER(size,n) (((size)+((n)-1))/(n))
188 #define INODE_SIZE (sizeof(struct minix_inode))
189 #ifdef BB_FEATURE_MINIX2
190 #define INODE_SIZE2 (sizeof(struct minix2_inode))
191 #define INODE_BLOCKS UPPER(INODES, (version2 ? MINIX2_INODES_PER_BLOCK \
192                                     : MINIX_INODES_PER_BLOCK))
193 #else
194 #define INODE_BLOCKS UPPER(INODES, (MINIX_INODES_PER_BLOCK))
195 #endif
196 #define INODE_BUFFER_SIZE (INODE_BLOCKS * BLOCK_SIZE)
197
198 #define BITS_PER_BLOCK (BLOCK_SIZE<<3)
199
200 static char *device_name = NULL;
201 static int DEV = -1;
202 static long BLOCKS = 0;
203 static int check = 0;
204 static int badblocks = 0;
205 static int namelen = 30;                /* default (changed to 30, per Linus's
206
207                                                                    suggestion, Sun Nov 21 08:05:07 1993) */
208 static int dirsize = 32;
209 static int magic = MINIX_SUPER_MAGIC2;
210 static int version2 = 0;
211
212 static char root_block[BLOCK_SIZE] = "\0";
213
214 static char *inode_buffer = NULL;
215
216 #define Inode (((struct minix_inode *) inode_buffer)-1)
217 #ifdef BB_FEATURE_MINIX2
218 #define Inode2 (((struct minix2_inode *) inode_buffer)-1)
219 #endif
220 static char super_block_buffer[BLOCK_SIZE];
221 static char boot_block_buffer[512];
222
223 #define Super (*(struct minix_super_block *)super_block_buffer)
224 #define INODES ((unsigned long)Super.s_ninodes)
225 #ifdef BB_FEATURE_MINIX2
226 #define ZONES ((unsigned long)(version2 ? Super.s_zones : Super.s_nzones))
227 #else
228 #define ZONES ((unsigned long)(Super.s_nzones))
229 #endif
230 #define IMAPS ((unsigned long)Super.s_imap_blocks)
231 #define ZMAPS ((unsigned long)Super.s_zmap_blocks)
232 #define FIRSTZONE ((unsigned long)Super.s_firstdatazone)
233 #define ZONESIZE ((unsigned long)Super.s_log_zone_size)
234 #define MAXSIZE ((unsigned long)Super.s_max_size)
235 #define MAGIC (Super.s_magic)
236 #define NORM_FIRSTZONE (2+IMAPS+ZMAPS+INODE_BLOCKS)
237
238 static char *inode_map;
239 static char *zone_map;
240
241 static unsigned short good_blocks_table[MAX_GOOD_BLOCKS];
242 static int used_good_blocks = 0;
243 static unsigned long req_nr_inodes = 0;
244
245 #define inode_in_use(x) (isset(inode_map,(x)))
246 #define zone_in_use(x) (isset(zone_map,(x)-FIRSTZONE+1))
247
248 #define mark_inode(x) (setbit(inode_map,(x)))
249 #define unmark_inode(x) (clrbit(inode_map,(x)))
250
251 #define mark_zone(x) (setbit(zone_map,(x)-FIRSTZONE+1))
252 #define unmark_zone(x) (clrbit(zone_map,(x)-FIRSTZONE+1))
253
254 /*
255  * Volatile to let gcc know that this doesn't return. When trying
256  * to compile this under minix, volatile gives a warning, as
257  * exit() isn't defined as volatile under minix.
258  */
259 static volatile void die(char *str)
260 {
261         errorMsg("%s\n", str);
262         exit(8);
263 }
264
265 static volatile void show_usage() __attribute__ ((noreturn));
266 static volatile void show_usage()
267 {
268         usage(mkfs_minix_usage);
269 }
270
271 /*
272  * Check to make certain that our new filesystem won't be created on
273  * an already mounted partition.  Code adapted from mke2fs, Copyright
274  * (C) 1994 Theodore Ts'o.  Also licensed under GPL.
275  */
276 static void check_mount(void)
277 {
278         FILE *f;
279         struct mntent *mnt;
280
281         if ((f = setmntent(MOUNTED, "r")) == NULL)
282                 return;
283         while ((mnt = getmntent(f)) != NULL)
284                 if (strcmp(device_name, mnt->mnt_fsname) == 0)
285                         break;
286         endmntent(f);
287         if (!mnt)
288                 return;
289
290         die("%s is mounted; will not make a filesystem here!");
291 }
292
293 static long valid_offset(int fd, int offset)
294 {
295         char ch;
296
297         if (lseek(fd, offset, 0) < 0)
298                 return 0;
299         if (read(fd, &ch, 1) < 1)
300                 return 0;
301         return 1;
302 }
303
304 static int count_blocks(int fd)
305 {
306         int high, low;
307
308         low = 0;
309         for (high = 1; valid_offset(fd, high); high *= 2)
310                 low = high;
311         while (low < high - 1) {
312                 const int mid = (low + high) / 2;
313
314                 if (valid_offset(fd, mid))
315                         low = mid;
316                 else
317                         high = mid;
318         }
319         valid_offset(fd, 0);
320         return (low + 1);
321 }
322
323 static int get_size(const char *file)
324 {
325         int fd;
326         long size;
327
328         fd = open(file, O_RDWR);
329         if (fd < 0) {
330                 perror(file);
331                 exit(1);
332         }
333         if (ioctl(fd, BLKGETSIZE, &size) >= 0) {
334                 close(fd);
335                 return (size * 512);
336         }
337
338         size = count_blocks(fd);
339         close(fd);
340         return size;
341 }
342
343 static void write_tables(void)
344 {
345         /* Mark the super block valid. */
346         Super.s_state |= MINIX_VALID_FS;
347         Super.s_state &= ~MINIX_ERROR_FS;
348
349         if (lseek(DEV, 0, SEEK_SET))
350                 die("seek to boot block failed in write_tables");
351         if (512 != write(DEV, boot_block_buffer, 512))
352                 die("unable to clear boot sector");
353         if (BLOCK_SIZE != lseek(DEV, BLOCK_SIZE, SEEK_SET))
354                 die("seek failed in write_tables");
355         if (BLOCK_SIZE != write(DEV, super_block_buffer, BLOCK_SIZE))
356                 die("unable to write super-block");
357         if (IMAPS * BLOCK_SIZE != write(DEV, inode_map, IMAPS * BLOCK_SIZE))
358                 die("unable to write inode map");
359         if (ZMAPS * BLOCK_SIZE != write(DEV, zone_map, ZMAPS * BLOCK_SIZE))
360                 die("unable to write zone map");
361         if (INODE_BUFFER_SIZE != write(DEV, inode_buffer, INODE_BUFFER_SIZE))
362                 die("unable to write inodes");
363
364 }
365
366 static void write_block(int blk, char *buffer)
367 {
368         if (blk * BLOCK_SIZE != lseek(DEV, blk * BLOCK_SIZE, SEEK_SET))
369                 die("seek failed in write_block");
370         if (BLOCK_SIZE != write(DEV, buffer, BLOCK_SIZE))
371                 die("write failed in write_block");
372 }
373
374 static int get_free_block(void)
375 {
376         int blk;
377
378         if (used_good_blocks + 1 >= MAX_GOOD_BLOCKS)
379                 die("too many bad blocks");
380         if (used_good_blocks)
381                 blk = good_blocks_table[used_good_blocks - 1] + 1;
382         else
383                 blk = FIRSTZONE;
384         while (blk < ZONES && zone_in_use(blk))
385                 blk++;
386         if (blk >= ZONES)
387                 die("not enough good blocks");
388         good_blocks_table[used_good_blocks] = blk;
389         used_good_blocks++;
390         return blk;
391 }
392
393 static void mark_good_blocks(void)
394 {
395         int blk;
396
397         for (blk = 0; blk < used_good_blocks; blk++)
398                 mark_zone(good_blocks_table[blk]);
399 }
400
401 inline int next(int zone)
402 {
403         if (!zone)
404                 zone = FIRSTZONE - 1;
405         while (++zone < ZONES)
406                 if (zone_in_use(zone))
407                         return zone;
408         return 0;
409 }
410
411 static void make_bad_inode(void)
412 {
413         struct minix_inode *inode = &Inode[MINIX_BAD_INO];
414         int i, j, zone;
415         int ind = 0, dind = 0;
416         unsigned short ind_block[BLOCK_SIZE >> 1];
417         unsigned short dind_block[BLOCK_SIZE >> 1];
418
419 #define NEXT_BAD (zone = next(zone))
420
421         if (!badblocks)
422                 return;
423         mark_inode(MINIX_BAD_INO);
424         inode->i_nlinks = 1;
425         inode->i_time = time(NULL);
426         inode->i_mode = S_IFREG + 0000;
427         inode->i_size = badblocks * BLOCK_SIZE;
428         zone = next(0);
429         for (i = 0; i < 7; i++) {
430                 inode->i_zone[i] = zone;
431                 if (!NEXT_BAD)
432                         goto end_bad;
433         }
434         inode->i_zone[7] = ind = get_free_block();
435         memset(ind_block, 0, BLOCK_SIZE);
436         for (i = 0; i < 512; i++) {
437                 ind_block[i] = zone;
438                 if (!NEXT_BAD)
439                         goto end_bad;
440         }
441         inode->i_zone[8] = dind = get_free_block();
442         memset(dind_block, 0, BLOCK_SIZE);
443         for (i = 0; i < 512; i++) {
444                 write_block(ind, (char *) ind_block);
445                 dind_block[i] = ind = get_free_block();
446                 memset(ind_block, 0, BLOCK_SIZE);
447                 for (j = 0; j < 512; j++) {
448                         ind_block[j] = zone;
449                         if (!NEXT_BAD)
450                                 goto end_bad;
451                 }
452         }
453         die("too many bad blocks");
454   end_bad:
455         if (ind)
456                 write_block(ind, (char *) ind_block);
457         if (dind)
458                 write_block(dind, (char *) dind_block);
459 }
460
461 #ifdef BB_FEATURE_MINIX2
462 static void make_bad_inode2(void)
463 {
464         struct minix2_inode *inode = &Inode2[MINIX_BAD_INO];
465         int i, j, zone;
466         int ind = 0, dind = 0;
467         unsigned long ind_block[BLOCK_SIZE >> 2];
468         unsigned long dind_block[BLOCK_SIZE >> 2];
469
470         if (!badblocks)
471                 return;
472         mark_inode(MINIX_BAD_INO);
473         inode->i_nlinks = 1;
474         inode->i_atime = inode->i_mtime = inode->i_ctime = time(NULL);
475         inode->i_mode = S_IFREG + 0000;
476         inode->i_size = badblocks * BLOCK_SIZE;
477         zone = next(0);
478         for (i = 0; i < 7; i++) {
479                 inode->i_zone[i] = zone;
480                 if (!NEXT_BAD)
481                         goto end_bad;
482         }
483         inode->i_zone[7] = ind = get_free_block();
484         memset(ind_block, 0, BLOCK_SIZE);
485         for (i = 0; i < 256; i++) {
486                 ind_block[i] = zone;
487                 if (!NEXT_BAD)
488                         goto end_bad;
489         }
490         inode->i_zone[8] = dind = get_free_block();
491         memset(dind_block, 0, BLOCK_SIZE);
492         for (i = 0; i < 256; i++) {
493                 write_block(ind, (char *) ind_block);
494                 dind_block[i] = ind = get_free_block();
495                 memset(ind_block, 0, BLOCK_SIZE);
496                 for (j = 0; j < 256; j++) {
497                         ind_block[j] = zone;
498                         if (!NEXT_BAD)
499                                 goto end_bad;
500                 }
501         }
502         /* Could make triple indirect block here */
503         die("too many bad blocks");
504   end_bad:
505         if (ind)
506                 write_block(ind, (char *) ind_block);
507         if (dind)
508                 write_block(dind, (char *) dind_block);
509 }
510 #endif
511
512 static void make_root_inode(void)
513 {
514         struct minix_inode *inode = &Inode[MINIX_ROOT_INO];
515
516         mark_inode(MINIX_ROOT_INO);
517         inode->i_zone[0] = get_free_block();
518         inode->i_nlinks = 2;
519         inode->i_time = time(NULL);
520         if (badblocks)
521                 inode->i_size = 3 * dirsize;
522         else {
523                 root_block[2 * dirsize] = '\0';
524                 root_block[2 * dirsize + 1] = '\0';
525                 inode->i_size = 2 * dirsize;
526         }
527         inode->i_mode = S_IFDIR + 0755;
528         inode->i_uid = getuid();
529         if (inode->i_uid)
530                 inode->i_gid = getgid();
531         write_block(inode->i_zone[0], root_block);
532 }
533
534 #ifdef BB_FEATURE_MINIX2
535 static void make_root_inode2(void)
536 {
537         struct minix2_inode *inode = &Inode2[MINIX_ROOT_INO];
538
539         mark_inode(MINIX_ROOT_INO);
540         inode->i_zone[0] = get_free_block();
541         inode->i_nlinks = 2;
542         inode->i_atime = inode->i_mtime = inode->i_ctime = time(NULL);
543         if (badblocks)
544                 inode->i_size = 3 * dirsize;
545         else {
546                 root_block[2 * dirsize] = '\0';
547                 root_block[2 * dirsize + 1] = '\0';
548                 inode->i_size = 2 * dirsize;
549         }
550         inode->i_mode = S_IFDIR + 0755;
551         inode->i_uid = getuid();
552         if (inode->i_uid)
553                 inode->i_gid = getgid();
554         write_block(inode->i_zone[0], root_block);
555 }
556 #endif
557
558 static void setup_tables(void)
559 {
560         int i;
561         unsigned long inodes;
562
563         memset(super_block_buffer, 0, BLOCK_SIZE);
564         memset(boot_block_buffer, 0, 512);
565         MAGIC = magic;
566         ZONESIZE = 0;
567         MAXSIZE = version2 ? 0x7fffffff : (7 + 512 + 512 * 512) * 1024;
568         ZONES = BLOCKS;
569 /* some magic nrs: 1 inode / 3 blocks */
570         if (req_nr_inodes == 0)
571                 inodes = BLOCKS / 3;
572         else
573                 inodes = req_nr_inodes;
574         /* Round up inode count to fill block size */
575 #ifdef BB_FEATURE_MINIX2
576         if (version2)
577                 inodes = ((inodes + MINIX2_INODES_PER_BLOCK - 1) &
578                                   ~(MINIX2_INODES_PER_BLOCK - 1));
579         else
580 #endif
581                 inodes = ((inodes + MINIX_INODES_PER_BLOCK - 1) &
582                                   ~(MINIX_INODES_PER_BLOCK - 1));
583         if (inodes > 65535)
584                 inodes = 65535;
585         INODES = inodes;
586         IMAPS = UPPER(INODES + 1, BITS_PER_BLOCK);
587         ZMAPS = 0;
588         i = 0;
589         while (ZMAPS !=
590                    UPPER(BLOCKS - (2 + IMAPS + ZMAPS + INODE_BLOCKS) + 1,
591                                  BITS_PER_BLOCK) && i < 1000) {
592                 ZMAPS =
593                         UPPER(BLOCKS - (2 + IMAPS + ZMAPS + INODE_BLOCKS) + 1,
594                                   BITS_PER_BLOCK);
595                 i++;
596         }
597         /* Real bad hack but overwise mkfs.minix can be thrown
598          * in infinite loop...
599          * try:
600          * dd if=/dev/zero of=test.fs count=10 bs=1024
601          * /sbin/mkfs.minix -i 200 test.fs
602          * */
603         if (i >= 999) {
604                 die("unable to allocate buffers for maps");
605         }
606         FIRSTZONE = NORM_FIRSTZONE;
607         inode_map = xmalloc(IMAPS * BLOCK_SIZE);
608         zone_map = xmalloc(ZMAPS * BLOCK_SIZE);
609         memset(inode_map, 0xff, IMAPS * BLOCK_SIZE);
610         memset(zone_map, 0xff, ZMAPS * BLOCK_SIZE);
611         for (i = FIRSTZONE; i < ZONES; i++)
612                 unmark_zone(i);
613         for (i = MINIX_ROOT_INO; i <= INODES; i++)
614                 unmark_inode(i);
615         inode_buffer = xmalloc(INODE_BUFFER_SIZE);
616         memset(inode_buffer, 0, INODE_BUFFER_SIZE);
617         printf("%ld inodes\n", INODES);
618         printf("%ld blocks\n", ZONES);
619         printf("Firstdatazone=%ld (%ld)\n", FIRSTZONE, NORM_FIRSTZONE);
620         printf("Zonesize=%d\n", BLOCK_SIZE << ZONESIZE);
621         printf("Maxsize=%ld\n\n", MAXSIZE);
622 }
623
624 /*
625  * Perform a test of a block; return the number of
626  * blocks readable/writeable.
627  */
628 long do_check(char *buffer, int try, unsigned int current_block)
629 {
630         long got;
631
632         /* Seek to the correct loc. */
633         if (lseek(DEV, current_block * BLOCK_SIZE, SEEK_SET) !=
634                 current_block * BLOCK_SIZE) {
635                 die("seek failed during testing of blocks");
636         }
637
638
639         /* Try the read */
640         got = read(DEV, buffer, try * BLOCK_SIZE);
641         if (got < 0)
642                 got = 0;
643         if (got & (BLOCK_SIZE - 1)) {
644                 printf("Weird values in do_check: probably bugs\n");
645         }
646         got /= BLOCK_SIZE;
647         return got;
648 }
649
650 static unsigned int currently_testing = 0;
651
652 static void alarm_intr(int alnum)
653 {
654         if (currently_testing >= ZONES)
655                 return;
656         signal(SIGALRM, alarm_intr);
657         alarm(5);
658         if (!currently_testing)
659                 return;
660         printf("%d ...", currently_testing);
661         fflush(stdout);
662 }
663
664 static void check_blocks(void)
665 {
666         int try, got;
667         static char buffer[BLOCK_SIZE * TEST_BUFFER_BLOCKS];
668
669         currently_testing = 0;
670         signal(SIGALRM, alarm_intr);
671         alarm(5);
672         while (currently_testing < ZONES) {
673                 if (lseek(DEV, currently_testing * BLOCK_SIZE, SEEK_SET) !=
674                         currently_testing * BLOCK_SIZE)
675                         die("seek failed in check_blocks");
676                 try = TEST_BUFFER_BLOCKS;
677                 if (currently_testing + try > ZONES)
678                         try = ZONES - currently_testing;
679                 got = do_check(buffer, try, currently_testing);
680                 currently_testing += got;
681                 if (got == try)
682                         continue;
683                 if (currently_testing < FIRSTZONE)
684                         die("bad blocks before data-area: cannot make fs");
685                 mark_zone(currently_testing);
686                 badblocks++;
687                 currently_testing++;
688         }
689         if (badblocks > 1)
690                 printf("%d bad blocks\n", badblocks);
691         else if (badblocks == 1)
692                 printf("one bad block\n");
693 }
694
695 static void get_list_blocks(filename)
696 char *filename;
697
698 {
699         FILE *listfile;
700         unsigned long blockno;
701
702         listfile = fopen(filename, "r");
703         if (listfile == (FILE *) NULL) {
704                 die("can't open file of bad blocks");
705         }
706         while (!feof(listfile)) {
707                 fscanf(listfile, "%ld\n", &blockno);
708                 mark_zone(blockno);
709                 badblocks++;
710         }
711         if (badblocks > 1)
712                 printf("%d bad blocks\n", badblocks);
713         else if (badblocks == 1)
714                 printf("one bad block\n");
715 }
716
717 extern int mkfs_minix_main(int argc, char **argv)
718 {
719         int i=1;
720         char *tmp;
721         struct stat statbuf;
722         char *listfile = NULL;
723         int stopIt=FALSE;
724
725         if (INODE_SIZE * MINIX_INODES_PER_BLOCK != BLOCK_SIZE)
726                 die("bad inode size");
727 #ifdef BB_FEATURE_MINIX2
728         if (INODE_SIZE2 * MINIX2_INODES_PER_BLOCK != BLOCK_SIZE)
729                 die("bad inode size");
730 #endif
731         
732         /* Parse options */
733         argv++;
734         while (--argc >= 0 && *argv && **argv) {
735                 if (**argv == '-') {
736                         stopIt=FALSE;
737                         while (i > 0 && *++(*argv) && stopIt==FALSE) {
738                                 switch (**argv) {
739                                         case 'c':
740                                                 check = 1;
741                                                 break;
742                                         case 'i':
743                                                 {
744                                                         char *cp=NULL;
745                                                         if (*(*argv+1) != 0) {
746                                                                 cp = ++(*argv);
747                                                         } else {
748                                                                 if (--argc == 0) {
749                                                                         goto goodbye;
750                                                                 }
751                                                                 cp = *(++argv);
752                                                         }
753                                                         req_nr_inodes = strtoul(cp, &tmp, 0);
754                                                         if (*tmp)
755                                                                 show_usage();
756                                                         stopIt=TRUE;
757                                                         break;
758                                                 }
759                                         case 'l':
760                                                 if (--argc == 0) {
761                                                         goto goodbye;
762                                                 }
763                                                 listfile = *(++argv);
764                                                 break;
765                                         case 'n':
766                                                 {
767                                                         char *cp=NULL;
768
769                                                         if (*(*argv+1) != 0) {
770                                                                 cp = ++(*argv);
771                                                         } else {
772                                                                 if (--argc == 0) {
773                                                                         goto goodbye;
774                                                                 }
775                                                                 cp = *(++argv);
776                                                         }
777                                                         i = strtoul(cp, &tmp, 0);
778                                                         if (*tmp)
779                                                                 show_usage();
780                                                         if (i == 14)
781                                                                 magic = MINIX_SUPER_MAGIC;
782                                                         else if (i == 30)
783                                                                 magic = MINIX_SUPER_MAGIC2;
784                                                         else 
785                                                                 show_usage();
786                                                         namelen = i;
787                                                         dirsize = i + 2;
788                                                         stopIt=TRUE;
789                                                         break;
790                                                 }
791                                         case 'v':
792 #ifdef BB_FEATURE_MINIX2
793                                                 version2 = 1;
794 #else
795                                                 errorMsg("%s: not compiled with minix v2 support\n",
796                                                                 device_name);
797                                                 exit(-1);
798 #endif
799                                                 break;
800                                         case '-':
801                                         case 'h':
802                                         default:
803 goodbye:
804                                                 show_usage();
805                                 }
806                         }
807                 } else {
808                         if (device_name == NULL)
809                                 device_name = *argv;
810                         else if (BLOCKS == 0)
811                                 BLOCKS = strtol(*argv, &tmp, 0);
812                         else {
813                                 goto goodbye;
814                         }
815                 }
816                 argv++;
817         }
818
819         if (device_name && !BLOCKS)
820                 BLOCKS = get_size(device_name) / 1024;
821         if (!device_name || BLOCKS < 10) {
822                 show_usage();
823         }
824 #ifdef BB_FEATURE_MINIX2
825         if (version2) {
826                 if (namelen == 14)
827                         magic = MINIX2_SUPER_MAGIC;
828                 else
829                         magic = MINIX2_SUPER_MAGIC2;
830         } else
831 #endif
832         if (BLOCKS > 65535)
833                 BLOCKS = 65535;
834         check_mount();                          /* is it already mounted? */
835         tmp = root_block;
836         *(short *) tmp = 1;
837         strcpy(tmp + 2, ".");
838         tmp += dirsize;
839         *(short *) tmp = 1;
840         strcpy(tmp + 2, "..");
841         tmp += dirsize;
842         *(short *) tmp = 2;
843         strcpy(tmp + 2, ".badblocks");
844         DEV = open(device_name, O_RDWR);
845         if (DEV < 0)
846                 die("unable to open %s");
847         if (fstat(DEV, &statbuf) < 0)
848                 die("unable to stat %s");
849         if (!S_ISBLK(statbuf.st_mode))
850                 check = 0;
851         else if (statbuf.st_rdev == 0x0300 || statbuf.st_rdev == 0x0340)
852                 die("will not try to make filesystem on '%s'");
853         setup_tables();
854         if (check)
855                 check_blocks();
856         else if (listfile)
857                 get_list_blocks(listfile);
858 #ifdef BB_FEATURE_MINIX2
859         if (version2) {
860                 make_root_inode2();
861                 make_bad_inode2();
862         } else
863 #endif
864         {
865                 make_root_inode();
866                 make_bad_inode();
867         }
868         mark_good_blocks();
869         write_tables();
870         return( 0);
871
872 }