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
|
// 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 ociplatform
import (
"fmt"
"runtime"
ggcrv1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/sylabs/singularity/v4/pkg/sylog"
)
// CheckImagePlatform ensures that an image reference satisfies the provided platform requirements.
func CheckImagePlatform(platform ggcrv1.Platform, img ggcrv1.Image) error {
cf, err := img.ConfigFile()
if err != nil {
return err
}
if cf.Platform() == nil {
sylog.Warningf("OCI image doesn't declare a platform. It may not be compatible with this system.")
return nil
}
if cf.Platform().Satisfies(platform) {
return nil
}
return fmt.Errorf("image (%s) does not satisfy required platform (%s)", cf.Platform(), platform)
}
func DefaultPlatform() (*ggcrv1.Platform, error) {
os := runtime.GOOS
arch := runtime.GOARCH
variant := CPUVariant()
if os != "linux" {
return nil, fmt.Errorf("%q is not a valid platform OS for singularity", runtime.GOOS)
}
arch, variant = normalizeArch(arch, variant)
return &ggcrv1.Platform{
OS: os,
Architecture: arch,
Variant: variant,
}, nil
}
func PlatformFromString(p string) (*ggcrv1.Platform, error) {
plat, err := ggcrv1.ParsePlatform(p)
if err != nil {
return nil, err
}
if plat.OS != "linux" {
return nil, fmt.Errorf("%q is not a valid platform OS for singularity", plat.OS)
}
plat.Architecture, plat.Variant = normalizeArch(plat.Architecture, plat.Variant)
return plat, nil
}
func PlatformFromArch(a string) (*ggcrv1.Platform, error) {
if runtime.GOOS != "linux" {
return nil, fmt.Errorf("%q is not a valid platform OS for singularity", runtime.GOOS)
}
arch, variant := normalizeArch(a, "")
return &ggcrv1.Platform{
OS: runtime.GOOS,
Architecture: arch,
Variant: variant,
}, nil
}
|