blob: f9e744b35e2c26ff2fd998e84650895bf97b6dc0 [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'o1e3472c1997-04-29 14:53:37 +00004 *
5 * Copyright (C) 1994, 1995, 1996 Theodore Ts'o.
6 *
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00007 * %Begin-Header%
Theodore Ts'o1e3472c1997-04-29 14:53:37 +00008 * This file may be redistributed under the terms of the GNU Public
9 * License.
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>
15#include <unistd.h>
16#include <stdlib.h>
17#include <fcntl.h>
18#include <time.h>
19#include <sys/stat.h>
20#include <sys/types.h>
Theodore Ts'o50e1e101997-04-26 13:58:21 +000021#if HAVE_ERRNO_H
22#include <errno.h>
23#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000024
Theodore Ts'o3839e651997-04-26 13:21:57 +000025#include <linux/ext2_fs.h>
26
27#include "ext2fs.h"
28
Theodore Ts'o50e1e101997-04-26 13:58:21 +000029#if defined(__linux__) && defined(EXT2_OS_LINUX)
30#define CREATOR_OS EXT2_OS_LINUX
31#elif defined(__gnu__) && defined(EXT2_OS_HURD)
32#define CREATOR_OS EXT2_OS_HURD
33#elif defined(__FreeBSD__) && defined(EXT2_OS_FREEBSD)
34#define CREATOR_OS EXT2_OS_FREEBSD
35#elif defined(LITES) && defined(EXT2_OS_LITES)
36#define CREATOR_OS EXT2_OS_LITES
37#else
38#define CREATOR_OS EXT2_OS_LINUX /* by default */
39#endif
40
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000041/*
42 * Note we override the kernel include file's idea of what the default
43 * check interval (never) should be. It's a good idea to check at
44 * least *occasionally*, specially since servers will never rarely get
45 * to reboot, since Linux is so robust these days. :-)
46 *
47 * 180 days (six months) seems like a good value.
48 */
49#ifdef EXT2_DFL_CHECKINTERVAL
50#undef EXT2_DFL_CHECKINTERVAL
51#endif
52#define EXT2_DFL_CHECKINTERVAL (86400 * 180)
53
Theodore Ts'o3839e651997-04-26 13:21:57 +000054errcode_t ext2fs_initialize(const char *name, int flags,
55 struct ext2_super_block *param,
56 io_manager manager, ext2_filsys *ret_fs)
57{
58 ext2_filsys fs;
59 errcode_t retval;
60 struct ext2_super_block *super;
61 int frags_per_block;
62 int rem;
63 int overhead = 0;
64 blk_t group_block;
65 int i, j;
Theodore Ts'of3db3561997-04-26 13:34:30 +000066 int numblocks;
67 char *buf;
Theodore Ts'o3839e651997-04-26 13:21:57 +000068
69 if (!param || !param->s_blocks_count)
70 return EINVAL;
71
72 fs = (ext2_filsys) malloc(sizeof(struct struct_ext2_filsys));
73 if (!fs)
74 return ENOMEM;
75
76 memset(fs, 0, sizeof(struct struct_ext2_filsys));
Theodore Ts'of3db3561997-04-26 13:34:30 +000077 fs->magic = EXT2_ET_MAGIC_EXT2FS_FILSYS;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000078 fs->flags = flags | EXT2_FLAG_RW | ext2fs_native_flag();
Theodore Ts'o3839e651997-04-26 13:21:57 +000079 retval = manager->open(name, IO_FLAG_RW, &fs->io);
80 if (retval)
81 goto cleanup;
82 fs->device_name = malloc(strlen(name)+1);
83 if (!fs->device_name) {
84 retval = ENOMEM;
85 goto cleanup;
86 }
87 strcpy(fs->device_name, name);
88 fs->super = super = malloc(SUPERBLOCK_SIZE);
89 if (!super) {
90 retval = ENOMEM;
91 goto cleanup;
92 }
93 memset(super, 0, SUPERBLOCK_SIZE);
94
95#define set_field(field, default) (super->field = param->field ? \
96 param->field : (default))
97
98 super->s_magic = EXT2_SUPER_MAGIC;
99 super->s_state = EXT2_VALID_FS;
100
101 set_field(s_log_block_size, 0); /* default blocksize: 1024 bytes */
102 set_field(s_log_frag_size, 0); /* default fragsize: 1024 bytes */
103 set_field(s_first_data_block, super->s_log_block_size ? 0 : 1);
104 set_field(s_max_mnt_count, EXT2_DFL_MAX_MNT_COUNT);
105 set_field(s_errors, EXT2_ERRORS_DEFAULT);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000106#ifdef EXT2_DYNAMIC_REV
107 set_field(s_feature_compat, 0);
108 set_field(s_feature_incompat, 0);
109 set_field(s_feature_ro_compat, 0);
110 if (super->s_feature_incompat & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP)
Theodore Ts'o521e3681997-04-29 17:48:10 +0000111 return EXT2_ET_UNSUPP_FEATURE;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000112 if (super->s_feature_ro_compat & ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP)
Theodore Ts'o521e3681997-04-29 17:48:10 +0000113 return EXT2_ET_RO_UNSUPP_FEATURE;
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000114
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000115 set_field(s_rev_level, EXT2_GOOD_OLD_REV);
116 if (super->s_rev_level >= EXT2_DYNAMIC_REV) {
117 set_field(s_first_ino, EXT2_GOOD_OLD_FIRST_INO);
118 set_field(s_inode_size, EXT2_GOOD_OLD_INODE_SIZE);
119 }
120#endif
121
Theodore Ts'o3839e651997-04-26 13:21:57 +0000122 set_field(s_checkinterval, EXT2_DFL_CHECKINTERVAL);
123 super->s_lastcheck = time(NULL);
124
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000125 super->s_creator_os = CREATOR_OS;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000126
Theodore Ts'o3839e651997-04-26 13:21:57 +0000127 fs->blocksize = EXT2_BLOCK_SIZE(super);
128 fs->fragsize = EXT2_FRAG_SIZE(super);
129 frags_per_block = fs->blocksize / fs->fragsize;
130
Theodore Ts'o521e3681997-04-29 17:48:10 +0000131 /* default: (fs->blocksize*8) blocks/group */
132 set_field(s_blocks_per_group, fs->blocksize*8);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000133 super->s_frags_per_group = super->s_blocks_per_group * frags_per_block;
134
135 super->s_blocks_count = param->s_blocks_count;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000136 super->s_r_blocks_count = param->s_r_blocks_count;
137 if (super->s_r_blocks_count >= param->s_blocks_count) {
138 retval = EINVAL;
139 goto cleanup;
140 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000141
142retry:
Theodore Ts'o3839e651997-04-26 13:21:57 +0000143 fs->group_desc_count = (super->s_blocks_count -
144 super->s_first_data_block +
145 EXT2_BLOCKS_PER_GROUP(super) - 1)
146 / EXT2_BLOCKS_PER_GROUP(super);
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000147 if (fs->group_desc_count == 0)
148 return EXT2_ET_TOOSMALL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000149 fs->desc_blocks = (fs->group_desc_count +
150 EXT2_DESC_PER_BLOCK(super) - 1)
151 / EXT2_DESC_PER_BLOCK(super);
152
153 set_field(s_inodes_count, (super->s_blocks_count*fs->blocksize)/4096);
154
155 /*
156 * There should be at least as many inodes as the user
157 * requested. Figure out how many inodes per group that
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000158 * should be. But make sure that we don't allocate more than
159 * one bitmap's worth of inodes
Theodore Ts'o3839e651997-04-26 13:21:57 +0000160 */
161 super->s_inodes_per_group = (super->s_inodes_count +
162 fs->group_desc_count - 1) /
163 fs->group_desc_count;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000164 if (super->s_inodes_per_group > fs->blocksize*8)
165 super->s_inodes_per_group = fs->blocksize*8;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000166
167 /*
168 * Make sure the number of inodes per group completely fills
169 * the inode table blocks in the descriptor. If not, add some
170 * additional inodes/group. Waste not, want not...
171 */
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000172 fs->inode_blocks_per_group = (((super->s_inodes_per_group *
173 EXT2_INODE_SIZE(super)) +
174 EXT2_BLOCK_SIZE(super) - 1) /
175 EXT2_BLOCK_SIZE(super));
176 super->s_inodes_per_group = ((fs->inode_blocks_per_group *
177 EXT2_BLOCK_SIZE(super)) /
178 EXT2_INODE_SIZE(super));
179 /*
180 * Finally, make sure the number of inodes per group is a
181 * multiple of 8. This is needed to simplify the bitmap
182 * splicing code.
183 */
184 super->s_inodes_per_group &= ~7;
185 fs->inode_blocks_per_group = (((super->s_inodes_per_group *
186 EXT2_INODE_SIZE(super)) +
187 EXT2_BLOCK_SIZE(super) - 1) /
188 EXT2_BLOCK_SIZE(super));
189
Theodore Ts'o3839e651997-04-26 13:21:57 +0000190 /*
191 * adjust inode count to reflect the adjusted inodes_per_group
192 */
193 super->s_inodes_count = super->s_inodes_per_group *
194 fs->group_desc_count;
195 super->s_free_inodes_count = super->s_inodes_count;
196
197 /*
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000198 * Overhead is the number of bookkeeping blocks per group. It
199 * includes the superblock backup, the group descriptor
200 * backups, the inode bitmap, the block bitmap, and the inode
201 * table.
202 *
203 * XXX Not all block groups need the descriptor blocks, but
204 * being clever is tricky...
205 */
206 overhead = 3 + fs->desc_blocks + fs->inode_blocks_per_group;
207
208 /*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000209 * See if the last group is big enough to support the
210 * necessary data structures. If not, we need to get rid of
211 * it.
212 */
213 rem = (super->s_blocks_count - super->s_first_data_block) %
214 super->s_blocks_per_group;
215 if ((fs->group_desc_count == 1) && rem && (rem < overhead))
216 return EXT2_ET_TOOSMALL;
217 if (rem && (rem < overhead+50)) {
218 super->s_blocks_count -= rem;
219 goto retry;
220 }
221
222 /*
223 * At this point we know how big the filesystem will be. So
224 * we can do any and all allocations that depend on the block
225 * count.
226 */
227
Theodore Ts'of3db3561997-04-26 13:34:30 +0000228 buf = malloc(strlen(fs->device_name) + 80);
229 if (!buf) {
230 retval = ENOMEM;
231 goto cleanup;
232 }
233
234 sprintf(buf, "block bitmap for %s", fs->device_name);
235 retval = ext2fs_allocate_block_bitmap(fs, buf, &fs->block_map);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000236 if (retval)
237 goto cleanup;
238
Theodore Ts'of3db3561997-04-26 13:34:30 +0000239 sprintf(buf, "inode bitmap for %s", fs->device_name);
Theodore Ts'o5c576471997-04-29 15:29:49 +0000240 retval = ext2fs_allocate_inode_bitmap(fs, buf, &fs->inode_map);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000241 if (retval)
242 goto cleanup;
243
Theodore Ts'of3db3561997-04-26 13:34:30 +0000244 free(buf);
245
Theodore Ts'o3839e651997-04-26 13:21:57 +0000246 fs->group_desc = malloc(fs->desc_blocks * fs->blocksize);
247 if (!fs->group_desc) {
248 retval = ENOMEM;
249 goto cleanup;
250 }
251 memset(fs->group_desc, 0, fs->desc_blocks * fs->blocksize);
252
Theodore Ts'of3db3561997-04-26 13:34:30 +0000253 /*
254 * Reserve the superblock and group descriptors for each
255 * group, and fill in the correct group statistics for group.
256 * Note that although the block bitmap, inode bitmap, and
257 * inode table have not been allocated (and in fact won't be
258 * by this routine), they are accounted for nevertheless.
259 */
Theodore Ts'o3839e651997-04-26 13:21:57 +0000260 group_block = super->s_first_data_block;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000261 super->s_free_blocks_count = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000262 for (i = 0; i < fs->group_desc_count; i++) {
Theodore Ts'of3db3561997-04-26 13:34:30 +0000263 if (i == fs->group_desc_count-1) {
264 numblocks = (fs->super->s_blocks_count -
265 fs->super->s_first_data_block) %
266 fs->super->s_blocks_per_group;
267 if (!numblocks)
268 numblocks = fs->super->s_blocks_per_group;
269 } else
270 numblocks = fs->super->s_blocks_per_group;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000271
272 if (ext2fs_bg_has_super(fs, i)) {
273 for (j=0; j < fs->desc_blocks+1; j++)
274 ext2fs_mark_block_bitmap(fs->block_map,
275 group_block + j);
276 numblocks -= 1 + fs->desc_blocks;
277 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000278
Theodore Ts'o521e3681997-04-29 17:48:10 +0000279 numblocks -= 2 + fs->inode_blocks_per_group;
280
281 super->s_free_blocks_count += numblocks;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000282 fs->group_desc[i].bg_free_blocks_count = numblocks;
283 fs->group_desc[i].bg_free_inodes_count =
284 fs->super->s_inodes_per_group;
285 fs->group_desc[i].bg_used_dirs_count = 0;
286
Theodore Ts'o3839e651997-04-26 13:21:57 +0000287 group_block += super->s_blocks_per_group;
288 }
289
290 ext2fs_mark_super_dirty(fs);
291 ext2fs_mark_bb_dirty(fs);
292 ext2fs_mark_ib_dirty(fs);
293
294 io_channel_set_blksize(fs->io, fs->blocksize);
295
296 *ret_fs = fs;
297 return 0;
298cleanup:
299 ext2fs_free(fs);
300 return retval;
301}
302
303
304