2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-20 01:53:03 +05:30
|
|
|
/*
|
|
|
|
* mkfs.c - make a linux (minix) file-system.
|
|
|
|
*
|
2008-12-07 06:22:58 +05:30
|
|
|
* (C) 1991 Linus Torvalds.
|
|
|
|
*
|
|
|
|
* Licensed under GPLv2, see file LICENSE in this tarball for details.
|
1999-10-20 01:53:03 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* DD.MM.YY
|
|
|
|
*
|
|
|
|
* 24.11.91 - Time began. Used the fsck sources to get started.
|
|
|
|
*
|
|
|
|
* 25.11.91 - Corrected some bugs. Added support for ".badblocks"
|
|
|
|
* The algorithm for ".badblocks" is a bit weird, but
|
|
|
|
* it should work. Oh, well.
|
|
|
|
*
|
|
|
|
* 25.01.92 - Added the -l option for getting the list of bad blocks
|
|
|
|
* out of a named file. (Dave Rivers, rivers@ponds.uucp)
|
|
|
|
*
|
|
|
|
* 28.02.92 - Added %-information when using -c.
|
|
|
|
*
|
|
|
|
* 28.02.93 - Added support for other namelengths than the original
|
|
|
|
* 14 characters so that I can test the new kernel routines..
|
|
|
|
*
|
|
|
|
* 09.10.93 - Make exit status conform to that required by fsutil
|
|
|
|
* (Rik Faith, faith@cs.unc.edu)
|
|
|
|
*
|
|
|
|
* 31.10.93 - Added inode request feature, for backup floppies: use
|
|
|
|
* 32 inodes, for a news partition use more.
|
|
|
|
* (Scott Heavner, sdh@po.cwru.edu)
|
|
|
|
*
|
|
|
|
* 03.01.94 - Added support for file system valid flag.
|
|
|
|
* (Dr. Wettstein, greg%wind.uucp@plains.nodak.edu)
|
|
|
|
*
|
2006-11-30 04:03:47 +05:30
|
|
|
* 30.10.94 - added support for v2 filesystem
|
|
|
|
* (Andreas Schwab, schwab@issan.informatik.uni-dortmund.de)
|
2004-03-15 13:59:22 +05:30
|
|
|
*
|
1999-10-20 01:53:03 +05:30
|
|
|
* 09.11.94 - Added test to prevent overwrite of mounted fs adapted
|
|
|
|
* from Theodore Ts'o's (tytso@athena.mit.edu) mke2fs
|
|
|
|
* program. (Daniel Quinlan, quinlan@yggdrasil.com)
|
|
|
|
*
|
|
|
|
* 03.20.95 - Clear first 512 bytes of filesystem to make certain that
|
|
|
|
* the filesystem is not misidentified as a MS-DOS FAT filesystem.
|
|
|
|
* (Daniel Quinlan, quinlan@yggdrasil.com)
|
|
|
|
*
|
|
|
|
* 02.07.96 - Added small patch from Russell King to make the program a
|
|
|
|
* good deal more portable (janl@math.uio.no)
|
|
|
|
*
|
|
|
|
* Usage: mkfs [-c | -l filename ] [-v] [-nXX] [-iXX] device [size-in-blocks]
|
|
|
|
*
|
2004-04-14 23:21:38 +05:30
|
|
|
* -c for readability checking (SLOW!)
|
1999-10-20 01:53:03 +05:30
|
|
|
* -l for getting a list of bad blocks from a file.
|
|
|
|
* -n for namelength (currently the kernel only uses 14 or 30)
|
|
|
|
* -i for number of inodes
|
|
|
|
* -v for v2 filesystem
|
|
|
|
*
|
|
|
|
* The device may be a block device or a image of one, but this isn't
|
2004-03-15 13:59:22 +05:30
|
|
|
* enforced (but it's not much fun on a character device :-).
|
2000-05-19 11:05:19 +05:30
|
|
|
*
|
|
|
|
* Modified for BusyBox by Erik Andersen <andersen@debian.org> --
|
|
|
|
* removed getopt based parser and added a hand rolled one.
|
1999-10-20 01:53:03 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2006-08-03 21:11:12 +05:30
|
|
|
#include <mntent.h>
|
1999-10-20 01:53:03 +05:30
|
|
|
|
2007-01-03 06:13:19 +05:30
|
|
|
#include "minix.h"
|
|
|
|
|
2007-12-02 14:25:34 +05:30
|
|
|
/* Store the very same times/uids/gids for image consistency */
|
|
|
|
#if 1
|
2006-11-30 04:03:47 +05:30
|
|
|
# define CUR_TIME 0
|
|
|
|
# define GETUID 0
|
|
|
|
# define GETGID 0
|
|
|
|
#else
|
2007-12-02 14:25:34 +05:30
|
|
|
/* Was using this. Is it useful? NB: this will break testsuite */
|
2006-11-30 04:03:47 +05:30
|
|
|
# define CUR_TIME time(NULL)
|
|
|
|
# define GETUID getuid()
|
|
|
|
# define GETGID getgid()
|
|
|
|
#endif
|
2000-07-11 04:16:55 +05:30
|
|
|
|
2006-11-30 04:03:47 +05:30
|
|
|
enum {
|
|
|
|
MAX_GOOD_BLOCKS = 512,
|
|
|
|
TEST_BUFFER_BLOCKS = 16,
|
|
|
|
};
|
2006-11-29 23:45:52 +05:30
|
|
|
|
2007-03-16 01:22:42 +05:30
|
|
|
#if !ENABLE_FEATURE_MINIX2
|
2006-11-30 04:03:47 +05:30
|
|
|
enum { version2 = 0 };
|
1999-10-20 01:53:03 +05:30
|
|
|
#endif
|
2006-11-29 23:45:52 +05:30
|
|
|
|
2008-06-25 15:30:58 +05:30
|
|
|
enum { dev_fd = 3 };
|
1999-10-20 01:53:03 +05:30
|
|
|
|
2008-06-25 15:30:58 +05:30
|
|
|
struct globals {
|
2007-03-16 01:22:42 +05:30
|
|
|
#if ENABLE_FEATURE_MINIX2
|
2007-06-13 17:57:17 +05:30
|
|
|
smallint version2;
|
2007-03-16 01:22:42 +05:30
|
|
|
#define version2 G.version2
|
|
|
|
#endif
|
|
|
|
char *device_name;
|
|
|
|
uint32_t total_blocks;
|
|
|
|
int badblocks;
|
|
|
|
int namelen;
|
|
|
|
int dirsize;
|
|
|
|
int magic;
|
|
|
|
char *inode_buffer;
|
|
|
|
char *inode_map;
|
|
|
|
char *zone_map;
|
|
|
|
int used_good_blocks;
|
|
|
|
unsigned long req_nr_inodes;
|
|
|
|
unsigned currently_testing;
|
|
|
|
|
|
|
|
char root_block[BLOCK_SIZE];
|
2008-07-21 19:03:22 +05:30
|
|
|
char superblock_buffer[BLOCK_SIZE];
|
2007-03-16 01:22:42 +05:30
|
|
|
char boot_block_buffer[512];
|
|
|
|
unsigned short good_blocks_table[MAX_GOOD_BLOCKS];
|
2007-03-18 20:13:21 +05:30
|
|
|
/* check_blocks(): buffer[] was the biggest static in entire bbox */
|
|
|
|
char check_blocks_buffer[BLOCK_SIZE * TEST_BUFFER_BLOCKS];
|
1999-10-20 01:53:03 +05:30
|
|
|
|
2007-12-02 14:05:37 +05:30
|
|
|
unsigned short ind_block1[BLOCK_SIZE >> 1];
|
|
|
|
unsigned short dind_block1[BLOCK_SIZE >> 1];
|
|
|
|
unsigned long ind_block2[BLOCK_SIZE >> 2];
|
|
|
|
unsigned long dind_block2[BLOCK_SIZE >> 2];
|
|
|
|
};
|
2007-03-16 01:22:42 +05:30
|
|
|
#define G (*ptr_to_globals)
|
2007-12-02 14:05:37 +05:30
|
|
|
#define INIT_G() do { \
|
2008-02-28 00:11:59 +05:30
|
|
|
SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
|
2007-12-02 14:05:37 +05:30
|
|
|
} while (0)
|
1999-10-20 01:53:03 +05:30
|
|
|
|
2007-06-13 02:24:54 +05:30
|
|
|
static ALWAYS_INLINE unsigned div_roundup(unsigned size, unsigned n)
|
2006-11-30 04:03:47 +05:30
|
|
|
{
|
|
|
|
return (size + n-1) / n;
|
|
|
|
}
|
|
|
|
|
2007-03-16 01:22:42 +05:30
|
|
|
#define INODE_BUF1 (((struct minix1_inode*)G.inode_buffer) - 1)
|
|
|
|
#define INODE_BUF2 (((struct minix2_inode*)G.inode_buffer) - 1)
|
2006-11-30 04:03:47 +05:30
|
|
|
|
2008-07-21 19:03:22 +05:30
|
|
|
#define SB (*(struct minix_superblock*)G.superblock_buffer)
|
2006-11-30 04:03:47 +05:30
|
|
|
|
|
|
|
#define SB_INODES (SB.s_ninodes)
|
|
|
|
#define SB_IMAPS (SB.s_imap_blocks)
|
|
|
|
#define SB_ZMAPS (SB.s_zmap_blocks)
|
|
|
|
#define SB_FIRSTZONE (SB.s_firstdatazone)
|
|
|
|
#define SB_ZONE_SIZE (SB.s_log_zone_size)
|
|
|
|
#define SB_MAXSIZE (SB.s_max_size)
|
|
|
|
#define SB_MAGIC (SB.s_magic)
|
|
|
|
|
|
|
|
#if !ENABLE_FEATURE_MINIX2
|
|
|
|
# define SB_ZONES (SB.s_nzones)
|
|
|
|
# define INODE_BLOCKS div_roundup(SB_INODES, MINIX1_INODES_PER_BLOCK)
|
|
|
|
#else
|
|
|
|
# define SB_ZONES (version2 ? SB.s_zones : SB.s_nzones)
|
|
|
|
# define INODE_BLOCKS div_roundup(SB_INODES, \
|
2008-06-25 15:23:17 +05:30
|
|
|
(version2 ? MINIX2_INODES_PER_BLOCK : MINIX1_INODES_PER_BLOCK))
|
2006-11-30 04:03:47 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
#define INODE_BUFFER_SIZE (INODE_BLOCKS * BLOCK_SIZE)
|
|
|
|
#define NORM_FIRSTZONE (2 + SB_IMAPS + SB_ZMAPS + INODE_BLOCKS)
|
|
|
|
|
2007-02-06 06:07:40 +05:30
|
|
|
/* Before you ask "where they come from?": */
|
|
|
|
/* setbit/clrbit are supplied by sys/param.h */
|
|
|
|
|
|
|
|
static int minix_bit(const char* a, unsigned i)
|
2000-09-20 02:43:55 +05:30
|
|
|
{
|
2008-11-23 00:28:11 +05:30
|
|
|
return a[i >> 3] & (1<<(i & 7));
|
2000-09-20 02:43:55 +05:30
|
|
|
}
|
1999-10-20 01:53:03 +05:30
|
|
|
|
2007-02-06 06:07:40 +05:30
|
|
|
static void minix_setbit(char *a, unsigned i)
|
|
|
|
{
|
|
|
|
setbit(a, i);
|
|
|
|
}
|
|
|
|
static void minix_clrbit(char *a, unsigned i)
|
|
|
|
{
|
|
|
|
clrbit(a, i);
|
|
|
|
}
|
2007-02-06 06:06:53 +05:30
|
|
|
|
2006-11-30 04:03:47 +05:30
|
|
|
/* Note: do not assume 0/1, it is 0/nonzero */
|
2007-03-16 01:22:42 +05:30
|
|
|
#define zone_in_use(x) minix_bit(G.zone_map,(x)-SB_FIRSTZONE+1)
|
|
|
|
/*#define inode_in_use(x) minix_bit(G.inode_map,(x))*/
|
2006-11-30 04:03:47 +05:30
|
|
|
|
2007-03-16 01:22:42 +05:30
|
|
|
#define mark_inode(x) minix_setbit(G.inode_map,(x))
|
|
|
|
#define unmark_inode(x) minix_clrbit(G.inode_map,(x))
|
|
|
|
#define mark_zone(x) minix_setbit(G.zone_map,(x)-SB_FIRSTZONE+1)
|
|
|
|
#define unmark_zone(x) minix_clrbit(G.zone_map,(x)-SB_FIRSTZONE+1)
|
2006-11-30 04:03:47 +05:30
|
|
|
|
|
|
|
#ifndef BLKGETSIZE
|
|
|
|
# define BLKGETSIZE _IO(0x12,96) /* return device size */
|
|
|
|
#endif
|
1999-10-20 01:53:03 +05:30
|
|
|
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
static long valid_offset(int fd, int offset)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
|
|
|
char ch;
|
|
|
|
|
2006-11-29 23:45:52 +05:30
|
|
|
if (lseek(fd, offset, SEEK_SET) < 0)
|
1999-10-20 01:53:03 +05:30
|
|
|
return 0;
|
2000-02-09 01:28:47 +05:30
|
|
|
if (read(fd, &ch, 1) < 1)
|
1999-10-20 01:53:03 +05:30
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-08-30 01:11:06 +05:30
|
|
|
static int count_blocks(int fd)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
|
|
|
int high, low;
|
|
|
|
|
|
|
|
low = 0;
|
2000-02-09 01:28:47 +05:30
|
|
|
for (high = 1; valid_offset(fd, high); high *= 2)
|
1999-10-20 01:53:03 +05:30
|
|
|
low = high;
|
2006-11-29 23:45:52 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
while (low < high - 1) {
|
1999-10-20 01:53:03 +05:30
|
|
|
const int mid = (low + high) / 2;
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (valid_offset(fd, mid))
|
1999-10-20 01:53:03 +05:30
|
|
|
low = mid;
|
|
|
|
else
|
|
|
|
high = mid;
|
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
valid_offset(fd, 0);
|
1999-10-20 01:53:03 +05:30
|
|
|
return (low + 1);
|
|
|
|
}
|
|
|
|
|
2006-08-30 01:11:06 +05:30
|
|
|
static int get_size(const char *file)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
int fd;
|
|
|
|
long size;
|
1999-10-20 01:53:03 +05:30
|
|
|
|
2006-09-11 21:31:40 +05:30
|
|
|
fd = xopen(file, O_RDWR);
|
1999-10-20 01:53:03 +05:30
|
|
|
if (ioctl(fd, BLKGETSIZE, &size) >= 0) {
|
|
|
|
close(fd);
|
|
|
|
return (size * 512);
|
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
|
1999-10-20 01:53:03 +05:30
|
|
|
size = count_blocks(fd);
|
|
|
|
close(fd);
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2006-08-30 01:11:06 +05:30
|
|
|
static void write_tables(void)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
2008-07-21 19:03:22 +05:30
|
|
|
/* Mark the superblock valid. */
|
2006-11-30 04:03:47 +05:30
|
|
|
SB.s_state |= MINIX_VALID_FS;
|
|
|
|
SB.s_state &= ~MINIX_ERROR_FS;
|
1999-10-20 01:53:03 +05:30
|
|
|
|
2006-11-29 23:45:52 +05:30
|
|
|
msg_eol = "seek to 0 failed";
|
2008-06-25 15:30:58 +05:30
|
|
|
xlseek(dev_fd, 0, SEEK_SET);
|
2006-11-29 23:45:52 +05:30
|
|
|
|
|
|
|
msg_eol = "cannot clear boot sector";
|
2008-06-25 15:30:58 +05:30
|
|
|
xwrite(dev_fd, G.boot_block_buffer, 512);
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2006-11-29 23:45:52 +05:30
|
|
|
msg_eol = "seek to BLOCK_SIZE failed";
|
2008-06-25 15:30:58 +05:30
|
|
|
xlseek(dev_fd, BLOCK_SIZE, SEEK_SET);
|
2006-11-29 23:45:52 +05:30
|
|
|
|
|
|
|
msg_eol = "cannot write superblock";
|
2008-07-21 19:03:22 +05:30
|
|
|
xwrite(dev_fd, G.superblock_buffer, BLOCK_SIZE);
|
2006-11-29 23:45:52 +05:30
|
|
|
|
|
|
|
msg_eol = "cannot write inode map";
|
2008-06-25 15:30:58 +05:30
|
|
|
xwrite(dev_fd, G.inode_map, SB_IMAPS * BLOCK_SIZE);
|
2006-11-29 23:45:52 +05:30
|
|
|
|
|
|
|
msg_eol = "cannot write zone map";
|
2008-06-25 15:30:58 +05:30
|
|
|
xwrite(dev_fd, G.zone_map, SB_ZMAPS * BLOCK_SIZE);
|
2006-11-29 23:45:52 +05:30
|
|
|
|
|
|
|
msg_eol = "cannot write inodes";
|
2008-06-25 15:30:58 +05:30
|
|
|
xwrite(dev_fd, G.inode_buffer, INODE_BUFFER_SIZE);
|
2006-11-29 23:45:52 +05:30
|
|
|
|
|
|
|
msg_eol = "\n";
|
1999-10-20 01:53:03 +05:30
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
static void write_block(int blk, char *buffer)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
2008-06-25 15:30:58 +05:30
|
|
|
xlseek(dev_fd, blk * BLOCK_SIZE, SEEK_SET);
|
|
|
|
xwrite(dev_fd, buffer, BLOCK_SIZE);
|
1999-10-20 01:53:03 +05:30
|
|
|
}
|
|
|
|
|
1999-10-20 02:22:57 +05:30
|
|
|
static int get_free_block(void)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
|
|
|
int blk;
|
|
|
|
|
2007-03-16 01:22:42 +05:30
|
|
|
if (G.used_good_blocks + 1 >= MAX_GOOD_BLOCKS)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("too many bad blocks");
|
2007-03-16 01:22:42 +05:30
|
|
|
if (G.used_good_blocks)
|
|
|
|
blk = G.good_blocks_table[G.used_good_blocks - 1] + 1;
|
1999-10-20 01:53:03 +05:30
|
|
|
else
|
2006-11-30 04:03:47 +05:30
|
|
|
blk = SB_FIRSTZONE;
|
|
|
|
while (blk < SB_ZONES && zone_in_use(blk))
|
1999-10-20 01:53:03 +05:30
|
|
|
blk++;
|
2006-11-30 04:03:47 +05:30
|
|
|
if (blk >= SB_ZONES)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("not enough good blocks");
|
2007-03-16 01:22:42 +05:30
|
|
|
G.good_blocks_table[G.used_good_blocks] = blk;
|
|
|
|
G.used_good_blocks++;
|
1999-10-20 01:53:03 +05:30
|
|
|
return blk;
|
|
|
|
}
|
|
|
|
|
2006-08-30 01:11:06 +05:30
|
|
|
static void mark_good_blocks(void)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
|
|
|
int blk;
|
|
|
|
|
2007-03-16 01:22:42 +05:30
|
|
|
for (blk = 0; blk < G.used_good_blocks; blk++)
|
|
|
|
mark_zone(G.good_blocks_table[blk]);
|
1999-10-20 01:53:03 +05:30
|
|
|
}
|
|
|
|
|
2001-03-20 05:19:41 +05:30
|
|
|
static int next(int zone)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
|
|
|
if (!zone)
|
2006-11-30 04:03:47 +05:30
|
|
|
zone = SB_FIRSTZONE - 1;
|
|
|
|
while (++zone < SB_ZONES)
|
1999-10-20 01:53:03 +05:30
|
|
|
if (zone_in_use(zone))
|
|
|
|
return zone;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-08-30 01:11:06 +05:30
|
|
|
static void make_bad_inode(void)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
2006-11-30 04:03:47 +05:30
|
|
|
struct minix1_inode *inode = &INODE_BUF1[MINIX_BAD_INO];
|
2000-02-09 01:28:47 +05:30
|
|
|
int i, j, zone;
|
|
|
|
int ind = 0, dind = 0;
|
2007-12-02 14:05:37 +05:30
|
|
|
/* moved to globals to reduce stack usage
|
2000-02-09 01:28:47 +05:30
|
|
|
unsigned short ind_block[BLOCK_SIZE >> 1];
|
|
|
|
unsigned short dind_block[BLOCK_SIZE >> 1];
|
2007-12-02 14:05:37 +05:30
|
|
|
*/
|
|
|
|
#define ind_block (G.ind_block1)
|
|
|
|
#define dind_block (G.dind_block1)
|
1999-10-20 01:53:03 +05:30
|
|
|
|
|
|
|
#define NEXT_BAD (zone = next(zone))
|
|
|
|
|
2007-03-16 01:22:42 +05:30
|
|
|
if (!G.badblocks)
|
1999-10-20 01:53:03 +05:30
|
|
|
return;
|
|
|
|
mark_inode(MINIX_BAD_INO);
|
|
|
|
inode->i_nlinks = 1;
|
2006-11-29 23:45:52 +05:30
|
|
|
/* BTW, setting this makes all images different */
|
|
|
|
/* it's harder to check for bugs then - diff isn't helpful :(... */
|
2006-11-30 04:03:47 +05:30
|
|
|
inode->i_time = CUR_TIME;
|
1999-10-20 01:53:03 +05:30
|
|
|
inode->i_mode = S_IFREG + 0000;
|
2007-03-16 01:22:42 +05:30
|
|
|
inode->i_size = G.badblocks * BLOCK_SIZE;
|
1999-10-20 01:53:03 +05:30
|
|
|
zone = next(0);
|
2000-02-09 01:28:47 +05:30
|
|
|
for (i = 0; i < 7; i++) {
|
1999-10-20 01:53:03 +05:30
|
|
|
inode->i_zone[i] = zone;
|
|
|
|
if (!NEXT_BAD)
|
|
|
|
goto end_bad;
|
|
|
|
}
|
|
|
|
inode->i_zone[7] = ind = get_free_block();
|
2000-02-09 01:28:47 +05:30
|
|
|
memset(ind_block, 0, BLOCK_SIZE);
|
|
|
|
for (i = 0; i < 512; i++) {
|
1999-10-20 01:53:03 +05:30
|
|
|
ind_block[i] = zone;
|
|
|
|
if (!NEXT_BAD)
|
|
|
|
goto end_bad;
|
|
|
|
}
|
|
|
|
inode->i_zone[8] = dind = get_free_block();
|
2000-02-09 01:28:47 +05:30
|
|
|
memset(dind_block, 0, BLOCK_SIZE);
|
|
|
|
for (i = 0; i < 512; i++) {
|
|
|
|
write_block(ind, (char *) ind_block);
|
1999-10-20 01:53:03 +05:30
|
|
|
dind_block[i] = ind = get_free_block();
|
2000-02-09 01:28:47 +05:30
|
|
|
memset(ind_block, 0, BLOCK_SIZE);
|
|
|
|
for (j = 0; j < 512; j++) {
|
1999-10-20 01:53:03 +05:30
|
|
|
ind_block[j] = zone;
|
|
|
|
if (!NEXT_BAD)
|
|
|
|
goto end_bad;
|
|
|
|
}
|
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("too many bad blocks");
|
2006-11-30 04:03:47 +05:30
|
|
|
end_bad:
|
1999-10-20 01:53:03 +05:30
|
|
|
if (ind)
|
|
|
|
write_block(ind, (char *) ind_block);
|
|
|
|
if (dind)
|
|
|
|
write_block(dind, (char *) dind_block);
|
2007-12-02 14:05:37 +05:30
|
|
|
#undef ind_block
|
|
|
|
#undef dind_block
|
1999-10-20 01:53:03 +05:30
|
|
|
}
|
|
|
|
|
2006-11-29 23:45:52 +05:30
|
|
|
#if ENABLE_FEATURE_MINIX2
|
2006-08-30 01:11:06 +05:30
|
|
|
static void make_bad_inode2(void)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
2006-11-30 04:03:47 +05:30
|
|
|
struct minix2_inode *inode = &INODE_BUF2[MINIX_BAD_INO];
|
1999-10-20 01:53:03 +05:30
|
|
|
int i, j, zone;
|
|
|
|
int ind = 0, dind = 0;
|
2007-12-02 14:05:37 +05:30
|
|
|
/* moved to globals to reduce stack usage
|
1999-10-20 01:53:03 +05:30
|
|
|
unsigned long ind_block[BLOCK_SIZE >> 2];
|
|
|
|
unsigned long dind_block[BLOCK_SIZE >> 2];
|
2007-12-02 14:05:37 +05:30
|
|
|
*/
|
|
|
|
#define ind_block (G.ind_block2)
|
|
|
|
#define dind_block (G.dind_block2)
|
1999-10-20 01:53:03 +05:30
|
|
|
|
2007-03-16 01:22:42 +05:30
|
|
|
if (!G.badblocks)
|
1999-10-20 01:53:03 +05:30
|
|
|
return;
|
2000-02-09 01:28:47 +05:30
|
|
|
mark_inode(MINIX_BAD_INO);
|
1999-10-20 01:53:03 +05:30
|
|
|
inode->i_nlinks = 1;
|
2006-11-30 04:03:47 +05:30
|
|
|
inode->i_atime = inode->i_mtime = inode->i_ctime = CUR_TIME;
|
1999-10-20 01:53:03 +05:30
|
|
|
inode->i_mode = S_IFREG + 0000;
|
2007-03-16 01:22:42 +05:30
|
|
|
inode->i_size = G.badblocks * BLOCK_SIZE;
|
2000-02-09 01:28:47 +05:30
|
|
|
zone = next(0);
|
1999-10-20 01:53:03 +05:30
|
|
|
for (i = 0; i < 7; i++) {
|
|
|
|
inode->i_zone[i] = zone;
|
|
|
|
if (!NEXT_BAD)
|
|
|
|
goto end_bad;
|
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
inode->i_zone[7] = ind = get_free_block();
|
|
|
|
memset(ind_block, 0, BLOCK_SIZE);
|
1999-10-20 01:53:03 +05:30
|
|
|
for (i = 0; i < 256; i++) {
|
|
|
|
ind_block[i] = zone;
|
|
|
|
if (!NEXT_BAD)
|
|
|
|
goto end_bad;
|
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
inode->i_zone[8] = dind = get_free_block();
|
|
|
|
memset(dind_block, 0, BLOCK_SIZE);
|
1999-10-20 01:53:03 +05:30
|
|
|
for (i = 0; i < 256; i++) {
|
2000-02-09 01:28:47 +05:30
|
|
|
write_block(ind, (char *) ind_block);
|
|
|
|
dind_block[i] = ind = get_free_block();
|
|
|
|
memset(ind_block, 0, BLOCK_SIZE);
|
1999-10-20 01:53:03 +05:30
|
|
|
for (j = 0; j < 256; j++) {
|
|
|
|
ind_block[j] = zone;
|
|
|
|
if (!NEXT_BAD)
|
|
|
|
goto end_bad;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Could make triple indirect block here */
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("too many bad blocks");
|
2006-11-30 04:03:47 +05:30
|
|
|
end_bad:
|
1999-10-20 01:53:03 +05:30
|
|
|
if (ind)
|
2000-02-09 01:28:47 +05:30
|
|
|
write_block(ind, (char *) ind_block);
|
1999-10-20 01:53:03 +05:30
|
|
|
if (dind)
|
2000-02-09 01:28:47 +05:30
|
|
|
write_block(dind, (char *) dind_block);
|
2007-12-02 14:05:37 +05:30
|
|
|
#undef ind_block
|
|
|
|
#undef dind_block
|
1999-10-20 01:53:03 +05:30
|
|
|
}
|
2006-12-30 23:27:03 +05:30
|
|
|
#else
|
|
|
|
void make_bad_inode2(void);
|
1999-10-20 01:53:03 +05:30
|
|
|
#endif
|
|
|
|
|
2006-08-30 01:11:06 +05:30
|
|
|
static void make_root_inode(void)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
2006-11-30 04:03:47 +05:30
|
|
|
struct minix1_inode *inode = &INODE_BUF1[MINIX_ROOT_INO];
|
1999-10-20 01:53:03 +05:30
|
|
|
|
|
|
|
mark_inode(MINIX_ROOT_INO);
|
|
|
|
inode->i_zone[0] = get_free_block();
|
|
|
|
inode->i_nlinks = 2;
|
2006-11-30 04:03:47 +05:30
|
|
|
inode->i_time = CUR_TIME;
|
2007-03-16 01:22:42 +05:30
|
|
|
if (G.badblocks)
|
|
|
|
inode->i_size = 3 * G.dirsize;
|
1999-10-20 01:53:03 +05:30
|
|
|
else {
|
2007-03-16 01:22:42 +05:30
|
|
|
G.root_block[2 * G.dirsize] = '\0';
|
|
|
|
G.root_block[2 * G.dirsize + 1] = '\0';
|
|
|
|
inode->i_size = 2 * G.dirsize;
|
1999-10-20 01:53:03 +05:30
|
|
|
}
|
|
|
|
inode->i_mode = S_IFDIR + 0755;
|
2006-11-30 04:03:47 +05:30
|
|
|
inode->i_uid = GETUID;
|
1999-10-20 01:53:03 +05:30
|
|
|
if (inode->i_uid)
|
2006-11-30 04:03:47 +05:30
|
|
|
inode->i_gid = GETGID;
|
2007-03-16 01:22:42 +05:30
|
|
|
write_block(inode->i_zone[0], G.root_block);
|
1999-10-20 01:53:03 +05:30
|
|
|
}
|
|
|
|
|
2006-11-29 23:45:52 +05:30
|
|
|
#if ENABLE_FEATURE_MINIX2
|
2006-08-30 01:11:06 +05:30
|
|
|
static void make_root_inode2(void)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
2006-11-30 04:03:47 +05:30
|
|
|
struct minix2_inode *inode = &INODE_BUF2[MINIX_ROOT_INO];
|
1999-10-20 01:53:03 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
mark_inode(MINIX_ROOT_INO);
|
|
|
|
inode->i_zone[0] = get_free_block();
|
1999-10-20 01:53:03 +05:30
|
|
|
inode->i_nlinks = 2;
|
2006-11-30 04:03:47 +05:30
|
|
|
inode->i_atime = inode->i_mtime = inode->i_ctime = CUR_TIME;
|
2007-03-16 01:22:42 +05:30
|
|
|
if (G.badblocks)
|
|
|
|
inode->i_size = 3 * G.dirsize;
|
1999-10-20 01:53:03 +05:30
|
|
|
else {
|
2007-03-16 01:22:42 +05:30
|
|
|
G.root_block[2 * G.dirsize] = '\0';
|
|
|
|
G.root_block[2 * G.dirsize + 1] = '\0';
|
|
|
|
inode->i_size = 2 * G.dirsize;
|
1999-10-20 01:53:03 +05:30
|
|
|
}
|
|
|
|
inode->i_mode = S_IFDIR + 0755;
|
2006-11-30 04:03:47 +05:30
|
|
|
inode->i_uid = GETUID;
|
1999-10-20 01:53:03 +05:30
|
|
|
if (inode->i_uid)
|
2006-11-30 04:03:47 +05:30
|
|
|
inode->i_gid = GETGID;
|
2007-03-16 01:22:42 +05:30
|
|
|
write_block(inode->i_zone[0], G.root_block);
|
1999-10-20 01:53:03 +05:30
|
|
|
}
|
2006-12-30 23:27:03 +05:30
|
|
|
#else
|
|
|
|
void make_root_inode2(void);
|
1999-10-20 01:53:03 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Perform a test of a block; return the number of
|
2007-02-06 06:06:53 +05:30
|
|
|
* blocks readable.
|
1999-10-20 01:53:03 +05:30
|
|
|
*/
|
2007-02-06 06:06:53 +05:30
|
|
|
static size_t do_check(char *buffer, size_t try, unsigned current_block)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
2007-02-06 06:06:53 +05:30
|
|
|
ssize_t got;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
1999-10-20 01:53:03 +05:30
|
|
|
/* Seek to the correct loc. */
|
2006-11-29 23:45:52 +05:30
|
|
|
msg_eol = "seek failed during testing of blocks";
|
2008-06-25 15:30:58 +05:30
|
|
|
xlseek(dev_fd, current_block * BLOCK_SIZE, SEEK_SET);
|
2006-11-29 23:45:52 +05:30
|
|
|
msg_eol = "\n";
|
1999-10-20 01:53:03 +05:30
|
|
|
|
|
|
|
/* Try the read */
|
2008-06-25 15:30:58 +05:30
|
|
|
got = read(dev_fd, buffer, try * BLOCK_SIZE);
|
2000-02-09 01:28:47 +05:30
|
|
|
if (got < 0)
|
|
|
|
got = 0;
|
2007-02-06 06:06:53 +05:30
|
|
|
try = ((size_t)got) / BLOCK_SIZE;
|
|
|
|
|
|
|
|
if (got & (BLOCK_SIZE - 1))
|
2007-02-07 03:22:05 +05:30
|
|
|
fprintf(stderr, "Short read at block %u\n", (unsigned)(current_block + try));
|
2007-02-06 06:06:53 +05:30
|
|
|
return try;
|
1999-10-20 01:53:03 +05:30
|
|
|
}
|
|
|
|
|
2008-07-05 14:48:54 +05:30
|
|
|
static void alarm_intr(int alnum UNUSED_PARAM)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
2007-03-16 01:22:42 +05:30
|
|
|
if (G.currently_testing >= SB_ZONES)
|
1999-10-20 01:53:03 +05:30
|
|
|
return;
|
2000-02-09 01:28:47 +05:30
|
|
|
signal(SIGALRM, alarm_intr);
|
1999-10-20 01:53:03 +05:30
|
|
|
alarm(5);
|
2007-03-16 01:22:42 +05:30
|
|
|
if (!G.currently_testing)
|
1999-10-20 01:53:03 +05:30
|
|
|
return;
|
2007-03-16 01:22:42 +05:30
|
|
|
printf("%d ...", G.currently_testing);
|
1999-10-20 01:53:03 +05:30
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
|
1999-10-20 02:22:57 +05:30
|
|
|
static void check_blocks(void)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
2007-02-06 06:06:53 +05:30
|
|
|
size_t try, got;
|
1999-10-20 01:53:03 +05:30
|
|
|
|
2007-03-16 01:22:42 +05:30
|
|
|
G.currently_testing = 0;
|
2000-02-09 01:28:47 +05:30
|
|
|
signal(SIGALRM, alarm_intr);
|
1999-10-20 01:53:03 +05:30
|
|
|
alarm(5);
|
2007-03-16 01:22:42 +05:30
|
|
|
while (G.currently_testing < SB_ZONES) {
|
2006-11-29 23:45:52 +05:30
|
|
|
msg_eol = "seek failed in check_blocks";
|
2008-06-25 15:30:58 +05:30
|
|
|
xlseek(dev_fd, G.currently_testing * BLOCK_SIZE, SEEK_SET);
|
2006-11-29 23:45:52 +05:30
|
|
|
msg_eol = "\n";
|
1999-10-20 01:53:03 +05:30
|
|
|
try = TEST_BUFFER_BLOCKS;
|
2007-03-16 01:22:42 +05:30
|
|
|
if (G.currently_testing + try > SB_ZONES)
|
|
|
|
try = SB_ZONES - G.currently_testing;
|
2007-03-18 20:13:21 +05:30
|
|
|
got = do_check(G.check_blocks_buffer, try, G.currently_testing);
|
2007-03-16 01:22:42 +05:30
|
|
|
G.currently_testing += got;
|
1999-10-20 01:53:03 +05:30
|
|
|
if (got == try)
|
|
|
|
continue;
|
2007-03-16 01:22:42 +05:30
|
|
|
if (G.currently_testing < SB_FIRSTZONE)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("bad blocks before data-area: cannot make fs");
|
2007-03-16 01:22:42 +05:30
|
|
|
mark_zone(G.currently_testing);
|
|
|
|
G.badblocks++;
|
|
|
|
G.currently_testing++;
|
1999-10-20 01:53:03 +05:30
|
|
|
}
|
2007-03-16 01:22:42 +05:30
|
|
|
alarm(0);
|
|
|
|
printf("%d bad block(s)\n", G.badblocks);
|
1999-10-20 01:53:03 +05:30
|
|
|
}
|
|
|
|
|
2001-10-31 16:11:31 +05:30
|
|
|
static void get_list_blocks(char *filename)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
FILE *listfile;
|
|
|
|
unsigned long blockno;
|
|
|
|
|
2008-07-22 04:35:26 +05:30
|
|
|
listfile = xfopen_for_read(filename);
|
2000-02-09 01:28:47 +05:30
|
|
|
while (!feof(listfile)) {
|
|
|
|
fscanf(listfile, "%ld\n", &blockno);
|
|
|
|
mark_zone(blockno);
|
2007-03-16 01:22:42 +05:30
|
|
|
G.badblocks++;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2007-03-16 01:22:42 +05:30
|
|
|
printf("%d bad block(s)\n", G.badblocks);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setup_tables(void)
|
|
|
|
{
|
|
|
|
unsigned long inodes;
|
|
|
|
unsigned norm_firstzone;
|
|
|
|
unsigned sb_zmaps;
|
|
|
|
unsigned i;
|
|
|
|
|
2008-07-21 19:03:22 +05:30
|
|
|
/* memset(G.superblock_buffer, 0, BLOCK_SIZE); */
|
2007-03-16 01:22:42 +05:30
|
|
|
/* memset(G.boot_block_buffer, 0, 512); */
|
|
|
|
SB_MAGIC = G.magic;
|
|
|
|
SB_ZONE_SIZE = 0;
|
|
|
|
SB_MAXSIZE = version2 ? 0x7fffffff : (7 + 512 + 512 * 512) * 1024;
|
|
|
|
if (version2)
|
|
|
|
SB.s_zones = G.total_blocks;
|
|
|
|
else
|
|
|
|
SB.s_nzones = G.total_blocks;
|
|
|
|
|
|
|
|
/* some magic nrs: 1 inode / 3 blocks */
|
|
|
|
if (G.req_nr_inodes == 0)
|
|
|
|
inodes = G.total_blocks / 3;
|
|
|
|
else
|
|
|
|
inodes = G.req_nr_inodes;
|
|
|
|
/* Round up inode count to fill block size */
|
|
|
|
if (version2)
|
|
|
|
inodes = (inodes + MINIX2_INODES_PER_BLOCK - 1) &
|
|
|
|
~(MINIX2_INODES_PER_BLOCK - 1);
|
|
|
|
else
|
|
|
|
inodes = (inodes + MINIX1_INODES_PER_BLOCK - 1) &
|
|
|
|
~(MINIX1_INODES_PER_BLOCK - 1);
|
|
|
|
if (inodes > 65535)
|
|
|
|
inodes = 65535;
|
|
|
|
SB_INODES = inodes;
|
|
|
|
SB_IMAPS = div_roundup(SB_INODES + 1, BITS_PER_BLOCK);
|
|
|
|
|
|
|
|
/* Real bad hack but overwise mkfs.minix can be thrown
|
|
|
|
* in infinite loop...
|
|
|
|
* try:
|
|
|
|
* dd if=/dev/zero of=test.fs count=10 bs=1024
|
|
|
|
* mkfs.minix -i 200 test.fs
|
|
|
|
*/
|
|
|
|
/* This code is not insane: NORM_FIRSTZONE is not a constant,
|
|
|
|
* it is calculated from SB_INODES, SB_IMAPS and SB_ZMAPS */
|
|
|
|
i = 999;
|
|
|
|
SB_ZMAPS = 0;
|
|
|
|
do {
|
|
|
|
norm_firstzone = NORM_FIRSTZONE;
|
|
|
|
sb_zmaps = div_roundup(G.total_blocks - norm_firstzone + 1, BITS_PER_BLOCK);
|
|
|
|
if (SB_ZMAPS == sb_zmaps) goto got_it;
|
|
|
|
SB_ZMAPS = sb_zmaps;
|
|
|
|
/* new SB_ZMAPS, need to recalc NORM_FIRSTZONE */
|
|
|
|
} while (--i);
|
|
|
|
bb_error_msg_and_die("incompatible size/inode count, try different -i N");
|
|
|
|
got_it:
|
|
|
|
|
|
|
|
SB_FIRSTZONE = norm_firstzone;
|
|
|
|
G.inode_map = xmalloc(SB_IMAPS * BLOCK_SIZE);
|
|
|
|
G.zone_map = xmalloc(SB_ZMAPS * BLOCK_SIZE);
|
|
|
|
memset(G.inode_map, 0xff, SB_IMAPS * BLOCK_SIZE);
|
|
|
|
memset(G.zone_map, 0xff, SB_ZMAPS * BLOCK_SIZE);
|
|
|
|
for (i = SB_FIRSTZONE; i < SB_ZONES; i++)
|
|
|
|
unmark_zone(i);
|
|
|
|
for (i = MINIX_ROOT_INO; i <= SB_INODES; i++)
|
|
|
|
unmark_inode(i);
|
|
|
|
G.inode_buffer = xzalloc(INODE_BUFFER_SIZE);
|
|
|
|
printf("%ld inodes\n", (long)SB_INODES);
|
|
|
|
printf("%ld blocks\n", (long)SB_ZONES);
|
|
|
|
printf("Firstdatazone=%ld (%ld)\n", (long)SB_FIRSTZONE, (long)norm_firstzone);
|
|
|
|
printf("Zonesize=%d\n", BLOCK_SIZE << SB_ZONE_SIZE);
|
|
|
|
printf("Maxsize=%ld\n", (long)SB_MAXSIZE);
|
1999-10-20 01:53:03 +05:30
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int mkfs_minix_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int mkfs_minix_main(int argc UNUSED_PARAM, char **argv)
|
1999-10-20 01:53:03 +05:30
|
|
|
{
|
2006-11-30 04:03:47 +05:30
|
|
|
struct mntent *mp;
|
2006-11-29 23:45:52 +05:30
|
|
|
unsigned opt;
|
2000-02-09 01:28:47 +05:30
|
|
|
char *tmp;
|
|
|
|
struct stat statbuf;
|
2008-03-17 14:39:09 +05:30
|
|
|
char *str_i;
|
2000-02-09 01:28:47 +05:30
|
|
|
char *listfile = NULL;
|
|
|
|
|
2007-12-02 14:05:37 +05:30
|
|
|
INIT_G();
|
2007-03-16 01:22:42 +05:30
|
|
|
/* default (changed to 30, per Linus's suggestion, Sun Nov 21 08:05:07 1993) */
|
|
|
|
G.namelen = 30;
|
|
|
|
G.dirsize = 32;
|
|
|
|
G.magic = MINIX1_SUPER_MAGIC2;
|
|
|
|
|
2006-11-30 04:03:47 +05:30
|
|
|
if (INODE_SIZE1 * MINIX1_INODES_PER_BLOCK != BLOCK_SIZE)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("bad inode size");
|
2006-11-29 23:45:52 +05:30
|
|
|
#if ENABLE_FEATURE_MINIX2
|
2000-02-09 01:28:47 +05:30
|
|
|
if (INODE_SIZE2 * MINIX2_INODES_PER_BLOCK != BLOCK_SIZE)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("bad inode size");
|
1999-10-20 01:53:03 +05:30
|
|
|
#endif
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2008-03-17 14:39:09 +05:30
|
|
|
opt_complementary = "n+"; /* -n N */
|
|
|
|
opt = getopt32(argv, "ci:l:n:v", &str_i, &listfile, &G.namelen);
|
2006-11-29 23:45:52 +05:30
|
|
|
argv += optind;
|
|
|
|
//if (opt & 1) -c
|
2007-03-16 01:22:42 +05:30
|
|
|
if (opt & 2) G.req_nr_inodes = xatoul(str_i); // -i
|
2006-11-29 23:45:52 +05:30
|
|
|
//if (opt & 4) -l
|
|
|
|
if (opt & 8) { // -n
|
2007-03-16 01:22:42 +05:30
|
|
|
if (G.namelen == 14) G.magic = MINIX1_SUPER_MAGIC;
|
|
|
|
else if (G.namelen == 30) G.magic = MINIX1_SUPER_MAGIC2;
|
2006-11-29 23:45:52 +05:30
|
|
|
else bb_show_usage();
|
2007-03-16 01:22:42 +05:30
|
|
|
G.dirsize = G.namelen + 2;
|
2006-11-29 23:45:52 +05:30
|
|
|
}
|
|
|
|
if (opt & 0x10) { // -v
|
|
|
|
#if ENABLE_FEATURE_MINIX2
|
|
|
|
version2 = 1;
|
1999-10-20 01:53:03 +05:30
|
|
|
#else
|
2007-02-06 06:06:53 +05:30
|
|
|
bb_error_msg_and_die("not compiled with minix v2 support");
|
1999-10-20 01:53:03 +05:30
|
|
|
#endif
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
|
|
|
|
2007-03-16 01:22:42 +05:30
|
|
|
G.device_name = *argv++;
|
|
|
|
if (!G.device_name)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2006-11-30 04:03:47 +05:30
|
|
|
if (*argv)
|
2007-03-16 01:22:42 +05:30
|
|
|
G.total_blocks = xatou32(*argv);
|
2006-11-30 04:03:47 +05:30
|
|
|
else
|
2007-03-16 01:22:42 +05:30
|
|
|
G.total_blocks = get_size(G.device_name) / 1024;
|
2006-11-30 04:03:47 +05:30
|
|
|
|
2007-03-16 01:22:42 +05:30
|
|
|
if (G.total_blocks < 10)
|
2006-11-30 04:03:47 +05:30
|
|
|
bb_error_msg_and_die("must have at least 10 blocks");
|
2006-11-29 23:45:52 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (version2) {
|
2007-03-16 01:22:42 +05:30
|
|
|
G.magic = MINIX2_SUPER_MAGIC2;
|
|
|
|
if (G.namelen == 14)
|
|
|
|
G.magic = MINIX2_SUPER_MAGIC;
|
|
|
|
} else if (G.total_blocks > 65535)
|
|
|
|
G.total_blocks = 65535;
|
2006-11-30 04:03:47 +05:30
|
|
|
|
|
|
|
/* Check if it is mounted */
|
2007-03-16 01:22:42 +05:30
|
|
|
mp = find_mount_point(G.device_name, NULL);
|
|
|
|
if (mp && strcmp(G.device_name, mp->mnt_fsname) == 0)
|
2006-11-30 04:03:47 +05:30
|
|
|
bb_error_msg_and_die("%s is mounted on %s; "
|
|
|
|
"refusing to make a filesystem",
|
2007-03-16 01:22:42 +05:30
|
|
|
G.device_name, mp->mnt_dir);
|
2006-11-30 04:03:47 +05:30
|
|
|
|
2008-06-25 15:30:58 +05:30
|
|
|
xmove_fd(xopen(G.device_name, O_RDWR), dev_fd);
|
|
|
|
if (fstat(dev_fd, &statbuf) < 0)
|
2007-03-16 01:22:42 +05:30
|
|
|
bb_error_msg_and_die("cannot stat %s", G.device_name);
|
2006-11-30 04:03:47 +05:30
|
|
|
if (!S_ISBLK(statbuf.st_mode))
|
|
|
|
opt &= ~1; // clear -c (check)
|
2006-11-29 23:45:52 +05:30
|
|
|
|
2006-11-30 04:03:47 +05:30
|
|
|
/* I don't know why someone has special code to prevent mkfs.minix
|
|
|
|
* on IDE devices. Why IDE but not SCSI, etc?... */
|
|
|
|
#if 0
|
|
|
|
else if (statbuf.st_rdev == 0x0300 || statbuf.st_rdev == 0x0340)
|
|
|
|
/* what is this? */
|
|
|
|
bb_error_msg_and_die("will not try "
|
2007-03-16 01:22:42 +05:30
|
|
|
"to make filesystem on '%s'", G.device_name);
|
2006-11-30 04:03:47 +05:30
|
|
|
#endif
|
2006-11-29 23:45:52 +05:30
|
|
|
|
2007-03-16 01:22:42 +05:30
|
|
|
tmp = G.root_block;
|
2000-02-09 01:28:47 +05:30
|
|
|
*(short *) tmp = 1;
|
|
|
|
strcpy(tmp + 2, ".");
|
2007-03-16 01:22:42 +05:30
|
|
|
tmp += G.dirsize;
|
2000-02-09 01:28:47 +05:30
|
|
|
*(short *) tmp = 1;
|
|
|
|
strcpy(tmp + 2, "..");
|
2007-03-16 01:22:42 +05:30
|
|
|
tmp += G.dirsize;
|
2000-02-09 01:28:47 +05:30
|
|
|
*(short *) tmp = 2;
|
|
|
|
strcpy(tmp + 2, ".badblocks");
|
2006-11-29 23:45:52 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
setup_tables();
|
2006-11-29 23:45:52 +05:30
|
|
|
|
|
|
|
if (opt & 1) // -c ?
|
2000-02-09 01:28:47 +05:30
|
|
|
check_blocks();
|
|
|
|
else if (listfile)
|
|
|
|
get_list_blocks(listfile);
|
2006-11-29 23:45:52 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (version2) {
|
|
|
|
make_root_inode2();
|
|
|
|
make_bad_inode2();
|
2006-11-29 23:45:52 +05:30
|
|
|
} else {
|
2000-02-09 01:28:47 +05:30
|
|
|
make_root_inode();
|
|
|
|
make_bad_inode();
|
|
|
|
}
|
2006-11-29 23:45:52 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
mark_good_blocks();
|
|
|
|
write_tables();
|
2005-10-15 19:26:17 +05:30
|
|
|
return 0;
|
1999-10-20 01:53:03 +05:30
|
|
|
}
|