ext2.c 28.7 KB
Newer Older
1 2
/* ext2.c - Second Extended filesystem */
/*
3
 *  GRUB  --  GRand Unified Bootloader
4
 *  Copyright (C) 2003,2004,2005,2007,2008,2009  Free Software Foundation, Inc.
5
 *
6
 *  GRUB is free software: you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation, either version 3 of the License, or
9 10
 *  (at your option) any later version.
 *
11
 *  GRUB is distributed in the hope that it will be useful,
12 13 14 15 16
 *  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
17
 *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
18 19 20 21 22 23 24
 */

/* Magic value used to identify an ext2 filesystem.  */
#define	EXT2_MAGIC		0xEF53
/* Amount of indirect blocks in an inode.  */
#define INDIRECT_BLOCKS		12

25 26 27 28
/* The good old revision and the default inode size.  */
#define EXT2_GOOD_OLD_REVISION		0
#define EXT2_GOOD_OLD_INODE_SIZE	128

29
/* Filetype used in directory entry.  */
30
#define	FILETYPE_UNKNOWN	0
31
#define	FILETYPE_REG		1
32 33 34
#define	FILETYPE_DIRECTORY	2
#define	FILETYPE_SYMLINK	7

35 36
/* Filetype information as used in inodes.  */
#define FILETYPE_INO_MASK	0170000
37
#define FILETYPE_INO_REG	0100000
38 39 40
#define FILETYPE_INO_DIRECTORY	0040000
#define FILETYPE_INO_SYMLINK	0120000

41 42 43 44 45 46 47
#include <grub/err.h>
#include <grub/file.h>
#include <grub/mm.h>
#include <grub/misc.h>
#include <grub/disk.h>
#include <grub/dl.h>
#include <grub/types.h>
48
#include <grub/fshelp.h>
49

50 51
GRUB_MOD_LICENSE ("GPLv3+");

52 53
/* Log2 size of ext2 block in 512 blocks.  */
#define LOG2_EXT2_BLOCK_SIZE(data)			\
54
	(grub_le_to_cpu32 (data->sblock.log2_block_size) + 1)
55

56 57
/* Log2 size of ext2 block in bytes.  */
#define LOG2_BLOCK_SIZE(data)					\
58
	(grub_le_to_cpu32 (data->sblock.log2_block_size) + 10)
59 60

/* The size of an ext2 block in bytes.  */
61
#define EXT2_BLOCK_SIZE(data)		(1U << LOG2_BLOCK_SIZE (data))
62 63 64 65 66 67

/* The revision level.  */
#define EXT2_REVISION(data)	grub_le_to_cpu32 (data->sblock.revision_level)

/* The inode size.  */
#define EXT2_INODE_SIZE(data)	\
68 69
  (data->sblock.revision_level \
   == grub_cpu_to_le32_compile_time (EXT2_GOOD_OLD_REVISION)	\
70 71
         ? EXT2_GOOD_OLD_INODE_SIZE \
         : grub_le_to_cpu16 (data->sblock.inode_size))
72

73 74
/* Superblock filesystem feature flags (RW compatible)
 * A filesystem with any of these enabled can be read and written by a driver
75
 * that does not understand them without causing metadata/data corruption.  */
76 77 78 79 80 81 82 83 84
#define EXT2_FEATURE_COMPAT_DIR_PREALLOC	0x0001
#define EXT2_FEATURE_COMPAT_IMAGIC_INODES	0x0002
#define EXT3_FEATURE_COMPAT_HAS_JOURNAL		0x0004
#define EXT2_FEATURE_COMPAT_EXT_ATTR		0x0008
#define EXT2_FEATURE_COMPAT_RESIZE_INODE	0x0010
#define EXT2_FEATURE_COMPAT_DIR_INDEX		0x0020
/* Superblock filesystem feature flags (RO compatible)
 * A filesystem with any of these enabled can be safely read by a driver that
 * does not understand them, but should not be written to, usually because
85
 * additional metadata is required.  */
86 87 88 89 90 91 92 93 94
#define EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER	0x0001
#define EXT2_FEATURE_RO_COMPAT_LARGE_FILE	0x0002
#define EXT2_FEATURE_RO_COMPAT_BTREE_DIR	0x0004
#define EXT4_FEATURE_RO_COMPAT_GDT_CSUM		0x0010
#define EXT4_FEATURE_RO_COMPAT_DIR_NLINK	0x0020
#define EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE	0x0040
/* Superblock filesystem feature flags (back-incompatible)
 * A filesystem with any of these enabled should not be attempted to be read
 * by a driver that does not understand them, since they usually indicate
95
 * metadata format changes that might confuse the reader.  */
96 97 98 99 100 101 102
#define EXT2_FEATURE_INCOMPAT_COMPRESSION	0x0001
#define EXT2_FEATURE_INCOMPAT_FILETYPE		0x0002
#define EXT3_FEATURE_INCOMPAT_RECOVER		0x0004 /* Needs recovery */
#define EXT3_FEATURE_INCOMPAT_JOURNAL_DEV	0x0008 /* Volume is journal device */
#define EXT2_FEATURE_INCOMPAT_META_BG		0x0010
#define EXT4_FEATURE_INCOMPAT_EXTENTS		0x0040 /* Extents used */
#define EXT4_FEATURE_INCOMPAT_64BIT		0x0080
103
#define EXT4_FEATURE_INCOMPAT_MMP		0x0100
104 105 106
#define EXT4_FEATURE_INCOMPAT_FLEX_BG		0x0200

