5ed20adcb9
* conf/common.rmk (grub_probe_SOURCES): Add disk/mdraid_linux.c. (grub_fstest_SOURCES): Add disk/raid5_recover.c, disk/raid6_recover.c, disk/mdraid_linux.c and disk/dmraid_nvidia.c and lib/crc.c. (pkglib_MODULES): Add raid5rec.mod, raid6rec.mod, mdraid.mod and dm_nv.mod. (raid5rec_mod_SOURCES): New macro. (raid5rec_mod_CFLAGS): Likewise. (raid5rec_mod_LDFLAGS): Likewise. (raid6rec_mod_SOURCES): Likewise. (raid6rec_mod_CFLAGS): Likewise. (raid6rec_mod_LDFLAGS): Likewise. (mdraid_mod_SOURCES): Likewise. (mdraid_mod_CFLAGS): Likewise. (mdraid_mod_LDFLAGS): Likewise. (dm_nv_mod_SOURCES): Likewise. (dm_nv_mod_CFLAGS): Likewise. (dm_nv_mod_LDFLAGS): Likewise. * conf/i386-pc.rmk (grub_setup_SOURCES): Add disk/mdraid_linux.c. (grub_emu_SOURCES): Add disk/raid5_recover.c, disk/raid6_recover.c, disk/mdraid_linux.c and disk/dmraid_nvidia.c. * conf/i386-coreboot.rmk (grub_emu_SOURCES): Add disk/raid5_recover.c, disk/raid6_recover.c, disk/mdraid_linux.c and disk/dmraid_nvidia.c. * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise. * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise. * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise. * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise. * disk/raid5_recover.c: New file. * disk/raid6_recover.c: Likewise. * disk/mdraid_linux.c: Likewise. * disk/dmraid_nvidia.c: Likewise. * disk/i386/pc/biosdisk.c: Set total_sectors of cdrom device to ULONG_MAX. * disk/raid.c (grub_raid_open): Use the size of the smallest disk to calculate the size of raid device. (grub_raid_read): Simplify raid0 code. Support raid4, raid6 and four different layout of raid5. (grub_raid_scan_device): Remove code specific to mdraid. (grub_raid_list): New variable. (free_array): New function. (grub_raid_register): Likewise. (grub_raid_unregister): Likewise. (grub_raid_rescan): Likewise. (GRUB_MOD_INIT): Don't iterate device here. (GRUB_MOD_FINI): Use free_array to release resource. * include/grub/raid.h: Remove macro and structure specific to mdraid. (grub_raid5_recover_func_t): New function variable type. (grub_raid6_recover_func_t): Likewise. (grub_raid5_recover_func): New variable. (grub_raid6_recover_func): Likewise. (grub_raid_register): New function. (grub_raid_unregister): Likewise. (grub_raid_rescan): Likewise. (grub_raid_block_xor): Likewise. * util/grub-fstest.c: Add #include <grub/raid.h> and <grub/lib/crc.h>. (CMD_CRC): New macro. (part): Removed. (read_file): Handle device as well as file. (cmd_crc): New function. (fstest): Handle multiple disks. (options): Remove part, raw and long, add root and diskcount. (usage): Add crc, remove -p, -r, -l, add -r and -c. (main): Find the first non option entry and ignore subsequence options, add handling for the new options, support multiple disks. * util/grub-probe.c (probe): Add mdraid to abstraction_name.
86 lines
3.2 KiB
C
86 lines
3.2 KiB
C
/* raid.h - On disk structures for RAID. */
|
|
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 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/>.
|
|
*/
|
|
|
|
#ifndef GRUB_RAID_H
|
|
#define GRUB_RAID_H 1
|
|
|
|
#include <grub/types.h>
|
|
|
|
#define GRUB_RAID_MAX_DEVICES 32
|
|
|
|
#define GRUB_RAID_LAYOUT_LEFT_ASYMMETRIC 0
|
|
#define GRUB_RAID_LAYOUT_RIGHT_ASYMMETRIC 1
|
|
#define GRUB_RAID_LAYOUT_LEFT_SYMMETRIC 2
|
|
#define GRUB_RAID_LAYOUT_RIGHT_SYMMETRIC 3
|
|
|
|
#define GRUB_RAID_LAYOUT_RIGHT_MASK 1
|
|
#define GRUB_RAID_LAYOUT_SYMMETRIC_MASK 2
|
|
|
|
struct grub_raid_array
|
|
{
|
|
int number; /* The device number, taken from md_minor so we
|
|
are consistent with the device name in
|
|
Linux. */
|
|
int level; /* RAID levels, only 0, 1 or 5 at the moment. */
|
|
int layout; /* Layout for RAID 5/6. */
|
|
unsigned int total_devs; /* Total number of devices in the array. */
|
|
grub_size_t chunk_size; /* The size of a chunk, in 512 byte sectors. */
|
|
grub_uint64_t disk_size; /* Size of an individual disk, in 512 byte
|
|
sectors. */
|
|
int index; /* Index of current device. */
|
|
int uuid_len; /* The length of uuid. */
|
|
char *uuid; /* The UUID of the device. */
|
|
|
|
/* The following field is setup by the caller. */
|
|
char *name; /* That will be "md<number>". */
|
|
unsigned int nr_devs; /* The number of devices we've found so far. */
|
|
grub_disk_t device[GRUB_RAID_MAX_DEVICES]; /* Array of total_devs devices. */
|
|
struct grub_raid_array *next;
|
|
};
|
|
|
|
struct grub_raid
|
|
{
|
|
const char *name;
|
|
|
|
grub_err_t (*detect) (grub_disk_t disk, struct grub_raid_array *array);
|
|
|
|
struct grub_raid *next;
|
|
};
|
|
typedef struct grub_raid *grub_raid_t;
|
|
|
|
void grub_raid_register (grub_raid_t raid);
|
|
void grub_raid_unregister (grub_raid_t raid);
|
|
|
|
void grub_raid_rescan (void);
|
|
void grub_raid_block_xor (char *buf1, char *buf2, int size);
|
|
|
|
typedef grub_err_t (*grub_raid5_recover_func_t) (struct grub_raid_array *array,
|
|
int disknr, char *buf,
|
|
grub_disk_addr_t sector,
|
|
int size);
|
|
|
|
typedef grub_err_t (*grub_raid6_recover_func_t) (struct grub_raid_array *array,
|
|
int disknr, int p, char *buf,
|
|
grub_disk_addr_t sector,
|
|
int size);
|
|
|
|
extern grub_raid5_recover_func_t grub_raid5_recover_func;
|
|
extern grub_raid6_recover_func_t grub_raid6_recover_func;
|
|
|
|
#endif /* ! GRUB_RAID_H */
|