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 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
|
// Copyright (c) Contributors to the Apptainer project, established as
// Apptainer a Series of LF Projects LLC.
// For website terms of use, trademark policy, privacy policy and other
// project policies see https://lfprojects.org/policies
// Copyright (c) 2019-2023, 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 ociimage
import (
"archive/tar"
"bufio"
"compress/gzip"
"context"
"fmt"
"io"
"net/http"
"os"
"path/filepath"
"strings"
"github.com/apptainer/apptainer/internal/pkg/cache"
progressClient "github.com/apptainer/apptainer/internal/pkg/client"
"github.com/apptainer/apptainer/pkg/sylog"
"github.com/docker/docker/client"
ggcrv1 "github.com/google/go-containerregistry/pkg/v1"
v1 "github.com/google/go-containerregistry/pkg/v1"
)
// cachedImage will ensure that the provided v1.Image is present in the Apptainer
// OCI cache layout dir, and return a new v1.Image pointing to the cached copy.
func cachedImage(ctx context.Context, imgCache *cache.Handle, srcImg v1.Image) (v1.Image, error) {
if imgCache == nil || imgCache.IsDisabled() {
return nil, fmt.Errorf("undefined image cache")
}
digest, err := srcImg.Digest()
if err != nil {
return nil, err
}
layoutDir, err := imgCache.GetOciCacheDir(cache.OciBlobCacheType)
if err != nil {
return nil, err
}
cachedRef := layoutDir + "@" + digest.String()
sylog.Debugf("Caching image to %s", cachedRef)
if err := OCISourceSink.WriteImage(srcImg, layoutDir, nil); err != nil {
return nil, err
}
return OCISourceSink.Image(ctx, cachedRef, nil, nil)
}
// FetchToLayout will fetch the OCI image specified by imageRef to an OCI layout
// and return a v1.Image referencing it. If imgCache is non-nil, and enabled,
// the image will be fetched into Apptainer's cache - which is a multi-image
// OCI layout. If the cache is disabled, the image will be fetched into a
// subdirectory of the provided tmpDir. The caller is responsible for cleaning
// up tmpDir.
func FetchToLayout(ctx context.Context, tOpts *TransportOptions, imgCache *cache.Handle, imageURI, tmpDir string) (ggcrv1.Image, error) {
// docker-daemon - Save archive to a temporary file, possibly in OCI format.
// This is to be able to use the new docker-archive code below.
if strings.HasPrefix(imageURI, "docker-daemon:") {
tmp, err := os.CreateTemp(tOpts.TmpDir, "*.tar")
if err != nil {
return nil, fmt.Errorf("could not create temporary docker archive: %v", err)
}
// docker-daemon:<name>[:tag|digest]
refParts := strings.SplitN(imageURI, ":", 3)
ref := refParts[1]
if len(refParts) == 3 {
ref = ref + ":" + refParts[2]
}
sylog.Debugf("Saving docker-daemon %q to %q", ref, tmp.Name())
err = saveArchive(ctx, tOpts, ref, tmp.Name())
if err != nil {
return nil, fmt.Errorf("error saving the docker archive file: %v", err)
}
imageURI = "docker-archive:" + tmp.Name()
}
// docker-archive - First test if it is also an oci-archive, and if so use it.
// The newer format avoids go-containerregistry sha256 issues.
if strings.HasPrefix(imageURI, "docker-archive:") {
// docker-archive:<path>[:tag]
refParts := strings.SplitN(imageURI, ":", 3)
sylog.Debugf("Reading docker-archive %q", refParts[1])
oci, err := ociArchive(refParts[1])
if err != nil {
return nil, fmt.Errorf("error reading the docker archive file: %v", err)
}
if oci {
imageURI = strings.Replace(imageURI, "docker-archive:", "oci-archive:", 1)
}
}
// oci-archive - Perform a tar extraction first, and handle as an oci layout.
if strings.HasPrefix(imageURI, "oci-archive:") {
var tmpDir string
tmpDir, err := os.MkdirTemp(tOpts.TmpDir, "temp-oci-")
if err != nil {
return nil, fmt.Errorf("could not create temporary oci directory: %v", err)
}
defer os.RemoveAll(tmpDir)
// oci-archive:<path>[:tag]
refParts := strings.SplitN(imageURI, ":", 3)
sylog.Debugf("Extracting oci-archive %q to %q", refParts[1], tmpDir)
err = extractArchive(refParts[1], tmpDir)
if err != nil {
return nil, fmt.Errorf("error extracting the OCI archive file: %v", err)
}
// We may or may not have had a ':tag' in the source to handle
imageURI = "oci:" + tmpDir
if len(refParts) == 3 {
imageURI = imageURI + ":" + refParts[2]
}
}
srcType, srcRef, err := URItoSourceSinkRef(imageURI)
if err != nil {
return nil, err
}
rt := progressClient.NewRoundTripper(ctx, nil)
srcImg, err := srcType.Image(ctx, srcRef, tOpts, rt)
if err != nil {
rt.ProgressShutdown()
return nil, err
}
if imgCache != nil && !imgCache.IsDisabled() {
// Ensure the image is cached, and return reference to the cached image.
cachedImg, err := cachedImage(ctx, imgCache, srcImg)
if err != nil {
rt.ProgressShutdown()
return nil, err
}
rt.ProgressComplete()
rt.ProgressWait()
return cachedImg, nil
}
// No cache - write to layout directory provided
tmpLayout, err := os.MkdirTemp(tmpDir, "layout-")
if err != nil {
return nil, err
}
sylog.Debugf("Copying %q to temporary layout at %q", srcRef, tmpLayout)
if err = OCISourceSink.WriteImage(srcImg, tmpLayout, nil); err != nil {
rt.ProgressShutdown()
return nil, err
}
rt.ProgressComplete()
rt.ProgressWait()
return OCISourceSink.Image(ctx, tmpLayout, tOpts, nil)
}
// Save as tar from the docker-daemon, using the given image reference
func saveArchive(ctx context.Context, tOpts *TransportOptions, src string, dst string) error {
var opt client.Opt
if tOpts != nil && tOpts.DockerDaemonHost != "" {
opt = client.WithHost(tOpts.DockerDaemonHost)
} else {
opt = client.WithHostFromEnv()
}
dc, err := client.NewClientWithOpts(opt, client.WithAPIVersionNegotiation())
if err != nil {
return err
}
r, err := dc.ImageSave(ctx, []string{src})
if err != nil {
return err
}
defer r.Close()
w, err := os.OpenFile(dst, os.O_TRUNC|os.O_CREATE|os.O_WRONLY, 0o644)
if err != nil {
return err
}
defer w.Close()
_, err = io.Copy(w, r)
return err
}
// Check if tar(gz) is really a oci-archive in addition to docker-archive
func ociArchive(src string) (bool, error) {
f, err := os.Open(src)
if err != nil {
return false, err
}
defer f.Close()
r := bufio.NewReader(f)
header, err := r.Peek(10) // read a few bytes without consuming
if err != nil {
return false, err
}
gzipped := strings.Contains(http.DetectContentType(header), "x-gzip")
if gzipped {
r, err := gzip.NewReader(f)
if err != nil {
return false, err
}
defer r.Close()
}
tr := tar.NewReader(r)
haveOciLayout := false
haveIndexJSON := false
loop:
for {
header, err := tr.Next()
switch {
case err == io.EOF:
break loop
case err != nil:
return false, err
case header == nil:
continue
}
if header.Typeflag == tar.TypeReg {
if header.Name == "oci-layout" {
haveOciLayout = true
}
if header.Name == "index.json" {
haveIndexJSON = true
}
}
}
return haveOciLayout && haveIndexJSON, nil
}
// Perform a dumb tar(gz) extraction with no chown, id remapping etc.
// This is needed for non-root handling of `oci-archive` as the extraction
// by containers/archive is failing when uid/gid don't match local machine
// and we're not root
func extractArchive(src string, dst string) error {
f, err := os.Open(src)
if err != nil {
return err
}
defer f.Close()
r := bufio.NewReader(f)
header, err := r.Peek(10) // read a few bytes without consuming
if err != nil {
return err
}
gzipped := strings.Contains(http.DetectContentType(header), "x-gzip")
if gzipped {
r, err := gzip.NewReader(f)
if err != nil {
return err
}
defer r.Close()
}
tr := tar.NewReader(r)
for {
header, err := tr.Next()
switch {
// if no more files are found return
case err == io.EOF:
return nil
// return any other error
case err != nil:
return err
// if the header is nil, just skip it (not sure how this happens)
case header == nil:
continue
}
// ZipSlip protection - don't escape from dst
//#nosec G305
target := filepath.Join(dst, header.Name)
if !strings.HasPrefix(target, filepath.Clean(dst)+string(os.PathSeparator)) {
return fmt.Errorf("%s: illegal extraction path", target)
}
// check the file type
switch header.Typeflag {
// if its a dir and it doesn't exist create it
case tar.TypeDir:
if _, err := os.Stat(target); err != nil {
if err := os.MkdirAll(target, 0o755); err != nil {
return err
}
}
// if it's a file create it
case tar.TypeReg:
f, err := os.OpenFile(target, os.O_CREATE|os.O_RDWR, os.FileMode(header.Mode))
if err != nil {
return err
}
defer f.Close()
// copy over contents
for {
if _, err := io.CopyN(f, tr, 1024); err != nil {
if err == io.EOF {
break
}
return err
}
}
}
}
}
|