mirror of
https://github.com/moby/moby.git
synced 2026-01-11 02:31:44 +00:00
763 lines
22 KiB
Go
763 lines
22 KiB
Go
package containerd
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"runtime"
|
|
"sort"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/containerd/containerd/v2/core/content"
|
|
c8dimages "github.com/containerd/containerd/v2/core/images"
|
|
"github.com/containerd/containerd/v2/pkg/labels"
|
|
cerrdefs "github.com/containerd/errdefs"
|
|
"github.com/containerd/log"
|
|
"github.com/containerd/platforms"
|
|
"github.com/distribution/reference"
|
|
"github.com/moby/buildkit/util/attestation"
|
|
dockerspec "github.com/moby/docker-image-spec/specs-go/v1"
|
|
imagetypes "github.com/moby/moby/api/types/image"
|
|
"github.com/moby/moby/v2/daemon/internal/filters"
|
|
"github.com/moby/moby/v2/daemon/internal/timestamp"
|
|
"github.com/moby/moby/v2/daemon/server/imagebackend"
|
|
"github.com/moby/moby/v2/errdefs"
|
|
"github.com/opencontainers/go-digest"
|
|
"github.com/opencontainers/image-spec/identity"
|
|
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
|
|
"github.com/pkg/errors"
|
|
"golang.org/x/sync/errgroup"
|
|
)
|
|
|
|
// Subset of ocispec.Image that only contains Labels
|
|
type configLabels struct {
|
|
// Created is the combined date and time at which the image was created, formatted as defined by RFC 3339, section 5.6.
|
|
Created *time.Time `json:"created,omitempty"`
|
|
|
|
Config struct {
|
|
Labels map[string]string `json:"Labels,omitempty"`
|
|
} `json:"config,omitempty"`
|
|
}
|
|
|
|
var acceptedImageFilterTags = map[string]bool{
|
|
"dangling": true,
|
|
"label": true,
|
|
"label!": true,
|
|
"before": true,
|
|
"since": true,
|
|
"reference": true,
|
|
"until": true,
|
|
}
|
|
|
|
// byCreated is a temporary type used to sort a list of images by creation
|
|
// time.
|
|
type byCreated []imagetypes.Summary
|
|
|
|
func (r byCreated) Len() int { return len(r) }
|
|
func (r byCreated) Swap(i, j int) { r[i], r[j] = r[j], r[i] }
|
|
func (r byCreated) Less(i, j int) bool { return r[i].Created < r[j].Created }
|
|
|
|
// Images returns a filtered list of images.
|
|
//
|
|
// TODO(thaJeztah): verify behavior of `RepoDigests` and `RepoTags` for images without (untagged) or multiple tags; see https://github.com/moby/moby/issues/43861
|
|
// TODO(thaJeztah): verify "Size" vs "VirtualSize" in images; see https://github.com/moby/moby/issues/43862
|
|
func (i *ImageService) Images(ctx context.Context, opts imagebackend.ListOptions) ([]imagetypes.Summary, error) {
|
|
if err := opts.Filters.Validate(acceptedImageFilterTags); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
filter, err := i.setupFilters(ctx, opts.Filters)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
imgs, err := i.images.List(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// TODO(thaJeztah): do we need to take multiple snapshotters into account? See https://github.com/moby/moby/issues/45273
|
|
snapshotter := i.snapshotterService(i.snapshotter)
|
|
sizeCache := make(map[digest.Digest]int64)
|
|
snapshotSizeFn := func(d digest.Digest) (int64, error) {
|
|
if s, ok := sizeCache[d]; ok {
|
|
return s, nil
|
|
}
|
|
usage, err := snapshotter.Usage(ctx, d.String())
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
sizeCache[d] = usage.Size
|
|
return usage.Size, nil
|
|
}
|
|
|
|
uniqueImages := map[digest.Digest]c8dimages.Image{}
|
|
tagsByDigest := map[digest.Digest][]string{}
|
|
intermediateImages := map[digest.Digest]struct{}{}
|
|
|
|
hideIntermediate := !opts.All
|
|
if hideIntermediate {
|
|
for _, img := range imgs {
|
|
parent, ok := img.Labels[imageLabelClassicBuilderParent]
|
|
if ok && parent != "" {
|
|
dgst, err := digest.Parse(parent)
|
|
if err != nil {
|
|
log.G(ctx).WithFields(log.Fields{
|
|
"error": err,
|
|
"value": parent,
|
|
}).Warnf("invalid %s label value", imageLabelClassicBuilderParent)
|
|
}
|
|
intermediateImages[dgst] = struct{}{}
|
|
}
|
|
}
|
|
}
|
|
|
|
// TODO: Allow platform override?
|
|
platformMatcher := matchAnyWithPreference(platforms.Default(), nil)
|
|
|
|
for _, img := range imgs {
|
|
isDangling := isDanglingImage(img)
|
|
|
|
if hideIntermediate && isDangling {
|
|
if _, ok := intermediateImages[img.Target.Digest]; ok {
|
|
continue
|
|
}
|
|
}
|
|
|
|
if !filter(img) {
|
|
continue
|
|
}
|
|
|
|
dgst := img.Target.Digest
|
|
if isDangling {
|
|
if _, ok := uniqueImages[dgst]; !ok {
|
|
uniqueImages[dgst] = img
|
|
}
|
|
continue
|
|
}
|
|
uniqueImages[dgst] = img
|
|
|
|
ref, err := reference.ParseNormalizedNamed(img.Name)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
tagsByDigest[dgst] = append(tagsByDigest[dgst], reference.FamiliarString(ref))
|
|
}
|
|
|
|
resultsMut := sync.Mutex{}
|
|
eg, egCtx := errgroup.WithContext(ctx)
|
|
eg.SetLimit(runtime.NumCPU() * 2)
|
|
|
|
var (
|
|
summaries = make([]imagetypes.Summary, 0, len(imgs))
|
|
root []*[]digest.Digest
|
|
layers map[digest.Digest]int
|
|
)
|
|
if opts.SharedSize {
|
|
root = make([]*[]digest.Digest, 0, len(imgs))
|
|
layers = make(map[digest.Digest]int)
|
|
}
|
|
|
|
for _, img := range uniqueImages {
|
|
eg.Go(func() error {
|
|
image, multiSummary, err := i.imageSummary(egCtx, img, platformMatcher, opts, tagsByDigest)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// No error, but image should be skipped.
|
|
if image == nil {
|
|
return nil
|
|
}
|
|
|
|
if !opts.Manifests {
|
|
image.Manifests = nil
|
|
}
|
|
resultsMut.Lock()
|
|
summaries = append(summaries, *image)
|
|
|
|
if opts.SharedSize {
|
|
root = append(root, &multiSummary.AllChainIDs)
|
|
for _, id := range multiSummary.AllChainIDs {
|
|
layers[id] = layers[id] + 1
|
|
}
|
|
}
|
|
resultsMut.Unlock()
|
|
return nil
|
|
})
|
|
}
|
|
|
|
if err := eg.Wait(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if opts.SharedSize {
|
|
for n, chainIDs := range root {
|
|
sharedSize, err := computeSharedSize(*chainIDs, layers, snapshotSizeFn)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
summaries[n].SharedSize = sharedSize
|
|
}
|
|
}
|
|
|
|
sort.Sort(sort.Reverse(byCreated(summaries)))
|
|
|
|
return summaries, nil
|
|
}
|
|
|
|
type multiPlatformSummary struct {
|
|
// Image is the containerd image object.
|
|
Image c8dimages.Image
|
|
|
|
// Manifests contains the summaries of manifests present in this image.
|
|
Manifests []imagetypes.ManifestSummary
|
|
|
|
// AllChainIDs contains the chainIDs of all the layers of the image (including all its platforms).
|
|
AllChainIDs []digest.Digest
|
|
|
|
// TotalSize is the total size of the image including all its platform.
|
|
TotalSize int64
|
|
|
|
// ContainersCount is the count of containers using the image.
|
|
ContainersCount int64
|
|
|
|
// Best is the single platform image manifest preferred by the platform matcher.
|
|
Best *ImageManifest
|
|
|
|
// BestPlatform is the platform of the best image.
|
|
BestPlatform ocispec.Platform
|
|
}
|
|
|
|
func (i *ImageService) multiPlatformSummary(ctx context.Context, img c8dimages.Image, platformMatcher platforms.MatchComparer) (*multiPlatformSummary, error) {
|
|
var summary multiPlatformSummary
|
|
err := i.walkReachableImageManifests(ctx, img, func(img *ImageManifest) error {
|
|
target := img.Target()
|
|
|
|
logger := log.G(ctx).WithFields(log.Fields{
|
|
"image": img.Name(),
|
|
"digest": target.Digest,
|
|
"manifest": target,
|
|
})
|
|
|
|
available, err := img.CheckContentAvailable(ctx)
|
|
if err != nil && !cerrdefs.IsNotFound(err) {
|
|
logger.WithError(err).Warn("checking availability of platform specific manifest failed")
|
|
return nil
|
|
}
|
|
|
|
mfstSummary := imagetypes.ManifestSummary{
|
|
ID: target.Digest.String(),
|
|
Available: available,
|
|
Descriptor: target,
|
|
Kind: imagetypes.ManifestKindUnknown,
|
|
}
|
|
|
|
defer func() {
|
|
summary.Manifests = append(summary.Manifests, mfstSummary)
|
|
}()
|
|
|
|
var contentSize int64
|
|
if err := i.walkPresentChildren(ctx, target, func(ctx context.Context, desc ocispec.Descriptor) error {
|
|
contentSize += desc.Size
|
|
return nil
|
|
}); err == nil {
|
|
mfstSummary.Size.Content = contentSize
|
|
summary.TotalSize += contentSize
|
|
mfstSummary.Size.Total += contentSize
|
|
} else {
|
|
logger.WithError(err).Warn("failed to calculate content size")
|
|
}
|
|
|
|
isPseudo, err := img.IsPseudoImage(ctx)
|
|
|
|
// Ignore not found error as it's expected in case where the image is
|
|
// not fully available. Otherwise, just continue to the next manifest,
|
|
// so we don't error out the whole list in case the error is related to
|
|
// the content itself (e.g. corrupted data) or just manifest kind that
|
|
// we don't know about (yet).
|
|
if err != nil && !cerrdefs.IsNotFound(err) {
|
|
logger.WithError(err).Debug("pseudo image check failed")
|
|
return nil
|
|
}
|
|
|
|
logger = logger.WithField("isPseudo", isPseudo)
|
|
if isPseudo {
|
|
if img.IsAttestation() {
|
|
if s := target.Annotations[attestation.DockerAnnotationReferenceDigest]; s != "" {
|
|
dgst, err := digest.Parse(s)
|
|
if err != nil {
|
|
logger.WithError(err).Warn("failed to parse attestation digest")
|
|
return nil
|
|
}
|
|
|
|
mfstSummary.Kind = imagetypes.ManifestKindAttestation
|
|
mfstSummary.AttestationData = &imagetypes.AttestationProperties{For: dgst}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
mfstSummary.Kind = imagetypes.ManifestKindImage
|
|
mfstSummary.ImageData = &imagetypes.ImageProperties{}
|
|
if target.Platform != nil {
|
|
mfstSummary.ImageData.Platform = *target.Platform
|
|
}
|
|
|
|
var dockerImage dockerspec.DockerOCIImage
|
|
if err := img.ReadConfig(ctx, &dockerImage); err != nil && !cerrdefs.IsNotFound(err) {
|
|
logger.WithError(err).Warn("failed to read image config")
|
|
}
|
|
|
|
if dockerImage.Platform.OS != "" {
|
|
if target.Platform == nil {
|
|
mfstSummary.ImageData.Platform = dockerImage.Platform
|
|
}
|
|
logger = logger.WithField("platform", mfstSummary.ImageData.Platform)
|
|
}
|
|
|
|
if dockerImage.RootFS.DiffIDs != nil {
|
|
chainIDs := identity.ChainIDs(dockerImage.RootFS.DiffIDs)
|
|
|
|
snapshotUsage, err := img.SnapshotUsage(ctx, i.snapshotterService(i.snapshotter))
|
|
if err != nil {
|
|
logger.WithFields(log.Fields{"error": err}).Warn("failed to determine platform specific unpacked size")
|
|
}
|
|
unpackedSize := snapshotUsage.Size
|
|
|
|
mfstSummary.ImageData.Size.Unpacked = unpackedSize
|
|
mfstSummary.Size.Total += unpackedSize
|
|
summary.TotalSize += unpackedSize
|
|
|
|
summary.AllChainIDs = append(summary.AllChainIDs, chainIDs...)
|
|
}
|
|
|
|
for _, c := range i.containers.List() {
|
|
if c.ImageManifest != nil && c.ImageManifest.Digest == target.Digest {
|
|
mfstSummary.ImageData.Containers = append(mfstSummary.ImageData.Containers, c.ID)
|
|
summary.ContainersCount++
|
|
}
|
|
}
|
|
|
|
platform := mfstSummary.ImageData.Platform
|
|
// Filter out platforms that don't match the requested platform. Do it
|
|
// after the size, container count and chainIDs are summed up to have
|
|
// the single combined entry still represent the whole multi-platform
|
|
// image.
|
|
if !platformMatcher.Match(platform) {
|
|
return nil
|
|
}
|
|
|
|
if summary.Best == nil || platformMatcher.Less(platform, summary.BestPlatform) {
|
|
summary.Best = img
|
|
summary.BestPlatform = platform
|
|
}
|
|
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
if errors.Is(err, errNotManifestOrIndex) {
|
|
log.G(ctx).WithFields(log.Fields{
|
|
"error": err,
|
|
"image": img.Name,
|
|
"descriptor": img.Target,
|
|
}).Warn("unexpected image target (neither a manifest nor index)")
|
|
} else {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return &summary, nil
|
|
}
|
|
|
|
// imageSummary returns a summary of the image, including the total size of the image and all its platforms.
|
|
// It also returns the chainIDs of all the layers of the image (including all its platforms).
|
|
// All return values will be nil if the image should be skipped.
|
|
func (i *ImageService) imageSummary(ctx context.Context, img c8dimages.Image, platformMatcher platforms.MatchComparer,
|
|
opts imagebackend.ListOptions, tagsByDigest map[digest.Digest][]string,
|
|
) (*imagetypes.Summary, *multiPlatformSummary, error) {
|
|
summary, err := i.multiPlatformSummary(ctx, img, platformMatcher)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
best := summary.Best
|
|
if best == nil {
|
|
target := img.Target
|
|
return &imagetypes.Summary{
|
|
ID: target.Digest.String(),
|
|
RepoDigests: []string{target.Digest.String()},
|
|
RepoTags: tagsByDigest[target.Digest],
|
|
Size: summary.TotalSize,
|
|
Manifests: summary.Manifests,
|
|
// -1 indicates that the value has not been set (avoids ambiguity
|
|
// between 0 (default) and "not set". We cannot use a pointer (nil)
|
|
// for this, as the JSON representation uses "omitempty", which would
|
|
// consider both "0" and "nil" to be "empty".
|
|
SharedSize: -1,
|
|
Containers: -1,
|
|
Descriptor: &target,
|
|
}, summary, nil
|
|
}
|
|
|
|
image, err := i.singlePlatformImage(ctx, i.content, tagsByDigest[best.RealTarget.Digest], best)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
image.Size = summary.TotalSize
|
|
image.Manifests = summary.Manifests
|
|
target := img.Target
|
|
image.Descriptor = &target
|
|
image.Containers = summary.ContainersCount
|
|
return image, summary, nil
|
|
}
|
|
|
|
func (i *ImageService) singlePlatformImage(ctx context.Context, contentStore content.Store, repoTags []string, imageManifest *ImageManifest) (*imagetypes.Summary, error) {
|
|
var repoDigests []string
|
|
rawImg := imageManifest.Metadata()
|
|
target := rawImg.Target.Digest
|
|
|
|
logger := log.G(ctx).WithFields(log.Fields{
|
|
"name": rawImg.Name,
|
|
"digest": target,
|
|
})
|
|
|
|
ref, err := reference.ParseNamed(rawImg.Name)
|
|
if err != nil {
|
|
// If the image has unexpected name format (not a Named reference or a dangling image)
|
|
// add the offending name to RepoTags but also log an error to make it clear to the
|
|
// administrator that this is unexpected.
|
|
// TODO: Reconsider when containerd is more strict on image names, see:
|
|
// https://github.com/containerd/containerd/issues/7986
|
|
if !isDanglingImage(rawImg) {
|
|
logger.WithError(err).Error("failed to parse image name as reference")
|
|
repoTags = append(repoTags, rawImg.Name)
|
|
}
|
|
} else {
|
|
digested, err := reference.WithDigest(reference.TrimNamed(ref), target)
|
|
if err != nil {
|
|
logger.WithError(err).Error("failed to create digested reference")
|
|
} else {
|
|
repoDigests = append(repoDigests, reference.FamiliarString(digested))
|
|
}
|
|
}
|
|
|
|
var unpackedSize int64
|
|
if snapshotUsage, err := imageManifest.SnapshotUsage(ctx, i.snapshotterService(i.snapshotter)); err != nil {
|
|
log.G(ctx).WithFields(log.Fields{"image": imageManifest.Name(), "error": err}).Warn("failed to calculate unpacked size of image")
|
|
} else {
|
|
unpackedSize = snapshotUsage.Size
|
|
}
|
|
|
|
contentSize, err := imageManifest.PresentContentSize(ctx)
|
|
if err != nil {
|
|
log.G(ctx).WithFields(log.Fields{"image": imageManifest.Name(), "error": err}).Warn("failed to calculate content size of image")
|
|
}
|
|
|
|
// totalSize is the size of the image's packed layers and snapshots
|
|
// (unpacked layers) combined.
|
|
totalSize := contentSize + unpackedSize
|
|
|
|
summary := &imagetypes.Summary{
|
|
ParentID: rawImg.Labels[imageLabelClassicBuilderParent],
|
|
ID: target.String(),
|
|
RepoDigests: repoDigests,
|
|
RepoTags: repoTags,
|
|
Size: totalSize,
|
|
// -1 indicates that the value has not been set (avoids ambiguity
|
|
// between 0 (default) and "not set". We cannot use a pointer (nil)
|
|
// for this, as the JSON representation uses "omitempty", which would
|
|
// consider both "0" and "nil" to be "empty".
|
|
SharedSize: -1,
|
|
Containers: -1,
|
|
}
|
|
|
|
var cfg configLabels
|
|
if err := imageManifest.ReadConfig(ctx, &cfg); err != nil {
|
|
if !cerrdefs.IsNotFound(err) {
|
|
log.G(ctx).WithFields(log.Fields{
|
|
"image": imageManifest.Name(),
|
|
"error": err,
|
|
}).Warn("failed to read image config")
|
|
}
|
|
}
|
|
|
|
if cfg.Created != nil {
|
|
summary.Created = cfg.Created.Unix()
|
|
}
|
|
if cfg.Config.Labels != nil {
|
|
summary.Labels = cfg.Config.Labels
|
|
} else {
|
|
summary.Labels = map[string]string{}
|
|
}
|
|
|
|
return summary, nil
|
|
}
|
|
|
|
type imageFilterFunc func(image c8dimages.Image) bool
|
|
|
|
// setupFilters constructs an imageFilterFunc from the given imageFilters.
|
|
//
|
|
// filterFunc is a function that checks whether given image matches the filters.
|
|
// TODO(thaJeztah): reimplement filters using containerd filters if possible: see https://github.com/moby/moby/issues/43845
|
|
func (i *ImageService) setupFilters(ctx context.Context, imageFilters filters.Args) (filterFunc imageFilterFunc, outErr error) {
|
|
var fltrs []imageFilterFunc
|
|
err := imageFilters.WalkValues("before", func(value string) error {
|
|
img, err := i.GetImage(ctx, value, imagebackend.GetImageOpts{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if img != nil && img.Created != nil {
|
|
fltrs = append(fltrs, func(candidate c8dimages.Image) bool {
|
|
cand, err := i.GetImage(ctx, candidate.Name, imagebackend.GetImageOpts{})
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return cand.Created != nil && cand.Created.Before(*img.Created)
|
|
})
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = imageFilters.WalkValues("since", func(value string) error {
|
|
img, err := i.GetImage(ctx, value, imagebackend.GetImageOpts{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if img != nil && img.Created != nil {
|
|
fltrs = append(fltrs, func(candidate c8dimages.Image) bool {
|
|
cand, err := i.GetImage(ctx, candidate.Name, imagebackend.GetImageOpts{})
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return cand.Created != nil && cand.Created.After(*img.Created)
|
|
})
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = imageFilters.WalkValues("until", func(value string) error {
|
|
ts, err := timestamp.GetTimestamp(value, time.Now())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
seconds, nanoseconds, err := timestamp.ParseTimestamps(ts, 0)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
until := time.Unix(seconds, nanoseconds)
|
|
|
|
fltrs = append(fltrs, func(image c8dimages.Image) bool {
|
|
created := image.CreatedAt
|
|
return created.Before(until)
|
|
})
|
|
return err
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
labelFn, err := setupLabelFilter(ctx, i.content, imageFilters)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if labelFn != nil {
|
|
fltrs = append(fltrs, labelFn)
|
|
}
|
|
|
|
if imageFilters.Contains("dangling") {
|
|
danglingValue, err := imageFilters.GetBoolOrDefault("dangling", false)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
fltrs = append(fltrs, func(image c8dimages.Image) bool {
|
|
return danglingValue == isDanglingImage(image)
|
|
})
|
|
}
|
|
|
|
if refs := imageFilters.Get("reference"); len(refs) != 0 {
|
|
fltrs = append(fltrs, func(image c8dimages.Image) bool {
|
|
ref, err := reference.ParseNormalizedNamed(image.Name)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
for _, value := range refs {
|
|
found, err := reference.FamiliarMatch(value, ref)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
if found {
|
|
return found
|
|
}
|
|
}
|
|
return false
|
|
})
|
|
}
|
|
|
|
return func(image c8dimages.Image) bool {
|
|
for _, filter := range fltrs {
|
|
if !filter(image) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}, nil
|
|
}
|
|
|
|
// setupLabelFilter parses filter args for "label" and "label!" and returns a
|
|
// filter func which will check if any image config from the given image has
|
|
// labels that match given predicates.
|
|
func setupLabelFilter(ctx context.Context, store content.Store, fltrs filters.Args) (func(image c8dimages.Image) bool, error) {
|
|
type labelCheck struct {
|
|
key string
|
|
value string
|
|
onlyExists bool
|
|
negate bool
|
|
}
|
|
|
|
var checks []labelCheck
|
|
for _, fltrName := range []string{"label", "label!"} {
|
|
for _, l := range fltrs.Get(fltrName) {
|
|
k, v, found := strings.Cut(l, "=")
|
|
err := labels.Validate(k, v)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
negate := strings.HasSuffix(fltrName, "!")
|
|
|
|
// If filter value is key!=value then flip the above.
|
|
if before, ok := strings.CutSuffix(k, "!"); ok {
|
|
k = before
|
|
negate = !negate
|
|
}
|
|
|
|
checks = append(checks, labelCheck{
|
|
key: k,
|
|
value: v,
|
|
onlyExists: !found,
|
|
negate: negate,
|
|
})
|
|
}
|
|
}
|
|
|
|
if len(checks) == 0 {
|
|
return nil, nil
|
|
}
|
|
|
|
return func(image c8dimages.Image) bool {
|
|
// This is not an error, but a signal to Dispatch that it should stop
|
|
// processing more content (otherwise it will run for all children).
|
|
// It will be returned once a matching config is found.
|
|
errFoundConfig := errors.New("success, found matching config")
|
|
|
|
err := c8dimages.Dispatch(ctx, presentChildrenHandler(store, c8dimages.HandlerFunc(func(ctx context.Context, desc ocispec.Descriptor) (subdescs []ocispec.Descriptor, _ error) {
|
|
if !c8dimages.IsConfigType(desc.MediaType) {
|
|
return nil, nil
|
|
}
|
|
var cfg configLabels
|
|
if err := readJSON(ctx, store, desc, &cfg); err != nil {
|
|
if cerrdefs.IsNotFound(err) {
|
|
return nil, nil
|
|
}
|
|
return nil, err
|
|
}
|
|
|
|
for _, check := range checks {
|
|
value, exists := cfg.Config.Labels[check.key]
|
|
|
|
if check.onlyExists {
|
|
// label! given without value, check if doesn't exist
|
|
if check.negate {
|
|
// Label exists, config doesn't match
|
|
if exists {
|
|
return nil, nil
|
|
}
|
|
} else {
|
|
// Label should exist
|
|
if !exists {
|
|
// Label doesn't exist, config doesn't match
|
|
return nil, nil
|
|
}
|
|
}
|
|
continue
|
|
} else if !exists {
|
|
// We are checking value and label doesn't exist.
|
|
return nil, nil
|
|
}
|
|
|
|
valueEquals := value == check.value
|
|
if valueEquals == check.negate {
|
|
return nil, nil
|
|
}
|
|
}
|
|
|
|
// This config matches the filter so we need to shop this image, stop dispatch.
|
|
return nil, errFoundConfig
|
|
})), nil, image.Target)
|
|
|
|
if errors.Is(err, errFoundConfig) {
|
|
return true
|
|
}
|
|
if err != nil {
|
|
log.G(ctx).WithFields(log.Fields{
|
|
"error": err,
|
|
"image": image.Name,
|
|
"checks": checks,
|
|
}).Error("failed to check image labels")
|
|
}
|
|
|
|
return false
|
|
}, nil
|
|
}
|
|
|
|
func computeSharedSize(chainIDs []digest.Digest, layers map[digest.Digest]int, sizeFn func(d digest.Digest) (int64, error)) (int64, error) {
|
|
var sharedSize int64
|
|
for _, chainID := range chainIDs {
|
|
if layers[chainID] == 1 {
|
|
continue
|
|
}
|
|
size, err := sizeFn(chainID)
|
|
if err != nil {
|
|
// Several images might share the same layer and neither of them
|
|
// might be unpacked (for example if it's a non-host platform).
|
|
if cerrdefs.IsNotFound(err) {
|
|
continue
|
|
}
|
|
return 0, err
|
|
}
|
|
sharedSize += size
|
|
}
|
|
return sharedSize, nil
|
|
}
|
|
|
|
// readJSON reads content pointed by the descriptor and unmarshals it into a specified output.
|
|
func readJSON(ctx context.Context, store content.Provider, desc ocispec.Descriptor, out any) error {
|
|
data, err := content.ReadBlob(ctx, store, desc)
|
|
if err != nil {
|
|
err = errors.Wrapf(err, "failed to read config content")
|
|
if cerrdefs.IsNotFound(err) {
|
|
return errdefs.NotFound(err)
|
|
}
|
|
return err
|
|
}
|
|
|
|
err = json.Unmarshal(data, out)
|
|
if err != nil {
|
|
err = errors.Wrapf(err, "could not deserialize image config")
|
|
if cerrdefs.IsNotFound(err) {
|
|
return errdefs.NotFound(err)
|
|
}
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|