blob: 1057ff6acb12e8eeebc617e62759d2ac098a305f [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>
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 <stdlib.h>
19#include <fcntl.h>
20#include <time.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000021#if HAVE_SYS_STAT_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000022#include <sys/stat.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000023#endif
24#if HAVE_SYS_TYPES_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000025#include <sys/types.h>
Theodore Ts'o1d2ff461997-10-19 23:00:21 +000026#endif
Theodore Ts'o50e1e101997-04-26 13:58:21 +000027#if HAVE_ERRNO_H
28#include <errno.h>
29#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000030
Theodore Ts'o3839e651997-04-26 13:21:57 +000031#include <linux/ext2_fs.h>
32
33#include "ext2fs.h"
34
Theodore Ts'o50e1e101997-04-26 13:58:21 +000035#if defined(__linux__) && defined(EXT2_OS_LINUX)
36#define CREATOR_OS EXT2_OS_LINUX
37#elif defined(__gnu__) && defined(EXT2_OS_HURD)
38#define CREATOR_OS EXT2_OS_HURD
39#elif defined(__FreeBSD__) && defined(EXT2_OS_FREEBSD)
40#define CREATOR_OS EXT2_OS_FREEBSD
41#elif defined(LITES) && defined(EXT2_OS_LITES)
42#define CREATOR_OS EXT2_OS_LITES
43#else
44#define CREATOR_OS EXT2_OS_LINUX /* by default */
45#endif
46
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000047/*
48 * Note we override the kernel include file's idea of what the default
49 * check interval (never) should be. It's a good idea to check at
50 * least *occasionally*, specially since servers will never rarely get
51 * to reboot, since Linux is so robust these days. :-)
52 *
53 * 180 days (six months) seems like a good value.
54 */
55#ifdef EXT2_DFL_CHECKINTERVAL
56#undef EXT2_DFL_CHECKINTERVAL
57#endif
Theodore Ts'o3cb6c501997-08-11 20:29:22 +000058#define EXT2_DFL_CHECKINTERVAL (86400L * 180L)
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000059
Theodore Ts'o3839e651997-04-26 13:21:57 +000060errcode_t ext2fs_initialize(const char *name, int flags,
61 struct ext2_super_block *param,
62 io_manager manager, ext2_filsys *ret_fs)
63{
64 ext2_filsys fs;
65 errcode_t retval;
66 struct ext2_super_block *super;
67 int frags_per_block;
68 int rem;
69 int overhead = 0;
70 blk_t group_block;
71 int i, j;
Theodore Ts'o3cb6c501997-08-11 20:29:22 +000072 blk_t numblocks;
Theodore Ts'of3db3561997-04-26 13:34:30 +000073 char *buf;
Theodore Ts'o3839e651997-04-26 13:21:57 +000074
75 if (!param || !param->s_blocks_count)
76 return EINVAL;
77
78 fs = (ext2_filsys) malloc(sizeof(struct struct_ext2_filsys));
79 if (!fs)
80 return ENOMEM;
81
82 memset(fs, 0, sizeof(struct struct_ext2_filsys));
Theodore Ts'of3db3561997-04-26 13:34:30 +000083 fs->magic = EXT2_ET_MAGIC_EXT2FS_FILSYS;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000084 fs->flags = flags | EXT2_FLAG_RW | ext2fs_native_flag();
Theodore Ts'o3839e651997-04-26 13:21:57 +000085 retval = manager->open(name, IO_FLAG_RW, &fs->io);
86 if (retval)
87 goto cleanup;
Theodore Ts'oe9affb71997-08-24 02:57:55 +000088 fs->io->app_data = fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +000089 fs->device_name = malloc(strlen(name)+1);
90 if (!fs->device_name) {
91 retval = ENOMEM;
92 goto cleanup;
93 }
94 strcpy(fs->device_name, name);
95 fs->super = super = malloc(SUPERBLOCK_SIZE);
96 if (!super) {
97 retval = ENOMEM;
98 goto cleanup;
99 }
100 memset(super, 0, SUPERBLOCK_SIZE);
101
102#define set_field(field, default) (super->field = param->field ? \
103 param->field : (default))
104
105 super->s_magic = EXT2_SUPER_MAGIC;
106 super->s_state = EXT2_VALID_FS;
107
108 set_field(s_log_block_size, 0); /* default blocksize: 1024 bytes */
109 set_field(s_log_frag_size, 0); /* default fragsize: 1024 bytes */
110 set_field(s_first_data_block, super->s_log_block_size ? 0 : 1);
111 set_field(s_max_mnt_count, EXT2_DFL_MAX_MNT_COUNT);
112 set_field(s_errors, EXT2_ERRORS_DEFAULT);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000113#ifdef EXT2_DYNAMIC_REV
114 set_field(s_feature_compat, 0);
115 set_field(s_feature_incompat, 0);
116 set_field(s_feature_ro_compat, 0);
117 if (super->s_feature_incompat & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP)
Theodore Ts'o521e3681997-04-29 17:48:10 +0000118 return EXT2_ET_UNSUPP_FEATURE;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000119 if (super->s_feature_ro_compat & ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP)
Theodore Ts'o521e3681997-04-29 17:48:10 +0000120 return EXT2_ET_RO_UNSUPP_FEATURE;
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000121
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000122 set_field(s_rev_level, EXT2_GOOD_OLD_REV);
123 if (super->s_rev_level >= EXT2_DYNAMIC_REV) {
124 set_field(s_first_ino, EXT2_GOOD_OLD_FIRST_INO);
125 set_field(s_inode_size, EXT2_GOOD_OLD_INODE_SIZE);
126 }
127#endif
128
Theodore Ts'o3839e651997-04-26 13:21:57 +0000129 set_field(s_checkinterval, EXT2_DFL_CHECKINTERVAL);
130 super->s_lastcheck = time(NULL);
131
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000132 super->s_creator_os = CREATOR_OS;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000133
Theodore Ts'o3839e651997-04-26 13:21:57 +0000134 fs->blocksize = EXT2_BLOCK_SIZE(super);
135 fs->fragsize = EXT2_FRAG_SIZE(super);
136 frags_per_block = fs->blocksize / fs->fragsize;
137
Theodore Ts'o521e3681997-04-29 17:48:10 +0000138 /* default: (fs->blocksize*8) blocks/group */
139 set_field(s_blocks_per_group, fs->blocksize*8);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000140 super->s_frags_per_group = super->s_blocks_per_group * frags_per_block;
141
142 super->s_blocks_count = param->s_blocks_count;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000143 super->s_r_blocks_count = param->s_r_blocks_count;
144 if (super->s_r_blocks_count >= param->s_blocks_count) {
145 retval = EINVAL;
146 goto cleanup;
147 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000148
149retry:
Theodore Ts'o3839e651997-04-26 13:21:57 +0000150 fs->group_desc_count = (super->s_blocks_count -
151 super->s_first_data_block +
152 EXT2_BLOCKS_PER_GROUP(super) - 1)
153 / EXT2_BLOCKS_PER_GROUP(super);
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000154 if (fs->group_desc_count == 0)
155 return EXT2_ET_TOOSMALL;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000156 fs->desc_blocks = (fs->group_desc_count +
157 EXT2_DESC_PER_BLOCK(super) - 1)
158 / EXT2_DESC_PER_BLOCK(super);
159
160 set_field(s_inodes_count, (super->s_blocks_count*fs->blocksize)/4096);
161
162 /*
163 * There should be at least as many inodes as the user
164 * requested. Figure out how many inodes per group that
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000165 * should be. But make sure that we don't allocate more than
166 * one bitmap's worth of inodes
Theodore Ts'o3839e651997-04-26 13:21:57 +0000167 */
168 super->s_inodes_per_group = (super->s_inodes_count +
169 fs->group_desc_count - 1) /
170 fs->group_desc_count;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000171 if (super->s_inodes_per_group > fs->blocksize*8)
172 super->s_inodes_per_group = fs->blocksize*8;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000173
174 /*
175 * Make sure the number of inodes per group completely fills
176 * the inode table blocks in the descriptor. If not, add some
177 * additional inodes/group. Waste not, want not...
178 */
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000179 fs->inode_blocks_per_group = (((super->s_inodes_per_group *
180 EXT2_INODE_SIZE(super)) +
181 EXT2_BLOCK_SIZE(super) - 1) /
182 EXT2_BLOCK_SIZE(super));
183 super->s_inodes_per_group = ((fs->inode_blocks_per_group *
184 EXT2_BLOCK_SIZE(super)) /
185 EXT2_INODE_SIZE(super));
186 /*
187 * Finally, make sure the number of inodes per group is a
188 * multiple of 8. This is needed to simplify the bitmap
189 * splicing code.
190 */
191 super->s_inodes_per_group &= ~7;
192 fs->inode_blocks_per_group = (((super->s_inodes_per_group *
193 EXT2_INODE_SIZE(super)) +
194 EXT2_BLOCK_SIZE(super) - 1) /
195 EXT2_BLOCK_SIZE(super));
196
Theodore Ts'o3839e651997-04-26 13:21:57 +0000197 /*
198 * adjust inode count to reflect the adjusted inodes_per_group
199 */
200 super->s_inodes_count = super->s_inodes_per_group *
201 fs->group_desc_count;
202 super->s_free_inodes_count = super->s_inodes_count;
203
204 /*
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000205 * Overhead is the number of bookkeeping blocks per group. It
206 * includes the superblock backup, the group descriptor
207 * backups, the inode bitmap, the block bitmap, and the inode
208 * table.
209 *
210 * XXX Not all block groups need the descriptor blocks, but
211 * being clever is tricky...
212 */
Theodore Ts'o3cb6c501997-08-11 20:29:22 +0000213 overhead = (int) (3 + fs->desc_blocks + fs->inode_blocks_per_group);
Theodore Ts'o2ecc6fe1997-04-29 17:57:00 +0000214
215 /*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000216 * See if the last group is big enough to support the
217 * necessary data structures. If not, we need to get rid of
218 * it.
219 */
Theodore Ts'o3cb6c501997-08-11 20:29:22 +0000220 rem = (int) ((super->s_blocks_count - super->s_first_data_block) %
221 super->s_blocks_per_group);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000222 if ((fs->group_desc_count == 1) && rem && (rem < overhead))
223 return EXT2_ET_TOOSMALL;
224 if (rem && (rem < overhead+50)) {
225 super->s_blocks_count -= rem;
226 goto retry;
227 }
228
229 /*
230 * At this point we know how big the filesystem will be. So
231 * we can do any and all allocations that depend on the block
232 * count.
233 */
234
Theodore Ts'of3db3561997-04-26 13:34:30 +0000235 buf = malloc(strlen(fs->device_name) + 80);
236 if (!buf) {
237 retval = ENOMEM;
238 goto cleanup;
239 }
240
241 sprintf(buf, "block bitmap for %s", fs->device_name);
242 retval = ext2fs_allocate_block_bitmap(fs, buf, &fs->block_map);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000243 if (retval)
244 goto cleanup;
245
Theodore Ts'of3db3561997-04-26 13:34:30 +0000246 sprintf(buf, "inode bitmap for %s", fs->device_name);
Theodore Ts'o5c576471997-04-29 15:29:49 +0000247 retval = ext2fs_allocate_inode_bitmap(fs, buf, &fs->inode_map);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000248 if (retval)
249 goto cleanup;
250
Theodore Ts'of3db3561997-04-26 13:34:30 +0000251 free(buf);
252
Theodore Ts'o3cb6c501997-08-11 20:29:22 +0000253 fs->group_desc = malloc((size_t) fs->desc_blocks * fs->blocksize);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000254 if (!fs->group_desc) {
255 retval = ENOMEM;
256 goto cleanup;
257 }
Theodore Ts'o3cb6c501997-08-11 20:29:22 +0000258 memset(fs->group_desc, 0, (size_t) fs->desc_blocks * fs->blocksize);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000259
Theodore Ts'of3db3561997-04-26 13:34:30 +0000260 /*
261 * Reserve the superblock and group descriptors for each
262 * group, and fill in the correct group statistics for group.
263 * Note that although the block bitmap, inode bitmap, and
264 * inode table have not been allocated (and in fact won't be
265 * by this routine), they are accounted for nevertheless.
266 */
Theodore Ts'o3839e651997-04-26 13:21:57 +0000267 group_block = super->s_first_data_block;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000268 super->s_free_blocks_count = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000269 for (i = 0; i < fs->group_desc_count; i++) {
Theodore Ts'of3db3561997-04-26 13:34:30 +0000270 if (i == fs->group_desc_count-1) {
271 numblocks = (fs->super->s_blocks_count -
272 fs->super->s_first_data_block) %
273 fs->super->s_blocks_per_group;
274 if (!numblocks)
275 numblocks = fs->super->s_blocks_per_group;
276 } else
277 numblocks = fs->super->s_blocks_per_group;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000278
279 if (ext2fs_bg_has_super(fs, i)) {
280 for (j=0; j < fs->desc_blocks+1; j++)
281 ext2fs_mark_block_bitmap(fs->block_map,
282 group_block + j);
283 numblocks -= 1 + fs->desc_blocks;
284 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000285
Theodore Ts'o521e3681997-04-29 17:48:10 +0000286 numblocks -= 2 + fs->inode_blocks_per_group;
287
288 super->s_free_blocks_count += numblocks;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000289 fs->group_desc[i].bg_free_blocks_count = numblocks;
290 fs->group_desc[i].bg_free_inodes_count =
291 fs->super->s_inodes_per_group;
292 fs->group_desc[i].bg_used_dirs_count = 0;
293
Theodore Ts'o3839e651997-04-26 13:21:57 +0000294 group_block += super->s_blocks_per_group;
295 }
296
297 ext2fs_mark_super_dirty(fs);
298 ext2fs_mark_bb_dirty(fs);
299 ext2fs_mark_ib_dirty(fs);
300
301 io_channel_set_blksize(fs->io, fs->blocksize);
302
303 *ret_fs = fs;
304 return 0;
305cleanup:
306 ext2fs_free(fs);
307 return retval;
308}
309
310
311