Skip to content

Commit 399ee16

Browse files
timothy-kingGo LUCI
authored and
Go LUCI
committed
internal/gcimporter: update FindExportData to return a non-negative size
Updates FindExportData to return a non-negative size when there is no error. This can only happen if the archive file is malformed. Updates golang/go#70651 Change-Id: Ia422651cd31fba83a260cf1be600ffd134012a01 Reviewed-on: https://go-review.googlesource.com/c/tools/+/633278 Reviewed-by: Alan Donovan <adonovan@google.com> Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Robert Findley <rfindley@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Commit-Queue: Tim King <taking@google.com>
1 parent 25b0003 commit 399ee16

File tree

2 files changed

+13
-15
lines changed

2 files changed

+13
-15
lines changed

go/gcexportdata/gcexportdata.go

+7-13
Original file line numberDiff line numberDiff line change
@@ -111,19 +111,13 @@ func NewReader(r io.Reader) (io.Reader, error) {
111111
return nil, err
112112
}
113113

114-
if size >= 0 {
115-
// We were given an archive and found the __.PKGDEF in it.
116-
// This tells us the size of the export data, and we don't
117-
// need to return the entire file.
118-
return &io.LimitedReader{
119-
R: buf,
120-
N: size,
121-
}, nil
122-
} else {
123-
// We were given an object file. As such, we don't know how large
124-
// the export data is and must return the entire file.
125-
return buf, nil
126-
}
114+
// We were given an archive and found the __.PKGDEF in it.
115+
// This tells us the size of the export data, and we don't
116+
// need to return the entire file.
117+
return &io.LimitedReader{
118+
R: buf,
119+
N: size,
120+
}, nil
127121
}
128122

129123
// readAll works the same way as io.ReadAll, but avoids allocations and copies

internal/gcimporter/exportdata.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func readGopackHeader(r *bufio.Reader) (name string, size int64, err error) {
4343
// file by reading from it. The reader must be positioned at the
4444
// start of the file before calling this function. The hdr result
4545
// is the string before the export data, either "$$" or "$$B".
46-
// The size result is the length of the export data in bytes, or -1 if not known.
46+
// The size result is the length of the export data in bytes.
4747
//
4848
// This function is needed by [gcexportdata.Read], which must
4949
// accept inputs produced by the last two releases of cmd/compile,
@@ -67,6 +67,7 @@ func FindExportData(r *bufio.Reader) (hdr string, size int64, err error) {
6767
if name, size, err = readGopackHeader(r); err != nil {
6868
return
6969
}
70+
arsize := size
7071

7172
// First entry should be __.PKGDEF.
7273
if name != "__.PKGDEF" {
@@ -99,8 +100,11 @@ func FindExportData(r *bufio.Reader) (hdr string, size int64, err error) {
99100
size -= int64(len(line))
100101
}
101102
hdr = string(line)
103+
// TODO(taking): Return an error when hdr != "$$B\n".
104+
// TODO(taking): Remove end-of-section marker "\n$$\n" from size.
105+
102106
if size < 0 {
103-
size = -1
107+
err = fmt.Errorf("invalid size (%d) in the archive file: %d bytes remain without section headers (recompile package)", arsize, size)
104108
}
105109

106110
return

0 commit comments

Comments
 (0)