2018-02-05 16:05:59 -05:00
|
|
|
package archive // import "github.com/docker/docker/pkg/archive"
|
2014-11-13 12:36:05 -08:00
|
|
|
|
|
|
|
import (
|
2015-05-01 16:01:10 -06:00
|
|
|
"archive/tar"
|
2015-03-05 17:15:11 -08:00
|
|
|
"os"
|
2015-08-10 15:21:30 -07:00
|
|
|
"path/filepath"
|
2015-08-24 14:07:22 -07:00
|
|
|
|
2017-05-31 17:18:04 -04:00
|
|
|
"github.com/docker/docker/pkg/idtools"
|
2015-08-24 14:07:22 -07:00
|
|
|
"github.com/docker/docker/pkg/longpath"
|
2014-11-13 12:36:05 -08:00
|
|
|
)
|
|
|
|
|
2015-08-10 15:21:30 -07:00
|
|
|
// 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 {
|
2015-08-24 14:07:22 -07:00
|
|
|
return longpath.AddPrefix(srcPath)
|
2015-08-10 15:21:30 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// getWalkRoot calculates the root path when performing a TarWithOptions.
|
2015-12-13 18:00:39 +02:00
|
|
|
// We use a separate function as this is platform specific.
|
2015-08-10 15:21:30 -07:00
|
|
|
func getWalkRoot(srcPath string, include string) string {
|
|
|
|
return filepath.Join(srcPath, include)
|
|
|
|
}
|
|
|
|
|
2015-09-04 14:56:45 +02:00
|
|
|
// CanonicalTarNameForPath returns platform-specific filepath
|
2015-02-17 12:27:07 -08:00
|
|
|
// to canonical posix-style path for tar archival. p is relative
|
|
|
|
// path.
|
2018-06-27 12:07:17 -07:00
|
|
|
func CanonicalTarNameForPath(p string) string {
|
|
|
|
return filepath.ToSlash(p)
|
2015-02-17 12:27:07 -08:00
|
|
|
}
|
|
|
|
|
2015-03-03 18:40:16 -08: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 {
|
2019-11-27 15:38:49 +01:00
|
|
|
// perm &= 0755 // this 0-ed out tar flags (like link, regular file, directory marker etc.)
|
2017-05-02 11:36:43 +02:00
|
|
|
permPart := perm & os.ModePerm
|
|
|
|
noPermPart := perm &^ os.ModePerm
|
2015-03-03 18:40:16 -08:00
|
|
|
// Add the x bit: make everything +x from windows
|
2017-05-02 11:36:43 +02:00
|
|
|
permPart |= 0111
|
|
|
|
permPart &= 0755
|
2015-03-03 18:40:16 -08:00
|
|
|
|
2017-05-02 11:36:43 +02:00
|
|
|
return noPermPart | permPart
|
2015-03-03 18:40:16 -08:00
|
|
|
}
|
|
|
|
|
2017-03-15 15:28:06 -07:00
|
|
|
func setHeaderForSpecialDevice(hdr *tar.Header, name string, stat interface{}) (err error) {
|
|
|
|
// do nothing. no notion of Rdev, Nlink in stat on Windows
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func getInodeFromStat(stat interface{}) (inode uint64, err error) {
|
|
|
|
// do nothing. no notion of Inode in stat on Windows
|
2014-11-13 12:36:05 -08:00
|
|
|
return
|
|
|
|
}
|
2015-05-07 15:14:11 -07:00
|
|
|
|
|
|
|
// 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 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleLChmod(hdr *tar.Header, path string, hdrInfo os.FileInfo) error {
|
|
|
|
return nil
|
|
|
|
}
|
2015-10-08 11:51:41 -04:00
|
|
|
|
2017-11-15 22:20:33 -08:00
|
|
|
func getFileUIDGID(stat interface{}) (idtools.Identity, error) {
|
2015-10-08 11:51:41 -04:00
|
|
|
// no notion of file ownership mapping yet on Windows
|
2017-11-15 22:20:33 -08:00
|
|
|
return idtools.Identity{UID: 0, GID: 0}, nil
|
2015-10-08 11:51:41 -04:00
|
|
|
}
|