Skip to content

Commit

Permalink
fix: Avoid cleaning paths in whiteout transformations
Browse files Browse the repository at this point in the history
Prior to this PR, when a tar file contains an entry prefixed with `./`
that is processed by a whiteout transformation, the `./` prefix is lost.

This loss of the prefix was due to the use of `filepath` functions that
clean the resulting path. Instead, use `filepath.Split` and manual
concatenation with filepath.Seperator` to avoid the clean.
  • Loading branch information
dtrudg committed Jun 4, 2024
1 parent 4df812e commit 6498921
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 15 deletions.
Binary file modified pkg/mutate/testdata/Test_WhiteoutRoundTrip/aufs.golden
Binary file not shown.
Binary file modified pkg/mutate/testdata/Test_WhiteoutRoundTrip/overlayfs.golden
Binary file not shown.
21 changes: 7 additions & 14 deletions pkg/mutate/whiteout.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ var errUnexpectedOpaque = errors.New("unexpected opaque marker")
// scanAUFSWhiteouts reads a TAR stream, returning a map of <path>:true for
// directories in the tar that contain an AUFS .wh..wh..opq opaque directory
// marker file, and a boolean indicating the presence of any .wh.<file> markers.
// Note that paths returned are clean, per filepath.Clean.
func scanAUFSWhiteouts(in io.Reader) (map[string]bool, bool, error) {
opaquePaths := map[string]bool{}
fileWhiteout := false
Expand All @@ -40,10 +39,9 @@ func scanAUFSWhiteouts(in io.Reader) (map[string]bool, bool, error) {
return nil, false, err
}

base := filepath.Base(header.Name)
parent, base := filepath.Split(header.Name)

if base == aufsOpaqueMarker {
parent := filepath.Dir(header.Name)
opaquePaths[parent] = true
}

Expand Down Expand Up @@ -75,10 +73,7 @@ func whiteoutsToOverlayFS(in io.Reader, out io.Writer, opaquePaths map[string]bo
// Must force to PAX format, to accommodate xattrs
header.Format = tar.FormatPAX

clean := filepath.Clean(header.Name)
base := filepath.Base(header.Name)
parent := filepath.Dir(header.Name)

parent, base := filepath.Split(header.Name)
// Don't include .wh..wh..opq opaque directory markers in output.
if base == aufsOpaqueMarker {
// If we don't know the target should be opaque, then provided opaquePaths is incorrect.
Expand All @@ -88,15 +83,15 @@ func whiteoutsToOverlayFS(in io.Reader, out io.Writer, opaquePaths map[string]bo
continue
}
// Set overlayfs xattr on a dir that was previously found to contain a .wh..wh..opq marker.
if opq := opaquePaths[clean]; opq {
if opq := opaquePaths[header.Name]; opq {
if header.PAXRecords == nil {
header.PAXRecords = map[string]string{}
}
header.PAXRecords[schilyOpaqueXattr] = "y"
}
// Replace a `.wh.<name>` marker with a char dev 0 at <name>
if strings.HasPrefix(base, aufsWhiteoutPrefix) {
target := filepath.Join(parent, strings.TrimPrefix(base, aufsWhiteoutPrefix))
target := parent + strings.TrimPrefix(base, aufsWhiteoutPrefix)
header.Name = target
header.Typeflag = tar.TypeChar
header.Devmajor = 0
Expand Down Expand Up @@ -146,12 +141,9 @@ func whiteoutsToAUFS(in io.Reader, out io.Writer) error {
return err
}
// Write opaque marker file inside the directory.
// Disable gosec 305: File traversal when extracting zip/tar archive.
// We are modifying an existing tar stream. No extraction here.
//nolint:gosec
if err := tw.WriteHeader(&tar.Header{
Typeflag: tar.TypeReg,
Name: filepath.Join(header.Name, aufsOpaqueMarker),
Name: strings.TrimSuffix(header.Name, string(filepath.Separator)) + string(filepath.Separator) + aufsOpaqueMarker,
Size: 0,
Mode: 0o600,
Uid: header.Uid,
Expand All @@ -168,8 +160,9 @@ func whiteoutsToAUFS(in io.Reader, out io.Writer) error {

// <file> as 0:0 char dev -> becomes .wh..wh.<file>
if header.Typeflag == tar.TypeChar && header.Devmajor == 0 && header.Devminor == 0 {
parent, base := filepath.Split(header.Name)
header.Typeflag = tar.TypeReg
header.Name = filepath.Join(filepath.Dir(header.Name), aufsWhiteoutPrefix+filepath.Base(header.Name))
header.Name = parent + aufsWhiteoutPrefix + base
header.Size = 0
header.Mode = 0o600
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/mutate/whiteout_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func Test_scanAUFSOpaque(t *testing.T) {
Hex: "da55812559dec81445c289c3832cee4a2f725b15aeb258791640185c3126b2bf",
}),
expectOpaque: map[string]bool{
"dir": true,
"./dir/": true,
},
expectFileWhiteout: true,
},
Expand Down

0 comments on commit 6498921

Please sign in to comment.