diff: shrink code (-85 bytes):
[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 readability 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 "libbb.h"
66 #include <mntent.h>
67
68 #include "minix.h"
69
70 #define DEBUG 0
71
72 /* If debugging, store the very same times/uids/gids for image consistency */
73 #if DEBUG
74 # define CUR_TIME 0
75 # define GETUID 0
76 # define GETGID 0
77 #else
78 # define CUR_TIME time(NULL)
79 # define GETUID getuid()
80 # define GETGID getgid()
81 #endif
82
83 enum {
84         MAX_GOOD_BLOCKS         = 512,
85         TEST_BUFFER_BLOCKS      = 16,
86 };
87
88 #if !ENABLE_FEATURE_MINIX2
89 enum { version2 = 0 };
90 #endif
91
92 struct globals {
93
94         int dev_fd;
95
96 #if ENABLE_FEATURE_MINIX2
97         int version2;
98 #define version2 G.version2
99 #endif
100         char *device_name;
101         uint32_t total_blocks;
102         int badblocks;
103         int namelen;
104         int dirsize;
105         int magic;
106         char *inode_buffer;
107         char *inode_map;
108         char *zone_map;
109         int used_good_blocks;
110         unsigned long req_nr_inodes;
111         unsigned currently_testing;
112
113
114         char root_block[BLOCK_SIZE];
115         char super_block_buffer[BLOCK_SIZE];
116         char boot_block_buffer[512];
117         unsigned short good_blocks_table[MAX_GOOD_BLOCKS];
118         /* check_blocks(): buffer[] was the biggest static in entire bbox */
119         char check_blocks_buffer[BLOCK_SIZE * TEST_BUFFER_BLOCKS];
120 };
121
122 #define G (*ptr_to_globals)
123
124 static ALWAYS_INLINE unsigned div_roundup(unsigned size, unsigned n)
125 {
126         return (size + n-1) / n;
127 }
128
129 #define INODE_BUF1              (((struct minix1_inode*)G.inode_buffer) - 1)
130 #define INODE_BUF2              (((struct minix2_inode*)G.inode_buffer) - 1)
131
132 #define SB                      (*(struct minix_super_block*)G.super_block_buffer)
133
134 #define SB_INODES               (SB.s_ninodes)
135 #define SB_IMAPS                (SB.s_imap_blocks)
136 #define SB_ZMAPS                (SB.s_zmap_blocks)
137 #define SB_FIRSTZONE            (SB.s_firstdatazone)
138 #define SB_ZONE_SIZE            (SB.s_log_zone_size)
139 #define SB_MAXSIZE              (SB.s_max_size)
140 #define SB_MAGIC                (SB.s_magic)
141
142 #if !ENABLE_FEATURE_MINIX2
143 # define SB_ZONES               (SB.s_nzones)
144 # define INODE_BLOCKS           div_roundup(SB_INODES, MINIX1_INODES_PER_BLOCK)
145 #else
146 # define SB_ZONES               (version2 ? SB.s_zones : SB.s_nzones)
147 # define INODE_BLOCKS           div_roundup(SB_INODES, \
148                                 version2 ? MINIX2_INODES_PER_BLOCK : MINIX1_INODES_PER_BLOCK)
149 #endif
150
151 #define INODE_BUFFER_SIZE       (INODE_BLOCKS * BLOCK_SIZE)
152 #define NORM_FIRSTZONE          (2 + SB_IMAPS + SB_ZMAPS + INODE_BLOCKS)
153
154 /* Before you ask "where they come from?": */
155 /* setbit/clrbit are supplied by sys/param.h */
156
157 static int minix_bit(const char* a, unsigned i)
158 {
159           return a[i >> 3] & (1<<(i & 7));
160 }
161
162 static void minix_setbit(char *a, unsigned i)
163 {
164         setbit(a, i);
165 }
166 static void minix_clrbit(char *a, unsigned i)
167 {
168         clrbit(a, i);
169 }
170
171 /* Note: do not assume 0/1, it is 0/nonzero */
172 #define zone_in_use(x)  minix_bit(G.zone_map,(x)-SB_FIRSTZONE+1)
173 /*#define inode_in_use(x) minix_bit(G.inode_map,(x))*/
174
175 #define mark_inode(x)   minix_setbit(G.inode_map,(x))
176 #define unmark_inode(x) minix_clrbit(G.inode_map,(x))
177 #define mark_zone(x)    minix_setbit(G.zone_map,(x)-SB_FIRSTZONE+1)
178 #define unmark_zone(x)  minix_clrbit(G.zone_map,(x)-SB_FIRSTZONE+1)
179
180 #ifndef BLKGETSIZE
181 # define BLKGETSIZE     _IO(0x12,96)    /* return device size */
182 #endif
183
184
185 static long valid_offset(int fd, int offset)
186 {
187         char ch;
188
189         if (lseek(fd, offset, SEEK_SET) < 0)
190                 return 0;
191         if (read(fd, &ch, 1) < 1)
192                 return 0;
193         return 1;
194 }
195
196 static int count_blocks(int fd)
197 {
198         int high, low;
199
200         low = 0;
201         for (high = 1; valid_offset(fd, high); high *= 2)
202                 low = high;
203
204         while (low < high - 1) {
205                 const int mid = (low + high) / 2;
206
207                 if (valid_offset(fd, mid))
208                         low = mid;
209                 else
210                         high = mid;
211         }
212         valid_offset(fd, 0);
213         return (low + 1);
214 }
215
216 static int get_size(const char *file)
217 {
218         int fd;
219         long size;
220
221         fd = xopen(file, O_RDWR);
222         if (ioctl(fd, BLKGETSIZE, &size) >= 0) {
223                 close(fd);
224                 return (size * 512);
225         }
226
227         size = count_blocks(fd);
228         close(fd);
229         return size;
230 }
231
232 static void write_tables(void)
233 {
234         /* Mark the super block valid. */
235         SB.s_state |= MINIX_VALID_FS;
236         SB.s_state &= ~MINIX_ERROR_FS;
237
238         msg_eol = "seek to 0 failed";
239         xlseek(G.dev_fd, 0, SEEK_SET);
240
241         msg_eol = "cannot clear boot sector";
242         xwrite(G.dev_fd, G.boot_block_buffer, 512);
243
244         msg_eol = "seek to BLOCK_SIZE failed";
245         xlseek(G.dev_fd, BLOCK_SIZE, SEEK_SET);
246
247         msg_eol = "cannot write superblock";
248         xwrite(G.dev_fd, G.super_block_buffer, BLOCK_SIZE);
249
250         msg_eol = "cannot write inode map";
251         xwrite(G.dev_fd, G.inode_map, SB_IMAPS * BLOCK_SIZE);
252
253         msg_eol = "cannot write zone map";
254         xwrite(G.dev_fd, G.zone_map, SB_ZMAPS * BLOCK_SIZE);
255
256         msg_eol = "cannot write inodes";
257         xwrite(G.dev_fd, G.inode_buffer, INODE_BUFFER_SIZE);
258
259         msg_eol = "\n";
260 }
261
262 static void write_block(int blk, char *buffer)
263 {
264         xlseek(G.dev_fd, blk * BLOCK_SIZE, SEEK_SET);
265         xwrite(G.dev_fd, buffer, BLOCK_SIZE);
266 }
267
268 static int get_free_block(void)
269 {
270         int blk;
271
272         if (G.used_good_blocks + 1 >= MAX_GOOD_BLOCKS)
273                 bb_error_msg_and_die("too many bad blocks");
274         if (G.used_good_blocks)
275                 blk = G.good_blocks_table[G.used_good_blocks - 1] + 1;
276         else
277                 blk = SB_FIRSTZONE;
278         while (blk < SB_ZONES && zone_in_use(blk))
279                 blk++;
280         if (blk >= SB_ZONES)
281                 bb_error_msg_and_die("not enough good blocks");
282         G.good_blocks_table[G.used_good_blocks] = blk;
283         G.used_good_blocks++;
284         return blk;
285 }
286
287 static void mark_good_blocks(void)
288 {
289         int blk;
290
291         for (blk = 0; blk < G.used_good_blocks; blk++)
292                 mark_zone(G.good_blocks_table[blk]);
293 }
294
295 static int next(int zone)
296 {
297         if (!zone)
298                 zone = SB_FIRSTZONE - 1;
299         while (++zone < SB_ZONES)
300                 if (zone_in_use(zone))
301                         return zone;
302         return 0;
303 }
304
305 static void make_bad_inode(void)
306 {
307         struct minix1_inode *inode = &INODE_BUF1[MINIX_BAD_INO];
308         int i, j, zone;
309         int ind = 0, dind = 0;
310         unsigned short ind_block[BLOCK_SIZE >> 1];
311         unsigned short dind_block[BLOCK_SIZE >> 1];
312
313 #define NEXT_BAD (zone = next(zone))
314
315         if (!G.badblocks)
316                 return;
317         mark_inode(MINIX_BAD_INO);
318         inode->i_nlinks = 1;
319         /* BTW, setting this makes all images different */
320         /* it's harder to check for bugs then - diff isn't helpful :(... */
321         inode->i_time = CUR_TIME;
322         inode->i_mode = S_IFREG + 0000;
323         inode->i_size = G.badblocks * BLOCK_SIZE;
324         zone = next(0);
325         for (i = 0; i < 7; i++) {
326                 inode->i_zone[i] = zone;
327                 if (!NEXT_BAD)
328                         goto end_bad;
329         }
330         inode->i_zone[7] = ind = get_free_block();
331         memset(ind_block, 0, BLOCK_SIZE);
332         for (i = 0; i < 512; i++) {
333                 ind_block[i] = zone;
334                 if (!NEXT_BAD)
335                         goto end_bad;
336         }
337         inode->i_zone[8] = dind = get_free_block();
338         memset(dind_block, 0, BLOCK_SIZE);
339         for (i = 0; i < 512; i++) {
340                 write_block(ind, (char *) ind_block);
341                 dind_block[i] = ind = get_free_block();
342                 memset(ind_block, 0, BLOCK_SIZE);
343                 for (j = 0; j < 512; j++) {
344                         ind_block[j] = zone;
345                         if (!NEXT_BAD)
346                                 goto end_bad;
347                 }
348         }
349         bb_error_msg_and_die("too many bad blocks");
350  end_bad:
351         if (ind)
352                 write_block(ind, (char *) ind_block);
353         if (dind)
354                 write_block(dind, (char *) dind_block);
355 }
356
357 #if ENABLE_FEATURE_MINIX2
358 static void make_bad_inode2(void)
359 {
360         struct minix2_inode *inode = &INODE_BUF2[MINIX_BAD_INO];
361         int i, j, zone;
362         int ind = 0, dind = 0;
363         unsigned long ind_block[BLOCK_SIZE >> 2];
364         unsigned long dind_block[BLOCK_SIZE >> 2];
365
366         if (!G.badblocks)
367                 return;
368         mark_inode(MINIX_BAD_INO);
369         inode->i_nlinks = 1;
370         inode->i_atime = inode->i_mtime = inode->i_ctime = CUR_TIME;
371         inode->i_mode = S_IFREG + 0000;
372         inode->i_size = G.badblocks * BLOCK_SIZE;
373         zone = next(0);
374         for (i = 0; i < 7; i++) {
375                 inode->i_zone[i] = zone;
376                 if (!NEXT_BAD)
377                         goto end_bad;
378         }
379         inode->i_zone[7] = ind = get_free_block();
380         memset(ind_block, 0, BLOCK_SIZE);
381         for (i = 0; i < 256; i++) {
382                 ind_block[i] = zone;
383                 if (!NEXT_BAD)
384                         goto end_bad;
385         }
386         inode->i_zone[8] = dind = get_free_block();
387         memset(dind_block, 0, BLOCK_SIZE);
388         for (i = 0; i < 256; i++) {
389                 write_block(ind, (char *) ind_block);
390                 dind_block[i] = ind = get_free_block();
391                 memset(ind_block, 0, BLOCK_SIZE);
392                 for (j = 0; j < 256; j++) {
393                         ind_block[j] = zone;
394                         if (!NEXT_BAD)
395                                 goto end_bad;
396                 }
397         }
398         /* Could make triple indirect block here */
399         bb_error_msg_and_die("too many bad blocks");
400  end_bad:
401         if (ind)
402                 write_block(ind, (char *) ind_block);
403         if (dind)
404                 write_block(dind, (char *) dind_block);
405 }
406 #else
407 void make_bad_inode2(void);
408 #endif
409
410 static void make_root_inode(void)
411 {
412         struct minix1_inode *inode = &INODE_BUF1[MINIX_ROOT_INO];
413
414         mark_inode(MINIX_ROOT_INO);
415         inode->i_zone[0] = get_free_block();
416         inode->i_nlinks = 2;
417         inode->i_time = CUR_TIME;
418         if (G.badblocks)
419                 inode->i_size = 3 * G.dirsize;
420         else {
421                 G.root_block[2 * G.dirsize] = '\0';
422                 G.root_block[2 * G.dirsize + 1] = '\0';
423                 inode->i_size = 2 * G.dirsize;
424         }
425         inode->i_mode = S_IFDIR + 0755;
426         inode->i_uid = GETUID;
427         if (inode->i_uid)
428                 inode->i_gid = GETGID;
429         write_block(inode->i_zone[0], G.root_block);
430 }
431
432 #if ENABLE_FEATURE_MINIX2
433 static void make_root_inode2(void)
434 {
435         struct minix2_inode *inode = &INODE_BUF2[MINIX_ROOT_INO];
436
437         mark_inode(MINIX_ROOT_INO);
438         inode->i_zone[0] = get_free_block();
439         inode->i_nlinks = 2;
440         inode->i_atime = inode->i_mtime = inode->i_ctime = CUR_TIME;
441         if (G.badblocks)
442                 inode->i_size = 3 * G.dirsize;
443         else {
444                 G.root_block[2 * G.dirsize] = '\0';
445                 G.root_block[2 * G.dirsize + 1] = '\0';
446                 inode->i_size = 2 * G.dirsize;
447         }
448         inode->i_mode = S_IFDIR + 0755;
449         inode->i_uid = GETUID;
450         if (inode->i_uid)
451                 inode->i_gid = GETGID;
452         write_block(inode->i_zone[0], G.root_block);
453 }
454 #else
455 void make_root_inode2(void);
456 #endif
457
458 /*
459  * Perform a test of a block; return the number of
460  * blocks readable.
461  */
462 static size_t do_check(char *buffer, size_t try, unsigned current_block)
463 {
464         ssize_t got;
465
466         /* Seek to the correct loc. */
467         msg_eol = "seek failed during testing of blocks";
468         xlseek(G.dev_fd, current_block * BLOCK_SIZE, SEEK_SET);
469         msg_eol = "\n";
470
471         /* Try the read */
472         got = read(G.dev_fd, buffer, try * BLOCK_SIZE);
473         if (got < 0)
474                 got = 0;
475         try = ((size_t)got) / BLOCK_SIZE;
476
477         if (got & (BLOCK_SIZE - 1))
478                 fprintf(stderr, "Short read at block %u\n", (unsigned)(current_block + try));
479         return try;
480 }
481
482 static void alarm_intr(int alnum)
483 {
484         if (G.currently_testing >= SB_ZONES)
485                 return;
486         signal(SIGALRM, alarm_intr);
487         alarm(5);
488         if (!G.currently_testing)
489                 return;
490         printf("%d ...", G.currently_testing);
491         fflush(stdout);
492 }
493
494 static void check_blocks(void)
495 {
496         size_t try, got;
497
498         G.currently_testing = 0;
499         signal(SIGALRM, alarm_intr);
500         alarm(5);
501         while (G.currently_testing < SB_ZONES) {
502                 msg_eol = "seek failed in check_blocks";
503                 xlseek(G.dev_fd, G.currently_testing * BLOCK_SIZE, SEEK_SET);
504                 msg_eol = "\n";
505                 try = TEST_BUFFER_BLOCKS;
506                 if (G.currently_testing + try > SB_ZONES)
507                         try = SB_ZONES - G.currently_testing;
508                 got = do_check(G.check_blocks_buffer, try, G.currently_testing);
509                 G.currently_testing += got;
510                 if (got == try)
511                         continue;
512                 if (G.currently_testing < SB_FIRSTZONE)
513                         bb_error_msg_and_die("bad blocks before data-area: cannot make fs");
514                 mark_zone(G.currently_testing);
515                 G.badblocks++;
516                 G.currently_testing++;
517         }
518         alarm(0);
519         printf("%d bad block(s)\n", G.badblocks);
520 }
521
522 static void get_list_blocks(char *filename)
523 {
524         FILE *listfile;
525         unsigned long blockno;
526
527         listfile = xfopen(filename, "r");
528         while (!feof(listfile)) {
529                 fscanf(listfile, "%ld\n", &blockno);
530                 mark_zone(blockno);
531                 G.badblocks++;
532         }
533         printf("%d bad block(s)\n", G.badblocks);
534 }
535
536 static void setup_tables(void)
537 {
538         unsigned long inodes;
539         unsigned norm_firstzone;
540         unsigned sb_zmaps;
541         unsigned i;
542
543         /* memset(G.super_block_buffer, 0, BLOCK_SIZE); */
544         /* memset(G.boot_block_buffer, 0, 512); */
545         SB_MAGIC = G.magic;
546         SB_ZONE_SIZE = 0;
547         SB_MAXSIZE = version2 ? 0x7fffffff : (7 + 512 + 512 * 512) * 1024;
548         if (version2)
549                 SB.s_zones = G.total_blocks;
550         else
551                 SB.s_nzones = G.total_blocks;
552
553         /* some magic nrs: 1 inode / 3 blocks */
554         if (G.req_nr_inodes == 0)
555                 inodes = G.total_blocks / 3;
556         else
557                 inodes = G.req_nr_inodes;
558         /* Round up inode count to fill block size */
559         if (version2)
560                 inodes = (inodes + MINIX2_INODES_PER_BLOCK - 1) &
561                                  ~(MINIX2_INODES_PER_BLOCK - 1);
562         else
563                 inodes = (inodes + MINIX1_INODES_PER_BLOCK - 1) &
564                                  ~(MINIX1_INODES_PER_BLOCK - 1);
565         if (inodes > 65535)
566                 inodes = 65535;
567         SB_INODES = inodes;
568         SB_IMAPS = div_roundup(SB_INODES + 1, BITS_PER_BLOCK);
569
570         /* Real bad hack but overwise mkfs.minix can be thrown
571          * in infinite loop...
572          * try:
573          * dd if=/dev/zero of=test.fs count=10 bs=1024
574          * mkfs.minix -i 200 test.fs
575          */
576         /* This code is not insane: NORM_FIRSTZONE is not a constant,
577          * it is calculated from SB_INODES, SB_IMAPS and SB_ZMAPS */
578         i = 999;
579         SB_ZMAPS = 0;
580         do {
581                 norm_firstzone = NORM_FIRSTZONE;
582                 sb_zmaps = div_roundup(G.total_blocks - norm_firstzone + 1, BITS_PER_BLOCK);
583                 if (SB_ZMAPS == sb_zmaps) goto got_it;
584                 SB_ZMAPS = sb_zmaps;
585                 /* new SB_ZMAPS, need to recalc NORM_FIRSTZONE */
586         } while (--i);
587         bb_error_msg_and_die("incompatible size/inode count, try different -i N");
588  got_it:
589
590         SB_FIRSTZONE = norm_firstzone;
591         G.inode_map = xmalloc(SB_IMAPS * BLOCK_SIZE);
592         G.zone_map = xmalloc(SB_ZMAPS * BLOCK_SIZE);
593         memset(G.inode_map, 0xff, SB_IMAPS * BLOCK_SIZE);
594         memset(G.zone_map, 0xff, SB_ZMAPS * BLOCK_SIZE);
595         for (i = SB_FIRSTZONE; i < SB_ZONES; i++)
596                 unmark_zone(i);
597         for (i = MINIX_ROOT_INO; i <= SB_INODES; i++)
598                 unmark_inode(i);
599         G.inode_buffer = xzalloc(INODE_BUFFER_SIZE);
600         printf("%ld inodes\n", (long)SB_INODES);
601         printf("%ld blocks\n", (long)SB_ZONES);
602         printf("Firstdatazone=%ld (%ld)\n", (long)SB_FIRSTZONE, (long)norm_firstzone);
603         printf("Zonesize=%d\n", BLOCK_SIZE << SB_ZONE_SIZE);
604         printf("Maxsize=%ld\n", (long)SB_MAXSIZE);
605 }
606
607 int mkfs_minix_main(int argc, char **argv);
608 int mkfs_minix_main(int argc, char **argv)
609 {
610         struct mntent *mp;
611         unsigned opt;
612         char *tmp;
613         struct stat statbuf;
614         char *str_i, *str_n;
615         char *listfile = NULL;
616
617         PTR_TO_GLOBALS = xzalloc(sizeof(G));
618 /* default (changed to 30, per Linus's suggestion, Sun Nov 21 08:05:07 1993) */
619         G.namelen = 30;
620         G.dirsize = 32;
621         G.magic = MINIX1_SUPER_MAGIC2;
622
623         if (INODE_SIZE1 * MINIX1_INODES_PER_BLOCK != BLOCK_SIZE)
624                 bb_error_msg_and_die("bad inode size");
625 #if ENABLE_FEATURE_MINIX2
626         if (INODE_SIZE2 * MINIX2_INODES_PER_BLOCK != BLOCK_SIZE)
627                 bb_error_msg_and_die("bad inode size");
628 #endif
629
630         opt = getopt32(argc, argv, "ci:l:n:v", &str_i, &listfile, &str_n);
631         argv += optind;
632         //if (opt & 1) -c
633         if (opt & 2) G.req_nr_inodes = xatoul(str_i); // -i
634         //if (opt & 4) -l
635         if (opt & 8) { // -n
636                 G.namelen = xatoi_u(str_n);
637                 if (G.namelen == 14) G.magic = MINIX1_SUPER_MAGIC;
638                 else if (G.namelen == 30) G.magic = MINIX1_SUPER_MAGIC2;
639                 else bb_show_usage();
640                 G.dirsize = G.namelen + 2;
641         }
642         if (opt & 0x10) { // -v
643 #if ENABLE_FEATURE_MINIX2
644                 version2 = 1;
645 #else
646                 bb_error_msg_and_die("not compiled with minix v2 support");
647 #endif
648         }
649
650         G.device_name = *argv++;
651         if (!G.device_name)
652                 bb_show_usage();
653         if (*argv)
654                 G.total_blocks = xatou32(*argv);
655         else
656                 G.total_blocks = get_size(G.device_name) / 1024;
657
658         if (G.total_blocks < 10)
659                 bb_error_msg_and_die("must have at least 10 blocks");
660
661         if (version2) {
662                 G.magic = MINIX2_SUPER_MAGIC2;
663                 if (G.namelen == 14)
664                         G.magic = MINIX2_SUPER_MAGIC;
665         } else if (G.total_blocks > 65535)
666                 G.total_blocks = 65535;
667
668         /* Check if it is mounted */
669         mp = find_mount_point(G.device_name, NULL);
670         if (mp && strcmp(G.device_name, mp->mnt_fsname) == 0)
671                 bb_error_msg_and_die("%s is mounted on %s; "
672                                 "refusing to make a filesystem",
673                                 G.device_name, mp->mnt_dir);
674
675         G.dev_fd = xopen(G.device_name, O_RDWR);
676         if (fstat(G.dev_fd, &statbuf) < 0)
677                 bb_error_msg_and_die("cannot stat %s", G.device_name);
678         if (!S_ISBLK(statbuf.st_mode))
679                 opt &= ~1; // clear -c (check)
680
681 /* I don't know why someone has special code to prevent mkfs.minix
682  * on IDE devices. Why IDE but not SCSI, etc?... */
683 #if 0
684         else if (statbuf.st_rdev == 0x0300 || statbuf.st_rdev == 0x0340)
685                 /* what is this? */
686                 bb_error_msg_and_die("will not try "
687                         "to make filesystem on '%s'", G.device_name);
688 #endif
689
690         tmp = G.root_block;
691         *(short *) tmp = 1;
692         strcpy(tmp + 2, ".");
693         tmp += G.dirsize;
694         *(short *) tmp = 1;
695         strcpy(tmp + 2, "..");
696         tmp += G.dirsize;
697         *(short *) tmp = 2;
698         strcpy(tmp + 2, ".badblocks");
699
700         setup_tables();
701
702         if (opt & 1) // -c ?
703                 check_blocks();
704         else if (listfile)
705                 get_list_blocks(listfile);
706
707         if (version2) {
708                 make_root_inode2();
709                 make_bad_inode2();
710         } else {
711                 make_root_inode();
712                 make_bad_inode();
713         }
714
715         mark_good_blocks();
716         write_tables();
717         return 0;
718 }