Skip to content

Commit ed33ae1

Browse files
ianlancetaylorgopherbot
authored andcommitted
debug/macho: use saferio to read symbol table strings
No test case because the problem can only happen for invalid data. Let the fuzzer find cases like this. For #47653 Fixes #58603 Change-Id: I67fc45365c1a5b0b4b381f541bf2fee8ce8ddc3a Reviewed-on: https://go-review.googlesource.com/c/go/+/469895 TryBot-Result: Gopher Robot <[email protected]> Run-TryBot: Ian Lance Taylor <[email protected]> Reviewed-by: Bryan Mills <[email protected]> Auto-Submit: Ian Lance Taylor <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> Run-TryBot: Ian Lance Taylor <[email protected]>
1 parent dd87e33 commit ed33ae1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/debug/macho/file.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,8 @@ func NewFile(r io.ReaderAt) (*File, error) {
323323
if err := binary.Read(b, bo, &hdr); err != nil {
324324
return nil, err
325325
}
326-
strtab := make([]byte, hdr.Strsize)
327-
if _, err := r.ReadAt(strtab, int64(hdr.Stroff)); err != nil {
326+
strtab, err := saferio.ReadDataAt(r, uint64(hdr.Strsize), int64(hdr.Stroff))
327+
if err != nil {
328328
return nil, err
329329
}
330330
var symsz int

0 commit comments

Comments
 (0)