/* The set of back-incompatible features this driver DOES support. Add (OR)
107
 * flags here as the related features are implemented into the driver.  */
108
#define EXT2_DRIVER_SUPPORTED_INCOMPAT ( EXT2_FEATURE_INCOMPAT_FILETYPE \
109
                                       | EXT4_FEATURE_INCOMPAT_EXTENTS  \
110
                                       | EXT4_FEATURE_INCOMPAT_FLEX_BG \
111
                                       | EXT2_FEATURE_INCOMPAT_META_BG \
112
                                       | EXT4_FEATURE_INCOMPAT_64BIT)
113 114 115 116 117 118
/* List of rationales for the ignored "incompatible" features:
 * needs_recovery: Not really back-incompatible - was added as such to forbid
 *                 ext2 drivers from mounting an ext3 volume with a dirty
 *                 journal because they will ignore the journal, but the next
 *                 ext3 driver to mount the volume will find the journal and
 *                 replay it, potentially corrupting the metadata written by
119 120 121 122 123 124 125
 *                 the ext2 drivers. Safe to ignore for this RO driver.
 * mmp:            Not really back-incompatible - was added as such to
 *                 avoid multiple read-write mounts. Safe to ignore for this
 *                 RO driver.
 */
#define EXT2_DRIVER_IGNORED_INCOMPAT ( EXT3_FEATURE_INCOMPAT_RECOVER \
				     | EXT4_FEATURE_INCOMPAT_MMP)
126

127 128 129 130 131 132 133 134 135 136 137 138 139 140

#define EXT3_JOURNAL_MAGIC_NUMBER	0xc03b3998U

#define EXT3_JOURNAL_DESCRIPTOR_BLOCK	1
#define EXT3_JOURNAL_COMMIT_BLOCK	2
#define EXT3_JOURNAL_SUPERBLOCK_V1	3
#define EXT3_JOURNAL_SUPERBLOCK_V2	4
#define EXT3_JOURNAL_REVOKE_BLOCK	5

#define EXT3_JOURNAL_FLAG_ESCAPE	1
#define EXT3_JOURNAL_FLAG_SAME_UUID	2
#define EXT3_JOURNAL_FLAG_DELETED	4
#define EXT3_JOURNAL_FLAG_LAST_TAG	8

141 142
#define EXT4_EXTENTS_FLAG		0x80000

143
/* The ext2 superblock.  */
144
struct grub_ext2_sblock
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
  grub_uint32_t total_inodes;
  grub_uint32_t total_blocks;
  grub_uint32_t reserved_blocks;
  grub_uint32_t free_blocks;
  grub_uint32_t free_inodes;
  grub_uint32_t first_data_block;
  grub_uint32_t log2_block_size;
  grub_uint32_t log2_fragment_size;
  grub_uint32_t blocks_per_group;
  grub_uint32_t fragments_per_group;
  grub_uint32_t inodes_per_group;
  grub_uint32_t mtime;
  grub_uint32_t utime;
  grub_uint16_t mnt_count;
  grub_uint16_t max_mnt_count;
  grub_uint16_t magic;
  grub_uint16_t fs_state;
  grub_uint16_t error_handling;
  grub_uint16_t minor_revision_level;
  grub_uint32_t lastcheck;
  grub_uint32_t checkinterval;
  grub_uint32_t creator_os;
  grub_uint32_t revision_level;
  grub_uint16_t uid_reserved;
  grub_uint16_t gid_reserved;
  grub_uint32_t first_inode;
  grub_uint16_t inode_size;
  grub_uint16_t block_group_number;
  grub_uint32_t feature_compatibility;
  grub_uint32_t feature_incompat;
  grub_uint32_t feature_ro_compat;
177
  grub_uint16_t uuid[8];
178 179
  char volume_name[16];
  char last_mounted_on[64];
180
  grub_uint32_t compression_info;
181 182 183 184 185 186 187 188 189 190
  grub_uint8_t prealloc_blocks;
  grub_uint8_t prealloc_dir_blocks;
  grub_uint16_t reserved_gdt_blocks;
  grub_uint8_t journal_uuid[16];
  grub_uint32_t journal_inum;
  grub_uint32_t journal_dev;
  grub_uint32_t last_orphan;
  grub_uint32_t hash_seed[4];
  grub_uint8_t def_hash_version;
  grub_uint8_t jnl_backup_type;
191
  grub_uint16_t group_desc_size;
192 193 194 195
  grub_uint32_t default_mount_opts;
  grub_uint32_t first_meta_bg;
  grub_uint32_t mkfs_time;
  grub_uint32_t jnl_blocks[17];
196 197 198
};

