blob: 73a1da6194b2ba04b493ea6ae6e39167c11c2f9c [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * openfs.c --- open an ext2 filesystem
3 *
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00004 * Copyright (C) 1993, 1994, 1995, 1996 Theodore Ts'o.
Theodore Ts'o50e1e101997-04-26 13:58:21 +00005 *
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00006 * %Begin-Header%
Theodore Ts'o50e1e101997-04-26 13:58:21 +00007 * This file may be redistributed under the terms of the GNU Public
8 * License.
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00009 * %End-Header%
Theodore Ts'o3839e651997-04-26 13:21:57 +000010 */
11
12#include <stdio.h>
13#include <string.h>
Theodore Ts'o50e1e101997-04-26 13:58:21 +000014#if HAVE_UNISTD_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000015#include <unistd.h>
Theodore Ts'o50e1e101997-04-26 13:58:21 +000016#endif
17#if HAVE_STDLIB_H
Theodore Ts'o3839e651997-04-26 13:21:57 +000018#include <stdlib.h>
Theodore Ts'o50e1e101997-04-26 13:58:21 +000019#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000020#include <fcntl.h>
21#include <time.h>
Theodore Ts'o50e1e101997-04-26 13:58:21 +000022#if HAVE_ERRNO_H
23#include <errno.h>
24#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000025#include <sys/stat.h>
26#include <sys/types.h>
27
Theodore Ts'o3839e651997-04-26 13:21:57 +000028#include <linux/ext2_fs.h>
29
30#include "ext2fs.h"
31
32/*
33 * Note: if superblock is non-zero, block-size must also be non-zero.
34 * Superblock and block_size can be zero to use the default size.
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000035 *
36 * Valid flags for ext2fs_open()
37 *
38 * EXT2_FLAG_RW - Open the filesystem for read/write.
39 * EXT2_FLAG_FORCE - Open the filesystem even if some of the
40 * features aren't supported.
Theodore Ts'o3839e651997-04-26 13:21:57 +000041 */
42errcode_t ext2fs_open(const char *name, int flags, int superblock,
43 int block_size, io_manager manager, ext2_filsys *ret_fs)
44{
45 ext2_filsys fs;
46 errcode_t retval;
Theodore Ts'o3cb6c501997-08-11 20:29:22 +000047 int i, j, groups_per_block;
48 blk_t group_block;
Theodore Ts'o3839e651997-04-26 13:21:57 +000049 char *dest;
Theodore Ts'o50e1e101997-04-26 13:58:21 +000050 struct ext2_group_desc *gdp;
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000051 struct ext2fs_sb *s;
Theodore Ts'o3839e651997-04-26 13:21:57 +000052
Theodore Ts'of3db3561997-04-26 13:34:30 +000053 EXT2_CHECK_MAGIC(manager, EXT2_ET_MAGIC_IO_MANAGER);
54
Theodore Ts'o3839e651997-04-26 13:21:57 +000055 fs = (ext2_filsys) malloc(sizeof(struct struct_ext2_filsys));
56 if (!fs)
57 return ENOMEM;
58
59 memset(fs, 0, sizeof(struct struct_ext2_filsys));
Theodore Ts'of3db3561997-04-26 13:34:30 +000060 fs->magic = EXT2_ET_MAGIC_EXT2FS_FILSYS;
Theodore Ts'o3839e651997-04-26 13:21:57 +000061 fs->flags = flags;
62 retval = manager->open(name, (flags & EXT2_FLAG_RW) ? IO_FLAG_RW : 0,
63 &fs->io);
64 if (retval)
65 goto cleanup;
66 fs->device_name = malloc(strlen(name)+1);
67 if (!fs->device_name) {
68 retval = ENOMEM;
69 goto cleanup;
70 }
71 strcpy(fs->device_name, name);
72 fs->super = malloc(SUPERBLOCK_SIZE);
73 if (!fs->super) {
74 retval = ENOMEM;
75 goto cleanup;
76 }
77
78 /*
79 * If the user specifies a specific block # for the
80 * superblock, then he/she must also specify the block size!
81 * Otherwise, read the master superblock located at offset
82 * SUPERBLOCK_OFFSET from the start of the partition.
83 */
84 if (superblock) {
85 if (!block_size) {
86 retval = EINVAL;
87 goto cleanup;
88 }
89 io_channel_set_blksize(fs->io, block_size);
Theodore Ts'of3db3561997-04-26 13:34:30 +000090 group_block = superblock + 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +000091 } else {
92 io_channel_set_blksize(fs->io, SUPERBLOCK_OFFSET);
93 superblock = 1;
Theodore Ts'of3db3561997-04-26 13:34:30 +000094 group_block = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +000095 }
96 retval = io_channel_read_blk(fs->io, superblock, -SUPERBLOCK_SIZE,
97 fs->super);
98 if (retval)
99 goto cleanup;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000100
101 if ((fs->super->s_magic == ext2fs_swab16(EXT2_SUPER_MAGIC)) ||
Theodore Ts'o5c576471997-04-29 15:29:49 +0000102 (fs->flags & EXT2_FLAG_SWAP_BYTES)) {
103 fs->flags |= EXT2_FLAG_SWAP_BYTES;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000104
105 ext2fs_swap_super(fs->super);
106 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000107
108 if (fs->super->s_magic != EXT2_SUPER_MAGIC) {
109 retval = EXT2_ET_BAD_MAGIC;
110 goto cleanup;
111 }
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000112#ifdef EXT2_DYNAMIC_REV
113 if (fs->super->s_rev_level > EXT2_DYNAMIC_REV) {
114 retval = EXT2_ET_REV_TOO_HIGH;
115 goto cleanup;
116 }
117#else
Theodore Ts'of3db3561997-04-26 13:34:30 +0000118#ifdef EXT2_CURRENT_REV
119 if (fs->super->s_rev_level > EXT2_LIB_CURRENT_REV) {
120 retval = EXT2_ET_REV_TOO_HIGH;
121 goto cleanup;
122 }
123#endif
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000124#endif
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000125 /*
126 * Check for feature set incompatibility
127 */
128 if (!(flags & EXT2_FLAG_FORCE)) {
129 s = (struct ext2fs_sb *) fs->super;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000130 if (s->s_feature_incompat & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP) {
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000131 retval = EXT2_ET_UNSUPP_FEATURE;
132 goto cleanup;
133 }
134 if ((flags & EXT2_FLAG_RW) &&
Theodore Ts'o521e3681997-04-29 17:48:10 +0000135 (s->s_feature_ro_compat &
136 ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP)) {
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000137 retval = EXT2_ET_RO_UNSUPP_FEATURE;
138 goto cleanup;
139 }
140 }
141
Theodore Ts'o3839e651997-04-26 13:21:57 +0000142 fs->blocksize = EXT2_BLOCK_SIZE(fs->super);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000143 if (fs->blocksize == 0) {
144 retval = EXT2_ET_CORRUPT_SUPERBLOCK;
145 goto cleanup;
146 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000147 fs->fragsize = EXT2_FRAG_SIZE(fs->super);
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000148 fs->inode_blocks_per_group = ((fs->super->s_inodes_per_group *
149 EXT2_INODE_SIZE(fs->super) +
150 EXT2_BLOCK_SIZE(fs->super) - 1) /
151 EXT2_BLOCK_SIZE(fs->super));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000152 if (block_size) {
153 if (block_size != fs->blocksize) {
154 retval = EXT2_ET_UNEXPECTED_BLOCK_SIZE;
155 goto cleanup;
156 }
157 }
158 /*
159 * Set the blocksize to the filesystem's blocksize.
160 */
161 io_channel_set_blksize(fs->io, fs->blocksize);
162
163 /*
164 * Read group descriptors
165 */
166 fs->group_desc_count = (fs->super->s_blocks_count -
167 fs->super->s_first_data_block +
168 EXT2_BLOCKS_PER_GROUP(fs->super) - 1)
169 / EXT2_BLOCKS_PER_GROUP(fs->super);
170 fs->desc_blocks = (fs->group_desc_count +
171 EXT2_DESC_PER_BLOCK(fs->super) - 1)
172 / EXT2_DESC_PER_BLOCK(fs->super);
Theodore Ts'o3cb6c501997-08-11 20:29:22 +0000173 fs->group_desc = malloc((size_t) (fs->desc_blocks * fs->blocksize));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000174 if (!fs->group_desc) {
175 retval = ENOMEM;
176 goto cleanup;
177 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000178 if (!group_block)
179 group_block = fs->super->s_first_data_block + 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000180 dest = (char *) fs->group_desc;
181 for (i=0 ; i < fs->desc_blocks; i++) {
182 retval = io_channel_read_blk(fs->io, group_block, 1, dest);
183 if (retval)
184 goto cleanup;
185 group_block++;
Theodore Ts'o5c576471997-04-29 15:29:49 +0000186 if (fs->flags & EXT2_FLAG_SWAP_BYTES) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000187 gdp = (struct ext2_group_desc *) dest;
188 groups_per_block = fs->blocksize /
189 sizeof(struct ext2_group_desc);
190 for (j=0; j < groups_per_block; j++)
191 ext2fs_swap_group_desc(gdp++);
192 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000193 dest += fs->blocksize;
194 }
195
196 *ret_fs = fs;
197 return 0;
198cleanup:
199 ext2fs_free(fs);
200 return retval;
201}
202