Skip to content

Commit 18b4708

Browse files
committed
refactor: align realm claims with profiles
Refactor realm claims to align with PSA token profile definitions and to allow them to be potentially extended in an analogous way via CCA profiles. - Use psatoken.IClaimsBase to define realm.IClaims. This exposes operations common to all claims objects, namely marshalling and validation. - Expose previously internal realm.validate() as realm.ValidateClaims(). This will help with implementing profiles that do not embed the original claims structure. - Expose individual claim field validators and rename them from isValidXXX (which implies a boolean return) to ValidateXXX. This will be useful if, e.g., client code wants to make sure a hash is a valid realm challenge without needing a claims structure. - Reuse errors defined inside psatoken, rather then re-defining them for realm claims. Errors such as "syntax error" or "missing mandatory claims" are in effect part of the generic IClaimsBase interface (i.e. common to all profile-able claims objects). - Do not use json tags inside error messages, as they may be different for profiles that implement their own claims without embedding existing ones. - Some minor stylistic tidying (consistent spacing, etc). Signed-off-by: Sergei Trofimov <[email protected]>
1 parent 9849f1f commit 18b4708

File tree

6 files changed

+99
-127
lines changed

6 files changed

+99
-127
lines changed

evidence_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ func TestEvidence_SetClaims_invalid_realm(t *testing.T) {
448448
err = incompleteRealmClaims.SetPubKeyHashAlgID("sha-256")
449449
require.NoError(t, err)
450450

451-
expectedErr := "validation of cca-realm-claims failed: validating cca-realm-challenge claim: missing mandatory claim"
451+
expectedErr := "validation of cca-realm-claims failed: validating realm challenge claim: missing mandatory claim"
452452

453453
var e Evidence
454454

realm/claims.go

+35-33
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"fmt"
77

88
"github.com/veraison/eat"
9+
"github.com/veraison/psatoken"
910
)
1011

