Changeset eee8007 in mainline
- Timestamp:
- 2011-03-05T09:49:33Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 55c51c28
- Parents:
- 1ffbbc1
- Location:
- uspace
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkminix/mkminix.c
r1ffbbc1 reee8007 59 59 } help_level_t; 60 60 61 static void help_cmd_mkminix(help_level_t level); 62 static int num_of_set_bits(uint32_t n); 61 static void help_cmd_mkminix(help_level_t level); 62 static int num_of_set_bits(uint32_t n); 63 static void prepare_superblock(struct mfs_superblock *sb); 64 static void prepare_superblock_v3(struct mfs3_superblock *sb); 63 65 64 66 static struct option const long_options[] = { 65 67 { "help", no_argument, 0, 'h' }, 68 { "long-names", no_argument, 0, 'l' }, 66 69 { "blocks", required_argument, 0, 'b' }, 67 70 { "inodes", required_argument, 0, 'i' }, … … 72 75 }; 73 76 77 typedef struct mfs_params { 78 mfs_version_t fs_version; 79 uint32_t block_size; 80 size_t devblock_size; 81 unsigned long n_inodes; 82 aoff64_t dev_nblocks; 83 bool fs_longnames; 84 } mfs_params_t; 85 74 86 int main (int argc, char **argv) 75 87 { … … 77 89 char *device_name; 78 90 devmap_handle_t handle; 79 aoff64_t dev_nblocks; 80 81 /*Default is MinixFS version 3*/ 82 mfs_version_t fs_version = MFS_VERSION_V3; 83 84 /*Default block size is 4096 bytes*/ 85 uint32_t block_size = MFS_MAX_BLOCK_SIZE; 86 size_t devblock_size; 87 unsigned long n_inodes = 0; 91 92 struct mfs_superblock *sp; 93 struct mfs3_superblock *sp3; 94 95 mfs_params_t opt; 96 97 /*Default is MinixFS V3*/ 98 opt.fs_version = MFS_VERSION_V3; 99 100 /*Default block size is 4Kb*/ 101 opt.block_size = 4096; 102 opt.n_inodes = 0; 103 opt.fs_longnames = false; 88 104 89 105 if (argc == 1) { … … 94 110 95 111 for (c = 0, optind = 0, opt_ind = 0; c != -1;) { 96 c = getopt_long(argc, argv, " h123b:i:", long_options, &opt_ind);112 c = getopt_long(argc, argv, "eh123b:i:", long_options, &opt_ind); 97 113 switch (c) { 98 114 case 'h': … … 100 116 exit(0); 101 117 case '1': 102 fs_version = MFS_VERSION_V1;103 block_size = MFS_MIN_BLOCK_SIZE;118 opt.fs_version = MFS_VERSION_V1; 119 opt.block_size = MFS_MIN_BLOCK_SIZE; 104 120 break; 105 121 case '2': 106 fs_version = MFS_VERSION_V2;107 block_size = MFS_MIN_BLOCK_SIZE;122 opt.fs_version = MFS_VERSION_V2; 123 opt.block_size = MFS_MIN_BLOCK_SIZE; 108 124 break; 109 125 case '3': 110 fs_version = MFS_VERSION_V3;126 opt.fs_version = MFS_VERSION_V3; 111 127 break; 112 128 case 'b': 113 block_size = (uint32_t) strtol(optarg, NULL, 10);129 opt.block_size = (uint32_t) strtol(optarg, NULL, 10); 114 130 break; 115 131 case 'i': 116 n_inodes = (unsigned long) strtol(optarg, NULL, 10); 132 opt.n_inodes = (unsigned long) strtol(optarg, NULL, 10); 133 break; 134 case 'l': 135 opt.fs_longnames = true; 117 136 break; 118 137 } 119 138 } 120 139 121 if (block_size < MFS_MIN_BLOCK_SIZE || block_size > MFS_MAX_BLOCK_SIZE) { 140 if (opt.block_size < MFS_MIN_BLOCK_SIZE || 141 opt.block_size > MFS_MAX_BLOCK_SIZE) { 122 142 printf(NAME ":Error! Invalid block size.\n"); 123 143 exit(0); 124 } else if (num_of_set_bits( block_size) != 1) {144 } else if (num_of_set_bits(opt.block_size) != 1) { 125 145 /*Block size must be a power of 2.*/ 126 146 printf(NAME ":Error! Invalid block size.\n"); 127 147 exit(0); 128 } else if (block_size > MFS_MIN_BLOCK_SIZE && 129 fs_version != MFS_VERSION_V3) { 130 printf(NAME ":Error! Block size > 1024 is supported from V3 filesystem only.\n"); 148 } else if (opt.block_size > MFS_MIN_BLOCK_SIZE && 149 opt.fs_version != MFS_VERSION_V3) { 150 printf(NAME ":Error! Block size > 1024 is supported by V3 filesystem only.\n"); 151 exit(0); 152 } else if (opt.fs_version == MFS_VERSION_V3 && opt.fs_longnames) { 153 printf(NAME ":Error! Long filenames are supported by V1/V2 filesystem only.\n"); 131 154 exit(0); 132 155 } … … 153 176 } 154 177 155 rc = block_get_bsize(handle, & devblock_size);178 rc = block_get_bsize(handle, &opt.devblock_size); 156 179 if (rc != EOK) { 157 180 printf(NAME ": Error determining device block size.\n"); … … 159 182 } 160 183 161 rc = block_get_nblocks(handle, & dev_nblocks);184 rc = block_get_nblocks(handle, &opt.dev_nblocks); 162 185 if (rc != EOK) { 163 186 printf(NAME ": Warning, failed to obtain block device size.\n"); 164 187 } else { 165 188 printf(NAME ": Block device has %" PRIuOFF64 " blocks.\n", 166 dev_nblocks);167 } 168 169 if ( devblock_size != 512) {189 opt.dev_nblocks); 190 } 191 192 if (opt.devblock_size != 512) { 170 193 printf(NAME ": Error. Device block size is not 512 bytes.\n"); 171 194 return 2; … … 176 199 /*Prepare superblock*/ 177 200 201 if (opt.fs_version == MFS_VERSION_V3) { 202 prepare_superblock_v3(sp3); 203 } else { 204 prepare_superblock(sp); 205 } 206 178 207 return 0; 208 } 209 210 static void prepare_superblock(struct mfs_superblock *sp) 211 { 212 } 213 214 static void prepare_superblock_v3(struct mfs3_superblock *sp) 215 { 179 216 } 180 217 … … 190 227 "-b ## Specify the block size in bytes (V3 only),\n" 191 228 " valid block size values are 1024, 2048 and 4096 bytes per block\n" 192 "-i ## Specify the number of inodes for the filesystem\n"); 229 "-i ## Specify the number of inodes for the filesystem\n" 230 "-l Use 30-char long filenames (V1/V2 only)"); 193 231 } 194 232 } -
uspace/srv/fs/minixfs/mfs_const.h
r1ffbbc1 reee8007 53 53 #define V1_MAX_NAME_LEN 14 54 54 #define V2_MAX_NAME_LEN 14 55 #define V2E_MAX_NAME_LEN 30 55 56 #define V3_MAX_NAME_LEN 60 56 57 -
uspace/srv/fs/minixfs/mfs_dentry.h
r1ffbbc1 reee8007 37 37 38 38 #define mfs_v2_dentry mfs_v1_dentry 39 #define mfs_v1l_dentry mfs_v2l_dentry 39 40 40 41 /*MinixFS V1 directory entry on-disk structure*/ … … 42 43 uint16_t d_inum; 43 44 char d_name[V1_MAX_NAME_LEN]; 45 } __attribute__ ((packed)); 46 47 /*MinixFS V2 with 30-char filenames (Linux variant)*/ 48 struct mfs_v2l_dentry { 49 uint16_t d_inum; 50 char d_name[V2E_MAX_NAME_LEN]; 44 51 } __attribute__ ((packed)); 45 52 -
uspace/srv/fs/minixfs/mfs_super.h
r1ffbbc1 reee8007 39 39 #define MFS_MAGIC_V1R 0x7F13 40 40 41 #define MFS_MAGIC_V1L 0x138F 42 #define MFS_MAGIC_V1LR 0x8F13 43 41 44 #define MFS_MAGIC_V2 0x2468 42 45 #define MFS_MAGIC_V2R 0x6824 46 47 #define MFS_MAGIC_V2L 0x2478 48 #define MFS_MAGIC_V2LR 0x7824 43 49 44 50 #define MFS_MAGIC_V3 0x4D5A … … 104 110 typedef enum { 105 111 MFS_VERSION_V1 = 1, 112 MFS_VERSION_V1L, 106 113 MFS_VERSION_V2, 114 MFS_VERSION_V2L, 107 115 MFS_VERSION_V3 108 116 } mfs_version_t;
Note:
See TracChangeset
for help on using the changeset viewer.