/* The ext2 blockgroup.  */
199
struct grub_ext2_block_group
200
{
201 202 203 204 205
  grub_uint32_t block_id;
  grub_uint32_t inode_id;
  grub_uint32_t inode_table_id;
  grub_uint16_t free_blocks;
  grub_uint16_t free_inodes;
206
  grub_uint16_t used_dirs;
207 208
  grub_uint16_t pad;
  grub_uint32_t reserved[3];
209 210 211 212 213 214 215 216
  grub_uint32_t block_id_hi;
  grub_uint32_t inode_id_hi;
  grub_uint32_t inode_table_id_hi;
  grub_uint16_t free_blocks_hi;
  grub_uint16_t free_inodes_hi;
  grub_uint16_t used_dirs_hi;
  grub_uint16_t pad2;
  grub_uint32_t reserved2[3];
217 218 219
};

/* The ext2 inode.  */
220
struct grub_ext2_inode
221
{
222 223 224 225 226 227 228 229 230 231 232 233
  grub_uint16_t mode;
  grub_uint16_t uid;
  grub_uint32_t size;
  grub_uint32_t atime;
  grub_uint32_t ctime;
  grub_uint32_t mtime;
  grub_uint32_t dtime;
  grub_uint16_t gid;
  grub_uint16_t nlinks;
  grub_uint32_t blockcnt;  /* Blocks of 512 bytes!! */
  grub_uint32_t flags;
  grub_uint32_t osd1;
234 235 236 237
  union
  {
    struct datablocks
    {
238 239 240
      grub_uint32_t dir_blocks[INDIRECT_BLOCKS];
      grub_uint32_t indir_block;
      grub_uint32_t double_indir_block;
241
      grub_uint32_t triple_indir_block;
242
    } blocks;
243 244
    char symlink[60];
  };
245 246
  grub_uint32_t version;
  grub_uint32_t acl;
247
  grub_uint32_t size_high;
248 249
  grub_uint32_t fragment_addr;
  grub_uint32_t osd2[3];
250 251 252 253 254
};

