blob: 72f40eaad819732ee82ef8b166126af70801b0ae [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;
Theodore Ts'o521e3681997-04-29 17:48:10 +000061 struct ext2fs_sb *s;
Theodore Ts'o3839e651997-04-26 13:21:57 +000062 int frags_per_block;
63 int rem;
64 int overhead = 0;
65 blk_t group_block;
66 int i, j;
Theodore Ts'of3db3561997-04-26 13:34:30 +000067 int numblocks;
68 char *buf;
Theodore Ts'o3839e651997-04-26 13:21:57 +000069
70 if (!param || !param->s_blocks_count)
71 return EINVAL;
72
73 fs = (ext2_filsys) malloc(sizeof(struct struct_ext2_filsys));
74 if (!fs)
75 return ENOMEM;
76
77 memset(fs, 0, sizeof(struct struct_ext2_filsys));
Theodore Ts'of3db3561997-04-26 13:34:30 +000078 fs->magic = EXT2_ET_MAGIC_EXT2FS_FILSYS;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000079 fs->flags = flags | EXT2_FLAG_RW | ext2fs_native_flag();
Theodore Ts'o3839e651997-04-26 13:21:57 +000080 retval = manager->open(name, IO_FLAG_RW, &fs->io);
81 if (retval)
82 goto cleanup;
83 fs->device_name = malloc(strlen(name)+1);
84 if (!fs->device_name) {
85 retval = ENOMEM;
86 goto cleanup;
87 }
88 strcpy(fs->device_name, name);
89 fs->super = super = malloc(SUPERBLOCK_SIZE);
90 if (!super) {
91 retval = ENOMEM;
92 goto cleanup;
93 }
94 memset(super, 0, SUPERBLOCK_SIZE);
Theodore Ts'o521e3681997-04-29 17:48:10 +000095 s = (struct ext2fs_sb *) super;
Theodore Ts'o3839e651997-04-26 13:21:57 +000096
97#define set_field(field, default) (super->field = param->field ? \
98 param->field : (default))
Theodore Ts'o521e3681997-04-29 17:48:10 +000099#define set_ext2_field(field, default) (s->field = param->field ? \
100 param->field : (default))
Theodore Ts'o3839e651997-04-26 13:21:57 +0000101
102 super->s_magic = EXT2_SUPER_MAGIC;
103 super->s_state = EXT2_VALID_FS;
104
105 set_field(s_log_block_size, 0); /* default blocksize: 1024 bytes */
106 set_field(s_log_frag_size, 0); /* default fragsize: 1024 bytes */
107 set_field(s_first_data_block, super->s_log_block_size ? 0 : 1);
108 set_field(s_max_mnt_count, EXT2_DFL_MAX_MNT_COUNT);
109 set_field(s_errors, EXT2_ERRORS_DEFAULT);
Theodore Ts'o521e3681997-04-29 17:48:10 +0000110 set_ext2_field(s_feature_compat, 0);
111 set_ext2_field(s_feature_incompat, 0);
112 set_ext2_field(s_feature_ro_compat, 0);
113 if (s->s_feature_incompat & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP)
114 return EXT2_ET_UNSUPP_FEATURE;
115 if (s->s_feature_ro_compat & ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP)
116 return EXT2_ET_RO_UNSUPP_FEATURE;
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000117
118#ifdef EXT2_DYNAMIC_REV
119 set_field(s_rev_level, EXT2_GOOD_OLD_REV);
120 if (super->s_rev_level >= EXT2_DYNAMIC_REV) {
121 set_field(s_first_ino, EXT2_GOOD_OLD_FIRST_INO);
122 set_field(s_inode_size, EXT2_GOOD_OLD_INODE_SIZE);
123 }
124#endif
125
Theodore Ts'o3839e651997-04-26 13:21:57 +0000126 set_field(s_checkinterval, EXT2_DFL_CHECKINTERVAL);
127 super->s_lastcheck = time(NULL);
128
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000129 super->s_creator_os = CREATOR_OS;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000130
Theodore Ts'o3839e651997-04-26 13:21:57 +0000131 fs->blocksize = EXT2_BLOCK_SIZE(super);
132 fs->fragsize = EXT2_FRAG_SIZE(super);
133 frags_per_block = fs->blocksize / fs->fragsize;
134
Theodore Ts'o521e3681997-04-29 17:48:10 +0000135 /* default: (fs->blocksize*8) blocks/group */
136 set_field(s_blocks_per_group, fs->blocksize*8);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000137 super->s_frags_per_group = super->s_blocks_per_group * frags_per_block;
138
139 super->s_blocks_count = param->s_blocks_count;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000140 super->s_r_blocks_count = param->s_r_blocks_count;
141 if (super->s_r_blocks_count >= param->s_blocks_count) {
142 retval = EINVAL;
143 goto cleanup;
144 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000145
146retry:
Theodore Ts'o3839e651997-04-26 13:21:57 +0000147 fs->group_desc_count = (super->s_blocks_count -
148 super->s_first_data_block +
149 EXT2_BLOCKS_PER_GROUP(super) - 1)
150 / EXT2_BLOCKS_PER_GROUP(super);
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000151 if (fs->group_desc_count == 0)
152 return EXT2_ET_TOOSMALL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000153 fs->desc_blocks = (fs->group_desc_count +
154 EXT2_DESC_PER_BLOCK(super) - 1)
155 / EXT2_DESC_PER_BLOCK(super);
156
157 set_field(s_inodes_count, (super->s_blocks_count*fs->blocksize)/4096);
158
159 /*
160 * There should be at least as many inodes as the user
161 * requested. Figure out how many inodes per group that
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000162 * should be. But make sure that we don't allocate more than
163 * one bitmap's worth of inodes
Theodore Ts'o3839e651997-04-26 13:21:57 +0000164 */
165 super->s_inodes_per_group = (super->s_inodes_count +
166 fs->group_desc_count - 1) /
167 fs->group_desc_count;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000168 if (super->s_inodes_per_group > fs->blocksize*8)
169 super->s_inodes_per_group = fs->blocksize*8;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000170
171 /*
172 * Make sure the number of inodes per group completely fills
173 * the inode table blocks in the descriptor. If not, add some
174 * additional inodes/group. Waste not, want not...
175 */
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000176 fs->inode_blocks_per_group = (((super->s_inodes_per_group *
177 EXT2_INODE_SIZE(super)) +
178 EXT2_BLOCK_SIZE(super) - 1) /
179 EXT2_BLOCK_SIZE(super));
180 super->s_inodes_per_group = ((fs->inode_blocks_per_group *
181 EXT2_BLOCK_SIZE(super)) /
182 EXT2_INODE_SIZE(super));
183 /*
184 * Finally, make sure the number of inodes per group is a
185 * multiple of 8. This is needed to simplify the bitmap
186 * splicing code.
187 */
188 super->s_inodes_per_group &= ~7;
189 fs->inode_blocks_per_group = (((super->s_inodes_per_group *
190 EXT2_INODE_SIZE(super)) +
191 EXT2_BLOCK_SIZE(super) - 1) /
192 EXT2_BLOCK_SIZE(super));
193
Theodore Ts'o3839e651997-04-26 13:21:57 +0000194 /*
195 * adjust inode count to reflect the adjusted inodes_per_group
196 */
197 super->s_inodes_count = super->s_inodes_per_group *
198 fs->group_desc_count;
199 super->s_free_inodes_count = super->s_inodes_count;
200
201 /*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000202 * See if the last group is big enough to support the
203 * necessary data structures. If not, we need to get rid of
204 * it.
205 */
206 rem = (super->s_blocks_count - super->s_first_data_block) %
207 super->s_blocks_per_group;
208 if ((fs->group_desc_count == 1) && rem && (rem < overhead))
209 return EXT2_ET_TOOSMALL;
210 if (rem && (rem < overhead+50)) {
211 super->s_blocks_count -= rem;
212 goto retry;
213 }
214
215 /*
216 * At this point we know how big the filesystem will be. So
217 * we can do any and all allocations that depend on the block
218 * count.
219 */
220
Theodore Ts'of3db3561997-04-26 13:34:30 +0000221 buf = malloc(strlen(fs->device_name) + 80);
222 if (!buf) {
223 retval = ENOMEM;
224 goto cleanup;
225 }
226
227 sprintf(buf, "block bitmap for %s", fs->device_name);
228 retval = ext2fs_allocate_block_bitmap(fs, buf, &fs->block_map);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000229 if (retval)
230 goto cleanup;
231
Theodore Ts'of3db3561997-04-26 13:34:30 +0000232 sprintf(buf, "inode bitmap for %s", fs->device_name);
Theodore Ts'o5c576471997-04-29 15:29:49 +0000233 retval = ext2fs_allocate_inode_bitmap(fs, buf, &fs->inode_map);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000234 if (retval)
235 goto cleanup;
236
Theodore Ts'of3db3561997-04-26 13:34:30 +0000237 free(buf);
238
Theodore Ts'o3839e651997-04-26 13:21:57 +0000239 fs->group_desc = malloc(fs->desc_blocks * fs->blocksize);
240 if (!fs->group_desc) {
241 retval = ENOMEM;
242 goto cleanup;
243 }
244 memset(fs->group_desc, 0, fs->desc_blocks * fs->blocksize);
245
Theodore Ts'of3db3561997-04-26 13:34:30 +0000246 /*
247 * Reserve the superblock and group descriptors for each
248 * group, and fill in the correct group statistics for group.
249 * Note that although the block bitmap, inode bitmap, and
250 * inode table have not been allocated (and in fact won't be
251 * by this routine), they are accounted for nevertheless.
252 */
Theodore Ts'o3839e651997-04-26 13:21:57 +0000253 group_block = super->s_first_data_block;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000254 super->s_free_blocks_count = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000255 for (i = 0; i < fs->group_desc_count; i++) {
Theodore Ts'of3db3561997-04-26 13:34:30 +0000256 if (i == fs->group_desc_count-1) {
257 numblocks = (fs->super->s_blocks_count -
258 fs->super->s_first_data_block) %
259 fs->super->s_blocks_per_group;
260 if (!numblocks)
261 numblocks = fs->super->s_blocks_per_group;
262 } else
263 numblocks = fs->super->s_blocks_per_group;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000264
265 if (ext2fs_bg_has_super(fs, i)) {
266 for (j=0; j < fs->desc_blocks+1; j++)
267 ext2fs_mark_block_bitmap(fs->block_map,
268 group_block + j);
269 numblocks -= 1 + fs->desc_blocks;
270 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000271
Theodore Ts'o521e3681997-04-29 17:48:10 +0000272 numblocks -= 2 + fs->inode_blocks_per_group;
273
274 super->s_free_blocks_count += numblocks;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000275 fs->group_desc[i].bg_free_blocks_count = numblocks;
276 fs->group_desc[i].bg_free_inodes_count =
277 fs->super->s_inodes_per_group;
278 fs->group_desc[i].bg_used_dirs_count = 0;
279
Theodore Ts'o3839e651997-04-26 13:21:57 +0000280 group_block += super->s_blocks_per_group;
281 }
282
283 ext2fs_mark_super_dirty(fs);
284 ext2fs_mark_bb_dirty(fs);
285 ext2fs_mark_ib_dirty(fs);
286
287 io_channel_set_blksize(fs->io, fs->blocksize);
288
289 *ret_fs = fs;
290 return 0;
291cleanup:
292 ext2fs_free(fs);
293 return retval;
294}
295
296
297