-
Notifications
You must be signed in to change notification settings - Fork 293
Expand file tree
/
Copy path_payload.py
More file actions
1875 lines (1515 loc) · 64.9 KB
/
_payload.py
File metadata and controls
1875 lines (1515 loc) · 64.9 KB
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 the TUF contributors
# SPDX-License-Identifier: MIT OR Apache-2.0
"""Helper classes for low-level Metadata API."""
from __future__ import annotations
import abc
import fnmatch
import hashlib
import io
import logging
import sys
from dataclasses import dataclass
from datetime import datetime, timezone
from typing import (
IO,
TYPE_CHECKING,
Any,
ClassVar,
TypeVar,
)
from securesystemslib import exceptions as sslib_exceptions
from securesystemslib.signer import Key, Signature
from tuf.api.exceptions import LengthOrHashMismatchError, UnsignedMetadataError
if TYPE_CHECKING:
from collections.abc import Iterator
_ROOT = "root"
_SNAPSHOT = "snapshot"
_TARGETS = "targets"
_TIMESTAMP = "timestamp"
_DEFAULT_HASH_ALGORITHM = "sha256"
_BLAKE_HASH_ALGORITHM = "blake2b-256"
# We aim to support SPECIFICATION_VERSION and require the input metadata
# files to have the same major version (the first number) as ours.
SPECIFICATION_VERSION = ["1", "0", "31"]
TOP_LEVEL_ROLE_NAMES = {_ROOT, _TIMESTAMP, _SNAPSHOT, _TARGETS}
logger = logging.getLogger(__name__)
# T is a Generic type constraint for container payloads
T = TypeVar("T", "Root", "Timestamp", "Snapshot", "Targets")
def _get_digest(algo: str) -> Any: # noqa: ANN401
"""New digest helper to support custom "blake2b-256" algo name."""
if algo == _BLAKE_HASH_ALGORITHM:
return hashlib.blake2b(digest_size=32)
return hashlib.new(algo)
def _hash_bytes(data: bytes, algo: str) -> str:
"""Returns hexdigest for data using algo."""
digest = _get_digest(algo)
digest.update(data)
return digest.hexdigest()
def _hash_file(f: IO[bytes], algo: str) -> str:
"""Returns hexdigest for file using algo."""
f.seek(0)
if sys.version_info >= (3, 11):
digest = hashlib.file_digest(f, lambda: _get_digest(algo)) # type: ignore[arg-type]
else:
# Fallback for older Pythons. Chunk size is taken from the previously
# used and now deprecated `securesystemslib.hash.digest_fileobject`.
digest = _get_digest(algo)
for chunk in iter(lambda: f.read(4096), b""):
digest.update(chunk)
return digest.hexdigest()
class Signed(metaclass=abc.ABCMeta):
"""A base class for the signed part of TUF metadata.
Objects with base class Signed are usually included in a ``Metadata`` object
on the signed attribute. This class provides attributes and methods that
are common for all TUF metadata types (roles).
*All parameters named below are not just constructor arguments but also
instance attributes.*
Args:
version: Metadata version number. If None, then 1 is assigned.
spec_version: Supported TUF specification version. If None, then the
version currently supported by the library is assigned.
expires: Metadata expiry date in UTC timezone. If None, then current
date and time is assigned.
unrecognized_fields: Dictionary of all attributes that are not managed
by TUF Metadata API
Raises:
ValueError: Invalid arguments.
"""
# type is required for static reference without changing the API
type: ClassVar[str] = "signed"
# _type and type are identical: 1st replicates file format, 2nd passes lint
@property
def _type(self) -> str:
return self.type
@property
def expires(self) -> datetime:
"""Get the metadata expiry date."""
return self._expires
@expires.setter
def expires(self, value: datetime) -> None:
"""Set the metadata expiry date.
# Use 'datetime' module to e.g. expire in seven days from now
obj.expires = now(timezone.utc) + timedelta(days=7)
"""
self._expires = value.replace(microsecond=0)
if self._expires.tzinfo is None:
# Naive datetime: just make it UTC
self._expires = self._expires.replace(tzinfo=timezone.utc)
elif self._expires.tzinfo != timezone.utc:
raise ValueError(f"Expected tz UTC, not {self._expires.tzinfo}")
# NOTE: Signed is a stupid name, because this might not be signed yet, but
# we keep it to match spec terminology (I often refer to this as "payload",
# or "inner metadata")
def __init__(
self,
version: int | None,
spec_version: str | None,
expires: datetime | None,
unrecognized_fields: dict[str, Any] | None,
):
if spec_version is None:
spec_version = ".".join(SPECIFICATION_VERSION)
# Accept semver (X.Y.Z) but also X.Y for legacy compatibility
spec_list = spec_version.split(".")
if len(spec_list) not in [2, 3] or not all(
el.isdigit() for el in spec_list
):
raise ValueError(f"Failed to parse spec_version {spec_version}")
# major version must match
if spec_list[0] != SPECIFICATION_VERSION[0]:
raise ValueError(f"Unsupported spec_version {spec_version}")
self.spec_version = spec_version
self.expires = expires or datetime.now(timezone.utc)
if version is None:
version = 1
elif version <= 0:
raise ValueError(f"version must be > 0, got {version}")
self.version = version
if unrecognized_fields is None:
unrecognized_fields = {}
self.unrecognized_fields = unrecognized_fields
def __eq__(self, other: object) -> bool:
if not isinstance(other, Signed):
return False
return (
self.type == other.type
and self.version == other.version
and self.spec_version == other.spec_version
and self.expires == other.expires
and self.unrecognized_fields == other.unrecognized_fields
)
def __hash__(self) -> int:
return hash(
(
self.type,
self.version,
self.spec_version,
self.expires,
self.unrecognized_fields,
)
)
@abc.abstractmethod
def to_dict(self) -> dict[str, Any]:
"""Serialize and return a dict representation of self."""
raise NotImplementedError
@classmethod
@abc.abstractmethod
def from_dict(cls, signed_dict: dict[str, Any]) -> Signed:
"""Deserialization helper, creates object from json/dict
representation.
"""
raise NotImplementedError
@classmethod
def _common_fields_from_dict(
cls, signed_dict: dict[str, Any]
) -> tuple[int, str, datetime]:
"""Return common fields of ``Signed`` instances from the passed dict
representation, and returns an ordered list to be passed as leading
positional arguments to a subclass constructor.
See ``{Root, Timestamp, Snapshot, Targets}.from_dict``
methods for usage.
"""
_type = signed_dict.pop("_type")
if _type != cls.type:
raise ValueError(f"Expected type {cls.type}, got {_type}")
version = signed_dict.pop("version")
spec_version = signed_dict.pop("spec_version")
expires_str = signed_dict.pop("expires")
# Convert 'expires' TUF metadata string to a datetime object, which is
# what the constructor expects and what we store. The inverse operation
# is implemented in '_common_fields_to_dict'.
expires = datetime.strptime(expires_str, "%Y-%m-%dT%H:%M:%SZ").replace(
tzinfo=timezone.utc
)
return version, spec_version, expires
def _common_fields_to_dict(self) -> dict[str, Any]:
"""Return a dict representation of common fields of
``Signed`` instances.
See ``{Root, Timestamp, Snapshot, Targets}.to_dict`` methods for usage.
"""
return {
"_type": self._type,
"version": self.version,
"spec_version": self.spec_version,
"expires": self.expires.strftime("%Y-%m-%dT%H:%M:%SZ"),
**self.unrecognized_fields,
}
def is_expired(self, reference_time: datetime | None = None) -> bool:
"""Check metadata expiration against a reference time.
Args:
reference_time: Time to check expiration date against. A naive
datetime in UTC expected. Default is current UTC date and time.
Returns:
``True`` if expiration time is less than the reference time.
"""
if reference_time is None:
reference_time = datetime.now(timezone.utc)
return reference_time >= self.expires
class Role:
"""Container that defines which keys are required to sign roles metadata.
Role defines how many keys are required to successfully sign the roles
metadata, and which keys are accepted.
*All parameters named below are not just constructor arguments but also
instance attributes.*
Args:
keyids: Roles signing key identifiers.
threshold: Number of keys required to sign this role's metadata.
unrecognized_fields: Dictionary of all attributes that are not managed
by TUF Metadata API
Raises:
ValueError: Invalid arguments.
"""
def __init__(
self,
keyids: list[str],
threshold: int,
unrecognized_fields: dict[str, Any] | None = None,
):
if len(set(keyids)) != len(keyids):
raise ValueError(f"Nonunique keyids: {keyids}")
if threshold < 1:
raise ValueError("threshold should be at least 1!")
self.keyids = keyids
self.threshold = threshold
if unrecognized_fields is None:
unrecognized_fields = {}
self.unrecognized_fields = unrecognized_fields
def __eq__(self, other: object) -> bool:
if not isinstance(other, Role):
return False
return (
self.keyids == other.keyids
and self.threshold == other.threshold
and self.unrecognized_fields == other.unrecognized_fields
)
def __hash__(self) -> int:
return hash((self.keyids, self.threshold, self.unrecognized_fields))
@classmethod
def from_dict(cls, role_dict: dict[str, Any]) -> Role:
"""Create ``Role`` object from its json/dict representation.
Raises:
ValueError, KeyError: Invalid arguments.
"""
keyids = role_dict.pop("keyids")
threshold = role_dict.pop("threshold")
# All fields left in the role_dict are unrecognized.
return cls(keyids, threshold, role_dict)
def to_dict(self) -> dict[str, Any]:
"""Return the dictionary representation of self."""
return {
"keyids": self.keyids,
"threshold": self.threshold,
**self.unrecognized_fields,
}
@dataclass
class VerificationResult:
"""Signature verification result for delegated role metadata.
Attributes:
threshold: Number of required signatures.
signed: dict of keyid to Key, containing keys that have signed.
unsigned: dict of keyid to Key, containing keys that have not signed.
"""
threshold: int
signed: dict[str, Key]
unsigned: dict[str, Key]
def __bool__(self) -> bool:
return self.verified
@property
def verified(self) -> bool:
"""True if threshold of signatures is met."""
return len(self.signed) >= self.threshold
@property
def missing(self) -> int:
"""Number of additional signatures required to reach threshold."""
return max(0, self.threshold - len(self.signed))
@dataclass
class RootVerificationResult:
"""Signature verification result for root metadata.
Root must be verified by itself and the previous root version. This
dataclass represents both results. For the edge case of first version
of root, these underlying results are identical.
Note that `signed` and `unsigned` correctness requires the underlying
VerificationResult keys to not conflict (no reusing the same keyid for
different keys).
Attributes:
first: First underlying VerificationResult
second: Second underlying VerificationResult
"""
first: VerificationResult
second: VerificationResult
def __bool__(self) -> bool:
return self.verified
@property
def verified(self) -> bool:
"""True if threshold of signatures is met in both underlying
VerificationResults.
"""
return self.first.verified and self.second.verified
@property
def signed(self) -> dict[str, Key]:
"""Dictionary of all signing keys that have signed, from both
VerificationResults.
return a union of all signed (in python<3.9 this requires
dict unpacking)
"""
return {**self.first.signed, **self.second.signed}
@property
def unsigned(self) -> dict[str, Key]:
"""Dictionary of all signing keys that have not signed, from both
VerificationResults.
return a union of all unsigned (in python<3.9 this requires
dict unpacking)
"""
return {**self.first.unsigned, **self.second.unsigned}
class _DelegatorMixin(metaclass=abc.ABCMeta):
"""Class that implements verify_delegate() for Root and Targets"""
@abc.abstractmethod
def get_delegated_role(self, delegated_role: str) -> Role:
"""Return the role object for the given delegated role.
Raises ValueError if delegated_role is not actually delegated.
"""
raise NotImplementedError
@abc.abstractmethod
def get_key(self, keyid: str) -> Key:
"""Return the key object for the given keyid.
Raises ValueError if key is not found.
"""
raise NotImplementedError
def get_verification_result(
self,
delegated_role: str,
payload: bytes,
signatures: dict[str, Signature],
) -> VerificationResult:
"""Return signature threshold verification result for delegated role.
NOTE: Unlike `verify_delegate()` this method does not raise, if the
role metadata is not fully verified.
Args:
delegated_role: Name of the delegated role to verify
payload: Signed payload bytes for the delegated role
signatures: Signatures over payload bytes
Raises:
ValueError: no delegation was found for ``delegated_role``.
"""
role = self.get_delegated_role(delegated_role)
signed = {}
unsigned = {}
for keyid in role.keyids:
try:
key = self.get_key(keyid)
except ValueError:
logger.info("No key for keyid %s", keyid)
continue
if keyid not in signatures:
unsigned[keyid] = key
logger.info("No signature for keyid %s", keyid)
continue
sig = signatures[keyid]
try:
key.verify_signature(sig, payload)
signed[keyid] = key
except sslib_exceptions.UnverifiedSignatureError:
unsigned[keyid] = key
logger.info("Key %s failed to verify %s", keyid, delegated_role)
return VerificationResult(role.threshold, signed, unsigned)
def verify_delegate(
self,
delegated_role: str,
payload: bytes,
signatures: dict[str, Signature],
) -> None:
"""Verify signature threshold for delegated role.
Verify that there are enough valid ``signatures`` over ``payload``, to
meet the threshold of keys for ``delegated_role``, as defined by the
delegator (``self``).
Args:
delegated_role: Name of the delegated role to verify
payload: Signed payload bytes for the delegated role
signatures: Signatures over payload bytes
Raises:
UnsignedMetadataError: ``delegated_role`` was not signed with
required threshold of keys for ``role_name``.
ValueError: no delegation was found for ``delegated_role``.
"""
result = self.get_verification_result(
delegated_role, payload, signatures
)
if not result:
raise UnsignedMetadataError(
f"{delegated_role} was signed by {len(result.signed)}/"
f"{result.threshold} keys"
)
class Root(Signed, _DelegatorMixin):
"""A container for the signed part of root metadata.
Parameters listed below are also instance attributes.
Args:
version: Metadata version number. Default is 1.
spec_version: Supported TUF specification version. Default is the
version currently supported by the library.
expires: Metadata expiry date. Default is current date and time.
keys: Dictionary of keyids to Keys. Defines the keys used in ``roles``.
Default is empty dictionary.
roles: Dictionary of role names to Roles. Defines which keys are
required to sign the metadata for a specific role. Default is
a dictionary of top level roles without keys and threshold of 1.
consistent_snapshot: ``True`` if repository supports consistent
snapshots. Default is True.
unrecognized_fields: Dictionary of all attributes that are not managed
by TUF Metadata API
Raises:
ValueError: Invalid arguments.
"""
type = _ROOT
def __init__(
self,
version: int | None = None,
spec_version: str | None = None,
expires: datetime | None = None,
keys: dict[str, Key] | None = None,
roles: dict[str, Role] | None = None,
consistent_snapshot: bool | None = True,
unrecognized_fields: dict[str, Any] | None = None,
):
super().__init__(version, spec_version, expires, unrecognized_fields)
self.consistent_snapshot = consistent_snapshot
self.keys = keys if keys is not None else {}
if roles is None:
roles = {r: Role([], 1) for r in TOP_LEVEL_ROLE_NAMES}
elif set(roles) != TOP_LEVEL_ROLE_NAMES:
raise ValueError("Role names must be the top-level metadata roles")
self.roles = roles
def __eq__(self, other: object) -> bool:
if not isinstance(other, Root):
return False
return (
super().__eq__(other)
and self.keys == other.keys
and self.roles == other.roles
and self.consistent_snapshot == other.consistent_snapshot
)
def __hash__(self) -> int:
return hash(
(
super().__hash__(),
self.keys,
self.roles,
self.consistent_snapshot,
self.unrecognized_fields,
)
)
@classmethod
def from_dict(cls, signed_dict: dict[str, Any]) -> Root:
"""Create ``Root`` object from its json/dict representation.
Raises:
ValueError, KeyError, TypeError: Invalid arguments.
"""
common_args = cls._common_fields_from_dict(signed_dict)
consistent_snapshot = signed_dict.pop("consistent_snapshot", None)
keys = signed_dict.pop("keys")
roles = signed_dict.pop("roles")
for keyid, key_dict in keys.items():
keys[keyid] = Key.from_dict(keyid, key_dict)
for role_name, role_dict in roles.items():
roles[role_name] = Role.from_dict(role_dict)
# All fields left in the signed_dict are unrecognized.
return cls(*common_args, keys, roles, consistent_snapshot, signed_dict)
def to_dict(self) -> dict[str, Any]:
"""Return the dict representation of self."""
root_dict = self._common_fields_to_dict()
keys = {keyid: key.to_dict() for (keyid, key) in self.keys.items()}
roles = {}
for role_name, role in self.roles.items():
roles[role_name] = role.to_dict()
if self.consistent_snapshot is not None:
root_dict["consistent_snapshot"] = self.consistent_snapshot
root_dict.update(
{
"keys": keys,
"roles": roles,
}
)
return root_dict
def add_key(self, key: Key, role: str) -> None:
"""Add new signing key for delegated role ``role``.
Args:
key: Signing key to be added for ``role``.
role: Name of the role, for which ``key`` is added.
Raises:
ValueError: If the argument order is wrong or if ``role`` doesn't
exist.
"""
# Verify that our users are not using the old argument order.
if isinstance(role, Key):
raise ValueError("Role must be a string, not a Key instance")
if role not in self.roles:
raise ValueError(f"Role {role} doesn't exist")
if key.keyid not in self.roles[role].keyids:
self.roles[role].keyids.append(key.keyid)
self.keys[key.keyid] = key
def revoke_key(self, keyid: str, role: str) -> None:
"""Revoke key from ``role`` and updates the key store.
Args:
keyid: Identifier of the key to be removed for ``role``.
role: Name of the role, for which a signing key is removed.
Raises:
ValueError: If ``role`` doesn't exist or if ``role`` doesn't include
the key.
"""
if role not in self.roles:
raise ValueError(f"Role {role} doesn't exist")
if keyid not in self.roles[role].keyids:
raise ValueError(f"Key with id {keyid} is not used by {role}")
self.roles[role].keyids.remove(keyid)
for keyinfo in self.roles.values():
if keyid in keyinfo.keyids:
return
del self.keys[keyid]
def get_delegated_role(self, delegated_role: str) -> Role:
"""Return the role object for the given delegated role.
Raises ValueError if delegated_role is not actually delegated.
"""
if delegated_role not in self.roles:
raise ValueError(f"Delegated role {delegated_role} not found")
return self.roles[delegated_role]
def get_key(self, keyid: str) -> Key:
if keyid not in self.keys:
raise ValueError(f"Key {keyid} not found")
return self.keys[keyid]
def get_root_verification_result(
self,
previous: Root | None,
payload: bytes,
signatures: dict[str, Signature],
) -> RootVerificationResult:
"""Return signature threshold verification result for two root roles.
Verify root metadata with two roles (`self` and optionally `previous`).
If the repository has no root role versions yet, `previous` can be left
None. In all other cases, `previous` must be the previous version of
the Root.
NOTE: Unlike `verify_delegate()` this method does not raise, if the
root metadata is not fully verified.
Args:
previous: The previous `Root` to verify payload with, or None
payload: Signed payload bytes for root
signatures: Signatures over payload bytes
Raises:
ValueError: no delegation was found for ``root`` or given Root
versions are not sequential.
"""
if previous is None:
previous = self
elif self.version != previous.version + 1:
versions = f"v{previous.version} and v{self.version}"
raise ValueError(
f"Expected sequential root versions, got {versions}."
)
return RootVerificationResult(
previous.get_verification_result(Root.type, payload, signatures),
self.get_verification_result(Root.type, payload, signatures),
)
class BaseFile:
"""A base class of ``MetaFile`` and ``TargetFile``.
Encapsulates common static methods for length and hash verification.
"""
@staticmethod
def _verify_hashes(
data: bytes | IO[bytes], expected_hashes: dict[str, str]
) -> None:
"""Verify that the hash of ``data`` matches ``expected_hashes``."""
for algo, exp_hash in expected_hashes.items():
try:
if isinstance(data, bytes):
observed_hash = _hash_bytes(data, algo)
else:
# if data is not bytes, assume it is a file object
observed_hash = _hash_file(data, algo)
except (ValueError, TypeError) as e:
raise LengthOrHashMismatchError(
f"Unsupported algorithm '{algo}'"
) from e
if observed_hash != exp_hash:
raise LengthOrHashMismatchError(
f"Observed hash {observed_hash} does not match "
f"expected hash {exp_hash}"
)
@staticmethod
def _verify_length(data: bytes | IO[bytes], expected_length: int) -> None:
"""Verify that the length of ``data`` matches ``expected_length``."""
if isinstance(data, bytes):
observed_length = len(data)
else:
# if data is not bytes, assume it is a file object
data.seek(0, io.SEEK_END)
observed_length = data.tell()
if observed_length != expected_length:
raise LengthOrHashMismatchError(
f"Observed length {observed_length} does not match "
f"expected length {expected_length}"
)
@staticmethod
def _validate_hashes(hashes: dict[str, str]) -> None:
if not hashes:
raise ValueError("Hashes must be a non empty dictionary")
for key, value in hashes.items():
if not (isinstance(key, str) and isinstance(value, str)):
raise TypeError("Hashes items must be strings")
@staticmethod
def _validate_length(length: int) -> None:
if length < 0:
raise ValueError(f"Length must be >= 0, got {length}")
@staticmethod
def _get_length_and_hashes(
data: bytes | IO[bytes], hash_algorithms: list[str] | None
) -> tuple[int, dict[str, str]]:
"""Calculate length and hashes of ``data``."""
if isinstance(data, bytes):
length = len(data)
else:
data.seek(0, io.SEEK_END)
length = data.tell()
hashes = {}
if hash_algorithms is None:
hash_algorithms = [_DEFAULT_HASH_ALGORITHM]
for algorithm in hash_algorithms:
try:
if isinstance(data, bytes):
hashes[algorithm] = _hash_bytes(data, algorithm)
else:
hashes[algorithm] = _hash_file(data, algorithm)
except (ValueError, TypeError) as e:
raise ValueError(f"Unsupported algorithm '{algorithm}'") from e
return (length, hashes)
class MetaFile(BaseFile):
"""A container with information about a particular metadata file.
*All parameters named below are not just constructor arguments but also
instance attributes.*
Args:
version: Version of the metadata file.
length: Length of the metadata file in bytes.
hashes: Dictionary of hash algorithm names to hashes of the metadata
file content.
unrecognized_fields: Dictionary of all attributes that are not managed
by TUF Metadata API
Raises:
ValueError, TypeError: Invalid arguments.
"""
def __init__(
self,
version: int = 1,
length: int | None = None,
hashes: dict[str, str] | None = None,
unrecognized_fields: dict[str, Any] | None = None,
):
if version <= 0:
raise ValueError(f"Metafile version must be > 0, got {version}")
if length is not None:
self._validate_length(length)
if hashes is not None:
self._validate_hashes(hashes)
self.version = version
self.length = length
self.hashes = hashes
if unrecognized_fields is None:
unrecognized_fields = {}
self.unrecognized_fields = unrecognized_fields
def __eq__(self, other: object) -> bool:
if not isinstance(other, MetaFile):
return False
return (
self.version == other.version
and self.length == other.length
and self.hashes == other.hashes
and self.unrecognized_fields == other.unrecognized_fields
)
def __hash__(self) -> int:
return hash(
(self.version, self.length, self.hashes, self.unrecognized_fields)
)
@classmethod
def from_dict(cls, meta_dict: dict[str, Any]) -> MetaFile:
"""Create ``MetaFile`` object from its json/dict representation.
Raises:
ValueError, KeyError: Invalid arguments.
"""
version = meta_dict.pop("version")
length = meta_dict.pop("length", None)
hashes = meta_dict.pop("hashes", None)
# All fields left in the meta_dict are unrecognized.
return cls(version, length, hashes, meta_dict)
@classmethod
def from_data(
cls,
version: int,
data: bytes | IO[bytes],
hash_algorithms: list[str],
) -> MetaFile:
"""Creates MetaFile object from bytes.
This constructor should only be used if hashes are wanted.
By default, MetaFile(ver) should be used.
Args:
version: Version of the metadata file.
data: Metadata bytes that the metafile represents.
hash_algorithms: Hash algorithms to create the hashes with. If not
specified, "sha256" is used.
Raises:
ValueError: The hash algorithms list contains an unsupported
algorithm.
"""
length, hashes = cls._get_length_and_hashes(data, hash_algorithms)
return cls(version, length, hashes)
def to_dict(self) -> dict[str, Any]:
"""Return the dictionary representation of self."""
res_dict: dict[str, Any] = {
"version": self.version,
**self.unrecognized_fields,
}
if self.length is not None:
res_dict["length"] = self.length
if self.hashes is not None:
res_dict["hashes"] = self.hashes
return res_dict
def verify_length_and_hashes(self, data: bytes | IO[bytes]) -> None:
"""Verify that the length and hashes of ``data`` match expected values.
Args:
data: File object or its content in bytes.
Raises:
LengthOrHashMismatchError: Calculated length or hashes do not
match expected values or hash algorithm is not supported.
"""
if self.length is not None:
self._verify_length(data, self.length)
if self.hashes is not None:
self._verify_hashes(data, self.hashes)
class Timestamp(Signed):
"""A container for the signed part of timestamp metadata.
TUF file format uses a dictionary to contain the snapshot information:
this is not the case with ``Timestamp.snapshot_meta`` which is a
``MetaFile``.
*All parameters named below are not just constructor arguments but also
instance attributes.*
Args:
version: Metadata version number. Default is 1.
spec_version: Supported TUF specification version. Default is the
version currently supported by the library.
expires: Metadata expiry date. Default is current date and time.
unrecognized_fields: Dictionary of all attributes that are not managed
by TUF Metadata API
snapshot_meta: Meta information for snapshot metadata. Default is a
MetaFile with version 1.
Raises:
ValueError: Invalid arguments.
"""
type = _TIMESTAMP
def __init__(
self,
version: int | None = None,
spec_version: str | None = None,
expires: datetime | None = None,
snapshot_meta: MetaFile | None = None,
unrecognized_fields: dict[str, Any] | None = None,
):
super().__init__(version, spec_version, expires, unrecognized_fields)
self.snapshot_meta = snapshot_meta or MetaFile(1)
def __eq__(self, other: object) -> bool:
if not isinstance(other, Timestamp):
return False
return (
super().__eq__(other) and self.snapshot_meta == other.snapshot_meta
)
def __hash__(self) -> int:
return hash((super().__hash__(), self.snapshot_meta))
@classmethod
def from_dict(cls, signed_dict: dict[str, Any]) -> Timestamp:
"""Create ``Timestamp`` object from its json/dict representation.
Raises:
ValueError, KeyError: Invalid arguments.
"""
common_args = cls._common_fields_from_dict(signed_dict)
meta_dict = signed_dict.pop("meta")
snapshot_meta = MetaFile.from_dict(meta_dict["snapshot.json"])
# All fields left in the timestamp_dict are unrecognized.
return cls(*common_args, snapshot_meta, signed_dict)
def to_dict(self) -> dict[str, Any]:
"""Return the dict representation of self."""
res_dict = self._common_fields_to_dict()
res_dict["meta"] = {"snapshot.json": self.snapshot_meta.to_dict()}
return res_dict
class Snapshot(Signed):
"""A container for the signed part of snapshot metadata.
Snapshot contains information about all target Metadata files.