3 * esd gmbh <www.esd-electronics.com>
4 * Reinhard Arlt <reinhard.arlt@esd-electronics.com>
6 * based on code from grub2 fs/ext2.c and fs/fshelp.c by
8 * GRUB -- GRand Unified Bootloader
9 * Copyright (C) 2003, 2004 Free Software Foundation, Inc.
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.
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.
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.
29 #include <asm/byteorder.h>
31 extern int ext2fs_devread (int sector, int byte_offset, int byte_len,
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
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
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
55 /* Bits used as offset in sector */
56 #define DISK_SECTOR_BITS 9
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)
61 /* Log2 size of ext2 block in bytes. */
62 #define LOG2_BLOCK_SIZE(data) (__le32_to_cpu (data->sblock.log2_block_size) + 10)
64 /* The size of an ext2 block in bytes. */
65 #define EXT2_BLOCK_SIZE(data) (1 << LOG2_BLOCK_SIZE(data))
67 /* The ext2 superblock. */
69 uint32_t total_inodes;
70 uint32_t total_blocks;
71 uint32_t reserved_blocks;
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;
83 uint16_t max_mnt_count;
86 uint16_t error_handling;
87 uint16_t minor_revision_level;
89 uint32_t checkinterval;
91 uint32_t revision_level;
92 uint16_t uid_reserved;
93 uint16_t gid_reserved;
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;
106 /* The ext2 blockgroup. */
107 struct ext2_block_group {
110 uint32_t inode_table_id;
111 uint16_t free_blocks;
112 uint16_t free_inodes;
113 uint16_t used_dir_cnt;
114 uint32_t reserved[3];
117 /* The ext2 inode. */
128 uint32_t blockcnt; /* Blocks of 512 bytes!! */
133 uint32_t dir_blocks[INDIRECT_BLOCKS];
134 uint32_t indir_block;
135 uint32_t double_indir_block;
136 uint32_t tripple_indir_block;
143 uint32_t fragment_addr;
147 /* The header of an ext2 directory entry. */
156 struct ext2_data *data;
157 struct ext2_inode inode;
162 /* Information about a "mounted" ext2 filesystem. */
164 struct ext2_sblock sblock;
165 struct ext2_inode *inode;
166 struct ext2fs_node diropen;
170 typedef struct ext2fs_node *ext2fs_node_t;
172 struct ext2_data *ext2fs_root = NULL;
173 ext2fs_node_t ext2fs_file = NULL;
175 uint32_t *indir1_block = NULL;
177 int indir1_blkno = -1;
178 uint32_t *indir2_block = NULL;
180 int indir2_blkno = -1;
181 static unsigned int inode_size;
184 static int ext2fs_blockgroup
185 (struct ext2_data *data, int group, struct ext2_block_group *blkgrp) {
188 unsigned int desc_per_blk;
190 desc_per_blk = EXT2_BLOCK_SIZE(data) / sizeof(struct ext2_block_group);
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);
196 printf ("ext2fs read %d group descriptor (blkno %d blkoff %d)\n",
197 group, blkno, blkoff);
199 return (ext2fs_devread (blkno << LOG2_EXT2_BLOCK_SIZE(data),
200 blkoff, sizeof(struct ext2_block_group), (char *)blkgrp));
205 static int ext2fs_read_inode
206 (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;
216 printf ("ext2fs read inode %d, inode_size %d\n", ino, inode_size);
218 /* It is easier to calculate if the first inode is 0. */
220 status = ext2fs_blockgroup (data, ino / __le32_to_cpu
221 (sblock->inodes_per_group), &blkgrp);
226 inodes_per_block = EXT2_BLOCK_SIZE(data) / inode_size;
228 blkno = __le32_to_cpu (blkgrp.inode_table_id) +
229 (ino % __le32_to_cpu (sblock->inodes_per_group))
231 blkoff = (ino % inodes_per_block) * inode_size;
233 printf ("ext2fs read inode blkno %d blkoff %d\n", blkno, blkoff);
235 /* Read the inode. */
236 status = ext2fs_devread (blkno << LOG2_EXT2_BLOCK_SIZE (data), blkoff,
237 sizeof (struct ext2_inode), (char *) inode);
246 void ext2fs_free_node (ext2fs_node_t node, ext2fs_node_t currroot) {
247 if ((node != &ext2fs_root->diropen) && (node != currroot)) {
253 static int ext2fs_read_block (ext2fs_node_t node, int fileblock) {
254 struct ext2_data *data = node->data;
255 struct ext2_inode *inode = &node->inode;
257 int blksz = EXT2_BLOCK_SIZE (data);
258 int log2_blksz = LOG2_EXT2_BLOCK_SIZE (data);
262 if (fileblock < INDIRECT_BLOCKS) {
263 blknr = __le32_to_cpu (inode->b.blocks.dir_blocks[fileblock]);
266 else if (fileblock < (INDIRECT_BLOCKS + (blksz / 4))) {
267 if (indir1_block == NULL) {
268 indir1_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
270 if (indir1_block == NULL) {
271 printf ("** ext2fs read block (indir 1) malloc failed. **\n");
277 if (blksz != indir1_size) {
282 indir1_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
284 if (indir1_block == NULL) {
285 printf ("** ext2fs read block (indir 1) malloc failed. **\n");
290 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,
294 (char *) indir1_block);
296 printf ("** ext2fs read block (indir 1) failed. **\n");
300 __le32_to_cpu (inode->b.blocks.
301 indir_block) << log2_blksz;
303 blknr = __le32_to_cpu (indir1_block
304 [fileblock - INDIRECT_BLOCKS]);
306 /* Double indirect. */
308 (INDIRECT_BLOCKS + (blksz / 4 * (blksz / 4 + 1)))) {
309 unsigned int perblock = blksz / 4;
310 unsigned int rblock = fileblock - (INDIRECT_BLOCKS
313 if (indir1_block == NULL) {
314 indir1_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
316 if (indir1_block == NULL) {
317 printf ("** ext2fs read block (indir 2 1) malloc failed. **\n");
323 if (blksz != indir1_size) {
328 indir1_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
330 if (indir1_block == NULL) {
331 printf ("** ext2fs read block (indir 2 1) malloc failed. **\n");
336 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,
340 (char *) indir1_block);
342 printf ("** ext2fs read block (indir 2 1) failed. **\n");
346 __le32_to_cpu (inode->b.blocks.double_indir_block) << log2_blksz;
349 if (indir2_block == NULL) {
350 indir2_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
352 if (indir2_block == NULL) {
353 printf ("** ext2fs read block (indir 2 2) malloc failed. **\n");
359 if (blksz != indir2_size) {
364 indir2_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
366 if (indir2_block == NULL) {
367 printf ("** ext2fs read block (indir 2 2) malloc failed. **\n");
372 if ((__le32_to_cpu (indir1_block[rblock / perblock]) <<
373 log2_blksz) != indir2_blkno) {
374 status = ext2fs_devread (__le32_to_cpu(indir1_block[rblock / perblock]) << log2_blksz,
376 (char *) indir2_block);
378 printf ("** ext2fs read block (indir 2 2) failed. **\n");
382 __le32_to_cpu (indir1_block[rblock / perblock]) << log2_blksz;
384 blknr = __le32_to_cpu (indir2_block[rblock % perblock]);
386 /* Tripple indirect. */
388 printf ("** ext2fs doesn't support tripple indirect blocks. **\n");
392 printf ("ext2fs_read_block %08x\n", blknr);
399 (ext2fs_node_t node, int pos, unsigned int len, char *buf) {
402 int log2blocksize = LOG2_EXT2_BLOCK_SIZE (node->data);
403 int blocksize = 1 << (log2blocksize + DISK_SECTOR_BITS);
404 unsigned int filesize = __le32_to_cpu(node->inode.size);
406 /* Adjust len so it we can't read past the end of the file. */
407 if (len > filesize) {
410 blockcnt = ((len + pos) + blocksize - 1) / blocksize;
412 for (i = pos / blocksize; i < blockcnt; i++) {
414 int blockoff = pos % blocksize;
415 int blockend = blocksize;
419 blknr = ext2fs_read_block (node, i);
423 blknr = blknr << log2blocksize;
426 if (i == blockcnt - 1) {
427 blockend = (len + pos) % blocksize;
429 /* The last portion is exactly blocksize. */
431 blockend = blocksize;
436 if (i == pos / blocksize) {
437 skipfirst = blockoff;
438 blockend -= skipfirst;
441 /* If the block number is 0 this block is not stored on disk but
442 is zero filled instead. */
446 status = ext2fs_devread (blknr, skipfirst, blockend, buf);
451 memset (buf, 0, blocksize - skipfirst);
453 buf += blocksize - skipfirst;
459 static int ext2fs_iterate_dir (ext2fs_node_t dir, char *name, ext2fs_node_t * fnode, int *ftype)
461 unsigned int fpos = 0;
463 struct ext2fs_node *diro = (struct ext2fs_node *) dir;
467 printf ("Iterate dir %s\n", name);
468 #endif /* of DEBUG */
469 if (!diro->inode_read) {
470 status = ext2fs_read_inode (diro->data, diro->ino,
476 /* Search the file. */
477 while (fpos < __le32_to_cpu (diro->inode.size)) {
478 struct ext2_dirent dirent;
480 status = ext2fs_read_file (diro, fpos,
481 sizeof (struct ext2_dirent),
486 if (dirent.namelen != 0) {
487 char filename[dirent.namelen + 1];
489 int type = FILETYPE_UNKNOWN;
491 status = ext2fs_read_file (diro,
492 fpos + sizeof (struct ext2_dirent),
493 dirent.namelen, filename);
497 fdiro = malloc (sizeof (struct ext2fs_node));
502 fdiro->data = diro->data;
503 fdiro->ino = __le32_to_cpu (dirent.inode);
505 filename[dirent.namelen] = '\0';
507 if (dirent.filetype != FILETYPE_UNKNOWN) {
508 fdiro->inode_read = 0;
510 if (dirent.filetype == FILETYPE_DIRECTORY) {
511 type = FILETYPE_DIRECTORY;
512 } else if (dirent.filetype ==
514 type = FILETYPE_SYMLINK;
515 } else if (dirent.filetype == FILETYPE_REG) {
519 /* The filetype can not be read from the dirent, get it from inode */
521 status = ext2fs_read_inode (diro->data,
522 __le32_to_cpu(dirent.inode),
528 fdiro->inode_read = 1;
530 if ((__le16_to_cpu (fdiro->inode.mode) &
531 FILETYPE_INO_MASK) ==
532 FILETYPE_INO_DIRECTORY) {
533 type = FILETYPE_DIRECTORY;
534 } else if ((__le16_to_cpu (fdiro->inode.mode)
535 & FILETYPE_INO_MASK) ==
536 FILETYPE_INO_SYMLINK) {
537 type = FILETYPE_SYMLINK;
538 } else if ((__le16_to_cpu (fdiro->inode.mode)
539 & FILETYPE_INO_MASK) ==
545 printf ("iterate >%s<\n", filename);
546 #endif /* of DEBUG */
547 if ((name != NULL) && (fnode != NULL)
548 && (ftype != NULL)) {
549 if (strcmp (filename, name) == 0) {
555 if (fdiro->inode_read == 0) {
556 status = ext2fs_read_inode (diro->data,
557 __le32_to_cpu (dirent.inode),
563 fdiro->inode_read = 1;
566 case FILETYPE_DIRECTORY:
569 case FILETYPE_SYMLINK:
580 __le32_to_cpu (fdiro->inode.size),
585 fpos += __le16_to_cpu (dirent.direntlen);
591 static char *ext2fs_read_symlink (ext2fs_node_t node) {
593 struct ext2fs_node *diro = node;
596 if (!diro->inode_read) {
597 status = ext2fs_read_inode (diro->data, diro->ino,
603 symlink = malloc (__le32_to_cpu (diro->inode.size) + 1);
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. */
610 if (__le32_to_cpu (diro->inode.size) <= 60) {
611 strncpy (symlink, diro->inode.b.symlink,
612 __le32_to_cpu (diro->inode.size));
614 status = ext2fs_read_file (diro, 0,
615 __le32_to_cpu (diro->inode.size),
622 symlink[__le32_to_cpu (diro->inode.size)] = '\0';
627 int ext2fs_find_file1
628 (const char *currpath,
629 ext2fs_node_t currroot, ext2fs_node_t * currfound, int *foundtype) {
630 char fpath[strlen (currpath) + 1];
634 int type = FILETYPE_DIRECTORY;
635 ext2fs_node_t currnode = currroot;
636 ext2fs_node_t oldnode = currroot;
638 strncpy (fpath, currpath, strlen (currpath) + 1);
640 /* Remove all leading slashes. */
641 while (*name == '/') {
645 *currfound = currnode;
652 /* Extract the actual part from the pathname. */
653 next = strchr (name, '/');
655 /* Remove all leading slashes. */
656 while (*next == '/') {
661 /* At this point it is expected that the current node is a directory, check if this is true. */
662 if (type != FILETYPE_DIRECTORY) {
663 ext2fs_free_node (currnode, currroot);
669 /* Iterate over the directory. */
670 found = ext2fs_iterate_dir (currnode, name, &currnode, &type);
678 /* Read in the symlink and follow it. */
679 if (type == FILETYPE_SYMLINK) {
682 /* Test if the symlink does not loop. */
683 if (++symlinknest == 8) {
684 ext2fs_free_node (currnode, currroot);
685 ext2fs_free_node (oldnode, currroot);
689 symlink = ext2fs_read_symlink (currnode);
690 ext2fs_free_node (currnode, currroot);
693 ext2fs_free_node (oldnode, currroot);
697 printf ("Got symlink >%s<\n", symlink);
698 #endif /* of DEBUG */
699 /* The symlink is an absolute path, go back to the root inode. */
700 if (symlink[0] == '/') {
701 ext2fs_free_node (oldnode, currroot);
702 oldnode = &ext2fs_root->diropen;
705 /* Lookup the node the symlink points to. */
706 status = ext2fs_find_file1 (symlink, oldnode,
712 ext2fs_free_node (oldnode, currroot);
717 ext2fs_free_node (oldnode, currroot);
719 /* Found the node! */
720 if (!next || *next == '\0') {
721 *currfound = currnode;
733 ext2fs_node_t rootnode, ext2fs_node_t * foundnode, int expecttype) {
735 int foundtype = FILETYPE_DIRECTORY;
743 status = ext2fs_find_file1 (path, rootnode, foundnode, &foundtype);
747 /* Check if the node that was found was of the expected type. */
748 if ((expecttype == FILETYPE_REG) && (foundtype != expecttype)) {
750 } else if ((expecttype == FILETYPE_DIRECTORY)
751 && (foundtype != expecttype)) {
758 int ext2fs_ls (const char *dirname) {
759 ext2fs_node_t dirnode;
762 if (ext2fs_root == NULL) {
766 status = ext2fs_find_file (dirname, &ext2fs_root->diropen, &dirnode,
769 printf ("** Can not find directory. **\n");
772 ext2fs_iterate_dir (dirnode, NULL, NULL, NULL);
773 ext2fs_free_node (dirnode, &ext2fs_root->diropen);
778 int ext2fs_open (const char *filename) {
779 ext2fs_node_t fdiro = NULL;
783 if (ext2fs_root == NULL) {
787 status = ext2fs_find_file (filename, &ext2fs_root->diropen, &fdiro,
792 if (!fdiro->inode_read) {
793 status = ext2fs_read_inode (fdiro->data, fdiro->ino,
799 len = __le32_to_cpu (fdiro->inode.size);
804 ext2fs_free_node (fdiro, &ext2fs_root->diropen);
809 int ext2fs_close (void
811 if ((ext2fs_file != NULL) && (ext2fs_root != NULL)) {
812 ext2fs_free_node (ext2fs_file, &ext2fs_root->diropen);
815 if (ext2fs_root != NULL) {
819 if (indir1_block != NULL) {
825 if (indir2_block != NULL) {
835 int ext2fs_read (char *buf, unsigned len) {
838 if (ext2fs_root == NULL) {
842 if (ext2fs_file == NULL) {
846 status = ext2fs_read_file (ext2fs_file, 0, len, buf);
851 int ext2fs_mount (unsigned part_length) {
852 struct ext2_data *data;
855 data = malloc (sizeof (struct ext2_data));
859 /* Read the superblock. */
860 status = ext2fs_devread (1 * 2, 0, sizeof (struct ext2_sblock),
861 (char *) &data->sblock);
865 /* Make sure this is an ext2 filesystem. */
866 if (__le16_to_cpu (data->sblock.magic) != EXT2_MAGIC) {
869 if (__le32_to_cpu(data->sblock.revision_level == 0)) {
872 inode_size = __le16_to_cpu(data->sblock.inode_size);
875 printf("EXT2 rev %d, inode_size %d\n",
876 __le32_to_cpu(data->sblock.revision_level), inode_size);
878 data->diropen.data = data;
879 data->diropen.ino = 2;
880 data->diropen.inode_read = 1;
881 data->inode = &data->diropen.inode;
883 status = ext2fs_read_inode (data, 2, data->inode);
893 printf ("Failed to mount ext2 filesystem...\n");