2019-11-08 17:31:16 +00:00
|
|
|
// 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 (
|
2019-11-09 12:58:15 +00:00
|
|
|
"encoding/json"
|
2019-11-10 09:47:28 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2019-11-08 17:31:16 +00:00
|
|
|
"os/exec"
|
2019-11-10 09:47:28 +00:00
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
"github.com/mudler/luet/pkg/api/core/types"
|
2021-03-16 13:46:28 +00:00
|
|
|
bus "github.com/mudler/luet/pkg/bus"
|
2021-06-01 14:43:31 +00:00
|
|
|
fileHelper "github.com/mudler/luet/pkg/helpers/file"
|
2021-03-16 13:46:28 +00:00
|
|
|
|
2019-11-10 09:47:28 +00:00
|
|
|
capi "github.com/mudler/docker-companion/api"
|
2019-11-08 17:31:16 +00:00
|
|
|
|
2019-11-10 09:47:28 +00:00
|
|
|
"github.com/mudler/luet/pkg/helpers"
|
2019-11-08 17:31:16 +00:00
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
type SimpleDocker struct {
|
|
|
|
ctx *types.Context
|
|
|
|
}
|
2019-11-08 17:31:16 +00:00
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
func NewSimpleDockerBackend(ctx *types.Context) *SimpleDocker {
|
|
|
|
return &SimpleDocker{ctx: ctx}
|
2019-11-08 17:31:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Missing still: labels, and build args expansion
|
2021-10-20 22:13:02 +00:00
|
|
|
func (s *SimpleDocker) BuildImage(opts Options) error {
|
2019-11-08 17:31:16 +00:00
|
|
|
name := opts.ImageName
|
2021-03-16 13:46:28 +00:00
|
|
|
bus.Manager.Publish(bus.EventImagePreBuild, opts)
|
2019-11-09 12:58:15 +00:00
|
|
|
|
2021-02-22 12:48:26 +00:00
|
|
|
buildarg := genBuildCommand(opts)
|
2021-10-20 22:13:02 +00:00
|
|
|
s.ctx.Info(":whale2: Building image " + name)
|
2019-11-08 17:31:16 +00:00
|
|
|
cmd := exec.Command("docker", buildarg...)
|
2021-02-22 12:48:26 +00:00
|
|
|
cmd.Dir = opts.SourcePath
|
2021-10-20 22:13:02 +00:00
|
|
|
err := runCommand(s.ctx, cmd)
|
2019-11-08 17:31:16 +00:00
|
|
|
if err != nil {
|
2021-02-01 18:10:16 +00:00
|
|
|
return err
|
2019-11-08 17:31:16 +00:00
|
|
|
}
|
2021-02-01 18:10:16 +00:00
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
s.ctx.Info(":whale: Building image " + name + " done")
|
2019-11-14 16:45:21 +00:00
|
|
|
|
2021-03-16 13:46:28 +00:00
|
|
|
bus.Manager.Publish(bus.EventImagePostBuild, opts)
|
|
|
|
|
2019-11-08 17:31:16 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
func (s *SimpleDocker) CopyImage(src, dst string) error {
|
|
|
|
s.ctx.Debug(":whale: Tagging image:", src, "->", dst)
|
2019-11-13 08:42:52 +00:00
|
|
|
cmd := exec.Command("docker", "tag", src, dst)
|
|
|
|
out, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "Failed tagging image: "+string(out))
|
|
|
|
}
|
2021-10-20 22:13:02 +00:00
|
|
|
s.ctx.Info(":whale: Tagged image:", src, "->", dst)
|
2019-11-13 08:42:52 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
func (s *SimpleDocker) DownloadImage(opts Options) error {
|
2019-11-13 08:42:52 +00:00
|
|
|
name := opts.ImageName
|
2021-03-16 13:46:28 +00:00
|
|
|
bus.Manager.Publish(bus.EventImagePrePull, opts)
|
|
|
|
|
2019-11-13 08:42:52 +00:00
|
|
|
buildarg := []string{"pull", name}
|
2021-10-20 22:13:02 +00:00
|
|
|
s.ctx.Debug(":whale: Downloading image " + name)
|
2021-02-13 08:28:54 +00:00
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
s.ctx.Spinner()
|
|
|
|
defer s.ctx.SpinnerStop()
|
2021-02-13 08:28:54 +00:00
|
|
|
|
2019-11-13 08:42:52 +00:00
|
|
|
cmd := exec.Command("docker", buildarg...)
|
|
|
|
out, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
2020-11-28 17:03:43 +00:00
|
|
|
return errors.Wrap(err, "Failed pulling image: "+string(out))
|
2019-11-13 08:42:52 +00:00
|
|
|
}
|
2021-02-13 08:28:54 +00:00
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
s.ctx.Info(":whale: Downloaded image:", name)
|
2021-03-16 13:46:28 +00:00
|
|
|
bus.Manager.Publish(bus.EventImagePostPull, opts)
|
|
|
|
|
2019-11-13 08:42:52 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
func (s *SimpleDocker) ImageExists(imagename string) bool {
|
2020-06-03 19:00:30 +00:00
|
|
|
buildarg := []string{"inspect", "--type=image", imagename}
|
2021-10-20 22:13:02 +00:00
|
|
|
s.ctx.Debug(":whale: Checking existance of docker image: " + imagename)
|
2020-06-03 19:00:30 +00:00
|
|
|
cmd := exec.Command("docker", buildarg...)
|
|
|
|
out, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
2021-10-20 22:13:02 +00:00
|
|
|
s.ctx.Debug("Image not present")
|
|
|
|
s.ctx.Debug(string(out))
|
2020-06-03 19:00:30 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-12-14 17:32:32 +00:00
|
|
|
func (*SimpleDocker) ImageAvailable(imagename string) bool {
|
|
|
|
return imageAvailable(imagename)
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
func (s *SimpleDocker) RemoveImage(opts Options) error {
|
2019-11-08 17:31:16 +00:00
|
|
|
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))
|
|
|
|
}
|
2021-10-20 22:13:02 +00:00
|
|
|
s.ctx.Info(":whale: Removed image:", name)
|
2019-11-14 16:45:21 +00:00
|
|
|
//Info(string(out))
|
2019-11-08 17:31:16 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
func (s *SimpleDocker) Push(opts Options) error {
|
2020-02-15 13:45:05 +00:00
|
|
|
name := opts.ImageName
|
|
|
|
pusharg := []string{"push", name}
|
2021-03-16 13:46:28 +00:00
|
|
|
bus.Manager.Publish(bus.EventImagePrePush, opts)
|
2021-02-13 08:28:54 +00:00
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
s.ctx.Spinner()
|
|
|
|
defer s.ctx.SpinnerStop()
|
2021-02-13 08:28:54 +00:00
|
|
|
|
2020-02-15 13:45:05 +00:00
|
|
|
out, err := exec.Command("docker", pusharg...).CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "Failed pushing image: "+string(out))
|
|
|
|
}
|
2021-10-20 22:13:02 +00:00
|
|
|
s.ctx.Info(":whale: Pushed image:", name)
|
2021-03-16 13:46:28 +00:00
|
|
|
bus.Manager.Publish(bus.EventImagePostPush, opts)
|
|
|
|
|
2020-02-15 13:45:05 +00:00
|
|
|
//Info(string(out))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-04-12 17:00:36 +00:00
|
|
|
func (s *SimpleDocker) ImageDefinitionToTar(opts Options) error {
|
2019-11-08 17:31:16 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
func (s *SimpleDocker) ExportImage(opts Options) error {
|
2019-11-08 17:31:16 +00:00
|
|
|
name := opts.ImageName
|
|
|
|
path := opts.Destination
|
|
|
|
|
|
|
|
buildarg := []string{"save", name, "-o", path}
|
2021-10-20 22:13:02 +00:00
|
|
|
s.ctx.Debug(":whale: Saving image " + name)
|
2021-02-13 08:28:54 +00:00
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
s.ctx.Spinner()
|
|
|
|
defer s.ctx.SpinnerStop()
|
2021-02-13 08:28:54 +00:00
|
|
|
|
2019-11-08 17:31:16 +00:00
|
|
|
out, err := exec.Command("docker", buildarg...).CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "Failed exporting image: "+string(out))
|
|
|
|
}
|
2019-11-09 12:58:15 +00:00
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
s.ctx.Debug(":whale: Exported image:", name)
|
2019-11-08 17:31:16 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-11-10 09:47:28 +00:00
|
|
|
type ManifestEntry struct {
|
|
|
|
Layers []string `json:"Layers"`
|
|
|
|
}
|
|
|
|
|
2021-04-12 17:00:36 +00:00
|
|
|
func (b *SimpleDocker) ExtractRootfs(opts Options, keepPerms bool) error {
|
2021-01-24 11:27:07 +00:00
|
|
|
name := opts.ImageName
|
2019-11-10 09:47:28 +00:00
|
|
|
dst := opts.Destination
|
|
|
|
|
2021-05-25 09:04:00 +00:00
|
|
|
if !b.ImageExists(name) {
|
|
|
|
if err := b.DownloadImage(opts); err != nil {
|
|
|
|
return errors.Wrap(err, "failed pulling image "+name+" during extraction")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-24 11:27:07 +00:00
|
|
|
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")
|
2021-02-13 08:28:54 +00:00
|
|
|
|
2021-10-20 22:13:02 +00:00
|
|
|
b.ctx.Spinner()
|
|
|
|
defer b.ctx.SpinnerStop()
|
2021-02-13 08:28:54 +00:00
|
|
|
|
2021-04-12 17:00:36 +00:00
|
|
|
if err := b.ExportImage(Options{ImageName: name, Destination: imageExport}); err != nil {
|
2021-01-24 11:27:07 +00:00
|
|
|
return errors.Wrap(err, "failed while extracting rootfs for "+name)
|
|
|
|
}
|
|
|
|
|
|
|
|
src := imageExport
|
|
|
|
|
2021-01-18 11:08:47 +00:00
|
|
|
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")
|
2021-04-12 17:00:36 +00:00
|
|
|
if err := b.ExportImage(Options{ImageName: opts.ImageName, Destination: imageExport}); err != nil {
|
2021-01-18 11:08:47 +00:00
|
|
|
return errors.Wrap(err, "while exporting image before extraction")
|
|
|
|
}
|
|
|
|
src = imageExport
|
|
|
|
}
|
|
|
|
|
2019-11-14 16:45:21 +00:00
|
|
|
rootfs, err := ioutil.TempDir(dst, "tmprootfs")
|
2019-11-10 09:47:28 +00:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
2021-06-01 14:43:31 +00:00
|
|
|
manifest, err := fileHelper.Read(filepath.Join(rootfs, "manifest.json"))
|
2019-11-10 09:47:28 +00:00
|
|
|
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{}
|
|
|
|
|
2019-11-26 19:12:06 +00:00
|
|
|
for _, data := range manifestData {
|
2019-11-26 19:22:33 +00:00
|
|
|
|
2019-11-26 19:12:06 +00:00
|
|
|
for _, l := range data.Layers {
|
2019-11-26 19:22:33 +00:00
|
|
|
if strings.Contains(l, "layer.tar") {
|
|
|
|
layers_sha = append(layers_sha, strings.Replace(l, "/layer.tar", "", -1))
|
|
|
|
}
|
2019-11-26 19:12:06 +00:00
|
|
|
}
|
2019-11-10 09:47:28 +00:00
|
|
|
}
|
2021-01-19 16:23:14 +00:00
|
|
|
// TODO: Drop capi in favor of the img approach already used in pkg/installer/repository
|
2019-11-10 09:47:28 +00:00
|
|
|
export, err := capi.CreateExport(rootfs)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-03-18 09:47:58 +00:00
|
|
|
err = export.UnPackLayers(layers_sha, dst, "containerd")
|
2019-11-10 09:47:28 +00:00
|
|
|
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
|
|
|
|
}
|