2004-08-18 09:00:01 +00:00
|
|
|
|
/* hfs.c - HFS. */
|
|
|
|
|
/*
|
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
2010-01-03 22:05:07 +00:00
|
|
|
|
* Copyright (C) 2004,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
|
2004-08-18 09:00:01 +00:00
|
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
2004-08-18 09:00:01 +00:00
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
2004-08-18 09:00:01 +00:00
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* GRUB is distributed in the hope that it will be useful,
|
2004-08-18 09:00:01 +00:00
|
|
|
|
* 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
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
2004-08-18 09:00:01 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2006-01-03 14:30:57 +00:00
|
|
|
|
/* HFS is documented at
|
|
|
|
|
http://developer.apple.com/documentation/mac/Files/Files-2.html */
|
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
#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>
|
2006-01-03 14:30:57 +00:00
|
|
|
|
#include <grub/hfs.h>
|
2012-02-08 18:26:01 +00:00
|
|
|
|
#include <grub/i18n.h>
|
2015-07-27 10:50:22 +00:00
|
|
|
|
#include <grub/fshelp.h>
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
2011-04-11 21:01:51 +00:00
|
|
|
|
GRUB_MOD_LICENSE ("GPLv3+");
|
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
#define GRUB_HFS_SBLOCK 2
|
2006-01-03 14:30:57 +00:00
|
|
|
|
#define GRUB_HFS_EMBED_HFSPLUS_SIG 0x482B
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
|
|
|
|
#define GRUB_HFS_BLKS (data->blksz >> 9)
|
|
|
|
|
|
|
|
|
|
#define GRUB_HFS_NODE_LEAF 0xFF
|
|
|
|
|
|
|
|
|
|
/* The two supported filesystems a record can have. */
|
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
GRUB_HFS_FILETYPE_DIR = 1,
|
|
|
|
|
GRUB_HFS_FILETYPE_FILE = 2
|
|
|
|
|
};
|
|
|
|
|
|
2008-01-23 20:21:18 +00:00
|
|
|
|
/* Catalog node ID (CNID). */
|
|
|
|
|
enum grub_hfs_cnid_type
|
|
|
|
|
{
|
|
|
|
|
GRUB_HFS_CNID_ROOT_PARENT = 1,
|
|
|
|
|
GRUB_HFS_CNID_ROOT = 2,
|
|
|
|
|
GRUB_HFS_CNID_EXT = 3,
|
|
|
|
|
GRUB_HFS_CNID_CAT = 4,
|
|
|
|
|
GRUB_HFS_CNID_BAD = 5
|
|
|
|
|
};
|
|
|
|
|
|
2007-12-30 08:52:06 +00:00
|
|
|
|
/* A node descriptor. This is the header of every node. */
|
2004-08-18 09:00:01 +00:00
|
|
|
|
struct grub_hfs_node
|
|
|
|
|
{
|
|
|
|
|
grub_uint32_t next;
|
|
|
|
|
grub_uint32_t prev;
|
|
|
|
|
grub_uint8_t type;
|
|
|
|
|
grub_uint8_t level;
|
|
|
|
|
grub_uint16_t reccnt;
|
|
|
|
|
grub_uint16_t unused;
|
2013-12-15 13:14:30 +00:00
|
|
|
|
} GRUB_PACKED;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
|
|
|
|
/* The head of the B*-Tree. */
|
|
|
|
|
struct grub_hfs_treeheader
|
|
|
|
|
{
|
|
|
|
|
grub_uint16_t tree_depth;
|
|
|
|
|
/* The number of the first node. */
|
|
|
|
|
grub_uint32_t root_node;
|
|
|
|
|
grub_uint32_t leaves;
|
|
|
|
|
grub_uint32_t first_leaf;
|
|
|
|
|
grub_uint32_t last_leaf;
|
|
|
|
|
grub_uint16_t node_size;
|
|
|
|
|
grub_uint16_t key_size;
|
|
|
|
|
grub_uint32_t nodes;
|
|
|
|
|
grub_uint32_t free_nodes;
|
|
|
|
|
grub_uint8_t unused[76];
|
2013-12-15 13:14:30 +00:00
|
|
|
|
} GRUB_PACKED;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
|
|
|
|
/* The state of a mounted HFS filesystem. */
|
|
|
|
|
struct grub_hfs_data
|
|
|
|
|
{
|
|
|
|
|
struct grub_hfs_sblock sblock;
|
|
|
|
|
grub_disk_t disk;
|
|
|
|
|
grub_hfs_datarecord_t extents;
|
|
|
|
|
int fileid;
|
|
|
|
|
int size;
|
|
|
|
|
int ext_root;
|
|
|
|
|
int ext_size;
|
|
|
|
|
int cat_root;
|
|
|
|
|
int cat_size;
|
|
|
|
|
int blksz;
|
|
|
|
|
int log2_blksz;
|
|
|
|
|
int rootdir;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* The key as used on disk in a catalog tree. This is used to lookup
|
|
|
|
|
file/directory nodes by parent directory ID and filename. */
|
|
|
|
|
struct grub_hfs_catalog_key
|
|
|
|
|
{
|
|
|
|
|
grub_uint8_t unused;
|
|
|
|
|
grub_uint32_t parent_dir;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* Filename length. */
|
|
|
|
|
grub_uint8_t strlen;
|
|
|
|
|
|
|
|
|
|
/* Filename. */
|
|
|
|
|
grub_uint8_t str[31];
|
2013-12-15 13:14:30 +00:00
|
|
|
|
} GRUB_PACKED;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
|
|
|
|
/* The key as used on disk in a extent overflow tree. Using this key
|
|
|
|
|
the extents can be looked up using a fileid and logical start block
|
|
|
|
|
as index. */
|
|
|
|
|
struct grub_hfs_extent_key
|
|
|
|
|
{
|
|
|
|
|
/* The kind of fork. This is used to store meta information like
|
|
|
|
|
icons, attributes, etc. We will only use the datafork, which is
|
|
|
|
|
0. */
|
|
|
|
|
grub_uint8_t forktype;
|
|
|
|
|
grub_uint32_t fileid;
|
|
|
|
|
grub_uint16_t first_block;
|
2013-12-15 13:14:30 +00:00
|
|
|
|
} GRUB_PACKED;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
2009-05-04 20:06:05 +00:00
|
|
|
|
/* A directory record. This is used to find out the directory ID. */
|
2004-08-18 09:00:01 +00:00
|
|
|
|
struct grub_hfs_dirrec
|
|
|
|
|
{
|
|
|
|
|
/* For a directory, type == 1. */
|
|
|
|
|
grub_uint8_t type;
|
|
|
|
|
grub_uint8_t unused[5];
|
|
|
|
|
grub_uint32_t dirid;
|
2010-12-11 06:15:44 +00:00
|
|
|
|
grub_uint32_t ctime;
|
|
|
|
|
grub_uint32_t mtime;
|
2013-12-15 13:14:30 +00:00
|
|
|
|
} GRUB_PACKED;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
|
|
|
|
/* Information about a file. */
|
|
|
|
|
struct grub_hfs_filerec
|
|
|
|
|
{
|
|
|
|
|
/* For a file, type == 2. */
|
|
|
|
|
grub_uint8_t type;
|
|
|
|
|
grub_uint8_t unused[19];
|
|
|
|
|
grub_uint32_t fileid;
|
|
|
|
|
grub_uint8_t unused2[2];
|
|
|
|
|
grub_uint32_t size;
|
2010-12-11 06:15:44 +00:00
|
|
|
|
grub_uint8_t unused3[18];
|
|
|
|
|
grub_uint32_t mtime;
|
|
|
|
|
grub_uint8_t unused4[22];
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
|
|
|
|
/* The first 3 extents of the file. The other extents can be found
|
|
|
|
|
in the extent overflow file. */
|
|
|
|
|
grub_hfs_datarecord_t extents;
|
2013-12-15 13:14:30 +00:00
|
|
|
|
} GRUB_PACKED;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
|
|
|
|
/* A record descriptor, both key and data, used to pass to call back
|
|
|
|
|
functions. */
|
|
|
|
|
struct grub_hfs_record
|
|
|
|
|
{
|
|
|
|
|
void *key;
|
2013-03-02 10:31:00 +00:00
|
|
|
|
grub_size_t keylen;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
void *data;
|
2013-03-02 10:31:00 +00:00
|
|
|
|
grub_size_t datalen;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static grub_dl_t my_mod;
|
|
|
|
|
|
|
|
|
|
static int grub_hfs_find_node (struct grub_hfs_data *, char *,
|
2013-03-02 10:31:00 +00:00
|
|
|
|
grub_uint32_t, int, char *, grub_size_t);
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
|
|
|
|
/* Find block BLOCK of the file FILE in the mounted UFS filesystem
|
|
|
|
|
DATA. The first 3 extents are described by DAT. If cache is set,
|
|
|
|
|
using caching to improve non-random reads. */
|
|
|
|
|
static unsigned int
|
|
|
|
|
grub_hfs_block (struct grub_hfs_data *data, grub_hfs_datarecord_t dat,
|
|
|
|
|
int file, int block, int cache)
|
|
|
|
|
{
|
|
|
|
|
grub_hfs_datarecord_t dr;
|
|
|
|
|
int pos = 0;
|
|
|
|
|
struct grub_hfs_extent_key key;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
int tree = 0;
|
|
|
|
|
static int cache_file = 0;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
static int cache_pos = 0;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
static grub_hfs_datarecord_t cache_dr;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
grub_memcpy (dr, dat, sizeof (dr));
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
key.forktype = 0;
|
|
|
|
|
key.fileid = grub_cpu_to_be32 (file);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
if (cache && cache_file == file && block > cache_pos)
|
|
|
|
|
{
|
|
|
|
|
pos = cache_pos;
|
|
|
|
|
key.first_block = grub_cpu_to_be16 (pos);
|
|
|
|
|
grub_memcpy (dr, cache_dr, sizeof (cache_dr));
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* Try all 3 extents. */
|
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
|
{
|
|
|
|
|
/* Check if the block is stored in this extent. */
|
|
|
|
|
if (grub_be_to_cpu16 (dr[i].count) + pos > block)
|
|
|
|
|
{
|
|
|
|
|
int first = grub_be_to_cpu16 (dr[i].first_block);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* If the cache is enabled, store the current position
|
|
|
|
|
in the tree. */
|
|
|
|
|
if (tree && cache)
|
|
|
|
|
{
|
|
|
|
|
cache_file = file;
|
|
|
|
|
cache_pos = pos;
|
|
|
|
|
grub_memcpy (cache_dr, dr, sizeof (cache_dr));
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
return (grub_be_to_cpu16 (data->sblock.first_block)
|
|
|
|
|
+ (first + block - pos) * GRUB_HFS_BLKS);
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* Try the next extent. */
|
|
|
|
|
pos += grub_be_to_cpu16 (dr[i].count);
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* Lookup the block in the extent overflow file. */
|
|
|
|
|
key.first_block = grub_cpu_to_be16 (pos);
|
|
|
|
|
tree = 1;
|
|
|
|
|
grub_hfs_find_node (data, (char *) &key, data->ext_root,
|
|
|
|
|
1, (char *) &dr, sizeof (dr));
|
|
|
|
|
if (grub_errno)
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Read LEN bytes from the file described by DATA starting with byte
|
|
|
|
|
POS. Return the amount of read bytes in READ. */
|
|
|
|
|
static grub_ssize_t
|
|
|
|
|
grub_hfs_read_file (struct grub_hfs_data *data,
|
2013-02-27 16:19:15 +00:00
|
|
|
|
grub_disk_read_hook_t read_hook, void *read_hook_data,
|
2013-03-10 17:27:53 +00:00
|
|
|
|
grub_uint32_t pos, grub_size_t len, char *buf)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
2011-10-16 09:57:48 +00:00
|
|
|
|
grub_off_t i;
|
|
|
|
|
grub_off_t blockcnt;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
2013-03-10 17:27:53 +00:00
|
|
|
|
/* Files are at most 2G/4G - 1 bytes on hfs. Avoid 64-bit division.
|
|
|
|
|
Moreover len > 0 as checked in upper layer. */
|
|
|
|
|
blockcnt = (len + pos - 1) / data->blksz + 1;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
2013-03-10 17:27:53 +00:00
|
|
|
|
for (i = pos / data->blksz; i < blockcnt; i++)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
2011-10-16 09:57:48 +00:00
|
|
|
|
grub_disk_addr_t blknr;
|
|
|
|
|
grub_off_t blockoff;
|
|
|
|
|
grub_off_t blockend = data->blksz;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
|
|
|
|
int skipfirst = 0;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-03-10 17:27:53 +00:00
|
|
|
|
blockoff = pos % data->blksz;
|
2011-10-16 09:57:48 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
blknr = grub_hfs_block (data, data->extents, data->fileid, i, 1);
|
|
|
|
|
if (grub_errno)
|
|
|
|
|
return -1;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* Last block. */
|
|
|
|
|
if (i == blockcnt - 1)
|
|
|
|
|
{
|
2013-03-10 17:27:53 +00:00
|
|
|
|
blockend = (len + pos) % data->blksz;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* The last portion is exactly EXT2_BLOCK_SIZE (data). */
|
2006-06-04 Yoshinori K. Okuji <okuji@enbug.org>
Clean up the code to support 64-bit addressing in disks and
files. This change is not enough for filesystems yet.
* util/i386/pc/grub-setup.c (struct boot_blocklist): Change the
type of "start" to grub_uint64_t.
(setup): Change the types of KERNEL_SECTOR and FIRST_SECTOR to
grub_disk_addr_t * and grub_disk_addr_t. Fix the format string in
save_first_sector and save_blocklists. Use grub_le_to_cpu64 to
convert addresses.
* util/i386/pc/biosdisk.c (open_device): Change the type of SECTOR
to grub_disk_addr_t.
* partmap/gpt.c (gpt_partition_map_iterate): Fix the format
string.
* partmap/pc.c (pc_partition_map_iterate): Likewise.
* partmap/amiga.c (amiga_partition_map_iterate): Cast RDSK.MAGIC
to char *.
* normal/script.c (grub_script_parse): Remove unused MEMFREE.
* normal/parser.y (YYLTYPE_IS_TRIVIAL): New macro.
* normal/lexer.c (grub_script_yyerror): Specify unused to LEX.
* loader/i386/pc/multiboot.c (grub_multiboot_load_elf64): Cast -1
to grub_off_t, to detect an error from grub_file_seek.
(grub_multiboot_load_elf32): Likewise.
* kern/misc.c (grub_strtoul): Use grub_strtoull. Return the
maximum unsigned long value when an overflow is detected.
(grub_strtoull): New function.
(grub_divmod64): Likewise.
(grub_lltoa): use grub_divmod64.
* kern/fs.c (struct grub_fs_block): Change the type of "offset" to
grub_disk_addr_t.
(grub_fs_blocklist_open): Increase P if P is not NULL to advance
the pointer to next character. Use grub_strtoull instead of
grub_strtoul.
(grub_fs_blocklist_read): Change the types of SECTOR, OFFSET and
SIZE to grub_disk_addr_t, grub_off_t and grub_size_t,
respectively.
* kern/file.c (grub_file_read): Prevent an oveflow of LEN, as the
return value is signed.
(grub_file_seek): Change the type of OLD to grub_off_t. Do not
test if OFFSET is less than zero, as OFFSET is unsigned now.
* kern/disk.c (struct grub_disk_cache): Change the type of
"sector" to grub_disk_addr_t.
(grub_disk_cache_get_index): Change the type of SECTOR to
grub_disk_addr_t. Calculate the hash with SECTOR casted to
unsigned after shifting.
(grub_disk_cache_invalidate): Change the type of SECTOR to
grub_disk_addr_t.
(grub_disk_cache_unlock): Likewise.
(grub_disk_cache_store): Likewise.
(grub_disk_check_range): Change the types of SECTOR, OFFSET, SIZE,
START and LEN to grub_disk_addr_t *, grub_off_t *, grub_size_t,
grub_disk_addr_t and grub_uint64_t, respectively.
(grub_disk_read): Use an unsigned variable REAL_OFFSET for the
body, as the value of OFFSET is tweaked by
grub_disk_check_range. Change the types of START_SECTOR, LEN and
POS to grub_disk_addr_t, grub_size_t and grub_size_t,
respectively.
(grub_disk_write): Use an unsigned variable REAL_OFFSET for the
body, as the value of OFFSET is tweaked by
grub_disk_check_range. Change the types of LEN and N to
grub_size_t.
* io/gzio.c (struct grub_gzio): Change the types of "data_offset"
and "saved_offset" to grub_off_t.
(test_header): Cast BUF to char *.
(get_byte): Cast GZIO->DATA_OFFSET to grub_off_t. Cast GZIO->INBUF
to char *.
(grub_gzio_read): Change the types of OFFSET and SIZE to
grub_off_t and grub_size_t, respectively.
* include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_FORCE_LBA):
Removed.
(GRUB_BOOT_MACHINE_BOOT_DRIVE): Changed to 0x4c.
(GRUB_BOOT_MACHINE_KERNEL_ADDRESS): Changed to 0x40.
(GRUB_BOOT_MACHINE_KERNEL_SEGMENT): Changed to 0x42.
(GRUB_BOOT_MACHINE_DRIVE_CHECK): Changed to 0x4e.
(GRUB_BOOT_MACHINE_LIST_SIZE): Increased to 12.
* include/grub/types.h (grub_off_t): Unconditionally set to
grub_uint64_t.
(grub_disk_addr_t): Changed to grub_uint64_t.
* include/grub/partition.h (struct grub_partition): Change the
types of "start", "len" and "offset" to grub_disk_addr_t,
grub_uint64_t and grub_disk_addr_t, respectively.
(grub_partition_get_start): Return grub_disk_addr_t.
(grub_partition_get_len): Return grub_uint64_t.
* include/grub/misc.h (grub_strtoull): New prototype.
(grub_divmod64): Likewise.
* include/grub/fshelp.h (grub_fshelp_read_file): Change the types
of SECTOR, LEN and FILESIZE to grub_disk_addr_t, grub_size_t and
grub_off_t, respectively.
All callers and references changed.
* include/grub/fs.h (struct grub_fs): Change the type of LEN to
grub_size_t in "read".
All callers and references changed.
* include/grub/file.h (struct grub_file): Change the types of
"offset" and "size" to grub_off_t and grub_off_t,
respectively. Change the type of SECTOR to grub_disk_addr_t in
"read_hook".
(grub_file_read): Change the type of LEN to grub_size_t.
(grub_file_seek): Return grub_off_t. Change the type of OFFSET to
grub_off_t.
(grub_file_size): Return grub_off_t.
(grub_file_tell): Likewise.
All callers and references changed.
* include/grub/disk.h (struct grub_disk_dev): Change the types of
SECTOR and SIZE to grub_disk_addr_t and grub_size_t in "read" and
"write".
(struct grub_disk): Change the type of "total_sectors" to
grub_uint64_t. Change the type of SECTOR to grub_disk_addr_t in
"read_hook".
(grub_disk_read): Change the types of SECTOR, OFFSET and SIZE to
grub_disk_addr_t, grub_off_t and grub_size_t, respectively.
(grub_disk_write): Likewise.
All callers and references changed.
* fs/iso9660.c (grub_iso9660_susp_iterate): Cast parameters to
char * for grub_strncmp to silence gcc.
(grub_iso9660_mount): Likewise.
(grub_iso9660_mount): Likewise.
(grub_iso9660_read_symlink): Likewise. Also, remove the nonsense
return statement.
(grub_iso9660_iterate_dir): Likewise.
(grub_iso9660_label): Cast DATA->VOLDESC.VOLNAME to char *.
* fs/hfs.c (grub_hfs_read_file): Change the types of SECTOR and
LEN to grub_disk_addr_t and grub_size_t, respectively.
* fs/hfsplus.c (grub_hfsplus_read_file): Likewise.
* fs/jfs.c (grub_jfs_read_file): Likewise.
* fs/minix.c (grub_jfs_read_file): Likewise.
* fs/sfs.c (grub_jfs_read_file): Likewise.
* fs/ufs.c (grub_jfs_read_file): Likewise.
* fs/xfs.c (grub_jfs_read_file): Likewise.
* fs/fat.c (grub_fat_read_data): Change the types of SECTOR, LEN
and SIZE to grub_disk_addr_t, grub_size_t and grub_size_t,
respectively.
* fs/ext2.c (grub_ext2_read_block): When an error happens, set
BLKNR to -1 instead of returning GRUB_ERRNO.
(grub_ext2_read_file): Change the types of SECTOR and
LEN to grub_disk_addr_t and grub_size_t, respectively.
* fs/affs.c (grub_affs_read_file): Change the types of SECTOR and
LEN to grub_disk_addr_t and grub_size_t, respectively.
* font/manager.c (grub_font_get_glyph): Cast BITMAP to char * for
grub_file_read.
* disk/ieee1275/ofdisk.c (grub_ofdisk_read): Fix the format
string. Do not cast SECTOR explicitly.
* disk/i386/pc/biosdisk.c (grub_biosdisk_open): Change the type of
TOTAL_SECTORS to grub_uint64_t. Do not mask DRP->TOTAL_SECTORS.
(grub_biosdisk_rw): Change the types of SECTOR and SIZE to
grub_disk_addr_t and grub_size_t, respectively. If the sector is
over 2TB and LBA mode is not supported, raise an error.
(get_safe_sectors): New function.
(grub_biosdisk_read): Use get_safe_sectors.
(grub_biosdisk_write): Likewise.
* disk/efi/efidisk.c (grub_efidisk_read): Fix the format string.
(grub_efidisk_write): Likewise.
* disk/loopback.c (delete_loopback): Cosmetic changes.
(grub_cmd_loopback): Likewise. Also, test NEWDEV->FILENAME
correctly.
(grub_loopback_open): Likewise.
(grub_loopback_read): Likewise. Also, change the type of POS to
grub_off_t, and fix the usage of grub_memset.
* commands/i386/pc/play.c: Include grub/machine/time.h.
* commands/ls.c (grub_ls_list_files): Use "llu" instead of "d" to
print FILE->SIZE.
* commands/configfile.c: Include grub/env.h.
* commands/cmp.c (grub_cmd_cmp): Do not use ERR, but use
GRUB_ERRNO directly instead. Change the type of POS to
grub_off_t. Follow the coding standard.
* commands/blocklist.c: Include grub/partition.h.
(grub_cmd_blocklist): Return an error if the underlying device is
not a disk. Take the starting sector of a partition into account,
if a partition is used.
* boot/i386/pc/diskboot.S (bootloop): Adapted to the new offset of
a length field.
(lba_mode): Support 64-bit addresses.
(chs_mode): Likewise.
(copy_buffer): Adapted to the new offsets of a length field and a
segment field.
(blocklist_default_start): Allocate 64-bit space.
* boot/i386/pc/boot.S (force_lba): Removed.
(boot_drive): Moved to under KERNEL_SECTOR.
(kernel_sector): Moved to under KENREL_SEGMENT. Allocate 64-bit
space.
(real_start): Set %si earlier. Remove code for FORCE_LBA, since it
is useless.
(lba_mode): Refactored to support a 64-bit address. More size
optimization.
(setup_sectors): Likewise.
2006-06-04 15:56:55 +00:00
|
|
|
|
if (! blockend)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
blockend = data->blksz;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* First block. */
|
2013-03-10 17:27:53 +00:00
|
|
|
|
if (i == pos / data->blksz)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
|
|
|
|
skipfirst = blockoff;
|
|
|
|
|
blockend -= skipfirst;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If the block number is 0 this block is not stored on disk but
|
|
|
|
|
is zero filled instead. */
|
|
|
|
|
if (blknr)
|
|
|
|
|
{
|
2009-06-10 21:04:23 +00:00
|
|
|
|
data->disk->read_hook = read_hook;
|
2013-02-27 16:19:15 +00:00
|
|
|
|
data->disk->read_hook_data = read_hook_data;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
grub_disk_read (data->disk, blknr, skipfirst,
|
|
|
|
|
blockend, buf);
|
|
|
|
|
data->disk->read_hook = 0;
|
|
|
|
|
if (grub_errno)
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
buf += data->blksz - skipfirst;
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
return len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Mount the filesystem on the disk DISK. */
|
|
|
|
|
static struct grub_hfs_data *
|
|
|
|
|
grub_hfs_mount (grub_disk_t disk)
|
|
|
|
|
{
|
|
|
|
|
struct grub_hfs_data *data;
|
|
|
|
|
struct grub_hfs_catalog_key key;
|
|
|
|
|
struct grub_hfs_dirrec dir;
|
|
|
|
|
int first_block;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
struct
|
|
|
|
|
{
|
|
|
|
|
struct grub_hfs_node node;
|
|
|
|
|
struct grub_hfs_treeheader head;
|
|
|
|
|
} treehead;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
data = grub_malloc (sizeof (struct grub_hfs_data));
|
|
|
|
|
if (!data)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
/* Read the superblock. */
|
|
|
|
|
if (grub_disk_read (disk, GRUB_HFS_SBLOCK, 0,
|
2009-05-13 18:58:38 +00:00
|
|
|
|
sizeof (struct grub_hfs_sblock), &data->sblock))
|
2004-08-18 09:00:01 +00:00
|
|
|
|
goto fail;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* Check if this is a HFS filesystem. */
|
2012-05-12 11:31:05 +00:00
|
|
|
|
if (grub_be_to_cpu16 (data->sblock.magic) != GRUB_HFS_MAGIC
|
2015-01-20 13:59:40 +00:00
|
|
|
|
|| data->sblock.blksz == 0
|
2012-05-12 11:31:05 +00:00
|
|
|
|
|| (data->sblock.blksz & grub_cpu_to_be32_compile_time (0xc00001ff)))
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
2006-01-03 14:30:57 +00:00
|
|
|
|
grub_error (GRUB_ERR_BAD_FS, "not an HFS filesystem");
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check if this is an embedded HFS+ filesystem. */
|
|
|
|
|
if (grub_be_to_cpu16 (data->sblock.embed_sig) == GRUB_HFS_EMBED_HFSPLUS_SIG)
|
|
|
|
|
{
|
|
|
|
|
grub_error (GRUB_ERR_BAD_FS, "embedded HFS+ filesystem");
|
2004-08-18 09:00:01 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
data->blksz = grub_be_to_cpu32 (data->sblock.blksz);
|
|
|
|
|
data->disk = disk;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* Lookup the root node of the extent overflow tree. */
|
2009-06-10 21:04:23 +00:00
|
|
|
|
first_block = ((grub_be_to_cpu16 (data->sblock.extent_recs[0].first_block)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
* GRUB_HFS_BLKS)
|
|
|
|
|
+ grub_be_to_cpu16 (data->sblock.first_block));
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
if (grub_disk_read (data->disk, first_block, 0,
|
2009-05-13 18:58:38 +00:00
|
|
|
|
sizeof (treehead), &treehead))
|
2004-08-18 09:00:01 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
data->ext_root = grub_be_to_cpu32 (treehead.head.root_node);
|
|
|
|
|
data->ext_size = grub_be_to_cpu16 (treehead.head.node_size);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* Lookup the root node of the catalog tree. */
|
2009-06-10 21:04:23 +00:00
|
|
|
|
first_block = ((grub_be_to_cpu16 (data->sblock.catalog_recs[0].first_block)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
* GRUB_HFS_BLKS)
|
|
|
|
|
+ grub_be_to_cpu16 (data->sblock.first_block));
|
|
|
|
|
if (grub_disk_read (data->disk, first_block, 0,
|
2009-05-13 18:58:38 +00:00
|
|
|
|
sizeof (treehead), &treehead))
|
2004-08-18 09:00:01 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
data->cat_root = grub_be_to_cpu32 (treehead.head.root_node);
|
|
|
|
|
data->cat_size = grub_be_to_cpu16 (treehead.head.node_size);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2015-01-20 13:59:40 +00:00
|
|
|
|
if (data->cat_size == 0
|
|
|
|
|
|| data->blksz < data->cat_size
|
|
|
|
|
|| data->blksz < data->ext_size)
|
|
|
|
|
goto fail;
|
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* Lookup the root directory node in the catalog tree using the
|
|
|
|
|
volume name. */
|
2014-09-22 16:47:10 +00:00
|
|
|
|
key.parent_dir = grub_cpu_to_be32_compile_time (1);
|
2004-08-18 09:00:01 +00:00
|
|
|
|
key.strlen = data->sblock.volname[0];
|
2006-04-26 21:58:36 +00:00
|
|
|
|
grub_strcpy ((char *) key.str, (char *) (data->sblock.volname + 1));
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
if (grub_hfs_find_node (data, (char *) &key, data->cat_root,
|
|
|
|
|
0, (char *) &dir, sizeof (dir)) == 0)
|
|
|
|
|
{
|
2009-12-25 00:04:51 +00:00
|
|
|
|
grub_error (GRUB_ERR_BAD_FS, "cannot find the HFS root directory");
|
2004-08-18 09:00:01 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
if (grub_errno)
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
data->rootdir = grub_be_to_cpu32 (dir.dirid);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
return data;
|
2004-11-01 16:14:16 +00:00
|
|
|
|
fail:
|
|
|
|
|
grub_free (data);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-11-01 16:14:16 +00:00
|
|
|
|
if (grub_errno == GRUB_ERR_OUT_OF_RANGE)
|
2009-12-25 00:04:51 +00:00
|
|
|
|
grub_error (GRUB_ERR_BAD_FS, "not a HFS filesystem");
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-11-01 16:14:16 +00:00
|
|
|
|
return 0;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-03-31 00:22:08 +00:00
|
|
|
|
/* Compare the K1 and K2 catalog file keys using HFS character ordering. */
|
2009-03-11 21:51:16 +00:00
|
|
|
|
static int
|
2013-03-02 10:31:00 +00:00
|
|
|
|
grub_hfs_cmp_catkeys (const struct grub_hfs_catalog_key *k1,
|
|
|
|
|
const struct grub_hfs_catalog_key *k2)
|
2009-03-11 21:51:16 +00:00
|
|
|
|
{
|
|
|
|
|
/* Taken from hfsutils 3.2.6 and converted to a readable form */
|
|
|
|
|
static const unsigned char hfs_charorder[256] = {
|
|
|
|
|
[0x00] = 0,
|
|
|
|
|
[0x01] = 1,
|
|
|
|
|
[0x02] = 2,
|
|
|
|
|
[0x03] = 3,
|
|
|
|
|
[0x04] = 4,
|
|
|
|
|
[0x05] = 5,
|
|
|
|
|
[0x06] = 6,
|
|
|
|
|
[0x07] = 7,
|
|
|
|
|
[0x08] = 8,
|
|
|
|
|
[0x09] = 9,
|
|
|
|
|
[0x0A] = 10,
|
|
|
|
|
[0x0B] = 11,
|
|
|
|
|
[0x0C] = 12,
|
|
|
|
|
[0x0D] = 13,
|
|
|
|
|
[0x0E] = 14,
|
|
|
|
|
[0x0F] = 15,
|
|
|
|
|
[0x10] = 16,
|
|
|
|
|
[0x11] = 17,
|
|
|
|
|
[0x12] = 18,
|
|
|
|
|
[0x13] = 19,
|
|
|
|
|
[0x14] = 20,
|
|
|
|
|
[0x15] = 21,
|
|
|
|
|
[0x16] = 22,
|
|
|
|
|
[0x17] = 23,
|
|
|
|
|
[0x18] = 24,
|
|
|
|
|
[0x19] = 25,
|
|
|
|
|
[0x1A] = 26,
|
|
|
|
|
[0x1B] = 27,
|
|
|
|
|
[0x1C] = 28,
|
|
|
|
|
[0x1D] = 29,
|
|
|
|
|
[0x1E] = 30,
|
|
|
|
|
[0x1F] = 31,
|
|
|
|
|
[' '] = 32, [0xCA] = 32,
|
|
|
|
|
['!'] = 33,
|
|
|
|
|
['"'] = 34,
|
|
|
|
|
[0xD2] = 35,
|
|
|
|
|
[0xD3] = 36,
|
|
|
|
|
[0xC7] = 37,
|
|
|
|
|
[0xC8] = 38,
|
|
|
|
|
['#'] = 39,
|
|
|
|
|
['$'] = 40,
|
|
|
|
|
['%'] = 41,
|
|
|
|
|
['&'] = 42,
|
|
|
|
|
['\''] = 43,
|
|
|
|
|
[0xD4] = 44,
|
|
|
|
|
[0xD5] = 45,
|
|
|
|
|
['('] = 46,
|
|
|
|
|
[')'] = 47,
|
|
|
|
|
['*'] = 48,
|
|
|
|
|
['+'] = 49,
|
|
|
|
|
[','] = 50,
|
|
|
|
|
['-'] = 51,
|
|
|
|
|
['.'] = 52,
|
|
|
|
|
['/'] = 53,
|
|
|
|
|
['0'] = 54,
|
|
|
|
|
['1'] = 55,
|
|
|
|
|
['2'] = 56,
|
|
|
|
|
['3'] = 57,
|
|
|
|
|
['4'] = 58,
|
|
|
|
|
['5'] = 59,
|
|
|
|
|
['6'] = 60,
|
|
|
|
|
['7'] = 61,
|
|
|
|
|
['8'] = 62,
|
|
|
|
|
['9'] = 63,
|
|
|
|
|
[':'] = 64,
|
|
|
|
|
[';'] = 65,
|
|
|
|
|
['<'] = 66,
|
|
|
|
|
['='] = 67,
|
|
|
|
|
['>'] = 68,
|
|
|
|
|
['?'] = 69,
|
|
|
|
|
['@'] = 70,
|
|
|
|
|
['A'] = 71, ['a'] = 71,
|
|
|
|
|
[0x88] = 72, [0xCB] = 72,
|
|
|
|
|
[0x80] = 73, [0x8A] = 73,
|
|
|
|
|
[0x8B] = 74, [0xCC] = 74,
|
|
|
|
|
[0x81] = 75, [0x8C] = 75,
|
|
|
|
|
[0xAE] = 76, [0xBE] = 76,
|
|
|
|
|
['`'] = 77,
|
|
|
|
|
[0x87] = 78,
|
|
|
|
|
[0x89] = 79,
|
|
|
|
|
[0xBB] = 80,
|
|
|
|
|
['B'] = 81, ['b'] = 81,
|
|
|
|
|
['C'] = 82, ['c'] = 82,
|
|
|
|
|
[0x82] = 83, [0x8D] = 83,
|
|
|
|
|
['D'] = 84, ['d'] = 84,
|
|
|
|
|
['E'] = 85, ['e'] = 85,
|
|
|
|
|
[0x83] = 86, [0x8E] = 86,
|
|
|
|
|
[0x8F] = 87,
|
|
|
|
|
[0x90] = 88,
|
|
|
|
|
[0x91] = 89,
|
|
|
|
|
['F'] = 90, ['f'] = 90,
|
|
|
|
|
['G'] = 91, ['g'] = 91,
|
|
|
|
|
['H'] = 92, ['h'] = 92,
|
|
|
|
|
['I'] = 93, ['i'] = 93,
|
|
|
|
|
[0x92] = 94,
|
|
|
|
|
[0x93] = 95,
|
|
|
|
|
[0x94] = 96,
|
|
|
|
|
[0x95] = 97,
|
|
|
|
|
['J'] = 98, ['j'] = 98,
|
|
|
|
|
['K'] = 99, ['k'] = 99,
|
|
|
|
|
['L'] = 100, ['l'] = 100,
|
|
|
|
|
['M'] = 101, ['m'] = 101,
|
|
|
|
|
['N'] = 102, ['n'] = 102,
|
|
|
|
|
[0x84] = 103, [0x96] = 103,
|
|
|
|
|
['O'] = 104, ['o'] = 104,
|
|
|
|
|
[0x85] = 105, [0x9A] = 105,
|
|
|
|
|
[0x9B] = 106, [0xCD] = 106,
|
|
|
|
|
[0xAF] = 107, [0xBF] = 107,
|
|
|
|
|
[0xCE] = 108, [0xCF] = 108,
|
|
|
|
|
[0x97] = 109,
|
|
|
|
|
[0x98] = 110,
|
|
|
|
|
[0x99] = 111,
|
|
|
|
|
[0xBC] = 112,
|
|
|
|
|
['P'] = 113, ['p'] = 113,
|
|
|
|
|
['Q'] = 114, ['q'] = 114,
|
|
|
|
|
['R'] = 115, ['r'] = 115,
|
|
|
|
|
['S'] = 116, ['s'] = 116,
|
|
|
|
|
[0xA7] = 117,
|
|
|
|
|
['T'] = 118, ['t'] = 118,
|
|
|
|
|
['U'] = 119, ['u'] = 119,
|
|
|
|
|
[0x86] = 120, [0x9F] = 120,
|
|
|
|
|
[0x9C] = 121,
|
|
|
|
|
[0x9D] = 122,
|
|
|
|
|
[0x9E] = 123,
|
|
|
|
|
['V'] = 124, ['v'] = 124,
|
|
|
|
|
['W'] = 125, ['w'] = 125,
|
|
|
|
|
['X'] = 126, ['x'] = 126,
|
|
|
|
|
['Y'] = 127, ['y'] = 127,
|
|
|
|
|
[0xD8] = 128,
|
|
|
|
|
['Z'] = 129, ['z'] = 129,
|
|
|
|
|
['['] = 130,
|
|
|
|
|
['\\'] = 131,
|
|
|
|
|
[']'] = 132,
|
|
|
|
|
['^'] = 133,
|
|
|
|
|
['_'] = 134,
|
|
|
|
|
['{'] = 135,
|
|
|
|
|
['|'] = 136,
|
|
|
|
|
['}'] = 137,
|
|
|
|
|
['~'] = 138,
|
|
|
|
|
[0x7F] = 139,
|
|
|
|
|
[0xA0] = 140,
|
|
|
|
|
[0xA1] = 141,
|
|
|
|
|
[0xA2] = 142,
|
|
|
|
|
[0xA3] = 143,
|
|
|
|
|
[0xA4] = 144,
|
|
|
|
|
[0xA5] = 145,
|
|
|
|
|
[0xA6] = 146,
|
|
|
|
|
[0xA8] = 147,
|
|
|
|
|
[0xA9] = 148,
|
|
|
|
|
[0xAA] = 149,
|
|
|
|
|
[0xAB] = 150,
|
|
|
|
|
[0xAC] = 151,
|
|
|
|
|
[0xAD] = 152,
|
|
|
|
|
[0xB0] = 153,
|
|
|
|
|
[0xB1] = 154,
|
|
|
|
|
[0xB2] = 155,
|
|
|
|
|
[0xB3] = 156,
|
|
|
|
|
[0xB4] = 157,
|
|
|
|
|
[0xB5] = 158,
|
|
|
|
|
[0xB6] = 159,
|
|
|
|
|
[0xB7] = 160,
|
|
|
|
|
[0xB8] = 161,
|
|
|
|
|
[0xB9] = 162,
|
|
|
|
|
[0xBA] = 163,
|
|
|
|
|
[0xBD] = 164,
|
|
|
|
|
[0xC0] = 165,
|
|
|
|
|
[0xC1] = 166,
|
|
|
|
|
[0xC2] = 167,
|
|
|
|
|
[0xC3] = 168,
|
|
|
|
|
[0xC4] = 169,
|
|
|
|
|
[0xC5] = 170,
|
|
|
|
|
[0xC6] = 171,
|
|
|
|
|
[0xC9] = 172,
|
|
|
|
|
[0xD0] = 173,
|
|
|
|
|
[0xD1] = 174,
|
|
|
|
|
[0xD6] = 175,
|
|
|
|
|
[0xD7] = 176,
|
|
|
|
|
[0xD9] = 177,
|
|
|
|
|
[0xDA] = 178,
|
|
|
|
|
[0xDB] = 179,
|
|
|
|
|
[0xDC] = 180,
|
|
|
|
|
[0xDD] = 181,
|
|
|
|
|
[0xDE] = 182,
|
|
|
|
|
[0xDF] = 183,
|
|
|
|
|
[0xE0] = 184,
|
|
|
|
|
[0xE1] = 185,
|
|
|
|
|
[0xE2] = 186,
|
|
|
|
|
[0xE3] = 187,
|
|
|
|
|
[0xE4] = 188,
|
|
|
|
|
[0xE5] = 189,
|
|
|
|
|
[0xE6] = 190,
|
|
|
|
|
[0xE7] = 191,
|
|
|
|
|
[0xE8] = 192,
|
|
|
|
|
[0xE9] = 193,
|
|
|
|
|
[0xEA] = 194,
|
|
|
|
|
[0xEB] = 195,
|
|
|
|
|
[0xEC] = 196,
|
|
|
|
|
[0xED] = 197,
|
|
|
|
|
[0xEE] = 198,
|
|
|
|
|
[0xEF] = 199,
|
|
|
|
|
[0xF0] = 200,
|
|
|
|
|
[0xF1] = 201,
|
|
|
|
|
[0xF2] = 202,
|
|
|
|
|
[0xF3] = 203,
|
|
|
|
|
[0xF4] = 204,
|
|
|
|
|
[0xF5] = 205,
|
|
|
|
|
[0xF6] = 206,
|
|
|
|
|
[0xF7] = 207,
|
|
|
|
|
[0xF8] = 208,
|
|
|
|
|
[0xF9] = 209,
|
|
|
|
|
[0xFA] = 210,
|
|
|
|
|
[0xFB] = 211,
|
|
|
|
|
[0xFC] = 212,
|
|
|
|
|
[0xFD] = 213,
|
|
|
|
|
[0xFE] = 214,
|
|
|
|
|
[0xFF] = 215,
|
|
|
|
|
};
|
2009-03-31 00:22:08 +00:00
|
|
|
|
int i;
|
|
|
|
|
int cmp;
|
|
|
|
|
int minlen = (k1->strlen < k2->strlen) ? k1->strlen : k2->strlen;
|
2009-03-11 21:51:16 +00:00
|
|
|
|
|
2009-03-31 00:22:08 +00:00
|
|
|
|
cmp = (grub_be_to_cpu32 (k1->parent_dir) - grub_be_to_cpu32 (k2->parent_dir));
|
|
|
|
|
if (cmp != 0)
|
|
|
|
|
return cmp;
|
2009-03-11 21:51:16 +00:00
|
|
|
|
|
2009-03-31 00:22:08 +00:00
|
|
|
|
for (i = 0; i < minlen; i++)
|
2009-03-11 21:51:16 +00:00
|
|
|
|
{
|
2009-03-31 00:22:08 +00:00
|
|
|
|
cmp = (hfs_charorder[k1->str[i]] - hfs_charorder[k2->str[i]]);
|
|
|
|
|
if (cmp != 0)
|
|
|
|
|
return cmp;
|
2009-03-11 21:51:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-03-31 00:22:08 +00:00
|
|
|
|
/* Shorter strings precede long ones. */
|
|
|
|
|
return (k1->strlen - k2->strlen);
|
2004-08-18 09:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Compare the K1 and K2 extent overflow file keys. */
|
|
|
|
|
static int
|
2013-03-02 10:31:00 +00:00
|
|
|
|
grub_hfs_cmp_extkeys (const struct grub_hfs_extent_key *k1,
|
|
|
|
|
const struct grub_hfs_extent_key *k2)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
|
|
|
|
int cmp = k1->forktype - k2->forktype;
|
|
|
|
|
if (cmp == 0)
|
|
|
|
|
cmp = grub_be_to_cpu32 (k1->fileid) - grub_be_to_cpu32 (k2->fileid);
|
|
|
|
|
if (cmp == 0)
|
2009-06-10 21:04:23 +00:00
|
|
|
|
cmp = (grub_be_to_cpu16 (k1->first_block)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
- grub_be_to_cpu16 (k2->first_block));
|
|
|
|
|
return cmp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Iterate the records in the node with index IDX in the mounted HFS
|
|
|
|
|
filesystem DATA. This node holds data of the type TYPE (0 =
|
|
|
|
|
catalog node, 1 = extent overflow node). If this is set, continue
|
|
|
|
|
iterating to the next node. For every records, call NODE_HOOK. */
|
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_hfs_iterate_records (struct grub_hfs_data *data, int type, int idx,
|
|
|
|
|
int this, int (*node_hook) (struct grub_hfs_node *hnd,
|
2013-03-02 10:31:00 +00:00
|
|
|
|
struct grub_hfs_record *,
|
|
|
|
|
void *hook_arg),
|
|
|
|
|
void *hook_arg)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
2013-10-20 15:24:19 +00:00
|
|
|
|
grub_size_t nodesize = type == 0 ? data->cat_size : data->ext_size;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-10-20 15:24:19 +00:00
|
|
|
|
union node_union
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
|
|
|
|
struct grub_hfs_node node;
|
2013-10-20 15:24:19 +00:00
|
|
|
|
char rawnode[0];
|
|
|
|
|
grub_uint16_t offsets[0];
|
|
|
|
|
} *node;
|
|
|
|
|
|
|
|
|
|
if (nodesize < sizeof (struct grub_hfs_node))
|
|
|
|
|
nodesize = sizeof (struct grub_hfs_node);
|
|
|
|
|
|
|
|
|
|
node = grub_malloc (nodesize);
|
|
|
|
|
if (!node)
|
|
|
|
|
return grub_errno;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
struct grub_hfs_extent *dat;
|
|
|
|
|
int blk;
|
2015-01-25 10:32:29 +00:00
|
|
|
|
grub_uint16_t reccnt;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
|
|
|
|
dat = (struct grub_hfs_extent *) (type == 0
|
2004-08-18 09:00:01 +00:00
|
|
|
|
? (&data->sblock.catalog_recs)
|
|
|
|
|
: (&data->sblock.extent_recs));
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* Read the node into memory. */
|
|
|
|
|
blk = grub_hfs_block (data, dat,
|
2008-01-23 20:21:18 +00:00
|
|
|
|
(type == 0) ? GRUB_HFS_CNID_CAT : GRUB_HFS_CNID_EXT,
|
|
|
|
|
idx / (data->blksz / nodesize), 0);
|
2004-08-18 09:00:01 +00:00
|
|
|
|
blk += (idx % (data->blksz / nodesize));
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-10-20 15:24:19 +00:00
|
|
|
|
if (grub_errno || grub_disk_read (data->disk, blk, 0,
|
|
|
|
|
nodesize, node))
|
|
|
|
|
{
|
|
|
|
|
grub_free (node);
|
|
|
|
|
return grub_errno;
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2015-01-25 10:32:29 +00:00
|
|
|
|
reccnt = grub_be_to_cpu16 (node->node.reccnt);
|
|
|
|
|
if (reccnt > (nodesize >> 1))
|
|
|
|
|
reccnt = (nodesize >> 1);
|
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* Iterate over all records in this node. */
|
2015-01-25 10:32:29 +00:00
|
|
|
|
for (i = 0; i < reccnt; i++)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
|
|
|
|
int pos = (nodesize >> 1) - 1 - i;
|
|
|
|
|
struct pointer
|
|
|
|
|
{
|
|
|
|
|
grub_uint8_t keylen;
|
|
|
|
|
grub_uint8_t key;
|
2013-12-15 13:14:30 +00:00
|
|
|
|
} GRUB_PACKED *pnt;
|
2015-01-25 10:32:29 +00:00
|
|
|
|
grub_uint16_t off = grub_be_to_cpu16 (node->offsets[pos]);
|
|
|
|
|
if (off > nodesize - sizeof(*pnt))
|
|
|
|
|
continue;
|
|
|
|
|
pnt = (struct pointer *) (off + node->rawnode);
|
|
|
|
|
if (nodesize < (grub_size_t) off + pnt->keylen + 1)
|
|
|
|
|
continue;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
|
|
|
|
struct grub_hfs_record rec =
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
|
|
|
|
&pnt->key,
|
|
|
|
|
pnt->keylen,
|
|
|
|
|
&pnt->key + pnt->keylen +(pnt->keylen + 1) % 2,
|
2015-01-25 10:32:29 +00:00
|
|
|
|
nodesize - off - pnt->keylen - 1
|
2004-08-18 09:00:01 +00:00
|
|
|
|
};
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-10-20 15:24:19 +00:00
|
|
|
|
if (node_hook (&node->node, &rec, hook_arg))
|
|
|
|
|
{
|
|
|
|
|
grub_free (node);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2004-08-18 09:00:01 +00:00
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-10-20 15:24:19 +00:00
|
|
|
|
idx = grub_be_to_cpu32 (node->node.next);
|
2004-08-18 09:00:01 +00:00
|
|
|
|
} while (idx && this);
|
2013-10-20 15:24:19 +00:00
|
|
|
|
grub_free (node);
|
2004-08-18 09:00:01 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
struct grub_hfs_find_node_node_found_ctx
|
|
|
|
|
{
|
|
|
|
|
int found;
|
|
|
|
|
int isleaf;
|
|
|
|
|
int done;
|
|
|
|
|
int type;
|
|
|
|
|
const char *key;
|
|
|
|
|
char *datar;
|
|
|
|
|
grub_size_t datalen;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
grub_hfs_find_node_node_found (struct grub_hfs_node *hnd, struct grub_hfs_record *rec,
|
|
|
|
|
void *hook_arg)
|
|
|
|
|
{
|
|
|
|
|
struct grub_hfs_find_node_node_found_ctx *ctx = hook_arg;
|
|
|
|
|
int cmp = 1;
|
|
|
|
|
|
|
|
|
|
if (ctx->type == 0)
|
|
|
|
|
cmp = grub_hfs_cmp_catkeys (rec->key, (const void *) ctx->key);
|
|
|
|
|
else
|
|
|
|
|
cmp = grub_hfs_cmp_extkeys (rec->key, (const void *) ctx->key);
|
|
|
|
|
|
|
|
|
|
/* If the key is smaller or equal to the current node, mark the
|
|
|
|
|
entry. In case of a non-leaf mode it will be used to lookup
|
|
|
|
|
the rest of the tree. */
|
|
|
|
|
if (cmp <= 0)
|
|
|
|
|
ctx->found = grub_be_to_cpu32 (grub_get_unaligned32 (rec->data));
|
|
|
|
|
else /* The key can not be found in the tree. */
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
/* Check if this node is a leaf node. */
|
|
|
|
|
if (hnd->type == GRUB_HFS_NODE_LEAF)
|
|
|
|
|
{
|
|
|
|
|
ctx->isleaf = 1;
|
|
|
|
|
|
|
|
|
|
/* Found it!!!! */
|
|
|
|
|
if (cmp == 0)
|
|
|
|
|
{
|
|
|
|
|
ctx->done = 1;
|
|
|
|
|
|
|
|
|
|
grub_memcpy (ctx->datar, rec->data,
|
|
|
|
|
rec->datalen < ctx->datalen ? rec->datalen : ctx->datalen);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
|
|
|
|
/* Lookup a record in the mounted filesystem DATA using the key KEY.
|
|
|
|
|
The index of the node on top of the tree is IDX. The tree is of
|
|
|
|
|
the type TYPE (0 = catalog node, 1 = extent overflow node). Return
|
|
|
|
|
the data in DATAR with a maximum length of DATALEN. */
|
|
|
|
|
static int
|
|
|
|
|
grub_hfs_find_node (struct grub_hfs_data *data, char *key,
|
2013-03-02 10:31:00 +00:00
|
|
|
|
grub_uint32_t idx, int type, char *datar, grub_size_t datalen)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
2013-03-02 10:31:00 +00:00
|
|
|
|
struct grub_hfs_find_node_node_found_ctx ctx =
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
2013-03-02 10:31:00 +00:00
|
|
|
|
.found = -1,
|
|
|
|
|
.isleaf = 0,
|
|
|
|
|
.done = 0,
|
|
|
|
|
.type = type,
|
|
|
|
|
.key = key,
|
|
|
|
|
.datar = datar,
|
|
|
|
|
.datalen = datalen
|
|
|
|
|
};
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2008-01-23 20:21:18 +00:00
|
|
|
|
do
|
|
|
|
|
{
|
2013-03-02 10:31:00 +00:00
|
|
|
|
ctx.found = -1;
|
2008-01-23 20:21:18 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
if (grub_hfs_iterate_records (data, type, idx, 0, grub_hfs_find_node_node_found, &ctx))
|
2008-01-23 20:21:18 +00:00
|
|
|
|
return 0;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
if (ctx.found == -1)
|
2008-01-23 20:21:18 +00:00
|
|
|
|
return 0;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
idx = ctx.found;
|
|
|
|
|
} while (! ctx.isleaf);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
return ctx.done;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
struct grub_hfs_iterate_dir_node_found_ctx
|
|
|
|
|
{
|
|
|
|
|
grub_uint32_t dir_be;
|
|
|
|
|
int found;
|
|
|
|
|
int isleaf;
|
|
|
|
|
grub_uint32_t next;
|
|
|
|
|
int (*hook) (struct grub_hfs_record *, void *hook_arg);
|
|
|
|
|
void *hook_arg;
|
|
|
|
|
};
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
static int
|
|
|
|
|
grub_hfs_iterate_dir_node_found (struct grub_hfs_node *hnd, struct grub_hfs_record *rec,
|
|
|
|
|
void *hook_arg)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
2013-03-02 10:31:00 +00:00
|
|
|
|
struct grub_hfs_iterate_dir_node_found_ctx *ctx = hook_arg;
|
|
|
|
|
struct grub_hfs_catalog_key *ckey = rec->key;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* The lowest key possible with DIR as root directory. */
|
2013-03-02 10:31:00 +00:00
|
|
|
|
const struct grub_hfs_catalog_key key = {0, ctx->dir_be, 0, ""};
|
2004-08-24 20:32:47 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
if (grub_hfs_cmp_catkeys (rec->key, &key) <= 0)
|
|
|
|
|
ctx->found = grub_be_to_cpu32 (grub_get_unaligned32 (rec->data));
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
if (hnd->type == 0xFF && ckey->strlen > 0)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
2013-03-02 10:31:00 +00:00
|
|
|
|
ctx->isleaf = 1;
|
|
|
|
|
ctx->next = grub_be_to_cpu32 (hnd->next);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
/* An entry was found. */
|
|
|
|
|
if (ckey->parent_dir == ctx->dir_be)
|
|
|
|
|
return ctx->hook (rec, ctx->hook_arg);
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
static int
|
|
|
|
|
grub_hfs_iterate_dir_it_dir (struct grub_hfs_node *hnd __attribute ((unused)),
|
|
|
|
|
struct grub_hfs_record *rec,
|
|
|
|
|
void *hook_arg)
|
|
|
|
|
{
|
|
|
|
|
struct grub_hfs_catalog_key *ckey = rec->key;
|
|
|
|
|
struct grub_hfs_iterate_dir_node_found_ctx *ctx = hook_arg;
|
|
|
|
|
|
|
|
|
|
/* Stop when the entries do not match anymore. */
|
|
|
|
|
if (ckey->parent_dir != ctx->dir_be)
|
|
|
|
|
return 1;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
return ctx->hook (rec, ctx->hook_arg);
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
/* Iterate over the directory with the id DIR. The tree is searched
|
|
|
|
|
starting with the node ROOT_IDX. For every entry in this directory
|
|
|
|
|
call HOOK. */
|
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_hfs_iterate_dir (struct grub_hfs_data *data, grub_uint32_t root_idx,
|
|
|
|
|
grub_uint32_t dir, int (*hook) (struct grub_hfs_record *, void *hook_arg),
|
|
|
|
|
void *hook_arg)
|
|
|
|
|
{
|
|
|
|
|
struct grub_hfs_iterate_dir_node_found_ctx ctx =
|
|
|
|
|
{
|
|
|
|
|
.dir_be = grub_cpu_to_be32 (dir),
|
|
|
|
|
.found = -1,
|
|
|
|
|
.isleaf = 0,
|
|
|
|
|
.next = 0,
|
|
|
|
|
.hook = hook,
|
|
|
|
|
.hook_arg = hook_arg
|
|
|
|
|
};
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2008-01-23 20:21:18 +00:00
|
|
|
|
do
|
|
|
|
|
{
|
2013-03-02 10:31:00 +00:00
|
|
|
|
ctx.found = -1;
|
2008-01-23 20:21:18 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
if (grub_hfs_iterate_records (data, 0, root_idx, 0, grub_hfs_iterate_dir_node_found, &ctx))
|
2008-01-23 20:21:18 +00:00
|
|
|
|
return grub_errno;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
if (ctx.found == -1)
|
2008-01-23 20:21:18 +00:00
|
|
|
|
return 0;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
root_idx = ctx.found;
|
|
|
|
|
} while (! ctx.isleaf);
|
2008-01-23 20:21:18 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* If there was a matching record in this leaf node, continue the
|
|
|
|
|
iteration until the last record was found. */
|
2013-03-02 10:31:00 +00:00
|
|
|
|
grub_hfs_iterate_records (data, 0, ctx.next, 1, grub_hfs_iterate_dir_it_dir, &ctx);
|
2008-01-23 20:21:18 +00:00
|
|
|
|
return grub_errno;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-24 19:20:41 +00:00
|
|
|
|
#define MAX_UTF8_PER_MAC_ROMAN 3
|
|
|
|
|
|
|
|
|
|
static const char macroman[0x80][MAX_UTF8_PER_MAC_ROMAN + 1] =
|
|
|
|
|
{
|
|
|
|
|
/* 80 */ "\xc3\x84",
|
|
|
|
|
/* 81 */ "\xc3\x85",
|
|
|
|
|
/* 82 */ "\xc3\x87",
|
|
|
|
|
/* 83 */ "\xc3\x89",
|
|
|
|
|
/* 84 */ "\xc3\x91",
|
|
|
|
|
/* 85 */ "\xc3\x96",
|
|
|
|
|
/* 86 */ "\xc3\x9c",
|
|
|
|
|
/* 87 */ "\xc3\xa1",
|
|
|
|
|
/* 88 */ "\xc3\xa0",
|
|
|
|
|
/* 89 */ "\xc3\xa2",
|
|
|
|
|
/* 8A */ "\xc3\xa4",
|
|
|
|
|
/* 8B */ "\xc3\xa3",
|
|
|
|
|
/* 8C */ "\xc3\xa5",
|
|
|
|
|
/* 8D */ "\xc3\xa7",
|
|
|
|
|
/* 8E */ "\xc3\xa9",
|
|
|
|
|
/* 8F */ "\xc3\xa8",
|
|
|
|
|
/* 90 */ "\xc3\xaa",
|
|
|
|
|
/* 91 */ "\xc3\xab",
|
|
|
|
|
/* 92 */ "\xc3\xad",
|
|
|
|
|
/* 93 */ "\xc3\xac",
|
|
|
|
|
/* 94 */ "\xc3\xae",
|
|
|
|
|
/* 95 */ "\xc3\xaf",
|
|
|
|
|
/* 96 */ "\xc3\xb1",
|
|
|
|
|
/* 97 */ "\xc3\xb3",
|
|
|
|
|
/* 98 */ "\xc3\xb2",
|
|
|
|
|
/* 99 */ "\xc3\xb4",
|
|
|
|
|
/* 9A */ "\xc3\xb6",
|
|
|
|
|
/* 9B */ "\xc3\xb5",
|
|
|
|
|
/* 9C */ "\xc3\xba",
|
|
|
|
|
/* 9D */ "\xc3\xb9",
|
|
|
|
|
/* 9E */ "\xc3\xbb",
|
|
|
|
|
/* 9F */ "\xc3\xbc",
|
|
|
|
|
/* A0 */ "\xe2\x80\xa0",
|
|
|
|
|
/* A1 */ "\xc2\xb0",
|
|
|
|
|
/* A2 */ "\xc2\xa2",
|
|
|
|
|
/* A3 */ "\xc2\xa3",
|
|
|
|
|
/* A4 */ "\xc2\xa7",
|
|
|
|
|
/* A5 */ "\xe2\x80\xa2",
|
|
|
|
|
/* A6 */ "\xc2\xb6",
|
|
|
|
|
/* A7 */ "\xc3\x9f",
|
|
|
|
|
/* A8 */ "\xc2\xae",
|
|
|
|
|
/* A9 */ "\xc2\xa9",
|
|
|
|
|
/* AA */ "\xe2\x84\xa2",
|
|
|
|
|
/* AB */ "\xc2\xb4",
|
|
|
|
|
/* AC */ "\xc2\xa8",
|
|
|
|
|
/* AD */ "\xe2\x89\xa0",
|
|
|
|
|
/* AE */ "\xc3\x86",
|
|
|
|
|
/* AF */ "\xc3\x98",
|
|
|
|
|
/* B0 */ "\xe2\x88\x9e",
|
|
|
|
|
/* B1 */ "\xc2\xb1",
|
|
|
|
|
/* B2 */ "\xe2\x89\xa4",
|
|
|
|
|
/* B3 */ "\xe2\x89\xa5",
|
|
|
|
|
/* B4 */ "\xc2\xa5",
|
|
|
|
|
/* B5 */ "\xc2\xb5",
|
|
|
|
|
/* B6 */ "\xe2\x88\x82",
|
|
|
|
|
/* B7 */ "\xe2\x88\x91",
|
|
|
|
|
/* B8 */ "\xe2\x88\x8f",
|
|
|
|
|
/* B9 */ "\xcf\x80",
|
|
|
|
|
/* BA */ "\xe2\x88\xab",
|
|
|
|
|
/* BB */ "\xc2\xaa",
|
|
|
|
|
/* BC */ "\xc2\xba",
|
|
|
|
|
/* BD */ "\xce\xa9",
|
|
|
|
|
/* BE */ "\xc3\xa6",
|
|
|
|
|
/* BF */ "\xc3\xb8",
|
|
|
|
|
/* C0 */ "\xc2\xbf",
|
|
|
|
|
/* C1 */ "\xc2\xa1",
|
|
|
|
|
/* C2 */ "\xc2\xac",
|
|
|
|
|
/* C3 */ "\xe2\x88\x9a",
|
|
|
|
|
/* C4 */ "\xc6\x92",
|
|
|
|
|
/* C5 */ "\xe2\x89\x88",
|
|
|
|
|
/* C6 */ "\xe2\x88\x86",
|
|
|
|
|
/* C7 */ "\xc2\xab",
|
|
|
|
|
/* C8 */ "\xc2\xbb",
|
|
|
|
|
/* C9 */ "\xe2\x80\xa6",
|
|
|
|
|
/* CA */ "\xc2\xa0",
|
|
|
|
|
/* CB */ "\xc3\x80",
|
|
|
|
|
/* CC */ "\xc3\x83",
|
|
|
|
|
/* CD */ "\xc3\x95",
|
|
|
|
|
/* CE */ "\xc5\x92",
|
|
|
|
|
/* CF */ "\xc5\x93",
|
|
|
|
|
/* D0 */ "\xe2\x80\x93",
|
|
|
|
|
/* D1 */ "\xe2\x80\x94",
|
|
|
|
|
/* D2 */ "\xe2\x80\x9c",
|
|
|
|
|
/* D3 */ "\xe2\x80\x9d",
|
|
|
|
|
/* D4 */ "\xe2\x80\x98",
|
|
|
|
|
/* D5 */ "\xe2\x80\x99",
|
|
|
|
|
/* D6 */ "\xc3\xb7",
|
|
|
|
|
/* D7 */ "\xe2\x97\x8a",
|
|
|
|
|
/* D8 */ "\xc3\xbf",
|
|
|
|
|
/* D9 */ "\xc5\xb8",
|
|
|
|
|
/* DA */ "\xe2\x81\x84",
|
|
|
|
|
/* DB */ "\xe2\x82\xac",
|
|
|
|
|
/* DC */ "\xe2\x80\xb9",
|
|
|
|
|
/* DD */ "\xe2\x80\xba",
|
|
|
|
|
/* DE */ "\xef\xac\x81",
|
|
|
|
|
/* DF */ "\xef\xac\x82",
|
|
|
|
|
/* E0 */ "\xe2\x80\xa1",
|
|
|
|
|
/* E1 */ "\xc2\xb7",
|
|
|
|
|
/* E2 */ "\xe2\x80\x9a",
|
|
|
|
|
/* E3 */ "\xe2\x80\x9e",
|
|
|
|
|
/* E4 */ "\xe2\x80\xb0",
|
|
|
|
|
/* E5 */ "\xc3\x82",
|
|
|
|
|
/* E6 */ "\xc3\x8a",
|
|
|
|
|
/* E7 */ "\xc3\x81",
|
|
|
|
|
/* E8 */ "\xc3\x8b",
|
|
|
|
|
/* E9 */ "\xc3\x88",
|
|
|
|
|
/* EA */ "\xc3\x8d",
|
|
|
|
|
/* EB */ "\xc3\x8e",
|
|
|
|
|
/* EC */ "\xc3\x8f",
|
|
|
|
|
/* ED */ "\xc3\x8c",
|
|
|
|
|
/* EE */ "\xc3\x93",
|
|
|
|
|
/* EF */ "\xc3\x94",
|
|
|
|
|
/* F0 */ "\xef\xa3\xbf",
|
|
|
|
|
/* F1 */ "\xc3\x92",
|
|
|
|
|
/* F2 */ "\xc3\x9a",
|
|
|
|
|
/* F3 */ "\xc3\x9b",
|
|
|
|
|
/* F4 */ "\xc3\x99",
|
|
|
|
|
/* F5 */ "\xc4\xb1",
|
|
|
|
|
/* F6 */ "\xcb\x86",
|
|
|
|
|
/* F7 */ "\xcb\x9c",
|
|
|
|
|
/* F8 */ "\xc2\xaf",
|
|
|
|
|
/* F9 */ "\xcb\x98",
|
|
|
|
|
/* FA */ "\xcb\x99",
|
|
|
|
|
/* FB */ "\xcb\x9a",
|
|
|
|
|
/* FC */ "\xc2\xb8",
|
|
|
|
|
/* FD */ "\xcb\x9d",
|
|
|
|
|
/* FE */ "\xcb\x9b",
|
|
|
|
|
/* FF */ "\xcb\x87",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void
|
2012-06-26 12:53:35 +00:00
|
|
|
|
macroman_to_utf8 (char *to, const grub_uint8_t *from, grub_size_t len,
|
|
|
|
|
int translate_slash)
|
2011-12-24 19:20:41 +00:00
|
|
|
|
{
|
|
|
|
|
char *optr = to;
|
|
|
|
|
const grub_uint8_t *iptr;
|
|
|
|
|
|
|
|
|
|
for (iptr = from; iptr < from + len && *iptr; iptr++)
|
|
|
|
|
{
|
2012-01-14 22:34:33 +00:00
|
|
|
|
/* Translate '/' to ':' as per HFS spec. */
|
2012-06-26 12:53:35 +00:00
|
|
|
|
if (*iptr == '/' && translate_slash)
|
2012-01-14 22:34:33 +00:00
|
|
|
|
{
|
|
|
|
|
*optr++ = ':';
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2011-12-24 19:20:41 +00:00
|
|
|
|
if (!(*iptr & 0x80))
|
|
|
|
|
{
|
|
|
|
|
*optr++ = *iptr;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
optr = grub_stpcpy (optr, macroman[*iptr & 0x7f]);
|
|
|
|
|
}
|
|
|
|
|
*optr = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static grub_ssize_t
|
|
|
|
|
utf8_to_macroman (grub_uint8_t *to, const char *from)
|
|
|
|
|
{
|
|
|
|
|
grub_uint8_t *end = to + 31;
|
|
|
|
|
grub_uint8_t *optr = to;
|
|
|
|
|
const char *iptr = from;
|
|
|
|
|
|
|
|
|
|
while (*iptr && optr < end)
|
|
|
|
|
{
|
|
|
|
|
int i, clen;
|
2012-01-14 22:34:33 +00:00
|
|
|
|
/* Translate ':' to '/' as per HFS spec. */
|
|
|
|
|
if (*iptr == ':')
|
|
|
|
|
{
|
|
|
|
|
*optr++ = '/';
|
|
|
|
|
iptr++;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2011-12-24 19:20:41 +00:00
|
|
|
|
if (!(*iptr & 0x80))
|
|
|
|
|
{
|
|
|
|
|
*optr++ = *iptr++;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
clen = 2;
|
|
|
|
|
if ((*iptr & 0xf0) == 0xe0)
|
|
|
|
|
clen++;
|
|
|
|
|
for (i = 0; i < 0x80; i++)
|
|
|
|
|
if (grub_memcmp (macroman[i], iptr, clen) == 0)
|
|
|
|
|
break;
|
|
|
|
|
if (i == 0x80)
|
|
|
|
|
break;
|
|
|
|
|
*optr++ = i | 0x80;
|
|
|
|
|
iptr += clen;
|
|
|
|
|
}
|
|
|
|
|
/* Too long or not encodable. */
|
|
|
|
|
if (*iptr)
|
|
|
|
|
return -1;
|
|
|
|
|
return optr - to;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-27 10:50:22 +00:00
|
|
|
|
union grub_hfs_anyrec {
|
|
|
|
|
struct grub_hfs_filerec frec;
|
|
|
|
|
struct grub_hfs_dirrec dir;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct grub_fshelp_node
|
|
|
|
|
{
|
|
|
|
|
struct grub_hfs_data *data;
|
|
|
|
|
union grub_hfs_anyrec fdrec;
|
|
|
|
|
grub_uint32_t inode;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
|
lookup_file (grub_fshelp_node_t dir,
|
|
|
|
|
const char *name,
|
|
|
|
|
grub_fshelp_node_t *foundnode,
|
|
|
|
|
enum grub_fshelp_filetype *foundtype)
|
|
|
|
|
{
|
|
|
|
|
struct grub_hfs_catalog_key key;
|
|
|
|
|
grub_ssize_t slen;
|
|
|
|
|
union grub_hfs_anyrec fdrec;
|
|
|
|
|
|
|
|
|
|
key.parent_dir = grub_cpu_to_be32 (dir->inode);
|
|
|
|
|
slen = utf8_to_macroman (key.str, name);
|
|
|
|
|
if (slen < 0)
|
|
|
|
|
/* Not found */
|
|
|
|
|
return GRUB_ERR_NONE;
|
|
|
|
|
key.strlen = slen;
|
|
|
|
|
|
|
|
|
|
/* Lookup this node. */
|
|
|
|
|
if (! grub_hfs_find_node (dir->data, (char *) &key, dir->data->cat_root,
|
|
|
|
|
0, (char *) &fdrec.frec, sizeof (fdrec.frec)))
|
|
|
|
|
/* Not found */
|
|
|
|
|
return GRUB_ERR_NONE;
|
|
|
|
|
|
|
|
|
|
*foundnode = grub_malloc (sizeof (struct grub_fshelp_node));
|
|
|
|
|
if (!*foundnode)
|
|
|
|
|
return grub_errno;
|
|
|
|
|
|
|
|
|
|
(*foundnode)->inode = grub_be_to_cpu32 (fdrec.dir.dirid);
|
|
|
|
|
(*foundnode)->fdrec = fdrec;
|
|
|
|
|
(*foundnode)->data = dir->data;
|
|
|
|
|
*foundtype = (fdrec.frec.type == GRUB_HFS_FILETYPE_DIR) ? GRUB_FSHELP_DIR : GRUB_FSHELP_REG;
|
|
|
|
|
return GRUB_ERR_NONE;
|
|
|
|
|
}
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
|
|
|
|
/* Find a file or directory with the pathname PATH in the filesystem
|
|
|
|
|
DATA. Return the file record in RETDATA when it is non-zero.
|
|
|
|
|
Return the directory number in RETINODE when it is non-zero. */
|
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_hfs_find_dir (struct grub_hfs_data *data, const char *path,
|
2015-07-27 10:50:22 +00:00
|
|
|
|
grub_fshelp_node_t *found,
|
|
|
|
|
enum grub_fshelp_filetype exptype)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
2015-07-27 10:50:22 +00:00
|
|
|
|
struct grub_fshelp_node root = {
|
|
|
|
|
.data = data,
|
|
|
|
|
.inode = data->rootdir,
|
|
|
|
|
.fdrec = {
|
|
|
|
|
.frec = {
|
|
|
|
|
.type = GRUB_HFS_FILETYPE_DIR
|
|
|
|
|
}
|
2004-08-18 09:00:01 +00:00
|
|
|
|
}
|
2015-07-27 10:50:22 +00:00
|
|
|
|
};
|
|
|
|
|
grub_err_t err;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2015-07-27 10:50:22 +00:00
|
|
|
|
err = grub_fshelp_find_file_lookup (path, &root, found, lookup_file, NULL, exptype);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2015-07-27 10:50:22 +00:00
|
|
|
|
if (&root == *found)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
2015-07-27 10:50:22 +00:00
|
|
|
|
*found = grub_malloc (sizeof (root));
|
|
|
|
|
if (!*found)
|
|
|
|
|
return grub_errno;
|
|
|
|
|
grub_memcpy (*found, &root, sizeof (root));
|
2004-08-18 09:00:01 +00:00
|
|
|
|
}
|
2015-07-27 10:50:22 +00:00
|
|
|
|
return err;
|
2004-08-18 09:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
struct grub_hfs_dir_hook_ctx
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
2013-03-02 10:31:00 +00:00
|
|
|
|
grub_fs_dir_hook_t hook;
|
|
|
|
|
void *hook_data;
|
|
|
|
|
};
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
static int
|
|
|
|
|
grub_hfs_dir_hook (struct grub_hfs_record *rec, void *hook_arg)
|
|
|
|
|
{
|
|
|
|
|
struct grub_hfs_dir_hook_ctx *ctx = hook_arg;
|
|
|
|
|
struct grub_hfs_dirrec *drec = rec->data;
|
|
|
|
|
struct grub_hfs_filerec *frec = rec->data;
|
|
|
|
|
struct grub_hfs_catalog_key *ckey = rec->key;
|
|
|
|
|
char fname[sizeof (ckey->str) * MAX_UTF8_PER_MAC_ROMAN + 1];
|
|
|
|
|
struct grub_dirhook_info info;
|
|
|
|
|
grub_size_t len;
|
2004-08-24 20:32:47 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
grub_memset (fname, 0, sizeof (fname));
|
2012-01-14 14:44:34 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
grub_memset (&info, 0, sizeof (info));
|
2012-05-28 15:54:18 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
len = ckey->strlen;
|
|
|
|
|
if (len > sizeof (ckey->str))
|
|
|
|
|
len = sizeof (ckey->str);
|
|
|
|
|
macroman_to_utf8 (fname, ckey->str, len, 1);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
info.case_insensitive = 1;
|
2011-12-24 19:20:41 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
if (drec->type == GRUB_HFS_FILETYPE_DIR)
|
|
|
|
|
{
|
|
|
|
|
info.dir = 1;
|
|
|
|
|
info.mtimeset = 1;
|
2013-12-17 14:21:02 +00:00
|
|
|
|
info.inodeset = 1;
|
2013-03-02 10:31:00 +00:00
|
|
|
|
info.mtime = grub_be_to_cpu32 (drec->mtime) - 2082844800;
|
2013-12-17 14:21:02 +00:00
|
|
|
|
info.inode = grub_be_to_cpu32 (drec->dirid);
|
2013-03-02 10:31:00 +00:00
|
|
|
|
return ctx->hook (fname, &info, ctx->hook_data);
|
|
|
|
|
}
|
|
|
|
|
if (frec->type == GRUB_HFS_FILETYPE_FILE)
|
|
|
|
|
{
|
|
|
|
|
info.dir = 0;
|
|
|
|
|
info.mtimeset = 1;
|
2013-12-17 14:21:02 +00:00
|
|
|
|
info.inodeset = 1;
|
2013-03-02 10:31:00 +00:00
|
|
|
|
info.mtime = grub_be_to_cpu32 (frec->mtime) - 2082844800;
|
2013-12-17 14:21:02 +00:00
|
|
|
|
info.inode = grub_be_to_cpu32 (frec->fileid);
|
2013-03-02 10:31:00 +00:00
|
|
|
|
return ctx->hook (fname, &info, ctx->hook_data);
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2010-12-11 06:15:44 +00:00
|
|
|
|
|
2013-03-02 10:31:00 +00:00
|
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_hfs_dir (grub_device_t device, const char *path, grub_fs_dir_hook_t hook,
|
|
|
|
|
void *hook_data)
|
|
|
|
|
{
|
2004-08-18 09:00:01 +00:00
|
|
|
|
struct grub_hfs_data *data;
|
2013-03-02 10:31:00 +00:00
|
|
|
|
struct grub_hfs_dir_hook_ctx ctx =
|
|
|
|
|
{
|
|
|
|
|
.hook = hook,
|
|
|
|
|
.hook_data = hook_data
|
|
|
|
|
};
|
2015-07-27 10:50:22 +00:00
|
|
|
|
grub_fshelp_node_t found = NULL;
|
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
grub_dl_ref (my_mod);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
data = grub_hfs_mount (device->disk);
|
|
|
|
|
if (!data)
|
|
|
|
|
goto fail;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
/* First the directory ID for the directory. */
|
2015-07-27 10:50:22 +00:00
|
|
|
|
if (grub_hfs_find_dir (data, path, &found, GRUB_FSHELP_DIR))
|
2004-08-18 09:00:01 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
|
2015-07-27 10:50:22 +00:00
|
|
|
|
grub_hfs_iterate_dir (data, data->cat_root, found->inode, grub_hfs_dir_hook, &ctx);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
fail:
|
2015-07-27 10:50:22 +00:00
|
|
|
|
grub_free (found);
|
2004-08-18 09:00:01 +00:00
|
|
|
|
grub_free (data);
|
|
|
|
|
|
|
|
|
|
grub_dl_unref (my_mod);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
return grub_errno;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Open a file named NAME and initialize FILE. */
|
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_hfs_open (struct grub_file *file, const char *name)
|
|
|
|
|
{
|
|
|
|
|
struct grub_hfs_data *data;
|
2015-07-27 10:50:22 +00:00
|
|
|
|
grub_fshelp_node_t found = NULL;
|
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
grub_dl_ref (my_mod);
|
|
|
|
|
|
|
|
|
|
data = grub_hfs_mount (file->device->disk);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2015-01-25 00:28:17 +00:00
|
|
|
|
if (!data)
|
|
|
|
|
{
|
|
|
|
|
grub_dl_unref (my_mod);
|
|
|
|
|
return grub_errno;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-27 10:50:22 +00:00
|
|
|
|
if (grub_hfs_find_dir (data, name, &found, GRUB_FSHELP_REG))
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
|
|
|
|
grub_free (data);
|
2016-01-08 08:16:56 +00:00
|
|
|
|
grub_free (found);
|
2009-05-05 16:36:58 +00:00
|
|
|
|
grub_dl_unref (my_mod);
|
2004-08-18 09:00:01 +00:00
|
|
|
|
return grub_errno;
|
|
|
|
|
}
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2015-07-27 10:50:22 +00:00
|
|
|
|
grub_memcpy (data->extents, found->fdrec.frec.extents, sizeof (grub_hfs_datarecord_t));
|
|
|
|
|
file->size = grub_be_to_cpu32 (found->fdrec.frec.size);
|
|
|
|
|
data->size = grub_be_to_cpu32 (found->fdrec.frec.size);
|
|
|
|
|
data->fileid = grub_be_to_cpu32 (found->fdrec.frec.fileid);
|
2004-08-18 09:00:01 +00:00
|
|
|
|
file->offset = 0;
|
|
|
|
|
|
|
|
|
|
file->data = data;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2015-07-27 10:50:22 +00:00
|
|
|
|
grub_free (found);
|
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static grub_ssize_t
|
2006-06-04 Yoshinori K. Okuji <okuji@enbug.org>
Clean up the code to support 64-bit addressing in disks and
files. This change is not enough for filesystems yet.
* util/i386/pc/grub-setup.c (struct boot_blocklist): Change the
type of "start" to grub_uint64_t.
(setup): Change the types of KERNEL_SECTOR and FIRST_SECTOR to
grub_disk_addr_t * and grub_disk_addr_t. Fix the format string in
save_first_sector and save_blocklists. Use grub_le_to_cpu64 to
convert addresses.
* util/i386/pc/biosdisk.c (open_device): Change the type of SECTOR
to grub_disk_addr_t.
* partmap/gpt.c (gpt_partition_map_iterate): Fix the format
string.
* partmap/pc.c (pc_partition_map_iterate): Likewise.
* partmap/amiga.c (amiga_partition_map_iterate): Cast RDSK.MAGIC
to char *.
* normal/script.c (grub_script_parse): Remove unused MEMFREE.
* normal/parser.y (YYLTYPE_IS_TRIVIAL): New macro.
* normal/lexer.c (grub_script_yyerror): Specify unused to LEX.
* loader/i386/pc/multiboot.c (grub_multiboot_load_elf64): Cast -1
to grub_off_t, to detect an error from grub_file_seek.
(grub_multiboot_load_elf32): Likewise.
* kern/misc.c (grub_strtoul): Use grub_strtoull. Return the
maximum unsigned long value when an overflow is detected.
(grub_strtoull): New function.
(grub_divmod64): Likewise.
(grub_lltoa): use grub_divmod64.
* kern/fs.c (struct grub_fs_block): Change the type of "offset" to
grub_disk_addr_t.
(grub_fs_blocklist_open): Increase P if P is not NULL to advance
the pointer to next character. Use grub_strtoull instead of
grub_strtoul.
(grub_fs_blocklist_read): Change the types of SECTOR, OFFSET and
SIZE to grub_disk_addr_t, grub_off_t and grub_size_t,
respectively.
* kern/file.c (grub_file_read): Prevent an oveflow of LEN, as the
return value is signed.
(grub_file_seek): Change the type of OLD to grub_off_t. Do not
test if OFFSET is less than zero, as OFFSET is unsigned now.
* kern/disk.c (struct grub_disk_cache): Change the type of
"sector" to grub_disk_addr_t.
(grub_disk_cache_get_index): Change the type of SECTOR to
grub_disk_addr_t. Calculate the hash with SECTOR casted to
unsigned after shifting.
(grub_disk_cache_invalidate): Change the type of SECTOR to
grub_disk_addr_t.
(grub_disk_cache_unlock): Likewise.
(grub_disk_cache_store): Likewise.
(grub_disk_check_range): Change the types of SECTOR, OFFSET, SIZE,
START and LEN to grub_disk_addr_t *, grub_off_t *, grub_size_t,
grub_disk_addr_t and grub_uint64_t, respectively.
(grub_disk_read): Use an unsigned variable REAL_OFFSET for the
body, as the value of OFFSET is tweaked by
grub_disk_check_range. Change the types of START_SECTOR, LEN and
POS to grub_disk_addr_t, grub_size_t and grub_size_t,
respectively.
(grub_disk_write): Use an unsigned variable REAL_OFFSET for the
body, as the value of OFFSET is tweaked by
grub_disk_check_range. Change the types of LEN and N to
grub_size_t.
* io/gzio.c (struct grub_gzio): Change the types of "data_offset"
and "saved_offset" to grub_off_t.
(test_header): Cast BUF to char *.
(get_byte): Cast GZIO->DATA_OFFSET to grub_off_t. Cast GZIO->INBUF
to char *.
(grub_gzio_read): Change the types of OFFSET and SIZE to
grub_off_t and grub_size_t, respectively.
* include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_FORCE_LBA):
Removed.
(GRUB_BOOT_MACHINE_BOOT_DRIVE): Changed to 0x4c.
(GRUB_BOOT_MACHINE_KERNEL_ADDRESS): Changed to 0x40.
(GRUB_BOOT_MACHINE_KERNEL_SEGMENT): Changed to 0x42.
(GRUB_BOOT_MACHINE_DRIVE_CHECK): Changed to 0x4e.
(GRUB_BOOT_MACHINE_LIST_SIZE): Increased to 12.
* include/grub/types.h (grub_off_t): Unconditionally set to
grub_uint64_t.
(grub_disk_addr_t): Changed to grub_uint64_t.
* include/grub/partition.h (struct grub_partition): Change the
types of "start", "len" and "offset" to grub_disk_addr_t,
grub_uint64_t and grub_disk_addr_t, respectively.
(grub_partition_get_start): Return grub_disk_addr_t.
(grub_partition_get_len): Return grub_uint64_t.
* include/grub/misc.h (grub_strtoull): New prototype.
(grub_divmod64): Likewise.
* include/grub/fshelp.h (grub_fshelp_read_file): Change the types
of SECTOR, LEN and FILESIZE to grub_disk_addr_t, grub_size_t and
grub_off_t, respectively.
All callers and references changed.
* include/grub/fs.h (struct grub_fs): Change the type of LEN to
grub_size_t in "read".
All callers and references changed.
* include/grub/file.h (struct grub_file): Change the types of
"offset" and "size" to grub_off_t and grub_off_t,
respectively. Change the type of SECTOR to grub_disk_addr_t in
"read_hook".
(grub_file_read): Change the type of LEN to grub_size_t.
(grub_file_seek): Return grub_off_t. Change the type of OFFSET to
grub_off_t.
(grub_file_size): Return grub_off_t.
(grub_file_tell): Likewise.
All callers and references changed.
* include/grub/disk.h (struct grub_disk_dev): Change the types of
SECTOR and SIZE to grub_disk_addr_t and grub_size_t in "read" and
"write".
(struct grub_disk): Change the type of "total_sectors" to
grub_uint64_t. Change the type of SECTOR to grub_disk_addr_t in
"read_hook".
(grub_disk_read): Change the types of SECTOR, OFFSET and SIZE to
grub_disk_addr_t, grub_off_t and grub_size_t, respectively.
(grub_disk_write): Likewise.
All callers and references changed.
* fs/iso9660.c (grub_iso9660_susp_iterate): Cast parameters to
char * for grub_strncmp to silence gcc.
(grub_iso9660_mount): Likewise.
(grub_iso9660_mount): Likewise.
(grub_iso9660_read_symlink): Likewise. Also, remove the nonsense
return statement.
(grub_iso9660_iterate_dir): Likewise.
(grub_iso9660_label): Cast DATA->VOLDESC.VOLNAME to char *.
* fs/hfs.c (grub_hfs_read_file): Change the types of SECTOR and
LEN to grub_disk_addr_t and grub_size_t, respectively.
* fs/hfsplus.c (grub_hfsplus_read_file): Likewise.
* fs/jfs.c (grub_jfs_read_file): Likewise.
* fs/minix.c (grub_jfs_read_file): Likewise.
* fs/sfs.c (grub_jfs_read_file): Likewise.
* fs/ufs.c (grub_jfs_read_file): Likewise.
* fs/xfs.c (grub_jfs_read_file): Likewise.
* fs/fat.c (grub_fat_read_data): Change the types of SECTOR, LEN
and SIZE to grub_disk_addr_t, grub_size_t and grub_size_t,
respectively.
* fs/ext2.c (grub_ext2_read_block): When an error happens, set
BLKNR to -1 instead of returning GRUB_ERRNO.
(grub_ext2_read_file): Change the types of SECTOR and
LEN to grub_disk_addr_t and grub_size_t, respectively.
* fs/affs.c (grub_affs_read_file): Change the types of SECTOR and
LEN to grub_disk_addr_t and grub_size_t, respectively.
* font/manager.c (grub_font_get_glyph): Cast BITMAP to char * for
grub_file_read.
* disk/ieee1275/ofdisk.c (grub_ofdisk_read): Fix the format
string. Do not cast SECTOR explicitly.
* disk/i386/pc/biosdisk.c (grub_biosdisk_open): Change the type of
TOTAL_SECTORS to grub_uint64_t. Do not mask DRP->TOTAL_SECTORS.
(grub_biosdisk_rw): Change the types of SECTOR and SIZE to
grub_disk_addr_t and grub_size_t, respectively. If the sector is
over 2TB and LBA mode is not supported, raise an error.
(get_safe_sectors): New function.
(grub_biosdisk_read): Use get_safe_sectors.
(grub_biosdisk_write): Likewise.
* disk/efi/efidisk.c (grub_efidisk_read): Fix the format string.
(grub_efidisk_write): Likewise.
* disk/loopback.c (delete_loopback): Cosmetic changes.
(grub_cmd_loopback): Likewise. Also, test NEWDEV->FILENAME
correctly.
(grub_loopback_open): Likewise.
(grub_loopback_read): Likewise. Also, change the type of POS to
grub_off_t, and fix the usage of grub_memset.
* commands/i386/pc/play.c: Include grub/machine/time.h.
* commands/ls.c (grub_ls_list_files): Use "llu" instead of "d" to
print FILE->SIZE.
* commands/configfile.c: Include grub/env.h.
* commands/cmp.c (grub_cmd_cmp): Do not use ERR, but use
GRUB_ERRNO directly instead. Change the type of POS to
grub_off_t. Follow the coding standard.
* commands/blocklist.c: Include grub/partition.h.
(grub_cmd_blocklist): Return an error if the underlying device is
not a disk. Take the starting sector of a partition into account,
if a partition is used.
* boot/i386/pc/diskboot.S (bootloop): Adapted to the new offset of
a length field.
(lba_mode): Support 64-bit addresses.
(chs_mode): Likewise.
(copy_buffer): Adapted to the new offsets of a length field and a
segment field.
(blocklist_default_start): Allocate 64-bit space.
* boot/i386/pc/boot.S (force_lba): Removed.
(boot_drive): Moved to under KERNEL_SECTOR.
(kernel_sector): Moved to under KENREL_SEGMENT. Allocate 64-bit
space.
(real_start): Set %si earlier. Remove code for FORCE_LBA, since it
is useless.
(lba_mode): Refactored to support a 64-bit address. More size
optimization.
(setup_sectors): Likewise.
2006-06-04 15:56:55 +00:00
|
|
|
|
grub_hfs_read (grub_file_t file, char *buf, grub_size_t len)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
2009-06-10 21:04:23 +00:00
|
|
|
|
struct grub_hfs_data *data =
|
2004-08-18 09:00:01 +00:00
|
|
|
|
(struct grub_hfs_data *) file->data;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2013-02-27 16:19:15 +00:00
|
|
|
|
return grub_hfs_read_file (data, file->read_hook, file->read_hook_data,
|
|
|
|
|
file->offset, len, buf);
|
2004-08-18 09:00:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_hfs_close (grub_file_t file)
|
|
|
|
|
{
|
|
|
|
|
grub_free (file->data);
|
|
|
|
|
|
|
|
|
|
grub_dl_unref (my_mod);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_hfs_label (grub_device_t device, char **label)
|
|
|
|
|
{
|
|
|
|
|
struct grub_hfs_data *data;
|
|
|
|
|
|
|
|
|
|
data = grub_hfs_mount (device->disk);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
if (data)
|
2011-12-25 21:23:05 +00:00
|
|
|
|
{
|
2012-01-14 14:44:34 +00:00
|
|
|
|
grub_size_t len = data->sblock.volname[0];
|
|
|
|
|
if (len > sizeof (data->sblock.volname) - 1)
|
|
|
|
|
len = sizeof (data->sblock.volname) - 1;
|
2011-12-25 21:23:05 +00:00
|
|
|
|
*label = grub_malloc (len * MAX_UTF8_PER_MAC_ROMAN + 1);
|
|
|
|
|
if (*label)
|
|
|
|
|
macroman_to_utf8 (*label, data->sblock.volname + 1,
|
2012-06-26 12:53:35 +00:00
|
|
|
|
len + 1, 0);
|
2011-12-25 21:23:05 +00:00
|
|
|
|
}
|
2004-08-18 09:00:01 +00:00
|
|
|
|
else
|
|
|
|
|
*label = 0;
|
|
|
|
|
|
|
|
|
|
grub_free (data);
|
|
|
|
|
return grub_errno;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-11 06:00:31 +00:00
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_hfs_mtime (grub_device_t device, grub_int32_t *tm)
|
|
|
|
|
{
|
|
|
|
|
struct grub_hfs_data *data;
|
|
|
|
|
|
|
|
|
|
data = grub_hfs_mount (device->disk);
|
|
|
|
|
|
|
|
|
|
if (data)
|
|
|
|
|
*tm = grub_be_to_cpu32 (data->sblock.mtime) - 2082844800;
|
|
|
|
|
else
|
|
|
|
|
*tm = 0;
|
|
|
|
|
|
|
|
|
|
grub_free (data);
|
|
|
|
|
return grub_errno;
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-16 14:40:31 +00:00
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_hfs_uuid (grub_device_t device, char **uuid)
|
|
|
|
|
{
|
|
|
|
|
struct grub_hfs_data *data;
|
|
|
|
|
|
|
|
|
|
grub_dl_ref (my_mod);
|
|
|
|
|
|
|
|
|
|
data = grub_hfs_mount (device->disk);
|
|
|
|
|
if (data && data->sblock.num_serial != 0)
|
|
|
|
|
{
|
2010-01-20 08:12:47 +00:00
|
|
|
|
*uuid = grub_xasprintf ("%016llx",
|
2009-12-29 09:04:06 +00:00
|
|
|
|
(unsigned long long)
|
|
|
|
|
grub_be_to_cpu64 (data->sblock.num_serial));
|
2009-12-16 14:40:31 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
*uuid = NULL;
|
|
|
|
|
|
|
|
|
|
grub_dl_unref (my_mod);
|
|
|
|
|
|
|
|
|
|
grub_free (data);
|
|
|
|
|
|
|
|
|
|
return grub_errno;
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-18 09:00:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static struct grub_fs grub_hfs_fs =
|
|
|
|
|
{
|
|
|
|
|
.name = "hfs",
|
|
|
|
|
.dir = grub_hfs_dir,
|
|
|
|
|
.open = grub_hfs_open,
|
|
|
|
|
.read = grub_hfs_read,
|
|
|
|
|
.close = grub_hfs_close,
|
|
|
|
|
.label = grub_hfs_label,
|
2009-12-16 14:40:31 +00:00
|
|
|
|
.uuid = grub_hfs_uuid,
|
2010-12-11 06:00:31 +00:00
|
|
|
|
.mtime = grub_hfs_mtime,
|
2012-02-27 20:36:58 +00:00
|
|
|
|
#ifdef GRUB_UTIL
|
|
|
|
|
.reserved_first_sector = 1,
|
|
|
|
|
.blocklist_install = 1,
|
|
|
|
|
#endif
|
2004-08-18 09:00:01 +00:00
|
|
|
|
.next = 0
|
|
|
|
|
};
|
|
|
|
|
|
2005-11-13 Marco Gerards <mgerards@xs4all.nl>
* geninit.sh: New file.
* geninitheader.sh: Likewise.
* commands/boot.c (grub_boot_init, grub_boot_fini): Removed.
* commands/cat.c (grub_cat_init, grub_cat_fini): Likewise.
* commands/cmp.c (grub_cmp_init, grub_cmp_fini): Likewise.
* commands/configfile.c (grub_configfile_init)
(grub_configfile_fini): Likewise.
* commands/default.c (grub_default_init, grub_default_fini):
Likewise.
* commands/help.c (grub_help_init, grub_help_fini): Likewise.
* commands/ls.c (grub_ls_init, grub_ls_fini): Likewise.
* commands/search.c (grub_search_init, grub_search_fini): Likewise.
* commands/terminal.c (grub_terminal_init, grub_terminal_fini):
Likewise.
* commands/test.c (grub_test_init, grub_test_fini): Likewise.
* commands/timeout.c (grub_timeout_init, grub_timeout_fini):
Likewise.
* commands/i386/pc/halt.c (grub_halt_init, grub_halt_fini): Likewise.
* commands/iee1275/halt.c (grub_halt_init, grub_halt_fini):
Likewise.
* commands/i386/pc/reboot.c (grub_reboot_init, grub_reboot_fini):
Likewise.
* commands/iee1275/reboot.c (grub_reboot_init, grub_reboot_fini):
Likewise.
* disk/loopback.c (grub_loop_init, grub_loop_fini): Likewise.
* fs/affs.c (grub_affs_init, grub_affs_fini): Likewise.
* fs/ext2.c (grub_ext2_init, grub_ext2_fini): Likewise.
* fs/fat.c (grub_fat_init, grub_fat_fini): Likewise.
* fs/hfs.c (grub_hfs_init, grub_hfs_fini): Likewise.
* fs/iso9660.c (grub_iso9660_init, grub_iso9660_fini): Likewise.
* fs/jfs.c (grub_jfs_init, grub_jfs_fini): Likewise.
* fs/minix.c (grub_minix_init, grub_minix_fini): Likewise.
* fs/sfs.c (grub_sfs_init, grub_sfs_fini): Likewise.
* fs/ufs.c (grub_ufs_init, grub_ufs_fini): Likewise.
* fs/xfs.c (grub_xfs_init, grub_xfs_fini): Likewise.
* normal/main.c (grub_normal_init, grub_normal_fini): Likewise.
* partmap/amiga.c (grub_amiga_partition_map_init)
(grub_amiga_partition_map_fini): Likewise.
* partmap/apple.c (grub_apple_partition_map_init)
(grub_apple_partition_map_fini): Likewise.
* partmap/pc.c (grub_pc_partition_map_init)
(grub_pc_partition_map_fini): Likewise.
* partmap/sun.c (grub_sun_partition_map_init,
grub_sun_partition_map_fini): Likewise.
* term/terminfo.c (grub_terminal_init, grub_terminal_fini):
Likewise.
* util/grub-emu.c: Include <grub_modules_init.h>.
(main): Don't initialize and de-initialize any modules directly,
use `grub_init_all' and `grub_fini_all' instead.
* term/i386/pc/vesafb.c (grub_vesafb_init): Renamed to
`grub_vesafb_mod_init'.
(grub_vesafb_fini): Renamed to `grub_vesafb_mod_fini'. Updated
all users.
* term/i386/pc/vga.c (grub_vga_init): Renamed to
`grub_vga_mod_init'. Updated all users.
(grub_vga_fini): Renamed to `grub_vga_mod_fini'.
* conf/i386-pc.rmk (grub_emu_SOURCES): Add `grub_emu_init.c'.
(grub_modules_init.lst, grub_modules_init.h, grub_emu_init.c): New
rules.
* include/grub/dl.h (GRUB_MOD_INIT): Add argument `name'.
Generate a function to initialize the module in utilities.
Updated all callers.
(GRUB_MOD_FINI): Add argument `name'. Generate a function to
initialize the module in utilities. Updated all callers.
2005-11-13 15:47:09 +00:00
|
|
|
|
GRUB_MOD_INIT(hfs)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
|
|
|
|
grub_fs_register (&grub_hfs_fs);
|
|
|
|
|
my_mod = mod;
|
|
|
|
|
}
|
|
|
|
|
|
2005-11-13 Marco Gerards <mgerards@xs4all.nl>
* geninit.sh: New file.
* geninitheader.sh: Likewise.
* commands/boot.c (grub_boot_init, grub_boot_fini): Removed.
* commands/cat.c (grub_cat_init, grub_cat_fini): Likewise.
* commands/cmp.c (grub_cmp_init, grub_cmp_fini): Likewise.
* commands/configfile.c (grub_configfile_init)
(grub_configfile_fini): Likewise.
* commands/default.c (grub_default_init, grub_default_fini):
Likewise.
* commands/help.c (grub_help_init, grub_help_fini): Likewise.
* commands/ls.c (grub_ls_init, grub_ls_fini): Likewise.
* commands/search.c (grub_search_init, grub_search_fini): Likewise.
* commands/terminal.c (grub_terminal_init, grub_terminal_fini):
Likewise.
* commands/test.c (grub_test_init, grub_test_fini): Likewise.
* commands/timeout.c (grub_timeout_init, grub_timeout_fini):
Likewise.
* commands/i386/pc/halt.c (grub_halt_init, grub_halt_fini): Likewise.
* commands/iee1275/halt.c (grub_halt_init, grub_halt_fini):
Likewise.
* commands/i386/pc/reboot.c (grub_reboot_init, grub_reboot_fini):
Likewise.
* commands/iee1275/reboot.c (grub_reboot_init, grub_reboot_fini):
Likewise.
* disk/loopback.c (grub_loop_init, grub_loop_fini): Likewise.
* fs/affs.c (grub_affs_init, grub_affs_fini): Likewise.
* fs/ext2.c (grub_ext2_init, grub_ext2_fini): Likewise.
* fs/fat.c (grub_fat_init, grub_fat_fini): Likewise.
* fs/hfs.c (grub_hfs_init, grub_hfs_fini): Likewise.
* fs/iso9660.c (grub_iso9660_init, grub_iso9660_fini): Likewise.
* fs/jfs.c (grub_jfs_init, grub_jfs_fini): Likewise.
* fs/minix.c (grub_minix_init, grub_minix_fini): Likewise.
* fs/sfs.c (grub_sfs_init, grub_sfs_fini): Likewise.
* fs/ufs.c (grub_ufs_init, grub_ufs_fini): Likewise.
* fs/xfs.c (grub_xfs_init, grub_xfs_fini): Likewise.
* normal/main.c (grub_normal_init, grub_normal_fini): Likewise.
* partmap/amiga.c (grub_amiga_partition_map_init)
(grub_amiga_partition_map_fini): Likewise.
* partmap/apple.c (grub_apple_partition_map_init)
(grub_apple_partition_map_fini): Likewise.
* partmap/pc.c (grub_pc_partition_map_init)
(grub_pc_partition_map_fini): Likewise.
* partmap/sun.c (grub_sun_partition_map_init,
grub_sun_partition_map_fini): Likewise.
* term/terminfo.c (grub_terminal_init, grub_terminal_fini):
Likewise.
* util/grub-emu.c: Include <grub_modules_init.h>.
(main): Don't initialize and de-initialize any modules directly,
use `grub_init_all' and `grub_fini_all' instead.
* term/i386/pc/vesafb.c (grub_vesafb_init): Renamed to
`grub_vesafb_mod_init'.
(grub_vesafb_fini): Renamed to `grub_vesafb_mod_fini'. Updated
all users.
* term/i386/pc/vga.c (grub_vga_init): Renamed to
`grub_vga_mod_init'. Updated all users.
(grub_vga_fini): Renamed to `grub_vga_mod_fini'.
* conf/i386-pc.rmk (grub_emu_SOURCES): Add `grub_emu_init.c'.
(grub_modules_init.lst, grub_modules_init.h, grub_emu_init.c): New
rules.
* include/grub/dl.h (GRUB_MOD_INIT): Add argument `name'.
Generate a function to initialize the module in utilities.
Updated all callers.
(GRUB_MOD_FINI): Add argument `name'. Generate a function to
initialize the module in utilities. Updated all callers.
2005-11-13 15:47:09 +00:00
|
|
|
|
GRUB_MOD_FINI(hfs)
|
2004-08-18 09:00:01 +00:00
|
|
|
|
{
|
|
|
|
|
grub_fs_unregister (&grub_hfs_fs);
|
|
|
|
|
}
|