076e7c0fda
Add LDM support using the same framework. * Makefile.util.def (libgrubkern): Add grub-core/disk/ldm.c, grub-core/disk/diskfilter.c and grub-core/partmap/gpt.c. (libgrubmods): Remove grub-core/disk/raid.c and grub-core/partmap/gpt.c. * grub-core/Makefile.core.def (ldm): New module. (raid): Renamed to diskfilter. All users updated. * grub-core/disk/raid.c: Moved to ... * grub-core/disk/diskfilter.c: ... here. * grub-core/disk/diskfilter.c: Rename grub_raid_ to grub_diskfilter_. (lv_num): New var. (find_array): Renamed to ... (find_lv): ... this. Support multi-LV. Skip nameless LVs (grub_is_array_readable): Renamed to ... (grub_is_lv_readable): ... this. Support multinode hierarchy. (insert_array): New argument id. (is_node_readable): New function. (scan_device): Rename to ... (scan_disk): .. this. Restrict to one disk. (scan_devices): New function. (grub_diskfilter_iterate): Support multi-LV. Skip invisible and nameless LVs. (grub_diskfilter_memberlist): Support multi-LV. (grub_diskfilter_read_node): New function. (grub_raid_read): Most of logic moved to ... (read_segment): ... here (read_lv): New function. (grub_diskfilter_get_vg_by_uuid): New function. (grub_diskfilter_make_raid): Likewise. * grub-core/disk/ldm.c: New file. * grub-core/disk/lvm.c (vg_list): Removed. (lv_count): Likewise. (scan_depth): Likewise. (is_lv_readable): Likewise. (grub_lvm_getvalue): Advance pointer past the number. (find_lv): Removed. (do_lvm_scan): Refactored into ... (grub_lvm_detect): ... this. Support raid. (grub_lvm_iterate): Removed. (grub_lvm_memberlist): Likewise. (grub_lvm_open): Likewise. (grub_lvm_close): Likewise. (read_lv): Likewise. (read_node): Likewise. (is_node_readable): Likewise. (is_lv_readable): Likewise. (grub_lvm_read): Likewise. (grub_lvm_write): Likewise. (grub_lvm_dev): Use diskfilter (GRUB_MOD_INIT): Likewise. (GRUB_MOD_FINI): Likewise. * grub-core/disk/dmraid_nvidia.c (grub_dmraid_nv_detect): Use new interface. * grub-core/disk/mdraid1x_linux.c (grub_mdraid_detect): Likewise. * grub-core/disk/mdraid_linux.c (grub_mdraid_detect): Likewise. * grub-core/disk/raid5_recover.c (grub_raid5_recover): Use grub_diskfilter_read_node. Fix a bug with xor. * grub-core/disk/raid6_recover.c (grub_raid6_recover): Use grub_diskfilter_read_node. Support GRUB_RAID_LAYOUT_MUL_FROM_POS. * grub-core/kern/disk.c (grub_disk_dev_list): Make global. (grub_disk_dev_iterate): Move from here... * include/grub/disk.h (grub_disk_dev_iterate): ... to here. Inlined. * grub-core/kern/emu/hostdisk.c (grub_hostdisk_find_partition_start): Make global. (grub_hostdisk_find_partition_start): Likewise. (grub_hostdisk_os_dev_to_grub_drive): New function. (grub_util_biosdisk_get_osdev): Check that disk is biosdisk. * grub-core/kern/emu/hostdisk.c (make_device_name): Move to ... * util/getroot.c (make_device_name): ... here. * grub-core/kern/emu/hostdisk.c (grub_util_get_dm_node_linear_info): Move to ... * util/getroot.c (grub_util_get_dm_node_linear_info): ...here. * grub-core/kern/emu/hostdisk.c (convert_system_partition_to_system_disk): Move to ... * util/getroot.c (convert_system_partition_to_system_disk): ...here. * grub-core/kern/emu/hostdisk.c (device_is_wholedisk): Move to ... * util/getroot.c (device_is_wholedisk): ... here. * grub-core/kern/emu/hostdisk.c (find_system_device): Move to ... * util/getroot.c (find_system_device): ... here. * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_is_present): Move to ... * util/getroot.c (grub_util_biosdisk_is_present): ...here. * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_get_grub_dev): Move to ... * util/getroot.c (grub_util_biosdisk_get_grub_dev): ... here. Handle LDM. * grub-core/kern/emu/hostdisk.c (grub_util_biosdisk_is_floppy): Move to ... * util/getroot.c (grub_util_biosdisk_is_floppy): ... here. * grub-core/partmap/gpt.c (grub_gpt_partition_map_iterate): Made global. * include/grub/disk.h (grub_disk_dev_id): Replaced RAID and LVM with DISKFILTER. * include/grub/raid.h: Renamed to ... * include/grub/diskfilter.h: ... this. * include/grub/diskfilter.h: Rename grub_raid_* to grub_diskfilter_* (GRUB_RAID_LAYOUT_*): Make into array. (GRUB_RAID_LAYOUT_MUL_FROM_POS): New value. (grub_diskfilter_vg): New struct. (grub_diskfilter_pv_id): Likewise. (grub_raid_member): Removed. (grub_raid_array): Likewise. (grub_diskfilter_pv): New struct. (grub_diskfilter_lv): Likewise. (grub_diskfilter_segment): Likewise. (grub_diskfilter_node): Likewise. (grub_diskfilter_get_vg_by_uuid): New proto. (grub_raid_register): Inline. (grub_diskfilter_unregister): Likewise. (grub_diskfilter_make_raid): New proto. (grub_diskfilter_vg_register): Likewise. (grub_diskfilter_read_node): Likewise. (grub_diskfilter_get_pv_from_disk) [GRUB_UTIL]: Likewise. * include/grub/emu/hostdisk.h (grub_util_get_ldm): New proto. (grub_util_is_ldm): Likewise. (grub_util_ldm_embed) [GRUB_UTIL]: Likewise. (grub_hostdisk_find_partition_start): Likewise. (grub_hostdisk_os_dev_to_grub_drive): Likewise. * include/grub/gpt_partition.h (GRUB_GPT_PARTITION_TYPE_LDM): New definition. (grub_gpt_partition_map_iterate): New proto. * include/grub/lvm.h (grub_lvm_vg): Removed. (grub_lvm_pv): Likewise. (grub_lvm_lv): Likewise. (grub_lvm_segment): Likewise. (grub_lvm_node): Likewise. * util/getroot.c [...] * util/grub-probe.c (probe_raid_level): Handle diskfilter. (probe_abstraction): Likewise. * util/grub-setup.c (setup): Remove must_embed. Support LDM. (main): Remove dead logic.
214 lines
5.9 KiB
C
214 lines
5.9 KiB
C
/* gpt.c - Read GUID Partition Tables (GPT). */
|
||
/*
|
||
* GRUB -- GRand Unified Bootloader
|
||
* Copyright (C) 2002,2005,2006,2007,2008 Free Software Foundation, Inc.
|
||
*
|
||
* GRUB is free software: you can redistribute it and/or modify
|
||
* it under the terms of the GNU General Public License as published by
|
||
* the Free Software Foundation, either version 3 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* GRUB is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU General Public License
|
||
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
||
*/
|
||
|
||
#include <grub/disk.h>
|
||
#include <grub/misc.h>
|
||
#include <grub/mm.h>
|
||
#include <grub/partition.h>
|
||
#include <grub/dl.h>
|
||
#include <grub/msdos_partition.h>
|
||
#include <grub/gpt_partition.h>
|
||
|
||
GRUB_MOD_LICENSE ("GPLv3+");
|
||
|
||
static grub_uint8_t grub_gpt_magic[8] =
|
||
{
|
||
0x45, 0x46, 0x49, 0x20, 0x50, 0x41, 0x52, 0x54
|
||
};
|
||
|
||
static const grub_gpt_part_type_t grub_gpt_partition_type_empty = GRUB_GPT_PARTITION_TYPE_EMPTY;
|
||
|
||
#ifdef GRUB_UTIL
|
||
static const grub_gpt_part_type_t grub_gpt_partition_type_bios_boot = GRUB_GPT_PARTITION_TYPE_BIOS_BOOT;
|
||
#endif
|
||
|
||
/* 512 << 7 = 65536 byte sectors. */
|
||
#define MAX_SECTOR_LOG 7
|
||
|
||
static struct grub_partition_map grub_gpt_partition_map;
|
||
|
||
|
||
|
||
grub_err_t
|
||
grub_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;
|
||
struct grub_msdos_partition_mbr mbr;
|
||
grub_uint64_t entries;
|
||
unsigned int i;
|
||
int last_offset = 0;
|
||
int sector_log = 0;
|
||
|
||
/* Read the protective MBR. */
|
||
if (grub_disk_read (disk, 0, 0, sizeof (mbr), &mbr))
|
||
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. */
|
||
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;
|
||
|
||
if (grub_memcmp (gpt.magic, grub_gpt_magic, sizeof (grub_gpt_magic)) == 0)
|
||
break;
|
||
}
|
||
if (sector_log == MAX_SECTOR_LOG)
|
||
return grub_error (GRUB_ERR_BAD_PART_TABLE, "no valid GPT header");
|
||
|
||
grub_dprintf ("gpt", "Read a valid GPT header\n");
|
||
|
||
entries = grub_le_to_cpu64 (gpt.partitions) << sector_log;
|
||
for (i = 0; i < grub_le_to_cpu32 (gpt.maxpart); i++)
|
||
{
|
||
if (grub_disk_read (disk, entries, last_offset,
|
||
sizeof (entry), &entry))
|
||
return grub_errno;
|
||
|
||
if (grub_memcmp (&grub_gpt_partition_type_empty, &entry.type,
|
||
sizeof (grub_gpt_partition_type_empty)))
|
||
{
|
||
/* Calculate the first block and the size of the partition. */
|
||
part.start = grub_le_to_cpu64 (entry.start) << sector_log;
|
||
part.len = (grub_le_to_cpu64 (entry.end)
|
||
- grub_le_to_cpu64 (entry.start) + 1) << sector_log;
|
||
part.offset = entries;
|
||
part.number = i;
|
||
part.index = last_offset;
|
||
part.partmap = &grub_gpt_partition_map;
|
||
part.parent = disk->partition;
|
||
|
||
grub_dprintf ("gpt", "GPT entry %d: start=%lld, length=%lld\n", i,
|
||
(unsigned long long) part.start,
|
||
(unsigned long long) part.len);
|
||
|
||
if (hook (disk, &part))
|
||
return grub_errno;
|
||
}
|
||
|
||
last_offset += grub_le_to_cpu32 (gpt.partentry_size);
|
||
if (last_offset == GRUB_DISK_SECTOR_SIZE)
|
||
{
|
||
last_offset = 0;
|
||
entries++;
|
||
}
|
||
}
|
||
|
||
return GRUB_ERR_NONE;
|
||
}
|
||
|
||
#ifdef GRUB_UTIL
|
||
static grub_err_t
|
||
gpt_partition_map_embed (struct grub_disk *disk, unsigned int *nsectors,
|
||
grub_embed_type_t embed_type,
|
||
grub_disk_addr_t **sectors)
|
||
{
|
||
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;
|
||
grub_partition_t p2;
|
||
|
||
p2 = disk->partition;
|
||
disk->partition = p->parent;
|
||
if (grub_disk_read (disk, p->offset, p->index,
|
||
sizeof (gptdata), &gptdata))
|
||
{
|
||
disk->partition = p2;
|
||
return 0;
|
||
}
|
||
disk->partition = p2;
|
||
|
||
/* 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 currently supports only PC-BIOS embedding");
|
||
|
||
err = grub_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!");
|
||
|
||
if (len < *nsectors)
|
||
return grub_error (GRUB_ERR_OUT_OF_RANGE,
|
||
"Your BIOS Boot Partition is too small;"
|
||
" embedding won't be possible!");
|
||
|
||
*nsectors = len;
|
||
*sectors = grub_malloc (*nsectors * sizeof (**sectors));
|
||
if (!*sectors)
|
||
return grub_errno;
|
||
for (i = 0; i < *nsectors; i++)
|
||
(*sectors)[i] = start + i;
|
||
|
||
return GRUB_ERR_NONE;
|
||
}
|
||
#endif
|
||
|
||
|
||
/* Partition map type. */
|
||
static struct grub_partition_map grub_gpt_partition_map =
|
||
{
|
||
.name = "gpt",
|
||
.iterate = grub_gpt_partition_map_iterate,
|
||
#ifdef GRUB_UTIL
|
||
.embed = gpt_partition_map_embed
|
||
#endif
|
||
};
|
||
|
||
GRUB_MOD_INIT(part_gpt)
|
||
{
|
||
grub_partition_map_register (&grub_gpt_partition_map);
|
||
}
|
||
|
||
GRUB_MOD_FINI(part_gpt)
|
||
{
|
||
grub_partition_map_unregister (&grub_gpt_partition_map);
|
||
}
|