Skip to content

Commit 4f78aa9

Browse files
ianlancetaylorgopherbot
authored andcommitted
debug/elf: check for multiplication overflow for shnum * shentsize
No test case because the problem can only happen for invalid data. Let the fuzzer find cases like this. For #47653 Fixes #70584 Change-Id: I8a69a27dcb5b258b88f8e01ebaf0ec20cfcd489b Reviewed-on: https://go-review.googlesource.com/c/go/+/632035 Reviewed-by: Veronica Silina <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Tobias Klauser <[email protected]> Auto-Submit: Ian Lance Taylor <[email protected]> Reviewed-by: Cherry Mui <[email protected]>
1 parent 9dcf419 commit 4f78aa9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/debug/elf/file.go

+3
Original file line numberDiff line numberDiff line change
@@ -497,6 +497,9 @@ func NewFile(r io.ReaderAt) (*File, error) {
497497
if c < 0 {
498498
return nil, &FormatError{0, "too many sections", shnum}
499499
}
500+
if shnum > 0 && ((1<<64)-1)/uint64(shnum) < uint64(shentsize) {
501+
return nil, &FormatError{0, "section header overflow", shnum}
502+
}
500503
f.Sections = make([]*Section, 0, c)
501504
names := make([]uint32, 0, c)
502505
shdata, err := saferio.ReadDataAt(sr, uint64(shnum)*uint64(shentsize), shoff)

0 commit comments

Comments
 (0)