1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
package image
import (
"context"
"fmt"
"os"
"path/filepath"
"strconv"
"time"
"github.com/lxc/incus/v6/shared/api"
"gopkg.in/yaml.v2"
"github.com/lxc/distrobuilder/v3/shared"
)
// An IncusImage represents an Incus image.
type IncusImage struct {
sourceDir string
targetDir string
cacheDir string
Metadata api.ImageMetadata
definition shared.Definition
ctx context.Context
}
// NewIncusImage returns an IncusImage.
func NewIncusImage(ctx context.Context, sourceDir, targetDir, cacheDir string,
definition shared.Definition,
) *IncusImage {
return &IncusImage{
sourceDir,
targetDir,
cacheDir,
api.ImageMetadata{
Properties: make(map[string]string),
Templates: make(map[string]*api.ImageMetadataTemplate),
},
definition,
ctx,
}
}
// Build creates an Incus image.
func (l *IncusImage) Build(unified bool, compression string, vm bool) (string, string, error) {
err := l.createMetadata()
if err != nil {
return "", "", fmt.Errorf("Failed to create metadata: %w", err)
}
file, err := os.Create(filepath.Join(l.cacheDir, "metadata.yaml"))
if err != nil {
return "", "", fmt.Errorf("Failed to create metadata.yaml: %w", err)
}
defer file.Close()
data, err := yaml.Marshal(l.Metadata)
if err != nil {
return "", "", fmt.Errorf("Failed to marshal yaml: %w", err)
}
_, err = file.Write(data)
if err != nil {
return "", "", fmt.Errorf("Failed to write metadata: %w", err)
}
paths := []string{"metadata.yaml"}
// Only include templates directory in the tarball if it's present.
info, err := os.Stat(filepath.Join(l.cacheDir, "templates"))
if err == nil && info.IsDir() {
paths = append(paths, "templates")
}
var fname string
if l.definition.Image.Name != "" {
// Use a custom name for the unified tarball.
fname, _ = shared.RenderTemplate(l.definition.Image.Name, l.definition)
} else {
// Default name for the unified tarball.
fname = "incus"
}
rawImage := filepath.Join(l.cacheDir, fmt.Sprintf("%s.raw", fname))
qcowImage := filepath.Join(l.cacheDir, fmt.Sprintf("%s.img", fname))
if vm {
// Create compressed qcow2 image.
args := []string{"convert"}
if compression != "none" {
args = append(args, "-c")
}
args = append(args, "-O", "qcow2", rawImage, qcowImage)
err = shared.RunCommand(l.ctx, nil, nil, "qemu-img", args...)
if err != nil {
return "", "", fmt.Errorf("Failed to create qcow2 image %q: %w", qcowImage, err)
}
defer os.RemoveAll(rawImage)
}
imageFile := ""
rootfsFile := ""
if unified {
targetTarball := filepath.Join(l.targetDir, fmt.Sprintf("%s.tar", fname))
if vm {
// Rename image to rootfs.img
err = os.Rename(qcowImage, filepath.Join(filepath.Dir(qcowImage), "rootfs.img"))
if err != nil {
return "", "", fmt.Errorf("Failed to rename image %q -> %q: %w", qcowImage, filepath.Join(filepath.Dir(qcowImage), "rootfs.img"), err)
}
_, err = shared.Pack(l.ctx, targetTarball, "", l.cacheDir, "rootfs.img")
} else {
// Add the rootfs to the tarball, prefix all files with "rootfs".
// We intentionally don't set any compression here, as PackUpdate (further down) cannot deal with compressed tarballs.
_, err = shared.Pack(l.ctx, targetTarball,
"", l.sourceDir, "--transform", "s,^./,rootfs/,", ".")
}
if err != nil {
return "", "", fmt.Errorf("Failed to pack tarball %q: %w", targetTarball, err)
}
defer func() {
if vm {
os.RemoveAll(qcowImage)
}
}()
// Add the metadata to the tarball which is located in the cache directory
imageFile, err = shared.PackUpdate(l.ctx, targetTarball, compression, l.cacheDir, paths...)
if err != nil {
return "", "", fmt.Errorf("Failed to add metadata to tarball %q: %w", targetTarball, err)
}
} else {
if vm {
rootfsFile = filepath.Join(l.targetDir, "disk.qcow2")
err = shared.Copy(qcowImage, rootfsFile)
} else {
rootfsFile = filepath.Join(l.targetDir, "rootfs.squashfs")
args := []string{l.sourceDir, rootfsFile, "-noappend", "-b", "1M", "-no-exports", "-no-progress", "-no-recovery"}
compression, level, parseErr := shared.ParseSquashfsCompression(compression)
if parseErr != nil {
return "", "", fmt.Errorf("Failed to parse compression level: %w", err)
}
if level != nil {
args = append(args, "-comp", compression, "-Xcompression-level", strconv.Itoa(*level))
} else {
args = append(args, "-comp", compression)
}
// Create rootfs as squashfs.
err = shared.RunCommand(l.ctx, nil, nil, "mksquashfs", args...)
}
if err != nil {
return "", "", fmt.Errorf("Failed to create squashfs or copy image: %w", err)
}
// Create metadata tarball.
imageFile, err = shared.Pack(l.ctx, filepath.Join(l.targetDir, "incus.tar"), compression,
l.cacheDir, paths...)
if err != nil {
return "", "", fmt.Errorf("Failed to create metadata tarball: %w", err)
}
}
return imageFile, rootfsFile, nil
}
func (l *IncusImage) createMetadata() error {
var err error
l.Metadata.Architecture = l.definition.Image.Architecture
l.Metadata.CreationDate = time.Now().UTC().Unix()
l.Metadata.Properties["architecture"] = l.definition.Image.ArchitectureMapped
l.Metadata.Properties["os"] = l.definition.Image.Distribution
l.Metadata.Properties["release"] = l.definition.Image.Release
l.Metadata.Properties["variant"] = l.definition.Image.Variant
l.Metadata.Properties["serial"] = l.definition.Image.Serial
l.Metadata.Properties["description"], err = shared.RenderTemplate(
l.definition.Image.Description, l.definition)
if err != nil {
return fmt.Errorf("Failed to render template: %w", err)
}
l.Metadata.Properties["name"], err = shared.RenderTemplate(
l.definition.Image.Name, l.definition)
if err != nil {
return fmt.Errorf("Failed to render template: %w", err)
}
l.Metadata.ExpiryDate = shared.GetExpiryDate(time.Now(),
l.definition.Image.Expiry).Unix()
return nil
}
|