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.
260 lines
8 KiB
C
260 lines
8 KiB
C
/* mdraid_linux.c - module to handle Linux Software RAID. */
|
|
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2008,2009,2010 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/dl.h>
|
|
#include <grub/disk.h>
|
|
#include <grub/mm.h>
|
|
#include <grub/err.h>
|
|
#include <grub/misc.h>
|
|
#include <grub/diskfilter.h>
|
|
|
|
GRUB_MOD_LICENSE ("GPLv3+");
|
|
|
|
/* Linux RAID on disk structures and constants,
|
|
copied from include/linux/raid/md_p.h. */
|
|
|
|
#define SB_MAGIC 0xa92b4efc
|
|
|
|
/*
|
|
* The version-1 superblock :
|
|
* All numeric fields are little-endian.
|
|
*
|
|
* Total size: 256 bytes plus 2 per device.
|
|
* 1K allows 384 devices.
|
|
*/
|
|
|
|
struct grub_raid_super_1x
|
|
{
|
|
/* Constant array information - 128 bytes. */
|
|
grub_uint32_t magic; /* MD_SB_MAGIC: 0xa92b4efc - little endian. */
|
|
grub_uint32_t major_version; /* 1. */
|
|
grub_uint32_t feature_map; /* Bit 0 set if 'bitmap_offset' is meaningful. */
|
|
grub_uint32_t pad0; /* Always set to 0 when writing. */
|
|
|
|
grub_uint8_t set_uuid[16]; /* User-space generated. */
|
|
char set_name[32]; /* Set and interpreted by user-space. */
|
|
|
|
grub_uint64_t ctime; /* Lo 40 bits are seconds, top 24 are microseconds or 0. */
|
|
grub_uint32_t level; /* -4 (multipath), -1 (linear), 0,1,4,5. */
|
|
grub_uint32_t layout; /* only for raid5 and raid10 currently. */
|
|
grub_uint64_t size; /* Used size of component devices, in 512byte sectors. */
|
|
|
|
grub_uint32_t chunksize; /* In 512byte sectors. */
|
|
grub_uint32_t raid_disks;
|
|
grub_uint32_t bitmap_offset; /* Sectors after start of superblock that bitmap starts
|
|
* NOTE: signed, so bitmap can be before superblock
|
|
* only meaningful of feature_map[0] is set.
|
|
*/
|
|
|
|
/* These are only valid with feature bit '4'. */
|
|
grub_uint32_t new_level; /* New level we are reshaping to. */
|
|
grub_uint64_t reshape_position; /* Next address in array-space for reshape. */
|
|
grub_uint32_t delta_disks; /* Change in number of raid_disks. */
|
|
grub_uint32_t new_layout; /* New layout. */
|
|
grub_uint32_t new_chunk; /* New chunk size (512byte sectors). */
|
|
grub_uint8_t pad1[128 - 124]; /* Set to 0 when written. */
|
|
|
|
/* Constant this-device information - 64 bytes. */
|
|
grub_uint64_t data_offset; /* Sector start of data, often 0. */
|
|
grub_uint64_t data_size; /* Sectors in this device that can be used for data. */
|
|
grub_uint64_t super_offset; /* Sector start of this superblock. */
|
|
grub_uint64_t recovery_offset; /* Sectors before this offset (from data_offset) have been recovered. */
|
|
grub_uint32_t dev_number; /* Permanent identifier of this device - not role in raid. */
|
|
grub_uint32_t cnt_corrected_read; /* Number of read errors that were corrected by re-writing. */
|
|
grub_uint8_t device_uuid[16]; /* User-space setable, ignored by kernel. */
|
|
grub_uint8_t devflags; /* Per-device flags. Only one defined... */
|
|
grub_uint8_t pad2[64 - 57]; /* Set to 0 when writing. */
|
|
|
|
/* Array state information - 64 bytes. */
|
|
grub_uint64_t utime; /* 40 bits second, 24 btes microseconds. */
|
|
grub_uint64_t events; /* Incremented when superblock updated. */
|
|
grub_uint64_t resync_offset; /* Data before this offset (from data_offset) known to be in sync. */
|
|
grub_uint32_t sb_csum; /* Checksum upto devs[max_dev]. */
|
|
grub_uint32_t max_dev; /* Size of devs[] array to consider. */
|
|
grub_uint8_t pad3[64 - 32]; /* Set to 0 when writing. */
|
|
|
|
/* Device state information. Indexed by dev_number.
|
|
* 2 bytes per device.
|
|
* Note there are no per-device state flags. State information is rolled
|
|
* into the 'roles' value. If a device is spare or faulty, then it doesn't
|
|
* have a meaningful role.
|
|
*/
|
|
grub_uint16_t dev_roles[0]; /* Role in array, or 0xffff for a spare, or 0xfffe for faulty. */
|
|
};
|
|
/* Could be __attribute__ ((packed)), but since all members in this struct
|
|
are already appropriately aligned, we can omit this and avoid suboptimal
|
|
assembly in some cases. */
|
|
|
|
#define WriteMostly1 1 /* Mask for writemostly flag in above devflags. */
|
|
|
|
static struct grub_diskfilter_vg *
|
|
grub_mdraid_detect (grub_disk_t disk,
|
|
struct grub_diskfilter_pv_id *id,
|
|
grub_disk_addr_t *start_sector)
|
|
{
|
|
grub_disk_addr_t sector = 0;
|
|
grub_uint64_t size;
|
|
struct grub_raid_super_1x sb;
|
|
grub_uint8_t minor_version;
|
|
|
|
size = grub_disk_get_size (disk);
|
|
|
|
/* Check for an 1.x superblock.
|
|
* It's always aligned to a 4K boundary
|
|
* and depending on the minor version it can be:
|
|
* 0: At least 8K, but less than 12K, from end of device
|
|
* 1: At start of device
|
|
* 2: 4K from start of device.
|
|
*/
|
|
|
|
for (minor_version = 0; minor_version < 3; ++minor_version)
|
|
{
|
|
if (size == GRUB_DISK_SIZE_UNKNOWN && minor_version == 0)
|
|
continue;
|
|
|
|
switch (minor_version)
|
|
{
|
|
case 0:
|
|
sector = (size - 8 * 2) & ~(4 * 2 - 1);
|
|
break;
|
|
case 1:
|
|
sector = 0;
|
|
break;
|
|
case 2:
|
|
sector = 4 * 2;
|
|
break;
|
|
}
|
|
|
|
if (grub_disk_read (disk, sector, 0, sizeof (struct grub_raid_super_1x),
|
|
&sb))
|
|
return NULL;
|
|
|
|
if (grub_le_to_cpu32 (sb.magic) != SB_MAGIC
|
|
|| grub_le_to_cpu64 (sb.super_offset) != sector)
|
|
continue;
|
|
|
|
{
|
|
grub_uint64_t sb_size;
|
|
struct grub_raid_super_1x *real_sb;
|
|
grub_uint32_t level;
|
|
|
|
if (grub_le_to_cpu32 (sb.major_version) != 1)
|
|
{
|
|
grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
|
|
"Unsupported RAID version: %d",
|
|
grub_le_to_cpu32 (sb.major_version));
|
|
return NULL;
|
|
}
|
|
|
|
level = grub_le_to_cpu32 (sb.level);
|
|
|
|
/* Multipath. */
|
|
if ((int) level == -4)
|
|
level = 1;
|
|
|
|
if (level != 0 && level != 1 && level != 4 &&
|
|
level != 5 && level != 6 && level != 10)
|
|
{
|
|
grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
|
|
"Unsupported RAID level: %d", sb.level);
|
|
return NULL;
|
|
}
|
|
|
|
/* 1.x superblocks don't have a fixed size on disk. So we have to
|
|
read it again now that we now the max device count. */
|
|
sb_size = sizeof (struct grub_raid_super_1x)
|
|
+ 2 * grub_le_to_cpu32 (sb.max_dev);
|
|
real_sb = grub_malloc (sb_size);
|
|
if (! real_sb)
|
|
return NULL;
|
|
|
|
if (grub_disk_read (disk, sector, 0, sb_size, real_sb))
|
|
{
|
|
grub_free (real_sb);
|
|
return NULL;
|
|
}
|
|
|
|
struct grub_diskfilter_vg *array;
|
|
char *uuid;
|
|
|
|
if (grub_le_to_cpu32 (real_sb->dev_number) >=
|
|
grub_le_to_cpu32 (real_sb->max_dev))
|
|
{
|
|
grub_error (GRUB_ERR_OUT_OF_RANGE,
|
|
"spares aren't implemented");
|
|
return NULL;
|
|
}
|
|
|
|
id->uuidlen = 0;
|
|
id->id = grub_le_to_cpu16
|
|
(real_sb->dev_roles[grub_le_to_cpu32 (real_sb->dev_number)]);
|
|
|
|
uuid = grub_malloc (16);
|
|
if (!uuid)
|
|
{
|
|
grub_free (real_sb);
|
|
return NULL;
|
|
}
|
|
|
|
grub_memcpy (uuid, real_sb->set_uuid, 16);
|
|
|
|
*start_sector = grub_le_to_cpu64 (real_sb->data_offset);
|
|
|
|
if (grub_le_to_cpu32 (real_sb->dev_number)
|
|
>= grub_le_to_cpu32 (real_sb->raid_disks))
|
|
{
|
|
grub_error (GRUB_ERR_OUT_OF_RANGE,
|
|
"spares aren't implemented");
|
|
return NULL;
|
|
}
|
|
|
|
array = grub_diskfilter_make_raid (16, uuid,
|
|
grub_le_to_cpu32 (real_sb->raid_disks),
|
|
real_sb->set_name,
|
|
(real_sb->size)
|
|
? grub_le_to_cpu64 (real_sb->size)
|
|
: grub_le_to_cpu64 (real_sb->data_size),
|
|
grub_le_to_cpu32 (real_sb->chunksize),
|
|
grub_le_to_cpu32 (real_sb->layout),
|
|
grub_le_to_cpu32 (real_sb->level));
|
|
|
|
grub_free (real_sb);
|
|
return array;
|
|
}
|
|
}
|
|
|
|
grub_error (GRUB_ERR_OUT_OF_RANGE, "not 1.x raid");
|
|
return NULL;
|
|
}
|
|
|
|
static struct grub_diskfilter grub_mdraid_dev = {
|
|
.name = "mdraid1x",
|
|
.detect = grub_mdraid_detect,
|
|
.next = 0
|
|
};
|
|
|
|
GRUB_MOD_INIT (mdraid1x)
|
|
{
|
|
grub_diskfilter_register (&grub_mdraid_dev);
|
|
}
|
|
|
|
GRUB_MOD_FINI (mdraid1x)
|
|
{
|
|
grub_diskfilter_unregister (&grub_mdraid_dev);
|
|
}
|