Skip to content

Commit f3d6483

Browse files
authored
return full entryID on HTTP 409 responses (#1650)
Signed-off-by: Bob Callaway <[email protected]>
1 parent 2934605 commit f3d6483

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

pkg/api/entries.go

+9-2
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,15 @@ func createLogEntry(params entries.CreateLogEntryParams) (models.LogEntry, middl
206206
case int32(code.Code_OK):
207207
case int32(code.Code_ALREADY_EXISTS), int32(code.Code_FAILED_PRECONDITION):
208208
existingUUID := hex.EncodeToString(rfc6962.DefaultHasher.HashLeaf(leaf))
209-
err := fmt.Errorf("grpc error: %v", insertionStatus.String())
210-
return nil, handleRekorAPIError(params, http.StatusConflict, err, fmt.Sprintf(entryAlreadyExists, existingUUID), "entryURL", getEntryURL(*params.HTTPRequest.URL, existingUUID))
209+
activeTree := fmt.Sprintf("%x", api.logID)
210+
entryIDstruct, err := sharding.CreateEntryIDFromParts(activeTree, existingUUID)
211+
if err != nil {
212+
err := fmt.Errorf("error creating EntryID from active treeID %v and uuid %v: %w", activeTree, existingUUID, err)
213+
return nil, handleRekorAPIError(params, http.StatusInternalServerError, err, fmt.Sprintf(validationError, err))
214+
}
215+
existingEntryID := entryIDstruct.ReturnEntryIDString()
216+
err = fmt.Errorf("grpc error: %v", insertionStatus.String())
217+
return nil, handleRekorAPIError(params, http.StatusConflict, err, fmt.Sprintf(entryAlreadyExists, existingEntryID), "entryURL", getEntryURL(*params.HTTPRequest.URL, existingEntryID))
211218
default:
212219
err := fmt.Errorf("grpc error: %v", insertionStatus.String())
213220
return nil, handleRekorAPIError(params, http.StatusInternalServerError, err, trillianUnexpectedResult)

pkg/types/intoto/e2e_test.go

+7
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ import (
4242
slsa "github.com/in-toto/in-toto-golang/in_toto/slsa_provenance/v0.2"
4343
"github.com/secure-systems-lab/go-securesystemslib/dsse"
4444
"github.com/sigstore/rekor/pkg/generated/models"
45+
"github.com/sigstore/rekor/pkg/sharding"
4546
"github.com/sigstore/rekor/pkg/types"
4647
"github.com/sigstore/sigstore/pkg/signature"
4748

@@ -161,7 +162,13 @@ func TestIntoto(t *testing.T) {
161162

162163
out = util.RunCli(t, "upload", "--artifact", attestationPath, "--type", "intoto", "--public-key", pubKeyPath)
163164
util.OutputContains(t, out, "Entry already exists")
165+
// issue1649 check for full UUID in printed Location value from 409 response header
166+
if len(uuid) != sharding.EntryIDHexStringLen {
167+
t.Fatal("UUID returned instead of entry ID (includes treeID)")
168+
}
169+
util.OutputContains(t, out, uuid)
164170
}
171+
165172
func TestIntotoMultiSig(t *testing.T) {
166173
td := t.TempDir()
167174
attestationPath := filepath.Join(td, "attestation.json")

0 commit comments

Comments
 (0)