2014-11-13 15:36:05 -05:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package archive
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2015-03-03 21:40:16 -05:00
|
|
|
"os"
|
2014-11-13 15:36:05 -05:00
|
|
|
"syscall"
|
|
|
|
|
|
|
|
"github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar"
|
|
|
|
)
|
|
|
|
|
2015-02-17 15:27:07 -05:00
|
|
|
// canonicalTarNameForPath returns platform-specific filepath
|
|
|
|
// to canonical posix-style path for tar archival. p is relative
|
|
|
|
// path.
|
2015-02-24 22:43:29 -05:00
|
|
|
func CanonicalTarNameForPath(p string) (string, error) {
|
2015-02-17 15:27:07 -05:00
|
|
|
return p, nil // already unix-style
|
|
|
|
}
|
|
|
|
|
2015-03-03 21:40:16 -05:00
|
|
|
// chmodTarEntry is used to adjust the file permissions used in tar header based
|
|
|
|
// on the platform the archival is done.
|
|
|
|
|
|
|
|
func chmodTarEntry(perm os.FileMode) os.FileMode {
|
|
|
|
return perm // noop for unix as golang APIs provide perm bits correctly
|
|
|
|
}
|
|
|
|
|
2014-11-13 15:36:05 -05:00
|
|
|
func setHeaderForSpecialDevice(hdr *tar.Header, ta *tarAppender, name string, stat interface{}) (nlink uint32, inode uint64, err error) {
|
|
|
|
s, ok := stat.(*syscall.Stat_t)
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
err = errors.New("cannot convert stat value to syscall.Stat_t")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
nlink = uint32(s.Nlink)
|
|
|
|
inode = uint64(s.Ino)
|
|
|
|
|
|
|
|
// Currently go does not fil in the major/minors
|
|
|
|
if s.Mode&syscall.S_IFBLK == syscall.S_IFBLK ||
|
|
|
|
s.Mode&syscall.S_IFCHR == syscall.S_IFCHR {
|
|
|
|
hdr.Devmajor = int64(major(uint64(s.Rdev)))
|
|
|
|
hdr.Devminor = int64(minor(uint64(s.Rdev)))
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func major(device uint64) uint64 {
|
|
|
|
return (device >> 8) & 0xfff
|
|
|
|
}
|
|
|
|
|
|
|
|
func minor(device uint64) uint64 {
|
|
|
|
return (device & 0xff) | ((device >> 12) & 0xfff00)
|
|
|
|
}
|