Skip to content

Commit e751b6b

Browse files
committed
core/images: Ignore attestations when traversing children
Before this patch, calling `image.Children` on an image built with BuildKit would produce unnecessary `encountered unknown type application/vnd.in-toto+json; children may not be fetched` debug logs, because the media type is neither a known layer or config type. Make the `image.Children` aware of the attestation layers and don't attempt to traverse them. Signed-off-by: Paweł Gronowski <[email protected]>
1 parent 2633eb5 commit e751b6b

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

core/images/image.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -369,8 +369,8 @@ func Children(ctx context.Context, provider content.Provider, desc ocispec.Descr
369369
}
370370

371371
return append([]ocispec.Descriptor{}, index.Manifests...), nil
372-
} else if !IsLayerType(desc.MediaType) && !IsKnownConfig(desc.MediaType) {
373-
// Layers and configs are childless data types and should not be logged.
372+
} else if !IsLayerType(desc.MediaType) && !IsKnownConfig(desc.MediaType) && !IsAttestationType(desc.MediaType) {
373+
// Layers, configs, and attestations are childless data types and should not be logged.
374374
log.G(ctx).Debugf("encountered unknown type %v; children may not be fetched", desc.MediaType)
375375
}
376376
return nil, nil

core/images/mediatypes.go

+13
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ const (
5858

5959
MediaTypeImageLayerEncrypted = ocispec.MediaTypeImageLayer + "+encrypted"
6060
MediaTypeImageLayerGzipEncrypted = ocispec.MediaTypeImageLayerGzip + "+encrypted"
61+
62+
// In-toto attestation
63+
MediaTypeInToto = "application/vnd.in-toto+json"
6164
)
6265

6366
// DiffCompression returns the compression as defined by the layer diff media
@@ -193,6 +196,16 @@ func IsKnownConfig(mt string) bool {
193196
return false
194197
}
195198

199+
// IsAttestationType returns true if the media type is an attestation type
200+
func IsAttestationType(mt string) bool {
201+
switch mt {
202+
case MediaTypeInToto:
203+
return true
204+
default:
205+
return false
206+
}
207+
}
208+
196209
// ChildGCLabels returns the label for a given descriptor to reference it
197210
func ChildGCLabels(desc ocispec.Descriptor) []string {
198211
mt := desc.MediaType

0 commit comments

Comments
 (0)