@@ -46,17 +46,7 @@ func (o CCAPlatformProfile) GetName() string {
46
46
}
47
47
48
48
func (o CCAPlatformProfile ) GetClaims () IClaims {
49
- claims , err := newCCAPlatformClaims ()
50
-
51
- if err != nil {
52
- // We should never get here as the only source of error inside
53
- // newCCAPlatformClaims() is when attempting to set the Profile field
54
- // when it is already set; however, as we're creating a new
55
- // claims struct, this cannot happen.
56
- panic (err )
57
- }
58
-
59
- return claims
49
+ return newCCAPlatformClaims ()
60
50
}
61
51
62
52
const (
@@ -155,54 +145,41 @@ func CCALifeCycleToState(v uint16) CCALifeCycleState {
155
145
156
146
func ValidateCCASecurityLifeCycle (v uint16 ) error {
157
147
if ! CCALifeCycleToState (v ).IsValid () {
158
- return fmt .Errorf ("%w: value %d is invalid" , ErrWrongClaimSyntax , v )
148
+ return fmt .Errorf ("%w: value %d is invalid" , ErrWrongSyntax , v )
159
149
}
160
150
161
151
return nil
162
152
}
163
153
164
154
type CCAPlatformClaims struct {
165
- Profile * eat.Profile `cbor:"265,keyasint" json:"cca-platform-profile"`
166
- Challenge * eat.Nonce `cbor:"10,keyasint" json:"cca-platform-challenge"`
167
- ImplID * []byte `cbor:"2396,keyasint" json:"cca-platform-implementation-id"`
168
- InstID * eat.UEID `cbor:"256,keyasint" json:"cca-platform-instance-id"`
169
- Config * []byte `cbor:"2401,keyasint" json:"cca-platform-config"`
170
- SecurityLifeCycle * uint16 `cbor:"2395,keyasint" json:"cca-platform-lifecycle"`
171
- SwComponents * [] SwComponent `cbor:"2399,keyasint" json:"cca-platform-sw-components"`
155
+ Profile * eat.Profile `cbor:"265,keyasint" json:"cca-platform-profile"`
156
+ Challenge * eat.Nonce `cbor:"10,keyasint" json:"cca-platform-challenge"`
157
+ ImplID * []byte `cbor:"2396,keyasint" json:"cca-platform-implementation-id"`
158
+ InstID * eat.UEID `cbor:"256,keyasint" json:"cca-platform-instance-id"`
159
+ Config * []byte `cbor:"2401,keyasint" json:"cca-platform-config"`
160
+ SecurityLifeCycle * uint16 `cbor:"2395,keyasint" json:"cca-platform-lifecycle"`
161
+ SwComponents ISwComponents `cbor:"2399,keyasint" json:"cca-platform-sw-components"`
172
162
173
163
VSI * string `cbor:"2400,keyasint,omitempty" json:"cca-platform-service-indicator,omitempty"`
174
164
HashAlgID * string `cbor:"2402,keyasint" json:"cca-platform-hash-algo-id"`
175
165
}
176
166
177
- func newCCAPlatformClaims () (ICCAClaims , error ) {
178
- var c CCAPlatformClaims
179
-
180
- if err := c .setProfile (); err != nil {
181
- return nil , err
182
- }
183
-
184
- return & c , nil
185
- }
186
-
187
- func (c * CCAPlatformClaims ) setProfile () error {
188
- if c .Profile != nil {
189
- panic ("profile already set" )
190
- }
191
-
167
+ func newCCAPlatformClaims () ICCAClaims {
192
168
p := eat.Profile {}
193
-
194
169
if err := p .Set (CCAProfileName ); err != nil {
195
- return err
170
+ // should never get here as using known good constant as input
171
+ panic (err )
196
172
}
197
173
198
- c .Profile = & p
199
-
200
- return nil
174
+ return & CCAPlatformClaims {
175
+ Profile : & p ,
176
+ SwComponents : & SwComponents [* SwComponent ]{},
177
+ }
201
178
}
202
179
203
180
// Semantic validation
204
- func (c CCAPlatformClaims ) Validate () error {
205
- return ValidateCCAClaims (& c )
181
+ func (c * CCAPlatformClaims ) Validate () error {
182
+ return ValidateCCAClaims (c )
206
183
}
207
184
208
185
// Codecs
@@ -222,6 +199,8 @@ func (c *CCAPlatformClaims) FromCBOR(buf []byte) error {
222
199
}
223
200
224
201
func (c * CCAPlatformClaims ) FromUnvalidatedCBOR (buf []byte ) error {
202
+ c .Profile = nil // clear profile to make sure we taked it from buf
203
+
225
204
err := dm .Unmarshal (buf , c )
226
205
if err != nil {
227
206
return fmt .Errorf ("CBOR decoding of CCA platform claims failed: %w" , err )
@@ -230,7 +209,7 @@ func (c *CCAPlatformClaims) FromUnvalidatedCBOR(buf []byte) error {
230
209
return nil
231
210
}
232
211
233
- func (c CCAPlatformClaims ) ToCBOR () ([]byte , error ) {
212
+ func (c * CCAPlatformClaims ) ToCBOR () ([]byte , error ) {
234
213
err := c .Validate ()
235
214
if err != nil {
236
215
return nil , fmt .Errorf ("validation of CCA platform claims failed: %w" , err )
@@ -239,8 +218,17 @@ func (c CCAPlatformClaims) ToCBOR() ([]byte, error) {
239
218
return c .ToUnvalidatedCBOR ()
240
219
}
241
220
242
- func (c CCAPlatformClaims ) ToUnvalidatedCBOR () ([]byte , error ) {
221
+ func (c * CCAPlatformClaims ) ToUnvalidatedCBOR () ([]byte , error ) {
222
+ var scs ISwComponents
223
+ if c .SwComponents != nil && c .SwComponents .IsEmpty () {
224
+ scs = c .SwComponents
225
+ c .SwComponents = nil
226
+ }
227
+
243
228
buf , err := em .Marshal (& c )
229
+ if scs != nil {
230
+ c .SwComponents = scs
231
+ }
244
232
if err != nil {
245
233
return nil , fmt .Errorf ("CBOR encoding of CCA platform claims failed: %w" , err )
246
234
}
@@ -263,6 +251,8 @@ func (c *CCAPlatformClaims) FromJSON(buf []byte) error {
263
251
}
264
252
265
253
func (c * CCAPlatformClaims ) FromUnvalidatedJSON (buf []byte ) error {
254
+ c .Profile = nil // clear profile to make sure we taked it from buf
255
+
266
256
err := json .Unmarshal (buf , c )
267
257
if err != nil {
268
258
return fmt .Errorf ("JSON decoding of CCA platform claims failed: %w" , err )
@@ -271,7 +261,7 @@ func (c *CCAPlatformClaims) FromUnvalidatedJSON(buf []byte) error {
271
261
return nil
272
262
}
273
263
274
- func (c CCAPlatformClaims ) ToJSON () ([]byte , error ) {
264
+ func (c * CCAPlatformClaims ) ToJSON () ([]byte , error ) {
275
265
err := c .Validate ()
276
266
if err != nil {
277
267
return nil , fmt .Errorf ("validation of CCA platform claims failed: %w" , err )
@@ -280,8 +270,17 @@ func (c CCAPlatformClaims) ToJSON() ([]byte, error) {
280
270
return c .ToUnvalidatedJSON ()
281
271
}
282
272
283
- func (c CCAPlatformClaims ) ToUnvalidatedJSON () ([]byte , error ) {
273
+ func (c * CCAPlatformClaims ) ToUnvalidatedJSON () ([]byte , error ) {
274
+ var scs ISwComponents
275
+ if c .SwComponents != nil && c .SwComponents .IsEmpty () {
276
+ scs = c .SwComponents
277
+ c .SwComponents = nil
278
+ }
279
+
284
280
buf , err := json .Marshal (& c )
281
+ if scs != nil {
282
+ c .SwComponents = scs
283
+ }
285
284
if err != nil {
286
285
return nil , fmt .Errorf ("JSON encoding of CCA platform claims failed: %w" , err )
287
286
}
@@ -355,18 +354,16 @@ func (c *CCAPlatformClaims) SetCertificationReference(v string) error {
355
354
return fmt .Errorf ("%w: certification reference" , ErrClaimNotInProfile )
356
355
}
357
356
358
- func (c CCAPlatformClaims ) SetClientID (int32 ) error {
357
+ func (c * CCAPlatformClaims ) SetClientID (int32 ) error {
359
358
return fmt .Errorf ("%w: client id" , ErrClaimNotInProfile )
360
359
}
361
360
362
- func (c * CCAPlatformClaims ) SetSoftwareComponents (scs []SwComponent ) error {
363
- if err := ValidateSwComponents ( scs ); err ! = nil {
364
- return err
361
+ func (c * CCAPlatformClaims ) SetSoftwareComponents (scs []ISwComponent ) error {
362
+ if c . SwComponents = = nil {
363
+ c . SwComponents = & SwComponents [ * SwComponent ]{}
365
364
}
366
365
367
- c .SwComponents = & scs
368
-
369
- return nil
366
+ return c .SwComponents .Replace (scs )
370
367
}
371
368
372
369
func (c * CCAPlatformClaims ) SetConfig (v []byte ) error {
@@ -393,7 +390,7 @@ func (c *CCAPlatformClaims) SetHashAlgID(v string) error {
393
390
// After successful call to Validate(), getters of mandatory claims are assured
394
391
// to never fail. Getters of optional claim may still fail with
395
392
// ErrOptionalClaimMissing in case the claim is not present.
396
- func (c CCAPlatformClaims ) GetProfile () (string , error ) {
393
+ func (c * CCAPlatformClaims ) GetProfile () (string , error ) {
397
394
if c .Profile == nil {
398
395
return "" , ErrMandatoryClaimMissing
399
396
}
@@ -411,11 +408,11 @@ func (c CCAPlatformClaims) GetProfile() (string, error) {
411
408
return c .Profile .Get ()
412
409
}
413
410
414
- func (c CCAPlatformClaims ) GetClientID () (int32 , error ) {
411
+ func (c * CCAPlatformClaims ) GetClientID () (int32 , error ) {
415
412
return - 1 , fmt .Errorf ("%w: client id" , ErrClaimNotInProfile )
416
413
}
417
414
418
- func (c CCAPlatformClaims ) GetSecurityLifeCycle () (uint16 , error ) {
415
+ func (c * CCAPlatformClaims ) GetSecurityLifeCycle () (uint16 , error ) {
419
416
if c .SecurityLifeCycle == nil {
420
417
return 0 , ErrMandatoryClaimMissing
421
418
}
@@ -427,7 +424,7 @@ func (c CCAPlatformClaims) GetSecurityLifeCycle() (uint16, error) {
427
424
return * c .SecurityLifeCycle , nil
428
425
}
429
426
430
- func (c CCAPlatformClaims ) GetImplID () ([]byte , error ) {
427
+ func (c * CCAPlatformClaims ) GetImplID () ([]byte , error ) {
431
428
if c .ImplID == nil {
432
429
return nil , ErrMandatoryClaimMissing
433
430
}
@@ -439,29 +436,24 @@ func (c CCAPlatformClaims) GetImplID() ([]byte, error) {
439
436
return * c .ImplID , nil
440
437
}
441
438
442
- func (c CCAPlatformClaims ) GetBootSeed () ([]byte , error ) {
439
+ func (c * CCAPlatformClaims ) GetBootSeed () ([]byte , error ) {
443
440
return nil , fmt .Errorf ("%w: boot seed" , ErrClaimNotInProfile )
444
441
}
445
442
446
- func (c CCAPlatformClaims ) GetCertificationReference () (string , error ) {
443
+ func (c * CCAPlatformClaims ) GetCertificationReference () (string , error ) {
447
444
return "" , fmt .Errorf ("%w: certification reference" , ErrClaimNotInProfile )
448
445
}
449
446
450
- func (c CCAPlatformClaims ) GetSoftwareComponents () ([]SwComponent , error ) {
451
- v := c .SwComponents
452
-
453
- if v == nil {
454
- return nil , ErrMandatoryClaimMissing
447
+ func (c * CCAPlatformClaims ) GetSoftwareComponents () ([]ISwComponent , error ) {
448
+ if c .SwComponents == nil || c .SwComponents .IsEmpty () {
449
+ return nil , fmt .Errorf ("%w (MUST have at least one sw component)" ,
450
+ ErrMandatoryClaimMissing )
455
451
}
456
452
457
- if err := ValidateSwComponents (* v ); err != nil {
458
- return nil , err
459
- }
460
-
461
- return * v , nil
453
+ return c .SwComponents .Values ()
462
454
}
463
455
464
- func (c CCAPlatformClaims ) GetNonce () ([]byte , error ) {
456
+ func (c * CCAPlatformClaims ) GetNonce () ([]byte , error ) {
465
457
v := c .Challenge
466
458
467
459
if v == nil {
@@ -471,7 +463,7 @@ func (c CCAPlatformClaims) GetNonce() ([]byte, error) {
471
463
l := v .Len ()
472
464
473
465
if l != 1 {
474
- return nil , fmt .Errorf ("%w: got %d nonces, want 1" , ErrWrongClaimSyntax , l )
466
+ return nil , fmt .Errorf ("%w: got %d nonces, want 1" , ErrWrongSyntax , l )
475
467
}
476
468
477
469
n := v .GetI (0 )
@@ -482,7 +474,7 @@ func (c CCAPlatformClaims) GetNonce() ([]byte, error) {
482
474
return n , nil
483
475
}
484
476
485
- func (c CCAPlatformClaims ) GetInstID () ([]byte , error ) {
477
+ func (c * CCAPlatformClaims ) GetInstID () ([]byte , error ) {
486
478
v := c .InstID
487
479
488
480
if v == nil {
@@ -496,7 +488,7 @@ func (c CCAPlatformClaims) GetInstID() ([]byte, error) {
496
488
return * v , nil
497
489
}
498
490
499
- func (c CCAPlatformClaims ) GetVSI () (string , error ) {
491
+ func (c * CCAPlatformClaims ) GetVSI () (string , error ) {
500
492
if c .VSI == nil {
501
493
return "" , ErrOptionalClaimMissing
502
494
}
@@ -508,15 +500,15 @@ func (c CCAPlatformClaims) GetVSI() (string, error) {
508
500
return * c .VSI , nil
509
501
}
510
502
511
- func (c CCAPlatformClaims ) GetConfig () ([]byte , error ) {
503
+ func (c * CCAPlatformClaims ) GetConfig () ([]byte , error ) {
512
504
v := c .Config
513
505
if v == nil {
514
506
return nil , ErrMandatoryClaimMissing
515
507
}
516
508
return * v , nil
517
509
}
518
510
519
- func (c CCAPlatformClaims ) GetHashAlgID () (string , error ) {
511
+ func (c * CCAPlatformClaims ) GetHashAlgID () (string , error ) {
520
512
v := c .HashAlgID
521
513
522
514
if v == nil {
0 commit comments