2014-08-19 05:23:55 -04:00
|
|
|
// +build linux
|
|
|
|
|
2014-12-03 08:06:19 -05:00
|
|
|
package overlay
|
2014-08-19 05:23:55 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"syscall"
|
2015-10-01 13:45:32 -04:00
|
|
|
"time"
|
2014-08-19 05:23:55 -04:00
|
|
|
|
2016-01-20 17:44:40 -05:00
|
|
|
"github.com/docker/docker/pkg/pools"
|
2014-08-19 05:23:55 -04:00
|
|
|
"github.com/docker/docker/pkg/system"
|
2016-02-12 19:05:50 -05:00
|
|
|
rsystem "github.com/opencontainers/runc/libcontainer/system"
|
2014-08-19 05:23:55 -04:00
|
|
|
)
|
|
|
|
|
2015-07-24 13:55:15 -04:00
|
|
|
type copyFlags int
|
2014-08-19 05:23:55 -04:00
|
|
|
|
|
|
|
const (
|
2015-07-24 13:55:15 -04:00
|
|
|
copyHardlink copyFlags = 1 << iota
|
2014-08-19 05:23:55 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func copyRegular(srcPath, dstPath string, mode os.FileMode) error {
|
|
|
|
srcFile, err := os.Open(srcPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer srcFile.Close()
|
|
|
|
|
|
|
|
dstFile, err := os.OpenFile(dstPath, os.O_WRONLY|os.O_CREATE, mode)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer dstFile.Close()
|
|
|
|
|
2016-01-20 17:44:40 -05:00
|
|
|
_, err = pools.Copy(dstFile, srcFile)
|
2014-08-19 05:23:55 -04:00
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func copyXattr(srcPath, dstPath, attr string) error {
|
|
|
|
data, err := system.Lgetxattr(srcPath, attr)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if data != nil {
|
|
|
|
if err := system.Lsetxattr(dstPath, attr, data, 0); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-07-24 13:55:15 -04:00
|
|
|
func copyDir(srcDir, dstDir string, flags copyFlags) error {
|
2014-08-19 05:23:55 -04:00
|
|
|
err := filepath.Walk(srcDir, func(srcPath string, f os.FileInfo, err error) error {
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rebase path
|
|
|
|
relPath, err := filepath.Rel(srcDir, srcPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
dstPath := filepath.Join(dstDir, relPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
stat, ok := f.Sys().(*syscall.Stat_t)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("Unable to get raw syscall.Stat_t data for %s", srcPath)
|
|
|
|
}
|
|
|
|
|
2015-05-07 16:09:27 -04:00
|
|
|
isHardlink := false
|
|
|
|
|
2014-08-19 05:23:55 -04:00
|
|
|
switch f.Mode() & os.ModeType {
|
|
|
|
case 0: // Regular file
|
2015-07-24 13:55:15 -04:00
|
|
|
if flags©Hardlink != 0 {
|
2015-05-07 16:09:27 -04:00
|
|
|
isHardlink = true
|
2014-08-19 05:23:55 -04:00
|
|
|
if err := os.Link(srcPath, dstPath); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if err := copyRegular(srcPath, dstPath, f.Mode()); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
case os.ModeDir:
|
|
|
|
if err := os.Mkdir(dstPath, f.Mode()); err != nil && !os.IsExist(err) {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
case os.ModeSymlink:
|
|
|
|
link, err := os.Readlink(srcPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := os.Symlink(link, dstPath); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
case os.ModeNamedPipe:
|
|
|
|
fallthrough
|
|
|
|
case os.ModeSocket:
|
2016-02-12 19:05:50 -05:00
|
|
|
if rsystem.RunningInUserNS() {
|
|
|
|
// cannot create a device if running in user namespace
|
|
|
|
return nil
|
|
|
|
}
|
2014-08-19 05:23:55 -04:00
|
|
|
if err := syscall.Mkfifo(dstPath, stat.Mode); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
case os.ModeDevice:
|
|
|
|
if err := syscall.Mknod(dstPath, stat.Mode, int(stat.Rdev)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("Unknown file type for %s\n", srcPath)
|
|
|
|
}
|
|
|
|
|
2015-05-07 16:09:27 -04:00
|
|
|
// Everything below is copying metadata from src to dst. All this metadata
|
|
|
|
// already shares an inode for hardlinks.
|
|
|
|
if isHardlink {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-19 05:23:55 -04:00
|
|
|
if err := os.Lchown(dstPath, int(stat.Uid), int(stat.Gid)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := copyXattr(srcPath, dstPath, "security.capability"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-12-03 08:06:19 -05:00
|
|
|
// We need to copy this attribute if it appears in an overlay upper layer, as
|
|
|
|
// this function is used to copy those. It is set by overlay if a directory
|
2014-08-19 05:23:55 -04:00
|
|
|
// is removed and then re-created and should not inherit anything from the
|
|
|
|
// same dir in the lower dir.
|
|
|
|
if err := copyXattr(srcPath, dstPath, "trusted.overlay.opaque"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
isSymlink := f.Mode()&os.ModeSymlink != 0
|
|
|
|
|
|
|
|
// There is no LChmod, so ignore mode for symlink. Also, this
|
|
|
|
// must happen after chown, as that can modify the file mode
|
|
|
|
if !isSymlink {
|
|
|
|
if err := os.Chmod(dstPath, f.Mode()); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-01 13:45:32 -04:00
|
|
|
// system.Chtimes doesn't support a NOFOLLOW flag atm
|
2014-08-19 05:23:55 -04:00
|
|
|
if !isSymlink {
|
2015-10-01 13:45:32 -04:00
|
|
|
aTime := time.Unix(int64(stat.Atim.Sec), int64(stat.Atim.Nsec))
|
|
|
|
mTime := time.Unix(int64(stat.Mtim.Sec), int64(stat.Mtim.Nsec))
|
|
|
|
if err := system.Chtimes(dstPath, aTime, mTime); err != nil {
|
2014-08-19 05:23:55 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
2015-10-01 13:45:32 -04:00
|
|
|
ts := []syscall.Timespec{stat.Atim, stat.Mtim}
|
2014-08-19 05:23:55 -04:00
|
|
|
if err := system.LUtimesNano(dstPath, ts); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return err
|
|
|
|
}
|