blob: f621741e40555f420e996fe127606901b1d8d671 [file] [log] [blame]
stroese2b918712004-12-16 17:26:24 +00001/*
2 * (C) Copyright 2004
3 * esd gmbh <www.esd-electronics.com>
4 * Reinhard Arlt <reinhard.arlt@esd-electronics.com>
5 *
6 * based on code from grub2 fs/ext2.c and fs/fshelp.c by
7 *
8 * GRUB -- GRand Unified Bootloader
9 * Copyright (C) 2003, 2004 Free Software Foundation, Inc.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 */
25
26#include <common.h>
stroese2b918712004-12-16 17:26:24 +000027#include <ext2fs.h>
28#include <malloc.h>
29#include <asm/byteorder.h>
30
wdenkefe2a4d2004-12-16 21:44:03 +000031extern int ext2fs_devread (int sector, int byte_offset, int byte_len,
32 char *buf);
stroese2b918712004-12-16 17:26:24 +000033
34/* Magic value used to identify an ext2 filesystem. */
35#define EXT2_MAGIC 0xEF53
36/* Amount of indirect blocks in an inode. */
37#define INDIRECT_BLOCKS 12
38/* Maximum lenght of a pathname. */
39#define EXT2_PATH_MAX 4096
40/* Maximum nesting of symlinks, used to prevent a loop. */
41#define EXT2_MAX_SYMLINKCNT 8
42
43/* Filetype used in directory entry. */
44#define FILETYPE_UNKNOWN 0
45#define FILETYPE_REG 1
46#define FILETYPE_DIRECTORY 2
47#define FILETYPE_SYMLINK 7
48
49/* Filetype information as used in inodes. */
50#define FILETYPE_INO_MASK 0170000
51#define FILETYPE_INO_REG 0100000
52#define FILETYPE_INO_DIRECTORY 0040000
53#define FILETYPE_INO_SYMLINK 0120000
54
55/* Bits used as offset in sector */
56#define DISK_SECTOR_BITS 9
57
58/* Log2 size of ext2 block in 512 blocks. */
59#define LOG2_EXT2_BLOCK_SIZE(data) (__le32_to_cpu (data->sblock.log2_block_size) + 1)
60
61/* Log2 size of ext2 block in bytes. */
62#define LOG2_BLOCK_SIZE(data) (__le32_to_cpu (data->sblock.log2_block_size) + 10)
63
64/* The size of an ext2 block in bytes. */
65#define EXT2_BLOCK_SIZE(data) (1 << LOG2_BLOCK_SIZE(data))
66
67/* The ext2 superblock. */
wdenkefe2a4d2004-12-16 21:44:03 +000068struct ext2_sblock {
stroese2b918712004-12-16 17:26:24 +000069 uint32_t total_inodes;
70 uint32_t total_blocks;
71 uint32_t reserved_blocks;
72 uint32_t free_blocks;
73 uint32_t free_inodes;
74 uint32_t first_data_block;
75 uint32_t log2_block_size;
76 uint32_t log2_fragment_size;
77 uint32_t blocks_per_group;
78 uint32_t fragments_per_group;
79 uint32_t inodes_per_group;
80 uint32_t mtime;
81 uint32_t utime;
82 uint16_t mnt_count;
83 uint16_t max_mnt_count;
84 uint16_t magic;
85 uint16_t fs_state;
86 uint16_t error_handling;
87 uint16_t minor_revision_level;
88 uint32_t lastcheck;
89 uint32_t checkinterval;
90 uint32_t creator_os;
91 uint32_t revision_level;
92 uint16_t uid_reserved;
93 uint16_t gid_reserved;
94 uint32_t first_inode;
95 uint16_t inode_size;
96 uint16_t block_group_number;
97 uint32_t feature_compatibility;
98 uint32_t feature_incompat;
99 uint32_t feature_ro_compat;
100 uint32_t unique_id[4];
101 char volume_name[16];
102 char last_mounted_on[64];
103 uint32_t compression_info;
104};
105
106/* The ext2 blockgroup. */
wdenkefe2a4d2004-12-16 21:44:03 +0000107struct ext2_block_group {
stroese2b918712004-12-16 17:26:24 +0000108 uint32_t block_id;
109 uint32_t inode_id;
110 uint32_t inode_table_id;
111 uint16_t free_blocks;
112 uint16_t free_inodes;
Weirich, Bernhard56fdaad2009-06-10 14:00:37 +0200113 uint16_t used_dir_cnt;
stroese2b918712004-12-16 17:26:24 +0000114 uint32_t reserved[3];
115};
116
117/* The ext2 inode. */
wdenkefe2a4d2004-12-16 21:44:03 +0000118struct ext2_inode {
stroese2b918712004-12-16 17:26:24 +0000119 uint16_t mode;
120 uint16_t uid;
121 uint32_t size;
122 uint32_t atime;
123 uint32_t ctime;
124 uint32_t mtime;
125 uint32_t dtime;
126 uint16_t gid;
127 uint16_t nlinks;
wdenkefe2a4d2004-12-16 21:44:03 +0000128 uint32_t blockcnt; /* Blocks of 512 bytes!! */
stroese2b918712004-12-16 17:26:24 +0000129 uint32_t flags;
130 uint32_t osd1;
wdenkefe2a4d2004-12-16 21:44:03 +0000131 union {
132 struct datablocks {
stroese2b918712004-12-16 17:26:24 +0000133 uint32_t dir_blocks[INDIRECT_BLOCKS];
134 uint32_t indir_block;
135 uint32_t double_indir_block;
136 uint32_t tripple_indir_block;
137 } blocks;
138 char symlink[60];
wdenkefe2a4d2004-12-16 21:44:03 +0000139 } b;
stroese2b918712004-12-16 17:26:24 +0000140 uint32_t version;
141 uint32_t acl;
142 uint32_t dir_acl;
143 uint32_t fragment_addr;
144 uint32_t osd2[3];
145};
146
147/* The header of an ext2 directory entry. */
wdenkefe2a4d2004-12-16 21:44:03 +0000148struct ext2_dirent {
stroese2b918712004-12-16 17:26:24 +0000149 uint32_t inode;
150 uint16_t direntlen;
wdenkefe2a4d2004-12-16 21:44:03 +0000151 uint8_t namelen;
152 uint8_t filetype;
stroese2b918712004-12-16 17:26:24 +0000153};
154
wdenkefe2a4d2004-12-16 21:44:03 +0000155struct ext2fs_node {
stroese2b918712004-12-16 17:26:24 +0000156 struct ext2_data *data;
157 struct ext2_inode inode;
wdenkefe2a4d2004-12-16 21:44:03 +0000158 int ino;
159 int inode_read;
stroese2b918712004-12-16 17:26:24 +0000160};
161
162/* Information about a "mounted" ext2 filesystem. */
wdenkefe2a4d2004-12-16 21:44:03 +0000163struct ext2_data {
stroese2b918712004-12-16 17:26:24 +0000164 struct ext2_sblock sblock;
165 struct ext2_inode *inode;
166 struct ext2fs_node diropen;
167};
168
169
170typedef struct ext2fs_node *ext2fs_node_t;
171
wdenkefe2a4d2004-12-16 21:44:03 +0000172struct ext2_data *ext2fs_root = NULL;
173ext2fs_node_t ext2fs_file = NULL;
174int symlinknest = 0;
175uint32_t *indir1_block = NULL;
176int indir1_size = 0;
177int indir1_blkno = -1;
178uint32_t *indir2_block = NULL;
179int indir2_size = 0;
180int indir2_blkno = -1;
Michael Brandt270737a2009-11-22 14:13:27 +0100181static unsigned int inode_size;
stroese2b918712004-12-16 17:26:24 +0000182
183
184static int ext2fs_blockgroup
wdenkefe2a4d2004-12-16 21:44:03 +0000185 (struct ext2_data *data, int group, struct ext2_block_group *blkgrp) {
Weirich, Bernhard56fdaad2009-06-10 14:00:37 +0200186 unsigned int blkno;
187 unsigned int blkoff;
188 unsigned int desc_per_blk;
189
190 desc_per_blk = EXT2_BLOCK_SIZE(data) / sizeof(struct ext2_block_group);
191
192 blkno = __le32_to_cpu(data->sblock.first_data_block) + 1 +
193 group / desc_per_blk;
194 blkoff = (group % desc_per_blk) * sizeof(struct ext2_block_group);
stroese2b918712004-12-16 17:26:24 +0000195#ifdef DEBUG
Weirich, Bernhard56fdaad2009-06-10 14:00:37 +0200196 printf ("ext2fs read %d group descriptor (blkno %d blkoff %d)\n",
197 group, blkno, blkoff);
stroese2b918712004-12-16 17:26:24 +0000198#endif
Weirich, Bernhard56fdaad2009-06-10 14:00:37 +0200199 return (ext2fs_devread (blkno << LOG2_EXT2_BLOCK_SIZE(data),
200 blkoff, sizeof(struct ext2_block_group), (char *)blkgrp));
201
stroese2b918712004-12-16 17:26:24 +0000202}
203
204
205static int ext2fs_read_inode
wdenkefe2a4d2004-12-16 21:44:03 +0000206 (struct ext2_data *data, int ino, struct ext2_inode *inode) {
207 struct ext2_block_group blkgrp;
208 struct ext2_sblock *sblock = &data->sblock;
209 int inodes_per_block;
210 int status;
stroese2b918712004-12-16 17:26:24 +0000211
wdenkefe2a4d2004-12-16 21:44:03 +0000212 unsigned int blkno;
213 unsigned int blkoff;
stroese2b918712004-12-16 17:26:24 +0000214
stroese2b918712004-12-16 17:26:24 +0000215#ifdef DEBUG
Michael Brandt270737a2009-11-22 14:13:27 +0100216 printf ("ext2fs read inode %d, inode_size %d\n", ino, inode_size);
stroese2b918712004-12-16 17:26:24 +0000217#endif
Weirich, Bernhard56fdaad2009-06-10 14:00:37 +0200218 /* It is easier to calculate if the first inode is 0. */
219 ino--;
220 status = ext2fs_blockgroup (data, ino / __le32_to_cpu
221 (sblock->inodes_per_group), &blkgrp);
wdenkefe2a4d2004-12-16 21:44:03 +0000222 if (status == 0) {
223 return (0);
stroese2b918712004-12-16 17:26:24 +0000224 }
Weirich, Bernhard56fdaad2009-06-10 14:00:37 +0200225
Michael Brandt270737a2009-11-22 14:13:27 +0100226 inodes_per_block = EXT2_BLOCK_SIZE(data) / inode_size;
Weirich, Bernhard56fdaad2009-06-10 14:00:37 +0200227
228 blkno = __le32_to_cpu (blkgrp.inode_table_id) +
229 (ino % __le32_to_cpu (sblock->inodes_per_group))
230 / inodes_per_block;
Michael Brandt270737a2009-11-22 14:13:27 +0100231 blkoff = (ino % inodes_per_block) * inode_size;
stroese2b918712004-12-16 17:26:24 +0000232#ifdef DEBUG
wdenkefe2a4d2004-12-16 21:44:03 +0000233 printf ("ext2fs read inode blkno %d blkoff %d\n", blkno, blkoff);
stroese2b918712004-12-16 17:26:24 +0000234#endif
235 /* Read the inode. */
Weirich, Bernhard56fdaad2009-06-10 14:00:37 +0200236 status = ext2fs_devread (blkno << LOG2_EXT2_BLOCK_SIZE (data), blkoff,
wdenkefe2a4d2004-12-16 21:44:03 +0000237 sizeof (struct ext2_inode), (char *) inode);
238 if (status == 0) {
239 return (0);
stroese2b918712004-12-16 17:26:24 +0000240 }
Weirich, Bernhard56fdaad2009-06-10 14:00:37 +0200241
wdenkefe2a4d2004-12-16 21:44:03 +0000242 return (1);
stroese2b918712004-12-16 17:26:24 +0000243}
244
245
wdenkefe2a4d2004-12-16 21:44:03 +0000246void ext2fs_free_node (ext2fs_node_t node, ext2fs_node_t currroot) {
247 if ((node != &ext2fs_root->diropen) && (node != currroot)) {
stroese2b918712004-12-16 17:26:24 +0000248 free (node);
249 }
250}
251
252
wdenkefe2a4d2004-12-16 21:44:03 +0000253static int ext2fs_read_block (ext2fs_node_t node, int fileblock) {
254 struct ext2_data *data = node->data;
255 struct ext2_inode *inode = &node->inode;
256 int blknr;
257 int blksz = EXT2_BLOCK_SIZE (data);
258 int log2_blksz = LOG2_EXT2_BLOCK_SIZE (data);
259 int status;
stroese2b918712004-12-16 17:26:24 +0000260
261 /* Direct blocks. */
wdenkefe2a4d2004-12-16 21:44:03 +0000262 if (fileblock < INDIRECT_BLOCKS) {
stroese2b918712004-12-16 17:26:24 +0000263 blknr = __le32_to_cpu (inode->b.blocks.dir_blocks[fileblock]);
wdenkefe2a4d2004-12-16 21:44:03 +0000264 }
stroese2b918712004-12-16 17:26:24 +0000265 /* Indirect. */
wdenkefe2a4d2004-12-16 21:44:03 +0000266 else if (fileblock < (INDIRECT_BLOCKS + (blksz / 4))) {
267 if (indir1_block == NULL) {
Simon Glass26784f12011-12-21 10:01:27 +0000268 indir1_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
269 blksz);
wdenkefe2a4d2004-12-16 21:44:03 +0000270 if (indir1_block == NULL) {
271 printf ("** ext2fs read block (indir 1) malloc failed. **\n");
272 return (-1);
stroese2b918712004-12-16 17:26:24 +0000273 }
wdenkefe2a4d2004-12-16 21:44:03 +0000274 indir1_size = blksz;
stroese2b918712004-12-16 17:26:24 +0000275 indir1_blkno = -1;
276 }
wdenkefe2a4d2004-12-16 21:44:03 +0000277 if (blksz != indir1_size) {
278 free (indir1_block);
stroese2b918712004-12-16 17:26:24 +0000279 indir1_block = NULL;
wdenkefe2a4d2004-12-16 21:44:03 +0000280 indir1_size = 0;
stroese2b918712004-12-16 17:26:24 +0000281 indir1_blkno = -1;
Simon Glass26784f12011-12-21 10:01:27 +0000282 indir1_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
283 blksz);
wdenkefe2a4d2004-12-16 21:44:03 +0000284 if (indir1_block == NULL) {
285 printf ("** ext2fs read block (indir 1) malloc failed. **\n");
286 return (-1);
stroese2b918712004-12-16 17:26:24 +0000287 }
wdenkefe2a4d2004-12-16 21:44:03 +0000288 indir1_size = blksz;
stroese2b918712004-12-16 17:26:24 +0000289 }
wdenkefe2a4d2004-12-16 21:44:03 +0000290 if ((__le32_to_cpu (inode->b.blocks.indir_block) <<
291 log2_blksz) != indir1_blkno) {
292 status = ext2fs_devread (__le32_to_cpu(inode->b.blocks.indir_block) << log2_blksz,
293 0, blksz,
294 (char *) indir1_block);
295 if (status == 0) {
296 printf ("** ext2fs read block (indir 1) failed. **\n");
297 return (0);
stroese2b918712004-12-16 17:26:24 +0000298 }
wdenkefe2a4d2004-12-16 21:44:03 +0000299 indir1_blkno =
300 __le32_to_cpu (inode->b.blocks.
301 indir_block) << log2_blksz;
stroese2b918712004-12-16 17:26:24 +0000302 }
wdenkefe2a4d2004-12-16 21:44:03 +0000303 blknr = __le32_to_cpu (indir1_block
304 [fileblock - INDIRECT_BLOCKS]);
stroese2b918712004-12-16 17:26:24 +0000305 }
306 /* Double indirect. */
wdenkefe2a4d2004-12-16 21:44:03 +0000307 else if (fileblock <
308 (INDIRECT_BLOCKS + (blksz / 4 * (blksz / 4 + 1)))) {
stroese2b918712004-12-16 17:26:24 +0000309 unsigned int perblock = blksz / 4;
310 unsigned int rblock = fileblock - (INDIRECT_BLOCKS
311 + blksz / 4);
312
wdenkefe2a4d2004-12-16 21:44:03 +0000313 if (indir1_block == NULL) {
Simon Glass26784f12011-12-21 10:01:27 +0000314 indir1_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
315 blksz);
wdenkefe2a4d2004-12-16 21:44:03 +0000316 if (indir1_block == NULL) {
317 printf ("** ext2fs read block (indir 2 1) malloc failed. **\n");
318 return (-1);
stroese2b918712004-12-16 17:26:24 +0000319 }
wdenkefe2a4d2004-12-16 21:44:03 +0000320 indir1_size = blksz;
stroese2b918712004-12-16 17:26:24 +0000321 indir1_blkno = -1;
322 }
wdenkefe2a4d2004-12-16 21:44:03 +0000323 if (blksz != indir1_size) {
324 free (indir1_block);
stroese2b918712004-12-16 17:26:24 +0000325 indir1_block = NULL;
wdenkefe2a4d2004-12-16 21:44:03 +0000326 indir1_size = 0;
stroese2b918712004-12-16 17:26:24 +0000327 indir1_blkno = -1;
Simon Glass26784f12011-12-21 10:01:27 +0000328 indir1_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
329 blksz);
wdenkefe2a4d2004-12-16 21:44:03 +0000330 if (indir1_block == NULL) {
331 printf ("** ext2fs read block (indir 2 1) malloc failed. **\n");
332 return (-1);
stroese2b918712004-12-16 17:26:24 +0000333 }
wdenkefe2a4d2004-12-16 21:44:03 +0000334 indir1_size = blksz;
stroese2b918712004-12-16 17:26:24 +0000335 }
wdenkefe2a4d2004-12-16 21:44:03 +0000336 if ((__le32_to_cpu (inode->b.blocks.double_indir_block) <<
337 log2_blksz) != indir1_blkno) {
338 status = ext2fs_devread (__le32_to_cpu(inode->b.blocks.double_indir_block) << log2_blksz,
339 0, blksz,
340 (char *) indir1_block);
341 if (status == 0) {
342 printf ("** ext2fs read block (indir 2 1) failed. **\n");
343 return (-1);
stroese2b918712004-12-16 17:26:24 +0000344 }
wdenkefe2a4d2004-12-16 21:44:03 +0000345 indir1_blkno =
346 __le32_to_cpu (inode->b.blocks.double_indir_block) << log2_blksz;
stroese2b918712004-12-16 17:26:24 +0000347 }
348
wdenkefe2a4d2004-12-16 21:44:03 +0000349 if (indir2_block == NULL) {
Simon Glass26784f12011-12-21 10:01:27 +0000350 indir2_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
351 blksz);
wdenkefe2a4d2004-12-16 21:44:03 +0000352 if (indir2_block == NULL) {
353 printf ("** ext2fs read block (indir 2 2) malloc failed. **\n");
354 return (-1);
stroese2b918712004-12-16 17:26:24 +0000355 }
wdenkefe2a4d2004-12-16 21:44:03 +0000356 indir2_size = blksz;
stroese2b918712004-12-16 17:26:24 +0000357 indir2_blkno = -1;
358 }
wdenkefe2a4d2004-12-16 21:44:03 +0000359 if (blksz != indir2_size) {
360 free (indir2_block);
stroese2b918712004-12-16 17:26:24 +0000361 indir2_block = NULL;
wdenkefe2a4d2004-12-16 21:44:03 +0000362 indir2_size = 0;
stroese2b918712004-12-16 17:26:24 +0000363 indir2_blkno = -1;
Simon Glass26784f12011-12-21 10:01:27 +0000364 indir2_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
365 blksz);
wdenkefe2a4d2004-12-16 21:44:03 +0000366 if (indir2_block == NULL) {
367 printf ("** ext2fs read block (indir 2 2) malloc failed. **\n");
368 return (-1);
stroese2b918712004-12-16 17:26:24 +0000369 }
wdenkefe2a4d2004-12-16 21:44:03 +0000370 indir2_size = blksz;
stroese2b918712004-12-16 17:26:24 +0000371 }
wdenkefe2a4d2004-12-16 21:44:03 +0000372 if ((__le32_to_cpu (indir1_block[rblock / perblock]) <<
Aaron Pacea2740dd2010-07-26 14:24:44 -0600373 log2_blksz) != indir2_blkno) {
wdenkefe2a4d2004-12-16 21:44:03 +0000374 status = ext2fs_devread (__le32_to_cpu(indir1_block[rblock / perblock]) << log2_blksz,
375 0, blksz,
376 (char *) indir2_block);
377 if (status == 0) {
378 printf ("** ext2fs read block (indir 2 2) failed. **\n");
379 return (-1);
stroese2b918712004-12-16 17:26:24 +0000380 }
wdenkefe2a4d2004-12-16 21:44:03 +0000381 indir2_blkno =
382 __le32_to_cpu (indir1_block[rblock / perblock]) << log2_blksz;
stroese2b918712004-12-16 17:26:24 +0000383 }
wdenkefe2a4d2004-12-16 21:44:03 +0000384 blknr = __le32_to_cpu (indir2_block[rblock % perblock]);
stroese2b918712004-12-16 17:26:24 +0000385 }
386 /* Tripple indirect. */
wdenkefe2a4d2004-12-16 21:44:03 +0000387 else {
388 printf ("** ext2fs doesn't support tripple indirect blocks. **\n");
389 return (-1);
390 }
stroese2b918712004-12-16 17:26:24 +0000391#ifdef DEBUG
wdenkefe2a4d2004-12-16 21:44:03 +0000392 printf ("ext2fs_read_block %08x\n", blknr);
stroese2b918712004-12-16 17:26:24 +0000393#endif
wdenkefe2a4d2004-12-16 21:44:03 +0000394 return (blknr);
stroese2b918712004-12-16 17:26:24 +0000395}
396
397
398int ext2fs_read_file
wdenkefe2a4d2004-12-16 21:44:03 +0000399 (ext2fs_node_t node, int pos, unsigned int len, char *buf) {
400 int i;
401 int blockcnt;
402 int log2blocksize = LOG2_EXT2_BLOCK_SIZE (node->data);
403 int blocksize = 1 << (log2blocksize + DISK_SECTOR_BITS);
Stefan Roesea7b9fb92006-01-18 20:05:34 +0100404 unsigned int filesize = __le32_to_cpu(node->inode.size);
stroese2b918712004-12-16 17:26:24 +0000405
406 /* Adjust len so it we can't read past the end of the file. */
wdenkefe2a4d2004-12-16 21:44:03 +0000407 if (len > filesize) {
stroese2b918712004-12-16 17:26:24 +0000408 len = filesize;
409 }
wdenkefe2a4d2004-12-16 21:44:03 +0000410 blockcnt = ((len + pos) + blocksize - 1) / blocksize;
stroese2b918712004-12-16 17:26:24 +0000411
wdenkefe2a4d2004-12-16 21:44:03 +0000412 for (i = pos / blocksize; i < blockcnt; i++) {
stroese2b918712004-12-16 17:26:24 +0000413 int blknr;
414 int blockoff = pos % blocksize;
415 int blockend = blocksize;
416
417 int skipfirst = 0;
418
wdenkefe2a4d2004-12-16 21:44:03 +0000419 blknr = ext2fs_read_block (node, i);
420 if (blknr < 0) {
421 return (-1);
stroese2b918712004-12-16 17:26:24 +0000422 }
423 blknr = blknr << log2blocksize;
424
425 /* Last block. */
wdenkefe2a4d2004-12-16 21:44:03 +0000426 if (i == blockcnt - 1) {
stroese2b918712004-12-16 17:26:24 +0000427 blockend = (len + pos) % blocksize;
428
429 /* The last portion is exactly blocksize. */
wdenkefe2a4d2004-12-16 21:44:03 +0000430 if (!blockend) {
stroese2b918712004-12-16 17:26:24 +0000431 blockend = blocksize;
432 }
433 }
434
435 /* First block. */
wdenkefe2a4d2004-12-16 21:44:03 +0000436 if (i == pos / blocksize) {
stroese2b918712004-12-16 17:26:24 +0000437 skipfirst = blockoff;
438 blockend -= skipfirst;
439 }
440
441 /* If the block number is 0 this block is not stored on disk but
442 is zero filled instead. */
wdenkefe2a4d2004-12-16 21:44:03 +0000443 if (blknr) {
stroese2b918712004-12-16 17:26:24 +0000444 int status;
445
446 status = ext2fs_devread (blknr, skipfirst, blockend, buf);
wdenkefe2a4d2004-12-16 21:44:03 +0000447 if (status == 0) {
448 return (-1);
stroese2b918712004-12-16 17:26:24 +0000449 }
wdenkefe2a4d2004-12-16 21:44:03 +0000450 } else {
Wolfgang Denk0ddb8962008-01-09 10:16:33 +0100451 memset (buf, 0, blocksize - skipfirst);
stroese2b918712004-12-16 17:26:24 +0000452 }
453 buf += blocksize - skipfirst;
wdenkefe2a4d2004-12-16 21:44:03 +0000454 }
455 return (len);
stroese2b918712004-12-16 17:26:24 +0000456}
457
458
wdenkefe2a4d2004-12-16 21:44:03 +0000459static int ext2fs_iterate_dir (ext2fs_node_t dir, char *name, ext2fs_node_t * fnode, int *ftype)
stroese2b918712004-12-16 17:26:24 +0000460{
461 unsigned int fpos = 0;
wdenkefe2a4d2004-12-16 21:44:03 +0000462 int status;
stroese2b918712004-12-16 17:26:24 +0000463 struct ext2fs_node *diro = (struct ext2fs_node *) dir;
wdenkefe2a4d2004-12-16 21:44:03 +0000464
stroese2b918712004-12-16 17:26:24 +0000465#ifdef DEBUG
wdenkefe2a4d2004-12-16 21:44:03 +0000466 if (name != NULL)
467 printf ("Iterate dir %s\n", name);
stroese2b918712004-12-16 17:26:24 +0000468#endif /* of DEBUG */
wdenkefe2a4d2004-12-16 21:44:03 +0000469 if (!diro->inode_read) {
470 status = ext2fs_read_inode (diro->data, diro->ino,
471 &diro->inode);
472 if (status == 0) {
473 return (0);
stroese2b918712004-12-16 17:26:24 +0000474 }
475 }
476 /* Search the file. */
wdenkefe2a4d2004-12-16 21:44:03 +0000477 while (fpos < __le32_to_cpu (diro->inode.size)) {
stroese2b918712004-12-16 17:26:24 +0000478 struct ext2_dirent dirent;
479
wdenkefe2a4d2004-12-16 21:44:03 +0000480 status = ext2fs_read_file (diro, fpos,
481 sizeof (struct ext2_dirent),
482 (char *) &dirent);
483 if (status < 1) {
484 return (0);
stroese2b918712004-12-16 17:26:24 +0000485 }
wdenkefe2a4d2004-12-16 21:44:03 +0000486 if (dirent.namelen != 0) {
487 char filename[dirent.namelen + 1];
488 ext2fs_node_t fdiro;
489 int type = FILETYPE_UNKNOWN;
stroese2b918712004-12-16 17:26:24 +0000490
wdenkefe2a4d2004-12-16 21:44:03 +0000491 status = ext2fs_read_file (diro,
492 fpos + sizeof (struct ext2_dirent),
493 dirent.namelen, filename);
494 if (status < 1) {
495 return (0);
stroese2b918712004-12-16 17:26:24 +0000496 }
497 fdiro = malloc (sizeof (struct ext2fs_node));
wdenkefe2a4d2004-12-16 21:44:03 +0000498 if (!fdiro) {
499 return (0);
stroese2b918712004-12-16 17:26:24 +0000500 }
501
502 fdiro->data = diro->data;
wdenkefe2a4d2004-12-16 21:44:03 +0000503 fdiro->ino = __le32_to_cpu (dirent.inode);
stroese2b918712004-12-16 17:26:24 +0000504
505 filename[dirent.namelen] = '\0';
506
wdenkefe2a4d2004-12-16 21:44:03 +0000507 if (dirent.filetype != FILETYPE_UNKNOWN) {
stroese2b918712004-12-16 17:26:24 +0000508 fdiro->inode_read = 0;
509
wdenkefe2a4d2004-12-16 21:44:03 +0000510 if (dirent.filetype == FILETYPE_DIRECTORY) {
stroese2b918712004-12-16 17:26:24 +0000511 type = FILETYPE_DIRECTORY;
wdenkefe2a4d2004-12-16 21:44:03 +0000512 } else if (dirent.filetype ==
513 FILETYPE_SYMLINK) {
stroese2b918712004-12-16 17:26:24 +0000514 type = FILETYPE_SYMLINK;
wdenkefe2a4d2004-12-16 21:44:03 +0000515 } else if (dirent.filetype == FILETYPE_REG) {
516 type = FILETYPE_REG;
stroese2b918712004-12-16 17:26:24 +0000517 }
wdenkefe2a4d2004-12-16 21:44:03 +0000518 } else {
stroese2b918712004-12-16 17:26:24 +0000519 /* The filetype can not be read from the dirent, get it from inode */
520
wdenkefe2a4d2004-12-16 21:44:03 +0000521 status = ext2fs_read_inode (diro->data,
522 __le32_to_cpu(dirent.inode),
523 &fdiro->inode);
524 if (status == 0) {
525 free (fdiro);
526 return (0);
stroese2b918712004-12-16 17:26:24 +0000527 }
528 fdiro->inode_read = 1;
529
wdenkefe2a4d2004-12-16 21:44:03 +0000530 if ((__le16_to_cpu (fdiro->inode.mode) &
531 FILETYPE_INO_MASK) ==
532 FILETYPE_INO_DIRECTORY) {
stroese2b918712004-12-16 17:26:24 +0000533 type = FILETYPE_DIRECTORY;
wdenkefe2a4d2004-12-16 21:44:03 +0000534 } else if ((__le16_to_cpu (fdiro->inode.mode)
535 & FILETYPE_INO_MASK) ==
536 FILETYPE_INO_SYMLINK) {
stroese2b918712004-12-16 17:26:24 +0000537 type = FILETYPE_SYMLINK;
wdenkefe2a4d2004-12-16 21:44:03 +0000538 } else if ((__le16_to_cpu (fdiro->inode.mode)
539 & FILETYPE_INO_MASK) ==
540 FILETYPE_INO_REG) {
stroese2b918712004-12-16 17:26:24 +0000541 type = FILETYPE_REG;
542 }
543 }
544#ifdef DEBUG
wdenkefe2a4d2004-12-16 21:44:03 +0000545 printf ("iterate >%s<\n", filename);
stroese2b918712004-12-16 17:26:24 +0000546#endif /* of DEBUG */
wdenkefe2a4d2004-12-16 21:44:03 +0000547 if ((name != NULL) && (fnode != NULL)
548 && (ftype != NULL)) {
549 if (strcmp (filename, name) == 0) {
stroese2b918712004-12-16 17:26:24 +0000550 *ftype = type;
551 *fnode = fdiro;
wdenkefe2a4d2004-12-16 21:44:03 +0000552 return (1);
stroese2b918712004-12-16 17:26:24 +0000553 }
wdenkefe2a4d2004-12-16 21:44:03 +0000554 } else {
555 if (fdiro->inode_read == 0) {
556 status = ext2fs_read_inode (diro->data,
557 __le32_to_cpu (dirent.inode),
558 &fdiro->inode);
559 if (status == 0) {
560 free (fdiro);
561 return (0);
stroese2b918712004-12-16 17:26:24 +0000562 }
563 fdiro->inode_read = 1;
564 }
wdenkefe2a4d2004-12-16 21:44:03 +0000565 switch (type) {
stroese2b918712004-12-16 17:26:24 +0000566 case FILETYPE_DIRECTORY:
wdenkefe2a4d2004-12-16 21:44:03 +0000567 printf ("<DIR> ");
stroese2b918712004-12-16 17:26:24 +0000568 break;
569 case FILETYPE_SYMLINK:
wdenkefe2a4d2004-12-16 21:44:03 +0000570 printf ("<SYM> ");
stroese2b918712004-12-16 17:26:24 +0000571 break;
572 case FILETYPE_REG:
wdenkefe2a4d2004-12-16 21:44:03 +0000573 printf (" ");
stroese2b918712004-12-16 17:26:24 +0000574 break;
575 default:
wdenkec0aee72004-12-19 09:58:11 +0000576 printf ("< ? > ");
stroese2b918712004-12-16 17:26:24 +0000577 break;
578 }
wdenkefe2a4d2004-12-16 21:44:03 +0000579 printf ("%10d %s\n",
580 __le32_to_cpu (fdiro->inode.size),
581 filename);
stroese2b918712004-12-16 17:26:24 +0000582 }
wdenkefe2a4d2004-12-16 21:44:03 +0000583 free (fdiro);
stroese2b918712004-12-16 17:26:24 +0000584 }
585 fpos += __le16_to_cpu (dirent.direntlen);
586 }
wdenkefe2a4d2004-12-16 21:44:03 +0000587 return (0);
stroese2b918712004-12-16 17:26:24 +0000588}
589
590
wdenkefe2a4d2004-12-16 21:44:03 +0000591static char *ext2fs_read_symlink (ext2fs_node_t node) {
592 char *symlink;
stroese2b918712004-12-16 17:26:24 +0000593 struct ext2fs_node *diro = node;
wdenkefe2a4d2004-12-16 21:44:03 +0000594 int status;
stroese2b918712004-12-16 17:26:24 +0000595
wdenkefe2a4d2004-12-16 21:44:03 +0000596 if (!diro->inode_read) {
597 status = ext2fs_read_inode (diro->data, diro->ino,
598 &diro->inode);
599 if (status == 0) {
600 return (0);
stroese2b918712004-12-16 17:26:24 +0000601 }
602 }
603 symlink = malloc (__le32_to_cpu (diro->inode.size) + 1);
wdenkefe2a4d2004-12-16 21:44:03 +0000604 if (!symlink) {
605 return (0);
stroese2b918712004-12-16 17:26:24 +0000606 }
607 /* If the filesize of the symlink is bigger than
608 60 the symlink is stored in a separate block,
609 otherwise it is stored in the inode. */
wdenkefe2a4d2004-12-16 21:44:03 +0000610 if (__le32_to_cpu (diro->inode.size) <= 60) {
611 strncpy (symlink, diro->inode.b.symlink,
612 __le32_to_cpu (diro->inode.size));
613 } else {
614 status = ext2fs_read_file (diro, 0,
615 __le32_to_cpu (diro->inode.size),
616 symlink);
617 if (status == 0) {
stroese2b918712004-12-16 17:26:24 +0000618 free (symlink);
wdenkefe2a4d2004-12-16 21:44:03 +0000619 return (0);
stroese2b918712004-12-16 17:26:24 +0000620 }
621 }
622 symlink[__le32_to_cpu (diro->inode.size)] = '\0';
wdenkefe2a4d2004-12-16 21:44:03 +0000623 return (symlink);
stroese2b918712004-12-16 17:26:24 +0000624}
625
626
627int ext2fs_find_file1
wdenkefe2a4d2004-12-16 21:44:03 +0000628 (const char *currpath,
629 ext2fs_node_t currroot, ext2fs_node_t * currfound, int *foundtype) {
630 char fpath[strlen (currpath) + 1];
631 char *name = fpath;
632 char *next;
633 int status;
634 int type = FILETYPE_DIRECTORY;
635 ext2fs_node_t currnode = currroot;
636 ext2fs_node_t oldnode = currroot;
stroese2b918712004-12-16 17:26:24 +0000637
638 strncpy (fpath, currpath, strlen (currpath) + 1);
639
640 /* Remove all leading slashes. */
wdenkefe2a4d2004-12-16 21:44:03 +0000641 while (*name == '/') {
stroese2b918712004-12-16 17:26:24 +0000642 name++;
wdenkefe2a4d2004-12-16 21:44:03 +0000643 }
644 if (!*name) {
stroese2b918712004-12-16 17:26:24 +0000645 *currfound = currnode;
wdenkefe2a4d2004-12-16 21:44:03 +0000646 return (1);
stroese2b918712004-12-16 17:26:24 +0000647 }
648
wdenkefe2a4d2004-12-16 21:44:03 +0000649 for (;;) {
stroese2b918712004-12-16 17:26:24 +0000650 int found;
651
652 /* Extract the actual part from the pathname. */
653 next = strchr (name, '/');
wdenkefe2a4d2004-12-16 21:44:03 +0000654 if (next) {
stroese2b918712004-12-16 17:26:24 +0000655 /* Remove all leading slashes. */
wdenkefe2a4d2004-12-16 21:44:03 +0000656 while (*next == '/') {
stroese2b918712004-12-16 17:26:24 +0000657 *(next++) = '\0';
658 }
659 }
660
661 /* At this point it is expected that the current node is a directory, check if this is true. */
wdenkefe2a4d2004-12-16 21:44:03 +0000662 if (type != FILETYPE_DIRECTORY) {
stroese2b918712004-12-16 17:26:24 +0000663 ext2fs_free_node (currnode, currroot);
wdenkefe2a4d2004-12-16 21:44:03 +0000664 return (0);
stroese2b918712004-12-16 17:26:24 +0000665 }
666
667 oldnode = currnode;
668
669 /* Iterate over the directory. */
670 found = ext2fs_iterate_dir (currnode, name, &currnode, &type);
wdenkefe2a4d2004-12-16 21:44:03 +0000671 if (found == 0) {
672 return (0);
stroese2b918712004-12-16 17:26:24 +0000673 }
wdenkefe2a4d2004-12-16 21:44:03 +0000674 if (found == -1) {
stroese2b918712004-12-16 17:26:24 +0000675 break;
676 }
677
678 /* Read in the symlink and follow it. */
wdenkefe2a4d2004-12-16 21:44:03 +0000679 if (type == FILETYPE_SYMLINK) {
stroese2b918712004-12-16 17:26:24 +0000680 char *symlink;
681
682 /* Test if the symlink does not loop. */
wdenkefe2a4d2004-12-16 21:44:03 +0000683 if (++symlinknest == 8) {
stroese2b918712004-12-16 17:26:24 +0000684 ext2fs_free_node (currnode, currroot);
wdenkefe2a4d2004-12-16 21:44:03 +0000685 ext2fs_free_node (oldnode, currroot);
686 return (0);
stroese2b918712004-12-16 17:26:24 +0000687 }
688
689 symlink = ext2fs_read_symlink (currnode);
690 ext2fs_free_node (currnode, currroot);
691
wdenkefe2a4d2004-12-16 21:44:03 +0000692 if (!symlink) {
stroese2b918712004-12-16 17:26:24 +0000693 ext2fs_free_node (oldnode, currroot);
wdenkefe2a4d2004-12-16 21:44:03 +0000694 return (0);
stroese2b918712004-12-16 17:26:24 +0000695 }
696#ifdef DEBUG
wdenkefe2a4d2004-12-16 21:44:03 +0000697 printf ("Got symlink >%s<\n", symlink);
stroese2b918712004-12-16 17:26:24 +0000698#endif /* of DEBUG */
699 /* The symlink is an absolute path, go back to the root inode. */
wdenkefe2a4d2004-12-16 21:44:03 +0000700 if (symlink[0] == '/') {
stroese2b918712004-12-16 17:26:24 +0000701 ext2fs_free_node (oldnode, currroot);
702 oldnode = &ext2fs_root->diropen;
703 }
704
705 /* Lookup the node the symlink points to. */
wdenkefe2a4d2004-12-16 21:44:03 +0000706 status = ext2fs_find_file1 (symlink, oldnode,
707 &currnode, &type);
stroese2b918712004-12-16 17:26:24 +0000708
709 free (symlink);
710
wdenkefe2a4d2004-12-16 21:44:03 +0000711 if (status == 0) {
stroese2b918712004-12-16 17:26:24 +0000712 ext2fs_free_node (oldnode, currroot);
wdenkefe2a4d2004-12-16 21:44:03 +0000713 return (0);
stroese2b918712004-12-16 17:26:24 +0000714 }
715 }
716
717 ext2fs_free_node (oldnode, currroot);
718
719 /* Found the node! */
wdenkefe2a4d2004-12-16 21:44:03 +0000720 if (!next || *next == '\0') {
stroese2b918712004-12-16 17:26:24 +0000721 *currfound = currnode;
722 *foundtype = type;
wdenkefe2a4d2004-12-16 21:44:03 +0000723 return (1);
stroese2b918712004-12-16 17:26:24 +0000724 }
725 name = next;
726 }
wdenkefe2a4d2004-12-16 21:44:03 +0000727 return (-1);
stroese2b918712004-12-16 17:26:24 +0000728}
729
730
731int ext2fs_find_file
wdenkefe2a4d2004-12-16 21:44:03 +0000732 (const char *path,
733 ext2fs_node_t rootnode, ext2fs_node_t * foundnode, int expecttype) {
stroese2b918712004-12-16 17:26:24 +0000734 int status;
735 int foundtype = FILETYPE_DIRECTORY;
736
737
738 symlinknest = 0;
wdenk20a80412005-02-04 15:02:06 +0000739 if (!path) {
wdenkefe2a4d2004-12-16 21:44:03 +0000740 return (0);
stroese2b918712004-12-16 17:26:24 +0000741 }
742
wdenkefe2a4d2004-12-16 21:44:03 +0000743 status = ext2fs_find_file1 (path, rootnode, foundnode, &foundtype);
744 if (status == 0) {
745 return (0);
stroese2b918712004-12-16 17:26:24 +0000746 }
747 /* Check if the node that was found was of the expected type. */
wdenkefe2a4d2004-12-16 21:44:03 +0000748 if ((expecttype == FILETYPE_REG) && (foundtype != expecttype)) {
749 return (0);
750 } else if ((expecttype == FILETYPE_DIRECTORY)
751 && (foundtype != expecttype)) {
752 return (0);
stroese2b918712004-12-16 17:26:24 +0000753 }
wdenkefe2a4d2004-12-16 21:44:03 +0000754 return (1);
stroese2b918712004-12-16 17:26:24 +0000755}
756
757
Mike Frysingerc87f6452010-10-20 07:18:09 -0400758int ext2fs_ls (const char *dirname) {
stroese2b918712004-12-16 17:26:24 +0000759 ext2fs_node_t dirnode;
wdenkefe2a4d2004-12-16 21:44:03 +0000760 int status;
stroese2b918712004-12-16 17:26:24 +0000761
wdenkefe2a4d2004-12-16 21:44:03 +0000762 if (ext2fs_root == NULL) {
763 return (0);
stroese2b918712004-12-16 17:26:24 +0000764 }
765
wdenkefe2a4d2004-12-16 21:44:03 +0000766 status = ext2fs_find_file (dirname, &ext2fs_root->diropen, &dirnode,
767 FILETYPE_DIRECTORY);
768 if (status != 1) {
769 printf ("** Can not find directory. **\n");
770 return (1);
771 }
772 ext2fs_iterate_dir (dirnode, NULL, NULL, NULL);
773 ext2fs_free_node (dirnode, &ext2fs_root->diropen);
774 return (0);
stroese2b918712004-12-16 17:26:24 +0000775}
776
777
Mike Frysingerc87f6452010-10-20 07:18:09 -0400778int ext2fs_open (const char *filename) {
wdenkefe2a4d2004-12-16 21:44:03 +0000779 ext2fs_node_t fdiro = NULL;
780 int status;
781 int len;
stroese2b918712004-12-16 17:26:24 +0000782
wdenkefe2a4d2004-12-16 21:44:03 +0000783 if (ext2fs_root == NULL) {
wdenk20a80412005-02-04 15:02:06 +0000784 return (-1);
stroese2b918712004-12-16 17:26:24 +0000785 }
786 ext2fs_file = NULL;
wdenkefe2a4d2004-12-16 21:44:03 +0000787 status = ext2fs_find_file (filename, &ext2fs_root->diropen, &fdiro,
788 FILETYPE_REG);
789 if (status == 0) {
stroese2b918712004-12-16 17:26:24 +0000790 goto fail;
791 }
wdenkefe2a4d2004-12-16 21:44:03 +0000792 if (!fdiro->inode_read) {
793 status = ext2fs_read_inode (fdiro->data, fdiro->ino,
794 &fdiro->inode);
795 if (status == 0) {
stroese2b918712004-12-16 17:26:24 +0000796 goto fail;
797 }
798 }
799 len = __le32_to_cpu (fdiro->inode.size);
800 ext2fs_file = fdiro;
wdenkefe2a4d2004-12-16 21:44:03 +0000801 return (len);
stroese2b918712004-12-16 17:26:24 +0000802
wdenk20a80412005-02-04 15:02:06 +0000803fail:
wdenkefe2a4d2004-12-16 21:44:03 +0000804 ext2fs_free_node (fdiro, &ext2fs_root->diropen);
wdenk20a80412005-02-04 15:02:06 +0000805 return (-1);
stroese2b918712004-12-16 17:26:24 +0000806}
807
808
wdenkefe2a4d2004-12-16 21:44:03 +0000809int ext2fs_close (void
810 ) {
811 if ((ext2fs_file != NULL) && (ext2fs_root != NULL)) {
812 ext2fs_free_node (ext2fs_file, &ext2fs_root->diropen);
stroese2b918712004-12-16 17:26:24 +0000813 ext2fs_file = NULL;
814 }
wdenkefe2a4d2004-12-16 21:44:03 +0000815 if (ext2fs_root != NULL) {
816 free (ext2fs_root);
817 ext2fs_root = NULL;
stroese2b918712004-12-16 17:26:24 +0000818 }
wdenkefe2a4d2004-12-16 21:44:03 +0000819 if (indir1_block != NULL) {
820 free (indir1_block);
821 indir1_block = NULL;
822 indir1_size = 0;
823 indir1_blkno = -1;
stroese2b918712004-12-16 17:26:24 +0000824 }
wdenkefe2a4d2004-12-16 21:44:03 +0000825 if (indir2_block != NULL) {
826 free (indir2_block);
827 indir2_block = NULL;
828 indir2_size = 0;
829 indir2_blkno = -1;
stroese2b918712004-12-16 17:26:24 +0000830 }
wdenkefe2a4d2004-12-16 21:44:03 +0000831 return (0);
stroese2b918712004-12-16 17:26:24 +0000832}
833
834
wdenkefe2a4d2004-12-16 21:44:03 +0000835int ext2fs_read (char *buf, unsigned len) {
stroese2b918712004-12-16 17:26:24 +0000836 int status;
837
wdenkefe2a4d2004-12-16 21:44:03 +0000838 if (ext2fs_root == NULL) {
839 return (0);
stroese2b918712004-12-16 17:26:24 +0000840 }
841
wdenkefe2a4d2004-12-16 21:44:03 +0000842 if (ext2fs_file == NULL) {
843 return (0);
stroese2b918712004-12-16 17:26:24 +0000844 }
845
wdenkefe2a4d2004-12-16 21:44:03 +0000846 status = ext2fs_read_file (ext2fs_file, 0, len, buf);
847 return (status);
stroese2b918712004-12-16 17:26:24 +0000848}
849
850
wdenkefe2a4d2004-12-16 21:44:03 +0000851int ext2fs_mount (unsigned part_length) {
stroese2b918712004-12-16 17:26:24 +0000852 struct ext2_data *data;
wdenkefe2a4d2004-12-16 21:44:03 +0000853 int status;
stroese2b918712004-12-16 17:26:24 +0000854
855 data = malloc (sizeof (struct ext2_data));
wdenkefe2a4d2004-12-16 21:44:03 +0000856 if (!data) {
857 return (0);
stroese2b918712004-12-16 17:26:24 +0000858 }
859 /* Read the superblock. */
wdenkefe2a4d2004-12-16 21:44:03 +0000860 status = ext2fs_devread (1 * 2, 0, sizeof (struct ext2_sblock),
861 (char *) &data->sblock);
862 if (status == 0) {
stroese2b918712004-12-16 17:26:24 +0000863 goto fail;
864 }
865 /* Make sure this is an ext2 filesystem. */
wdenkefe2a4d2004-12-16 21:44:03 +0000866 if (__le16_to_cpu (data->sblock.magic) != EXT2_MAGIC) {
stroese2b918712004-12-16 17:26:24 +0000867 goto fail;
868 }
Michael Brandt270737a2009-11-22 14:13:27 +0100869 if (__le32_to_cpu(data->sblock.revision_level == 0)) {
870 inode_size = 128;
871 } else {
872 inode_size = __le16_to_cpu(data->sblock.inode_size);
873 }
874#ifdef DEBUG
875 printf("EXT2 rev %d, inode_size %d\n",
876 __le32_to_cpu(data->sblock.revision_level), inode_size);
877#endif
wdenkefe2a4d2004-12-16 21:44:03 +0000878 data->diropen.data = data;
879 data->diropen.ino = 2;
880 data->diropen.inode_read = 1;
881 data->inode = &data->diropen.inode;
stroese2b918712004-12-16 17:26:24 +0000882
883 status = ext2fs_read_inode (data, 2, data->inode);
wdenkefe2a4d2004-12-16 21:44:03 +0000884 if (status == 0) {
stroese2b918712004-12-16 17:26:24 +0000885 goto fail;
886 }
887
888 ext2fs_root = data;
889
wdenkefe2a4d2004-12-16 21:44:03 +0000890 return (1);
stroese2b918712004-12-16 17:26:24 +0000891
wdenkefe2a4d2004-12-16 21:44:03 +0000892fail:
893 printf ("Failed to mount ext2 filesystem...\n");
894 free (data);
stroese2b918712004-12-16 17:26:24 +0000895 ext2fs_root = NULL;
wdenkefe2a4d2004-12-16 21:44:03 +0000896 return (0);
stroese2b918712004-12-16 17:26:24 +0000897}