Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't produce unnecessary logs when encountering attestations #11327

Merged
merged 2 commits into from
Mar 8, 2025

Conversation

vvoland
Copy link
Contributor

@vvoland vvoland commented Jan 31, 2025

Fix unnecessary log spam when dealing with BuildKit images containing attestation manifests.

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.

core/remotes: Handle attestations in MakeRefKey

Don't produce reference for unknown type: application/vnd.in-toto+json warning logs when pushing/fetching an image containing the attestation manifests.

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]>
Don't produce `reference for unknown type: application/vnd.in-toto+json`
warning logs when pushing/fetching an image containing the attestation
manifests.

Signed-off-by: Paweł Gronowski <[email protected]>
@k8s-ci-robot
Copy link

Hi @vvoland. Thanks for your PR.

I'm waiting for a containerd member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@AkihiroSuda AkihiroSuda added cherry-pick/1.6.x Change to be cherry picked to release/1.6 branch cherry-pick/1.7.x Change to be cherry picked to release/1.7 branch cherry-pick/2.0.x Change to be cherry picked to release/2.0 branch labels Feb 7, 2025
@estesp
Copy link
Member

estesp commented Feb 7, 2025

This change LGTM, but I wonder if we also need to consider filtering out attestations at the layer "above" the in-toto media type? In the image index, each platform architecture (which is up to 5-7 for many official DockerHub images) has an additional OCI image manifest entry using the standard OCI media type, that, when descended to in this code, will add the config object and the "layers" to the array of children. This PR is filtering out logging of those "layers" which are what actually contain the in toto media type.

Maybe this concern is for a follow-up PR, but if we just filtered out the "dummy" manifests that included in-toto attestations that would keep this code from even doing all that fetching and parsing when it is only going to find in-toto objects as the leaves of that target "dummy" manifest.

For clarity, here is a snippet of the alpine:latest image on DockerHub's list of manifests in the image index; as noted above every entry for a platform also has this image manifest with a specific annotation: "vnd.docker.reference.type" : "attestation-manifest"

{
         "annotations" : {
            "com.docker.official-images.bashbrew.arch" : "amd64",
            "vnd.docker.reference.digest" : "sha256:483f502c0e6aff6d80a807f25d3f88afa40439c29fdd2d21a0912e0f42db842a",
            "vnd.docker.reference.type" : "attestation-manifest"
         },
         "digest" : "sha256:dbfa325a01bb58ad0d54ec0a8041d98329109fd99286e45b36e2dbf9ed407c41",
         "mediaType" : "application/vnd.oci.image.manifest.v1+json",
         "platform" : {
            "architecture" : "unknown",
            "os" : "unknown"
         },
         "size" : 838
      },

@vvoland
Copy link
Contributor Author

vvoland commented Feb 11, 2025

if we just filtered out the "dummy" manifests that included in-toto attestations that would keep this code from even doing all that fetching and parsing when it is only going to find in-toto objects as the leaves of that target "dummy" manifest.

Wouldn't it be too much though? They are still children of that manifests, so I would expect the Children function to also return them if I call it on a manifest list containing attestation manifests.

@vvoland
Copy link
Contributor Author

vvoland commented Mar 4, 2025

Bump, I think this one is ready to be merged :)

@djdongjin
Copy link
Member

ping @estesp @AkihiroSuda can we add this to merge queue? thank you!

@estesp estesp added this pull request to the merge queue Mar 7, 2025
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Mar 7, 2025
Copy link
Member

@cpuguy83 cpuguy83 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could also use filtering for spdx.

@AkihiroSuda AkihiroSuda added this pull request to the merge queue Mar 8, 2025
Merged via the queue into containerd:main with commit 618a832 Mar 8, 2025
56 checks passed
@dmcgowan
Copy link
Member

/cherry-pick release/1.6
/cherry-pick release/1.7
/cherry-pick release/2.0

@k8s-infra-cherrypick-robot

@dmcgowan: #11327 failed to apply on top of branch "release/1.6":

Applying: core/images: Ignore attestations when traversing children
Using index info to reconstruct a base tree...
A	core/images/image.go
A	core/images/mediatypes.go
Falling back to patching base and 3-way merge...
Auto-merging images/mediatypes.go
Auto-merging images/image.go
CONFLICT (content): Merge conflict in images/image.go
error: Failed to merge in the changes.
hint: Use 'git am --show-current-patch=diff' to see the failed patch
hint: When you have resolved this problem, run "git am --continue".
hint: If you prefer to skip this patch, run "git am --skip" instead.
hint: To restore the original branch and stop patching, run "git am --abort".
hint: Disable this message with "git config advice.mergeConflict false"
Patch failed at 0001 core/images: Ignore attestations when traversing children

In response to this:

/cherry-pick release/1.6
/cherry-pick release/1.7
/cherry-pick release/2.0

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@dmcgowan
Copy link
Member

/cherry-pick release/2.0

@dmcgowan
Copy link
Member

Of course 1.6 and 1.7 will have to be manual cherry-pick

@k8s-infra-cherrypick-robot

@dmcgowan: new pull request created: #11537

In response to this:

/cherry-pick release/2.0

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cherry-pick/1.6.x Change to be cherry picked to release/1.6 branch cherry-pick/1.7.x Change to be cherry picked to release/1.7 branch cherry-pick/2.0.x Change to be cherry picked to release/2.0 branch needs-ok-to-test size/S
Projects
Development

Successfully merging this pull request may close these issues.

c8d: docker images / docker image ls spams debug logs with "unknown type application/vnd.in-toto+json"
8 participants