Skip to content
Snippets Groups Projects
ext2fs.c 21.4 KiB
Newer Older
  • Learn to ignore specific revisions
  • Stefan Roese's avatar
    Stefan Roese committed
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
    /*
     * (C) Copyright 2004
     *  esd gmbh <www.esd-electronics.com>
     *  Reinhard Arlt <reinhard.arlt@esd-electronics.com>
     *
     *  based on code from grub2 fs/ext2.c and fs/fshelp.c by
     *
     *  GRUB  --  GRand Unified Bootloader
     *  Copyright (C) 2003, 2004  Free Software Foundation, Inc.
     *
     *  This program is free software; you can redistribute it and/or modify
     *  it under the terms of the GNU General Public License as published by
     *  the Free Software Foundation; either version 2 of the License, or
     *  (at your option) any later version.
     *
     *  This program is distributed in the hope that it will be useful,
     *  but WITHOUT ANY WARRANTY; without even the implied warranty of
     *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     *  GNU General Public License for more details.
     *
     *  You should have received a copy of the GNU General Public License
     *  along with this program; if not, write to the Free Software
     *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
     */
    
    #include <common.h>
    
    #if (CONFIG_COMMANDS & CFG_CMD_EXT2)
    #include <ext2fs.h>
    #include <malloc.h>
    #include <asm/byteorder.h>
    
    extern int ext2fs_devread (int sector, int byte_offset, int byte_len, char *buf);
    
    /* Magic value used to identify an ext2 filesystem.  */
    #define	EXT2_MAGIC		0xEF53
    /* Amount of indirect blocks in an inode.  */
    #define INDIRECT_BLOCKS		12
    /* Maximum lenght of a pathname.  */
    #define EXT2_PATH_MAX		4096
    /* Maximum nesting of symlinks, used to prevent a loop.  */
    #define	EXT2_MAX_SYMLINKCNT	8
    
    /* Filetype used in directory entry.  */
    #define	FILETYPE_UNKNOWN	0
    #define	FILETYPE_REG		1
    #define	FILETYPE_DIRECTORY	2
    #define	FILETYPE_SYMLINK	7
    
    /* Filetype information as used in inodes.  */
    #define FILETYPE_INO_MASK	0170000
    #define FILETYPE_INO_REG	0100000
    #define FILETYPE_INO_DIRECTORY	0040000
    #define FILETYPE_INO_SYMLINK	0120000
    
    /* Bits used as offset in sector */
    #define DISK_SECTOR_BITS        9
    
    /* Log2 size of ext2 block in 512 blocks.  */
    #define LOG2_EXT2_BLOCK_SIZE(data) (__le32_to_cpu (data->sblock.log2_block_size) + 1)
    
    /* Log2 size of ext2 block in bytes.  */
    #define LOG2_BLOCK_SIZE(data)	   (__le32_to_cpu (data->sblock.log2_block_size) + 10)
    
    /* The size of an ext2 block in bytes.  */
    #define EXT2_BLOCK_SIZE(data)	   (1 << LOG2_BLOCK_SIZE(data))
    
    /* The ext2 superblock.  */
    struct ext2_sblock
    {
    	uint32_t total_inodes;
    	uint32_t total_blocks;
    	uint32_t reserved_blocks;
    	uint32_t free_blocks;
    	uint32_t free_inodes;
    	uint32_t first_data_block;
    	uint32_t log2_block_size;
    	uint32_t log2_fragment_size;
    	uint32_t blocks_per_group;
    	uint32_t fragments_per_group;
    	uint32_t inodes_per_group;
    	uint32_t mtime;
    	uint32_t utime;
    	uint16_t mnt_count;
    	uint16_t max_mnt_count;
    	uint16_t magic;
    	uint16_t fs_state;
    	uint16_t error_handling;
    	uint16_t minor_revision_level;
    	uint32_t lastcheck;
    	uint32_t checkinterval;
    	uint32_t creator_os;
    	uint32_t revision_level;
    	uint16_t uid_reserved;
    	uint16_t gid_reserved;
    	uint32_t first_inode;
    	uint16_t inode_size;
    	uint16_t block_group_number;
    	uint32_t feature_compatibility;
    	uint32_t feature_incompat;
    	uint32_t feature_ro_compat;
    	uint32_t unique_id[4];
    	char volume_name[16];
    	char last_mounted_on[64];
    	uint32_t compression_info;
    };
    
    /* The ext2 blockgroup.  */
    struct ext2_block_group
    {
    	uint32_t block_id;
    	uint32_t inode_id;
    	uint32_t inode_table_id;
    	uint16_t free_blocks;
    	uint16_t free_inodes;
    	uint16_t pad;
    	uint32_t reserved[3];
    };
    
    /* The ext2 inode.  */
    struct ext2_inode
    {
    	uint16_t mode;
    	uint16_t uid;
    	uint32_t size;
    	uint32_t atime;
    	uint32_t ctime;
    	uint32_t mtime;
    	uint32_t dtime;
    	uint16_t gid;
    	uint16_t nlinks;
    	uint32_t blockcnt;  /* Blocks of 512 bytes!! */
    	uint32_t flags;
    	uint32_t osd1;
    	union
            {
    		struct datablocks
    		{
    			uint32_t dir_blocks[INDIRECT_BLOCKS];
    			uint32_t indir_block;
    			uint32_t double_indir_block;
    			uint32_t tripple_indir_block;
    		} blocks;
    		char symlink[60];
            } b;
    	uint32_t version;
    	uint32_t acl;
    	uint32_t dir_acl;
    	uint32_t fragment_addr;
    	uint32_t osd2[3];
    };
    
    /* The header of an ext2 directory entry.  */
    struct ext2_dirent
    {
    	uint32_t inode;
    	uint16_t direntlen;
    	uint8_t  namelen;
    	uint8_t  filetype;
    };
    
    struct ext2fs_node
    {
    	struct ext2_data *data;
    	struct ext2_inode inode;
    	int               ino;
    	int               inode_read;
    };
    
    /* Information about a "mounted" ext2 filesystem.  */
    struct ext2_data
    {
    	struct ext2_sblock sblock;
    	struct ext2_inode *inode;
    	struct ext2fs_node diropen;
    };
    
    
    typedef struct ext2fs_node *ext2fs_node_t;
    
    struct ext2_data *ext2fs_root  = NULL;
    ext2fs_node_t     ext2fs_file  = NULL;
    int               symlinknest  = 0;
    uint32_t         *indir1_block = NULL;
    int               indir1_size  = 0;
    int               indir1_blkno = -1;
    uint32_t         *indir2_block = NULL;
    int               indir2_size  = 0;
    int               indir2_blkno = -1;
    
    
    static int ext2fs_blockgroup
    (
    	struct ext2_data         *data,
    	int                      group,
    	struct ext2_block_group *blkgrp
    	)
    {
    #ifdef DEBUG
    	printf("ext2fs read blockgroup\n");
    #endif
    	return(ext2fs_devread (((__le32_to_cpu (data->sblock.first_data_block) + 1) << LOG2_EXT2_BLOCK_SIZE (data)),
    			       group * sizeof (struct ext2_block_group),
    			       sizeof (struct ext2_block_group),
    			       (char *) blkgrp));
    }
    
    
    static int ext2fs_read_inode
    (
    	struct ext2_data        *data,
    	int                      ino,
    	struct ext2_inode       *inode
    	)
    {
    	struct ext2_block_group  blkgrp;
    	struct ext2_sblock      *sblock = &data->sblock;
    	int                      inodes_per_block;
    	int                      status;
    
    	unsigned int             blkno;
    	unsigned int             blkoff;
    
    	/* It is easier to calculate if the first inode is 0.  */
    	ino--;
    #ifdef DEBUG
    	printf("ext2fs read inode %d\n", ino);
    #endif
    	status = ext2fs_blockgroup (data, ino / __le32_to_cpu(sblock->inodes_per_group), &blkgrp);
    	if (status == 0)
            {
    		return(0);
    	}
    	inodes_per_block = EXT2_BLOCK_SIZE (data) / 128;
    	blkno =  (ino % __le32_to_cpu (sblock->inodes_per_group)) / inodes_per_block;
    	blkoff = (ino % __le32_to_cpu (sblock->inodes_per_group)) % inodes_per_block;
    #ifdef DEBUG
    	printf("ext2fs read inode blkno %d blkoff %d\n", blkno, blkoff);
    #endif
    	/* Read the inode.  */
    	status = ext2fs_devread(((__le32_to_cpu (blkgrp.inode_table_id) + blkno) << LOG2_EXT2_BLOCK_SIZE (data)),
    				sizeof (struct ext2_inode) * blkoff,
    				sizeof (struct ext2_inode),
    				(char *) inode);
    	if (status == 0)
            {
    		return(0);
    	}
    	return(1);
    }
    
    
    void ext2fs_free_node
    (
    	ext2fs_node_t node,
    	ext2fs_node_t currroot
    	)
    {
    	if ((node != &ext2fs_root->diropen) && (node != currroot))
            {
    		free (node);
    	}
    }
    
    
    static int ext2fs_read_block
    (
    	ext2fs_node_t node,
    	int           fileblock
    	)
    {
    	struct ext2_data  *data       = node->data;
    	struct ext2_inode *inode      = &node->inode;
    	int                blknr;
    	int                blksz      = EXT2_BLOCK_SIZE (data);
    	int                log2_blksz = LOG2_EXT2_BLOCK_SIZE (data);
    	int                status;
    
    	/* Direct blocks.  */
    	if (fileblock < INDIRECT_BLOCKS)
            {
    		blknr = __le32_to_cpu (inode->b.blocks.dir_blocks[fileblock]);
            }
    	/* Indirect.  */
    	else if (fileblock < (INDIRECT_BLOCKS + (blksz/4)))
            {
    		if (indir1_block == NULL)
    		{
    			indir1_block = (uint32_t *) malloc(blksz);
    			if (indir1_block == NULL)
    			{
    				printf("** ext2fs read block (indir 1) malloc failed. **\n");
    				return(-1);
    			}
    			indir1_size  = blksz;
    			indir1_blkno = -1;
    		}
    		if (blksz != indir1_size)
    		{
    			free(indir1_block);
    			indir1_block = NULL;
    			indir1_size  = 0;
    			indir1_blkno = -1;
    			indir1_block = (uint32_t *) malloc(blksz);
    			if (indir1_block == NULL)
    			{
    				printf("** ext2fs read block (indir 1) malloc failed. **\n");
    				return(-1);
    			}
    			indir1_size  = blksz;
    		}
    		if ((__le32_to_cpu(inode->b.blocks.indir_block) << log2_blksz) != indir1_blkno)
    		{
    			status = ext2fs_devread (__le32_to_cpu(inode->b.blocks.indir_block) << log2_blksz, 0, blksz, (char *) indir1_block);
    			if (status == 0)
    			{
    				printf("** ext2fs read block (indir 1) failed. **\n");
    				return(0);
    			}
    			indir1_blkno = __le32_to_cpu(inode->b.blocks.indir_block) << log2_blksz;
    		}
    		blknr = __le32_to_cpu(indir1_block[fileblock - INDIRECT_BLOCKS]);
    	}
    	/* Double indirect.  */
    	else if (fileblock < (INDIRECT_BLOCKS + (blksz / 4 * (blksz  / 4 + 1))))
            {
    		unsigned int perblock = blksz / 4;
    		unsigned int rblock = fileblock - (INDIRECT_BLOCKS
    						   + blksz / 4);
    
    		if (indir1_block == NULL)
    		{
    			indir1_block = (uint32_t *) malloc(blksz);
    			if (indir1_block == NULL)
    			{
    				printf("** ext2fs read block (indir 2 1) malloc failed. **\n");
    				return(-1);
    			}
    			indir1_size  = blksz;
    			indir1_blkno = -1;
    		}
    		if (blksz != indir1_size)
    		{
    			free(indir1_block);
    			indir1_block = NULL;
    			indir1_size  = 0;
    			indir1_blkno = -1;
    			indir1_block = (uint32_t *) malloc(blksz);
    			if (indir1_block == NULL)
    			{
    				printf("** ext2fs read block (indir 2 1) malloc failed. **\n");
    				return(-1);
    			}
    			indir1_size  = blksz;
    		}
    		if ((__le32_to_cpu(inode->b.blocks.double_indir_block) << log2_blksz) != indir1_blkno)
    		{
    			status = ext2fs_devread (__le32_to_cpu(inode->b.blocks.double_indir_block) << log2_blksz, 0, blksz, (char *) indir1_block);
    			if (status == 0)
    			{
    				printf("** ext2fs read block (indir 2 1) failed. **\n");
    				return(-1);
    			}
    			indir1_blkno = __le32_to_cpu(inode->b.blocks.double_indir_block) << log2_blksz;
    		}
    
    		if (indir2_block == NULL)
    		{
    			indir2_block = (uint32_t *) malloc(blksz);
    			if (indir2_block == NULL)
    			{
    				printf("** ext2fs read block (indir 2 2) malloc failed. **\n");
    				return(-1);
    			}
    			indir2_size  = blksz;
    			indir2_blkno = -1;
    		}
    		if (blksz != indir2_size)
    		{
    			free(indir2_block);
    			indir2_block = NULL;
    			indir2_size  = 0;
    			indir2_blkno = -1;
    			indir2_block = (uint32_t *) malloc(blksz);
    			if (indir2_block == NULL)
    			{
    				printf("** ext2fs read block (indir 2 2) malloc failed. **\n");
    				return(-1);
    			}
    			indir2_size  = blksz;
    		}
    		if ((__le32_to_cpu(indir1_block[rblock / perblock]) << log2_blksz) != indir1_blkno)
    		{
    			status = ext2fs_devread(__le32_to_cpu(indir1_block[rblock / perblock]) << log2_blksz, 0, blksz, (char *) indir2_block);
    			if (status == 0)
    			{
    				printf("** ext2fs read block (indir 2 2) failed. **\n");
    				return(-1);
    			}
    			indir2_blkno = __le32_to_cpu(indir1_block[rblock / perblock]) << log2_blksz;
    		}
    		blknr = __le32_to_cpu(indir2_block[rblock % perblock]);
    	}
    	/* Tripple indirect.  */
    	else
            {
    		printf("** ext2fs doesn't support tripple indirect blocks. **\n");
    		return(-1);
            }
    #ifdef DEBUG
    	printf("ext2fs_read_block %08x\n", blknr);
    #endif
    	return(blknr);
    }
    
    
    int ext2fs_read_file
    (
    	ext2fs_node_t node,
    	int           pos,
    	unsigned int  len,
    	char         *buf
    	)
    {
    	int          i;
    	int          blockcnt;
    	int          log2blocksize = LOG2_EXT2_BLOCK_SIZE (node->data);
    	int          blocksize     = 1 << (log2blocksize + DISK_SECTOR_BITS);
    	unsigned int filesize      = node->inode.size;
    
    	/* Adjust len so it we can't read past the end of the file.  */
    	if (len > filesize)
            {
    		len = filesize;
    	}
    	blockcnt = ((len + pos)  + blocksize - 1) / blocksize;
    
    	for (i = pos / blocksize; i < blockcnt; i++)
            {
    		int blknr;
    		int blockoff = pos % blocksize;
    		int blockend = blocksize;
    
    		int skipfirst = 0;
    
    		blknr = ext2fs_read_block(node, i);
    		if (blknr < 0)
    		{
    			return(-1);
    		}
    		blknr = blknr << log2blocksize;
    
    		/* Last block.  */
    		if (i == blockcnt - 1)
    		{
    			blockend = (len + pos) % blocksize;
    
    			/* The last portion is exactly blocksize.  */
    			if (!blockend)
    			{
    				blockend = blocksize;
    			}
    		}
    
    		/* First block.  */
    		if (i == pos / blocksize)
    		{
    			skipfirst = blockoff;
    			blockend -= skipfirst;
    		}
    
    		/* If the block number is 0 this block is not stored on disk but
    		   is zero filled instead.  */
    		if (blknr)
    		{
    			int status;
    
    			status = ext2fs_devread (blknr, skipfirst, blockend, buf);
    			if (status == 0)
    			{
    				return(-1);
    			}
    		}
    		else
    		{
    			memset (buf, blocksize - skipfirst, 0);
    		}
    		buf += blocksize - skipfirst;
            }
    	return(len);
    }
    
    
    static int ext2fs_iterate_dir
    (
    	ext2fs_node_t  dir,
    	char          *name,
    	ext2fs_node_t *fnode,
    	int           *ftype
    	)
    {
    	unsigned int fpos = 0;
    	int          status;
    	struct ext2fs_node *diro = (struct ext2fs_node *) dir;
    #ifdef DEBUG
    	if (name != NULL) printf("Iterate dir %s\n", name);
    #endif /* of DEBUG */
    	if (!diro->inode_read)
            {
    		status = ext2fs_read_inode (diro->data, diro->ino, &diro->inode);
    		if (status == 0)
    		{
    			return(0);
    		}
    	}
    	/* Search the file.  */
    	while (fpos < __le32_to_cpu (diro->inode.size))
            {
    		struct ext2_dirent dirent;
    
    		status = ext2fs_read_file (diro, fpos, sizeof (struct ext2_dirent), (char *) &dirent);
    		if (status < 1)
    		{
    			return(0);
    		}
    		if (dirent.namelen != 0)
    		{
    			char               filename[dirent.namelen + 1];
    			ext2fs_node_t      fdiro;
    			int                type = FILETYPE_UNKNOWN;
    
    			status = ext2fs_read_file (diro, fpos + sizeof (struct ext2_dirent), dirent.namelen, filename);
    			if (status < 1)
    			{
    				return(0);
    			}
    			fdiro = malloc (sizeof (struct ext2fs_node));
    			if (!fdiro)
    			{
    				return(0);
    			}
    
    			fdiro->data = diro->data;
    			fdiro->ino  =  __le32_to_cpu(dirent.inode);
    
    			filename[dirent.namelen] = '\0';
    
    			if (dirent.filetype != FILETYPE_UNKNOWN)
    			{
    				fdiro->inode_read = 0;
    
    				if (dirent.filetype == FILETYPE_DIRECTORY)
    				{
    					type = FILETYPE_DIRECTORY;
    				}
    				else if (dirent.filetype == FILETYPE_SYMLINK)
    				{
    					type = FILETYPE_SYMLINK;
    				}
    				else if (dirent.filetype == FILETYPE_REG)
    				{
    					type =  FILETYPE_REG;
    				}
    			}
    			else
    			{
    				/* The filetype can not be read from the dirent, get it from inode */
    
    				status = ext2fs_read_inode (diro->data, __le32_to_cpu (dirent.inode), &fdiro->inode);
    				if (status == 0)
    				{
    					free(fdiro);
    					return(0);
    				}
    				fdiro->inode_read = 1;
    
    				if ((__le16_to_cpu (fdiro->inode.mode) & FILETYPE_INO_MASK) == FILETYPE_INO_DIRECTORY)
    				{
    					type = FILETYPE_DIRECTORY;
    				}
    				else if ((__le16_to_cpu (fdiro->inode.mode) & FILETYPE_INO_MASK) == FILETYPE_INO_SYMLINK)
    				{
    					type = FILETYPE_SYMLINK;
    				}
    				else if ((__le16_to_cpu (fdiro->inode.mode) & FILETYPE_INO_MASK) == FILETYPE_INO_REG)
    				{
    					type = FILETYPE_REG;
    				}
    			}
    #ifdef DEBUG
    			printf("iterate >%s<\n", filename);
    #endif /* of DEBUG */
    			if ((name != NULL) && (fnode != NULL) && (ftype != NULL))
    			{
    				if(strcmp(filename, name) == 0)
    				{
    					*ftype = type;
    					*fnode = fdiro;
    					return(1);
    				}
    			}
    			else
    			{
    				if (fdiro->inode_read == 0)
    				{
    					status = ext2fs_read_inode (diro->data, __le32_to_cpu (dirent.inode), &fdiro->inode);
    					if (status == 0)
    					{
    						free(fdiro);
    						return(0);
    					}
    					fdiro->inode_read = 1;
    				}
    				switch(type)
    				{
    				case FILETYPE_DIRECTORY:
    					printf("<DIR> ");
    					break;
    				case FILETYPE_SYMLINK:
    					printf("<SYM> ");
    					break;
    				case FILETYPE_REG:
    					printf("      ");
    					break;
    				default:
    					printf("<???> ");
    					break;
    				}
    				printf("%10d %s\n", __le32_to_cpu(fdiro->inode.size), filename);
    			}
    			free(fdiro);
    		}
    		fpos += __le16_to_cpu (dirent.direntlen);
    	}
    	return(0);
    }
    
    
    static char *ext2fs_read_symlink
    (
    	ext2fs_node_t node
    	)
    {
    	char               *symlink;
    	struct ext2fs_node *diro = node;
    	int                 status;
    
    	if (!diro->inode_read)
            {
    		status = ext2fs_read_inode (diro->data, diro->ino, &diro->inode);
    		if (status == 0)
    		{
    			return(0);
    		}
    	}
    	symlink = malloc (__le32_to_cpu (diro->inode.size) + 1);
    	if (!symlink)
            {
    		return(0);
    	}
    	/* If the filesize of the symlink is bigger than
    	   60 the symlink is stored in a separate block,
    	   otherwise it is stored in the inode.  */
    	if (__le32_to_cpu (diro->inode.size) <= 60)
            {
    		strncpy (symlink, diro->inode.b.symlink, __le32_to_cpu (diro->inode.size));
    	}
    	else
            {
    		status = ext2fs_read_file (diro, 0, __le32_to_cpu (diro->inode.size), symlink);
    		if (status == 0)
    		{
    			free (symlink);
    			return(0);
    		}
    	}
    	symlink[__le32_to_cpu (diro->inode.size)] = '\0';
    	return(symlink);
    }
    
    
    int ext2fs_find_file1
    (
    	const char    *currpath,
    	ext2fs_node_t  currroot,
    	ext2fs_node_t *currfound,
    	int           *foundtype
    	)
    {
    	char           fpath[strlen (currpath) + 1];
    	char          *name = fpath;
    	char          *next;
    	int            status;
    	int            type     = FILETYPE_DIRECTORY;
    	ext2fs_node_t  currnode = currroot;
    	ext2fs_node_t  oldnode  = currroot;
    
    	strncpy (fpath, currpath, strlen (currpath) + 1);
    
    	/* Remove all leading slashes.  */
    	while (*name == '/')
            {
    		name++;
            }
    	if (!*name)
    	{
    		*currfound = currnode;
    		return(1);
    	}
    
    	for (;;)
    	{
    		int found;
    
    		/* Extract the actual part from the pathname.  */
    		next = strchr (name, '/');
    		if (next)
    		{
    			/* Remove all leading slashes.  */
    			while (*next == '/')
    			{
    				*(next++) = '\0';
    			}
    		}
    
    		/* At this point it is expected that the current node is a directory, check if this is true.  */
    		if (type != FILETYPE_DIRECTORY)
    		{
    			ext2fs_free_node (currnode, currroot);
    			return(0);
    		}
    
    		oldnode = currnode;
    
    		/* Iterate over the directory.  */
    		found = ext2fs_iterate_dir (currnode, name, &currnode, &type);
    		if (found == 0)
    		{
    			return(0);
    		}
    		if (found == -1)
    		{
    			break;
    		}
    
    		/* Read in the symlink and follow it.  */
    		if (type == FILETYPE_SYMLINK)
    		{
    			char *symlink;
    
    			/* Test if the symlink does not loop.  */
    			if (++symlinknest == 8)
    			{
    				ext2fs_free_node (currnode, currroot);
    				ext2fs_free_node (oldnode,  currroot);
    				return(0);
    			}
    
    			symlink = ext2fs_read_symlink (currnode);
    			ext2fs_free_node (currnode, currroot);
    
    			if (!symlink)
    			{
    				ext2fs_free_node (oldnode, currroot);
    				return(0);
    			}
    #ifdef DEBUG
    			printf("Got symlink >%s<\n",symlink);
    #endif /* of DEBUG */
    			/* The symlink is an absolute path, go back to the root inode.  */
    			if (symlink[0] == '/')
    			{
    				ext2fs_free_node (oldnode, currroot);
    				oldnode = &ext2fs_root->diropen;
    			}
    
    			/* Lookup the node the symlink points to.  */
    			status = ext2fs_find_file1 (symlink, oldnode, &currnode, &type);
    
    			free (symlink);
    
    			if (status == 0)
    			{
    				ext2fs_free_node (oldnode, currroot);
    				return(0);
    			}
    		}
    
    		ext2fs_free_node (oldnode, currroot);
    
    		/* Found the node!  */
    		if (!next || *next == '\0')
    		{
    			*currfound = currnode;
    			*foundtype = type;
    			return(1);
    		}
    		name = next;
    	}
    	return(-1);
    }
    
    
    int ext2fs_find_file
    (
    	const char    *path,
    	ext2fs_node_t  rootnode,
    	ext2fs_node_t *foundnode,
    	int            expecttype
    	)
    {
    	int status;
    	int foundtype = FILETYPE_DIRECTORY;
    
    
    	symlinknest = 0;
    	if (!path || path[0] != '/')
            {
    		return(0);
    	}
    
    	status = ext2fs_find_file1(path, rootnode, foundnode, &foundtype);
    	if (status == 0)
            {
    		return(0);
    	}
    	/* Check if the node that was found was of the expected type.  */
    	if ((expecttype == FILETYPE_REG) && (foundtype != expecttype))
            {
    		return(0);
    	}
    	else if ((expecttype == FILETYPE_DIRECTORY) && (foundtype != expecttype))
            {
    		return(0);
    	}
    	return(1);
    }
    
    
    int ext2fs_ls
    (
    	char *dirname
    	)
    {
    	ext2fs_node_t dirnode;
    	int           status;
    
    	if (ext2fs_root == NULL)
            {
    		return(0);
    	}
    
    	status = ext2fs_find_file(dirname, &ext2fs_root->diropen, &dirnode, FILETYPE_DIRECTORY);
    	if (status != 1)
            {
    		printf("** Can not find directory. **\n");
    		return(1);
            }
    	ext2fs_iterate_dir(dirnode, NULL, NULL, NULL);
    	ext2fs_free_node(dirnode, &ext2fs_root->diropen);
    	return(0);
    }
    
    
    int ext2fs_open
    (
    	char *filename
    	)
    {
    	ext2fs_node_t  fdiro = NULL;
    	int            status;
    	int            len;
    
    	if (ext2fs_root == NULL)
            {
    		return(0);
    	}
    	ext2fs_file = NULL;
    	status      = ext2fs_find_file (filename, &ext2fs_root->diropen, &fdiro, FILETYPE_REG);
    	if (status == 0)
            {
    		goto fail;
    	}
    	if (!fdiro->inode_read)
            {
    		status = ext2fs_read_inode (fdiro->data, fdiro->ino, &fdiro->inode);
    		if (status == 0)
    		{
    			goto fail;
    		}
    	}
    	len = __le32_to_cpu (fdiro->inode.size);
    	ext2fs_file = fdiro;
    	return(len);
    
     fail:
    	ext2fs_free_node(fdiro, &ext2fs_root->diropen);
    	return(0);
    }
    
    
    int ext2fs_close
    (
    	void
    	)
    {
    	if ((ext2fs_file != NULL) && (ext2fs_root != NULL))
            {
    		ext2fs_free_node(ext2fs_file, &ext2fs_root->diropen);
    		ext2fs_file = NULL;
    	}
    	if (ext2fs_root != NULL)
    	{
    		free(ext2fs_root);
    		ext2fs_root  = NULL;
    	}
    	if (indir1_block != NULL)
            {
    		free(indir1_block);
    		indir1_block =  NULL;
    		indir1_size  =  0;
    		indir1_blkno =  -1;
    	}
    	if (indir2_block != NULL)
            {
    		free(indir2_block);
    		indir2_block =  NULL;
    		indir2_size  =  0;
    		indir2_blkno =  -1;
    	}
    	return(0);
    }
    
    
    int ext2fs_read
    (
    	char     *buf,
    	unsigned  len
    	)
    {
    	int status;
    
    	if (ext2fs_root == NULL)
            {
    		return(0);
    	}
    
    	if (ext2fs_file == NULL)
            {
    		return(0);
    	}
    
    	status = ext2fs_read_file(ext2fs_file, 0, len, buf);
    	return(status);
    }
    
    
    int ext2fs_mount
    (
    	unsigned part_length
    	)
    {
    	struct ext2_data *data;
    	int               status;
    
    	data = malloc (sizeof (struct ext2_data));
    	if (!data)
            {
    		return(0);
    	}
    	/* Read the superblock.  */
    	status = ext2fs_devread (1 * 2, 0, sizeof (struct ext2_sblock), (char *) &data->sblock);
    	if (status == 0)
            {
    		goto fail;
    	}
    	/* Make sure this is an ext2 filesystem.  */
    	if (__le16_to_cpu (data->sblock.magic) != EXT2_MAGIC)
            {
    		goto fail;
    	}
    	data->diropen.data       =  data;
    	data->diropen.ino        =  2;
    	data->diropen.inode_read =  1;
    	data->inode              = &data->diropen.inode;
    
    	status = ext2fs_read_inode (data, 2, data->inode);
    	if (status == 0)
            {
    		goto fail;
    	}
    
    	ext2fs_root = data;
    
    	return(1);
    
     fail:
    	printf("Failed to mount ext2 filesystem...\n");
    	free(data);
    	ext2fs_root = NULL;