Skip to content

Commit

Permalink
Init entity from ociremote when signing a digest ref
Browse files Browse the repository at this point in the history
This commit modifies the object used to seed the SignedEntity used
when signing a digest reference to fix a bug where cosign would wipe
out all signatures from the manifest (and not garbage-collecting
previous signature layers)

Before the entity was created from a `ociempty.SignedImage`. This
cuased cosign to always wipe any previous signatures attached to the
image.

Now, cosign el init the entity from a `ociremote.SignedEntity` which
will append new signatures to any existing ones.

Signed-off-by: Adolfo García Veytia (Puerco) <[email protected]>
  • Loading branch information
puerco committed Mar 16, 2022
1 parent a60fd71 commit 2c2e074
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cmd/cosign/cli/sign/sign.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ import (
"github.com/sigstore/cosign/pkg/cosign/pkcs11key"
cremote "github.com/sigstore/cosign/pkg/cosign/remote"
"github.com/sigstore/cosign/pkg/oci"
ociempty "github.com/sigstore/cosign/pkg/oci/empty"
"github.com/sigstore/cosign/pkg/oci/mutate"
ociremote "github.com/sigstore/cosign/pkg/oci/remote"
"github.com/sigstore/cosign/pkg/oci/walk"
Expand Down Expand Up @@ -147,7 +146,7 @@ func SignCmd(ro *options.RootOptions, ko KeyOpts, regOpts options.RegistryOption
}

if digest, ok := ref.(name.Digest); ok && !recursive {
se, err := ociempty.SignedImage(ref)
se, err := ociremote.SignedEntity(ref, opts...)
if err != nil {
return errors.Wrap(err, "accessing image")
}
Expand Down

0 comments on commit 2c2e074

Please sign in to comment.