2005-12-03 17:54:55 +00:00
|
|
|
|
/* gpt.c - Read GUID Partition Tables (GPT). */
|
|
|
|
|
/*
|
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
2008-02-19 14:00:11 +00:00
|
|
|
|
* Copyright (C) 2002,2005,2006,2007,2008 Free Software Foundation, Inc.
|
2005-12-03 17:54:55 +00:00
|
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
2005-12-03 17:54:55 +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
|
2005-12-03 17:54:55 +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,
|
2005-12-03 17:54:55 +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/>.
|
2005-12-03 17:54:55 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <grub/disk.h>
|
|
|
|
|
#include <grub/misc.h>
|
|
|
|
|
#include <grub/mm.h>
|
|
|
|
|
#include <grub/partition.h>
|
|
|
|
|
#include <grub/dl.h>
|
2009-08-23 Robert Millan <rmh.grub@aybabtu.com>
* partmap/pc.c: Rename to ...
* partmap/msdos.c: ... this. Update all users.
(grub_pc_partition_map): Rename to ...
(grub_msdos_partition_map): ... this. Update all users.
* parttool/pcpart.c: Rename to ...
* parttool/msdospart.c: ... this. Update all users.
* include/grub/pc_partition.h: Rename to ...
* include/grub/msdos_partition.h: ... this. Update all users.
(grub_pc_partition_bsd_entry): Rename to ...
(grub_msdos_partition_bsd_entry): ... this. Update all users.
(grub_pc_partition_disk_label): Rename to ...
(grub_msdos_partition_disk_label): ... this. Update all users.
(grub_pc_partition_entry): Rename to ...
(grub_msdos_partition_entry): ... this. Update all users.
(grub_pc_partition_mbr): Rename to ...
(grub_msdos_partition_mbr): ... this. Update all users.
(grub_pc_partition): Rename to ...
(grub_msdos_partition): ... this. Update all users.
(grub_pc_partition_is_empty): Rename to ...
(grub_msdos_partition_is_empty): ... this. Update all users.
(grub_pc_partition_is_extended): Rename to ...
(grub_msdos_partition_is_extended): ... this. Update all users.
(grub_pc_partition_is_bsd): Rename to ...
(grub_msdos_partition_is_bsd): ... this. Update all users.
* conf/common.rmk (amiga_mod_SOURCES, amiga_mod_CFLAGS)
(amiga_mod_LDFLAGS, apple_mod_SOURCES, apple_mod_CFLAGS)
(apple_mod_LDFLAGS, msdos_mod_SOURCES, msdos_mod_CFLAGS)
(msdos_mod_LDFLAGS, sun_mod_SOURCES, sun_mod_CFLAGS)
(sun_mod_LDFLAGS, acorn_mod_SOURCES, acorn_mod_CFLAGS)
(acorn_mod_LDFLAGS, gpt_mod_SOURCES, gpt_mod_CFLAGS)
(gpt_mod_LDFLAGS): Rename to ...
(part_amiga_mod_SOURCES, part_amiga_mod_CFLAGS, part_amiga_mod_LDFLAGS)
(part_apple_mod_SOURCES, part_apple_mod_CFLAGS, part_apple_mod_LDFLAGS)
(part_msdos_mod_SOURCES, part_msdos_mod_CFLAGS, part_msdos_mod_LDFLAGS)
(part_sun_mod_SOURCES, part_sun_mod_CFLAGS, part_sun_mod_LDFLAGS)
(part_acorn_mod_SOURCES, part_acorn_mod_CFLAGS, part_acorn_mod_LDFLAGS)
(part_gpt_mod_SOURCES, part_gpt_mod_CFLAGS)
(part_gpt_mod_LDFLAGS): ... this.
(pkglib_MODULES): Prefix partition modules with `part_'. Rename
`pcpart.mod' to `msdospart.mod'.
(pcpart_mod_SOURCES, pcpart_mod_CFLAGS, pcpart_mod_LDFLAGS): Rename
to ...
(msdospart_mod_SOURCES, msdospart_mod_CFLAGS)
(msdospart_mod_LDFLAGS): ... this.
2009-08-23 12:00:57 +00:00
|
|
|
|
#include <grub/msdos_partition.h>
|
2008-02-19 14:00:11 +00:00
|
|
|
|
#include <grub/gpt_partition.h>
|
2005-12-03 17:54:55 +00:00
|
|
|
|
|
|
|
|
|
static grub_uint8_t grub_gpt_magic[8] =
|
|
|
|
|
{
|
2008-02-23 20:33:32 +00:00
|
|
|
|
0x45, 0x46, 0x49, 0x20, 0x50, 0x41, 0x52, 0x54
|
2005-12-03 17:54:55 +00:00
|
|
|
|
};
|
|
|
|
|
|
2008-02-19 14:00:11 +00:00
|
|
|
|
static const grub_gpt_part_type_t grub_gpt_partition_type_empty = GRUB_GPT_PARTITION_TYPE_EMPTY;
|
2005-12-03 17:54:55 +00:00
|
|
|
|
|
2010-09-15 19:36:57 +00:00
|
|
|
|
#ifdef GRUB_UTIL
|
2010-11-26 21:29:19 +00:00
|
|
|
|
static const grub_gpt_part_type_t grub_gpt_partition_type_bios_boot = GRUB_GPT_PARTITION_TYPE_BIOS_BOOT;
|
2010-09-15 19:36:57 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2010-07-02 00:47:10 +00:00
|
|
|
|
/* 512 << 7 = 65536 byte sectors. */
|
|
|
|
|
#define MAX_SECTOR_LOG 7
|
|
|
|
|
|
2005-12-03 17:54:55 +00:00
|
|
|
|
static struct grub_partition_map grub_gpt_partition_map;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
|
gpt_partition_map_iterate (grub_disk_t disk,
|
|
|
|
|
int (*hook) (grub_disk_t disk,
|
|
|
|
|
const grub_partition_t partition))
|
|
|
|
|
{
|
|
|
|
|
struct grub_partition part;
|
|
|
|
|
struct grub_gpt_header gpt;
|
|
|
|
|
struct grub_gpt_partentry entry;
|
2009-08-23 Robert Millan <rmh.grub@aybabtu.com>
* partmap/pc.c: Rename to ...
* partmap/msdos.c: ... this. Update all users.
(grub_pc_partition_map): Rename to ...
(grub_msdos_partition_map): ... this. Update all users.
* parttool/pcpart.c: Rename to ...
* parttool/msdospart.c: ... this. Update all users.
* include/grub/pc_partition.h: Rename to ...
* include/grub/msdos_partition.h: ... this. Update all users.
(grub_pc_partition_bsd_entry): Rename to ...
(grub_msdos_partition_bsd_entry): ... this. Update all users.
(grub_pc_partition_disk_label): Rename to ...
(grub_msdos_partition_disk_label): ... this. Update all users.
(grub_pc_partition_entry): Rename to ...
(grub_msdos_partition_entry): ... this. Update all users.
(grub_pc_partition_mbr): Rename to ...
(grub_msdos_partition_mbr): ... this. Update all users.
(grub_pc_partition): Rename to ...
(grub_msdos_partition): ... this. Update all users.
(grub_pc_partition_is_empty): Rename to ...
(grub_msdos_partition_is_empty): ... this. Update all users.
(grub_pc_partition_is_extended): Rename to ...
(grub_msdos_partition_is_extended): ... this. Update all users.
(grub_pc_partition_is_bsd): Rename to ...
(grub_msdos_partition_is_bsd): ... this. Update all users.
* conf/common.rmk (amiga_mod_SOURCES, amiga_mod_CFLAGS)
(amiga_mod_LDFLAGS, apple_mod_SOURCES, apple_mod_CFLAGS)
(apple_mod_LDFLAGS, msdos_mod_SOURCES, msdos_mod_CFLAGS)
(msdos_mod_LDFLAGS, sun_mod_SOURCES, sun_mod_CFLAGS)
(sun_mod_LDFLAGS, acorn_mod_SOURCES, acorn_mod_CFLAGS)
(acorn_mod_LDFLAGS, gpt_mod_SOURCES, gpt_mod_CFLAGS)
(gpt_mod_LDFLAGS): Rename to ...
(part_amiga_mod_SOURCES, part_amiga_mod_CFLAGS, part_amiga_mod_LDFLAGS)
(part_apple_mod_SOURCES, part_apple_mod_CFLAGS, part_apple_mod_LDFLAGS)
(part_msdos_mod_SOURCES, part_msdos_mod_CFLAGS, part_msdos_mod_LDFLAGS)
(part_sun_mod_SOURCES, part_sun_mod_CFLAGS, part_sun_mod_LDFLAGS)
(part_acorn_mod_SOURCES, part_acorn_mod_CFLAGS, part_acorn_mod_LDFLAGS)
(part_gpt_mod_SOURCES, part_gpt_mod_CFLAGS)
(part_gpt_mod_LDFLAGS): ... this.
(pkglib_MODULES): Prefix partition modules with `part_'. Rename
`pcpart.mod' to `msdospart.mod'.
(pcpart_mod_SOURCES, pcpart_mod_CFLAGS, pcpart_mod_LDFLAGS): Rename
to ...
(msdospart_mod_SOURCES, msdospart_mod_CFLAGS)
(msdospart_mod_LDFLAGS): ... this.
2009-08-23 12:00:57 +00:00
|
|
|
|
struct grub_msdos_partition_mbr mbr;
|
2005-12-03 17:54:55 +00:00
|
|
|
|
grub_uint64_t entries;
|
|
|
|
|
unsigned int i;
|
|
|
|
|
int last_offset = 0;
|
2010-07-02 00:47:10 +00:00
|
|
|
|
int sector_log = 0;
|
2005-12-03 17:54:55 +00:00
|
|
|
|
|
|
|
|
|
/* Read the protective MBR. */
|
2010-02-06 17:43:37 +00:00
|
|
|
|
if (grub_disk_read (disk, 0, 0, sizeof (mbr), &mbr))
|
2005-12-03 17:54:55 +00:00
|
|
|
|
return grub_errno;
|
|
|
|
|
|
|
|
|
|
/* Check if it is valid. */
|
|
|
|
|
if (mbr.signature != grub_cpu_to_le16 (GRUB_PC_PARTITION_SIGNATURE))
|
|
|
|
|
return grub_error (GRUB_ERR_BAD_PART_TABLE, "no signature");
|
|
|
|
|
|
|
|
|
|
/* Make sure the MBR is a protective MBR and not a normal MBR. */
|
|
|
|
|
if (mbr.entries[0].type != GRUB_PC_PARTITION_TYPE_GPT_DISK)
|
|
|
|
|
return grub_error (GRUB_ERR_BAD_PART_TABLE, "no GPT partition map found");
|
|
|
|
|
|
|
|
|
|
/* Read the GPT header. */
|
2010-07-02 00:47:10 +00:00
|
|
|
|
for (sector_log = 0; sector_log < MAX_SECTOR_LOG; sector_log++)
|
|
|
|
|
{
|
|
|
|
|
if (grub_disk_read (disk, 1 << sector_log, 0, sizeof (gpt), &gpt))
|
|
|
|
|
return grub_errno;
|
2005-12-03 17:54:55 +00:00
|
|
|
|
|
2010-07-02 00:47:10 +00:00
|
|
|
|
if (grub_memcmp (gpt.magic, grub_gpt_magic, sizeof (grub_gpt_magic)) == 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (sector_log == MAX_SECTOR_LOG)
|
2005-12-03 17:54:55 +00:00
|
|
|
|
return grub_error (GRUB_ERR_BAD_PART_TABLE, "no valid GPT header");
|
|
|
|
|
|
|
|
|
|
grub_dprintf ("gpt", "Read a valid GPT header\n");
|
|
|
|
|
|
2010-07-02 00:47:10 +00:00
|
|
|
|
entries = grub_le_to_cpu64 (gpt.partitions) << sector_log;
|
2005-12-03 17:54:55 +00:00
|
|
|
|
for (i = 0; i < grub_le_to_cpu32 (gpt.maxpart); i++)
|
|
|
|
|
{
|
2010-02-06 17:43:37 +00:00
|
|
|
|
if (grub_disk_read (disk, entries, last_offset,
|
2009-05-13 18:58:38 +00:00
|
|
|
|
sizeof (entry), &entry))
|
2010-02-07 00:48:38 +00:00
|
|
|
|
return grub_errno;
|
2005-12-03 17:54:55 +00:00
|
|
|
|
|
2008-02-19 14:00:11 +00:00
|
|
|
|
if (grub_memcmp (&grub_gpt_partition_type_empty, &entry.type,
|
2005-12-03 17:54:55 +00:00
|
|
|
|
sizeof (grub_gpt_partition_type_empty)))
|
|
|
|
|
{
|
|
|
|
|
/* Calculate the first block and the size of the partition. */
|
2010-07-02 00:47:10 +00:00
|
|
|
|
part.start = grub_le_to_cpu64 (entry.start) << sector_log;
|
2005-12-03 17:54:55 +00:00
|
|
|
|
part.len = (grub_le_to_cpu64 (entry.end)
|
2010-07-02 00:47:10 +00:00
|
|
|
|
- grub_le_to_cpu64 (entry.start) + 1) << sector_log;
|
2005-12-03 17:54:55 +00:00
|
|
|
|
part.offset = entries;
|
2010-02-06 17:43:37 +00:00
|
|
|
|
part.number = i;
|
|
|
|
|
part.index = last_offset;
|
2005-12-03 17:54:55 +00:00
|
|
|
|
part.partmap = &grub_gpt_partition_map;
|
2010-09-15 19:36:57 +00:00
|
|
|
|
part.parent = disk->partition;
|
2005-12-03 17:54:55 +00:00
|
|
|
|
|
2008-07-01 23:02:16 +00:00
|
|
|
|
grub_dprintf ("gpt", "GPT entry %d: start=%lld, length=%lld\n", i,
|
|
|
|
|
(unsigned long long) part.start,
|
|
|
|
|
(unsigned long long) part.len);
|
2005-12-03 17:54:55 +00:00
|
|
|
|
|
|
|
|
|
if (hook (disk, &part))
|
2010-02-06 17:43:37 +00:00
|
|
|
|
return grub_errno;
|
2005-12-03 17:54:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
last_offset += grub_le_to_cpu32 (gpt.partentry_size);
|
|
|
|
|
if (last_offset == GRUB_DISK_SECTOR_SIZE)
|
|
|
|
|
{
|
|
|
|
|
last_offset = 0;
|
|
|
|
|
entries++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-06 17:43:37 +00:00
|
|
|
|
return GRUB_ERR_NONE;
|
2005-12-03 17:54:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-09-15 19:36:57 +00:00
|
|
|
|
#ifdef GRUB_UTIL
|
|
|
|
|
static grub_err_t
|
2010-09-24 12:05:47 +00:00
|
|
|
|
gpt_partition_map_embed (struct grub_disk *disk, unsigned int *nsectors,
|
2010-09-15 19:36:57 +00:00
|
|
|
|
grub_embed_type_t embed_type,
|
2010-09-24 12:05:47 +00:00
|
|
|
|
grub_disk_addr_t **sectors)
|
2010-09-15 19:36:57 +00:00
|
|
|
|
{
|
|
|
|
|
grub_disk_addr_t start = 0, len = 0;
|
|
|
|
|
unsigned i;
|
|
|
|
|
grub_err_t err;
|
|
|
|
|
|
|
|
|
|
auto int NESTED_FUNC_ATTR find_usable_region (grub_disk_t disk,
|
|
|
|
|
const grub_partition_t p);
|
|
|
|
|
int NESTED_FUNC_ATTR find_usable_region (grub_disk_t disk __attribute__ ((unused)),
|
|
|
|
|
const grub_partition_t p)
|
|
|
|
|
{
|
|
|
|
|
struct grub_gpt_partentry gptdata;
|
|
|
|
|
|
|
|
|
|
disk->partition = p->parent;
|
|
|
|
|
if (grub_disk_read (disk, p->offset, p->index,
|
|
|
|
|
sizeof (gptdata), &gptdata))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
/* If there's an embed region, it is in a dedicated partition. */
|
|
|
|
|
if (! grub_memcmp (&gptdata.type, &grub_gpt_partition_type_bios_boot, 16))
|
|
|
|
|
{
|
|
|
|
|
start = p->start;
|
|
|
|
|
len = p->len;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (embed_type != GRUB_EMBED_PCBIOS)
|
|
|
|
|
return grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
|
|
|
|
|
"GPT curently supports only PC-BIOS embedding");
|
|
|
|
|
|
|
|
|
|
err = gpt_partition_map_iterate (disk, find_usable_region);
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
|
|
|
|
|
if (len == 0)
|
|
|
|
|
return grub_error (GRUB_ERR_FILE_NOT_FOUND,
|
|
|
|
|
"This GPT partition label has no BIOS Boot Partition;"
|
|
|
|
|
" embedding won't be possible!");
|
|
|
|
|
|
2010-09-24 12:05:47 +00:00
|
|
|
|
if (len < *nsectors)
|
2010-09-15 19:36:57 +00:00
|
|
|
|
return grub_error (GRUB_ERR_OUT_OF_RANGE,
|
|
|
|
|
"Your BIOS Boot Partition is too small;"
|
|
|
|
|
" embedding won't be possible!");
|
|
|
|
|
|
2010-09-24 12:05:47 +00:00
|
|
|
|
*nsectors = len;
|
|
|
|
|
*sectors = grub_malloc (*nsectors * sizeof (**sectors));
|
|
|
|
|
if (!*sectors)
|
|
|
|
|
return grub_errno;
|
|
|
|
|
for (i = 0; i < *nsectors; i++)
|
|
|
|
|
(*sectors)[i] = start + i;
|
2010-09-15 19:36:57 +00:00
|
|
|
|
|
|
|
|
|
return GRUB_ERR_NONE;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-12-03 17:54:55 +00:00
|
|
|
|
|
|
|
|
|
/* Partition map type. */
|
|
|
|
|
static struct grub_partition_map grub_gpt_partition_map =
|
|
|
|
|
{
|
2010-02-06 18:33:53 +00:00
|
|
|
|
.name = "gpt",
|
2005-12-03 17:54:55 +00:00
|
|
|
|
.iterate = gpt_partition_map_iterate,
|
2010-09-15 19:36:57 +00:00
|
|
|
|
#ifdef GRUB_UTIL
|
|
|
|
|
.embed = gpt_partition_map_embed
|
|
|
|
|
#endif
|
2005-12-03 17:54:55 +00:00
|
|
|
|
};
|
|
|
|
|
|
2010-02-07 01:07:35 +00:00
|
|
|
|
GRUB_MOD_INIT(part_gpt)
|
2005-12-03 17:54:55 +00:00
|
|
|
|
{
|
|
|
|
|
grub_partition_map_register (&grub_gpt_partition_map);
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-07 01:07:35 +00:00
|
|
|
|
GRUB_MOD_FINI(part_gpt)
|
2005-12-03 17:54:55 +00:00
|
|
|
|
{
|
|
|
|
|
grub_partition_map_unregister (&grub_gpt_partition_map);
|
|
|
|
|
}
|