308 lines
7.6 KiB
Go
308 lines
7.6 KiB
Go
/*
|
|
Copyright 2018 Google LLC
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/GoogleContainerTools/kaniko/pkg/constants"
|
|
"github.com/moby/buildkit/frontend/dockerfile/instructions"
|
|
"github.com/pkg/errors"
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/GoogleContainerTools/kaniko/pkg/dockerfile"
|
|
"github.com/GoogleContainerTools/kaniko/pkg/util"
|
|
v1 "github.com/google/go-containerregistry/pkg/v1"
|
|
)
|
|
|
|
// for testing
|
|
var (
|
|
getUIDAndGID = util.GetUIDAndGIDFromString
|
|
)
|
|
|
|
type CopyCommand struct {
|
|
BaseCommand
|
|
cmd *instructions.CopyCommand
|
|
buildcontext string
|
|
snapshotFiles []string
|
|
}
|
|
|
|
func (c *CopyCommand) ExecuteCommand(config *v1.Config, buildArgs *dockerfile.BuildArgs) error {
|
|
// Resolve from
|
|
if c.cmd.From != "" {
|
|
c.buildcontext = filepath.Join(constants.KanikoDir, c.cmd.From)
|
|
}
|
|
|
|
replacementEnvs := buildArgs.ReplacementEnvs(config.Env)
|
|
|
|
uid, gid, err := getUserGroup(c.cmd.Chown, replacementEnvs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
srcs, dest, err := util.ResolveEnvAndWildcards(c.cmd.SourcesAndDest, c.buildcontext, replacementEnvs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// For each source, iterate through and copy it over
|
|
for _, src := range srcs {
|
|
fullPath := filepath.Join(c.buildcontext, src)
|
|
fi, err := os.Lstat(fullPath)
|
|
if err != nil {
|
|
return errors.Wrap(err, "could not copy source")
|
|
}
|
|
if fi.IsDir() && !strings.HasSuffix(fullPath, string(os.PathSeparator)) {
|
|
fullPath += "/"
|
|
}
|
|
cwd := config.WorkingDir
|
|
if cwd == "" {
|
|
cwd = constants.RootDir
|
|
}
|
|
|
|
destPath, err := util.DestinationFilepath(fullPath, dest, cwd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// If the destination dir is a symlink we need to resolve the path and use
|
|
// that instead of the symlink path
|
|
destPath, err = resolveIfSymlink(destPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if fi.IsDir() {
|
|
copiedFiles, err := util.CopyDir(fullPath, destPath, c.buildcontext, uid, gid)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
c.snapshotFiles = append(c.snapshotFiles, copiedFiles...)
|
|
} else if util.IsSymlink(fi) {
|
|
// If file is a symlink, we want to copy the target file to destPath
|
|
exclude, err := util.CopySymlink(fullPath, destPath, c.buildcontext, uid, gid)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if exclude {
|
|
continue
|
|
}
|
|
c.snapshotFiles = append(c.snapshotFiles, destPath)
|
|
} else {
|
|
// ... Else, we want to copy over a file
|
|
exclude, err := util.CopyFile(fullPath, destPath, c.buildcontext, uid, gid)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if exclude {
|
|
continue
|
|
}
|
|
c.snapshotFiles = append(c.snapshotFiles, destPath)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func getUserGroup(chownStr string, env []string) (int64, int64, error) {
|
|
if chownStr == "" {
|
|
return util.DoNotChangeUID, util.DoNotChangeGID, nil
|
|
}
|
|
chown, err := util.ResolveEnvironmentReplacement(chownStr, env, false)
|
|
if err != nil {
|
|
return -1, -1, err
|
|
}
|
|
uid32, gid32, err := getUIDAndGID(chown, true)
|
|
if err != nil {
|
|
return -1, -1, err
|
|
}
|
|
return int64(uid32), int64(gid32), nil
|
|
}
|
|
|
|
// FilesToSnapshot should return an empty array if still nil; no files were changed
|
|
func (c *CopyCommand) FilesToSnapshot() []string {
|
|
return c.snapshotFiles
|
|
}
|
|
|
|
// String returns some information about the command for the image config
|
|
func (c *CopyCommand) String() string {
|
|
return c.cmd.String()
|
|
}
|
|
|
|
func (c *CopyCommand) FilesUsedFromContext(config *v1.Config, buildArgs *dockerfile.BuildArgs) ([]string, error) {
|
|
return copyCmdFilesUsedFromContext(config, buildArgs, c.cmd, c.buildcontext)
|
|
}
|
|
|
|
func (c *CopyCommand) MetadataOnly() bool {
|
|
return false
|
|
}
|
|
|
|
func (c *CopyCommand) RequiresUnpackedFS() bool {
|
|
return true
|
|
}
|
|
|
|
func (c *CopyCommand) ShouldCacheOutput() bool {
|
|
return true
|
|
}
|
|
|
|
// CacheCommand returns true since this command should be cached
|
|
func (c *CopyCommand) CacheCommand(img v1.Image) DockerCommand {
|
|
|
|
return &CachingCopyCommand{
|
|
img: img,
|
|
cmd: c.cmd,
|
|
buildcontext: c.buildcontext,
|
|
extractFn: util.ExtractFile,
|
|
}
|
|
}
|
|
|
|
func (c *CopyCommand) From() string {
|
|
return c.cmd.From
|
|
}
|
|
|
|
type CachingCopyCommand struct {
|
|
BaseCommand
|
|
caching
|
|
img v1.Image
|
|
extractedFiles []string
|
|
cmd *instructions.CopyCommand
|
|
buildcontext string
|
|
extractFn util.ExtractFunction
|
|
}
|
|
|
|
func (cr *CachingCopyCommand) ExecuteCommand(config *v1.Config, buildArgs *dockerfile.BuildArgs) error {
|
|
logrus.Infof("Found cached layer, extracting to filesystem")
|
|
var err error
|
|
|
|
if cr.img == nil {
|
|
return errors.New(fmt.Sprintf("cached command image is nil %v", cr.String()))
|
|
}
|
|
|
|
layers, err := cr.img.Layers()
|
|
if err != nil {
|
|
return errors.Wrapf(err, "retrieve image layers")
|
|
}
|
|
|
|
if len(layers) != 1 {
|
|
return errors.New(fmt.Sprintf("expected %d layers but got %d", 1, len(layers)))
|
|
}
|
|
|
|
cr.layer = layers[0]
|
|
cr.readSuccess = true
|
|
|
|
cr.extractedFiles, err = util.GetFSFromLayers(RootDir, layers, util.ExtractFunc(cr.extractFn), util.IncludeWhiteout())
|
|
|
|
logrus.Debugf("extractedFiles: %s", cr.extractedFiles)
|
|
if err != nil {
|
|
return errors.Wrap(err, "extracting fs from image")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (cr *CachingCopyCommand) FilesUsedFromContext(config *v1.Config, buildArgs *dockerfile.BuildArgs) ([]string, error) {
|
|
return copyCmdFilesUsedFromContext(config, buildArgs, cr.cmd, cr.buildcontext)
|
|
}
|
|
|
|
func (cr *CachingCopyCommand) FilesToSnapshot() []string {
|
|
f := cr.extractedFiles
|
|
logrus.Debugf("files extracted by caching copy command %s", f)
|
|
|
|
return f
|
|
}
|
|
|
|
func (cr *CachingCopyCommand) String() string {
|
|
if cr.cmd == nil {
|
|
return "nil command"
|
|
}
|
|
return cr.cmd.String()
|
|
}
|
|
|
|
func (cr *CachingCopyCommand) From() string {
|
|
return cr.cmd.From
|
|
}
|
|
|
|
func resolveIfSymlink(destPath string) (string, error) {
|
|
if !filepath.IsAbs(destPath) {
|
|
return "", errors.New("dest path must be abs")
|
|
}
|
|
|
|
var nonexistentPaths []string
|
|
|
|
newPath := destPath
|
|
for newPath != "/" {
|
|
_, err := os.Lstat(newPath)
|
|
if err != nil {
|
|
if os.IsNotExist(err) {
|
|
dir, file := filepath.Split(newPath)
|
|
newPath = filepath.Clean(dir)
|
|
nonexistentPaths = append(nonexistentPaths, file)
|
|
continue
|
|
} else {
|
|
return "", errors.Wrap(err, "failed to lstat")
|
|
}
|
|
}
|
|
|
|
newPath, err = filepath.EvalSymlinks(newPath)
|
|
if err != nil {
|
|
return "", errors.Wrap(err, "failed to eval symlinks")
|
|
}
|
|
break
|
|
}
|
|
|
|
for i := len(nonexistentPaths) - 1; i >= 0; i-- {
|
|
newPath = filepath.Join(newPath, nonexistentPaths[i])
|
|
}
|
|
|
|
if destPath != newPath {
|
|
logrus.Tracef("Updating destination path from %v to %v due to symlink", destPath, newPath)
|
|
}
|
|
|
|
return filepath.Clean(newPath), nil
|
|
}
|
|
|
|
func copyCmdFilesUsedFromContext(
|
|
config *v1.Config, buildArgs *dockerfile.BuildArgs, cmd *instructions.CopyCommand,
|
|
buildcontext string,
|
|
) ([]string, error) {
|
|
// We don't use the context if we're performing a copy --from.
|
|
if cmd.From != "" {
|
|
return nil, nil
|
|
}
|
|
|
|
replacementEnvs := buildArgs.ReplacementEnvs(config.Env)
|
|
|
|
srcs, _, err := util.ResolveEnvAndWildcards(
|
|
cmd.SourcesAndDest, buildcontext, replacementEnvs,
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
files := []string{}
|
|
for _, src := range srcs {
|
|
fullPath := filepath.Join(buildcontext, src)
|
|
files = append(files, fullPath)
|
|
}
|
|
|
|
logrus.Debugf("Using files from context: %v", files)
|
|
|
|
return files, nil
|
|
}
|