/* * VasEBoot -- GRand Unified Bootloader * Copyright (C) 2010 Free Software Foundation, Inc. * * VasEBoot 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. * * VasEBoot 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 VasEBoot. If not, see . */ #include #include #include #include #include #include #include #include VasEBoot_MOD_LICENSE ("GPLv3+"); static struct VasEBoot_partition_map VasEBoot_plan_partition_map; static VasEBoot_err_t plan_partition_map_iterate (VasEBoot_disk_t disk, VasEBoot_partition_iterate_hook_t hook, void *hook_data) { struct VasEBoot_partition p; int ptr = 0; VasEBoot_err_t err; p.partmap = &VasEBoot_plan_partition_map; p.msdostype = 0; for (p.number = 0; ; p.number++) { char sig[sizeof ("part ") - 1]; char c; p.offset = (ptr >> VasEBoot_DISK_SECTOR_BITS) + 1; p.index = ptr & (VasEBoot_DISK_SECTOR_SIZE - 1); err = VasEBoot_disk_read (disk, 1, ptr, sizeof (sig), sig); if (err) return err; if (VasEBoot_memcmp (sig, "part ", sizeof ("part ") - 1) != 0) break; ptr += sizeof (sig); do { err = VasEBoot_disk_read (disk, 1, ptr, 1, &c); if (err) return err; ptr++; } while (VasEBoot_isdigit (c) || VasEBoot_isalpha (c)); if (c != ' ') break; p.start = 0; while (1) { err = VasEBoot_disk_read (disk, 1, ptr, 1, &c); if (err) return err; ptr++; if (!VasEBoot_isdigit (c)) break; p.start = p.start * 10 + (c - '0'); } if (c != ' ') break; p.len = 0; while (1) { err = VasEBoot_disk_read (disk, 1, ptr, 1, &c); if (err) return err; ptr++; if (!VasEBoot_isdigit (c)) break; p.len = p.len * 10 + (c - '0'); } if (c != '\n') break; p.len -= p.start; if (hook (disk, &p, hook_data)) return VasEBoot_errno; } if (p.number == 0) return VasEBoot_error (VasEBoot_ERR_BAD_PART_TABLE, "not a plan partition table"); return VasEBoot_ERR_NONE; } /* Partition map type. */ static struct VasEBoot_partition_map VasEBoot_plan_partition_map = { .name = "plan", .iterate = plan_partition_map_iterate, }; VasEBoot_MOD_INIT(part_plan) { VasEBoot_partition_map_register (&VasEBoot_plan_partition_map); } VasEBoot_MOD_FINI(part_plan) { VasEBoot_partition_map_unregister (&VasEBoot_plan_partition_map); }