1112
type Claims struct {
@@ -21,7 +22,7 @@ type Claims struct {
2122
// Setters
2223

2324
func (c *Claims) SetChallenge(v []byte) error {
24-
if err := isValidChallenge(v); err != nil {
25+
if err := ValidateChallenge(v); err != nil {
2526
return err
2627
}
2728

@@ -35,7 +36,7 @@ func (c *Claims) SetChallenge(v []byte) error {
3536
}
3637

3738
func (c *Claims) SetPersonalizationValue(v []byte) error {
38-
if err := isValidPersonalizationValue(v); err != nil {
39+
if err := ValidatePersonalizationValue(v); err != nil {
3940
return err
4041
}
4142

@@ -44,7 +45,7 @@ func (c *Claims) SetPersonalizationValue(v []byte) error {
4445
}
4546

4647
func (c *Claims) SetInitialMeasurement(v []byte) error {
47-
if err := isValidRealmMeas(v); err != nil {
48+
if err := ValidateRealmMeas(v); err != nil {
4849
return err
4950
}
5051

@@ -53,7 +54,7 @@ func (c *Claims) SetInitialMeasurement(v []byte) error {
5354
}
5455

5556
func (c *Claims) SetExtensibleMeasurements(v [][]byte) error {
56-
if err := isValidExtensibleMeas(v); err != nil {
57+
if err := ValidateExtensibleMeas(v); err != nil {
5758
return err
5859
}
5960

@@ -62,7 +63,7 @@ func (c *Claims) SetExtensibleMeasurements(v [][]byte) error {
6263
}
6364

6465
func (c *Claims) SetHashAlgID(v string) error {
65-
if err := isValidHashAlgID(v); err != nil {
66+
if err := ValidateHashAlgID(v); err != nil {
6667
return err
6768
}
6869

@@ -71,7 +72,7 @@ func (c *Claims) SetHashAlgID(v string) error {
7172
}
7273

7374
func (c *Claims) SetPubKey(v []byte) error {
74-
if err := isValidRealmPubKey(v); err != nil {
75+
if err := ValidateRealmPubKey(v); err != nil {
7576
return err
7677
}
7778

@@ -81,7 +82,7 @@ func (c *Claims) SetPubKey(v []byte) error {
8182

8283
func (c *Claims) SetPubKeyHashAlgID(v string) error {
8384
if v == "" {
84-
return fmt.Errorf("invalid null string set for cca-realm-pubkey-hash-algo-id")
85+
return fmt.Errorf("invalid null string set for realm pubkey hash alg ID")
8586
}
8687

8788
c.PublicKeyHashAlgID = &v
@@ -91,65 +92,69 @@ func (c *Claims) SetPubKeyHashAlgID(v string) error {
9192
// Getters
9293
func (c Claims) GetChallenge() ([]byte, error) {
9394
v := c.Challenge
94-
9595
if v == nil {
96-
return nil, ErrMandatoryClaimMissing
96+
return nil, psatoken.ErrMandatoryClaimMissing
9797
}
9898

9999
l := v.Len()
100-
101100
if l != 1 {
102-
return nil, fmt.Errorf("%w: got %d nonces, want 1", ErrWrongClaimSyntax, l)
101+
return nil, fmt.Errorf("%w: got %d nonces, want 1", psatoken.ErrWrongSyntax, l)
103102
}
104103

105104
n := v.GetI(0)
106-
if err := isValidChallenge(n); err != nil {
105+
if err := ValidateChallenge(n); err != nil {
107106
return nil, err
108107
}
108+
109109
return n, nil
110110
}
111111

112112
func (c Claims) GetPersonalizationValue() ([]byte, error) {
113113
v := c.PersonalizationValue
114114

115115
if v == nil {
116-
return nil, ErrMandatoryClaimMissing
116+
return nil, psatoken.ErrMandatoryClaimMissing
117117
}
118-
if err := isValidPersonalizationValue(*v); err != nil {
118+
119+
if err := ValidatePersonalizationValue(*v); err != nil {
119120
return nil, err
120121
}
122+
121123
return *v, nil
122124
}
123125

124126
func (c Claims) GetInitialMeasurement() ([]byte, error) {
125-
126127
v := c.InitialMeasurement
127128
if v == nil {
128-
return nil, ErrMandatoryClaimMissing
129+
return nil, psatoken.ErrMandatoryClaimMissing
129130
}
130-
if err := isValidRealmMeas(*v); err != nil {
131+
132+
if err := ValidateRealmMeas(*v); err != nil {
131133
return nil, err
132134
}
135+
133136
return *v, nil
134137
}
135138

136139
func (c Claims) GetExtensibleMeasurements() ([][]byte, error) {
137140
v := c.ExtensibleMeasurements
138141
if v == nil {
139-
return nil, ErrMandatoryClaimMissing
142+
return nil, psatoken.ErrMandatoryClaimMissing
140143
}
141-
if err := isValidExtensibleMeas(*v); err != nil {
144+
145+
if err := ValidateExtensibleMeas(*v); err != nil {
142146
return nil, err
143147
}
148+
144149
return *v, nil
145150
}
146151

147152
func (c Claims) GetHashAlgID() (string, error) {
148153
v := c.HashAlgID
149154
if v == nil {
150-
return "", ErrMandatoryClaimMissing
155+
return "", psatoken.ErrMandatoryClaimMissing
151156
}
152-
if err := isValidHashAlgID(*v); err != nil {
157+
if err := ValidateHashAlgID(*v); err != nil {
153158
return "", err
154159
}
155160
return *v, nil
@@ -159,10 +164,10 @@ func (c Claims) GetPubKey() ([]byte, error) {
159164
v := c.PublicKey
160165

161166
if v == nil {
162-
return nil, ErrMandatoryClaimMissing
167+
return nil, psatoken.ErrMandatoryClaimMissing
163168
}
164169

165-
if err := isValidRealmPubKey(*v); err != nil {
170+
if err := ValidateRealmPubKey(*v); err != nil {
166171
return nil, err
167172
}
168173

@@ -173,14 +178,15 @@ func (c Claims) GetPubKeyHashAlgID() (string, error) {
173178
v := c.PublicKeyHashAlgID
174179

175180
if v == nil {
176-
return "", ErrMandatoryClaimMissing
181+
return "", psatoken.ErrMandatoryClaimMissing
177182
}
183+
178184
return *v, nil
179185
}
180186

181187
// Semantic validation
182188
func (c Claims) Validate() error {
183-
return validate(&c)
189+
return ValidateClaims(&c)
184190
}
185191

186192
// Codecs
@@ -227,31 +233,27 @@ func (c Claims) ToUnvalidatedCBOR() ([]byte, error) {
227233
}
228234

229235
func (c *Claims) FromJSON(buf []byte) error {
230-
err := c.FromUnvalidatedJSON(buf)
231-
if err != nil {
236+
if err := c.FromUnvalidatedJSON(buf); err != nil {
232237
return err
233238
}
234239

235-
err = c.Validate()
236-
if err != nil {
240+
if err := c.Validate(); err != nil {
237241
return fmt.Errorf("validation of CCA realm claims failed: %w", err)
238242
}
239243

240244
return nil
241245
}
242246

243247
func (c *Claims) FromUnvalidatedJSON(buf []byte) error {
244-
err := json.Unmarshal(buf, c)
245-
if err != nil {
248+
if err := json.Unmarshal(buf, c); err != nil {
246249
return fmt.Errorf("JSON decoding of CCA realm claims failed: %w", err)
247250
}
248251

249252
return nil
250253
}
251254

252255
func (c Claims) ToJSON() ([]byte, error) {
253-
err := c.Validate()
254-
if err != nil {
256+
if err := c.Validate(); err != nil {
255257
return nil, fmt.Errorf("validation of CCA realm claims failed: %w", err)
256258
}
257259

realm/claims_test.go

+14-14
Original file line numberDiff line numberDiff line change
@@ -46,27 +46,27 @@ func Test_CcaRealmClaims_Set_nok(t *testing.T) {
4646
c := NewClaims()
4747

4848
err := c.SetChallenge([]byte("123"))
49-
expectedErr := "wrong syntax for claim: length 3 (cca-hash-type MUST be 64 bytes)"
49+
expectedErr := "wrong syntax: length 3 (hash MUST be 64 bytes)"
5050
assert.EqualError(t, err, expectedErr)
5151

5252
err = c.SetPersonalizationValue([]byte("personalizationVal"))
53-
expectedErr = "wrong syntax for claim: length 18 (cca-personalization-value MUST be 64 bytes)"
53+
expectedErr = "wrong syntax: length 18 (personalization value MUST be 64 bytes)"
5454
assert.EqualError(t, err, expectedErr)
5555

5656
err = c.SetInitialMeasurement([]byte("random"))
57-
expectedErr = "wrong syntax for claim: length 6 (cca-realm-measurement MUST be 32, 48 or 64 bytes)"
57+
expectedErr = "wrong syntax: length 6 (realm measurement MUST be 32, 48 or 64 bytes)"
5858
assert.EqualError(t, err, expectedErr)
5959

6060
err = c.SetExtensibleMeasurements([][]byte{})
61-
expectedErr = "missing mandatory claim cca-realm-extended-measurements"
61+
expectedErr = "missing mandatory claim realm extended measurements"
6262
assert.EqualError(t, err, expectedErr)
6363

6464
err = c.SetHashAlgID("")
65-
expectedErr = "wrong syntax for claim: empty string"
65+
expectedErr = "wrong syntax: empty string"
6666
assert.EqualError(t, err, expectedErr)
6767

6868
err = c.SetPubKey([]byte("not-a-valid-point"))
69-
expectedErr = "wrong syntax for claim: length 17 (cca-realm-public-key MUST be 97 bytes)"
69+
expectedErr = "wrong syntax: length 17 (realm public key MUST be 97 bytes)"
7070
assert.EqualError(t, err, expectedErr)
7171

7272
err = c.SetPubKey([]byte{
@@ -80,19 +80,19 @@ func Test_CcaRealmClaims_Set_nok(t *testing.T) {
8080
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
8181
0xff,
8282
})
83-
expectedErr = "wrong syntax for claim: checking raw public key coordinates are on curve P-384: failed to unmarshal elliptic curve point"
83+
expectedErr = "wrong syntax: checking raw public key coordinates are on curve P-384: failed to unmarshal elliptic curve point"
8484
assert.EqualError(t, err, expectedErr)
8585

8686
err = c.SetPubKeyHashAlgID("")
87-
expectedErr = "invalid null string set for cca-realm-pubkey-hash-algo-id"
87+
expectedErr = "invalid null string set for realm pubkey hash alg ID"
8888
assert.EqualError(t, err, expectedErr)
8989
}
9090

9191
func Test_CcaRealmClaims_ToCBOR_invalid(t *testing.T) {
9292
c := NewClaims()
9393

9494
_, err := c.ToCBOR()
95-
expectedErr := `validation of CCA realm claims failed: validating cca-realm-challenge claim: missing mandatory claim`
95+
expectedErr := `validation of CCA realm claims failed: validating realm challenge claim: missing mandatory claim`
9696
assert.EqualError(t, err, expectedErr)
9797
}
9898

@@ -160,36 +160,36 @@ func Test_CcaRealmClaims_FromCBOR_bad_input(t *testing.T) {
160160
func Test_CcaRealmClaims_FromCBOR_missing_mandatory_claims(t *testing.T) {
161161
buf := mustHexDecode(t, testEncodedCcaRealmClaimsMissingMandNonce)
162162

163-
expectedErr := "validation of CCA realm claims failed: validating cca-realm-challenge claim: missing mandatory claim"
163+
expectedErr := "validation of CCA realm claims failed: validating realm challenge claim: missing mandatory claim"
164164

165165
var c Claims
166166
err := c.FromCBOR(buf)
167167
assert.EqualError(t, err, expectedErr)
168168

169169
buf = mustHexDecode(t, testEncodedCcaClaimsMissingMandInitialMeas)
170170

171-
expectedErr = "validation of CCA realm claims failed: validating cca-realm-initial-measurements claim: missing mandatory claim"
171+
expectedErr = "validation of CCA realm claims failed: validating realm initial measurements claim: missing mandatory claim"
172172
c = Claims{}
173173
err = c.FromCBOR(buf)
174174
assert.EqualError(t, err, expectedErr)
175175

176176
buf = mustHexDecode(t, testEncodedCcaClaimsMissingMandHashAlgID)
177177

178-
expectedErr = "validation of CCA realm claims failed: validating cca-realm-hash-alg-id claim: missing mandatory claim"
178+
expectedErr = "validation of CCA realm claims failed: validating realm hash alg ID claim: missing mandatory claim"
179179
c = Claims{}
180180
err = c.FromCBOR(buf)
181181
assert.EqualError(t, err, expectedErr)
182182

183183
buf = mustHexDecode(t, testEncodedCcaClaimsMissingMandPubKey)
184184

185-
expectedErr = "validation of CCA realm claims failed: validating cca-realm-public-key claim: missing mandatory claim"
185+
expectedErr = "validation of CCA realm claims failed: validating realm public key claim: missing mandatory claim"
186186
c = Claims{}
187187
err = c.FromCBOR(buf)
188188
assert.EqualError(t, err, expectedErr)
189189

190190
buf = mustHexDecode(t, testEncodedCcaClaimsMissingMandExtendedMeas)
191191

192-
expectedErr = "validation of CCA realm claims failed: validating cca-realm-extended-measurements claim: missing mandatory claim"
192+
expectedErr = "validation of CCA realm claims failed: validating realm extended measurements claim: missing mandatory claim"
193193
c = Claims{}
194194
err = c.FromCBOR(buf)
195195
assert.EqualError(t, err, expectedErr)

0 commit comments

Comments
 (0)