Fix applet_name.
[oweals/busybox.git] / mkfs_minix.c
index 240dfded0349e482f32c380924bc272e187acecb..70374eae908248bfd62a3c42f74661cc29e4139c 100644 (file)
@@ -62,7 +62,6 @@
  *     removed getopt based parser and added a hand rolled one.
  */
 
-#include "internal.h"
 #include <stdio.h>
 #include <time.h>
 #include <unistd.h>
 #include <ctype.h>
 #include <stdlib.h>
 #include <termios.h>
-#include <sys/stat.h>
 #include <sys/ioctl.h>
 #include <sys/param.h>
 #include <mntent.h>
+#include "busybox.h"
 
 
 typedef unsigned char u8;
@@ -243,8 +242,12 @@ static unsigned short good_blocks_table[MAX_GOOD_BLOCKS];
 static int used_good_blocks = 0;
 static unsigned long req_nr_inodes = 0;
 
-#define inode_in_use(x) (isset(inode_map,(x)))
-#define zone_in_use(x) (isset(zone_map,(x)-FIRSTZONE+1))
+static inline int bit(char * a,unsigned int i)
+{
+         return (a[i >> 3] & (1<<(i & 7))) != 0;
+}
+#define inode_in_use(x) (bit(inode_map,(x)))
+#define zone_in_use(x) (bit(zone_map,(x)-FIRSTZONE+1))
 
 #define mark_inode(x) (setbit(inode_map,(x)))
 #define unmark_inode(x) (clrbit(inode_map,(x)))
@@ -252,23 +255,6 @@ static unsigned long req_nr_inodes = 0;
 #define mark_zone(x) (setbit(zone_map,(x)-FIRSTZONE+1))
 #define unmark_zone(x) (clrbit(zone_map,(x)-FIRSTZONE+1))
 
-/*
- * Volatile to let gcc know that this doesn't return. When trying
- * to compile this under minix, volatile gives a warning, as
- * exit() isn't defined as volatile under minix.
- */
-static volatile void die(char *str)
-{
-       errorMsg("%s\n", str);
-       exit(8);
-}
-
-static volatile void show_usage() __attribute__ ((noreturn));
-static volatile void show_usage()
-{
-       usage(mkfs_minix_usage);
-}
-
 /*
  * Check to make certain that our new filesystem won't be created on
  * an already mounted partition.  Code adapted from mke2fs, Copyright
@@ -288,7 +274,7 @@ static void check_mount(void)
        if (!mnt)
                return;
 
-       die("%s is mounted; will not make a filesystem here!");
+       error_msg_and_die("%s is mounted; will not make a filesystem here!", device_name);
 }
 
 static long valid_offset(int fd, int offset)
@@ -326,11 +312,8 @@ static int get_size(const char *file)
        int fd;
        long size;
 
-       fd = open(file, O_RDWR);
-       if (fd < 0) {
-               perror(file);
-               exit(1);
-       }
+       if ((fd = open(file, O_RDWR)) < 0)
+               perror_msg_and_die("%s", file);
        if (ioctl(fd, BLKGETSIZE, &size) >= 0) {
                close(fd);
                return (size * 512);
@@ -348,28 +331,28 @@ static void write_tables(void)
        Super.s_state &= ~MINIX_ERROR_FS;
 
        if (lseek(DEV, 0, SEEK_SET))
-               die("seek to boot block failed in write_tables");
+               error_msg_and_die("seek to boot block failed in write_tables");
        if (512 != write(DEV, boot_block_buffer, 512))
-               die("unable to clear boot sector");
+               error_msg_and_die("unable to clear boot sector");
        if (BLOCK_SIZE != lseek(DEV, BLOCK_SIZE, SEEK_SET))
-               die("seek failed in write_tables");
+               error_msg_and_die("seek failed in write_tables");
        if (BLOCK_SIZE != write(DEV, super_block_buffer, BLOCK_SIZE))
-               die("unable to write super-block");
+               error_msg_and_die("unable to write super-block");
        if (IMAPS * BLOCK_SIZE != write(DEV, inode_map, IMAPS * BLOCK_SIZE))
-               die("unable to write inode map");
+               error_msg_and_die("unable to write inode map");
        if (ZMAPS * BLOCK_SIZE != write(DEV, zone_map, ZMAPS * BLOCK_SIZE))
-               die("unable to write zone map");
+               error_msg_and_die("unable to write zone map");
        if (INODE_BUFFER_SIZE != write(DEV, inode_buffer, INODE_BUFFER_SIZE))
-               die("unable to write inodes");
+               error_msg_and_die("unable to write inodes");
 
 }
 
 static void write_block(int blk, char *buffer)
 {
        if (blk * BLOCK_SIZE != lseek(DEV, blk * BLOCK_SIZE, SEEK_SET))
-               die("seek failed in write_block");
+               error_msg_and_die("seek failed in write_block");
        if (BLOCK_SIZE != write(DEV, buffer, BLOCK_SIZE))
-               die("write failed in write_block");
+               error_msg_and_die("write failed in write_block");
 }
 
 static int get_free_block(void)
@@ -377,7 +360,7 @@ static int get_free_block(void)
        int blk;
 
        if (used_good_blocks + 1 >= MAX_GOOD_BLOCKS)
-               die("too many bad blocks");
+               error_msg_and_die("too many bad blocks");
        if (used_good_blocks)
                blk = good_blocks_table[used_good_blocks - 1] + 1;
        else
@@ -385,7 +368,7 @@ static int get_free_block(void)
        while (blk < ZONES && zone_in_use(blk))
                blk++;
        if (blk >= ZONES)
-               die("not enough good blocks");
+               error_msg_and_die("not enough good blocks");
        good_blocks_table[used_good_blocks] = blk;
        used_good_blocks++;
        return blk;
@@ -399,7 +382,7 @@ static void mark_good_blocks(void)
                mark_zone(good_blocks_table[blk]);
 }
 
-inline int next(int zone)
+static int next(int zone)
 {
        if (!zone)
                zone = FIRSTZONE - 1;
@@ -451,7 +434,7 @@ static void make_bad_inode(void)
                                goto end_bad;
                }
        }
-       die("too many bad blocks");
+       error_msg_and_die("too many bad blocks");
   end_bad:
        if (ind)
                write_block(ind, (char *) ind_block);
@@ -501,7 +484,7 @@ static void make_bad_inode2(void)
                }
        }
        /* Could make triple indirect block here */
