2018-06-08 20:39:07 -04:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package contenthash
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"syscall"
|
|
|
|
|
|
|
|
"github.com/containerd/continuity/sysx"
|
2018-10-05 05:04:52 -04:00
|
|
|
fstypes "github.com/tonistiigi/fsutil/types"
|
2018-06-08 20:39:07 -04:00
|
|
|
|
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
)
|
|
|
|
|
|
|
|
func chmodWindowsTarEntry(perm os.FileMode) os.FileMode {
|
|
|
|
return perm
|
|
|
|
}
|
|
|
|
|
2018-10-05 05:04:52 -04:00
|
|
|
func setUnixOpt(path string, fi os.FileInfo, stat *fstypes.Stat) error {
|
2018-06-08 20:39:07 -04:00
|
|
|
s := fi.Sys().(*syscall.Stat_t)
|
|
|
|
|
|
|
|
stat.Uid = s.Uid
|
|
|
|
stat.Gid = s.Gid
|
|
|
|
|
|
|
|
if !fi.IsDir() {
|
|
|
|
if s.Mode&syscall.S_IFBLK != 0 ||
|
|
|
|
s.Mode&syscall.S_IFCHR != 0 {
|
|
|
|
stat.Devmajor = int64(unix.Major(uint64(s.Rdev)))
|
|
|
|
stat.Devminor = int64(unix.Minor(uint64(s.Rdev)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
attrs, err := sysx.LListxattr(path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(attrs) > 0 {
|
|
|
|
stat.Xattrs = map[string][]byte{}
|
|
|
|
for _, attr := range attrs {
|
|
|
|
v, err := sysx.LGetxattr(path, attr)
|
|
|
|
if err == nil {
|
|
|
|
stat.Xattrs[attr] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|