123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- // +build !windows
- package archive
- import (
- "archive/tar"
- "errors"
- "os"
- "path/filepath"
- "syscall"
- "github.com/docker/docker/pkg/idtools"
- "github.com/docker/docker/pkg/system"
- rsystem "github.com/opencontainers/runc/libcontainer/system"
- "golang.org/x/sys/unix"
- )
- // fixVolumePathPrefix does platform specific processing to ensure that if
- // the path being passed in is not in a volume path format, convert it to one.
- func fixVolumePathPrefix(srcPath string) string {
- return srcPath
- }
- // getWalkRoot calculates the root path when performing a TarWithOptions.
- // We use a separate function as this is platform specific. On Linux, we
- // can't use filepath.Join(srcPath,include) because this will clean away
- // a trailing "." or "/" which may be important.
- func getWalkRoot(srcPath string, include string) string {
- return srcPath + string(filepath.Separator) + include
- }
- // CanonicalTarNameForPath returns platform-specific filepath
- // to canonical posix-style path for tar archival. p is relative
- // path.
- func CanonicalTarNameForPath(p string) (string, error) {
- return p, nil // already unix-style
- }
- // 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
- }
- func setHeaderForSpecialDevice(hdr *tar.Header, name string, stat interface{}) (err error) {
- s, ok := stat.(*syscall.Stat_t)
- if ok {
- // Currently go does not fill in the major/minors
- if s.Mode&unix.S_IFBLK != 0 ||
- s.Mode&unix.S_IFCHR != 0 {
- hdr.Devmajor = int64(major(uint64(s.Rdev)))
- hdr.Devminor = int64(minor(uint64(s.Rdev)))
- }
- }
- return
- }
- func getInodeFromStat(stat interface{}) (inode uint64, err error) {
- s, ok := stat.(*syscall.Stat_t)
- if ok {
- inode = uint64(s.Ino)
- }
- return
- }
- func getFileUIDGID(stat interface{}) (idtools.IDPair, error) {
- s, ok := stat.(*syscall.Stat_t)
- if !ok {
- return idtools.IDPair{}, errors.New("cannot convert stat value to syscall.Stat_t")
- }
- return idtools.IDPair{UID: int(s.Uid), GID: int(s.Gid)}, nil
- }
- func major(device uint64) uint64 {
- return (device >> 8) & 0xfff
- }
- func minor(device uint64) uint64 {
- return (device & 0xff) | ((device >> 12) & 0xfff00)
- }
- // handleTarTypeBlockCharFifo is an OS-specific helper function used by
- // createTarFile to handle the following types of header: Block; Char; Fifo
- func handleTarTypeBlockCharFifo(hdr *tar.Header, path string) error {
- if rsystem.RunningInUserNS() {
- // cannot create a device if running in user namespace
- return nil
- }
- mode := uint32(hdr.Mode & 07777)
- switch hdr.Typeflag {
- case tar.TypeBlock:
- mode |= unix.S_IFBLK
- case tar.TypeChar:
- mode |= unix.S_IFCHR
- case tar.TypeFifo:
- mode |= unix.S_IFIFO
- }
- return system.Mknod(path, mode, int(system.Mkdev(hdr.Devmajor, hdr.Devminor)))
- }
- func handleLChmod(hdr *tar.Header, path string, hdrInfo os.FileInfo) error {
- if hdr.Typeflag == tar.TypeLink {
- if fi, err := os.Lstat(hdr.Linkname); err == nil && (fi.Mode()&os.ModeSymlink == 0) {
- if err := os.Chmod(path, hdrInfo.Mode()); err != nil {
- return err
- }
- }
- } else if hdr.Typeflag != tar.TypeSymlink {
- if err := os.Chmod(path, hdrInfo.Mode()); err != nil {
- return err
- }
- }
- return nil
- }
|