-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtypes_structures.go
1071 lines (932 loc) · 33.1 KB
/
types_structures.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2019 Canonical Ltd.
// Licensed under the LGPLv3 with static-linking exception.
// See LICENCE file for details.
package tpm2
import (
"encoding/binary"
"errors"
"fmt"
"io"
"math"
"math/big"
"reflect"
"sort"
"github.com/canonical/go-tpm2/mu"
)
// This file contains types defined in section 10 (Structures) in
// part 2 of the library spec.
type Empty struct{}
// 10.3) Hash/Digest structures
// TaggedHashU is a union type that corresponds to the TPMU_HA type. The
// selector type is [HashAlgorithmId]. Mapping of selector values to fields is
// as follows:
// - HashAlgorithmSHA1: SHA1
// - HashAlgorithmSHA256: SHA256
// - HashAlgorithmSHA384: SHA384
// - HashAlgorithmSHA512: SHA512
// - HashAlgorithmSHA256_192: SHA256_192
// - HashAlgorithmSM3_256: SM_256
// - HashAlgorithmSHA3_256: SHA3_256
// - HashAlgorithmSHA3_384: SHA3_384
// - HashAlgorithmSHA3_512: SHA3_512
// - HashAlgorithmSHAKE256_192: SHAKE256_192
// - HashAlgorithmSHAKE256_256: SHAKE256_256
// - HashAlgorithmSHAKE256_512: SHAKE256_512
type TaggedHashU struct {
SHA1 [20]byte
SHA256 [32]byte
SHA384 [48]byte
SHA512 [64]byte
SHA256_192 [24]byte
SM3_256 [32]byte
SHA3_256 [32]byte
SHA3_384 [48]byte
SHA3_512 [64]byte
SHAKE256_192 [24]byte
SHAKE256_256 [32]byte
SHAKE256_512 [64]byte
}
// Select implements [mu.Union].
func (u *TaggedHashU) Select(selector reflect.Value) interface{} {
switch selector.Interface().(HashAlgorithmId) {
case HashAlgorithmNull:
return mu.NilUnionValue
case HashAlgorithmSHA1:
return &u.SHA1
case HashAlgorithmSHA256:
return &u.SHA256
case HashAlgorithmSHA384:
return &u.SHA384
case HashAlgorithmSHA512:
return &u.SHA512
case HashAlgorithmSHA256_192:
return &u.SHA256_192
case HashAlgorithmSM3_256:
return &u.SM3_256
case HashAlgorithmSHA3_256:
return &u.SHA3_256
case HashAlgorithmSHA3_384:
return &u.SHA3_384
case HashAlgorithmSHA3_512:
return &u.SHA3_512
case HashAlgorithmSHAKE256_192:
return &u.SHAKE256_192
case HashAlgorithmSHAKE256_256:
return &u.SHAKE256_256
case HashAlgorithmSHAKE256_512:
return &u.SHAKE256_512
default:
return nil
}
}
// TaggedHash corresponds to the TPMT_HA type.
type TaggedHash struct {
HashAlg HashAlgorithmId // Algorithm of the digest contained with Digest
DigestData *TaggedHashU // Digest data
}
// NewTaggedHash creates a new tagged hash that represents the specified
// digest. It will return an error if the algorithm is invalid or the
// size of the digest doesn't match the algorithm.
//
// Deprecated: Use [MakeTaggedHash].
func NewTaggedHash(alg HashAlgorithmId, digest Digest) (*TaggedHash, error) {
if !alg.IsValid() {
return nil, errors.New("invalid algorithm")
}
if len(digest) != alg.Size() {
return nil, errors.New("invalid digest size")
}
digestData := new(TaggedHashU)
switch alg {
case HashAlgorithmSHA1:
copy(digestData.SHA1[:], digest)
case HashAlgorithmSHA256:
copy(digestData.SHA256[:], digest)
case HashAlgorithmSHA384:
copy(digestData.SHA384[:], digest)
case HashAlgorithmSHA512:
copy(digestData.SHA512[:], digest)
case HashAlgorithmSHA256_192:
copy(digestData.SHA256_192[:], digest)
case HashAlgorithmSM3_256:
copy(digestData.SM3_256[:], digest)
case HashAlgorithmSHA3_256:
copy(digestData.SHA3_256[:], digest)
case HashAlgorithmSHA3_384:
copy(digestData.SHA3_384[:], digest)
case HashAlgorithmSHA3_512:
copy(digestData.SHA3_512[:], digest)
case HashAlgorithmSHAKE256_192:
copy(digestData.SHAKE256_192[:], digest)
case HashAlgorithmSHAKE256_256:
copy(digestData.SHAKE256_256[:], digest)
case HashAlgorithmSHAKE256_512:
copy(digestData.SHAKE256_512[:], digest)
}
return &TaggedHash{
HashAlg: alg,
DigestData: digestData}, nil
}
// MakeTaggedHash creates a new tagged hash that represents the specified
// digest. It will panic if the algorithm is invalid. The supplied digest
// should be the correct length - it will be padded if it's too short or
// truncated if it's too long.
func MakeTaggedHash(alg HashAlgorithmId, digest Digest) TaggedHash {
digestData := new(TaggedHashU)
switch alg {
case HashAlgorithmSHA1:
copy(digestData.SHA1[:], digest)
case HashAlgorithmSHA256:
copy(digestData.SHA256[:], digest)
case HashAlgorithmSHA384:
copy(digestData.SHA384[:], digest)
case HashAlgorithmSHA512:
copy(digestData.SHA512[:], digest)
case HashAlgorithmSHA256_192:
copy(digestData.SHA256_192[:], digest)
case HashAlgorithmSM3_256:
copy(digestData.SM3_256[:], digest)
case HashAlgorithmSHA3_256:
copy(digestData.SHA3_256[:], digest)
case HashAlgorithmSHA3_384:
copy(digestData.SHA3_384[:], digest)
case HashAlgorithmSHA3_512:
copy(digestData.SHA3_512[:], digest)
case HashAlgorithmSHAKE256_192:
copy(digestData.SHAKE256_192[:], digest)
case HashAlgorithmSHAKE256_256:
copy(digestData.SHAKE256_256[:], digest)
case HashAlgorithmSHAKE256_512:
copy(digestData.SHAKE256_512[:], digest)
}
return TaggedHash{
HashAlg: alg,
DigestData: digestData}
}
// Digest returns the value of this tagged hash. It will panic
// if the digest algorithm is invalid and not [HashAlgorithmNull].
// It will be valid if this tagged hash was created by unmarshalling
// it, else check the value of the HashAlg field first.
func (h *TaggedHash) Digest() Digest {
if h.HashAlg == HashAlgorithmNull {
return nil
}
out := make(Digest, h.HashAlg.Size())
switch h.HashAlg {
case HashAlgorithmSHA1:
copy(out, h.DigestData.SHA1[:])
case HashAlgorithmSHA256:
copy(out, h.DigestData.SHA256[:])
case HashAlgorithmSHA384:
copy(out, h.DigestData.SHA384[:])
case HashAlgorithmSHA512:
copy(out, h.DigestData.SHA512[:])
case HashAlgorithmSHA256_192:
copy(out, h.DigestData.SHA256_192[:])
case HashAlgorithmSM3_256:
copy(out, h.DigestData.SM3_256[:])
case HashAlgorithmSHA3_256:
copy(out, h.DigestData.SHA3_256[:])
case HashAlgorithmSHA3_384:
copy(out, h.DigestData.SHA3_384[:])
case HashAlgorithmSHA3_512:
copy(out, h.DigestData.SHA3_512[:])
case HashAlgorithmSHAKE256_192:
copy(out, h.DigestData.SHAKE256_192[:])
case HashAlgorithmSHAKE256_256:
copy(out, h.DigestData.SHAKE256_256[:])
case HashAlgorithmSHAKE256_512:
copy(out, h.DigestData.SHAKE256_512[:])
}
return out
}
// 10.4 Sized Buffers
// Digest corresponds to the TPM2B_DIGEST type. The largest size of this supported
// by the TPM can be determined by calling [TPMContext.GetMaxDigest].
type Digest []byte
// Data corresponds to the TPM2B_DATA type. The largest size of this supported by
// the TPM can be determined by calling [TPMContext.GetMaxData].
type Data []byte
// Nonce corresponds to the TPM2B_NONCE type.
type Nonce = Digest
// Auth corresponds to the TPM2B_AUTH type.
type Auth = Digest
// Operand corresponds to the TPM2B_OPERAND type.
type Operand = Digest
const (
// EventMaxSize indicates the maximum size of arguments of the Event type.
EventMaxSize = 1024
)
// Event corresponds to the TPM2B_EVENT type. The largest size of this is indicated
// by EventMaxSize.
type Event []byte
// MaxBuffer corresponds to the TPM2B_MAX_BUFFER type. The largest size of this supported
// by the TPM can be determined by calling [TPMContext.GetInputBuffer].
type MaxBuffer []byte
// MaxNVBuffer corresponds to the TPM2B_MAX_NV_BUFFER type. The largest size of this
// supported by the TPM can be determined by calling [TPMContext.GetNVBufferMax].
type MaxNVBuffer []byte
// Timeout corresponds to the TPM2B_TIMEOUT type. The spec defines this
// as having a maximum size of 8 bytes. It is always 8 bytes in the
// reference implementation and so could be represented as a uint64,
// but we have to preserve the original buffer because there is no
// guarantees that it is always 8 bytes, and the actual TPM buffer
// must be recreated accurately in order for ticket validation to
// work correctly in [TPMContext.PolicyTicket].
type Timeout []byte
// Value returns the value as a uint64. The spec defines the TPM2B_TIMEOUT
// type as having a size of up to 8 bytes. If an implementation creates a
// larger value then the result of this is undefined.
func (t Timeout) Value() uint64 {
return new(big.Int).SetBytes(t).Uint64()
}
// 10.5) Names
// Name corresponds to the TPM2B_NAME type.
type Name []byte
// MakeHandleName creates a Name from the specified handle. This will panic if the
// specified handle doesn't correspond to a PCR, session or permanent resource.
func MakeHandleName(handle Handle) Name {
switch handle.Type() {
case HandleTypePCR, HandleTypeHMACSession, HandleTypePolicySession, HandleTypePermanent:
return mu.MustMarshalToBytes(handle)
default:
panic("invalid handle type")
}
}
// NameType describes the type of a name.
type NameType int
const (
// NameTypeInvalid means that a Name is invalid.
NameTypeInvalid NameType = iota
// NameTypeHandle means that a Name is a handle.
NameTypeHandle
// NameTypeDigest means that a Name is a digest.
NameTypeDigest
// NameTypeNone means that a Name is empty.
NameTypeNone
)
// Name implements [github.com/canonical/go-tpm2/objectutil.Named].
func (n Name) Name() Name {
return n
}
// IsValid determines if this name is valid.
func (n Name) IsValid() bool {
return n.Type() != NameTypeInvalid
}
// Type determines the type of this name.
func (n Name) Type() NameType {
switch {
case len(n) == 0:
return NameTypeNone
case len(n) == binary.Size(Handle(0)):
return NameTypeHandle
case len(n) < binary.Size(HashAlgorithmId(0)):
return NameTypeInvalid
}
alg := HashAlgorithmId(binary.BigEndian.Uint16(n))
if !alg.IsValid() {
return NameTypeInvalid
}
if len(n)-binary.Size(HashAlgorithmId(0)) != alg.Size() {
return NameTypeInvalid
}
return NameTypeDigest
}
// Handle returns the handle of the resource that this name corresponds to. If
// Type does not return [NameTypeHandle], it will panic.
func (n Name) Handle() Handle {
if n.Type() != NameTypeHandle {
panic("name is not a handle")
}
return Handle(binary.BigEndian.Uint32(n))
}
// Algorithm returns the digest algorithm of this name. If Type does not return
// [NameTypeDigest], it will return [HashAlgorithmNull].
func (n Name) Algorithm() HashAlgorithmId {
if n.Type() != NameTypeDigest {
return HashAlgorithmNull
}
return HashAlgorithmId(binary.BigEndian.Uint16(n))
}
// Digest returns the name as a digest without the algorithm identifier. If
// Type does not return [NameTypeDigest], it will panic.
func (n Name) Digest() Digest {
if n.Type() != NameTypeDigest {
panic("name is not a valid digest")
}
return Digest(n[binary.Size(HashAlgorithmId(0)):])
}
// 10.6) PCR Structures
// PCRSelectBitmap correspnds to the TPMS_PCR_SELECT type, and is a bitmap
// that defines a selection of PCRs. Note that it is easier to work with the
// [PCRSelect] type instead, which is a slice of PCR indexes.
type PCRSelectBitmap struct {
Bytes mu.Sized1Bytes
}
// ToPCRs converts this PCRSelectBitmap to a slice of PCR indexes.
func (b *PCRSelectBitmap) ToPCRs() (out PCRSelect) {
for i, octet := range b.Bytes {
for bit := uint(0); bit < 8; bit++ {
if octet&(1<<bit) == 0 {
continue
}
out = append(out, int((uint(i)*8)+bit))
}
}
return out
}
// PCRSelect is a slice of PCR indexes. It makes it easier to work with the
// TPMS_PCR_SELECT type, which is a bitmap of PCR indices.
//
// This type can't be marshalled directly because there is no mechanism to
// specify a minimum size.
//
// It should either be converted to and from *[PCRSelectBitmap] for marshalling
// or used as part of the [PCRSelection] type (which makes it possible to
// specify the minimum size of the bitmap/
type PCRSelect []int
// ToBitmap converts this PCRSelect into its bitmap form, with the specified
// minimum size. If minsize is zero, a value of 3 will be used which aligns
// with PC client TPM devices.
func (d PCRSelect) ToBitmap(minsize uint8) (out *PCRSelectBitmap, err error) {
if minsize == 0 {
minsize = 3
}
out = &PCRSelectBitmap{Bytes: make([]byte, minsize)}
for _, i := range d {
if i < 0 {
return nil, errors.New("invalid PCR index (< 0)")
}
octet := i / 8
if octet >= math.MaxUint8 {
return nil, errors.New("invalid PCR index (> 2040)")
}
for octet >= len(out.Bytes) {
out.Bytes = append(out.Bytes, byte(0))
}
bit := uint(i % 8)
out.Bytes[octet] |= 1 << bit
}
return out, nil
}
// Marshal implements [mu.CustomMarshaller.Marshal].
//
// Note that this type cannot be marshalled directly and will result in a
// panic if this is attempted.
func (d PCRSelect) Marshal(w io.Writer) error {
panic("PCRSelect cannot be marshalled directly. Use it as part of PCRSelection or convert it to PCRSelectBitmap")
}
// Unmarshal implements [mu.CustomMarshaller.Unmarshal].
func (d *PCRSelect) Unmarshal(r io.Reader) error {
var b PCRSelectBitmap
if _, err := mu.UnmarshalFromReader(r, &b); err != nil {
return err
}
*d = b.ToPCRs()
return nil
}
// PCRSelection corresponds to the TPMS_PCR_SELECTION type.
type PCRSelection struct {
Hash HashAlgorithmId // Hash is the digest algorithm associated with the selection
Select PCRSelect // The selected PCRs
// SizeOfSelect sets the minimum number of bytes in the serialized Select field
// during marshalling, and is set to the actual number of bytes in the Select
// field during unmarshalling.
//
// TPMs define a minimum size for a PCR selection, based on the number of PCRs
// defined in its associated platform specification. Note that methods of
// TPMContext that accept a PCRSelection will set this automatically.
//
// If set to zero during marshalling, a value of 3 will be assumed, which
// aligns with PC client TPM devices.
SizeOfSelect uint8
}
func (s PCRSelection) String() string {
return fmt.Sprintf("{hash:%v, select:%v}", s.Hash, s.Select)
}
// Marshal implements [mu.CustomMarshaller.Marshal].
func (s PCRSelection) Marshal(w io.Writer) error {
bmp, err := s.Select.ToBitmap(s.SizeOfSelect)
if err != nil {
return err
}
_, err = mu.MarshalToWriter(w, s.Hash, bmp)
return err
}
// Unmarshal implements [mu.CustomMarshaller.Unmarshal].
func (s *PCRSelection) Unmarshal(r io.Reader) error {
var b PCRSelectBitmap
if _, err := mu.UnmarshalFromReader(r, &s.Hash, &b); err != nil {
return err
}
s.Select = b.ToPCRs()
s.SizeOfSelect = uint8(len(b.Bytes))
return nil
}
// 10.7 Tickets
// TkCreation corresponds to the TPMT_TK_CREATION type. It is created by TPMContext.Create
// and TPMContext.CreatePrimary, and is used to cryptographically bind the CreationData to
// the created object.
type TkCreation struct {
Tag StructTag // Ticket structure tag (TagCreation)
Hierarchy Handle // The hierarchy of the object to which this ticket belongs.
Digest Digest // HMAC computed using the proof value of Hierarchy
}
// TkVerified corresponds to the TPMT_TK_VERIFIED type. It is created by TPMContext.VerifySignature
// and provides evidence that the TPM has verified that a digest was signed by a specific key.
type TkVerified struct {
Tag StructTag // Ticket structure tag (TagVerified)
Hierarchy Handle // The hierarchy of the object to which this ticket belongs.
Digest Digest // HMAC computed using the proof value of Hierarcht
}
// TkAuth corresponds to the TPMT_TK_AUTH type. It is created by TPMContext.PolicySigned
// and TPMContext.PolicySecret when the authorization has an expiration time.
type TkAuth struct {
Tag StructTag // Ticket structure tag (TagAuthSecret or TagAuthSigned)
Hierarchy Handle // The hierarchy of the object used to produce this ticket
Digest Digest // HMAC computed using the proof value of Hierarchy
}
// TkHashcheck corresponds to the TPMT_TK_HASHCHECK type.
type TkHashcheck struct {
Tag StructTag // Ticket structure tag (TagHashcheck)
Hierarchy Handle // The hierarchy of the object used to produce this ticket
Digest Digest // HMAC computed using the proof value of Hierarchy
}
// AlgorithmProperty corresponds to the TPMS_ALG_PROPERTY type. It is used to report
// the properties of an algorithm.
type AlgorithmProperty struct {
Alg AlgorithmId // Algorithm identifier
Properties AlgorithmAttributes // Attributes of the algorithm
}
// TaggedProperty corresponds to the TPMS_TAGGED_PROPERTY type. It is used to report
// the value of a property.
type TaggedProperty struct {
Property Property // Property identifier
Value uint32 // Value of the property
}
// TaggedPCRSelect corresponds to the TPMS_TAGGED_PCR_SELECT type. It is used to
// report the PCR indexes associated with a property.
type TaggedPCRSelect struct {
Tag PropertyPCR // Property identifier
Select PCRSelect // PCRs associated with Tag
}
// TaggedPolicy corresponds to the TPMS_TAGGED_POLICY type. It is used to report
// the authorization policy for a permanent resource.
type TaggedPolicy struct {
Handle Handle // Permanent handle
PolicyHash TaggedHash // Policy algorithm and hash
}
// 10.9) Lists
// CommandCodeList is a slice of CommandCode values, and corresponds to the TPML_CC type.
type CommandCodeList []CommandCode
// CommandAttributesList is a slice of CommandAttribute values, and corresponds to the TPML_CCA type.
type CommandAttributesList []CommandAttributes
// AlgorithmList is a slice of AlgorithmId values, and corresponds to the TPML_ALG type.
type AlgorithmList []AlgorithmId
// HandleList is a slice of Handle values, and corresponds to the TPML_HANDLE type.
type HandleList []Handle
// DigestList is a slice of Digest values, and corresponds to the TPML_DIGEST type.
type DigestList []Digest
// TaggedHashList is a slice of TaggedHash values, and corresponds to the TPML_DIGEST_VALUES type.
type TaggedHashList []TaggedHash
// TaggedHashListBuilder facilitates creating a [TaggedHashList]. It
// allows a list to be constructed without having to check for errors
// until the end.
//
// Deprecated: Use [TaggedHashList] and [MakeTaggedHash].
type TaggedHashListBuilder struct {
hashes TaggedHashList
err error
}
// NewTaggedHashListBuilder returns a new TaggedHashListBuilder.
//
// Deprecated: Use [TaggedHashList] and [MakeTaggedHash].
func NewTaggedHashListBuilder() *TaggedHashListBuilder {
return new(TaggedHashListBuilder)
}
// Append appends the digest with the specified algorithm to the list.
func (b *TaggedHashListBuilder) Append(alg HashAlgorithmId, digest Digest) *TaggedHashListBuilder {
if b.err != nil {
return b
}
h, err := NewTaggedHash(alg, digest)
if err != nil {
b.err = fmt.Errorf("encountered error on digest %d: %w", len(b.hashes), err)
b.hashes = nil
} else {
b.hashes = append(b.hashes, *h)
}
return b
}
// Finish returns the final list, or an error if one occurred whilst the
// list was being built.
func (b *TaggedHashListBuilder) Finish() (TaggedHashList, error) {
return b.hashes, b.err
}
// MustFinish is the same as [TaggedHashListBuilder.Finish] except if panics if an error
// occurred.
func (b *TaggedHashListBuilder) MustFinish() TaggedHashList {
l, err := b.Finish()
if err != nil {
panic(err)
}
return l
}
// PCRSelectionList is a slice of PCRSelection values, and corresponds to the TPML_PCR_SELECTION type.
type PCRSelectionList []PCRSelection
func (l PCRSelectionList) String() string {
out := "["
for _, s := range l {
out += s.String()
}
return out + "]"
}
// WithMinSelectSize creates a copy of this list of selections with the minimum
// size of each selection in bytes set to the specified value. If this isn't
// used to change the default of zero, then 3 is assumed during marshalling
// which aligns with PC client TPM devices.
//
// Methods of TPMContext that accept a PCRSelectionList call this function
// already.
func (l PCRSelectionList) WithMinSelectSize(sz uint8) (out PCRSelectionList) {
for _, s := range l {
out = append(out, PCRSelection{Hash: s.Hash, Select: s.Select, SizeOfSelect: sz})
}
return out
}
// Sort will sort the list of PCR selections in order of ascending algorithm
// ID. A new list of selections is returned.
//
// This will return an error if the selection list cannot be marshalled to
// the TPM wire format.
func (l PCRSelectionList) Sort() (out PCRSelectionList, err error) {
if err := mu.CopyValue(&out, l); err != nil {
return nil, fmt.Errorf("invalid selection list: %w", err)
}
for i, s := range l {
out[i].SizeOfSelect = s.SizeOfSelect
}
sort.Slice(out, func(i, j int) bool { return out[i].Hash < out[j].Hash })
return out, nil
}
// MustSort will sort the list of PCR selections in order of ascending
// algorithm ID. A new list of selections is returned.
//
// This will panic if the selection list cannot be marshalled to the TPM wire
// format. Use mu.IsValid to check if it can actually be serialized correctly.
func (l PCRSelectionList) MustSort() (out PCRSelectionList) {
var err error
out, err = l.Sort()
if err != nil {
panic(err)
}
return out
}
// Merge will merge the PCR selections specified by l and r together and
// return a new set of PCR selections which contains a combination of both.
// For each PCR found in r that isn't found in l, it will be added to the
// last occurence of the corresponding PCR bank found in l if that exists,
// or otherwise a selection for that PCR bank will be appended to the result.
//
// This will return an error if either selection list cannot be marshalled
// to the TPM wire format.
func (l PCRSelectionList) Merge(r PCRSelectionList) (out PCRSelectionList, err error) {
// Create a copy of the destination list
if err := mu.CopyValue(&out, l); err != nil {
return nil, fmt.Errorf("invalid destination selection list: %w", err)
}
for i, s := range l {
out[i].SizeOfSelect = s.SizeOfSelect
}
// Iterate over each source selection
for _, sr := range r {
rbmp, err := sr.Select.ToBitmap(math.MaxUint8)
if err != nil {
return nil, fmt.Errorf("invalid source selection with digest %v: %w", sr.Hash, err)
}
dsti := -1
var dstbmp *PCRSelectBitmap
// Find a target selection in the destination list
for i, sl := range out {
if sl.Hash != sr.Hash {
continue
}
lbmp, err := sl.Select.ToBitmap(math.MaxUint8)
if err != nil {
// This selection is proven to be valid already
// because of the earlier copy.
panic(err)
}
dsti = i
dstbmp = lbmp
// Avoid duplicated PCRs by clearing any in this source selection
// that exist in any selection in the destination list.
for j := 0; j < math.MaxUint8; j++ {
rbmp.Bytes[j] &^= lbmp.Bytes[j]
}
}
if dsti > -1 {
// We already have a target selection. Set the PCRs from the
// source selection
for j := 0; j < math.MaxUint8; j++ {
dstbmp.Bytes[j] |= rbmp.Bytes[j]
}
out[dsti].Select = dstbmp.ToPCRs()
} else {
// We don't have a target selection, so create one.
var sr2 PCRSelection
mu.MustCopyValue(&sr2, sr) // source proven to be valid earlier
sr2.SizeOfSelect = sr.SizeOfSelect
out = append(out, sr2)
}
}
return out, nil
}
// MustMerge will merge the PCR selections specified by l and r together
// and return a new set of PCR selections which contains a combination of
// both. For each PCR found in r that isn't found in l, it will be added
// to the first occurence of the corresponding PCR bank found in l if that
// exists, or otherwise a selection for that PCR bank will be appended to
// the result.
//
// This will panic if either selection list cannot be marshalled to the TPM
// wire format. Use mu.IsValid to check if the values can actually be
// serialized correctly.
func (l PCRSelectionList) MustMerge(r PCRSelectionList) (out PCRSelectionList) {
var err error
out, err = l.Merge(r)
if err != nil {
panic(err)
}
return out
}
// Remove will remove the PCR selections in r from the PCR selections in l,
// and return a new set of selections.
//
// This will return an error if either selection list cannot be marshalled
// to the TPM wire format.
func (l PCRSelectionList) Remove(r PCRSelectionList) (out PCRSelectionList, err error) {
// Create a copy of the original selection list
if err := mu.CopyValue(&out, l); err != nil {
return nil, fmt.Errorf("invalid original selection list: %w", err)
}
for i, s := range l {
out[i].SizeOfSelect = s.SizeOfSelect
}
// Iterate over each selection to remove
for _, sr := range r {
rbmp, err := sr.Select.ToBitmap(math.MaxUint8)
if err != nil {
return nil, fmt.Errorf("invalid selection to remove with digest %v: %w", sr.Hash, err)
}
// Iterate over the destination selection list
for i, sl := range out {
if sl.Hash != sr.Hash {
continue
}
lbmp, err := sl.Select.ToBitmap(math.MaxUint8)
if err != nil {
// This selection is proven to be valid already
// because of the earlier copy.
panic(err)
}
// Remove necessary PCRs from the destination selection
for j := 0; j < math.MaxUint8; j++ {
lbmp.Bytes[j] &^= rbmp.Bytes[j]
}
out[i].Select = lbmp.ToPCRs()
}
}
// Remove any selections from the destination list that are now empty.
for i, so := range out {
if len(so.Select) > 0 {
continue
}
if i < len(out)-1 {
copy(out[i:], out[i+1:])
}
out = out[:len(out)-1]
}
return out, nil
}
// MustRemove will remove the PCR selections in r from the PCR selections
// in l, and return a new set of selections.
//
// This will panic if either selection list cannot be marshalled to the TPM
// wire format. Use mu.IsValid to check if the values can actually be
// serialized correctly.
func (l PCRSelectionList) MustRemove(r PCRSelectionList) (out PCRSelectionList) {
var err error
out, err = l.Remove(r)
if err != nil {
panic(err)
}
return out
}
// IsEmpty returns true if the list of PCR selections selects no PCRs.
func (l PCRSelectionList) IsEmpty() bool {
for _, s := range l {
if len(s.Select) > 0 {
return false
}
}
return true
}
// AlgorithmPropertyList is a slice of AlgorithmProperty values, and corresponds to
// the TPML_ALG_PROPERTY type.
type AlgorithmPropertyList []AlgorithmProperty
// TaggedTPMPropertyList is a slice of TaggedProperty values, and corresponds to the
// TPML_TAGGED_TPM_PROPERTY type.
type TaggedTPMPropertyList []TaggedProperty
// TaggedPCRPropertyList is a slice of TaggedPCRSelect values, and corresponds to the
// TPML_TAGGED_PCR_PROPERTY type.
type TaggedPCRPropertyList []TaggedPCRSelect
// ECCCurveList is a slice of ECCCurve values, and corresponds to the TPML_ECC_CURVE type.
type ECCCurveList []ECCCurve
// TaggedPolicyList is a slice of TaggedPolicy values, and corresponds to the
// TPML_TAGGED_POLICY type.
type TaggedPolicyList []TaggedPolicy
// 10.10) Capabilities Structures
// Capabilities is a union type that corresponds to the TPMU_CAPABILITIES type. The
// selector type is Capability. Mapping of selector values to fields is as follows:
// - CapabilityAlgs: Algorithms
// - CapabilityHandles: Handles
// - CapabilityCommands: Command
// - CapabilityPPCommands: PPCommands
// - CapabilityAuditCommands: AuditCommands
// - CapabilityPCRs: AssignedPCR
// - CapabilityTPMProperties: TPMProperties
// - CapabilityPCRProperties: PCRProperties
// - CapabilityECCCurves: ECCCurves
// - CapabilityAuthPolicies: AuthPolicies
type CapabilitiesU struct {
Algorithms AlgorithmPropertyList
Handles HandleList
Command CommandAttributesList
PPCommands CommandCodeList
AuditCommands CommandCodeList
AssignedPCR PCRSelectionList
TPMProperties TaggedTPMPropertyList
PCRProperties TaggedPCRPropertyList
ECCCurves ECCCurveList
AuthPolicies TaggedPolicyList
}
// Select implements [mu.Union].
func (c *CapabilitiesU) Select(selector reflect.Value) interface{} {
switch selector.Interface().(Capability) {
case CapabilityAlgs:
return &c.Algorithms
case CapabilityHandles:
return &c.Handles
case CapabilityCommands:
return &c.Command
case CapabilityPPCommands:
return &c.PPCommands
case CapabilityAuditCommands:
return &c.AuditCommands
case CapabilityPCRs:
return &c.AssignedPCR
case CapabilityTPMProperties:
return &c.TPMProperties
case CapabilityPCRProperties:
return &c.PCRProperties
case CapabilityECCCurves:
return &c.ECCCurves
case CapabilityAuthPolicies:
return &c.AuthPolicies
default:
return nil
}
}
// CapabilityData corresponds to the TPMS_CAPABILITY_DATA type, and is returned by
// TPMContext.GetCapability.
type CapabilityData struct {
Capability Capability // Capability
Data *CapabilitiesU // Capability data
}
// 10.11 Clock/Counter Structures
// ClockInfo corresponds to the TPMS_CLOCK_INFO type.
type ClockInfo struct {
Clock uint64 // Time value in milliseconds that increments whilst the TPM is powered
ResetCount uint32 // Number of TPM resets since the TPM was last cleared
// RestartCount is the number of TPM restarts or resumes since the last TPM reset or the last time the TPM was cleared.
RestartCount uint32
// Safe indicates the the value reported by Clock is guaranteed to be unique for the current owner.
Safe bool
}
// TimeInfo corresponds to the TPMS_TIME_INFO type.
type TimeInfo struct {
Time uint64 // Time value in milliseconds since the last TPM startup
ClockInfo ClockInfo // Clock information
}
// 10.12 Attestation Structures
// TimeAttestInfo corresponds to the TPMS_TIME_ATTEST_INFO type, and is returned by
// TPMContext.GetTime.
type TimeAttestInfo struct {
Time TimeInfo // Time information
FirmwareVersion uint64 // TPM vendor specific value indicating the version of the firmware
}
// CertifyInfo corresponds to the TPMS_CERTIFY_INFO type, and is returned by TPMContext.Certify.
type CertifyInfo struct {
Name Name // Name of the certified object
QualifiedName Name // Qualified name of the certified object
}
// QuoteInfo corresponds to the TPMS_QUOTE_INFO type, and is returned by TPMContext.Quote.
type QuoteInfo struct {
PCRSelect PCRSelectionList // PCRs included in PCRDigest
PCRDigest Digest // Digest of the selected PCRs, using the hash algorithm of the signing key
}
// CommandAuditInfo corresponds to the TPMS_COMMAND_AUDIT_INFO type, and is returned by
// TPMContext.GetCommandAuditDigest.
type CommandAuditInfo struct {
AuditCounter uint64 // Monotonic audit counter
DigestAlg AlgorithmId // Hash algorithm used for the command audit
AuditDigest Digest // Current value of the audit digest
CommandDigest Digest // Digest of command codes being audited, using DigestAlg
}
// SessionAuditInfo corresponds to the TPMS_SESSION_AUDIT_INFO type, and is returned by
// TPMContext.GetSessionAuditDigest.
type SessionAuditInfo struct {
// ExclusiveSession indicates the current exclusive status of the session. It is true if all of the commands recorded in
// SessionDigest were executed without any intervening commands that did not use
// the audit session.
ExclusiveSession bool
SessionDigest Digest // Current value of the session audit digest
}
// CreationInfo corresponds to the TPMS_CREATION_INFO type, and is returned by TPMContext.CertifyCreation.
type CreationInfo struct {
ObjectName Name // Name of the object
CreationHash Digest
}
// NVCertifyInfo corresponds to the TPMS_NV_CERTIFY_INFO type, and is returned by TPMContext.NVCertify.
type NVCertifyInfo struct {
IndexName Name // Name of the NV index
Offset uint16 // Offset parameter of TPMContext.NVCertify
NVContents MaxNVBuffer // Contents of the NV index
}