2010-02-06 17:43:37 +00:00
|
|
|
|
/* bsdlabel.c - Read BSD style partition tables. */
|
|
|
|
|
/*
|
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
|
|
|
|
* Copyright (C) 2002,2004,2005,2006,2007,2008,2009 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/partition.h>
|
|
|
|
|
#include <grub/bsdlabel.h>
|
|
|
|
|
#include <grub/disk.h>
|
|
|
|
|
#include <grub/mm.h>
|
|
|
|
|
#include <grub/misc.h>
|
|
|
|
|
#include <grub/dl.h>
|
|
|
|
|
|
2010-07-16 23:55:01 +00:00
|
|
|
|
#ifdef GRUB_UTIL
|
|
|
|
|
#include <grub/util/misc.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2010-02-06 17:43:37 +00:00
|
|
|
|
static struct grub_partition_map grub_bsdlabel_partition_map;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
|
bsdlabel_partition_map_iterate (grub_disk_t disk,
|
|
|
|
|
int (*hook) (grub_disk_t disk,
|
|
|
|
|
const grub_partition_t partition))
|
|
|
|
|
{
|
|
|
|
|
struct grub_partition_bsd_disk_label label;
|
|
|
|
|
struct grub_partition p;
|
|
|
|
|
grub_disk_addr_t delta = 0;
|
|
|
|
|
unsigned pos;
|
|
|
|
|
|
|
|
|
|
/* Read the BSD label. */
|
|
|
|
|
if (grub_disk_read (disk, GRUB_PC_PARTITION_BSD_LABEL_SECTOR,
|
|
|
|
|
0, sizeof (label), &label))
|
|
|
|
|
return grub_errno;
|
|
|
|
|
|
|
|
|
|
/* Check if it is valid. */
|
|
|
|
|
if (label.magic != grub_cpu_to_le32 (GRUB_PC_PARTITION_BSD_LABEL_MAGIC))
|
|
|
|
|
return grub_error (GRUB_ERR_BAD_PART_TABLE, "no signature");
|
|
|
|
|
|
2010-07-16 23:57:48 +00:00
|
|
|
|
/* A kludge to determine a base of be.offset. */
|
|
|
|
|
if (GRUB_PC_PARTITION_BSD_LABEL_WHOLE_DISK_PARTITION
|
|
|
|
|
< grub_cpu_to_le16 (label.num_partitions))
|
|
|
|
|
{
|
|
|
|
|
struct grub_partition_bsd_entry whole_disk_be;
|
|
|
|
|
|
|
|
|
|
pos = sizeof (label) + GRUB_PC_PARTITION_BSD_LABEL_SECTOR
|
|
|
|
|
* GRUB_DISK_SECTOR_SIZE + sizeof (struct grub_partition_bsd_entry)
|
|
|
|
|
* GRUB_PC_PARTITION_BSD_LABEL_WHOLE_DISK_PARTITION;
|
|
|
|
|
|
|
|
|
|
if (grub_disk_read (disk, pos / GRUB_DISK_SECTOR_SIZE,
|
|
|
|
|
pos % GRUB_DISK_SECTOR_SIZE, sizeof (whole_disk_be),
|
|
|
|
|
&whole_disk_be))
|
|
|
|
|
return grub_errno;
|
|
|
|
|
|
|
|
|
|
delta = grub_le_to_cpu32 (whole_disk_be.offset);
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-06 17:43:37 +00:00
|
|
|
|
pos = sizeof (label) + GRUB_PC_PARTITION_BSD_LABEL_SECTOR
|
|
|
|
|
* GRUB_DISK_SECTOR_SIZE;
|
|
|
|
|
|
|
|
|
|
for (p.number = 0;
|
|
|
|
|
p.number < grub_cpu_to_le16 (label.num_partitions);
|
2010-07-14 09:26:17 +00:00
|
|
|
|
p.number++, pos += sizeof (struct grub_partition_bsd_entry))
|
2010-02-06 17:43:37 +00:00
|
|
|
|
{
|
|
|
|
|
struct grub_partition_bsd_entry be;
|
|
|
|
|
|
2010-07-16 23:57:48 +00:00
|
|
|
|
if (p.number == GRUB_PC_PARTITION_BSD_LABEL_WHOLE_DISK_PARTITION)
|
|
|
|
|
continue;
|
|
|
|
|
|
2010-02-06 17:43:37 +00:00
|
|
|
|
p.offset = pos / GRUB_DISK_SECTOR_SIZE;
|
|
|
|
|
p.index = pos % GRUB_DISK_SECTOR_SIZE;
|
|
|
|
|
|
|
|
|
|
if (grub_disk_read (disk, p.offset, p.index, sizeof (be), &be))
|
|
|
|
|
return grub_errno;
|
|
|
|
|
|
2010-07-14 09:26:17 +00:00
|
|
|
|
p.start = grub_le_to_cpu32 (be.offset);
|
2010-02-06 17:43:37 +00:00
|
|
|
|
p.len = grub_le_to_cpu32 (be.size);
|
|
|
|
|
p.partmap = &grub_bsdlabel_partition_map;
|
|
|
|
|
|
2010-07-14 09:26:17 +00:00
|
|
|
|
grub_dprintf ("partition",
|
|
|
|
|
"partition %d: type 0x%x, start 0x%llx, len 0x%llx\n",
|
|
|
|
|
p.number, be.fs_type,
|
|
|
|
|
(unsigned long long) p.start,
|
|
|
|
|
(unsigned long long) p.len);
|
|
|
|
|
|
2010-07-16 23:57:48 +00:00
|
|
|
|
if (p.len == 0)
|
2010-07-14 09:26:17 +00:00
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (p.start < delta)
|
|
|
|
|
{
|
|
|
|
|
#ifdef GRUB_UTIL
|
|
|
|
|
char *partname;
|
|
|
|
|
#endif
|
|
|
|
|
grub_dprintf ("partition",
|
|
|
|
|
"partition %d: invalid start (found 0x%llx, wanted >= 0x%llx)\n",
|
|
|
|
|
p.number,
|
|
|
|
|
(unsigned long long) p.start,
|
|
|
|
|
(unsigned long long) delta);
|
|
|
|
|
#ifdef GRUB_UTIL
|
|
|
|
|
/* disk->partition != NULL as 0 < delta */
|
|
|
|
|
partname = grub_partition_get_name (disk->partition);
|
|
|
|
|
grub_util_warn ("Discarding improperly nested partition (%s,%s,%s%d)",
|
|
|
|
|
disk->name, partname, p.partmap->name, p.number + 1);
|
|
|
|
|
grub_free (partname);
|
|
|
|
|
#endif
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p.start -= delta;
|
|
|
|
|
|
|
|
|
|
if (hook (disk, &p))
|
|
|
|
|
return grub_errno;
|
2010-02-06 17:43:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return GRUB_ERR_NONE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Partition map type. */
|
|
|
|
|
static struct grub_partition_map grub_bsdlabel_partition_map =
|
|
|
|
|
{
|
2010-02-06 18:33:53 +00:00
|
|
|
|
.name = "bsd",
|
2010-02-06 17:43:37 +00:00
|
|
|
|
.iterate = bsdlabel_partition_map_iterate,
|
|
|
|
|
};
|
|
|
|
|
|
2010-03-26 14:44:13 +00:00
|
|
|
|
GRUB_MOD_INIT(part_bsd)
|
2010-02-06 17:43:37 +00:00
|
|
|
|
{
|
|
|
|
|
grub_partition_map_register (&grub_bsdlabel_partition_map);
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-26 14:44:13 +00:00
|
|
|
|
GRUB_MOD_FINI(part_bsd)
|
2010-02-06 17:43:37 +00:00
|
|
|
|
{
|
|
|
|
|
grub_partition_map_unregister (&grub_bsdlabel_partition_map);
|
|
|
|
|
}
|