aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2007-01-27 20:43:26 -0500
committerRob Landley <rob@landley.net>2007-01-27 20:43:26 -0500
commit43d7e909cb98e02ea11877f7516e721ac0aa5b5d (patch)
tree67787b85047e267ff4385a46f6c408b6d44f191f
parent22eca62ff07e97063eb77dc61660a91e12fed182 (diff)
downloadtoybox-43d7e909cb98e02ea11877f7516e721ac0aa5b5d.tar.gz
Move superblock initialization to a function. Trim unused padding from
superblock.
-rw-r--r--toys/e2fs.h2
-rw-r--r--toys/mke2fs.c58
2 files changed, 34 insertions, 26 deletions
diff --git a/toys/e2fs.h b/toys/e2fs.h
index 49eb4c40..ef8f5e8b 100644
--- a/toys/e2fs.h
+++ b/toys/e2fs.h
@@ -61,7 +61,7 @@ struct ext2_superblock {
uint32_t first_meta_bg; // First metablock block group
uint32_t mkfs_time; // Creation timestamp
uint32_t jnl_blocks[17]; // Backup of journal inode
- uint32_t reserved[172]; // Padding to the end of the block
+ // uint32_t reserved[172]; // Padding to the end of the block
};
struct ext2_group
diff --git a/toys/mke2fs.c b/toys/mke2fs.c
index b50068a0..7d7e5ac7 100644
--- a/toys/mke2fs.c
+++ b/toys/mke2fs.c
@@ -54,27 +54,11 @@ void create_uuid(char *uuid)
uuid[11] = uuid[11] | 128;
}
-int mke2fs_main(void)
+// Fill out superblock and TT
+
+void init_superblock(struct ext2_superblock *sb, off_t length)
{
- struct ext2_superblock *sb = xzalloc(sizeof(struct ext2_superblock));
uint32_t temp;
- off_t length;
-
- // Handle command line arguments.
-
- if (toys.optargs[1]) {
- sscanf(toys.optargs[1], "%u", &TT.blocks);
- temp = O_RDWR|O_CREAT;
- } else temp = O_RDWR;
-
- // TODO: Check if filesystem is mounted here
-
- // For mke?fs, open file. For gene?fs, create file.
- length = fdlength(TT.fsfd = xcreate(*toys.optargs, temp, 0777));
-
- // TODO: collect gene2fs list, calculate requirements.
-
- // Fill out superblock structure
// Determine appropriate block size, set log_block_size and log_frag_size.
@@ -92,7 +76,7 @@ int mke2fs_main(void)
temp = (TT.blocks * (uint64_t)TT.reserved_percent) /100;
sb->r_blocks_count = SWAP_LE32(temp);
- sb->first_data_block = TT.blocksize == 1024 ? 1 : 0;
+ sb->first_data_block = TT.blocksize == SWAP_LE32(1024 ? 1 : 0);
// Set blocks_per_group and frags_per_group, which is the size of an
// allocation bitmap that fits in one block (I.E. how many bits per block)?
@@ -134,7 +118,7 @@ int mke2fs_main(void)
sb->state = sb->errors = SWAP_LE16(1);
sb->rev_level = SWAP_LE32(1);
- sb->inode_size = sizeof(struct ext2_inode);
+ sb->inode_size = SWAP_LE16(sizeof(struct ext2_inode));
sb->feature_incompat = SWAP_LE32(EXT2_FEATURE_INCOMPAT_FILETYPE);
sb->feature_ro_compat = SWAP_LE32(EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER);
@@ -143,14 +127,38 @@ int mke2fs_main(void)
// If we're called as mke3fs or mkfs.ext3, do a journal.
//if (strchr(toys.which->name,'3'))
- // sb->feature_compat |= EXT3_FEATURE_COMPAT_HAS_JOURNAL;
+ // sb->feature_compat = SWAP_LE32(EXT3_FEATURE_COMPAT_HAS_JOURNAL);
+}
+
+int mke2fs_main(void)
+{
+ struct ext2_superblock *sb = xzalloc(sizeof(struct ext2_superblock));
+ int temp;
+
+ // Handle command line arguments.
+
+ if (toys.optargs[1]) {
+ sscanf(toys.optargs[1], "%u", &TT.blocks);
+ temp = O_RDWR|O_CREAT;
+ } else temp = O_RDWR;
+
+ // TODO: collect gene2fs list, calculate requirements.
+
+ // TODO: Check if filesystem is mounted here
+
+ // For mke?fs, open file. For gene?fs, create file.
+ TT.fsfd = xcreate(*toys.optargs, temp, 0777);
// We skip the first 1k (to avoid the boot sector, if any). Use this to
// figure out if this file is seekable.
- if(-1 == lseek(TT.fsfd, 1024, SEEK_SET)) perror_exit("lseek");
- //{ TT.noseek=1; xwrite(TT.fsfd, sb, 1024); }
+ if(-1 == lseek(TT.fsfd, 1024, SEEK_SET)) {
+ TT.noseek=1;
+ xwrite(TT.fsfd, sb, 1024);
+ }
+
+ // Create and write first superblock.
- // Write superblock to disk.
+ init_superblock(sb, fdlength(TT.fsfd));
xwrite(TT.fsfd, sb, sizeof(struct ext2_superblock)); // 4096-1024
return 0;