]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - fs/ext2/ext2fs.c
Merge branch 'staging'
[karo-tx-uboot.git] / fs / ext2 / ext2fs.c
1 /*
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>
27 #include <ext2fs.h>
28 #include <malloc.h>
29 #include <asm/byteorder.h>
30
31 extern int ext2fs_devread (int sector, int byte_offset, int byte_len,
32                            char *buf);
33
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.  */
68 struct ext2_sblock {
69         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.  */
107 struct ext2_block_group {
108         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;
113         uint16_t used_dir_cnt;
114         uint32_t reserved[3];
115 };
116
117 /* The ext2 inode.  */
118 struct ext2_inode {
119         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;
128         uint32_t blockcnt;      /* Blocks of 512 bytes!! */
129         uint32_t flags;
130         uint32_t osd1;
131         union {
132                 struct datablocks {
133                         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];
139         } b;
140         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.  */
148 struct ext2_dirent {
149         uint32_t inode;
150         uint16_t direntlen;
151         uint8_t namelen;
152         uint8_t filetype;
153 };
154
155 struct ext2fs_node {
156         struct ext2_data *data;
157         struct ext2_inode inode;
158         int ino;
159         int inode_read;
160 };
161
162 /* Information about a "mounted" ext2 filesystem.  */
163 struct ext2_data {
164         struct ext2_sblock sblock;
165         struct ext2_inode *inode;
166         struct ext2fs_node diropen;
167 };
168
169
170 typedef struct ext2fs_node *ext2fs_node_t;
171
172 struct ext2_data *ext2fs_root = NULL;
173 ext2fs_node_t ext2fs_file = NULL;
174 int symlinknest = 0;
175 uint32_t *indir1_block = NULL;
176 int indir1_size = 0;
177 int indir1_blkno = -1;
178 uint32_t *indir2_block = NULL;
179 int indir2_size = 0;
180 int indir2_blkno = -1;
181 static unsigned int inode_size;
182
183
184 static int ext2fs_blockgroup
185         (struct ext2_data *data, int group, struct ext2_block_group *blkgrp) {
186         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);
195 #ifdef DEBUG
196         printf ("ext2fs read %d group descriptor (blkno %d blkoff %d)\n",
197                 group, blkno, blkoff);
198 #endif
199         return (ext2fs_devread (blkno << LOG2_EXT2_BLOCK_SIZE(data),
200                 blkoff, sizeof(struct ext2_block_group), (char *)blkgrp));
201
202 }
203
204
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;
210         int status;
211
212         unsigned int blkno;
213         unsigned int blkoff;
214
215 #ifdef DEBUG
216         printf ("ext2fs read inode %d, inode_size %d\n", ino, inode_size);
217 #endif
218         /* 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);
222         if (status == 0) {
223                 return (0);
224         }
225
226         inodes_per_block = EXT2_BLOCK_SIZE(data) / inode_size;
227
228         blkno = __le32_to_cpu (blkgrp.inode_table_id) +
229                 (ino % __le32_to_cpu (sblock->inodes_per_group))
230                 / inodes_per_block;
231         blkoff = (ino % inodes_per_block) * inode_size;
232 #ifdef DEBUG
233         printf ("ext2fs read inode blkno %d blkoff %d\n", blkno, blkoff);
234 #endif
235         /* Read the inode.  */
236         status = ext2fs_devread (blkno << LOG2_EXT2_BLOCK_SIZE (data), blkoff,
237                                  sizeof (struct ext2_inode), (char *) inode);
238         if (status == 0) {
239                 return (0);
240         }
241
242         return (1);
243 }
244
245
246 void ext2fs_free_node (ext2fs_node_t node, ext2fs_node_t currroot) {
247         if ((node != &ext2fs_root->diropen) && (node != currroot)) {
248                 free (node);
249         }
250 }
251
252
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;
256         int blknr;
257         int blksz = EXT2_BLOCK_SIZE (data);
258         int log2_blksz = LOG2_EXT2_BLOCK_SIZE (data);
259         int status;
260
261         /* Direct blocks.  */
262         if (fileblock < INDIRECT_BLOCKS) {
263                 blknr = __le32_to_cpu (inode->b.blocks.dir_blocks[fileblock]);
264         }
265         /* Indirect.  */
266         else if (fileblock < (INDIRECT_BLOCKS + (blksz / 4))) {
267                 if (indir1_block == NULL) {
268                         indir1_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
269                                                              blksz);
270                         if (indir1_block == NULL) {
271                                 printf ("** ext2fs read block (indir 1) malloc failed. **\n");
272                                 return (-1);
273                         }
274                         indir1_size = blksz;
275                         indir1_blkno = -1;
276                 }
277                 if (blksz != indir1_size) {
278                         free (indir1_block);
279                         indir1_block = NULL;
280                         indir1_size = 0;
281                         indir1_blkno = -1;
282                         indir1_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
283                                                              blksz);
284                         if (indir1_block == NULL) {
285                                 printf ("** ext2fs read block (indir 1) malloc failed. **\n");
286                                 return (-1);
287                         }
288                         indir1_size = blksz;
289                 }
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,
293                                                  0, blksz,
294                                                  (char *) indir1_block);
295                         if (status == 0) {
296                                 printf ("** ext2fs read block (indir 1) failed. **\n");
297                                 return (0);
298                         }
299                         indir1_blkno =
300                                 __le32_to_cpu (inode->b.blocks.
301                                                indir_block) << log2_blksz;
302                 }
303                 blknr = __le32_to_cpu (indir1_block
304                                        [fileblock - INDIRECT_BLOCKS]);
305         }
306         /* Double indirect.  */
307         else if (fileblock <
308                  (INDIRECT_BLOCKS + (blksz / 4 * (blksz / 4 + 1)))) {
309                 unsigned int perblock = blksz / 4;
310                 unsigned int rblock = fileblock - (INDIRECT_BLOCKS
311                                                    + blksz / 4);
312
313                 if (indir1_block == NULL) {
314                         indir1_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
315                                                              blksz);
316                         if (indir1_block == NULL) {
317                                 printf ("** ext2fs read block (indir 2 1) malloc failed. **\n");
318                                 return (-1);
319                         }
320                         indir1_size = blksz;
321                         indir1_blkno = -1;
322                 }
323                 if (blksz != indir1_size) {
324                         free (indir1_block);
325                         indir1_block = NULL;
326                         indir1_size = 0;
327                         indir1_blkno = -1;
328                         indir1_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
329                                                              blksz);
330                         if (indir1_block == NULL) {
331                                 printf ("** ext2fs read block (indir 2 1) malloc failed. **\n");
332                                 return (-1);
333                         }
334                         indir1_size = blksz;
335                 }
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,
339                                                 0, blksz,
340                                                 (char *) indir1_block);
341                         if (status == 0) {
342                                 printf ("** ext2fs read block (indir 2 1) failed. **\n");
343                                 return (-1);
344                         }
345                         indir1_blkno =
346                                 __le32_to_cpu (inode->b.blocks.double_indir_block) << log2_blksz;
347                 }
348
349                 if (indir2_block == NULL) {
350                         indir2_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
351                                                              blksz);
352                         if (indir2_block == NULL) {
353                                 printf ("** ext2fs read block (indir 2 2) malloc failed. **\n");
354                                 return (-1);
355                         }
356                         indir2_size = blksz;
357                         indir2_blkno = -1;
358                 }
359                 if (blksz != indir2_size) {
360                         free (indir2_block);
361                         indir2_block = NULL;
362                         indir2_size = 0;
363                         indir2_blkno = -1;
364                         indir2_block = (uint32_t *) memalign(ARCH_DMA_MINALIGN,
365                                                              blksz);
366                         if (indir2_block == NULL) {
367                                 printf ("** ext2fs read block (indir 2 2) malloc failed. **\n");
368                                 return (-1);
369                         }
370                         indir2_size = blksz;
371                 }
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,
375                                                  0, blksz,
376                                                  (char *) indir2_block);
377                         if (status == 0) {
378                                 printf ("** ext2fs read block (indir 2 2) failed. **\n");
379                                 return (-1);
380                         }
381                         indir2_blkno =
382                                 __le32_to_cpu (indir1_block[rblock / perblock]) << log2_blksz;
383                 }
384                 blknr = __le32_to_cpu (indir2_block[rblock % perblock]);
385         }
386         /* Tripple indirect.  */
387         else {
388                 printf ("** ext2fs doesn't support tripple indirect blocks. **\n");
389                 return (-1);
390         }
391 #ifdef DEBUG
392         printf ("ext2fs_read_block %08x\n", blknr);
393 #endif
394         return (blknr);
395 }
396
397
398 int ext2fs_read_file
399         (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);
404         unsigned int filesize = __le32_to_cpu(node->inode.size);
405
406         /* Adjust len so it we can't read past the end of the file.  */
407         if (len > filesize) {
408                 len = filesize;
409         }
410         blockcnt = ((len + pos) + blocksize - 1) / blocksize;
411
412         for (i = pos / blocksize; i < blockcnt; i++) {
413                 int blknr;
414                 int blockoff = pos % blocksize;
415                 int blockend = blocksize;
416
417                 int skipfirst = 0;
418
419                 blknr = ext2fs_read_block (node, i);
420                 if (blknr < 0) {
421                         return (-1);
422                 }
423                 blknr = blknr << log2blocksize;
424
425                 /* Last block.  */
426                 if (i == blockcnt - 1) {
427                         blockend = (len + pos) % blocksize;
428
429                         /* The last portion is exactly blocksize.  */
430                         if (!blockend) {
431                                 blockend = blocksize;
432                         }
433                 }
434
435                 /* First block.  */
436                 if (i == pos / blocksize) {
437                         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.  */
443                 if (blknr) {
444                         int status;
445
446                         status = ext2fs_devread (blknr, skipfirst, blockend, buf);
447                         if (status == 0) {
448                                 return (-1);
449                         }
450                 } else {
451                         memset (buf, 0, blocksize - skipfirst);
452                 }
453                 buf += blocksize - skipfirst;
454         }
455         return (len);
456 }
457
458
459 static int ext2fs_iterate_dir (ext2fs_node_t dir, char *name, ext2fs_node_t * fnode, int *ftype)
460 {
461         unsigned int fpos = 0;
462         int status;
463         struct ext2fs_node *diro = (struct ext2fs_node *) dir;
464
465 #ifdef DEBUG
466         if (name != NULL)
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,
471                                             &diro->inode);
472                 if (status == 0) {
473                         return (0);
474                 }
475         }
476         /* Search the file.  */
477         while (fpos < __le32_to_cpu (diro->inode.size)) {
478                 struct ext2_dirent dirent;
479
480                 status = ext2fs_read_file (diro, fpos,
481                                            sizeof (struct ext2_dirent),
482                                            (char *) &dirent);
483                 if (status < 1) {
484                         return (0);
485                 }
486                 if (dirent.namelen != 0) {
487                         char filename[dirent.namelen + 1];
488                         ext2fs_node_t fdiro;
489                         int type = FILETYPE_UNKNOWN;
490
491                         status = ext2fs_read_file (diro,
492                                                    fpos + sizeof (struct ext2_dirent),
493                                                    dirent.namelen, filename);
494                         if (status < 1) {
495                                 return (0);
496                         }
497                         fdiro = malloc (sizeof (struct ext2fs_node));
498                         if (!fdiro) {
499                                 return (0);
500                         }
501
502                         fdiro->data = diro->data;
503                         fdiro->ino = __le32_to_cpu (dirent.inode);
504
505                         filename[dirent.namelen] = '\0';
506
507                         if (dirent.filetype != FILETYPE_UNKNOWN) {
508                                 fdiro->inode_read = 0;
509
510                                 if (dirent.filetype == FILETYPE_DIRECTORY) {
511                                         type = FILETYPE_DIRECTORY;
512                                 } else if (dirent.filetype ==
513                                            FILETYPE_SYMLINK) {
514                                         type = FILETYPE_SYMLINK;
515                                 } else if (dirent.filetype == FILETYPE_REG) {
516                                         type = FILETYPE_REG;
517                                 }
518                         } else {
519                                 /* The filetype can not be read from the dirent, get it from inode */
520
521                                 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);
527                                 }
528                                 fdiro->inode_read = 1;
529
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) ==
540                                            FILETYPE_INO_REG) {
541                                         type = FILETYPE_REG;
542                                 }
543                         }
544 #ifdef DEBUG
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) {
550                                         *ftype = type;
551                                         *fnode = fdiro;
552                                         return (1);
553                                 }
554                         } 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);
562                                         }
563                                         fdiro->inode_read = 1;
564                                 }
565                                 switch (type) {
566                                 case FILETYPE_DIRECTORY:
567                                         printf ("<DIR> ");
568                                         break;
569                                 case FILETYPE_SYMLINK:
570                                         printf ("<SYM> ");
571                                         break;
572                                 case FILETYPE_REG:
573                                         printf ("      ");
574                                         break;
575                                 default:
576                                         printf ("< ? > ");
577                                         break;
578                                 }
579                                 printf ("%10d %s\n",
580                                         __le32_to_cpu (fdiro->inode.size),
581                                         filename);
582                         }
583                         free (fdiro);
584                 }
585                 fpos += __le16_to_cpu (dirent.direntlen);
586         }
587         return (0);
588 }
589
590
591 static char *ext2fs_read_symlink (ext2fs_node_t node) {
592         char *symlink;
593         struct ext2fs_node *diro = node;
594         int status;
595
596         if (!diro->inode_read) {
597                 status = ext2fs_read_inode (diro->data, diro->ino,
598                                             &diro->inode);
599                 if (status == 0) {
600                         return (0);
601                 }
602         }
603         symlink = malloc (__le32_to_cpu (diro->inode.size) + 1);
604         if (!symlink) {
605                 return (0);
606         }
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));
613         } else {
614                 status = ext2fs_read_file (diro, 0,
615                                            __le32_to_cpu (diro->inode.size),
616                                            symlink);
617                 if (status == 0) {
618                         free (symlink);
619                         return (0);
620                 }
621         }
622         symlink[__le32_to_cpu (diro->inode.size)] = '\0';
623         return (symlink);
624 }
625
626
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];
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;
637
638         strncpy (fpath, currpath, strlen (currpath) + 1);
639
640         /* Remove all leading slashes.  */
641         while (*name == '/') {
642                 name++;
643         }
644         if (!*name) {
645                 *currfound = currnode;
646                 return (1);
647         }
648
649         for (;;) {
650                 int found;
651
652                 /* Extract the actual part from the pathname.  */
653                 next = strchr (name, '/');
654                 if (next) {
655                         /* Remove all leading slashes.  */
656                         while (*next == '/') {
657                                 *(next++) = '\0';
658                         }
659                 }
660
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);
664                         return (0);
665                 }
666
667                 oldnode = currnode;
668
669                 /* Iterate over the directory.  */
670                 found = ext2fs_iterate_dir (currnode, name, &currnode, &type);
671                 if (found == 0) {
672                         return (0);
673                 }
674                 if (found == -1) {
675                         break;
676                 }
677
678                 /* Read in the symlink and follow it.  */
679                 if (type == FILETYPE_SYMLINK) {
680                         char *symlink;
681
682                         /* Test if the symlink does not loop.  */
683                         if (++symlinknest == 8) {
684                                 ext2fs_free_node (currnode, currroot);
685                                 ext2fs_free_node (oldnode, currroot);
686                                 return (0);
687                         }
688
689                         symlink = ext2fs_read_symlink (currnode);
690                         ext2fs_free_node (currnode, currroot);
691
692                         if (!symlink) {
693                                 ext2fs_free_node (oldnode, currroot);
694                                 return (0);
695                         }
696 #ifdef DEBUG
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;
703                         }
704
705                         /* Lookup the node the symlink points to.  */
706                         status = ext2fs_find_file1 (symlink, oldnode,
707                                                     &currnode, &type);
708
709                         free (symlink);
710
711                         if (status == 0) {
712                                 ext2fs_free_node (oldnode, currroot);
713                                 return (0);
714                         }
715                 }
716
717                 ext2fs_free_node (oldnode, currroot);
718
719                 /* Found the node!  */
720                 if (!next || *next == '\0') {
721                         *currfound = currnode;
722                         *foundtype = type;
723                         return (1);
724                 }
725                 name = next;
726         }
727         return (-1);
728 }
729
730
731 int ext2fs_find_file
732         (const char *path,
733          ext2fs_node_t rootnode, ext2fs_node_t * foundnode, int expecttype) {
734         int status;
735         int foundtype = FILETYPE_DIRECTORY;
736
737
738         symlinknest = 0;
739         if (!path) {
740                 return (0);
741         }
742
743         status = ext2fs_find_file1 (path, rootnode, foundnode, &foundtype);
744         if (status == 0) {
745                 return (0);
746         }
747         /* Check if the node that was found was of the expected type.  */
748         if ((expecttype == FILETYPE_REG) && (foundtype != expecttype)) {
749                 return (0);
750         } else if ((expecttype == FILETYPE_DIRECTORY)
751                    && (foundtype != expecttype)) {
752                 return (0);
753         }
754         return (1);
755 }
756
757
758 int ext2fs_ls (const char *dirname) {
759         ext2fs_node_t dirnode;
760         int status;
761
762         if (ext2fs_root == NULL) {
763                 return (0);
764         }
765
766         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);
775 }
776
777
778 int ext2fs_open (const char *filename) {
779         ext2fs_node_t fdiro = NULL;
780         int status;
781         int len;
782
783         if (ext2fs_root == NULL) {
784                 return (-1);
785         }
786         ext2fs_file = NULL;
787         status = ext2fs_find_file (filename, &ext2fs_root->diropen, &fdiro,
788                                    FILETYPE_REG);
789         if (status == 0) {
790                 goto fail;
791         }
792         if (!fdiro->inode_read) {
793                 status = ext2fs_read_inode (fdiro->data, fdiro->ino,
794                                             &fdiro->inode);
795                 if (status == 0) {
796                         goto fail;
797                 }
798         }
799         len = __le32_to_cpu (fdiro->inode.size);
800         ext2fs_file = fdiro;
801         return (len);
802
803 fail:
804         ext2fs_free_node (fdiro, &ext2fs_root->diropen);
805         return (-1);
806 }
807
808
809 int ext2fs_close (void
810         ) {
811         if ((ext2fs_file != NULL) && (ext2fs_root != NULL)) {
812                 ext2fs_free_node (ext2fs_file, &ext2fs_root->diropen);
813                 ext2fs_file = NULL;
814         }
815         if (ext2fs_root != NULL) {
816                 free (ext2fs_root);
817                 ext2fs_root = NULL;
818         }
819         if (indir1_block != NULL) {
820                 free (indir1_block);
821                 indir1_block = NULL;
822                 indir1_size = 0;
823                 indir1_blkno = -1;
824         }
825         if (indir2_block != NULL) {
826                 free (indir2_block);
827                 indir2_block = NULL;
828                 indir2_size = 0;
829                 indir2_blkno = -1;
830         }
831         return (0);
832 }
833
834
835 int ext2fs_read (char *buf, unsigned len) {
836         int status;
837
838         if (ext2fs_root == NULL) {
839                 return (0);
840         }
841
842         if (ext2fs_file == NULL) {
843                 return (0);
844         }
845
846         status = ext2fs_read_file (ext2fs_file, 0, len, buf);
847         return (status);
848 }
849
850
851 int ext2fs_mount (unsigned part_length) {
852         struct ext2_data *data;
853         int status;
854
855         data = malloc (sizeof (struct ext2_data));
856         if (!data) {
857                 return (0);
858         }
859         /* Read the superblock.  */
860         status = ext2fs_devread (1 * 2, 0, sizeof (struct ext2_sblock),
861                                  (char *) &data->sblock);
862         if (status == 0) {
863                 goto fail;
864         }
865         /* Make sure this is an ext2 filesystem.  */
866         if (__le16_to_cpu (data->sblock.magic) != EXT2_MAGIC) {
867                 goto fail;
868         }
869         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
878         data->diropen.data = data;
879         data->diropen.ino = 2;
880         data->diropen.inode_read = 1;
881         data->inode = &data->diropen.inode;
882
883         status = ext2fs_read_inode (data, 2, data->inode);
884         if (status == 0) {
885                 goto fail;
886         }
887
888         ext2fs_root = data;
889
890         return (1);
891
892 fail:
893         printf ("Failed to mount ext2 filesystem...\n");
894         free (data);
895         ext2fs_root = NULL;
896         return (0);
897 }