From: Ian Lance Taylor Date: Mon, 26 Aug 2024 22:17:07 +0000 (-0700) Subject: debug/buildinfo: don't crash on corrupt object file X-Git-Tag: go1.24rc1~1101 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6f00a4efe4d7ed9ac871a8b025a022f964cfa4e2;p=gostls13.git debug/buildinfo: don't crash on corrupt object file If the length reported for the object file is more than the amount of data we actually read, then the count can tell us that there is sufficient remaining data but the slice operation can fail. No test case because the problem can only happen for invalid data. Let the fuzzer find cases like this. Fixes #69066 Change-Id: I8d12ca8ade3330517ade45c7578b477772b7efd2 Reviewed-on: https://go-review.googlesource.com/c/go/+/608517 LUCI-TryBot-Result: Go LUCI Auto-Submit: Ian Lance Taylor Commit-Queue: Ian Lance Taylor Reviewed-by: Ian Lance Taylor Reviewed-by: Michael Pratt --- diff --git a/src/debug/buildinfo/buildinfo.go b/src/debug/buildinfo/buildinfo.go index f3d38b26e8..07f835127e 100644 --- a/src/debug/buildinfo/buildinfo.go +++ b/src/debug/buildinfo/buildinfo.go @@ -380,7 +380,14 @@ func searchMagic(x exe, start, size uint64) (uint64, error) { } if i%buildInfoAlign != 0 { // Found magic, but misaligned. Keep searching. - data = data[(i+buildInfoAlign-1)&^(buildInfoAlign-1):] + next := (i + buildInfoAlign - 1) &^ (buildInfoAlign - 1) + if next > len(data) { + // Corrupt object file: the remaining + // count says there is more data, + // but we didn't read it. + return 0, errNotGoExe + } + data = data[next:] continue } // Good match!