mirror of
https://github.com/docker/cli.git
synced 2026-09-25 17:02:07 -04:00
full diff: https://github.com/moby/go-archive/compare/v0.3.2...v0.3.3 Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
64 lines
1.9 KiB
Go
64 lines
1.9 KiB
Go
package archive
|
|
|
|
import (
|
|
"archive/tar"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
// longPathPrefix is the longpath prefix for Windows file paths.
|
|
const longPathPrefix = `\\?\`
|
|
|
|
// addLongPathPrefix adds the Windows long path prefix to the path provided if
|
|
// it does not already have it. It is a no-op on platforms other than Windows.
|
|
//
|
|
// addLongPathPrefix is a copy of [github.com/docker/docker/pkg/longpath.AddPrefix].
|
|
func addLongPathPrefix(srcPath string) string {
|
|
if strings.HasPrefix(srcPath, longPathPrefix) {
|
|
return srcPath
|
|
}
|
|
if strings.HasPrefix(srcPath, `\\`) {
|
|
// This is a UNC path, so we need to add 'UNC' to the path as well.
|
|
return longPathPrefix + `UNC` + srcPath[1:]
|
|
}
|
|
return longPathPrefix + srcPath
|
|
}
|
|
|
|
// getWalkRoot calculates the root path when performing a TarWithOptions.
|
|
// We use a separate function as this is platform specific.
|
|
func getWalkRoot(srcPath string, include string) string {
|
|
return filepath.Join(srcPath, include)
|
|
}
|
|
|
|
// chmodTarEntry is used to adjust the file permissions used in tar header based
|
|
// on the platform the archival is done.
|
|
func chmodTarEntry(mode int64) int64 {
|
|
// Remove group- and world-writable bits.
|
|
mode &= 0o755
|
|
|
|
// Add the x bit: make everything +x on Windows
|
|
return mode | 0o111
|
|
}
|
|
|
|
func getInodeFromStat(stat any) (uint64, error) {
|
|
// do nothing. no notion of Inode in stat on Windows
|
|
return 0, nil
|
|
}
|
|
|
|
// handleTarTypeBlockCharFifo is an OS-specific helper function used by
|
|
// createTarFile to handle the following types of header: Block; Char; Fifo
|
|
func handleTarTypeBlockCharFifo(root *os.Root, hdr *tar.Header, path string) error {
|
|
return nil
|
|
}
|
|
|
|
// handleLChmod is a no-op on Windows because chmod is not supported.
|
|
func handleLChmod(root *os.Root, dstPath string, hardlinkTarget string, hdr *tar.Header, hdrInfo os.FileInfo, opts any) error {
|
|
return nil
|
|
}
|
|
|
|
func getFileUIDGID(stat any) (int, int, error) {
|
|
// no notion of file ownership mapping yet on Windows
|
|
return 0, 0, nil
|
|
}
|