mirror of
https://github.com/mudler/luet.git
synced 2025-08-08 10:47:37 +00:00
The backend will figure out if we have the image or not, otherwise will atempt to pull if not there. Skip retrieve integration test with img as its not supported.
292 lines
8.3 KiB
Go
292 lines
8.3 KiB
Go
// Copyright © 2019 Ettore Di Giacinto <mudler@gentoo.org>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License along
|
|
// with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package backend
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
docker "github.com/fsouza/go-dockerclient"
|
|
capi "github.com/mudler/docker-companion/api"
|
|
|
|
"github.com/mudler/luet/pkg/compiler"
|
|
"github.com/mudler/luet/pkg/config"
|
|
"github.com/mudler/luet/pkg/helpers"
|
|
. "github.com/mudler/luet/pkg/logger"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type SimpleDocker struct{}
|
|
|
|
func NewSimpleDockerBackend() compiler.CompilerBackend {
|
|
return &SimpleDocker{}
|
|
}
|
|
|
|
// TODO: Missing still: labels, and build args expansion
|
|
func (*SimpleDocker) BuildImage(opts compiler.CompilerBackendOptions) error {
|
|
name := opts.ImageName
|
|
path := opts.SourcePath
|
|
dockerfileName := opts.DockerFileName
|
|
context := opts.Context
|
|
|
|
if context == "" {
|
|
context = "."
|
|
}
|
|
buildarg := []string{"build", "-f", dockerfileName, "-t", name, context}
|
|
|
|
Debug(":whale2: Building image " + name)
|
|
cmd := exec.Command("docker", buildarg...)
|
|
cmd.Dir = path
|
|
out, err := cmd.CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed building image: "+string(out))
|
|
}
|
|
Info(":whale: Building image " + name + " done")
|
|
|
|
if os.Getenv("DOCKER_SQUASH") == "true" {
|
|
Info(":whale: Squashing image " + name)
|
|
var client *docker.Client
|
|
|
|
client, err = docker.NewClientFromEnv()
|
|
if err != nil {
|
|
return errors.Wrap(err, "could not connect to the Docker daemon")
|
|
}
|
|
err = capi.Squash(client, name, name)
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed squashing image")
|
|
}
|
|
Info(":whale: Squashing image " + name + " done")
|
|
}
|
|
|
|
if config.LuetCfg.GetGeneral().ShowBuildOutput {
|
|
Info(string(out))
|
|
} else {
|
|
Debug(string(out))
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (*SimpleDocker) CopyImage(src, dst string) error {
|
|
Debug(":whale: Tagging image:", src, "->", dst)
|
|
cmd := exec.Command("docker", "tag", src, dst)
|
|
out, err := cmd.CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed tagging image: "+string(out))
|
|
}
|
|
Info(":whale: Tagged image:", src, "->", dst)
|
|
return nil
|
|
}
|
|
|
|
func (*SimpleDocker) DownloadImage(opts compiler.CompilerBackendOptions) error {
|
|
name := opts.ImageName
|
|
buildarg := []string{"pull", name}
|
|
Debug(":whale: Downloading image " + name)
|
|
cmd := exec.Command("docker", buildarg...)
|
|
out, err := cmd.CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed pulling image: "+string(out))
|
|
}
|
|
Info(":whale: Downloaded image:", name)
|
|
return nil
|
|
}
|
|
|
|
func (*SimpleDocker) ImageExists(imagename string) bool {
|
|
buildarg := []string{"inspect", "--type=image", imagename}
|
|
Debug(":whale: Checking existance of docker image: " + imagename)
|
|
cmd := exec.Command("docker", buildarg...)
|
|
out, err := cmd.CombinedOutput()
|
|
if err != nil {
|
|
Debug("Image not present")
|
|
Debug(string(out))
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (*SimpleDocker) ImageAvailable(imagename string) bool {
|
|
return imageAvailable(imagename)
|
|
}
|
|
|
|
func (*SimpleDocker) RemoveImage(opts compiler.CompilerBackendOptions) error {
|
|
name := opts.ImageName
|
|
buildarg := []string{"rmi", name}
|
|
out, err := exec.Command("docker", buildarg...).CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed removing image: "+string(out))
|
|
}
|
|
Info(":whale: Removed image:", name)
|
|
//Info(string(out))
|
|
return nil
|
|
}
|
|
|
|
func (*SimpleDocker) Push(opts compiler.CompilerBackendOptions) error {
|
|
name := opts.ImageName
|
|
pusharg := []string{"push", name}
|
|
out, err := exec.Command("docker", pusharg...).CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed pushing image: "+string(out))
|
|
}
|
|
Info(":whale: Pushed image:", name)
|
|
//Info(string(out))
|
|
return nil
|
|
}
|
|
|
|
func (s *SimpleDocker) ImageDefinitionToTar(opts compiler.CompilerBackendOptions) error {
|
|
if err := s.BuildImage(opts); err != nil {
|
|
return errors.Wrap(err, "Failed building image")
|
|
}
|
|
if err := s.ExportImage(opts); err != nil {
|
|
return errors.Wrap(err, "Failed exporting image")
|
|
}
|
|
if err := s.RemoveImage(opts); err != nil {
|
|
return errors.Wrap(err, "Failed removing image")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (*SimpleDocker) ExportImage(opts compiler.CompilerBackendOptions) error {
|
|
name := opts.ImageName
|
|
path := opts.Destination
|
|
|
|
buildarg := []string{"save", name, "-o", path}
|
|
Debug(":whale: Saving image " + name)
|
|
out, err := exec.Command("docker", buildarg...).CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed exporting image: "+string(out))
|
|
}
|
|
|
|
Debug(":whale: Exported image:", name)
|
|
return nil
|
|
}
|
|
|
|
type ManifestEntry struct {
|
|
Layers []string `json:"Layers"`
|
|
}
|
|
|
|
func (b *SimpleDocker) ExtractRootfs(opts compiler.CompilerBackendOptions, keepPerms bool) error {
|
|
name := opts.ImageName
|
|
dst := opts.Destination
|
|
|
|
tempexport, err := ioutil.TempDir(dst, "tmprootfs")
|
|
if err != nil {
|
|
return errors.Wrap(err, "Error met while creating tempdir for rootfs")
|
|
}
|
|
defer os.RemoveAll(tempexport) // clean up
|
|
|
|
imageExport := filepath.Join(tempexport, "image.tar")
|
|
if err := b.ExportImage(compiler.CompilerBackendOptions{ImageName: name, Destination: imageExport}); err != nil {
|
|
return errors.Wrap(err, "failed while extracting rootfs for "+name)
|
|
}
|
|
|
|
src := imageExport
|
|
|
|
if src == "" && opts.ImageName != "" {
|
|
tempUnpack, err := ioutil.TempDir(dst, "tempUnpack")
|
|
if err != nil {
|
|
return errors.Wrap(err, "Error met while creating tempdir for rootfs")
|
|
}
|
|
defer os.RemoveAll(tempUnpack) // clean up
|
|
imageExport := filepath.Join(tempUnpack, "image.tar")
|
|
if err := b.ExportImage(compiler.CompilerBackendOptions{ImageName: opts.ImageName, Destination: imageExport}); err != nil {
|
|
return errors.Wrap(err, "while exporting image before extraction")
|
|
}
|
|
src = imageExport
|
|
}
|
|
|
|
rootfs, err := ioutil.TempDir(dst, "tmprootfs")
|
|
if err != nil {
|
|
return errors.Wrap(err, "Error met while creating tempdir for rootfs")
|
|
}
|
|
defer os.RemoveAll(rootfs) // clean up
|
|
|
|
// TODO: Following as option if archive as output?
|
|
// archive, err := ioutil.TempDir(os.TempDir(), "archive")
|
|
// if err != nil {
|
|
// return nil, errors.Wrap(err, "Error met while creating tempdir for rootfs")
|
|
// }
|
|
// defer os.RemoveAll(archive) // clean up
|
|
|
|
err = helpers.Untar(src, rootfs, keepPerms)
|
|
if err != nil {
|
|
return errors.Wrap(err, "Error met while unpacking rootfs")
|
|
}
|
|
|
|
manifest, err := helpers.Read(filepath.Join(rootfs, "manifest.json"))
|
|
if err != nil {
|
|
return errors.Wrap(err, "Error met while reading image manifest")
|
|
}
|
|
|
|
// Unpack all layers
|
|
var manifestData []ManifestEntry
|
|
|
|
if err := json.Unmarshal([]byte(manifest), &manifestData); err != nil {
|
|
return errors.Wrap(err, "Error met while unmarshalling manifest")
|
|
}
|
|
|
|
layers_sha := []string{}
|
|
|
|
for _, data := range manifestData {
|
|
|
|
for _, l := range data.Layers {
|
|
if strings.Contains(l, "layer.tar") {
|
|
layers_sha = append(layers_sha, strings.Replace(l, "/layer.tar", "", -1))
|
|
}
|
|
}
|
|
}
|
|
// TODO: Drop capi in favor of the img approach already used in pkg/installer/repository
|
|
export, err := capi.CreateExport(rootfs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = export.UnPackLayers(layers_sha, dst, "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// err = helpers.Tar(archive, dst)
|
|
// if err != nil {
|
|
// return nil, errors.Wrap(err, "Error met while creating package archive")
|
|
// }
|
|
|
|
return nil
|
|
}
|
|
|
|
// Changes retrieves changes between image layers
|
|
func (d *SimpleDocker) Changes(fromImage, toImage compiler.CompilerBackendOptions) ([]compiler.ArtifactLayer, error) {
|
|
diffs, err := GenerateChanges(d, fromImage, toImage)
|
|
|
|
if config.LuetCfg.GetGeneral().Debug {
|
|
summary := compiler.ComputeArtifactLayerSummary(diffs)
|
|
for _, l := range summary.Layers {
|
|
Debug(fmt.Sprintf("Diff %s -> %s: add %d (%d bytes), del %d (%d bytes), change %d (%d bytes)",
|
|
l.FromImage, l.ToImage,
|
|
l.AddFiles, l.AddSizes,
|
|
l.DelFiles, l.DelSizes,
|
|
l.ChangeFiles, l.ChangeSizes))
|
|
}
|
|
}
|
|
|
|
return diffs, err
|
|
}
|