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