1 /* vi: set sw=4 ts=4: */
3 * mkfs.c - make a linux (minix) file-system.
5 * (C) 1991 Linus Torvalds. This file may be redistributed as per
12 * 24.11.91 - Time began. Used the fsck sources to get started.
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.
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)
21 * 28.02.92 - Added %-information when using -c.
23 * 28.02.93 - Added support for other namelengths than the original
24 * 14 characters so that I can test the new kernel routines..
26 * 09.10.93 - Make exit status conform to that required by fsutil
27 * (Rik Faith, faith@cs.unc.edu)
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)
33 * 03.01.94 - Added support for file system valid flag.
34 * (Dr. Wettstein, greg%wind.uucp@plains.nodak.edu)
36 * 30.10.94 - added support for v2 filesystem
37 * (Andreas Schwab, schwab@issan.informatik.uni-dortmund.de)
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)
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)
47 * 02.07.96 - Added small patch from Russell King to make the program a
48 * good deal more portable (janl@math.uio.no)
50 * Usage: mkfs [-c | -l filename ] [-v] [-nXX] [-iXX] device [size-in-blocks]
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
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 :-).
61 * Modified for BusyBox by Erik Andersen <andersen@debian.org> --
62 * removed getopt based parser and added a hand rolled one.
76 #include <sys/ioctl.h>
77 #include <sys/param.h>
81 typedef unsigned char u8;
82 typedef unsigned short u16;
83 typedef unsigned int u32;
86 #define MINIX_ROOT_INO 1
87 #define MINIX_LINK_MAX 250
88 #define MINIX2_LINK_MAX 65530
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. */
99 #define MINIX_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix_inode)))
100 #define MINIX2_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix2_inode)))
102 #define MINIX_V1 0x0001 /* original minix fs */
103 #define MINIX_V2 0x0002 /* minix V2 fs */
105 #define INODE_VERSION(inode) inode->i_sb->u.minix_sb.s_version
108 * This is the original minix inode layout on disk.
109 * Note the 8-bit gid and atime and ctime.
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.
127 struct minix2_inode {
140 * minix super-block data on disk
142 struct minix_super_block {
155 struct minix_dir_entry {
160 #define BLOCK_SIZE_BITS 10
161 #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)
163 #define NAME_MAX 255 /* # chars in a file name */
165 #define MINIX_INODES_PER_BLOCK ((BLOCK_SIZE)/(sizeof (struct minix_inode)))
167 #define MINIX_VALID_FS 0x0001 /* Clean fs. */
168 #define MINIX_ERROR_FS 0x0002 /* fs has errors. */
170 #define MINIX_SUPER_MAGIC 0x137F /* original minix fs */
171 #define MINIX_SUPER_MAGIC2 0x138F /* minix fs, 30 char names */
174 #define BLKGETSIZE _IO(0x12,96) /* return device size */
178 #ifdef MINIX2_SUPER_MAGIC2
179 #define HAVE_MINIX2 1
186 #define MINIX_ROOT_INO 1
187 #define MINIX_BAD_INO 2
189 #define TEST_BUFFER_BLOCKS 16
190 #define MAX_GOOD_BLOCKS 512
192 #define UPPER(size,n) (((size)+((n)-1))/(n))
193 #define INODE_SIZE (sizeof(struct minix_inode))
195 #define INODE_SIZE2 (sizeof(struct minix2_inode))
196 #define INODE_BLOCKS UPPER(INODES, (version2 ? MINIX2_INODES_PER_BLOCK \
197 : MINIX_INODES_PER_BLOCK))
199 #define INODE_BLOCKS UPPER(INODES, (MINIX_INODES_PER_BLOCK))
201 #define INODE_BUFFER_SIZE (INODE_BLOCKS * BLOCK_SIZE)
203 #define BITS_PER_BLOCK (BLOCK_SIZE<<3)
205 static char *program_name = "mkfs";
206 static char *device_name = NULL;
208 static long BLOCKS = 0;
209 static int check = 0;
210 static int badblocks = 0;
211 static int namelen = 30; /* default (changed to 30, per Linus's
213 suggestion, Sun Nov 21 08:05:07 1993) */
214 static int dirsize = 32;
215 static int magic = MINIX_SUPER_MAGIC2;
216 static int version2 = 0;
218 static char root_block[BLOCK_SIZE] = "\0";
220 static char *inode_buffer = NULL;
222 #define Inode (((struct minix_inode *) inode_buffer)-1)
224 #define Inode2 (((struct minix2_inode *) inode_buffer)-1)
226 static char super_block_buffer[BLOCK_SIZE];
227 static char boot_block_buffer[512];
229 #define Super (*(struct minix_super_block *)super_block_buffer)
230 #define INODES ((unsigned long)Super.s_ninodes)
232 #define ZONES ((unsigned long)(version2 ? Super.s_zones : Super.s_nzones))
234 #define ZONES ((unsigned long)(Super.s_nzones))
236 #define IMAPS ((unsigned long)Super.s_imap_blocks)
237 #define ZMAPS ((unsigned long)Super.s_zmap_blocks)
238 #define FIRSTZONE ((unsigned long)Super.s_firstdatazone)
239 #define ZONESIZE ((unsigned long)Super.s_log_zone_size)
240 #define MAXSIZE ((unsigned long)Super.s_max_size)
241 #define MAGIC (Super.s_magic)
242 #define NORM_FIRSTZONE (2+IMAPS+ZMAPS+INODE_BLOCKS)
244 static char *inode_map;
245 static char *zone_map;
247 static unsigned short good_blocks_table[MAX_GOOD_BLOCKS];
248 static int used_good_blocks = 0;
249 static unsigned long req_nr_inodes = 0;
251 #define inode_in_use(x) (isset(inode_map,(x)))
252 #define zone_in_use(x) (isset(zone_map,(x)-FIRSTZONE+1))
254 #define mark_inode(x) (setbit(inode_map,(x)))
255 #define unmark_inode(x) (clrbit(inode_map,(x)))
257 #define mark_zone(x) (setbit(zone_map,(x)-FIRSTZONE+1))
258 #define unmark_zone(x) (clrbit(zone_map,(x)-FIRSTZONE+1))
261 * Volatile to let gcc know that this doesn't return. When trying
262 * to compile this under minix, volatile gives a warning, as
263 * exit() isn't defined as volatile under minix.
265 static volatile void die(char *str)
267 fprintf(stderr, "%s: %s\n", program_name, str);
271 static volatile void show_usage() __attribute__ ((noreturn));
272 static volatile void show_usage()
274 fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n\n",
277 "Usage: %s [-c | -l filename] [-nXX] [-iXX] /dev/name [blocks]\n",
279 #ifndef BB_FEATURE_TRIVIAL_HELP
280 fprintf(stderr, "\nMake a MINIX filesystem.\n\n");
281 fprintf(stderr, "Options:\n");
282 fprintf(stderr, "\t-c\t\tCheck the device for bad blocks\n");
284 "\t-n [14|30]\tSpecify the maximum length of filenames\n");
286 "\t-i INODES\tSpecify the number of inodes for the filesystem\n");
288 "\t-l FILENAME\tRead the bad blocks list from FILENAME\n");
289 fprintf(stderr, "\t-v\t\tMake a Minix version 2 filesystem\n\n");
295 * Check to make certain that our new filesystem won't be created on
296 * an already mounted partition. Code adapted from mke2fs, Copyright
297 * (C) 1994 Theodore Ts'o. Also licensed under GPL.
299 static void check_mount(void)
304 if ((f = setmntent(MOUNTED, "r")) == NULL)
306 while ((mnt = getmntent(f)) != NULL)
307 if (strcmp(device_name, mnt->mnt_fsname) == 0)
313 die("%s is mounted; will not make a filesystem here!");
316 static long valid_offset(int fd, int offset)
320 if (lseek(fd, offset, 0) < 0)
322 if (read(fd, &ch, 1) < 1)
327 static int count_blocks(int fd)
332 for (high = 1; valid_offset(fd, high); high *= 2)
334 while (low < high - 1) {
335 const int mid = (low + high) / 2;
337 if (valid_offset(fd, mid))
346 static int get_size(const char *file)
351 fd = open(file, O_RDWR);
356 if (ioctl(fd, BLKGETSIZE, &size) >= 0) {
361 size = count_blocks(fd);
366 static void write_tables(void)
368 /* Mark the super block valid. */
369 Super.s_state |= MINIX_VALID_FS;
370 Super.s_state &= ~MINIX_ERROR_FS;
372 if (lseek(DEV, 0, SEEK_SET))
373 die("seek to boot block failed in write_tables");
374 if (512 != write(DEV, boot_block_buffer, 512))
375 die("unable to clear boot sector");
376 if (BLOCK_SIZE != lseek(DEV, BLOCK_SIZE, SEEK_SET))
377 die("seek failed in write_tables");
378 if (BLOCK_SIZE != write(DEV, super_block_buffer, BLOCK_SIZE))
379 die("unable to write super-block");
380 if (IMAPS * BLOCK_SIZE != write(DEV, inode_map, IMAPS * BLOCK_SIZE))
381 die("unable to write inode map");
382 if (ZMAPS * BLOCK_SIZE != write(DEV, zone_map, ZMAPS * BLOCK_SIZE))
383 die("unable to write zone map");
384 if (INODE_BUFFER_SIZE != write(DEV, inode_buffer, INODE_BUFFER_SIZE))
385 die("unable to write inodes");
389 static void write_block(int blk, char *buffer)
391 if (blk * BLOCK_SIZE != lseek(DEV, blk * BLOCK_SIZE, SEEK_SET))
392 die("seek failed in write_block");
393 if (BLOCK_SIZE != write(DEV, buffer, BLOCK_SIZE))
394 die("write failed in write_block");
397 static int get_free_block(void)
401 if (used_good_blocks + 1 >= MAX_GOOD_BLOCKS)
402 die("too many bad blocks");
403 if (used_good_blocks)
404 blk = good_blocks_table[used_good_blocks - 1] + 1;
407 while (blk < ZONES && zone_in_use(blk))
410 die("not enough good blocks");
411 good_blocks_table[used_good_blocks] = blk;
416 static void mark_good_blocks(void)
420 for (blk = 0; blk < used_good_blocks; blk++)
421 mark_zone(good_blocks_table[blk]);
424 inline int next(int zone)
427 zone = FIRSTZONE - 1;
428 while (++zone < ZONES)
429 if (zone_in_use(zone))
434 static void make_bad_inode(void)
436 struct minix_inode *inode = &Inode[MINIX_BAD_INO];
438 int ind = 0, dind = 0;
439 unsigned short ind_block[BLOCK_SIZE >> 1];
440 unsigned short dind_block[BLOCK_SIZE >> 1];
442 #define NEXT_BAD (zone = next(zone))
446 mark_inode(MINIX_BAD_INO);
448 inode->i_time = time(NULL);
449 inode->i_mode = S_IFREG + 0000;
450 inode->i_size = badblocks * BLOCK_SIZE;
452 for (i = 0; i < 7; i++) {
453 inode->i_zone[i] = zone;
457 inode->i_zone[7] = ind = get_free_block();
458 memset(ind_block, 0, BLOCK_SIZE);
459 for (i = 0; i < 512; i++) {
464 inode->i_zone[8] = dind = get_free_block();
465 memset(dind_block, 0, BLOCK_SIZE);
466 for (i = 0; i < 512; i++) {
467 write_block(ind, (char *) ind_block);
468 dind_block[i] = ind = get_free_block();
469 memset(ind_block, 0, BLOCK_SIZE);
470 for (j = 0; j < 512; j++) {
476 die("too many bad blocks");
479 write_block(ind, (char *) ind_block);
481 write_block(dind, (char *) dind_block);
485 static void make_bad_inode2(void)
487 struct minix2_inode *inode = &Inode2[MINIX_BAD_INO];
489 int ind = 0, dind = 0;
490 unsigned long ind_block[BLOCK_SIZE >> 2];
491 unsigned long dind_block[BLOCK_SIZE >> 2];
495 mark_inode(MINIX_BAD_INO);
497 inode->i_atime = inode->i_mtime = inode->i_ctime = time(NULL);
498 inode->i_mode = S_IFREG + 0000;
499 inode->i_size = badblocks * BLOCK_SIZE;
501 for (i = 0; i < 7; i++) {
502 inode->i_zone[i] = zone;
506 inode->i_zone[7] = ind = get_free_block();
507 memset(ind_block, 0, BLOCK_SIZE);
508 for (i = 0; i < 256; i++) {
513 inode->i_zone[8] = dind = get_free_block();
514 memset(dind_block, 0, BLOCK_SIZE);
515 for (i = 0; i < 256; i++) {
516 write_block(ind, (char *) ind_block);
517 dind_block[i] = ind = get_free_block();
518 memset(ind_block, 0, BLOCK_SIZE);
519 for (j = 0; j < 256; j++) {
525 /* Could make triple indirect block here */
526 die("too many bad blocks");
529 write_block(ind, (char *) ind_block);
531 write_block(dind, (char *) dind_block);
535 static void make_root_inode(void)
537 struct minix_inode *inode = &Inode[MINIX_ROOT_INO];
539 mark_inode(MINIX_ROOT_INO);
540 inode->i_zone[0] = get_free_block();
542 inode->i_time = time(NULL);
544 inode->i_size = 3 * dirsize;
546 root_block[2 * dirsize] = '\0';
547 root_block[2 * dirsize + 1] = '\0';
548 inode->i_size = 2 * dirsize;
550 inode->i_mode = S_IFDIR + 0755;
551 inode->i_uid = getuid();
553 inode->i_gid = getgid();
554 write_block(inode->i_zone[0], root_block);
558 static void make_root_inode2(void)
560 struct minix2_inode *inode = &Inode2[MINIX_ROOT_INO];
562 mark_inode(MINIX_ROOT_INO);
563 inode->i_zone[0] = get_free_block();
565 inode->i_atime = inode->i_mtime = inode->i_ctime = time(NULL);
567 inode->i_size = 3 * dirsize;
569 root_block[2 * dirsize] = '\0';
570 root_block[2 * dirsize + 1] = '\0';
571 inode->i_size = 2 * dirsize;
573 inode->i_mode = S_IFDIR + 0755;
574 inode->i_uid = getuid();
576 inode->i_gid = getgid();
577 write_block(inode->i_zone[0], root_block);
581 static void setup_tables(void)
584 unsigned long inodes;
586 memset(super_block_buffer, 0, BLOCK_SIZE);
587 memset(boot_block_buffer, 0, 512);
590 MAXSIZE = version2 ? 0x7fffffff : (7 + 512 + 512 * 512) * 1024;
592 /* some magic nrs: 1 inode / 3 blocks */
593 if (req_nr_inodes == 0)
596 inodes = req_nr_inodes;
597 /* Round up inode count to fill block size */
600 inodes = ((inodes + MINIX2_INODES_PER_BLOCK - 1) &
601 ~(MINIX2_INODES_PER_BLOCK - 1));
604 inodes = ((inodes + MINIX_INODES_PER_BLOCK - 1) &
605 ~(MINIX_INODES_PER_BLOCK - 1));
609 IMAPS = UPPER(INODES + 1, BITS_PER_BLOCK);
613 UPPER(BLOCKS - (2 + IMAPS + ZMAPS + INODE_BLOCKS) + 1,
614 BITS_PER_BLOCK) && i < 1000) {
616 UPPER(BLOCKS - (2 + IMAPS + ZMAPS + INODE_BLOCKS) + 1,
620 /* Real bad hack but overwise mkfs.minix can be thrown
621 * in infinite loop...
623 * dd if=/dev/zero of=test.fs count=10 bs=1024
624 * /sbin/mkfs.minix -i 200 test.fs
627 die("unable to allocate buffers for maps");
629 FIRSTZONE = NORM_FIRSTZONE;
630 inode_map = xmalloc(IMAPS * BLOCK_SIZE);
631 zone_map = xmalloc(ZMAPS * BLOCK_SIZE);
632 memset(inode_map, 0xff, IMAPS * BLOCK_SIZE);
633 memset(zone_map, 0xff, ZMAPS * BLOCK_SIZE);
634 for (i = FIRSTZONE; i < ZONES; i++)
636 for (i = MINIX_ROOT_INO; i <= INODES; i++)
638 inode_buffer = xmalloc(INODE_BUFFER_SIZE);
639 memset(inode_buffer, 0, INODE_BUFFER_SIZE);
640 printf("%ld inodes\n", INODES);
641 printf("%ld blocks\n", ZONES);
642 printf("Firstdatazone=%ld (%ld)\n", FIRSTZONE, NORM_FIRSTZONE);
643 printf("Zonesize=%d\n", BLOCK_SIZE << ZONESIZE);
644 printf("Maxsize=%ld\n\n", MAXSIZE);
648 * Perform a test of a block; return the number of
649 * blocks readable/writeable.
651 long do_check(char *buffer, int try, unsigned int current_block)
655 /* Seek to the correct loc. */
656 if (lseek(DEV, current_block * BLOCK_SIZE, SEEK_SET) !=
657 current_block * BLOCK_SIZE) {
658 die("seek failed during testing of blocks");
663 got = read(DEV, buffer, try * BLOCK_SIZE);
666 if (got & (BLOCK_SIZE - 1)) {
667 printf("Weird values in do_check: probably bugs\n");
673 static unsigned int currently_testing = 0;
675 static void alarm_intr(int alnum)
677 if (currently_testing >= ZONES)
679 signal(SIGALRM, alarm_intr);
681 if (!currently_testing)
683 printf("%d ...", currently_testing);
687 static void check_blocks(void)
690 static char buffer[BLOCK_SIZE * TEST_BUFFER_BLOCKS];
692 currently_testing = 0;
693 signal(SIGALRM, alarm_intr);
695 while (currently_testing < ZONES) {
696 if (lseek(DEV, currently_testing * BLOCK_SIZE, SEEK_SET) !=
697 currently_testing * BLOCK_SIZE)
698 die("seek failed in check_blocks");
699 try = TEST_BUFFER_BLOCKS;
700 if (currently_testing + try > ZONES)
701 try = ZONES - currently_testing;
702 got = do_check(buffer, try, currently_testing);
703 currently_testing += got;
706 if (currently_testing < FIRSTZONE)
707 die("bad blocks before data-area: cannot make fs");
708 mark_zone(currently_testing);
713 printf("%d bad blocks\n", badblocks);
714 else if (badblocks == 1)
715 printf("one bad block\n");
718 static void get_list_blocks(filename)
723 unsigned long blockno;
725 listfile = fopen(filename, "r");
726 if (listfile == (FILE *) NULL) {
727 die("can't open file of bad blocks");
729 while (!feof(listfile)) {
730 fscanf(listfile, "%ld\n", &blockno);
735 printf("%d bad blocks\n", badblocks);
736 else if (badblocks == 1)
737 printf("one bad block\n");
740 extern int mkfs_minix_main(int argc, char **argv)
745 char *listfile = NULL;
749 program_name = *argv;
750 if (INODE_SIZE * MINIX_INODES_PER_BLOCK != BLOCK_SIZE)
751 die("bad inode size");
753 if (INODE_SIZE2 * MINIX2_INODES_PER_BLOCK != BLOCK_SIZE)
754 die("bad inode size");
759 while (--argc >= 0 && *argv && **argv) {
762 while (i > 0 && *++(*argv) && stopIt==FALSE) {
770 if (*(*argv+1) != 0) {
778 req_nr_inodes = strtoul(cp, &tmp, 0);
788 listfile = *(++argv);
794 if (*(*argv+1) != 0) {
802 i = strtoul(cp, &tmp, 0);
806 magic = MINIX_SUPER_MAGIC;
808 magic = MINIX_SUPER_MAGIC2;
820 fprintf(stderr, "%s: not compiled with minix v2 support\n",
821 program_name, device_name);
833 if (device_name == NULL)
835 else if (BLOCKS == 0)
836 BLOCKS = strtol(*argv, &tmp, 0);
844 if (device_name && !BLOCKS)
845 BLOCKS = get_size(device_name) / 1024;
846 if (!device_name || BLOCKS < 10) {
852 magic = MINIX2_SUPER_MAGIC;
854 magic = MINIX2_SUPER_MAGIC2;
859 check_mount(); /* is it already mounted? */
862 strcpy(tmp + 2, ".");
865 strcpy(tmp + 2, "..");
868 strcpy(tmp + 2, ".badblocks");
869 DEV = open(device_name, O_RDWR);
871 die("unable to open %s");
872 if (fstat(DEV, &statbuf) < 0)
873 die("unable to stat %s");
874 if (!S_ISBLK(statbuf.st_mode))
876 else if (statbuf.st_rdev == 0x0300 || statbuf.st_rdev == 0x0340)
877 die("will not try to make filesystem on '%s'");
882 get_list_blocks(listfile);