/* The header of an ext2 directory entry.  */
struct ext2_dirent
{
255 256
  grub_uint32_t inode;
  grub_uint16_t direntlen;
257
#define MAX_NAMELEN 255
258 259
  grub_uint8_t namelen;
  grub_uint8_t filetype;
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
struct grub_ext3_journal_header
{
  grub_uint32_t magic;
  grub_uint32_t block_type;
  grub_uint32_t sequence;
};

struct grub_ext3_journal_revoke_header
{
  struct grub_ext3_journal_header header;
  grub_uint32_t count;
  grub_uint32_t data[0];
};

struct grub_ext3_journal_block_tag
{
  grub_uint32_t block;
  grub_uint32_t flags;
};

struct grub_ext3_journal_sblock
{
  struct grub_ext3_journal_header header;
  grub_uint32_t block_size;
  grub_uint32_t maxlen;
  grub_uint32_t first;
  grub_uint32_t sequence;
  grub_uint32_t start;
};

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
#define EXT4_EXT_MAGIC		0xf30a

struct grub_ext4_extent_header
{
  grub_uint16_t magic;
  grub_uint16_t entries;
  grub_uint16_t max;
  grub_uint16_t depth;
  grub_uint32_t generation;
};

struct grub_ext4_extent
{
  grub_uint32_t block;
  grub_uint16_t len;
  grub_uint16_t start_hi;
  grub_uint32_t start;
};

struct grub_ext4_extent_idx
{
  grub_uint32_t block;
  grub_uint32_t leaf;
  grub_uint16_t leaf_hi;
  grub_uint16_t unused;
};

319 320 321 322 323 324 325 326
struct grub_fshelp_node
{
  struct grub_ext2_data *data;
  struct grub_ext2_inode inode;
  int ino;
  int inode_read;
};

327
/* Information about a "mounted" ext2 filesystem.  */
328
struct grub_ext2_data
329
{
330
  struct grub_ext2_sblock sblock;
331
  int log_group_desc_size;
332
  grub_disk_t disk;
333 334
  struct grub_ext2_inode *inode;
  struct grub_fshelp_node diropen;
335 336
};

337
static grub_dl_t my_mod;
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
/* Check is a = b^x for some x.  */
static inline int
is_power_of (grub_uint64_t a, grub_uint32_t b)
{
  grub_uint64_t c;
  /* Prevent overflow assuming b < 8.  */
  if (a >= (1LL << 60))
    return 0;
  for (c = 1; c <= a; c *= b);
  return (c == a);
}


static inline int
group_has_super_block (struct grub_ext2_data *data, grub_uint64_t group)
{
  if (!(data->sblock.feature_ro_compat
	& grub_cpu_to_le32_compile_time(EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER)))
    return 1;
  /* Algorithm looked up in Linux source.  */
  if (group <= 1)
    return 1;
  /* Even number is never a power of odd number.  */
  if (!(group & 1))
    return 0;
  return (is_power_of(group, 7) || is_power_of(group, 5) ||
	  is_power_of(group, 3));
}

370 371
/* Read into BLKGRP the blockgroup descriptor of blockgroup GROUP of
   the mounted filesystem DATA.  */
372
inline static grub_err_t
373
grub_ext2_blockgroup (struct grub_ext2_data *data, grub_uint64_t group,
374
		      struct grub_ext2_block_group *blkgrp)
375
{
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
  grub_uint64_t full_offset = (group << data->log_group_desc_size);
  grub_uint64_t block, offset;
  block = (full_offset >> LOG2_BLOCK_SIZE (data));
  offset = (full_offset & ((1 << LOG2_BLOCK_SIZE (data)) - 1));
  if ((data->sblock.feature_incompat
       & grub_cpu_to_le32_compile_time (EXT2_FEATURE_INCOMPAT_META_BG))
      && block >= grub_le_to_cpu32(data->sblock.first_meta_bg))
    {
      grub_uint64_t first_block_group;
      /* Find the first block group for which a descriptor
	 is stored in given block. */
      first_block_group = (block << (LOG2_BLOCK_SIZE (data)
				     - data->log_group_desc_size));

      block = (first_block_group
	       * grub_le_to_cpu32(data->sblock.blocks_per_group));

      if (group_has_super_block (data, first_block_group))
	block++;
    }
  else
    /* Superblock.  */
    block++;
399
  return grub_disk_read (data->disk,
400 401 402
                         ((grub_le_to_cpu32 (data->sblock.first_data_block)
			   + block)
                          << LOG2_EXT2_BLOCK_SIZE (data)), offset,
403
			 sizeof (struct grub_ext2_block_group), blkgrp);
404 405
}

406
static struct grub_ext4_extent_header *
407
grub_ext4_find_leaf (struct grub_ext2_data *data,
408 409 410 411
                     struct grub_ext4_extent_header *ext_block,
                     grub_uint32_t fileblock)
{
  struct grub_ext4_extent_idx *index;
412
  void *buf = NULL;
413 414 415 416 417 418 419 420

  while (1)
    {
      int i;
      grub_disk_addr_t block;

      index = (struct grub_ext4_extent_idx *) (ext_block + 1);

421 422
      if (ext_block->magic != grub_cpu_to_le16_compile_time (EXT4_EXT_MAGIC))
	goto fail;
423 424 425 426 427 428 429 430 431 432 433

      if (ext_block->depth == 0)
        return ext_block;

      for (i = 0; i < grub_le_to_cpu16 (ext_block->entries); i++)
        {
          if (fileblock < grub_le_to_cpu32(index[i].block))
            break;
        }

      if (--i < 0)
434
	goto fail;
435 436

      block = grub_le_to_cpu16 (index[i].leaf_hi);
437
      block = (block << 32) | grub_le_to_cpu32 (index[i].leaf);
438 439 440 441
      if (!buf)
	buf = grub_malloc (EXT2_BLOCK_SIZE(data));
      if (!buf)
	goto fail;
442 443 444
      if (grub_disk_read (data->disk,
                          block << LOG2_EXT2_BLOCK_SIZE (data),
                          0, EXT2_BLOCK_SIZE(data), buf))
445
	goto fail;
446

447
      ext_block = buf;
448
    }
449 450 451
 fail:
  grub_free (buf);
  return 0;
452
}
453

454 455
static grub_disk_addr_t
grub_ext2_read_block (grub_fshelp_node_t node, grub_disk_addr_t fileblock)
456
{
457 458
  struct grub_ext2_data *data = node->data;
  struct grub_ext2_inode *inode = &node->inode;
459
  unsigned int blksz = EXT2_BLOCK_SIZE (data);
460
  grub_disk_addr_t blksz_quarter = blksz / 4;
461
  int log2_blksz = LOG2_EXT2_BLOCK_SIZE (data);
462 463 464
  int log_perblock = log2_blksz + 9 - 2;
  grub_uint32_t indir;
  int shift;
465

466
  if (inode->flags & grub_cpu_to_le32_compile_time (EXT4_EXTENTS_FLAG))
467 468 469 470
    {
      struct grub_ext4_extent_header *leaf;
      struct grub_ext4_extent *ext;
      int i;
471
      grub_disk_addr_t ret;
472

473
      leaf = grub_ext4_find_leaf (data, (struct grub_ext4_extent_header *) inode->blocks.dir_blocks, fileblock);
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
      if (! leaf)
        {
          grub_error (GRUB_ERR_BAD_FS, "invalid extent");
          return -1;
        }

      ext = (struct grub_ext4_extent *) (leaf + 1);
      for (i = 0; i < grub_le_to_cpu16 (leaf->entries); i++)
        {
          if (fileblock < grub_le_to_cpu32 (ext[i].block))
            break;
        }

      if (--i >= 0)
        {
          fileblock -= grub_le_to_cpu32 (ext[i].block);
          if (fileblock >= grub_le_to_cpu16 (ext[i].len))
491
	    ret = 0;
492 493 494 495 496 497 498
          else
            {
              grub_disk_addr_t start;

              start = grub_le_to_cpu16 (ext[i].start_hi);
              start = (start << 32) + grub_le_to_cpu32 (ext[i].start);

499
              ret = fileblock + start;
500 501 502 503 504
            }
        }
      else
        {
          grub_error (GRUB_ERR_BAD_FS, "something wrong with extent");
505
	  ret = -1;
506
        }
507 508 509 510 511

      if (leaf != (struct grub_ext4_extent_header *) inode->blocks.dir_blocks)
	grub_free (leaf);

      return ret;
512
    }
513

514 515
  /* Direct blocks.  */
  if (fileblock < INDIRECT_BLOCKS)
516 517
    return grub_le_to_cpu32 (inode->blocks.dir_blocks[fileblock]);
  fileblock -= INDIRECT_BLOCKS;
518
  /* Indirect.  */
519
  if (fileblock < blksz_quarter)
520
    {
521 522 523
      indir = inode->blocks.indir_block;
      shift = 0;
      goto indirect;
524
    }
525
  fileblock -= blksz_quarter;
526
  /* Double indirect.  */
527
  if (fileblock < blksz_quarter * blksz_quarter)
528
    {
529 530 531
      indir = inode->blocks.double_indir_block;
      shift = 1;
      goto indirect;
532
    }
533 534 535
  fileblock -= blksz_quarter * blksz_quarter;
  /* Triple indirect.  */
  if (fileblock < blksz_quarter * blksz_quarter * (blksz_quarter + 1))
536
    {
537 538 539
      indir = inode->blocks.triple_indir_block;
      shift = 2;
      goto indirect;
540
    }
541 542 543
  grub_error (GRUB_ERR_BAD_FS,
	      "ext2fs doesn't support quadruple indirect blocks");
  return -1;
544 545 546

indirect:
  do {
547 548 549 550
    /* If the indirect block is zero, all child blocks are absent
       (i.e. filled with zeros.) */
    if (indir == 0)
      return 0;
551 552 553 554 555 556 557
    if (grub_disk_read (data->disk,
			((grub_disk_addr_t) grub_le_to_cpu32 (indir))
			<< log2_blksz,
			((fileblock >> (log_perblock * shift))
			 & ((1 << log_perblock) - 1))
			* sizeof (indir),
			sizeof (indir), &indir))
558
      return -1;
559 560 561
  } while (shift--);

  return grub_le_to_cpu32 (indir);
562 563 564 565
}

/* Read LEN bytes from the file described by DATA starting with byte
   POS.  Return the amount of read bytes in READ.  */
566
static grub_ssize_t
567
grub_ext2_read_file (grub_fshelp_node_t node,
568
		     grub_disk_read_hook_t read_hook, void *read_hook_data,
569
		     grub_off_t pos, grub_size_t len, char *buf)
570
{
571 572
  return grub_fshelp_read_file (node->data->disk, node,
				read_hook, read_hook_data,
573
				pos, len, buf, grub_ext2_read_block,
574 575
				grub_cpu_to_le32 (node->inode.size)
				| (((grub_off_t) grub_cpu_to_le32 (node->inode.size_high)) << 32),
576
				LOG2_EXT2_BLOCK_SIZE (node->data), 0);
577

578 579 580 581
}


/* Read the inode INO for the file described by DATA into INODE.  */
582 583 584
static grub_err_t
grub_ext2_read_inode (struct grub_ext2_data *data,
		      int ino, struct grub_ext2_inode *inode)
585
{
586 587
  struct grub_ext2_block_group blkgrp;
  struct grub_ext2_sblock *sblock = &data->sblock;
588 589
  int inodes_per_block;
  unsigned int blkno;
590
  unsigned int blkoff;
591
  grub_disk_addr_t base;
592 593 594

  /* It is easier to calculate if the first inode is 0.  */
  ino--;
595

596 597
  grub_ext2_blockgroup (data,
                        ino / grub_le_to_cpu32 (sblock->inodes_per_group),
598
			&blkgrp);
599 600
  if (grub_errno)
    return grub_errno;
601

602 603 604 605 606
  inodes_per_block = EXT2_BLOCK_SIZE (data) / EXT2_INODE_SIZE (data);
  blkno = (ino % grub_le_to_cpu32 (sblock->inodes_per_group))
    / inodes_per_block;
  blkoff = (ino % grub_le_to_cpu32 (sblock->inodes_per_group))
    % inodes_per_block;
607

608 609 610 611 612
  base = grub_le_to_cpu32 (blkgrp.inode_table_id);
  if (data->log_group_desc_size >= 6)
    base |= (((grub_disk_addr_t) grub_le_to_cpu32 (blkgrp.inode_table_id_hi))
	     << 32);

613
  /* Read the inode.  */
614
  if (grub_disk_read (data->disk,
615
		      ((base + blkno) << LOG2_EXT2_BLOCK_SIZE (data)),
616
		      EXT2_INODE_SIZE (data) * blkoff,
617
		      sizeof (struct grub_ext2_inode), inode))
618
    return grub_errno;
619

620 621 622
  return 0;
}

623 624
static struct grub_ext2_data *
grub_ext2_mount (grub_disk_t disk)
625
{
626
  struct grub_ext2_data *data;
627

628
  data = grub_malloc (sizeof (struct grub_ext2_data));
629 630 631 632
  if (!data)
    return 0;

  /* Read the superblock.  */
633
  grub_disk_read (disk, 1 * 2, 0, sizeof (struct grub_ext2_sblock),
634
                  &data->sblock);
635
  if (grub_errno)
636 637 638
    goto fail;

  /* Make sure this is an ext2 filesystem.  */
639
  if (data->sblock.magic != grub_cpu_to_le16_compile_time (EXT2_MAGIC)
640 641 642 643 644 645
      || grub_le_to_cpu32 (data->sblock.log2_block_size) >= 16
      || data->sblock.inodes_per_group == 0
      /* 20 already means 1GiB blocks. We don't want to deal with blocks overflowing int32. */
      || grub_le_to_cpu32 (data->sblock.log2_block_size) > 20
      || EXT2_INODE_SIZE (data) == 0
      || EXT2_BLOCK_SIZE (data) / EXT2_INODE_SIZE (data) == 0)
646 647 648 649
    {
      grub_error (GRUB_ERR_BAD_FS, "not an ext2 filesystem");
      goto fail;
    }
650

651
  /* Check the FS doesn't have feature bits enabled that we don't support. */
652 653 654 655
  if (data->sblock.revision_level != grub_cpu_to_le32_compile_time (EXT2_GOOD_OLD_REVISION)
      && (data->sblock.feature_incompat
	  & grub_cpu_to_le32_compile_time (~(EXT2_DRIVER_SUPPORTED_INCOMPAT
					     | EXT2_DRIVER_IGNORED_INCOMPAT))))
656 657 658 659
    {
      grub_error (GRUB_ERR_BAD_FS, "filesystem has unsupported incompatible features");
      goto fail;
    }
660

661 662 663 664 665 666 667 668 669 670 671 672 673 674
  if (data->sblock.revision_level != grub_cpu_to_le32_compile_time (EXT2_GOOD_OLD_REVISION)
      && (data->sblock.feature_incompat
	  & grub_cpu_to_le32_compile_time (EXT4_FEATURE_INCOMPAT_64BIT))
      && data->sblock.group_desc_size != 0
      && ((data->sblock.group_desc_size & (data->sblock.group_desc_size - 1))
	  == 0)
      && (data->sblock.group_desc_size & grub_cpu_to_le16_compile_time (0x1fe0)))
    {
      grub_uint16_t b = grub_le_to_cpu16 (data->sblock.group_desc_size);
      for (data->log_group_desc_size = 0; b != (1 << data->log_group_desc_size);
	   data->log_group_desc_size++);
    }
  else
    data->log_group_desc_size = 5;
675

676 677
  data->disk = disk;

678 679 680 681 682 683 684 685 686
  data->diropen.data = data;
  data->diropen.ino = 2;
  data->diropen.inode_read = 1;

  data->inode = &data->diropen.inode;

  grub_ext2_read_inode (data, 2, data->inode);
  if (grub_errno)
    goto fail;
687

688 689 690
  return data;

 fail:
691 692 693
  if (grub_errno == GRUB_ERR_OUT_OF_RANGE)
    grub_error (GRUB_ERR_BAD_FS, "not an ext2 filesystem");

694
  grub_free (data);
695 696 697
  return 0;
}

698 699
static char *
grub_ext2_read_symlink (grub_fshelp_node_t node)
700
{
701 702
  char *symlink;
  struct grub_fshelp_node *diro = node;
703

704
  if (! diro->inode_read)
705
    {
706 707 708
      grub_ext2_read_inode (diro->data, diro->ino, &diro->inode);
      if (grub_errno)
	return 0;
709
    }
710

711
  symlink = grub_malloc (grub_le_to_cpu32 (diro->inode.size) + 1);
712
  if (! symlink)
713
    return 0;
714

715 716 717
  /* 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.  */
718 719 720 721
  if (grub_le_to_cpu32 (diro->inode.size) <= sizeof (diro->inode.symlink))
    grub_memcpy (symlink,
		 diro->inode.symlink,
		 grub_le_to_cpu32 (diro->inode.size));
722
  else
723
    {
724
      grub_ext2_read_file (diro, 0, 0, 0,
725 726 727
			   grub_le_to_cpu32 (diro->inode.size),
			   symlink);
      if (grub_errno)
728
	{
729 730
	  grub_free (symlink);
	  return 0;
731
	}
732
    }
733

734 735 736
  symlink[grub_le_to_cpu32 (diro->inode.size)] = '\0';
  return symlink;
}
737

738 739
static int
grub_ext2_iterate_dir (grub_fshelp_node_t dir,
740
		       grub_fshelp_iterate_dir_hook_t hook, void *hook_data)
741 742 743
{
  unsigned int fpos = 0;
  struct grub_fshelp_node *diro = (struct grub_fshelp_node *) dir;
744

745
  if (! diro->inode_read)
746 747 748 749 750
    {
      grub_ext2_read_inode (diro->data, diro->ino, &diro->inode);
      if (grub_errno)
	return 0;
    }
751

752 753 754 755
  /* Search the file.  */
  while (fpos < grub_le_to_cpu32 (diro->inode.size))
    {
      struct ext2_dirent dirent;
756

757
      grub_ext2_read_file (diro, 0, 0, fpos, sizeof (struct ext2_dirent),
758
			   (char *) &dirent);
759
      if (grub_errno)
760
	return 0;
761

762 763 764
      if (dirent.direntlen == 0)
        return 0;

765
      if (dirent.inode != 0 && dirent.namelen != 0)
766
	{
767
	  char filename[MAX_NAMELEN + 1];
768 769
	  struct grub_fshelp_node *fdiro;
	  enum grub_fshelp_filetype type = GRUB_FSHELP_UNKNOWN;
770

771
	  grub_ext2_read_file (diro, 0, 0, fpos + sizeof (struct ext2_dirent),
772
			       dirent.namelen, filename);
773
	  if (grub_errno)
774
	    return 0;
775

776
	  fdiro = grub_malloc (sizeof (struct grub_fshelp_node));
777
	  if (! fdiro)
778
	    return 0;
779

780 781
	  fdiro->data = diro->data;
	  fdiro->ino = grub_le_to_cpu32 (dirent.inode);
782

783
	  filename[dirent.namelen] = '\0';
784

785
	  if (dirent.filetype != FILETYPE_UNKNOWN)
786
	    {
787 788 789 790 791 792 793 794 795 796 797 798 799
	      fdiro->inode_read = 0;

	      if (dirent.filetype == FILETYPE_DIRECTORY)
		type = GRUB_FSHELP_DIR;
	      else if (dirent.filetype == FILETYPE_SYMLINK)
		type = GRUB_FSHELP_SYMLINK;
	      else if (dirent.filetype == FILETYPE_REG)
		type = GRUB_FSHELP_REG;
	    }
	  else
	    {
	      /* The filetype can not be read from the dirent, read
		 the inode to get more information.  */
800 801
	      grub_ext2_read_inode (diro->data,
                                    grub_le_to_cpu32 (dirent.inode),
802
				    &fdiro->inode);
803
	      if (grub_errno)
804
		{
805 806
		  grub_free (fdiro);
		  return 0;
807
		}
808

809
	      fdiro->inode_read = 1;
810

811
	      if ((grub_le_to_cpu16 (fdiro->inode.mode)
812 813
		   & FILETYPE_INO_MASK) == FILETYPE_INO_DIRECTORY)
		type = GRUB_FSHELP_DIR;
814 815
	      else if ((grub_le_to_cpu16 (fdiro->inode.mode)
			& FILETYPE_INO_MASK) == FILETYPE_INO_SYMLINK)
816
		type = GRUB_FSHELP_SYMLINK;
817 818
	      else if ((grub_le_to_cpu16 (fdiro->inode.mode)
			& FILETYPE_INO_MASK) == FILETYPE_INO_REG)
819
		type = GRUB_FSHELP_REG;
820
	    }
821

822
	  if (hook (filename, type, fdiro, hook_data))
823
	    return 1;
824
	}
825

826
      fpos += grub_le_to_cpu16 (dirent.direntlen);
827
    }
828

829
  return 0;
830 831 832
}

/* Open a file named NAME and initialize FILE.  */
833 834
static grub_err_t
grub_ext2_open (struct grub_file *file, const char *name)
835
{
836
  struct grub_ext2_data *data;
837
  struct grub_fshelp_node *fdiro = 0;
838
  grub_err_t err;
839

840
  grub_dl_ref (my_mod);
841

842
  data = grub_ext2_mount (file->device->disk);
843
  if (! data)
844 845 846 847
    {
      err = grub_errno;
      goto fail;
    }
848

849 850 851 852
  err = grub_fshelp_find_file (name, &data->diropen, &fdiro,
			       grub_ext2_iterate_dir,
			       grub_ext2_read_symlink, GRUB_FSHELP_REG);
  if (err)
853
    goto fail;
854

855
  if (! fdiro->inode_read)
856
    {
857 858
      err = grub_ext2_read_inode (data, fdiro->ino, &fdiro->inode);
      if (err)
859
	goto fail;
860
    }
861

862 863 864 865
  grub_memcpy (data->inode, &fdiro->inode, sizeof (struct grub_ext2_inode));
  grub_free (fdiro);

  file->size = grub_le_to_cpu32 (data->inode->size);
866
  file->size |= ((grub_off_t) grub_le_to_cpu32 (data->inode->size_high)) << 32;
867 868 869 870 871 872
  file->data = data;
  file->offset = 0;

  return 0;

 fail:
873 874
  if (fdiro != &data->diropen)
    grub_free (fdiro);
875
  grub_free (data);
876

877
  grub_dl_unref (my_mod);
878

879
  return err;
880 881
}

882 883
static grub_err_t
grub_ext2_close (grub_file_t file)
884
{
885
  grub_free (file->data);
886

887
  grub_dl_unref (my_mod);
888

889
  return GRUB_ERR_NONE;
890 891 892
}

/* Read LEN bytes data from FILE into BUF.  */
893
static grub_ssize_t
894
grub_ext2_read (grub_file_t file, char *buf, grub_size_t len)
895
{
896
  struct grub_ext2_data *data = (struct grub_ext2_data *) file->data;
897

898 899
  return grub_ext2_read_file (&data->diropen,
			      file->read_hook, file->read_hook_data,
900
			      file->offset, len, buf);
901 902 903
}


904 905
/* Context for grub_ext2_dir.  */
struct grub_ext2_dir_ctx
906
{
907 908 909 910
  grub_fs_dir_hook_t hook;
  void *hook_data;
  struct grub_ext2_data *data;
};
911

912 913 914 915 916 917 918
/* Helper for grub_ext2_dir.  */
static int
grub_ext2_dir_iter (const char *filename, enum grub_fshelp_filetype filetype,
		    grub_fshelp_node_t node, void *data)
{
  struct grub_ext2_dir_ctx *ctx = data;
  struct grub_dirhook_info info;
919

920 921
  grub_memset (&info, 0, sizeof (info));
  if (! node->inode_read)
922
    {
923 924 925 926
      grub_ext2_read_inode (ctx->data, node->ino, &node->inode);
      if (!grub_errno)
	node->inode_read = 1;
      grub_errno = GRUB_ERR_NONE;
927
    }
928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
  if (node->inode_read)
    {
      info.mtimeset = 1;
      info.mtime = grub_le_to_cpu32 (node->inode.mtime);
    }

  info.dir = ((filetype & GRUB_FSHELP_TYPE_MASK) == GRUB_FSHELP_DIR);
  grub_free (node);
  return ctx->hook (filename, &info, ctx->hook_data);
}

static grub_err_t
grub_ext2_dir (grub_device_t device, const char *path, grub_fs_dir_hook_t hook,
	       void *hook_data)
{
  struct grub_ext2_dir_ctx ctx = {
    .hook = hook,
    .hook_data = hook_data
  };
  struct grub_fshelp_node *fdiro = 0;
948

949
  grub_dl_ref (my_mod);
950

951 952
  ctx.data = grub_ext2_mount (device->disk);
  if (! ctx.data)
953
    goto fail;
954

955 956 957
  grub_fshelp_find_file (path, &ctx.data->diropen, &fdiro,
			 grub_ext2_iterate_dir, grub_ext2_read_symlink,
			 GRUB_FSHELP_DIR);
958
  if (grub_errno)
959
    goto fail;
960

961
  grub_ext2_iterate_dir (fdiro, grub_ext2_dir_iter, &ctx);
962

963
 fail:
964
  if (fdiro != &ctx.data->diropen)
965
    grub_free (fdiro);
966
  grub_free (ctx.data);
967

968
  grub_dl_unref (my_mod);
969

970
  return grub_errno;
971 972
}

973 974
static grub_err_t
grub_ext2_label (grub_device_t device, char **label)
975
{
976 977
  struct grub_ext2_data *data;
  grub_disk_t disk = device->disk;
978

979
  grub_dl_ref (my_mod);
980

981
  data = grub_ext2_mount (disk);
982
  if (data)
983 984
    *label = grub_strndup (data->sblock.volume_name,
			   sizeof (data->sblock.volume_name));
985
  else
986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
    *label = NULL;

  grub_dl_unref (my_mod);

  grub_free (data);

  return grub_errno;
}

static grub_err_t
grub_ext2_uuid (grub_device_t device, char **uuid)
{
  struct grub_ext2_data *data;
  grub_disk_t disk = device->disk;

  grub_dl_ref (my_mod);

  data = grub_ext2_mount (disk);
  if (data)
    {
1006
      *uuid = grub_xasprintf ("%04x%04x-%04x-%04x-%04x-%04x%04x%04x",
1007 1008 1009 1010 1011 1012 1013 1014
			     grub_be_to_cpu16 (data->sblock.uuid[0]),
			     grub_be_to_cpu16 (data->sblock.uuid[1]),
			     grub_be_to_cpu16 (data->sblock.uuid[2]),
			     grub_be_to_cpu16 (data->sblock.uuid[3]),
			     grub_be_to_cpu16 (data->sblock.uuid[4]),
			     grub_be_to_cpu16 (data->sblock.uuid[5]),
			     grub_be_to_cpu16 (data->sblock.uuid[6]),
			     grub_be_to_cpu16 (data->sblock.uuid[7]));
1015 1016 1017
    }
  else
    *uuid = NULL;
1018

1019
  grub_dl_unref (my_mod);
1020

1021
  grub_free (data);
1022

1023
  return grub_errno;
1024 1025
}

1026
/* Get mtime.  */
1027
static grub_err_t
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037
grub_ext2_mtime (grub_device_t device, grub_int32_t *tm)
{
  struct grub_ext2_data *data;
  grub_disk_t disk = device->disk;

  grub_dl_ref (my_mod);

  data = grub_ext2_mount (disk);
  if (!data)
    *tm = 0;
1038
  else
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
    *tm = grub_le_to_cpu32 (data->sblock.utime);

  grub_dl_unref (my_mod);

  grub_free (data);

  return grub_errno;

}


1050

1051
static struct grub_fs grub_ext2_fs =
1052 1053
  {
    .name = "ext2",
1054 1055 1056 1057 1058
    .dir = grub_ext2_dir,
    .open = grub_ext2_open,
    .read = grub_ext2_read,
    .close = grub_ext2_close,
    .label = grub_ext2_label,
1059
    .uuid = grub_ext2_uuid,
1060
    .mtime = grub_ext2_mtime,
1061 1062
#ifdef GRUB_UTIL
    .reserved_first_sector = 1,
1063
    .blocklist_install = 1,
1064
#endif
1065 1066 1067
    .next = 0
  };

1068
GRUB_MOD_INIT(ext2)
1069
{
1070
  grub_fs_register (&grub_ext2_fs);
1071 1072 1073
  my_mod = mod;
}

1074
GRUB_MOD_FINI(ext2)
1075
{
1076
  grub_fs_unregister (&grub_ext2_fs);
1077
}