2005-11-13 19:45:12 +00:00
|
|
|
|
/* acorn.c - Read Linux/ADFS partition tables. */
|
|
|
|
|
/*
|
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* Copyright (C) 2005,2007 Free Software Foundation, Inc.
|
2005-11-13 19:45:12 +00:00
|
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
2005-11-13 19:45:12 +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-11-13 19:45:12 +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-11-13 19:45:12 +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-11-13 19:45:12 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <grub/disk.h>
|
|
|
|
|
#include <grub/misc.h>
|
|
|
|
|
#include <grub/mm.h>
|
|
|
|
|
#include <grub/partition.h>
|
|
|
|
|
#include <grub/acorn_filecore.h>
|
|
|
|
|
|
2011-04-11 21:01:51 +00:00
|
|
|
|
GRUB_MOD_LICENSE ("GPLv3+");
|
|
|
|
|
|
2005-11-13 19:45:12 +00:00
|
|
|
|
#define LINUX_NATIVE_MAGIC grub_cpu_to_le32 (0xdeafa1de)
|
|
|
|
|
#define LINUX_SWAP_MAGIC grub_cpu_to_le32 (0xdeafab1e)
|
|
|
|
|
#define LINUX_MAP_ENTRIES (512 / 12)
|
|
|
|
|
|
2007-12-30 08:52:06 +00:00
|
|
|
|
#define NONADFS_PARTITION_TYPE_LINUX 9
|
|
|
|
|
#define NONADFS_PARTITION_TYPE_MASK 15
|
2005-11-13 19:45:12 +00:00
|
|
|
|
|
|
|
|
|
struct grub_acorn_boot_block
|
|
|
|
|
{
|
2011-06-23 18:05:39 +00:00
|
|
|
|
union
|
|
|
|
|
{
|
|
|
|
|
struct
|
|
|
|
|
{
|
|
|
|
|
grub_uint8_t misc[0x1C0];
|
|
|
|
|
struct grub_filecore_disc_record disc_record;
|
|
|
|
|
grub_uint8_t flags;
|
|
|
|
|
grub_uint16_t start_cylinder;
|
|
|
|
|
grub_uint8_t checksum;
|
|
|
|
|
} __attribute__ ((packed, aligned));
|
|
|
|
|
grub_uint8_t bin[0x200];
|
|
|
|
|
};
|
2005-11-13 19:45:12 +00:00
|
|
|
|
} __attribute__ ((packed, aligned));
|
|
|
|
|
|
|
|
|
|
struct linux_part
|
|
|
|
|
{
|
|
|
|
|
grub_uint32_t magic;
|
|
|
|
|
grub_uint32_t start;
|
|
|
|
|
grub_uint32_t size;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static struct grub_partition_map grub_acorn_partition_map;
|
|
|
|
|
|
|
|
|
|
static grub_err_t
|
2005-11-23 02:44:34 +00:00
|
|
|
|
acorn_partition_map_find (grub_disk_t disk, struct linux_part *m,
|
2006-06-05 17:18:31 +00:00
|
|
|
|
grub_disk_addr_t *sector)
|
2005-11-13 19:45:12 +00:00
|
|
|
|
{
|
|
|
|
|
struct grub_acorn_boot_block boot;
|
2005-11-23 02:44:34 +00:00
|
|
|
|
grub_err_t err;
|
|
|
|
|
unsigned int checksum = 0;
|
|
|
|
|
unsigned int heads;
|
|
|
|
|
unsigned int sectors_per_cylinder;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
err = grub_disk_read (disk, 0xC00 / GRUB_DISK_SECTOR_SIZE, 0,
|
2006-06-05 17:18:31 +00:00
|
|
|
|
sizeof (struct grub_acorn_boot_block),
|
2009-05-13 18:58:38 +00:00
|
|
|
|
&boot);
|
2005-11-13 19:45:12 +00:00
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
|
2007-12-30 08:52:06 +00:00
|
|
|
|
if ((boot.flags & NONADFS_PARTITION_TYPE_MASK) != NONADFS_PARTITION_TYPE_LINUX)
|
2005-11-13 19:45:12 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i != 0x1ff; ++i)
|
2011-06-23 18:05:39 +00:00
|
|
|
|
checksum = ((checksum & 0xff) + (checksum >> 8) + boot.bin[i]);
|
2005-11-13 19:45:12 +00:00
|
|
|
|
|
|
|
|
|
if ((grub_uint8_t) checksum != boot.checksum)
|
|
|
|
|
goto fail;
|
|
|
|
|
|
2005-11-23 02:44:34 +00:00
|
|
|
|
heads = (boot.disc_record.heads
|
2005-11-13 19:45:12 +00:00
|
|
|
|
+ ((boot.disc_record.lowsector >> 6) & 1));
|
2005-11-23 02:44:34 +00:00
|
|
|
|
sectors_per_cylinder = boot.disc_record.secspertrack * heads;
|
2005-11-13 19:45:12 +00:00
|
|
|
|
*sector = grub_le_to_cpu16 (boot.start_cylinder) * sectors_per_cylinder;
|
|
|
|
|
|
|
|
|
|
return grub_disk_read (disk, *sector, 0,
|
2005-11-23 02:44:34 +00:00
|
|
|
|
sizeof (struct linux_part) * LINUX_MAP_ENTRIES,
|
2009-05-13 18:58:38 +00:00
|
|
|
|
m);
|
2005-11-13 19:45:12 +00:00
|
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
return grub_error (GRUB_ERR_BAD_PART_TABLE,
|
2009-12-24 22:53:05 +00:00
|
|
|
|
"Linux/ADFS partition map not found");
|
2005-11-13 19:45:12 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
|
acorn_partition_map_iterate (grub_disk_t disk,
|
2013-01-20 15:52:15 +00:00
|
|
|
|
grub_partition_iterate_hook_t hook,
|
|
|
|
|
void *hook_data)
|
2005-11-13 19:45:12 +00:00
|
|
|
|
{
|
|
|
|
|
struct grub_partition part;
|
|
|
|
|
struct linux_part map[LINUX_MAP_ENTRIES];
|
2005-11-23 02:44:34 +00:00
|
|
|
|
int i;
|
2010-02-06 17:43:37 +00:00
|
|
|
|
grub_disk_addr_t sector = 0;
|
2005-11-23 02:44:34 +00:00
|
|
|
|
grub_err_t err;
|
2005-11-13 19:45:12 +00:00
|
|
|
|
|
2010-02-06 17:43:37 +00:00
|
|
|
|
err = acorn_partition_map_find (disk, map, §or);
|
2005-11-13 19:45:12 +00:00
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
|
|
|
|
|
part.partmap = &grub_acorn_partition_map;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i != LINUX_MAP_ENTRIES; ++i)
|
|
|
|
|
{
|
|
|
|
|
if (map[i].magic != LINUX_NATIVE_MAGIC
|
|
|
|
|
&& map[i].magic != LINUX_SWAP_MAGIC)
|
|
|
|
|
return GRUB_ERR_NONE;
|
|
|
|
|
|
2006-06-05 17:18:31 +00:00
|
|
|
|
part.start = sector + map[i].start;
|
2005-11-13 19:45:12 +00:00
|
|
|
|
part.len = map[i].size;
|
|
|
|
|
part.offset = 6;
|
2010-02-06 17:43:37 +00:00
|
|
|
|
part.number = part.index = i;
|
2005-11-13 19:45:12 +00:00
|
|
|
|
|
2013-01-20 15:52:15 +00:00
|
|
|
|
if (hook (disk, &part, hook_data))
|
2005-11-13 19:45:12 +00:00
|
|
|
|
return grub_errno;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return GRUB_ERR_NONE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Partition map type. */
|
|
|
|
|
static struct grub_partition_map grub_acorn_partition_map =
|
|
|
|
|
{
|
2010-02-06 18:33:53 +00:00
|
|
|
|
.name = "acorn",
|
2005-11-13 19:45:12 +00:00
|
|
|
|
.iterate = acorn_partition_map_iterate,
|
|
|
|
|
};
|
|
|
|
|
|
2010-02-07 01:07:35 +00:00
|
|
|
|
GRUB_MOD_INIT(part_acorn)
|
2005-11-13 19:45:12 +00:00
|
|
|
|
{
|
|
|
|
|
grub_partition_map_register (&grub_acorn_partition_map);
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-07 01:07:35 +00:00
|
|
|
|
GRUB_MOD_FINI(part_acorn)
|
2005-11-13 19:45:12 +00:00
|
|
|
|
{
|
|
|
|
|
grub_partition_map_unregister (&grub_acorn_partition_map);
|
|
|
|
|
}
|