blob: efe03be437640c3bcd8f5d0dbefd6290b57e0b8c [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * initialize.c --- initialize a filesystem handle given superblock
3 * parameters. Used by mke2fs when initializing a filesystem.
Theodore Ts'oefc6f622008-08-27 23:07:54 -04004 *
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00005 * Copyright (C) 1994, 1995, 1996 Theodore Ts'o.
Theodore Ts'oefc6f622008-08-27 23:07:54 -04006 *
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00007 * %Begin-Header%
Theodore Ts'o543547a2010-05-17 21:31:56 -04008 * This file may be redistributed under the terms of the GNU Library
9 * General Public License, version 2.
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000010 * %End-Header%
Theodore Ts'o3839e651997-04-26 13:21:57 +000011 */
12
13#include <stdio.h>
14#include <string.h>
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +000015#if HAVE_UNISTD_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000016#include <unistd.h>
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +000017#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000018#include <fcntl.h>
19#include <time.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000020#if HAVE_SYS_STAT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000021#include <sys/stat.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000022#endif
23#if HAVE_SYS_TYPES_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000024#include <sys/types.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000025#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000026
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +000027#include "ext2_fs.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000028#include "ext2fs.h"
29
Theodore Ts'o48e6e812003-07-06 00:36:48 -040030#if defined(__linux__) && defined(EXT2_OS_LINUX)
Theodore Ts'o50e1e101997-04-26 13:58:21 +000031#define CREATOR_OS EXT2_OS_LINUX
Theodore Ts'o48e6e812003-07-06 00:36:48 -040032#else
33#if defined(__GNU__) && defined(EXT2_OS_HURD)
Theodore Ts'o50e1e101997-04-26 13:58:21 +000034#define CREATOR_OS EXT2_OS_HURD
Theodore Ts'o48e6e812003-07-06 00:36:48 -040035#else
36#if defined(__FreeBSD__) && defined(EXT2_OS_FREEBSD)
Theodore Ts'o50e1e101997-04-26 13:58:21 +000037#define CREATOR_OS EXT2_OS_FREEBSD
Theodore Ts'o48e6e812003-07-06 00:36:48 -040038#else
39#if defined(LITES) && defined(EXT2_OS_LITES)
Theodore Ts'o50e1e101997-04-26 13:58:21 +000040#define CREATOR_OS EXT2_OS_LITES
41#else
42#define CREATOR_OS EXT2_OS_LINUX /* by default */
Theodore Ts'o48e6e812003-07-06 00:36:48 -040043#endif /* defined(LITES) && defined(EXT2_OS_LITES) */
44#endif /* defined(__FreeBSD__) && defined(EXT2_OS_FREEBSD) */
45#endif /* defined(__GNU__) && defined(EXT2_OS_HURD) */
46#endif /* defined(__linux__) && defined(EXT2_OS_LINUX) */
Theodore Ts'oefc6f622008-08-27 23:07:54 -040047
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000048/*
Theodore Ts'od323f8f2004-12-15 14:39:16 -050049 * Calculate the number of GDT blocks to reserve for online filesystem growth.
50 * The absolute maximum number of GDT blocks we can reserve is determined by
51 * the number of block pointers that can fit into a single block.
52 */
Theodore Ts'oa612f342006-03-17 20:39:52 -050053static unsigned int calc_reserved_gdt_blocks(ext2_filsys fs)
Theodore Ts'od323f8f2004-12-15 14:39:16 -050054{
55 struct ext2_super_block *sb = fs->super;
56 unsigned long bpg = sb->s_blocks_per_group;
Valerie Clementf2de1d32007-08-30 17:38:13 +020057 unsigned int gdpb = EXT2_DESC_PER_BLOCK(sb);
Theodore Ts'od323f8f2004-12-15 14:39:16 -050058 unsigned long max_blocks = 0xffffffff;
59 unsigned long rsv_groups;
Theodore Ts'oa612f342006-03-17 20:39:52 -050060 unsigned int rsv_gdb;
Theodore Ts'od323f8f2004-12-15 14:39:16 -050061
62 /* We set it at 1024x the current filesystem size, or
63 * the upper block count limit (2^32), whichever is lower.
64 */
Valerie Aurora Henson4efbac62009-09-07 20:46:34 -040065 if (ext2fs_blocks_count(sb) < max_blocks / 1024)
66 max_blocks = ext2fs_blocks_count(sb) * 1024;
Theodore Ts'oda3fc252010-06-13 09:00:00 -040067 /*
68 * ext2fs_div64_ceil() is unnecessary because max_blocks is
69 * max _GDT_ blocks, which is limited to 32 bits.
70 */
Theodore Ts'o69022e02006-08-30 01:57:00 -040071 rsv_groups = ext2fs_div_ceil(max_blocks - sb->s_first_data_block, bpg);
72 rsv_gdb = ext2fs_div_ceil(rsv_groups, gdpb) - fs->desc_blocks;
Theodore Ts'oa612f342006-03-17 20:39:52 -050073 if (rsv_gdb > EXT2_ADDR_PER_BLOCK(sb))
Theodore Ts'od323f8f2004-12-15 14:39:16 -050074 rsv_gdb = EXT2_ADDR_PER_BLOCK(sb);
Theodore Ts'o40abad62004-12-23 07:45:04 -050075#ifdef RES_GDT_DEBUG
Theodore Ts'oa612f342006-03-17 20:39:52 -050076 printf("max_blocks %lu, rsv_groups = %lu, rsv_gdb = %u\n",
Theodore Ts'od323f8f2004-12-15 14:39:16 -050077 max_blocks, rsv_groups, rsv_gdb);
Theodore Ts'o40abad62004-12-23 07:45:04 -050078#endif
Theodore Ts'od323f8f2004-12-15 14:39:16 -050079
80 return rsv_gdb;
81}
82
Theodore Ts'o3839e651997-04-26 13:21:57 +000083errcode_t ext2fs_initialize(const char *name, int flags,
84 struct ext2_super_block *param,
85 io_manager manager, ext2_filsys *ret_fs)
86{
87 ext2_filsys fs;
88 errcode_t retval;
89 struct ext2_super_block *super;
Theodore Ts'o54434922003-12-07 01:28:50 -050090 unsigned int rem;
91 unsigned int overhead = 0;
Theodore Ts'o54434922003-12-07 01:28:50 -050092 unsigned int ipg;
93 dgrp_t i;
Theodore Ts'o3cb6c501997-08-11 20:29:22 +000094 blk_t numblocks;
Theodore Ts'od323f8f2004-12-15 14:39:16 -050095 int rsv_gdt;
Theodore Ts'o5711ed22008-04-21 01:29:01 -040096 int csum_flag;
Theodore Ts'oc6ed60c2011-06-10 18:57:22 -040097 int bigalloc_flag;
Theodore Ts'o39c47ce2006-03-18 19:16:10 -050098 int io_flags;
Manish Katiyaradc4e772008-07-11 14:42:57 -040099 char *buf = 0;
Theodore Ts'of77704e2006-11-11 22:32:35 -0500100 char c;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000101
Valerie Aurora Henson4efbac62009-09-07 20:46:34 -0400102 if (!param || !ext2fs_blocks_count(param))
Theodore Ts'o1f0b6c11997-10-31 06:07:47 +0000103 return EXT2_ET_INVALID_ARGUMENT;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400104
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400105 retval = ext2fs_get_mem(sizeof(struct struct_ext2_filsys), &fs);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000106 if (retval)
107 return retval;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400108
Theodore Ts'o3839e651997-04-26 13:21:57 +0000109 memset(fs, 0, sizeof(struct struct_ext2_filsys));
Theodore Ts'of3db3561997-04-26 13:34:30 +0000110 fs->magic = EXT2_ET_MAGIC_EXT2FS_FILSYS;
Theodore Ts'o5df55d72001-06-11 07:00:04 +0000111 fs->flags = flags | EXT2_FLAG_RW;
Theodore Ts'o6a525062001-12-24 09:40:00 -0500112 fs->umask = 022;
Theodore Ts'o5df55d72001-06-11 07:00:04 +0000113#ifdef WORDS_BIGENDIAN
114 fs->flags |= EXT2_FLAG_SWAP_BYTES;
115#endif
Theodore Ts'o39c47ce2006-03-18 19:16:10 -0500116 io_flags = IO_FLAG_RW;
117 if (flags & EXT2_FLAG_EXCLUSIVE)
118 io_flags |= IO_FLAG_EXCLUSIVE;
119 retval = manager->open(name, io_flags, &fs->io);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000120 if (retval)
121 goto cleanup;
Theodore Ts'o1ad54a92004-07-28 21:11:48 -0400122 fs->image_io = fs->io;
Theodore Ts'oe9affb71997-08-24 02:57:55 +0000123 fs->io->app_data = fs;
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400124 retval = ext2fs_get_mem(strlen(name)+1, &fs->device_name);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000125 if (retval)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000126 goto cleanup;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000127
Theodore Ts'o3839e651997-04-26 13:21:57 +0000128 strcpy(fs->device_name, name);
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400129 retval = ext2fs_get_mem(SUPERBLOCK_SIZE, &super);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000130 if (retval)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000131 goto cleanup;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000132 fs->super = super;
133
Theodore Ts'o3839e651997-04-26 13:21:57 +0000134 memset(super, 0, SUPERBLOCK_SIZE);
135
136#define set_field(field, default) (super->field = param->field ? \
137 param->field : (default))
Theodore Ts'oc6ed60c2011-06-10 18:57:22 -0400138#define assign_field(field) (super->field = param->field)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000139
140 super->s_magic = EXT2_SUPER_MAGIC;
141 super->s_state = EXT2_VALID_FS;
142
Theodore Ts'oc6ed60c2011-06-10 18:57:22 -0400143 bigalloc_flag = EXT2_HAS_RO_COMPAT_FEATURE(param,
144 EXT4_FEATURE_RO_COMPAT_BIGALLOC);
145
146 assign_field(s_log_block_size);
147
148 if (bigalloc_flag) {
149 set_field(s_log_cluster_size, super->s_log_block_size+4);
150 if (super->s_log_block_size > super->s_log_cluster_size) {
151 retval = EXT2_ET_INVALID_ARGUMENT;
152 goto cleanup;
153 }
154 } else
155 super->s_log_cluster_size = super->s_log_block_size;
156
157 set_field(s_first_data_block, super->s_log_cluster_size ? 0 : 1);
Eric Sandeen3daf5922011-02-17 15:55:15 -0600158 set_field(s_max_mnt_count, 0);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000159 set_field(s_errors, EXT2_ERRORS_DEFAULT);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000160 set_field(s_feature_compat, 0);
161 set_field(s_feature_incompat, 0);
162 set_field(s_feature_ro_compat, 0);
Eric Sandeen6a426c92011-02-17 15:56:17 -0600163 set_field(s_default_mount_opts, 0);
Theodore Ts'oc046ac72002-10-20 00:38:57 -0400164 set_field(s_first_meta_bg, 0);
Theodore Ts'o0c17cb22008-02-18 22:56:25 -0500165 set_field(s_raid_stride, 0); /* default stride size: 0 */
166 set_field(s_raid_stripe_width, 0); /* default stripe width: 0 */
Theodore Ts'o9ba40002008-04-22 08:27:01 -0400167 set_field(s_log_groups_per_flex, 0);
Theodore Ts'o6cb27402008-01-26 19:06:35 -0500168 set_field(s_flags, 0);
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500169 if (super->s_feature_incompat & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP) {
170 retval = EXT2_ET_UNSUPP_FEATURE;
171 goto cleanup;
172 }
173 if (super->s_feature_ro_compat & ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP) {
174 retval = EXT2_ET_RO_UNSUPP_FEATURE;
175 goto cleanup;
176 }
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000177
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000178 set_field(s_rev_level, EXT2_GOOD_OLD_REV);
179 if (super->s_rev_level >= EXT2_DYNAMIC_REV) {
180 set_field(s_first_ino, EXT2_GOOD_OLD_FIRST_INO);
181 set_field(s_inode_size, EXT2_GOOD_OLD_INODE_SIZE);
Theodore Ts'o00a92842008-04-20 16:02:13 -0400182 if (super->s_inode_size >= sizeof(struct ext2_inode_large)) {
183 int extra_isize = sizeof(struct ext2_inode_large) -
184 EXT2_GOOD_OLD_INODE_SIZE;
185 set_field(s_min_extra_isize, extra_isize);
186 set_field(s_want_extra_isize, extra_isize);
187 }
Theodore Ts'o0f2794c2008-04-22 23:18:37 -0400188 } else {
189 super->s_first_ino = EXT2_GOOD_OLD_FIRST_INO;
190 super->s_inode_size = EXT2_GOOD_OLD_INODE_SIZE;
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000191 }
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000192
Eric Sandeen3daf5922011-02-17 15:55:15 -0600193 set_field(s_checkinterval, 0);
Theodore Ts'o32138182005-09-24 20:14:51 -0400194 super->s_mkfs_time = super->s_lastcheck = fs->now ? fs->now : time(NULL);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000195
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000196 super->s_creator_os = CREATOR_OS;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000197
Theodore Ts'o3839e651997-04-26 13:21:57 +0000198 fs->blocksize = EXT2_BLOCK_SIZE(super);
Theodore Ts'o1da5ef72011-06-04 10:20:47 -0400199 fs->cluster_ratio_bits = super->s_log_cluster_size -
200 super->s_log_block_size;
Andreas Dilgerb21bf262002-06-10 11:05:56 -0600201
Theodore Ts'oc6ed60c2011-06-10 18:57:22 -0400202 if (bigalloc_flag) {
203 if (param->s_blocks_per_group &&
204 param->s_clusters_per_group &&
205 ((param->s_clusters_per_group * EXT2FS_CLUSTER_RATIO(fs)) !=
206 param->s_blocks_per_group)) {
207 retval = EXT2_ET_INVALID_ARGUMENT;
208 goto cleanup;
209 }
210 if (param->s_clusters_per_group)
211 assign_field(s_clusters_per_group);
212 else if (param->s_blocks_per_group)
213 super->s_clusters_per_group =
214 param->s_blocks_per_group /
215 EXT2FS_CLUSTER_RATIO(fs);
216 else
217 super->s_clusters_per_group = fs->blocksize * 8;
218 if (super->s_clusters_per_group > EXT2_MAX_CLUSTERS_PER_GROUP(super))
219 super->s_blocks_per_group = EXT2_MAX_CLUSTERS_PER_GROUP(super);
220 super->s_blocks_per_group = EXT2FS_C2B(fs,
221 super->s_clusters_per_group);
222 } else {
223 set_field(s_blocks_per_group, fs->blocksize * 8);
224 if (super->s_blocks_per_group > EXT2_MAX_BLOCKS_PER_GROUP(super))
225 super->s_blocks_per_group = EXT2_MAX_BLOCKS_PER_GROUP(super);
226 super->s_clusters_per_group = super->s_blocks_per_group;
227 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400228
Theodore Ts'oc6ed60c2011-06-10 18:57:22 -0400229 ext2fs_blocks_count_set(super, ext2fs_blocks_count(param) &
230 ~((blk64_t) EXT2FS_CLUSTER_MASK(fs)));
Valerie Aurora Henson4efbac62009-09-07 20:46:34 -0400231 ext2fs_r_blocks_count_set(super, ext2fs_r_blocks_count(param));
232 if (ext2fs_r_blocks_count(super) >= ext2fs_blocks_count(param)) {
Theodore Ts'o1f0b6c11997-10-31 06:07:47 +0000233 retval = EXT2_ET_INVALID_ARGUMENT;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000234 goto cleanup;
235 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000236
Theodore Ts'oa1128472001-01-16 06:56:14 +0000237 /*
238 * If we're creating an external journal device, we don't need
239 * to bother with the rest.
240 */
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500241 if (super->s_feature_incompat & EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
Theodore Ts'oa1128472001-01-16 06:56:14 +0000242 fs->group_desc_count = 0;
243 ext2fs_mark_super_dirty(fs);
244 *ret_fs = fs;
245 return 0;
246 }
247
Theodore Ts'o3839e651997-04-26 13:21:57 +0000248retry:
Valerie Aurora Henson4efbac62009-09-07 20:46:34 -0400249 fs->group_desc_count = (blk_t) ext2fs_div64_ceil(
250 ext2fs_blocks_count(super) - super->s_first_data_block,
251 EXT2_BLOCKS_PER_GROUP(super));
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500252 if (fs->group_desc_count == 0) {
253 retval = EXT2_ET_TOOSMALL;
254 goto cleanup;
255 }
Theodore Ts'oda3fc252010-06-13 09:00:00 -0400256
257 if (super->s_feature_incompat & EXT4_FEATURE_INCOMPAT_64BIT)
258 super->s_desc_size = EXT2_MIN_DESC_SIZE_64BIT;
259
Theodore Ts'o69022e02006-08-30 01:57:00 -0400260 fs->desc_blocks = ext2fs_div_ceil(fs->group_desc_count,
261 EXT2_DESC_PER_BLOCK(super));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000262
Andreas Dilger932a4892002-05-16 03:20:07 -0600263 i = fs->blocksize >= 4096 ? 1 : 4096 / fs->blocksize;
Theodore Ts'oda3fc252010-06-13 09:00:00 -0400264
265 if (super->s_feature_incompat & EXT4_FEATURE_INCOMPAT_64BIT &&
266 (ext2fs_blocks_count(super) / i) > (1ULL << 32))
267 set_field(s_inodes_count, ~0U);
268 else
269 set_field(s_inodes_count, ext2fs_blocks_count(super) / i);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000270
271 /*
Theodore Ts'o8d7e83b1998-09-23 00:27:26 +0000272 * Make sure we have at least EXT2_FIRST_INO + 1 inodes, so
273 * that we have enough inodes for the filesystem(!)
274 */
Theodore Ts'o7a469521999-01-04 08:50:59 +0000275 if (super->s_inodes_count < EXT2_FIRST_INODE(super)+1)
276 super->s_inodes_count = EXT2_FIRST_INODE(super)+1;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400277
Theodore Ts'o8d7e83b1998-09-23 00:27:26 +0000278 /*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000279 * There should be at least as many inodes as the user
280 * requested. Figure out how many inodes per group that
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000281 * should be. But make sure that we don't allocate more than
Andreas Dilgerb21bf262002-06-10 11:05:56 -0600282 * one bitmap's worth of inodes each group.
Theodore Ts'o3839e651997-04-26 13:21:57 +0000283 */
Theodore Ts'o69022e02006-08-30 01:57:00 -0400284 ipg = ext2fs_div_ceil(super->s_inodes_count, fs->group_desc_count);
Theodore Ts'o4564c722003-01-19 21:01:22 -0500285 if (ipg > fs->blocksize * 8) {
Theodore Ts'oc6ed60c2011-06-10 18:57:22 -0400286 if (!bigalloc_flag && super->s_blocks_per_group >= 256) {
Theodore Ts'o4564c722003-01-19 21:01:22 -0500287 /* Try again with slightly different parameters */
288 super->s_blocks_per_group -= 8;
Valerie Aurora Henson4efbac62009-09-07 20:46:34 -0400289 ext2fs_blocks_count_set(super,
290 ext2fs_blocks_count(param));
Theodore Ts'o412376e2011-02-25 21:43:54 -0500291 super->s_clusters_per_group = super->s_blocks_per_group;
Theodore Ts'o4564c722003-01-19 21:01:22 -0500292 goto retry;
Manish Katiyarbaf8ab92008-08-23 17:11:07 +0530293 } else {
294 retval = EXT2_ET_TOO_MANY_INODES;
295 goto cleanup;
296 }
Theodore Ts'o4564c722003-01-19 21:01:22 -0500297 }
Andreas Dilgerb21bf262002-06-10 11:05:56 -0600298
Theodore Ts'o54434922003-12-07 01:28:50 -0500299 if (ipg > (unsigned) EXT2_MAX_INODES_PER_GROUP(super))
Andreas Dilgerb21bf262002-06-10 11:05:56 -0600300 ipg = EXT2_MAX_INODES_PER_GROUP(super);
301
Eric Sandeenf3358642006-09-12 14:56:17 -0400302ipg_retry:
Andreas Dilgerb21bf262002-06-10 11:05:56 -0600303 super->s_inodes_per_group = ipg;
Andreas Dilgerb21bf262002-06-10 11:05:56 -0600304
Theodore Ts'o3839e651997-04-26 13:21:57 +0000305 /*
306 * Make sure the number of inodes per group completely fills
307 * the inode table blocks in the descriptor. If not, add some
308 * additional inodes/group. Waste not, want not...
309 */
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000310 fs->inode_blocks_per_group = (((super->s_inodes_per_group *
311 EXT2_INODE_SIZE(super)) +
312 EXT2_BLOCK_SIZE(super) - 1) /
313 EXT2_BLOCK_SIZE(super));
314 super->s_inodes_per_group = ((fs->inode_blocks_per_group *
315 EXT2_BLOCK_SIZE(super)) /
316 EXT2_INODE_SIZE(super));
317 /*
318 * Finally, make sure the number of inodes per group is a
319 * multiple of 8. This is needed to simplify the bitmap
320 * splicing code.
321 */
Tao Ma598d20c2011-05-09 23:38:42 +0800322 if (super->s_inodes_per_group < 8)
323 super->s_inodes_per_group = 8;
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000324 super->s_inodes_per_group &= ~7;
325 fs->inode_blocks_per_group = (((super->s_inodes_per_group *
326 EXT2_INODE_SIZE(super)) +
327 EXT2_BLOCK_SIZE(super) - 1) /
328 EXT2_BLOCK_SIZE(super));
329
Theodore Ts'o3839e651997-04-26 13:21:57 +0000330 /*
331 * adjust inode count to reflect the adjusted inodes_per_group
332 */
Eric Sandeenf3358642006-09-12 14:56:17 -0400333 if ((__u64)super->s_inodes_per_group * fs->group_desc_count > ~0U) {
334 ipg--;
335 goto ipg_retry;
336 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000337 super->s_inodes_count = super->s_inodes_per_group *
338 fs->group_desc_count;
339 super->s_free_inodes_count = super->s_inodes_count;
340
341 /*
Theodore Ts'od323f8f2004-12-15 14:39:16 -0500342 * check the number of reserved group descriptor table blocks
343 */
344 if (super->s_feature_compat & EXT2_FEATURE_COMPAT_RESIZE_INODE)
345 rsv_gdt = calc_reserved_gdt_blocks(fs);
346 else
347 rsv_gdt = 0;
348 set_field(s_reserved_gdt_blocks, rsv_gdt);
349 if (super->s_reserved_gdt_blocks > EXT2_ADDR_PER_BLOCK(super)) {
350 retval = EXT2_ET_RES_GDT_BLOCKS;
351 goto cleanup;
352 }
353
354 /*
Theodore Ts'o5a92a622007-07-22 15:07:13 -0400355 * Calculate the maximum number of bookkeeping blocks per
356 * group. It includes the superblock, the block group
357 * descriptors, the block bitmap, the inode bitmap, the inode
358 * table, and the reserved gdt blocks.
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000359 */
Theodore Ts'o5a92a622007-07-22 15:07:13 -0400360 overhead = (int) (3 + fs->inode_blocks_per_group +
361 fs->desc_blocks + super->s_reserved_gdt_blocks);
Theodore Ts'o4564c722003-01-19 21:01:22 -0500362
363 /* This can only happen if the user requested too many inodes */
Manish Katiyarbaf8ab92008-08-23 17:11:07 +0530364 if (overhead > super->s_blocks_per_group) {
365 retval = EXT2_ET_TOO_MANY_INODES;
366 goto cleanup;
367 }
Theodore Ts'o4564c722003-01-19 21:01:22 -0500368
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000369 /*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000370 * See if the last group is big enough to support the
371 * necessary data structures. If not, we need to get rid of
Theodore Ts'o5a92a622007-07-22 15:07:13 -0400372 * it. We need to recalculate the overhead for the last block
373 * group, since it might or might not have a superblock
374 * backup.
Theodore Ts'o3839e651997-04-26 13:21:57 +0000375 */
Theodore Ts'o5a92a622007-07-22 15:07:13 -0400376 overhead = (int) (2 + fs->inode_blocks_per_group);
377 if (ext2fs_bg_has_super(fs, fs->group_desc_count - 1))
378 overhead += 1 + fs->desc_blocks + super->s_reserved_gdt_blocks;
Valerie Aurora Henson4efbac62009-09-07 20:46:34 -0400379 rem = ((ext2fs_blocks_count(super) - super->s_first_data_block) %
Theodore Ts'o54434922003-12-07 01:28:50 -0500380 super->s_blocks_per_group);
Manish Katiyarbaf8ab92008-08-23 17:11:07 +0530381 if ((fs->group_desc_count == 1) && rem && (rem < overhead)) {
382 retval = EXT2_ET_TOOSMALL;
383 goto cleanup;
384 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000385 if (rem && (rem < overhead+50)) {
Valerie Aurora Henson4efbac62009-09-07 20:46:34 -0400386 ext2fs_blocks_count_set(super, ext2fs_blocks_count(super) -
387 rem);
388
Theodore Ts'o3839e651997-04-26 13:21:57 +0000389 goto retry;
390 }
391
392 /*
393 * At this point we know how big the filesystem will be. So
394 * we can do any and all allocations that depend on the block
395 * count.
396 */
397
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400398 retval = ext2fs_get_mem(strlen(fs->device_name) + 80, &buf);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000399 if (retval)
Theodore Ts'of3db3561997-04-26 13:34:30 +0000400 goto cleanup;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400401
Theodore Ts'o2d40a912008-08-22 10:37:18 -0400402 strcpy(buf, "block bitmap for ");
403 strcat(buf, fs->device_name);
Theodore Ts'oc6ed60c2011-06-10 18:57:22 -0400404 retval = ext2fs_allocate_subcluster_bitmap(fs, buf, &fs->block_map);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000405 if (retval)
406 goto cleanup;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400407
Theodore Ts'o2d40a912008-08-22 10:37:18 -0400408 strcpy(buf, "inode bitmap for ");
409 strcat(buf, fs->device_name);
Theodore Ts'o5c576471997-04-29 15:29:49 +0000410 retval = ext2fs_allocate_inode_bitmap(fs, buf, &fs->inode_map);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000411 if (retval)
412 goto cleanup;
413
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400414 ext2fs_free_mem(&buf);
Theodore Ts'of3db3561997-04-26 13:34:30 +0000415
Theodore Ts'oee010792007-11-09 19:01:06 -0500416 retval = ext2fs_get_array(fs->desc_blocks, fs->blocksize,
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400417 &fs->group_desc);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000418 if (retval)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000419 goto cleanup;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000420
Theodore Ts'o3cb6c501997-08-11 20:29:22 +0000421 memset(fs->group_desc, 0, (size_t) fs->desc_blocks * fs->blocksize);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000422
Theodore Ts'of3db3561997-04-26 13:34:30 +0000423 /*
424 * Reserve the superblock and group descriptors for each
425 * group, and fill in the correct group statistics for group.
426 * Note that although the block bitmap, inode bitmap, and
427 * inode table have not been allocated (and in fact won't be
428 * by this routine), they are accounted for nevertheless.
Theodore Ts'o9ba40002008-04-22 08:27:01 -0400429 *
430 * If FLEX_BG meta-data grouping is used, only account for the
431 * superblock and group descriptors (the inode tables and
432 * bitmaps will be accounted for when allocated).
Theodore Ts'of3db3561997-04-26 13:34:30 +0000433 */
Valerie Aurora Henson4efbac62009-09-07 20:46:34 -0400434 ext2fs_free_blocks_count_set(super, 0);
Theodore Ts'o5711ed22008-04-21 01:29:01 -0400435 csum_flag = EXT2_HAS_RO_COMPAT_FEATURE(fs->super,
436 EXT4_FEATURE_RO_COMPAT_GDT_CSUM);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000437 for (i = 0; i < fs->group_desc_count; i++) {
Theodore Ts'o5711ed22008-04-21 01:29:01 -0400438 /*
439 * Don't set the BLOCK_UNINIT group for the last group
440 * because the block bitmap needs to be padded.
441 */
442 if (csum_flag) {
443 if (i != fs->group_desc_count - 1)
Eric Sandeene633b582009-10-25 21:41:32 -0400444 ext2fs_bg_flags_set(fs, i,
445 EXT2_BG_BLOCK_UNINIT);
446 ext2fs_bg_flags_set(fs, i, EXT2_BG_INODE_UNINIT);
Theodore Ts'o0f2794c2008-04-22 23:18:37 -0400447 numblocks = super->s_inodes_per_group;
448 if (i == 0)
449 numblocks -= super->s_first_ino;
Valerie Aurora Hensond7cca6b2009-10-25 21:43:47 -0400450 ext2fs_bg_itable_unused_set(fs, i, numblocks);
Theodore Ts'o5711ed22008-04-21 01:29:01 -0400451 }
Theodore Ts'oef344e12003-11-21 09:02:21 -0500452 numblocks = ext2fs_reserve_super_and_bgd(fs, i, fs->block_map);
Theodore Ts'o9ba40002008-04-22 08:27:01 -0400453 if (fs->super->s_log_groups_per_flex)
454 numblocks += 2 + fs->inode_blocks_per_group;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000455
Valerie Aurora Henson4efbac62009-09-07 20:46:34 -0400456 ext2fs_free_blocks_count_set(super,
457 ext2fs_free_blocks_count(super) +
458 numblocks);
Valerie Aurora Hensond7cca6b2009-10-25 21:43:47 -0400459 ext2fs_bg_free_blocks_count_set(fs, i, numblocks);
460 ext2fs_bg_free_inodes_count_set(fs, i, fs->super->s_inodes_per_group);
461 ext2fs_bg_used_dirs_count_set(fs, i, 0);
Jose R. Santosd4f34d42007-10-21 21:03:25 -0500462 ext2fs_group_desc_csum_set(fs, i);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000463 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400464
Theodore Ts'of77704e2006-11-11 22:32:35 -0500465 c = (char) 255;
466 if (((int) c) == -1) {
467 super->s_flags |= EXT2_FLAGS_SIGNED_HASH;
468 } else {
469 super->s_flags |= EXT2_FLAGS_UNSIGNED_HASH;
470 }
471
Theodore Ts'o3839e651997-04-26 13:21:57 +0000472 ext2fs_mark_super_dirty(fs);
473 ext2fs_mark_bb_dirty(fs);
474 ext2fs_mark_ib_dirty(fs);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400475
Theodore Ts'o3839e651997-04-26 13:21:57 +0000476 io_channel_set_blksize(fs->io, fs->blocksize);
477
478 *ret_fs = fs;
479 return 0;
480cleanup:
Jim Meyering45e338f2009-02-23 18:07:50 +0100481 free(buf);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000482 ext2fs_free(fs);
483 return retval;
484}