Skip to content

Commit 0d63631

Browse files
handle the JSON decoding path
Signed-off-by: Thomas Fossati <[email protected]>
1 parent dc007e7 commit 0d63631

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

platform/claims_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ func Test_CCAPlatform_UnmarshalJSON_negatives(t *testing.T) {
293293
/* 12 */ "testvectors/json/test-instance-id-invalid.json",
294294
/* 13 */ "testvectors/json/test-config-missing.json",
295295
/* 14 */ "testvectors/json/test-hash-algid-missing.json",
296+
/* 15 */ "testvectors/json/test-invalid-psa-claims.json",
296297
}
297298

298299
for i, fn := range tvs {
@@ -385,7 +386,6 @@ func Test_DecodeUnvalidatedJSONCCAClaims(t *testing.T) {
385386

386387
// invalid
387388
{"testvectors/json/test-no-sw-components.json", &Claims{}},
388-
{"testvectors/json/test-invalid-profile.json", &Claims{}},
389389
{"testvectors/json/test-invalid-psa-claims.json", &Claims{}},
390390
}
391391

@@ -395,7 +395,7 @@ func Test_DecodeUnvalidatedJSONCCAClaims(t *testing.T) {
395395

396396
v, err := DecodeClaimsFromJSON(buf)
397397

398-
assert.NoError(t, err)
398+
require.NoError(t, err)
399399
assert.IsType(t, tv.Expected, v)
400400
}
401401
}

platform/iclaims.go

+15-5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ package platform
55

66
import (
77
"encoding/json"
8+
"errors"
89
"fmt"
910

1011
"github.com/veraison/psatoken"
@@ -61,7 +62,12 @@ func DecodeClaimsFromCBOR(buf []byte) (IClaims, error) {
6162
return nil, err
6263
}
6364

64-
return i.(IClaims), nil
65+
ic, ok := i.(IClaims)
66+
if !ok {
67+
return nil, errors.New("not a CCA platform token")
68+
}
69+
70+
return ic, nil
6571
}
6672

6773
// DecodeAndValidateClaimsFromJSON unmarshals and validates CCA platform claims
@@ -81,13 +87,17 @@ func DecodeAndValidateClaimsFromJSON(buf []byte) (IClaims, error) {
8187

8288
// DecodeClaimsFromJSON unmarshals CCA platform claims from provided JSON buf.
8389
func DecodeClaimsFromJSON(buf []byte) (IClaims, error) {
84-
cl := NewClaims()
85-
86-
if err := json.Unmarshal(buf, cl); err != nil {
90+
i, err := psatoken.DecodeClaimsFromJSON(buf)
91+
if err != nil {
8792
return nil, err
8893
}
8994

90-
return cl, nil
95+
ic, ok := i.(IClaims)
96+
if !ok {
97+
return nil, errors.New("not a (JSON-encoded) CCA platform token")
98+
}
99+
100+
return ic, nil
91101
}
92102

93103
// ValidateAndEncodeClaimsToCBOR validates and then marshals CCA platform claims

platform/testvectors/json/test-invalid-psa-claims.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"cca-platform-profile": "http://arm.com/PSA-SSD/1.0.0",
2+
"cca-platform-profile": "http://arm.com/CCA-SSD/1.0.0",
33
"cca-platform-challenge": "AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE=",
44
"cca-platform-instance-id": "AQICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC",
55
"psa-implementation-id": "AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyA=",

0 commit comments

Comments
 (0)