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 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
// Copyright (c) 2021-2022, Sylabs Inc. All rights reserved.
// This software is licensed under a 3-clause BSD license. Please consult the
// LICENSE.md file distributed with the sources of this project regarding your
// rights to use or distribute this software.package singularity
package singularity
import (
"bytes"
"fmt"
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
"github.com/sylabs/sif/v2/pkg/sif"
"github.com/sylabs/singularity/v4/internal/pkg/util/bin"
"github.com/sylabs/singularity/v4/pkg/image"
"golang.org/x/sys/unix"
)
const (
mkfsBinary = "mkfs.ext3"
ddBinary = "dd"
truncateBinary = "truncate"
)
// isSigned returns true if the SIF in rw contains one or more signature objects.
func isSigned(rw sif.ReadWriter) (bool, error) {
f, err := sif.LoadContainer(rw,
sif.OptLoadWithFlag(os.O_RDONLY),
sif.OptLoadWithCloseOnUnload(false),
)
if err != nil {
return false, err
}
defer f.UnloadContainer()
sigs, err := f.GetDescriptors(sif.WithDataType(sif.DataSignature))
return len(sigs) > 0, err
}
// addOverlayToImage adds the EXT3 overlay at overlayPath to the SIF image at imagePath.
func addOverlayToImage(imagePath, overlayPath string) error {
f, err := sif.LoadContainerFromPath(imagePath)
if err != nil {
return err
}
defer f.UnloadContainer()
tf, err := os.Open(overlayPath)
if err != nil {
return err
}
defer tf.Close()
arch := f.PrimaryArch()
if arch == "unknown" {
arch = runtime.GOARCH
}
di, err := sif.NewDescriptorInput(sif.DataPartition, tf,
sif.OptPartitionMetadata(sif.FsExt3, sif.PartOverlay, arch),
)
if err != nil {
return err
}
return f.AddObject(di)
}
// findConvertCommand finds dd unless overlaySparse is true
func findConvertCommand(overlaySparse bool) (string, error) {
// We can support additional arguments, so return a list
command := ""
// Sparse overlay requires truncate -s
if overlaySparse {
truncate, err := bin.FindBin(truncateBinary)
if err != nil {
return command, err
}
command = truncate
// Regular (non sparse) requires dd
} else {
dd, err := bin.FindBin(ddBinary)
if err != nil {
return command, err
}
command = dd
}
return command, nil
}
// OverlayCreate creates the overlay with an optional size, image path, dirs, and sparse option.
func OverlayCreate(size int, imgPath string, overlaySparse bool, overlayDirs ...string) error {
if size < 64 {
return fmt.Errorf("image size must be equal or greater than 64 MiB")
}
mkfs, err := bin.FindBin(mkfsBinary)
if err != nil {
return err
}
// This can be dd or truncate (if supported and --sparse is true)
convertCommand, err := findConvertCommand(overlaySparse)
if err != nil {
return err
}
buf := new(bytes.Buffer)
// check if -d option is available
cmd := exec.Command(mkfs, "--help")
cmd.Stderr = buf
// ignore error because the command always returns with exit code 1
_ = cmd.Run()
if !strings.Contains(buf.String(), "[-d ") {
return fmt.Errorf("%s seems too old as it doesn't support -d, this is required to create the overlay layout", mkfsBinary)
}
sifImage := false
if err := unix.Access(imgPath, unix.W_OK); err == nil {
img, err := image.Init(imgPath, false)
if err != nil {
return fmt.Errorf("while opening image file %s: %s", imgPath, err)
}
switch img.Type {
case image.SIF:
sysPart, err := img.GetRootFsPartition()
if err != nil {
return fmt.Errorf("while getting root FS partition: %s", err)
} else if sysPart.Type == image.ENCRYPTSQUASHFS {
return fmt.Errorf("encrypted root FS partition in %s: could not add writable overlay", imgPath)
}
overlays, err := img.GetOverlayPartitions()
if err != nil {
return fmt.Errorf("while getting SIF overlay partitions: %s", err)
}
signed, err := isSigned(img.File)
if err != nil {
return fmt.Errorf("while getting SIF info: %s", err)
} else if signed {
return fmt.Errorf("SIF image %s is signed: could not add writable overlay", imgPath)
}
img.File.Close()
for _, overlay := range overlays {
if overlay.Type != image.EXT3 {
continue
}
delCmd := fmt.Sprintf("singularity sif del %d %s", overlay.ID, imgPath)
return fmt.Errorf("a writable overlay partition already exists in %s (ID: %d), delete it first with %q", imgPath, overlay.ID, delCmd)
}
sifImage = true
case image.EXT3:
return fmt.Errorf("EXT3 overlay image %s already exists", imgPath)
default:
return fmt.Errorf("destination image must be SIF image")
}
}
tmpFile := imgPath + ".ext3"
defer func() {
_ = os.Remove(tmpFile)
}()
errBuf := new(bytes.Buffer)
// truncate has a different interaction than dd
if strings.Contains(convertCommand, "truncate") {
cmd = exec.Command(convertCommand, fmt.Sprintf("--size=%dM", size), tmpFile)
} else {
cmd = exec.Command(convertCommand, "if=/dev/zero", "of="+tmpFile, "bs=1M", fmt.Sprintf("count=%d", size))
}
cmd.Stderr = errBuf
if err := cmd.Run(); err != nil {
return fmt.Errorf("while zero'ing overlay image %s: %s\nCommand error: %s", tmpFile, err, errBuf)
}
errBuf.Reset()
if err := os.Chmod(tmpFile, 0o600); err != nil {
return fmt.Errorf("while setting 0600 permission on %s: %s", tmpFile, err)
}
tmpDir, err := os.MkdirTemp("", "overlay-")
if err != nil {
return fmt.Errorf("while creating temporary overlay directory: %s", err)
}
defer func() {
_ = os.RemoveAll(tmpDir)
}()
perm := os.FileMode(0o755)
if os.Getuid() > 65535 || os.Getgid() > 65535 {
perm = 0o777
}
upperDir := filepath.Join(tmpDir, "upper")
workDir := filepath.Join(tmpDir, "work")
oldumask := unix.Umask(0)
defer unix.Umask(oldumask)
if err := os.Mkdir(upperDir, perm); err != nil {
return fmt.Errorf("while creating %s: %s", upperDir, err)
}
if err := os.Mkdir(workDir, perm); err != nil {
return fmt.Errorf("while creating %s: %s", workDir, err)
}
for _, dir := range overlayDirs {
od := filepath.Join(upperDir, dir)
if !strings.HasPrefix(od, upperDir) {
return fmt.Errorf("overlay directory created outside of overlay layout %s", upperDir)
}
if err := os.MkdirAll(od, perm); err != nil {
return fmt.Errorf("while creating %s: %s", od, err)
}
}
cmd = exec.Command(mkfs, "-d", tmpDir, tmpFile)
cmd.Stderr = errBuf
if err := cmd.Run(); err != nil {
return fmt.Errorf("while creating ext3 partition in %s: %s\nCommand error: %s", tmpFile, err, errBuf)
}
errBuf.Reset()
if sifImage {
if err := addOverlayToImage(imgPath, tmpFile); err != nil {
return fmt.Errorf("while adding ext3 overlay partition to %s: %w", imgPath, err)
}
} else {
if err := os.Rename(tmpFile, imgPath); err != nil {
return fmt.Errorf("while renaming %s to %s: %s", tmpFile, imgPath, err)
}
}
return nil
}
|