-
Notifications
You must be signed in to change notification settings - Fork 110
/
metadata.go
920 lines (864 loc) · 28.5 KB
/
metadata.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
// Copyright 2024 The Update Framework Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License
//
// SPDX-License-Identifier: Apache-2.0
//
package metadata
import (
"bytes"
"crypto"
"crypto/hmac"
"crypto/sha256"
"crypto/sha512"
"encoding/base64"
"encoding/binary"
"encoding/hex"
"encoding/json"
"fmt"
"hash"
"io"
"math"
"os"
"path/filepath"
"slices"
"strconv"
"strings"
"time"
"github.com/secure-systems-lab/go-securesystemslib/cjson"
"github.com/sigstore/sigstore/pkg/signature"
)
// Root return new metadata instance of type Root
func Root(expires ...time.Time) *Metadata[RootType] {
// expire now if there's nothing set
if len(expires) == 0 {
expires = []time.Time{time.Now().UTC()}
}
// populate Roles
roles := map[string]*Role{}
for _, r := range []string{ROOT, SNAPSHOT, TARGETS, TIMESTAMP} {
roles[r] = &Role{
KeyIDs: []string{},
Threshold: 1,
}
}
log.Info("Created metadata", "type", ROOT)
return &Metadata[RootType]{
Signed: RootType{
Type: ROOT,
SpecVersion: SPECIFICATION_VERSION,
Version: 1,
Expires: expires[0],
Keys: map[string]*Key{},
Roles: roles,
ConsistentSnapshot: true,
},
Signatures: []Signature{},
}
}
// Snapshot return new metadata instance of type Snapshot
func Snapshot(expires ...time.Time) *Metadata[SnapshotType] {
// expire now if there's nothing set
if len(expires) == 0 {
expires = []time.Time{time.Now().UTC()}
}
log.Info("Created metadata", "type", SNAPSHOT)
return &Metadata[SnapshotType]{
Signed: SnapshotType{
Type: SNAPSHOT,
SpecVersion: SPECIFICATION_VERSION,
Version: 1,
Expires: expires[0],
Meta: map[string]*MetaFiles{
"targets.json": {
Version: 1,
},
},
},
Signatures: []Signature{},
}
}
// Timestamp return new metadata instance of type Timestamp
func Timestamp(expires ...time.Time) *Metadata[TimestampType] {
// expire now if there's nothing set
if len(expires) == 0 {
expires = []time.Time{time.Now().UTC()}
}
log.Info("Created metadata", "type", TIMESTAMP)
return &Metadata[TimestampType]{
Signed: TimestampType{
Type: TIMESTAMP,
SpecVersion: SPECIFICATION_VERSION,
Version: 1,
Expires: expires[0],
Meta: map[string]*MetaFiles{
"snapshot.json": {
Version: 1,
},
},
},
Signatures: []Signature{},
}
}
// Targets return new metadata instance of type Targets
func Targets(expires ...time.Time) *Metadata[TargetsType] {
// expire now if there's nothing set
if len(expires) == 0 {
expires = []time.Time{time.Now().UTC()}
}
log.Info("Created metadata", "type", TARGETS)
return &Metadata[TargetsType]{
Signed: TargetsType{
Type: TARGETS,
SpecVersion: SPECIFICATION_VERSION,
Version: 1,
Expires: expires[0],
Targets: map[string]*TargetFiles{},
},
Signatures: []Signature{},
}
}
// TargetFile return new metadata instance of type TargetFiles
func TargetFile() *TargetFiles {
return &TargetFiles{
Length: 0,
Hashes: Hashes{},
}
}
// MetaFile return new metadata instance of type MetaFile
func MetaFile(version int64) *MetaFiles {
if version < 1 {
// attempting to set incorrect version
log.Info("Attempting to set incorrect version for MetaFile", "version", version)
version = 1
}
return &MetaFiles{
Length: 0,
Hashes: Hashes{},
Version: version,
}
}
// FromFile load metadata from file
func (meta *Metadata[T]) FromFile(name string) (*Metadata[T], error) {
in, err := os.Open(name)
if err != nil {
return nil, err
}
defer in.Close()
data, err := io.ReadAll(in)
if err != nil {
return nil, err
}
m, err := fromBytes[T](data)
if err != nil {
return nil, err
}
*meta = *m
log.Info("Loaded metadata from file", "name", name)
return meta, nil
}
// FromBytes deserialize metadata from bytes
func (meta *Metadata[T]) FromBytes(data []byte) (*Metadata[T], error) {
m, err := fromBytes[T](data)
if err != nil {
return nil, err
}
*meta = *m
log.Info("Loaded metadata from bytes")
return meta, nil
}
// ToBytes serialize metadata to bytes
func (meta *Metadata[T]) ToBytes(pretty bool) ([]byte, error) {
log.Info("Writing metadata to bytes")
if pretty {
return json.MarshalIndent(*meta, "", "\t")
}
return json.Marshal(*meta)
}
// ToFile save metadata to file
func (meta *Metadata[T]) ToFile(name string, pretty bool) error {
log.Info("Writing metadata to file", "name", name)
data, err := meta.ToBytes(pretty)
if err != nil {
return err
}
return os.WriteFile(name, data, 0644)
}
// Sign create signature over Signed and assign it to Signatures
func (meta *Metadata[T]) Sign(signer signature.Signer) (*Signature, error) {
// encode the Signed part to canonical JSON so signatures are consistent
payload, err := cjson.EncodeCanonical(meta.Signed)
if err != nil {
return nil, err
}
// sign the Signed part
sb, err := signer.SignMessage(bytes.NewReader(payload))
if err != nil {
return nil, &ErrUnsignedMetadata{Msg: "problem signing metadata"}
}
// get the signer's PublicKey
publ, err := signer.PublicKey()
if err != nil {
return nil, err
}
// convert to TUF Key type to get keyID
key, err := KeyFromPublicKey(publ)
if err != nil {
return nil, err
}
// build signature
sig := &Signature{
KeyID: key.ID(),
Signature: sb,
}
// update the Signatures part
meta.Signatures = append(meta.Signatures, *sig)
// return the new signature
log.Info("Signed metadata with key", "ID", key.ID())
return sig, nil
}
// VerifyDelegate verifies that delegatedMetadata is signed with the required
// threshold of keys for the delegated role delegatedRole
func (meta *Metadata[T]) VerifyDelegate(delegatedRole string, delegatedMetadata any) error {
i := any(meta)
signingKeys := map[string]bool{}
var keys map[string]*Key
var roleKeyIDs []string
var roleThreshold int
log.Info("Verifying", "role", delegatedRole)
// collect keys, keyIDs and threshold based on delegator type
switch i := i.(type) {
// Root delegator
case *Metadata[RootType]:
keys = i.Signed.Keys
if role, ok := (*i).Signed.Roles[delegatedRole]; ok {
roleKeyIDs = role.KeyIDs
roleThreshold = role.Threshold
} else {
// the delegated role was not found, no need to proceed
return &ErrValue{Msg: fmt.Sprintf("no delegation found for %s", delegatedRole)}
}
// Targets delegator
case *Metadata[TargetsType]:
if i.Signed.Delegations == nil {
return &ErrValue{Msg: "no delegations found"}
}
keys = i.Signed.Delegations.Keys
if i.Signed.Delegations.Roles != nil {
found := false
for _, v := range i.Signed.Delegations.Roles {
if v.Name == delegatedRole {
found = true
roleKeyIDs = v.KeyIDs
roleThreshold = v.Threshold
break
}
}
// the delegated role was not found, no need to proceed
if !found {
return &ErrValue{Msg: fmt.Sprintf("no delegation found for %s", delegatedRole)}
}
} else if i.Signed.Delegations.SuccinctRoles != nil {
roleKeyIDs = i.Signed.Delegations.SuccinctRoles.KeyIDs
roleThreshold = i.Signed.Delegations.SuccinctRoles.Threshold
}
default:
return &ErrType{Msg: "call is valid only on delegator metadata (should be either root or targets)"}
}
// if there are no keyIDs for that role it means there's no delegation found
if len(roleKeyIDs) == 0 {
return &ErrValue{Msg: fmt.Sprintf("no delegation found for %s", delegatedRole)}
}
// loop through each role keyID
for _, keyID := range roleKeyIDs {
key, ok := keys[keyID]
if !ok {
return &ErrValue{Msg: fmt.Sprintf("key with ID %s not found in %s keyids", keyID, delegatedRole)}
}
sign := Signature{}
var payload []byte
// convert to a PublicKey type
publicKey, err := key.ToPublicKey()
if err != nil {
return err
}
// use corresponding hash function for key type
hash := crypto.Hash(0)
if key.Type != KeyTypeEd25519 {
switch key.Scheme {
case KeySchemeECDSA_SHA2_P256:
hash = crypto.SHA256
case KeySchemeECDSA_SHA2_P384:
hash = crypto.SHA384
default:
hash = crypto.SHA256
}
}
// load a verifier based on that key
verifier, err := signature.LoadVerifier(publicKey, hash)
if err != nil {
return err
}
// collect the signature for that key and build the payload we'll verify
// based on the Signed part of the delegated metadata
switch d := delegatedMetadata.(type) {
case *Metadata[RootType]:
for _, signature := range d.Signatures {
if signature.KeyID == keyID {
sign = signature
}
}
payload, err = cjson.EncodeCanonical(d.Signed)
if err != nil {
return err
}
case *Metadata[SnapshotType]:
for _, signature := range d.Signatures {
if signature.KeyID == keyID {
sign = signature
}
}
payload, err = cjson.EncodeCanonical(d.Signed)
if err != nil {
return err
}
case *Metadata[TimestampType]:
for _, signature := range d.Signatures {
if signature.KeyID == keyID {
sign = signature
}
}
payload, err = cjson.EncodeCanonical(d.Signed)
if err != nil {
return err
}
case *Metadata[TargetsType]:
for _, signature := range d.Signatures {
if signature.KeyID == keyID {
sign = signature
}
}
payload, err = cjson.EncodeCanonical(d.Signed)
if err != nil {
return err
}
default:
return &ErrType{Msg: "unknown delegated metadata type"}
}
// verify if the signature for that payload corresponds to the given key
if err := verifier.VerifySignature(bytes.NewReader(sign.Signature), bytes.NewReader(payload)); err != nil {
// failed to verify the metadata with that key ID
log.Info("Failed to verify %s with key ID %s", delegatedRole, keyID)
} else {
// save the verified keyID only if verification passed
signingKeys[keyID] = true
log.Info("Verified with key", "role", delegatedRole, "ID", keyID)
}
}
// check if the amount of valid signatures is enough
if len(signingKeys) < roleThreshold {
log.Info("Verifying failed, not enough signatures", "role", delegatedRole, "got", len(signingKeys), "want", roleThreshold)
return &ErrUnsignedMetadata{Msg: fmt.Sprintf("Verifying %s failed, not enough signatures, got %d, want %d", delegatedRole, len(signingKeys), roleThreshold)}
}
log.Info("Verified successfully", "role", delegatedRole)
return nil
}
// IsExpired returns true if metadata is expired.
// It checks if referenceTime is after Signed.Expires
func (signed *RootType) IsExpired(referenceTime time.Time) bool {
return referenceTime.After(signed.Expires)
}
// IsExpired returns true if metadata is expired.
// It checks if referenceTime is after Signed.Expires
func (signed *SnapshotType) IsExpired(referenceTime time.Time) bool {
return referenceTime.After(signed.Expires)
}
// IsExpired returns true if metadata is expired.
// It checks if referenceTime is after Signed.Expires
func (signed *TimestampType) IsExpired(referenceTime time.Time) bool {
return referenceTime.After(signed.Expires)
}
// IsExpired returns true if metadata is expired.
// It checks if referenceTime is after Signed.Expires
func (signed *TargetsType) IsExpired(referenceTime time.Time) bool {
return referenceTime.After(signed.Expires)
}
// VerifyLengthHashes checks whether the MetaFiles data matches its corresponding
// length and hashes
func (f *MetaFiles) VerifyLengthHashes(data []byte) error {
// hashes and length are optional for MetaFiles
if len(f.Hashes) > 0 {
err := verifyHashes(data, f.Hashes)
if err != nil {
return err
}
}
if f.Length != 0 {
err := verifyLength(data, f.Length)
if err != nil {
return err
}
}
return nil
}
// VerifyLengthHashes checks whether the TargetFiles data matches its corresponding
// length and hashes
func (f *TargetFiles) VerifyLengthHashes(data []byte) error {
err := verifyHashes(data, f.Hashes)
if err != nil {
return err
}
err = verifyLength(data, f.Length)
if err != nil {
return err
}
return nil
}
// Equal checks whether the source target file matches another
func (source *TargetFiles) Equal(expected TargetFiles) bool {
if source.Length == expected.Length && source.Hashes.Equal(expected.Hashes) {
return true
}
return false
}
// FromFile generate TargetFiles from file
func (t *TargetFiles) FromFile(localPath string, hashes ...string) (*TargetFiles, error) {
log.Info("Generating target file from file", "path", localPath)
// open file
in, err := os.Open(localPath)
if err != nil {
return nil, err
}
defer in.Close()
// read file
data, err := io.ReadAll(in)
if err != nil {
return nil, err
}
return t.FromBytes(localPath, data, hashes...)
}
// FromBytes generate TargetFiles from bytes
func (t *TargetFiles) FromBytes(localPath string, data []byte, hashes ...string) (*TargetFiles, error) {
log.Info("Generating target file from bytes", "path", localPath)
var hasher hash.Hash
targetFile := &TargetFiles{
Hashes: map[string]HexBytes{},
}
// use default hash algorithm if not set
if len(hashes) == 0 {
hashes = []string{"sha256"}
}
// calculate length
len, err := io.Copy(io.Discard, bytes.NewReader(data))
if err != nil {
return nil, err
}
targetFile.Length = len
for _, v := range hashes {
switch v {
case "sha256":
hasher = sha256.New()
case "sha512":
hasher = sha512.New()
default:
return nil, &ErrValue{Msg: fmt.Sprintf("failed generating TargetFile - unsupported hashing algorithm - %s", v)}
}
_, err := hasher.Write(data)
if err != nil {
return nil, err
}
targetFile.Hashes[v] = hasher.Sum(nil)
}
targetFile.Path = localPath
return targetFile, nil
}
// ClearSignatures clears Signatures
func (meta *Metadata[T]) ClearSignatures() {
log.Info("Cleared signatures")
meta.Signatures = []Signature{}
}
// IsDelegatedPath determines whether the given "targetFilepath" is in one of
// the paths that "DelegatedRole" is trusted to provide
func (role *DelegatedRole) IsDelegatedPath(targetFilepath string) (bool, error) {
if len(role.Paths) > 0 {
// standard delegations
for _, pathPattern := range role.Paths {
// A delegated role path may be an explicit path or glob
// pattern (Unix shell-style wildcards).
if isTargetInPathPattern(targetFilepath, pathPattern) {
return true, nil
}
}
} else if len(role.PathHashPrefixes) > 0 {
// hash bin delegations - calculate the hash of the filepath to determine in which bin to find the target.
targetFilepathHash := sha256.Sum256([]byte(targetFilepath))
for _, pathHashPrefix := range role.PathHashPrefixes {
if strings.HasPrefix(base64.URLEncoding.EncodeToString(targetFilepathHash[:]), pathHashPrefix) {
return true, nil
}
}
}
return false, nil
}
// Determine whether “targetpath“ matches the “pathpattern“.
func isTargetInPathPattern(targetpath string, pathpattern string) bool {
// We need to make sure that targetpath and pathpattern are pointing to
// the same directory as fnmatch doesn't threat "/" as a special symbol.
targetParts := strings.Split(targetpath, "/")
patternParts := strings.Split(pathpattern, "/")
if len(targetParts) != len(patternParts) {
return false
}
// Every part in the pathpattern could include a glob pattern, that's why
// each of the target and pathpattern parts should match.
for i := 0; i < len(targetParts); i++ {
if ok, _ := filepath.Match(patternParts[i], targetParts[i]); !ok {
return false
}
}
return true
}
// GetRolesForTarget return the names and terminating status of all
// delegated roles who are responsible for targetFilepath
func (role *Delegations) GetRolesForTarget(targetFilepath string) map[string]bool {
res := map[string]bool{}
// standard delegations
if role.Roles != nil {
for _, r := range role.Roles {
ok, err := r.IsDelegatedPath(targetFilepath)
if err == nil && ok {
res[r.Name] = r.Terminating
}
}
} else if role.SuccinctRoles != nil {
// SuccinctRoles delegations
res = role.SuccinctRoles.GetRolesForTarget(targetFilepath)
}
return res
}
// GetRolesForTarget calculate the name of the delegated role responsible for "targetFilepath".
// The target at path "targetFilepath" is assigned to a bin by casting
// the left-most "BitLength" of bits of the file path hash digest to
// int, using it as bin index between 0 and “2**BitLength - 1“.
func (role *SuccinctRoles) GetRolesForTarget(targetFilepath string) map[string]bool {
// calculate the suffixLen value based on the total number of bins in
// hex. If bit_length = 10 then numberOfBins = 1024 or bin names will
// have a suffix between "000" and "3ff" in hex and suffixLen will be 3
// meaning the third bin will have a suffix of "003"
numberOfBins := math.Pow(2, float64(role.BitLength))
// suffixLen is calculated based on "numberOfBins - 1" as the name
// of the last bin contains the number "numberOfBins -1" as a suffix.
suffixLen := len(strconv.FormatInt(int64(numberOfBins-1), 16))
targetFilepathHash := sha256.Sum256([]byte(targetFilepath))
// we can't ever need more than 4 bytes (32 bits)
hashBytes := targetFilepathHash[:4]
// right shift hash bytes, so that we only have the leftmost
// bit_length bits that we care about
shiftValue := 32 - role.BitLength
binNumber := binary.BigEndian.Uint32(hashBytes) >> shiftValue
// add zero padding if necessary and cast to hex the suffix
suffix := fmt.Sprintf("%0*x", suffixLen, binNumber)
// we consider all succinct_roles as terminating.
// for more information read TAP 15.
return map[string]bool{fmt.Sprintf("%s-%s", role.NamePrefix, suffix): true}
}
// GetRoles returns the names of all different delegated roles
func (role *SuccinctRoles) GetRoles() []string {
res := []string{}
suffixLen, numberOfBins := role.GetSuffixLen()
for binNumber := 0; binNumber < numberOfBins; binNumber++ {
suffix := fmt.Sprintf("%0*x", suffixLen, binNumber)
res = append(res, fmt.Sprintf("%s-%s", role.NamePrefix, suffix))
}
return res
}
func (role *SuccinctRoles) GetSuffixLen() (int, int) {
numberOfBins := int(math.Pow(2, float64(role.BitLength)))
return len(strconv.FormatInt(int64(numberOfBins-1), 16)), numberOfBins
}
// IsDelegatedRole returns whether the given roleName is in one of
// the delegated roles that “SuccinctRoles“ represents
func (role *SuccinctRoles) IsDelegatedRole(roleName string) bool {
suffixLen, numberOfBins := role.GetSuffixLen()
expectedPrefix := fmt.Sprintf("%s-", role.NamePrefix)
// check if the roleName prefix is what we would expect
if !strings.HasPrefix(roleName, expectedPrefix) {
return false
}
// check if the roleName suffix length is what we would expect
suffix := roleName[len(expectedPrefix):]
if len(suffix) != suffixLen {
return false
}
// make sure suffix is hex value and get bin number
value, err := strconv.ParseInt(suffix, 16, 64)
if err != nil {
return false
}
// check if the bin we calculated is indeed within the range of what we support
return (value >= 0) && (value < int64(numberOfBins))
}
// AddKey adds new signing key for delegated role "role"
// keyID: Identifier of the key to be added for “role“.
// key: Signing key to be added for “role“.
// role: Name of the role, for which “key“ is added.
func (signed *RootType) AddKey(key *Key, role string) error {
// verify role is present
if _, ok := signed.Roles[role]; !ok {
return &ErrValue{Msg: fmt.Sprintf("role %s doesn't exist", role)}
}
// add keyID to role
if !slices.Contains(signed.Roles[role].KeyIDs, key.ID()) {
signed.Roles[role].KeyIDs = append(signed.Roles[role].KeyIDs, key.ID())
}
// update Keys
signed.Keys[key.ID()] = key // TODO: should we check if we don't accidentally override an existing keyID with another key value?
return nil
}
// RevokeKey revoke key from “role“ and updates the Keys store.
// keyID: Identifier of the key to be removed for “role“.
// role: Name of the role, for which a signing key is removed.
func (signed *RootType) RevokeKey(keyID, role string) error {
// verify role is present
if _, ok := signed.Roles[role]; !ok {
return &ErrValue{Msg: fmt.Sprintf("role %s doesn't exist", role)}
}
// verify keyID is present for given role
if !slices.Contains(signed.Roles[role].KeyIDs, keyID) {
return &ErrValue{Msg: fmt.Sprintf("key with id %s is not used by %s", keyID, role)}
}
// remove keyID from role
filteredKeyIDs := []string{}
for _, k := range signed.Roles[role].KeyIDs {
if k != keyID {
filteredKeyIDs = append(filteredKeyIDs, k)
}
}
// overwrite the old keyID slice
signed.Roles[role].KeyIDs = filteredKeyIDs
// check if keyID is used by other roles too
for _, r := range signed.Roles {
if slices.Contains(r.KeyIDs, keyID) {
return nil
}
}
// delete the keyID from Keys if it's not used anywhere else
delete(signed.Keys, keyID)
return nil
}
// AddKey adds new signing key for delegated role "role"
// key: Signing key to be added for “role“.
// role: Name of the role, for which “key“ is added.
// If SuccinctRoles is used then the "role" argument can be ignored.
func (signed *TargetsType) AddKey(key *Key, role string) error {
// check if Delegations are even present
if signed.Delegations == nil {
return &ErrValue{Msg: fmt.Sprintf("delegated role %s doesn't exist", role)}
}
// standard delegated roles
if signed.Delegations.Roles != nil {
// loop through all delegated roles
isDelegatedRole := false
for i, d := range signed.Delegations.Roles {
// if role is found
if d.Name == role {
isDelegatedRole = true
// add key if keyID is not already part of keyIDs for that role
if !slices.Contains(d.KeyIDs, key.ID()) {
signed.Delegations.Roles[i].KeyIDs = append(signed.Delegations.Roles[i].KeyIDs, key.ID())
signed.Delegations.Keys[key.ID()] = key // TODO: should we check if we don't accidentally override an existing keyID with another key value?
return nil
}
log.Info("Delegated role already has keyID", "role", role, "ID", key.ID())
}
}
if !isDelegatedRole {
return &ErrValue{Msg: fmt.Sprintf("delegated role %s doesn't exist", role)}
}
} else if signed.Delegations.SuccinctRoles != nil {
// add key if keyID is not already part of keyIDs for the SuccinctRoles role
if !slices.Contains(signed.Delegations.SuccinctRoles.KeyIDs, key.ID()) {
signed.Delegations.SuccinctRoles.KeyIDs = append(signed.Delegations.SuccinctRoles.KeyIDs, key.ID())
signed.Delegations.Keys[key.ID()] = key // TODO: should we check if we don't accidentally override an existing keyID with another key value?
return nil
}
log.Info("SuccinctRoles role already has keyID", "ID", key.ID())
}
signed.Delegations.Keys[key.ID()] = key // TODO: should we check if we don't accidentally override an existing keyID with another key value?
return nil
}
// RevokeKey revokes key from delegated role "role" and updates the delegations key store
// keyID: Identifier of the key to be removed for “role“.
// role: Name of the role, for which a signing key is removed.
func (signed *TargetsType) RevokeKey(keyID string, role string) error {
// check if Delegations are even present
if signed.Delegations == nil {
return &ErrValue{Msg: fmt.Sprintf("delegated role %s doesn't exist", role)}
}
// standard delegated roles
if signed.Delegations.Roles != nil {
// loop through all delegated roles
for i, d := range signed.Delegations.Roles {
// if role is found
if d.Name == role {
// check if keyID is present in keyIDs for that role
if !slices.Contains(d.KeyIDs, keyID) {
return &ErrValue{Msg: fmt.Sprintf("key with id %s is not used by %s", keyID, role)}
}
// remove keyID from role
filteredKeyIDs := []string{}
for _, k := range signed.Delegations.Roles[i].KeyIDs {
if k != keyID {
filteredKeyIDs = append(filteredKeyIDs, k)
}
}
// overwrite the old keyID slice for that role
signed.Delegations.Roles[i].KeyIDs = filteredKeyIDs
// check if keyID is used by other roles too
for _, r := range signed.Delegations.Roles {
if slices.Contains(r.KeyIDs, keyID) {
return nil
}
}
// delete the keyID from Keys if it's not used anywhere else
delete(signed.Delegations.Keys, keyID)
return nil
}
}
// we haven't found the delegated role
return &ErrValue{Msg: fmt.Sprintf("delegated role %s doesn't exist", role)}
} else if signed.Delegations.SuccinctRoles != nil {
// check if keyID is used by SuccinctRoles role
if !slices.Contains(signed.Delegations.SuccinctRoles.KeyIDs, keyID) {
return &ErrValue{Msg: fmt.Sprintf("key with id %s is not used by SuccinctRoles", keyID)}
}
// remove keyID from the SuccinctRoles role
filteredKeyIDs := []string{}
for _, k := range signed.Delegations.SuccinctRoles.KeyIDs {
if k != keyID {
filteredKeyIDs = append(filteredKeyIDs, k)
}
}
// overwrite the old keyID slice for SuccinctRoles role
signed.Delegations.SuccinctRoles.KeyIDs = filteredKeyIDs
// delete the keyID from Keys since it can not be used anywhere else
delete(signed.Delegations.Keys, keyID)
return nil
}
return &ErrValue{Msg: fmt.Sprintf("delegated role %s doesn't exist", role)}
}
// Equal checks whether one hash set equals another
func (source Hashes) Equal(expected Hashes) bool {
hashChecked := false
for typ, hash := range expected {
if h, ok := source[typ]; ok {
// hash type match found
hashChecked = true
if !hmac.Equal(h, hash) {
// hash values don't match
return false
}
}
}
return hashChecked
}
// verifyLength verifies if the passed data has the corresponding length
func verifyLength(data []byte, length int64) error {
len, err := io.Copy(io.Discard, bytes.NewReader(data))
if err != nil {
return err
}
if length != len {
return &ErrLengthOrHashMismatch{Msg: fmt.Sprintf("length verification failed - expected %d, got %d", length, len)}
}
return nil
}
// verifyHashes verifies if the hash of the passed data corresponds to it
func verifyHashes(data []byte, hashes Hashes) error {
var hasher hash.Hash
for k, v := range hashes {
switch k {
case "sha256":
hasher = sha256.New()
case "sha512":
hasher = sha512.New()
default:
return &ErrLengthOrHashMismatch{Msg: fmt.Sprintf("hash verification failed - unknown hashing algorithm - %s", k)}
}
hasher.Write(data)
if hex.EncodeToString(v) != hex.EncodeToString(hasher.Sum(nil)) {
return &ErrLengthOrHashMismatch{Msg: fmt.Sprintf("hash verification failed - mismatch for algorithm %s", k)}
}
}
return nil
}
// fromBytes return a *Metadata[T] object from bytes and verifies
// that the data corresponds to the caller struct type
func fromBytes[T Roles](data []byte) (*Metadata[T], error) {
meta := &Metadata[T]{}
// verify that the type we used to create the object is the same as the type of the metadata file
if err := checkType[T](data); err != nil {
return nil, err
}
// if all is okay, unmarshal meta to the desired Metadata[T] type
if err := json.Unmarshal(data, meta); err != nil {
return nil, err
}
// Make sure signature key IDs are unique
if err := checkUniqueSignatures(*meta); err != nil {
return nil, err
}
return meta, nil
}
// checkUniqueSignatures verifies if the signature key IDs are unique for that metadata
func checkUniqueSignatures[T Roles](meta Metadata[T]) error {
signatures := []string{}
for _, sig := range meta.Signatures {
if slices.Contains(signatures, sig.KeyID) {
return &ErrValue{Msg: fmt.Sprintf("multiple signatures found for key ID %s", sig.KeyID)}
}
signatures = append(signatures, sig.KeyID)
}
return nil
}
// checkType verifies if the generic type used to create the object is the same as the type of the metadata file in bytes
func checkType[T Roles](data []byte) error {
var m map[string]any
i := any(new(T))
if err := json.Unmarshal(data, &m); err != nil {
return err
}
signedType := m["signed"].(map[string]any)["_type"].(string)
switch i.(type) {
case *RootType:
if ROOT != signedType {
return &ErrValue{Msg: fmt.Sprintf("expected metadata type %s, got - %s", ROOT, signedType)}
}
case *SnapshotType:
if SNAPSHOT != signedType {
return &ErrValue{Msg: fmt.Sprintf("expected metadata type %s, got - %s", SNAPSHOT, signedType)}
}
case *TimestampType:
if TIMESTAMP != signedType {
return &ErrValue{Msg: fmt.Sprintf("expected metadata type %s, got - %s", TIMESTAMP, signedType)}
}
case *TargetsType:
if TARGETS != signedType {
return &ErrValue{Msg: fmt.Sprintf("expected metadata type %s, got - %s", TARGETS, signedType)}
}
default:
return &ErrValue{Msg: fmt.Sprintf("unrecognized metadata type - %s", signedType)}
}
// all okay
return nil
}