diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2021-06-02 22:44:28 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2021-06-02 22:44:28 +0000 |
commit | a490c7228f526f0a00bdbff73a9cc21d85c4542a (patch) | |
tree | c5a903c4519effad52ff92d14b34cd31139583c3 /sys/arch/armv7 | |
parent | f3bce683a87856150610d93f55e4453a1cd21bb2 (diff) |
Use the same logic in all copies of gpt_chk_mbr(), relaxing the
media length check to allow EFI GPT partitions to be smaller that
the entire disk.
Consistently use GPTSECTOR instead of randomly tossing in some
literal '1's.
ok kettenis@
Diffstat (limited to 'sys/arch/armv7')
-rw-r--r-- | sys/arch/armv7/stand/efiboot/efidev.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/sys/arch/armv7/stand/efiboot/efidev.c b/sys/arch/armv7/stand/efiboot/efidev.c index b79d6bac071..c122750b3ff 100644 --- a/sys/arch/armv7/stand/efiboot/efidev.c +++ b/sys/arch/armv7/stand/efiboot/efidev.c @@ -1,4 +1,4 @@ -/* $OpenBSD: efidev.c,v 1.6 2020/12/09 18:10:18 krw Exp $ */ +/* $OpenBSD: efidev.c,v 1.7 2021/06/02 22:44:27 krw Exp $ */ /* * Copyright (c) 2015 YASUOKA Masahiko <yasuoka@yasuoka.net> @@ -150,12 +150,11 @@ gpt_chk_mbr(struct dos_partition *dp, u_int64_t dsize) found++; if (dp2->dp_typ != DOSPTYP_EFI) continue; + if (letoh32(dp2->dp_start) != GPTSECTOR) + continue; psize = letoh32(dp2->dp_size); - if (psize == (dsize - 1) || - psize == UINT32_MAX) { - if (letoh32(dp2->dp_start) == 1) - efi++; - } + if (psize <= (dsize - GPTSECTOR) || psize == UINT32_MAX) + efi++; } if (found == 1 && efi == 1) return (0); @@ -283,8 +282,8 @@ findopenbsd_gpt(efi_diskinfo_t ed, const char **err) return (-1); } - /* LBA1: GPT Header */ - lba = 1; + /* GPT Header */ + lba = GPTSECTOR; status = efid_io(F_READ, ed, EFI_SECTOBLK(ed, lba), EFI_BLKSPERSEC(ed), buf); if (EFI_ERROR(status)) { |