Skip to content

Commit c991d2a

Browse files
committedJun 28, 2017
archive/tar: use best effort at writing USTAR header
Prior to this change, if the Writer needed to use the PAX format, it would output a USTAR header with an empty name. This should be okay since the PAX specification dictates that the PAX record for "path" should override the semantic meaning of any of the old USTAR fields. Unfortunately, the implementation of tar on OpenBSD 6.1 is too strict with their handling of PAX files such that they check for the validity of this bogus field even though the PAX header is present. To allow Go's Writer output be parsible by OpenBSD's tar utility, we write a best-effort (ASCII-only and truncated) version of the original file name. Note that this still fails in some edge-cases (for example, a Chinese filename containing all non-ASCII characters). OpenBSD should really relax their checking, as you honestly can't always expect a sensible path to be generated when USTAR cannot handle the original path. Fixes #20707 Change-Id: Id7d77349023d2152d7291d582cd050b6681760e4 Reviewed-on: https://go-review.googlesource.com/46914 Run-TryBot: Joe Tsai <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent 289a871 commit c991d2a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed
 
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

‎src/archive/tar/writer.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,15 @@ func (tw *Writer) writeHeader(hdr *Header, allowPax bool) error {
121121
needsPaxHeader := paxKeyword != paxNone && len(s) > len(b) || !isASCII(s)
122122
if needsPaxHeader {
123123
paxHeaders[paxKeyword] = s
124-
return
125124
}
126-
f.formatString(b, s)
125+
126+
// Write string in a best-effort manner to satisfy readers that expect
127+
// the field to be non-empty.
128+
s = toASCII(s)
129+
if len(s) > len(b) {
130+
s = s[:len(b)]
131+
}
132+
f.formatString(b, s) // Should never error
127133
}
128134
var formatNumeric = func(b []byte, x int64, paxKeyword string) {
129135
// Try octal first.

0 commit comments

Comments
 (0)