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