kaniko/pkg/snapshot/snapshot.go

317 lines
8.5 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 snapshot
import (
"errors"
"fmt"
"os"
"path/filepath"
"runtime"
"sort"
"syscall"
"github.com/GoogleContainerTools/kaniko/pkg/config"
"github.com/GoogleContainerTools/kaniko/pkg/filesystem"
"github.com/GoogleContainerTools/kaniko/pkg/timing"
"github.com/GoogleContainerTools/kaniko/pkg/util"
"github.com/sirupsen/logrus"
"golang.org/x/sys/unix"
)
// For testing
var snapshotPathPrefix = ""
// Snapshotter holds the root directory from which to take snapshots, and a list of snapshots taken
type Snapshotter struct {
l *LayeredMap
directory string
ignorelist []util.IgnoreListEntry
}
// NewSnapshotter creates a new snapshotter rooted at d
func NewSnapshotter(l *LayeredMap, d string) *Snapshotter {
return &Snapshotter{l: l, directory: d, ignorelist: util.IgnoreList()}
}
// Init initializes a new snapshotter
func (s *Snapshotter) Init() error {
logrus.Info("Initializing snapshotter ...")
_, _, err := s.scanFullFilesystem()
return err
}
// Key returns a string based on the current state of the file system
func (s *Snapshotter) Key() (string, error) {
return s.l.Key()
}
// TakeSnapshot takes a snapshot of the specified files, avoiding directories in the ignorelist, and creates
// a tarball of the changed files. Return contents of the tarball, and whether or not any files were changed
func (s *Snapshotter) TakeSnapshot(files []string, shdCheckDelete bool, forceBuildMetadata bool) (string, error) {
f, err := os.CreateTemp(config.KanikoDir, "")
if err != nil {
return "", err
}
defer f.Close()
s.l.Snapshot()
if len(files) == 0 && !forceBuildMetadata {
logrus.Info("No files changed in this command, skipping snapshotting.")
return "", nil
}
filesToAdd, err := filesystem.ResolvePaths(files, s.ignorelist)
if err != nil {
return "", err
}
logrus.Info("Taking snapshot of files...")
sort.Strings(filesToAdd)
logrus.Debugf("Adding to layer: %v", filesToAdd)
// Add files to current layer.
for _, file := range filesToAdd {
if err := s.l.Add(file); err != nil {
return "", fmt.Errorf("Unable to add file %s to layered map: %w", file, err)
}
}
// Get whiteout paths
var filesToWhiteout []string
if shdCheckDelete {
_, deletedFiles := util.WalkFS(s.directory, s.l.GetCurrentPaths(), func(s string) (bool, error) {
return true, nil
})
logrus.Debugf("Deleting in layer: %v", deletedFiles)
// Whiteout files in current layer.
for file := range deletedFiles {
if err := s.l.AddDelete(file); err != nil {
return "", fmt.Errorf("Unable to whiteout file %s in layered map: %w", file, err)
}
}
filesToWhiteout = removeObsoleteWhiteouts(deletedFiles)
sort.Strings(filesToWhiteout)
}
t := util.NewTar(f)
defer t.Close()
if err := writeToTar(t, filesToAdd, filesToWhiteout); err != nil {
return "", err
}
return f.Name(), nil
}
// TakeSnapshotFS takes a snapshot of the filesystem, avoiding directories in the ignorelist, and creates
// a tarball of the changed files.
func (s *Snapshotter) TakeSnapshotFS() (string, error) {
f, err := os.CreateTemp(s.getSnashotPathPrefix(), "")
if err != nil {
return "", err
}
defer f.Close()
t := util.NewTar(f)
defer t.Close()
filesToAdd, filesToWhiteOut, err := s.scanFullFilesystem()
if err != nil {
return "", err
}
if err := writeToTar(t, filesToAdd, filesToWhiteOut); err != nil {
return "", err
}
return f.Name(), nil
}
func (s *Snapshotter) getSnashotPathPrefix() string {
if snapshotPathPrefix == "" {
return config.KanikoDir
}
return snapshotPathPrefix
}
func (s *Snapshotter) scanFullFilesystem() ([]string, []string, error) {
logrus.Info("Taking snapshot of full filesystem...")
// Some of the operations that follow (e.g. hashing) depend on the file system being synced,
// for example the hashing function that determines if files are equal uses the mtime of the files,
// which can lag if sync is not called. Unfortunately there can still be lag if too much data needs
// to be flushed or the disk does its own caching/buffering.
if runtime.GOOS == "linux" {
dir, err := os.Open(s.directory)
if err != nil {
return nil, nil, err
}
defer dir.Close()
_, _, errno := syscall.Syscall(unix.SYS_SYNCFS, dir.Fd(), 0, 0)
if errno != 0 {
return nil, nil, errno
}
} else {
// fallback to full page cache sync
syscall.Sync()
}
s.l.Snapshot()
logrus.Debugf("Current image filesystem: %v", s.l.currentImage)
changedPaths, deletedPaths := util.WalkFS(s.directory, s.l.GetCurrentPaths(), s.l.CheckFileChange)
timer := timing.Start("Resolving Paths")
filesToAdd := []string{}
resolvedFiles, err := filesystem.ResolvePaths(changedPaths, s.ignorelist)
if err != nil {
return nil, nil, err
}
for _, path := range resolvedFiles {
if util.CheckIgnoreList(path) {
logrus.Debugf("Not adding %s to layer, as it's ignored", path)
continue
}
filesToAdd = append(filesToAdd, path)
}
logrus.Debugf("Adding to layer: %v", filesToAdd)
logrus.Debugf("Deleting in layer: %v", deletedPaths)
// Add files to the layered map
for _, file := range filesToAdd {
if err := s.l.Add(file); err != nil {
return nil, nil, fmt.Errorf("Unable to add file %s to layered map: %w", file, err)
}
}
for file := range deletedPaths {
if err := s.l.AddDelete(file); err != nil {
return nil, nil, fmt.Errorf("Unable to whiteout file %s in layered map: %w", file, err)
}
}
filesToWhiteout := removeObsoleteWhiteouts(deletedPaths)
timing.DefaultRun.Stop(timer)
sort.Strings(filesToAdd)
sort.Strings(filesToWhiteout)
return filesToAdd, filesToWhiteout, nil
}
// removeObsoleteWhiteouts filters deleted files according to their parents delete status.
func removeObsoleteWhiteouts(deletedFiles map[string]struct{}) (filesToWhiteout []string) {
for path := range deletedFiles {
// Only add the whiteout if the directory for the file still exists.
dir := filepath.Dir(path)
if _, ok := deletedFiles[dir]; !ok {
logrus.Tracef("Adding whiteout for %s", path)
filesToWhiteout = append(filesToWhiteout, path)
}
}
return filesToWhiteout
}
func writeToTar(t util.Tar, files, whiteouts []string) error {
timer := timing.Start("Writing tar file")
defer timing.DefaultRun.Stop(timer)
// Now create the tar.
addedPaths := make(map[string]bool)
for _, path := range whiteouts {
skipWhiteout, err := parentPathIncludesNonDirectory(path)
if err != nil {
return err
}
if skipWhiteout {
continue
}
if err := addParentDirectories(t, addedPaths, path); err != nil {
return err
}
if err := t.Whiteout(path); err != nil {
return err
}
}
for _, path := range files {
if err := addParentDirectories(t, addedPaths, path); err != nil {
return err
}
if _, pathAdded := addedPaths[path]; pathAdded {
continue
}
if err := t.AddFileToTar(path); err != nil {
return err
}
addedPaths[path] = true
}
return nil
}
// Returns true if a parent of the given path has been replaced with anything other than a directory
func parentPathIncludesNonDirectory(path string) (bool, error) {
for _, parentPath := range util.ParentDirectories(path) {
lstat, err := os.Lstat(parentPath)
if err != nil {
return false, err
}
if !lstat.IsDir() {
return true, nil
}
}
return false, nil
}
func addParentDirectories(t util.Tar, addedPaths map[string]bool, path string) error {
for _, parentPath := range util.ParentDirectories(path) {
if _, pathAdded := addedPaths[parentPath]; pathAdded {
continue
}
if err := t.AddFileToTar(parentPath); err != nil {
return err
}
addedPaths[parentPath] = true
}
return nil
}
// filesWithLinks returns the symlink and the target path if its exists.
func filesWithLinks(path string) ([]string, error) {
link, err := util.GetSymLink(path)
if errors.Is(err, util.ErrNotSymLink) {
return []string{path}, nil
} else if err != nil {
return nil, err
}
// Add symlink if it exists in the FS
if !filepath.IsAbs(link) {
link = filepath.Join(filepath.Dir(path), link)
}
if _, err := os.Stat(link); err != nil {
return []string{path}, nil //nolint:nilerr
}
return []string{path, link}, nil
}