| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 1 | /* |
| 2 | * initialize.c --- initialize a filesystem handle given superblock |
| 3 | * parameters. Used by mke2fs when initializing a filesystem. |
| Theodore Ts'o | 1e3472c | 1997-04-29 14:53:37 +0000 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 1994, 1995, 1996 Theodore Ts'o. |
| 6 | * |
| Theodore Ts'o | 19c78dc | 1997-04-29 16:17:09 +0000 | [diff] [blame] | 7 | * %Begin-Header% |
| Theodore Ts'o | 1e3472c | 1997-04-29 14:53:37 +0000 | [diff] [blame] | 8 | * This file may be redistributed under the terms of the GNU Public |
| 9 | * License. |
| Theodore Ts'o | 19c78dc | 1997-04-29 16:17:09 +0000 | [diff] [blame] | 10 | * %End-Header% |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <stdio.h> |
| 14 | #include <string.h> |
| Theodore Ts'o | 4cbe8af | 1997-08-10 23:07:40 +0000 | [diff] [blame^] | 15 | #if HAVE_UNISTD_H |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 16 | #include <unistd.h> |
| Theodore Ts'o | 4cbe8af | 1997-08-10 23:07:40 +0000 | [diff] [blame^] | 17 | #endif |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 18 | #include <stdlib.h> |
| 19 | #include <fcntl.h> |
| 20 | #include <time.h> |
| 21 | #include <sys/stat.h> |
| 22 | #include <sys/types.h> |
| Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 23 | #if HAVE_ERRNO_H |
| 24 | #include <errno.h> |
| 25 | #endif |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 26 | |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 27 | #include <linux/ext2_fs.h> |
| 28 | |
| 29 | #include "ext2fs.h" |
| 30 | |
| Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 31 | #if defined(__linux__) && defined(EXT2_OS_LINUX) |
| 32 | #define CREATOR_OS EXT2_OS_LINUX |
| 33 | #elif defined(__gnu__) && defined(EXT2_OS_HURD) |
| 34 | #define CREATOR_OS EXT2_OS_HURD |
| 35 | #elif defined(__FreeBSD__) && defined(EXT2_OS_FREEBSD) |
| 36 | #define CREATOR_OS EXT2_OS_FREEBSD |
| 37 | #elif defined(LITES) && defined(EXT2_OS_LITES) |
| 38 | #define CREATOR_OS EXT2_OS_LITES |
| 39 | #else |
| 40 | #define CREATOR_OS EXT2_OS_LINUX /* by default */ |
| 41 | #endif |
| 42 | |
| Theodore Ts'o | 1e3472c | 1997-04-29 14:53:37 +0000 | [diff] [blame] | 43 | /* |
| 44 | * Note we override the kernel include file's idea of what the default |
| 45 | * check interval (never) should be. It's a good idea to check at |
| 46 | * least *occasionally*, specially since servers will never rarely get |
| 47 | * to reboot, since Linux is so robust these days. :-) |
| 48 | * |
| 49 | * 180 days (six months) seems like a good value. |
| 50 | */ |
| 51 | #ifdef EXT2_DFL_CHECKINTERVAL |
| 52 | #undef EXT2_DFL_CHECKINTERVAL |
| 53 | #endif |
| 54 | #define EXT2_DFL_CHECKINTERVAL (86400 * 180) |
| 55 | |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 56 | errcode_t ext2fs_initialize(const char *name, int flags, |
| 57 | struct ext2_super_block *param, |
| 58 | io_manager manager, ext2_filsys *ret_fs) |
| 59 | { |
| 60 | ext2_filsys fs; |
| 61 | errcode_t retval; |
| 62 | struct ext2_super_block *super; |
| 63 | int frags_per_block; |
| 64 | int rem; |
| 65 | int overhead = 0; |
| 66 | blk_t group_block; |
| 67 | int i, j; |
| Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 68 | int numblocks; |
| 69 | char *buf; |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 70 | |
| 71 | if (!param || !param->s_blocks_count) |
| 72 | return EINVAL; |
| 73 | |
| 74 | fs = (ext2_filsys) malloc(sizeof(struct struct_ext2_filsys)); |
| 75 | if (!fs) |
| 76 | return ENOMEM; |
| 77 | |
| 78 | memset(fs, 0, sizeof(struct struct_ext2_filsys)); |
| Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 79 | fs->magic = EXT2_ET_MAGIC_EXT2FS_FILSYS; |
| Theodore Ts'o | 1e3472c | 1997-04-29 14:53:37 +0000 | [diff] [blame] | 80 | fs->flags = flags | EXT2_FLAG_RW | ext2fs_native_flag(); |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 81 | retval = manager->open(name, IO_FLAG_RW, &fs->io); |
| 82 | if (retval) |
| 83 | goto cleanup; |
| 84 | fs->device_name = malloc(strlen(name)+1); |
| 85 | if (!fs->device_name) { |
| 86 | retval = ENOMEM; |
| 87 | goto cleanup; |
| 88 | } |
| 89 | strcpy(fs->device_name, name); |
| 90 | fs->super = super = malloc(SUPERBLOCK_SIZE); |
| 91 | if (!super) { |
| 92 | retval = ENOMEM; |
| 93 | goto cleanup; |
| 94 | } |
| 95 | memset(super, 0, SUPERBLOCK_SIZE); |
| 96 | |
| 97 | #define set_field(field, default) (super->field = param->field ? \ |
| 98 | param->field : (default)) |
| 99 | |
| 100 | super->s_magic = EXT2_SUPER_MAGIC; |
| 101 | super->s_state = EXT2_VALID_FS; |
| 102 | |
| 103 | set_field(s_log_block_size, 0); /* default blocksize: 1024 bytes */ |
| 104 | set_field(s_log_frag_size, 0); /* default fragsize: 1024 bytes */ |
| 105 | set_field(s_first_data_block, super->s_log_block_size ? 0 : 1); |
| 106 | set_field(s_max_mnt_count, EXT2_DFL_MAX_MNT_COUNT); |
| 107 | set_field(s_errors, EXT2_ERRORS_DEFAULT); |
| Theodore Ts'o | a29f4d3 | 1997-04-29 21:26:48 +0000 | [diff] [blame] | 108 | #ifdef EXT2_DYNAMIC_REV |
| 109 | set_field(s_feature_compat, 0); |
| 110 | set_field(s_feature_incompat, 0); |
| 111 | set_field(s_feature_ro_compat, 0); |
| 112 | if (super->s_feature_incompat & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP) |
| Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 113 | return EXT2_ET_UNSUPP_FEATURE; |
| Theodore Ts'o | a29f4d3 | 1997-04-29 21:26:48 +0000 | [diff] [blame] | 114 | if (super->s_feature_ro_compat & ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP) |
| Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 115 | return EXT2_ET_RO_UNSUPP_FEATURE; |
| Theodore Ts'o | 7f88b04 | 1997-04-26 14:48:50 +0000 | [diff] [blame] | 116 | |
| Theodore Ts'o | 7f88b04 | 1997-04-26 14:48:50 +0000 | [diff] [blame] | 117 | set_field(s_rev_level, EXT2_GOOD_OLD_REV); |
| 118 | if (super->s_rev_level >= EXT2_DYNAMIC_REV) { |
| 119 | set_field(s_first_ino, EXT2_GOOD_OLD_FIRST_INO); |
| 120 | set_field(s_inode_size, EXT2_GOOD_OLD_INODE_SIZE); |
| 121 | } |
| 122 | #endif |
| 123 | |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 124 | set_field(s_checkinterval, EXT2_DFL_CHECKINTERVAL); |
| 125 | super->s_lastcheck = time(NULL); |
| 126 | |
| Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 127 | super->s_creator_os = CREATOR_OS; |
| Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 128 | |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 129 | fs->blocksize = EXT2_BLOCK_SIZE(super); |
| 130 | fs->fragsize = EXT2_FRAG_SIZE(super); |
| 131 | frags_per_block = fs->blocksize / fs->fragsize; |
| 132 | |
| Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 133 | /* default: (fs->blocksize*8) blocks/group */ |
| 134 | set_field(s_blocks_per_group, fs->blocksize*8); |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 135 | super->s_frags_per_group = super->s_blocks_per_group * frags_per_block; |
| 136 | |
| 137 | super->s_blocks_count = param->s_blocks_count; |
| Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 138 | super->s_r_blocks_count = param->s_r_blocks_count; |
| 139 | if (super->s_r_blocks_count >= param->s_blocks_count) { |
| 140 | retval = EINVAL; |
| 141 | goto cleanup; |
| 142 | } |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 143 | |
| 144 | retry: |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 145 | fs->group_desc_count = (super->s_blocks_count - |
| 146 | super->s_first_data_block + |
| 147 | EXT2_BLOCKS_PER_GROUP(super) - 1) |
| 148 | / EXT2_BLOCKS_PER_GROUP(super); |
| Theodore Ts'o | 7f88b04 | 1997-04-26 14:48:50 +0000 | [diff] [blame] | 149 | if (fs->group_desc_count == 0) |
| 150 | return EXT2_ET_TOOSMALL; |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 151 | fs->desc_blocks = (fs->group_desc_count + |
| 152 | EXT2_DESC_PER_BLOCK(super) - 1) |
| 153 | / EXT2_DESC_PER_BLOCK(super); |
| 154 | |
| 155 | set_field(s_inodes_count, (super->s_blocks_count*fs->blocksize)/4096); |
| 156 | |
| 157 | /* |
| 158 | * There should be at least as many inodes as the user |
| 159 | * requested. Figure out how many inodes per group that |
| Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 160 | * should be. But make sure that we don't allocate more than |
| 161 | * one bitmap's worth of inodes |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 162 | */ |
| 163 | super->s_inodes_per_group = (super->s_inodes_count + |
| 164 | fs->group_desc_count - 1) / |
| 165 | fs->group_desc_count; |
| Theodore Ts'o | 50e1e10 | 1997-04-26 13:58:21 +0000 | [diff] [blame] | 166 | if (super->s_inodes_per_group > fs->blocksize*8) |
| 167 | super->s_inodes_per_group = fs->blocksize*8; |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 168 | |
| 169 | /* |
| 170 | * Make sure the number of inodes per group completely fills |
| 171 | * the inode table blocks in the descriptor. If not, add some |
| 172 | * additional inodes/group. Waste not, want not... |
| 173 | */ |
| Theodore Ts'o | 7f88b04 | 1997-04-26 14:48:50 +0000 | [diff] [blame] | 174 | fs->inode_blocks_per_group = (((super->s_inodes_per_group * |
| 175 | EXT2_INODE_SIZE(super)) + |
| 176 | EXT2_BLOCK_SIZE(super) - 1) / |
| 177 | EXT2_BLOCK_SIZE(super)); |
| 178 | super->s_inodes_per_group = ((fs->inode_blocks_per_group * |
| 179 | EXT2_BLOCK_SIZE(super)) / |
| 180 | EXT2_INODE_SIZE(super)); |
| 181 | /* |
| 182 | * Finally, make sure the number of inodes per group is a |
| 183 | * multiple of 8. This is needed to simplify the bitmap |
| 184 | * splicing code. |
| 185 | */ |
| 186 | super->s_inodes_per_group &= ~7; |
| 187 | fs->inode_blocks_per_group = (((super->s_inodes_per_group * |
| 188 | EXT2_INODE_SIZE(super)) + |
| 189 | EXT2_BLOCK_SIZE(super) - 1) / |
| 190 | EXT2_BLOCK_SIZE(super)); |
| 191 | |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 192 | /* |
| 193 | * adjust inode count to reflect the adjusted inodes_per_group |
| 194 | */ |
| 195 | super->s_inodes_count = super->s_inodes_per_group * |
| 196 | fs->group_desc_count; |
| 197 | super->s_free_inodes_count = super->s_inodes_count; |
| 198 | |
| 199 | /* |
| Theodore Ts'o | 2ecc6fe | 1997-04-29 17:57:00 +0000 | [diff] [blame] | 200 | * Overhead is the number of bookkeeping blocks per group. It |
| 201 | * includes the superblock backup, the group descriptor |
| 202 | * backups, the inode bitmap, the block bitmap, and the inode |
| 203 | * table. |
| 204 | * |
| 205 | * XXX Not all block groups need the descriptor blocks, but |
| 206 | * being clever is tricky... |
| 207 | */ |
| 208 | overhead = 3 + fs->desc_blocks + fs->inode_blocks_per_group; |
| 209 | |
| 210 | /* |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 211 | * See if the last group is big enough to support the |
| 212 | * necessary data structures. If not, we need to get rid of |
| 213 | * it. |
| 214 | */ |
| 215 | rem = (super->s_blocks_count - super->s_first_data_block) % |
| 216 | super->s_blocks_per_group; |
| 217 | if ((fs->group_desc_count == 1) && rem && (rem < overhead)) |
| 218 | return EXT2_ET_TOOSMALL; |
| 219 | if (rem && (rem < overhead+50)) { |
| 220 | super->s_blocks_count -= rem; |
| 221 | goto retry; |
| 222 | } |
| 223 | |
| 224 | /* |
| 225 | * At this point we know how big the filesystem will be. So |
| 226 | * we can do any and all allocations that depend on the block |
| 227 | * count. |
| 228 | */ |
| 229 | |
| Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 230 | buf = malloc(strlen(fs->device_name) + 80); |
| 231 | if (!buf) { |
| 232 | retval = ENOMEM; |
| 233 | goto cleanup; |
| 234 | } |
| 235 | |
| 236 | sprintf(buf, "block bitmap for %s", fs->device_name); |
| 237 | retval = ext2fs_allocate_block_bitmap(fs, buf, &fs->block_map); |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 238 | if (retval) |
| 239 | goto cleanup; |
| 240 | |
| Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 241 | sprintf(buf, "inode bitmap for %s", fs->device_name); |
| Theodore Ts'o | 5c57647 | 1997-04-29 15:29:49 +0000 | [diff] [blame] | 242 | retval = ext2fs_allocate_inode_bitmap(fs, buf, &fs->inode_map); |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 243 | if (retval) |
| 244 | goto cleanup; |
| 245 | |
| Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 246 | free(buf); |
| 247 | |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 248 | fs->group_desc = malloc(fs->desc_blocks * fs->blocksize); |
| 249 | if (!fs->group_desc) { |
| 250 | retval = ENOMEM; |
| 251 | goto cleanup; |
| 252 | } |
| 253 | memset(fs->group_desc, 0, fs->desc_blocks * fs->blocksize); |
| 254 | |
| Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 255 | /* |
| 256 | * Reserve the superblock and group descriptors for each |
| 257 | * group, and fill in the correct group statistics for group. |
| 258 | * Note that although the block bitmap, inode bitmap, and |
| 259 | * inode table have not been allocated (and in fact won't be |
| 260 | * by this routine), they are accounted for nevertheless. |
| 261 | */ |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 262 | group_block = super->s_first_data_block; |
| Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 263 | super->s_free_blocks_count = 0; |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 264 | for (i = 0; i < fs->group_desc_count; i++) { |
| Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 265 | if (i == fs->group_desc_count-1) { |
| 266 | numblocks = (fs->super->s_blocks_count - |
| 267 | fs->super->s_first_data_block) % |
| 268 | fs->super->s_blocks_per_group; |
| 269 | if (!numblocks) |
| 270 | numblocks = fs->super->s_blocks_per_group; |
| 271 | } else |
| 272 | numblocks = fs->super->s_blocks_per_group; |
| Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 273 | |
| 274 | if (ext2fs_bg_has_super(fs, i)) { |
| 275 | for (j=0; j < fs->desc_blocks+1; j++) |
| 276 | ext2fs_mark_block_bitmap(fs->block_map, |
| 277 | group_block + j); |
| 278 | numblocks -= 1 + fs->desc_blocks; |
| 279 | } |
| Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 280 | |
| Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 281 | numblocks -= 2 + fs->inode_blocks_per_group; |
| 282 | |
| 283 | super->s_free_blocks_count += numblocks; |
| Theodore Ts'o | f3db356 | 1997-04-26 13:34:30 +0000 | [diff] [blame] | 284 | fs->group_desc[i].bg_free_blocks_count = numblocks; |
| 285 | fs->group_desc[i].bg_free_inodes_count = |
| 286 | fs->super->s_inodes_per_group; |
| 287 | fs->group_desc[i].bg_used_dirs_count = 0; |
| 288 | |
| Theodore Ts'o | 3839e65 | 1997-04-26 13:21:57 +0000 | [diff] [blame] | 289 | group_block += super->s_blocks_per_group; |
| 290 | } |
| 291 | |
| 292 | ext2fs_mark_super_dirty(fs); |
| 293 | ext2fs_mark_bb_dirty(fs); |
| 294 | ext2fs_mark_ib_dirty(fs); |
| 295 | |
| 296 | io_channel_set_blksize(fs->io, fs->blocksize); |
| 297 | |
| 298 | *ret_fs = fs; |
| 299 | return 0; |
| 300 | cleanup: |
| 301 | ext2fs_free(fs); |
| 302 | return retval; |
| 303 | } |
| 304 | |
| 305 | |
| 306 | |