-       die("too many bad blocks");
+       error_msg_and_die("too many bad blocks");
   end_bad:
        if (ind)
                write_block(ind, (char *) ind_block);
@@ -602,7 +585,7 @@ static void setup_tables(void)
         * /sbin/mkfs.minix -i 200 test.fs
         * */
        if (i >= 999) {
-               die("unable to allocate buffers for maps");
+               error_msg_and_die("unable to allocate buffers for maps");
        }
        FIRSTZONE = NORM_FIRSTZONE;
        inode_map = xmalloc(IMAPS * BLOCK_SIZE);
@@ -626,14 +609,14 @@ static void setup_tables(void)
  * Perform a test of a block; return the number of
  * blocks readable/writeable.
  */
-long do_check(char *buffer, int try, unsigned int current_block)
+static long do_check(char *buffer, int try, unsigned int current_block)
 {
        long got;
 
        /* Seek to the correct loc. */
        if (lseek(DEV, current_block * BLOCK_SIZE, SEEK_SET) !=
                current_block * BLOCK_SIZE) {
-               die("seek failed during testing of blocks");
+               error_msg_and_die("seek failed during testing of blocks");
        }
 
 
@@ -673,7 +656,7 @@ static void check_blocks(void)
        while (currently_testing < ZONES) {
                if (lseek(DEV, currently_testing * BLOCK_SIZE, SEEK_SET) !=
                        currently_testing * BLOCK_SIZE)
-                       die("seek failed in check_blocks");
+                       error_msg_and_die("seek failed in check_blocks");
                try = TEST_BUFFER_BLOCKS;
                if (currently_testing + try > ZONES)
                        try = ZONES - currently_testing;
@@ -682,7 +665,7 @@ static void check_blocks(void)
                if (got == try)
                        continue;
                if (currently_testing < FIRSTZONE)
-                       die("bad blocks before data-area: cannot make fs");
+                       error_msg_and_die("bad blocks before data-area: cannot make fs");
                mark_zone(currently_testing);
                badblocks++;
                currently_testing++;
@@ -700,10 +683,7 @@ char *filename;
        FILE *listfile;
        unsigned long blockno;
 
-       listfile = fopen(filename, "r");
-       if (listfile == (FILE *) NULL) {
-               die("can't open file of bad blocks");
-       }
+       listfile = xfopen(filename, "r");
        while (!feof(listfile)) {
                fscanf(listfile, "%ld\n", &blockno);
                mark_zone(blockno);
@@ -724,10 +704,10 @@ extern int mkfs_minix_main(int argc, char **argv)
        int stopIt=FALSE;
 
        if (INODE_SIZE * MINIX_INODES_PER_BLOCK != BLOCK_SIZE)
-               die("bad inode size");
+               error_msg_and_die("bad inode size");
 #ifdef BB_FEATURE_MINIX2
        if (INODE_SIZE2 * MINIX2_INODES_PER_BLOCK != BLOCK_SIZE)
-               die("bad inode size");
+               error_msg_and_die("bad inode size");
 #endif
        
        /* Parse options */
@@ -793,7 +773,7 @@ extern int mkfs_minix_main(int argc, char **argv)
 #ifdef BB_FEATURE_MINIX2
                                                version2 = 1;
 #else
-                                               errorMsg("%s: not compiled with minix v2 support\n",
+                                               error_msg("%s: not compiled with minix v2 support",
                                                                device_name);
                                                exit(-1);
 #endif
@@ -844,13 +824,13 @@ goodbye:
        strcpy(tmp + 2, ".badblocks");
        DEV = open(device_name, O_RDWR);
        if (DEV < 0)
-               die("unable to open %s");
+               error_msg_and_die("unable to open %s", device_name);
        if (fstat(DEV, &statbuf) < 0)
-               die("unable to stat %s");
+               error_msg_and_die("unable to stat %s", device_name);
        if (!S_ISBLK(statbuf.st_mode))
                check = 0;
        else if (statbuf.st_rdev == 0x0300 || statbuf.st_rdev == 0x0340)
-               die("will not try to make filesystem on '%s'");
+               error_msg_and_die("will not try to make filesystem on '%s'", device_name);
        setup_tables();
        if (check)
                check_blocks();