mirror of
https://github.com/moby/buildkit.git
synced 2026-08-04 14:50:21 +00:00
Brings in fix for incorrect timestamps for parent destination directories. Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
69 lines
1.3 KiB
Go
69 lines
1.3 KiB
Go
package file
|
|
|
|
import (
|
|
"archive/tar"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/containerd/continuity/fs"
|
|
"github.com/docker/docker/pkg/archive"
|
|
"github.com/docker/docker/pkg/chrootarchive"
|
|
"github.com/docker/docker/pkg/idtools"
|
|
copy "github.com/tonistiigi/fsutil/copy"
|
|
)
|
|
|
|
func unpack(srcRoot string, src string, destRoot string, dest string, ch copy.Chowner, tm *time.Time, idmap *idtools.IdentityMapping) (bool, error) {
|
|
src, err := fs.RootPath(srcRoot, src)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
if !isArchivePath(src) {
|
|
return false, nil
|
|
}
|
|
|
|
dest, err = fs.RootPath(destRoot, dest)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
if _, err := copy.MkdirAll(dest, 0755, ch, tm); err != nil {
|
|
return false, err
|
|
}
|
|
|
|
file, err := os.Open(src)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
defer file.Close()
|
|
|
|
opts := &archive.TarOptions{
|
|
BestEffortXattrs: true,
|
|
}
|
|
if idmap != nil {
|
|
opts.IDMap = *idmap
|
|
}
|
|
return true, chrootarchive.Untar(file, dest, opts)
|
|
}
|
|
|
|
func isArchivePath(path string) bool {
|
|
fi, err := os.Lstat(path)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
if fi.Mode()&os.ModeType != 0 {
|
|
return false
|
|
}
|
|
file, err := os.Open(path)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
defer file.Close()
|
|
rdr, err := archive.DecompressStream(file)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
defer rdr.Close()
|
|
r := tar.NewReader(rdr)
|
|
_, err = r.Next()
|
|
return err == nil
|
|
}
|