summaryrefslogtreecommitdiff
path: root/disk
diff options
context:
space:
mode:
authorStefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>2021-03-08 19:07:11 +0300
committerTom Rini <trini@konsulko.com>2021-04-13 00:17:11 +0300
commitd46933839f98d8cdb34fc87299b5f2a4ec4bbfec (patch)
treea5b50124886981da1c9a84b143945c0b1f4cb75e /disk
parentb935d190662306b4174a8f7e3dbd6194c5f55ecb (diff)
downloadu-boot-d46933839f98d8cdb34fc87299b5f2a4ec4bbfec.tar.xz
disk: gpt: verify alternate LBA points to last usable LBA
The gpt command require the GPT backup header at the standard location at the end of the device. Check the alternate LBA value before reading the GPT backup header from the last usable LBA of the device. Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'disk')
-rw-r--r--disk/part_efi.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/disk/part_efi.c b/disk/part_efi.c
index e5636ea7e6..0fb7ff0b6b 100644
--- a/disk/part_efi.c
+++ b/disk/part_efi.c
@@ -692,6 +692,15 @@ int gpt_verify_headers(struct blk_desc *dev_desc, gpt_header *gpt_head,
/* Free pte before allocating again */
free(*gpt_pte);
+ /*
+ * Check that the alternate_lba entry points to the last LBA
+ */
+ if (le64_to_cpu(gpt_head->alternate_lba) != (dev_desc->lba - 1)) {
+ printf("%s: *** ERROR: Misplaced Backup GPT ***\n",
+ __func__);
+ return -1;
+ }
+
if (is_gpt_valid(dev_desc, (dev_desc->lba - 1),
gpt_head, gpt_pte) != 1) {
printf("%s: *** ERROR: Invalid Backup GPT ***\n",