blob: 791ebe1193ef8de871d391e29c77a34f6e6cc94f [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;
Theodore Ts'oe9affb71997-08-24 02:57:55 +000066 fs->io->app_data = fs;
Theodore Ts'o3839e651997-04-26 13:21:57 +000067 fs->device_name = malloc(strlen(name)+1);
68 if (!fs->device_name) {
69 retval = ENOMEM;
70 goto cleanup;
71 }
72 strcpy(fs->device_name, name);
73 fs->super = malloc(SUPERBLOCK_SIZE);
74 if (!fs->super) {
75 retval = ENOMEM;
76 goto cleanup;
77 }
78
79 /*
80 * If the user specifies a specific block # for the
81 * superblock, then he/she must also specify the block size!
82 * Otherwise, read the master superblock located at offset
83 * SUPERBLOCK_OFFSET from the start of the partition.
84 */
85 if (superblock) {
86 if (!block_size) {
87 retval = EINVAL;
88 goto cleanup;
89 }
90 io_channel_set_blksize(fs->io, block_size);
Theodore Ts'of3db3561997-04-26 13:34:30 +000091 group_block = superblock + 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +000092 } else {
93 io_channel_set_blksize(fs->io, SUPERBLOCK_OFFSET);
94 superblock = 1;
Theodore Ts'of3db3561997-04-26 13:34:30 +000095 group_block = 0;
Theodore Ts'o3839e651997-04-26 13:21:57 +000096 }
97 retval = io_channel_read_blk(fs->io, superblock, -SUPERBLOCK_SIZE,
98 fs->super);
99 if (retval)
100 goto cleanup;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000101
102 if ((fs->super->s_magic == ext2fs_swab16(EXT2_SUPER_MAGIC)) ||
Theodore Ts'o5c576471997-04-29 15:29:49 +0000103 (fs->flags & EXT2_FLAG_SWAP_BYTES)) {
104 fs->flags |= EXT2_FLAG_SWAP_BYTES;
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000105
106 ext2fs_swap_super(fs->super);
107 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000108
109 if (fs->super->s_magic != EXT2_SUPER_MAGIC) {
110 retval = EXT2_ET_BAD_MAGIC;
111 goto cleanup;
112 }
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000113#ifdef EXT2_DYNAMIC_REV
114 if (fs->super->s_rev_level > EXT2_DYNAMIC_REV) {
115 retval = EXT2_ET_REV_TOO_HIGH;
116 goto cleanup;
117 }
118#else
Theodore Ts'of3db3561997-04-26 13:34:30 +0000119#ifdef EXT2_CURRENT_REV
120 if (fs->super->s_rev_level > EXT2_LIB_CURRENT_REV) {
121 retval = EXT2_ET_REV_TOO_HIGH;
122 goto cleanup;
123 }
124#endif
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000125#endif
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000126 /*
127 * Check for feature set incompatibility
128 */
129 if (!(flags & EXT2_FLAG_FORCE)) {
130 s = (struct ext2fs_sb *) fs->super;
Theodore Ts'o521e3681997-04-29 17:48:10 +0000131 if (s->s_feature_incompat & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP) {
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000132 retval = EXT2_ET_UNSUPP_FEATURE;
133 goto cleanup;
134 }
135 if ((flags & EXT2_FLAG_RW) &&
Theodore Ts'o521e3681997-04-29 17:48:10 +0000136 (s->s_feature_ro_compat &
137 ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP)) {
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000138 retval = EXT2_ET_RO_UNSUPP_FEATURE;
139 goto cleanup;
140 }
141 }
142
Theodore Ts'o3839e651997-04-26 13:21:57 +0000143 fs->blocksize = EXT2_BLOCK_SIZE(fs->super);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000144 if (fs->blocksize == 0) {
145 retval = EXT2_ET_CORRUPT_SUPERBLOCK;
146 goto cleanup;
147 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000148 fs->fragsize = EXT2_FRAG_SIZE(fs->super);
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000149 fs->inode_blocks_per_group = ((fs->super->s_inodes_per_group *
150 EXT2_INODE_SIZE(fs->super) +
151 EXT2_BLOCK_SIZE(fs->super) - 1) /
152 EXT2_BLOCK_SIZE(fs->super));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000153 if (block_size) {
154 if (block_size != fs->blocksize) {
155 retval = EXT2_ET_UNEXPECTED_BLOCK_SIZE;
156 goto cleanup;
157 }
158 }
159 /*
160 * Set the blocksize to the filesystem's blocksize.
161 */
162 io_channel_set_blksize(fs->io, fs->blocksize);
163
164 /*
165 * Read group descriptors
166 */
167 fs->group_desc_count = (fs->super->s_blocks_count -
168 fs->super->s_first_data_block +
169 EXT2_BLOCKS_PER_GROUP(fs->super) - 1)
170 / EXT2_BLOCKS_PER_GROUP(fs->super);
171 fs->desc_blocks = (fs->group_desc_count +
172 EXT2_DESC_PER_BLOCK(fs->super) - 1)
173 / EXT2_DESC_PER_BLOCK(fs->super);
Theodore Ts'o3cb6c501997-08-11 20:29:22 +0000174 fs->group_desc = malloc((size_t) (fs->desc_blocks * fs->blocksize));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000175 if (!fs->group_desc) {
176 retval = ENOMEM;
177 goto cleanup;
178 }
Theodore Ts'of3db3561997-04-26 13:34:30 +0000179 if (!group_block)
180 group_block = fs->super->s_first_data_block + 1;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000181 dest = (char *) fs->group_desc;
182 for (i=0 ; i < fs->desc_blocks; i++) {
183 retval = io_channel_read_blk(fs->io, group_block, 1, dest);
184 if (retval)
185 goto cleanup;
186 group_block++;
Theodore Ts'o5c576471997-04-29 15:29:49 +0000187 if (fs->flags & EXT2_FLAG_SWAP_BYTES) {
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000188 gdp = (struct ext2_group_desc *) dest;
189 groups_per_block = fs->blocksize /
190 sizeof(struct ext2_group_desc);
191 for (j=0; j < groups_per_block; j++)
192 ext2fs_swap_group_desc(gdp++);
193 }
Theodore Ts'o3839e651997-04-26 13:21:57 +0000194 dest += fs->blocksize;
195 }
196
197 *ret_fs = fs;
198 return 0;
199cleanup:
200 ext2fs_free(fs);
201 return retval;
202}
203