2021-11-26 14:50:43 +00:00
|
|
|
# This file is part of the Trezor project.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2012-2022 SatoshiLabs and contributors
|
|
|
|
#
|
|
|
|
# This library is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# as published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the License along with this library.
|
|
|
|
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
|
|
|
|
|
2020-01-03 12:16:33 +00:00
|
|
|
import struct
|
|
|
|
from enum import Enum
|
2021-11-15 12:23:18 +00:00
|
|
|
from hashlib import blake2s
|
2020-01-03 12:16:33 +00:00
|
|
|
from typing import Any, List, Optional
|
|
|
|
|
|
|
|
import click
|
|
|
|
import construct as c
|
|
|
|
|
2020-09-01 09:04:20 +00:00
|
|
|
from .. import cosi, firmware
|
2020-01-03 12:16:33 +00:00
|
|
|
|
|
|
|
SYM_OK = click.style("\u2714", fg="green")
|
|
|
|
SYM_FAIL = click.style("\u274c", fg="red")
|
|
|
|
|
|
|
|
|
|
|
|
class Status(Enum):
|
|
|
|
VALID = click.style("VALID", fg="green", bold=True)
|
|
|
|
INVALID = click.style("INVALID", fg="red", bold=True)
|
|
|
|
MISSING = click.style("MISSING", fg="blue", bold=True)
|
|
|
|
DEVEL = click.style("DEVEL", fg="red", bold=True)
|
|
|
|
|
feat(python): add full type information
WIP - typing the trezorctl apps
typing functions trezorlib/cli
addressing most of mypy issue for trezorlib apps and _internal folder
fixing broken device tests by changing asserts in debuglink.py
addressing most of mypy issues in trezorlib/cli folder
adding types to some untyped functions, mypy section in setup.cfg
typing what can be typed, some mypy fixes, resolving circular import issues
importing type objects in "if TYPE_CHECKING:" branch
fixing CI by removing assert in emulator, better ignore comments
CI assert fix, style fixes, new config options
fixup! CI assert fix, style fixes, new config options
type fixes after rebasing on master
fixing python3.6 and 3.7 unittests by importing Literal from typing_extensions
couple mypy and style fixes
fixes and improvements from code review
silencing all but one mypy issues
trial of typing the tools.expect function
fixup! trial of typing the tools.expect function
@expect and @session decorators correctly type-checked
Optional args in CLI where relevant, not using general list/tuple/dict where possible
python/Makefile commands, adding them into CI, ignoring last mypy issue
documenting overload for expect decorator, two mypy fixes coming from that
black style fix
improved typing of decorators, pyright config file
addressing or ignoring pyright errors, replacing mypy in CI by pyright
fixing incomplete assert causing device tests to fail
pyright issue that showed in CI but not locally, printing pyright version in CI
fixup! pyright issue that showed in CI but not locally, printing pyright version in CI
unifying type:ignore statements for pyright usage
resolving PIL.Image issues, pyrightconfig not excluding anything
replacing couple asserts with TypeGuard on safe_issubclass
better error handling of usb1 import for webusb
better error handling of hid import
small typing details found out by strict pyright mode
improvements from code review
chore(python): changing List to Sequence for protobuf messages
small code changes to reflect the protobuf change to Sequence
importing TypedDict from typing_extensions to support 3.6 and 3.7
simplify _format_access_list function
fixup! simplify _format_access_list function
typing tools folder
typing helper-scripts folder
some click typing
enforcing all functions to have typed arguments
reverting the changed argument name in tools
replacing TransportType with Transport
making PinMatrixRequest.type protobuf attribute required
reverting the protobuf change, making argument into get_pin Optional
small fixes in asserts
solving the session decorator type issues
fixup! solving the session decorator type issues
improvements from code review
fixing new pyright errors introduced after version increase
changing -> Iterable to -> Sequence in enumerate_devices, change in wait_for_devices
style change in debuglink.py
chore(python): adding type annotation to Sequences in messages.py
better "self and cls" types on Transport
fixup! better "self and cls" types on Transport
fixing some easy things from strict pyright run
2021-11-03 22:12:53 +00:00
|
|
|
def is_ok(self) -> bool:
|
2020-01-03 12:16:33 +00:00
|
|
|
return self is Status.VALID or self is Status.DEVEL
|
|
|
|
|
|
|
|
|
|
|
|
VHASH_DEVEL = bytes.fromhex(
|
|
|
|
"c5b4d40cb76911392122c8d1c277937e49c69b2aaf818001ec5c7663fcce258f"
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
AnyFirmware = c.Struct(
|
|
|
|
"vendor_header" / c.Optional(firmware.VendorHeader),
|
|
|
|
"image" / c.Optional(firmware.FirmwareImage),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class ImageType(Enum):
|
|
|
|
VENDOR_HEADER = 0
|
|
|
|
BOOTLOADER = 1
|
|
|
|
FIRMWARE = 2
|
|
|
|
|
|
|
|
|
|
|
|
def _make_dev_keys(*key_bytes: bytes) -> List[bytes]:
|
|
|
|
return [k * 32 for k in key_bytes]
|
|
|
|
|
|
|
|
|
feat(python): add full type information
WIP - typing the trezorctl apps
typing functions trezorlib/cli
addressing most of mypy issue for trezorlib apps and _internal folder
fixing broken device tests by changing asserts in debuglink.py
addressing most of mypy issues in trezorlib/cli folder
adding types to some untyped functions, mypy section in setup.cfg
typing what can be typed, some mypy fixes, resolving circular import issues
importing type objects in "if TYPE_CHECKING:" branch
fixing CI by removing assert in emulator, better ignore comments
CI assert fix, style fixes, new config options
fixup! CI assert fix, style fixes, new config options
type fixes after rebasing on master
fixing python3.6 and 3.7 unittests by importing Literal from typing_extensions
couple mypy and style fixes
fixes and improvements from code review
silencing all but one mypy issues
trial of typing the tools.expect function
fixup! trial of typing the tools.expect function
@expect and @session decorators correctly type-checked
Optional args in CLI where relevant, not using general list/tuple/dict where possible
python/Makefile commands, adding them into CI, ignoring last mypy issue
documenting overload for expect decorator, two mypy fixes coming from that
black style fix
improved typing of decorators, pyright config file
addressing or ignoring pyright errors, replacing mypy in CI by pyright
fixing incomplete assert causing device tests to fail
pyright issue that showed in CI but not locally, printing pyright version in CI
fixup! pyright issue that showed in CI but not locally, printing pyright version in CI
unifying type:ignore statements for pyright usage
resolving PIL.Image issues, pyrightconfig not excluding anything
replacing couple asserts with TypeGuard on safe_issubclass
better error handling of usb1 import for webusb
better error handling of hid import
small typing details found out by strict pyright mode
improvements from code review
chore(python): changing List to Sequence for protobuf messages
small code changes to reflect the protobuf change to Sequence
importing TypedDict from typing_extensions to support 3.6 and 3.7
simplify _format_access_list function
fixup! simplify _format_access_list function
typing tools folder
typing helper-scripts folder
some click typing
enforcing all functions to have typed arguments
reverting the changed argument name in tools
replacing TransportType with Transport
making PinMatrixRequest.type protobuf attribute required
reverting the protobuf change, making argument into get_pin Optional
small fixes in asserts
solving the session decorator type issues
fixup! solving the session decorator type issues
improvements from code review
fixing new pyright errors introduced after version increase
changing -> Iterable to -> Sequence in enumerate_devices, change in wait_for_devices
style change in debuglink.py
chore(python): adding type annotation to Sequences in messages.py
better "self and cls" types on Transport
fixup! better "self and cls" types on Transport
fixing some easy things from strict pyright run
2021-11-03 22:12:53 +00:00
|
|
|
def compute_vhash(vendor_header: c.Container) -> bytes:
|
2020-01-03 12:16:33 +00:00
|
|
|
m = vendor_header.sig_m
|
|
|
|
n = vendor_header.sig_n
|
|
|
|
pubkeys = vendor_header.pubkeys
|
2020-08-09 08:40:43 +00:00
|
|
|
h = blake2s()
|
2020-01-03 12:16:33 +00:00
|
|
|
h.update(struct.pack("<BB", m, n))
|
|
|
|
for i in range(8):
|
|
|
|
if i < n:
|
|
|
|
h.update(pubkeys[i])
|
|
|
|
else:
|
|
|
|
h.update(b"\x00" * 32)
|
|
|
|
return h.digest()
|
|
|
|
|
|
|
|
|
|
|
|
def all_zero(data: bytes) -> bool:
|
|
|
|
return all(b == 0 for b in data)
|
|
|
|
|
|
|
|
|
|
|
|
def _check_signature_any(
|
|
|
|
header: c.Container, m: int, pubkeys: List[bytes], is_devel: bool
|
feat(python): add full type information
WIP - typing the trezorctl apps
typing functions trezorlib/cli
addressing most of mypy issue for trezorlib apps and _internal folder
fixing broken device tests by changing asserts in debuglink.py
addressing most of mypy issues in trezorlib/cli folder
adding types to some untyped functions, mypy section in setup.cfg
typing what can be typed, some mypy fixes, resolving circular import issues
importing type objects in "if TYPE_CHECKING:" branch
fixing CI by removing assert in emulator, better ignore comments
CI assert fix, style fixes, new config options
fixup! CI assert fix, style fixes, new config options
type fixes after rebasing on master
fixing python3.6 and 3.7 unittests by importing Literal from typing_extensions
couple mypy and style fixes
fixes and improvements from code review
silencing all but one mypy issues
trial of typing the tools.expect function
fixup! trial of typing the tools.expect function
@expect and @session decorators correctly type-checked
Optional args in CLI where relevant, not using general list/tuple/dict where possible
python/Makefile commands, adding them into CI, ignoring last mypy issue
documenting overload for expect decorator, two mypy fixes coming from that
black style fix
improved typing of decorators, pyright config file
addressing or ignoring pyright errors, replacing mypy in CI by pyright
fixing incomplete assert causing device tests to fail
pyright issue that showed in CI but not locally, printing pyright version in CI
fixup! pyright issue that showed in CI but not locally, printing pyright version in CI
unifying type:ignore statements for pyright usage
resolving PIL.Image issues, pyrightconfig not excluding anything
replacing couple asserts with TypeGuard on safe_issubclass
better error handling of usb1 import for webusb
better error handling of hid import
small typing details found out by strict pyright mode
improvements from code review
chore(python): changing List to Sequence for protobuf messages
small code changes to reflect the protobuf change to Sequence
importing TypedDict from typing_extensions to support 3.6 and 3.7
simplify _format_access_list function
fixup! simplify _format_access_list function
typing tools folder
typing helper-scripts folder
some click typing
enforcing all functions to have typed arguments
reverting the changed argument name in tools
replacing TransportType with Transport
making PinMatrixRequest.type protobuf attribute required
reverting the protobuf change, making argument into get_pin Optional
small fixes in asserts
solving the session decorator type issues
fixup! solving the session decorator type issues
improvements from code review
fixing new pyright errors introduced after version increase
changing -> Iterable to -> Sequence in enumerate_devices, change in wait_for_devices
style change in debuglink.py
chore(python): adding type annotation to Sequences in messages.py
better "self and cls" types on Transport
fixup! better "self and cls" types on Transport
fixing some easy things from strict pyright run
2021-11-03 22:12:53 +00:00
|
|
|
) -> Status:
|
2020-01-03 12:16:33 +00:00
|
|
|
if all_zero(header.signature) and header.sigmask == 0:
|
|
|
|
return Status.MISSING
|
|
|
|
try:
|
|
|
|
digest = firmware.header_digest(header)
|
|
|
|
cosi.verify(header.signature, digest, m, pubkeys, header.sigmask)
|
|
|
|
return Status.VALID if not is_devel else Status.DEVEL
|
|
|
|
except Exception:
|
|
|
|
return Status.INVALID
|
|
|
|
|
|
|
|
|
|
|
|
# ====================== formatting functions ====================
|
|
|
|
|
|
|
|
|
|
|
|
class LiteralStr(str):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def _format_container(
|
|
|
|
pb: c.Container,
|
|
|
|
indent: int = 0,
|
|
|
|
sep: str = " " * 4,
|
|
|
|
truncate_after: Optional[int] = 64,
|
|
|
|
truncate_to: Optional[int] = 32,
|
|
|
|
) -> str:
|
|
|
|
def mostly_printable(bytes: bytes) -> bool:
|
|
|
|
if not bytes:
|
|
|
|
return True
|
|
|
|
printable = sum(1 for byte in bytes if 0x20 <= byte <= 0x7E)
|
|
|
|
return printable / len(bytes) > 0.8
|
|
|
|
|
|
|
|
def pformat(value: Any, indent: int) -> str:
|
|
|
|
level = sep * indent
|
|
|
|
leadin = sep * (indent + 1)
|
|
|
|
|
|
|
|
if isinstance(value, LiteralStr):
|
|
|
|
return value
|
|
|
|
|
|
|
|
if isinstance(value, list):
|
|
|
|
# short list of simple values
|
feat(python): add full type information
WIP - typing the trezorctl apps
typing functions trezorlib/cli
addressing most of mypy issue for trezorlib apps and _internal folder
fixing broken device tests by changing asserts in debuglink.py
addressing most of mypy issues in trezorlib/cli folder
adding types to some untyped functions, mypy section in setup.cfg
typing what can be typed, some mypy fixes, resolving circular import issues
importing type objects in "if TYPE_CHECKING:" branch
fixing CI by removing assert in emulator, better ignore comments
CI assert fix, style fixes, new config options
fixup! CI assert fix, style fixes, new config options
type fixes after rebasing on master
fixing python3.6 and 3.7 unittests by importing Literal from typing_extensions
couple mypy and style fixes
fixes and improvements from code review
silencing all but one mypy issues
trial of typing the tools.expect function
fixup! trial of typing the tools.expect function
@expect and @session decorators correctly type-checked
Optional args in CLI where relevant, not using general list/tuple/dict where possible
python/Makefile commands, adding them into CI, ignoring last mypy issue
documenting overload for expect decorator, two mypy fixes coming from that
black style fix
improved typing of decorators, pyright config file
addressing or ignoring pyright errors, replacing mypy in CI by pyright
fixing incomplete assert causing device tests to fail
pyright issue that showed in CI but not locally, printing pyright version in CI
fixup! pyright issue that showed in CI but not locally, printing pyright version in CI
unifying type:ignore statements for pyright usage
resolving PIL.Image issues, pyrightconfig not excluding anything
replacing couple asserts with TypeGuard on safe_issubclass
better error handling of usb1 import for webusb
better error handling of hid import
small typing details found out by strict pyright mode
improvements from code review
chore(python): changing List to Sequence for protobuf messages
small code changes to reflect the protobuf change to Sequence
importing TypedDict from typing_extensions to support 3.6 and 3.7
simplify _format_access_list function
fixup! simplify _format_access_list function
typing tools folder
typing helper-scripts folder
some click typing
enforcing all functions to have typed arguments
reverting the changed argument name in tools
replacing TransportType with Transport
making PinMatrixRequest.type protobuf attribute required
reverting the protobuf change, making argument into get_pin Optional
small fixes in asserts
solving the session decorator type issues
fixup! solving the session decorator type issues
improvements from code review
fixing new pyright errors introduced after version increase
changing -> Iterable to -> Sequence in enumerate_devices, change in wait_for_devices
style change in debuglink.py
chore(python): adding type annotation to Sequences in messages.py
better "self and cls" types on Transport
fixup! better "self and cls" types on Transport
fixing some easy things from strict pyright run
2021-11-03 22:12:53 +00:00
|
|
|
if not value or isinstance(value[0], (int, bool, Enum)):
|
2020-01-03 12:16:33 +00:00
|
|
|
return repr(value)
|
|
|
|
|
|
|
|
# long list, one line per entry
|
|
|
|
lines = ["[", level + "]"]
|
|
|
|
lines[1:1] = [leadin + pformat(x, indent + 1) for x in value]
|
|
|
|
return "\n".join(lines)
|
|
|
|
|
|
|
|
if isinstance(value, dict):
|
|
|
|
lines = ["{"]
|
|
|
|
for key, val in value.items():
|
|
|
|
if key.startswith("_"):
|
|
|
|
continue
|
|
|
|
if val is None or val == []:
|
|
|
|
continue
|
|
|
|
lines.append(leadin + key + ": " + pformat(val, indent + 1))
|
|
|
|
lines.append(level + "}")
|
|
|
|
return "\n".join(lines)
|
|
|
|
|
|
|
|
if isinstance(value, (bytes, bytearray)):
|
|
|
|
length = len(value)
|
|
|
|
suffix = ""
|
|
|
|
if truncate_after and length > truncate_after:
|
|
|
|
suffix = "..."
|
|
|
|
value = value[: truncate_to or 0]
|
|
|
|
if mostly_printable(value):
|
|
|
|
output = repr(value)
|
|
|
|
else:
|
|
|
|
output = value.hex()
|
2021-09-27 10:13:51 +00:00
|
|
|
return f"{length} bytes {output}{suffix}"
|
2020-01-03 12:16:33 +00:00
|
|
|
|
|
|
|
if isinstance(value, Enum):
|
|
|
|
return str(value)
|
|
|
|
|
|
|
|
return repr(value)
|
|
|
|
|
|
|
|
return pformat(pb, indent)
|
|
|
|
|
|
|
|
|
|
|
|
def _format_version(version: c.Container) -> str:
|
|
|
|
version_str = ".".join(
|
|
|
|
str(version[k]) for k in ("major", "minor", "patch") if k in version
|
|
|
|
)
|
|
|
|
if "build" in version:
|
2021-09-27 10:13:51 +00:00
|
|
|
version_str += f" build {version.build}"
|
2020-01-03 12:16:33 +00:00
|
|
|
return version_str
|
|
|
|
|
|
|
|
|
|
|
|
# =========================== functionality implementations ===============
|
|
|
|
|
|
|
|
|
|
|
|
class SignableImage:
|
|
|
|
NAME = "Unrecognized image"
|
feat(python): add full type information
WIP - typing the trezorctl apps
typing functions trezorlib/cli
addressing most of mypy issue for trezorlib apps and _internal folder
fixing broken device tests by changing asserts in debuglink.py
addressing most of mypy issues in trezorlib/cli folder
adding types to some untyped functions, mypy section in setup.cfg
typing what can be typed, some mypy fixes, resolving circular import issues
importing type objects in "if TYPE_CHECKING:" branch
fixing CI by removing assert in emulator, better ignore comments
CI assert fix, style fixes, new config options
fixup! CI assert fix, style fixes, new config options
type fixes after rebasing on master
fixing python3.6 and 3.7 unittests by importing Literal from typing_extensions
couple mypy and style fixes
fixes and improvements from code review
silencing all but one mypy issues
trial of typing the tools.expect function
fixup! trial of typing the tools.expect function
@expect and @session decorators correctly type-checked
Optional args in CLI where relevant, not using general list/tuple/dict where possible
python/Makefile commands, adding them into CI, ignoring last mypy issue
documenting overload for expect decorator, two mypy fixes coming from that
black style fix
improved typing of decorators, pyright config file
addressing or ignoring pyright errors, replacing mypy in CI by pyright
fixing incomplete assert causing device tests to fail
pyright issue that showed in CI but not locally, printing pyright version in CI
fixup! pyright issue that showed in CI but not locally, printing pyright version in CI
unifying type:ignore statements for pyright usage
resolving PIL.Image issues, pyrightconfig not excluding anything
replacing couple asserts with TypeGuard on safe_issubclass
better error handling of usb1 import for webusb
better error handling of hid import
small typing details found out by strict pyright mode
improvements from code review
chore(python): changing List to Sequence for protobuf messages
small code changes to reflect the protobuf change to Sequence
importing TypedDict from typing_extensions to support 3.6 and 3.7
simplify _format_access_list function
fixup! simplify _format_access_list function
typing tools folder
typing helper-scripts folder
some click typing
enforcing all functions to have typed arguments
reverting the changed argument name in tools
replacing TransportType with Transport
making PinMatrixRequest.type protobuf attribute required
reverting the protobuf change, making argument into get_pin Optional
small fixes in asserts
solving the session decorator type issues
fixup! solving the session decorator type issues
improvements from code review
fixing new pyright errors introduced after version increase
changing -> Iterable to -> Sequence in enumerate_devices, change in wait_for_devices
style change in debuglink.py
chore(python): adding type annotation to Sequences in messages.py
better "self and cls" types on Transport
fixup! better "self and cls" types on Transport
fixing some easy things from strict pyright run
2021-11-03 22:12:53 +00:00
|
|
|
BIP32_INDEX: Optional[int] = None
|
|
|
|
DEV_KEYS: List[bytes] = []
|
2020-01-03 12:16:33 +00:00
|
|
|
DEV_KEY_SIGMASK = 0b11
|
|
|
|
|
|
|
|
def __init__(self, fw: c.Container) -> None:
|
|
|
|
self.fw = fw
|
feat(python): add full type information
WIP - typing the trezorctl apps
typing functions trezorlib/cli
addressing most of mypy issue for trezorlib apps and _internal folder
fixing broken device tests by changing asserts in debuglink.py
addressing most of mypy issues in trezorlib/cli folder
adding types to some untyped functions, mypy section in setup.cfg
typing what can be typed, some mypy fixes, resolving circular import issues
importing type objects in "if TYPE_CHECKING:" branch
fixing CI by removing assert in emulator, better ignore comments
CI assert fix, style fixes, new config options
fixup! CI assert fix, style fixes, new config options
type fixes after rebasing on master
fixing python3.6 and 3.7 unittests by importing Literal from typing_extensions
couple mypy and style fixes
fixes and improvements from code review
silencing all but one mypy issues
trial of typing the tools.expect function
fixup! trial of typing the tools.expect function
@expect and @session decorators correctly type-checked
Optional args in CLI where relevant, not using general list/tuple/dict where possible
python/Makefile commands, adding them into CI, ignoring last mypy issue
documenting overload for expect decorator, two mypy fixes coming from that
black style fix
improved typing of decorators, pyright config file
addressing or ignoring pyright errors, replacing mypy in CI by pyright
fixing incomplete assert causing device tests to fail
pyright issue that showed in CI but not locally, printing pyright version in CI
fixup! pyright issue that showed in CI but not locally, printing pyright version in CI
unifying type:ignore statements for pyright usage
resolving PIL.Image issues, pyrightconfig not excluding anything
replacing couple asserts with TypeGuard on safe_issubclass
better error handling of usb1 import for webusb
better error handling of hid import
small typing details found out by strict pyright mode
improvements from code review
chore(python): changing List to Sequence for protobuf messages
small code changes to reflect the protobuf change to Sequence
importing TypedDict from typing_extensions to support 3.6 and 3.7
simplify _format_access_list function
fixup! simplify _format_access_list function
typing tools folder
typing helper-scripts folder
some click typing
enforcing all functions to have typed arguments
reverting the changed argument name in tools
replacing TransportType with Transport
making PinMatrixRequest.type protobuf attribute required
reverting the protobuf change, making argument into get_pin Optional
small fixes in asserts
solving the session decorator type issues
fixup! solving the session decorator type issues
improvements from code review
fixing new pyright errors introduced after version increase
changing -> Iterable to -> Sequence in enumerate_devices, change in wait_for_devices
style change in debuglink.py
chore(python): adding type annotation to Sequences in messages.py
better "self and cls" types on Transport
fixup! better "self and cls" types on Transport
fixing some easy things from strict pyright run
2021-11-03 22:12:53 +00:00
|
|
|
self.header: Any
|
|
|
|
self.public_keys: List[bytes]
|
2020-01-03 12:16:33 +00:00
|
|
|
self.sigs_required = firmware.V2_SIGS_REQUIRED
|
|
|
|
|
|
|
|
def digest(self) -> bytes:
|
|
|
|
return firmware.header_digest(self.header)
|
|
|
|
|
|
|
|
def check_signature(self) -> Status:
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def rehash(self) -> None:
|
2020-01-03 15:43:44 +00:00
|
|
|
pass
|
2020-01-03 12:16:33 +00:00
|
|
|
|
|
|
|
def insert_signature(self, signature: bytes, sigmask: int) -> None:
|
|
|
|
self.header.signature = signature
|
|
|
|
self.header.sigmask = sigmask
|
|
|
|
|
|
|
|
def dump(self) -> bytes:
|
|
|
|
return AnyFirmware.build(self.fw)
|
|
|
|
|
|
|
|
def format(self, verbose: bool) -> str:
|
|
|
|
return _format_container(self.fw)
|
|
|
|
|
|
|
|
|
|
|
|
class VendorHeader(SignableImage):
|
|
|
|
NAME = "vendorheader"
|
|
|
|
BIP32_INDEX = 1
|
|
|
|
DEV_KEYS = _make_dev_keys(b"\x44", b"\x45")
|
|
|
|
|
feat(python): add full type information
WIP - typing the trezorctl apps
typing functions trezorlib/cli
addressing most of mypy issue for trezorlib apps and _internal folder
fixing broken device tests by changing asserts in debuglink.py
addressing most of mypy issues in trezorlib/cli folder
adding types to some untyped functions, mypy section in setup.cfg
typing what can be typed, some mypy fixes, resolving circular import issues
importing type objects in "if TYPE_CHECKING:" branch
fixing CI by removing assert in emulator, better ignore comments
CI assert fix, style fixes, new config options
fixup! CI assert fix, style fixes, new config options
type fixes after rebasing on master
fixing python3.6 and 3.7 unittests by importing Literal from typing_extensions
couple mypy and style fixes
fixes and improvements from code review
silencing all but one mypy issues
trial of typing the tools.expect function
fixup! trial of typing the tools.expect function
@expect and @session decorators correctly type-checked
Optional args in CLI where relevant, not using general list/tuple/dict where possible
python/Makefile commands, adding them into CI, ignoring last mypy issue
documenting overload for expect decorator, two mypy fixes coming from that
black style fix
improved typing of decorators, pyright config file
addressing or ignoring pyright errors, replacing mypy in CI by pyright
fixing incomplete assert causing device tests to fail
pyright issue that showed in CI but not locally, printing pyright version in CI
fixup! pyright issue that showed in CI but not locally, printing pyright version in CI
unifying type:ignore statements for pyright usage
resolving PIL.Image issues, pyrightconfig not excluding anything
replacing couple asserts with TypeGuard on safe_issubclass
better error handling of usb1 import for webusb
better error handling of hid import
small typing details found out by strict pyright mode
improvements from code review
chore(python): changing List to Sequence for protobuf messages
small code changes to reflect the protobuf change to Sequence
importing TypedDict from typing_extensions to support 3.6 and 3.7
simplify _format_access_list function
fixup! simplify _format_access_list function
typing tools folder
typing helper-scripts folder
some click typing
enforcing all functions to have typed arguments
reverting the changed argument name in tools
replacing TransportType with Transport
making PinMatrixRequest.type protobuf attribute required
reverting the protobuf change, making argument into get_pin Optional
small fixes in asserts
solving the session decorator type issues
fixup! solving the session decorator type issues
improvements from code review
fixing new pyright errors introduced after version increase
changing -> Iterable to -> Sequence in enumerate_devices, change in wait_for_devices
style change in debuglink.py
chore(python): adding type annotation to Sequences in messages.py
better "self and cls" types on Transport
fixup! better "self and cls" types on Transport
fixing some easy things from strict pyright run
2021-11-03 22:12:53 +00:00
|
|
|
def __init__(self, fw: c.Container) -> None:
|
2020-01-03 12:16:33 +00:00
|
|
|
super().__init__(fw)
|
|
|
|
self.header = fw.vendor_header
|
|
|
|
self.public_keys = firmware.V2_BOOTLOADER_KEYS
|
|
|
|
|
|
|
|
def check_signature(self) -> Status:
|
|
|
|
return _check_signature_any(
|
|
|
|
self.header, self.sigs_required, self.public_keys, False
|
|
|
|
)
|
|
|
|
|
|
|
|
def _format(self, terse: bool) -> str:
|
|
|
|
vh = self.fw.vendor_header
|
|
|
|
if not terse:
|
|
|
|
vhash = compute_vhash(vh)
|
|
|
|
output = [
|
|
|
|
"Vendor Header " + _format_container(vh),
|
2021-09-27 10:13:51 +00:00
|
|
|
f"Pubkey bundle hash: {vhash.hex()}",
|
2020-01-03 12:16:33 +00:00
|
|
|
]
|
|
|
|
else:
|
|
|
|
output = [
|
|
|
|
"Vendor Header for {vendor} version {version} ({size} bytes)".format(
|
|
|
|
vendor=click.style(vh.text, bold=True),
|
|
|
|
version=_format_version(vh.version),
|
|
|
|
size=vh.header_len,
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
fingerprint = firmware.header_digest(vh)
|
|
|
|
|
|
|
|
if not terse:
|
2021-09-27 10:13:51 +00:00
|
|
|
output.append(f"Fingerprint: {click.style(fingerprint.hex(), bold=True)}")
|
2020-01-03 12:16:33 +00:00
|
|
|
|
|
|
|
sig_status = self.check_signature()
|
|
|
|
sym = SYM_OK if sig_status.is_ok() else SYM_FAIL
|
2021-09-27 10:13:51 +00:00
|
|
|
output.append(f"{sym} Signature is {sig_status.value}")
|
2020-01-03 12:16:33 +00:00
|
|
|
|
|
|
|
return "\n".join(output)
|
|
|
|
|
|
|
|
def format(self, verbose: bool = False) -> str:
|
|
|
|
return self._format(terse=False)
|
|
|
|
|
|
|
|
|
|
|
|
class BinImage(SignableImage):
|
feat(python): add full type information
WIP - typing the trezorctl apps
typing functions trezorlib/cli
addressing most of mypy issue for trezorlib apps and _internal folder
fixing broken device tests by changing asserts in debuglink.py
addressing most of mypy issues in trezorlib/cli folder
adding types to some untyped functions, mypy section in setup.cfg
typing what can be typed, some mypy fixes, resolving circular import issues
importing type objects in "if TYPE_CHECKING:" branch
fixing CI by removing assert in emulator, better ignore comments
CI assert fix, style fixes, new config options
fixup! CI assert fix, style fixes, new config options
type fixes after rebasing on master
fixing python3.6 and 3.7 unittests by importing Literal from typing_extensions
couple mypy and style fixes
fixes and improvements from code review
silencing all but one mypy issues
trial of typing the tools.expect function
fixup! trial of typing the tools.expect function
@expect and @session decorators correctly type-checked
Optional args in CLI where relevant, not using general list/tuple/dict where possible
python/Makefile commands, adding them into CI, ignoring last mypy issue
documenting overload for expect decorator, two mypy fixes coming from that
black style fix
improved typing of decorators, pyright config file
addressing or ignoring pyright errors, replacing mypy in CI by pyright
fixing incomplete assert causing device tests to fail
pyright issue that showed in CI but not locally, printing pyright version in CI
fixup! pyright issue that showed in CI but not locally, printing pyright version in CI
unifying type:ignore statements for pyright usage
resolving PIL.Image issues, pyrightconfig not excluding anything
replacing couple asserts with TypeGuard on safe_issubclass
better error handling of usb1 import for webusb
better error handling of hid import
small typing details found out by strict pyright mode
improvements from code review
chore(python): changing List to Sequence for protobuf messages
small code changes to reflect the protobuf change to Sequence
importing TypedDict from typing_extensions to support 3.6 and 3.7
simplify _format_access_list function
fixup! simplify _format_access_list function
typing tools folder
typing helper-scripts folder
some click typing
enforcing all functions to have typed arguments
reverting the changed argument name in tools
replacing TransportType with Transport
making PinMatrixRequest.type protobuf attribute required
reverting the protobuf change, making argument into get_pin Optional
small fixes in asserts
solving the session decorator type issues
fixup! solving the session decorator type issues
improvements from code review
fixing new pyright errors introduced after version increase
changing -> Iterable to -> Sequence in enumerate_devices, change in wait_for_devices
style change in debuglink.py
chore(python): adding type annotation to Sequences in messages.py
better "self and cls" types on Transport
fixup! better "self and cls" types on Transport
fixing some easy things from strict pyright run
2021-11-03 22:12:53 +00:00
|
|
|
def __init__(self, fw: c.Container) -> None:
|
2020-01-03 12:16:33 +00:00
|
|
|
super().__init__(fw)
|
|
|
|
self.header = self.fw.image.header
|
|
|
|
self.code_hashes = firmware.calculate_code_hashes(
|
|
|
|
self.fw.image.code, self.fw.image._code_offset
|
|
|
|
)
|
|
|
|
self.digest_header = self.header.copy()
|
|
|
|
self.digest_header.hashes = self.code_hashes
|
|
|
|
|
|
|
|
def insert_signature(self, signature: bytes, sigmask: int) -> None:
|
|
|
|
super().insert_signature(signature, sigmask)
|
|
|
|
self.digest_header.signature = signature
|
|
|
|
self.digest_header.sigmask = sigmask
|
|
|
|
|
|
|
|
def digest(self) -> bytes:
|
|
|
|
return firmware.header_digest(self.digest_header)
|
|
|
|
|
feat(python): add full type information
WIP - typing the trezorctl apps
typing functions trezorlib/cli
addressing most of mypy issue for trezorlib apps and _internal folder
fixing broken device tests by changing asserts in debuglink.py
addressing most of mypy issues in trezorlib/cli folder
adding types to some untyped functions, mypy section in setup.cfg
typing what can be typed, some mypy fixes, resolving circular import issues
importing type objects in "if TYPE_CHECKING:" branch
fixing CI by removing assert in emulator, better ignore comments
CI assert fix, style fixes, new config options
fixup! CI assert fix, style fixes, new config options
type fixes after rebasing on master
fixing python3.6 and 3.7 unittests by importing Literal from typing_extensions
couple mypy and style fixes
fixes and improvements from code review
silencing all but one mypy issues
trial of typing the tools.expect function
fixup! trial of typing the tools.expect function
@expect and @session decorators correctly type-checked
Optional args in CLI where relevant, not using general list/tuple/dict where possible
python/Makefile commands, adding them into CI, ignoring last mypy issue
documenting overload for expect decorator, two mypy fixes coming from that
black style fix
improved typing of decorators, pyright config file
addressing or ignoring pyright errors, replacing mypy in CI by pyright
fixing incomplete assert causing device tests to fail
pyright issue that showed in CI but not locally, printing pyright version in CI
fixup! pyright issue that showed in CI but not locally, printing pyright version in CI
unifying type:ignore statements for pyright usage
resolving PIL.Image issues, pyrightconfig not excluding anything
replacing couple asserts with TypeGuard on safe_issubclass
better error handling of usb1 import for webusb
better error handling of hid import
small typing details found out by strict pyright mode
improvements from code review
chore(python): changing List to Sequence for protobuf messages
small code changes to reflect the protobuf change to Sequence
importing TypedDict from typing_extensions to support 3.6 and 3.7
simplify _format_access_list function
fixup! simplify _format_access_list function
typing tools folder
typing helper-scripts folder
some click typing
enforcing all functions to have typed arguments
reverting the changed argument name in tools
replacing TransportType with Transport
making PinMatrixRequest.type protobuf attribute required
reverting the protobuf change, making argument into get_pin Optional
small fixes in asserts
solving the session decorator type issues
fixup! solving the session decorator type issues
improvements from code review
fixing new pyright errors introduced after version increase
changing -> Iterable to -> Sequence in enumerate_devices, change in wait_for_devices
style change in debuglink.py
chore(python): adding type annotation to Sequences in messages.py
better "self and cls" types on Transport
fixup! better "self and cls" types on Transport
fixing some easy things from strict pyright run
2021-11-03 22:12:53 +00:00
|
|
|
def rehash(self) -> None:
|
2020-01-03 12:16:33 +00:00
|
|
|
self.header.hashes = self.code_hashes
|
|
|
|
|
|
|
|
def format(self, verbose: bool = False) -> str:
|
|
|
|
header_out = self.header.copy()
|
|
|
|
|
|
|
|
if not verbose:
|
|
|
|
for key in self.header:
|
|
|
|
if key.startswith("v1"):
|
|
|
|
del header_out[key]
|
|
|
|
if "version" in key:
|
|
|
|
header_out[key] = LiteralStr(_format_version(self.header[key]))
|
|
|
|
|
|
|
|
all_ok = SYM_OK
|
|
|
|
hash_status = Status.VALID
|
|
|
|
sig_status = Status.VALID
|
|
|
|
|
|
|
|
hashes_out = []
|
|
|
|
for expected, actual in zip(self.header.hashes, self.code_hashes):
|
|
|
|
status = SYM_OK if expected == actual else SYM_FAIL
|
2021-09-27 10:13:51 +00:00
|
|
|
hashes_out.append(LiteralStr(f"{status} {expected.hex()}"))
|
2020-01-03 12:16:33 +00:00
|
|
|
|
|
|
|
if all(all_zero(h) for h in self.header.hashes):
|
|
|
|
hash_status = Status.MISSING
|
|
|
|
elif self.header.hashes != self.code_hashes:
|
|
|
|
hash_status = Status.INVALID
|
|
|
|
else:
|
|
|
|
hash_status = Status.VALID
|
|
|
|
|
|
|
|
header_out["hashes"] = hashes_out
|
|
|
|
|
|
|
|
sig_status = self.check_signature()
|
|
|
|
all_ok = SYM_OK if hash_status.is_ok() and sig_status.is_ok() else SYM_FAIL
|
|
|
|
|
|
|
|
output = [
|
|
|
|
"Firmware Header " + _format_container(header_out),
|
2021-09-27 10:13:51 +00:00
|
|
|
f"Fingerprint: {click.style(self.digest().hex(), bold=True)}",
|
|
|
|
f"{all_ok} Signature is {sig_status.value}, hashes are {hash_status.value}",
|
2020-01-03 12:16:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
return "\n".join(output)
|
|
|
|
|
|
|
|
|
|
|
|
class FirmwareImage(BinImage):
|
|
|
|
NAME = "firmware"
|
|
|
|
BIP32_INDEX = 2
|
|
|
|
DEV_KEYS = _make_dev_keys(b"\x47", b"\x48")
|
|
|
|
|
|
|
|
def __init__(self, fw: c.Container) -> None:
|
|
|
|
super().__init__(fw)
|
|
|
|
self.public_keys = fw.vendor_header.pubkeys
|
|
|
|
self.sigs_required = fw.vendor_header.sig_m
|
|
|
|
|
|
|
|
def check_signature(self) -> Status:
|
|
|
|
vhash = compute_vhash(self.fw.vendor_header)
|
|
|
|
return _check_signature_any(
|
|
|
|
self.digest_header,
|
|
|
|
self.sigs_required,
|
|
|
|
self.public_keys,
|
|
|
|
vhash == VHASH_DEVEL,
|
|
|
|
)
|
|
|
|
|
|
|
|
def format(self, verbose: bool = False) -> str:
|
|
|
|
return (
|
|
|
|
VendorHeader(self.fw)._format(terse=not verbose)
|
|
|
|
+ "\n"
|
|
|
|
+ super().format(verbose)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class BootloaderImage(BinImage):
|
|
|
|
NAME = "bootloader"
|
|
|
|
BIP32_INDEX = 0
|
|
|
|
DEV_KEYS = _make_dev_keys(b"\x41", b"\x42")
|
|
|
|
|
feat(python): add full type information
WIP - typing the trezorctl apps
typing functions trezorlib/cli
addressing most of mypy issue for trezorlib apps and _internal folder
fixing broken device tests by changing asserts in debuglink.py
addressing most of mypy issues in trezorlib/cli folder
adding types to some untyped functions, mypy section in setup.cfg
typing what can be typed, some mypy fixes, resolving circular import issues
importing type objects in "if TYPE_CHECKING:" branch
fixing CI by removing assert in emulator, better ignore comments
CI assert fix, style fixes, new config options
fixup! CI assert fix, style fixes, new config options
type fixes after rebasing on master
fixing python3.6 and 3.7 unittests by importing Literal from typing_extensions
couple mypy and style fixes
fixes and improvements from code review
silencing all but one mypy issues
trial of typing the tools.expect function
fixup! trial of typing the tools.expect function
@expect and @session decorators correctly type-checked
Optional args in CLI where relevant, not using general list/tuple/dict where possible
python/Makefile commands, adding them into CI, ignoring last mypy issue
documenting overload for expect decorator, two mypy fixes coming from that
black style fix
improved typing of decorators, pyright config file
addressing or ignoring pyright errors, replacing mypy in CI by pyright
fixing incomplete assert causing device tests to fail
pyright issue that showed in CI but not locally, printing pyright version in CI
fixup! pyright issue that showed in CI but not locally, printing pyright version in CI
unifying type:ignore statements for pyright usage
resolving PIL.Image issues, pyrightconfig not excluding anything
replacing couple asserts with TypeGuard on safe_issubclass
better error handling of usb1 import for webusb
better error handling of hid import
small typing details found out by strict pyright mode
improvements from code review
chore(python): changing List to Sequence for protobuf messages
small code changes to reflect the protobuf change to Sequence
importing TypedDict from typing_extensions to support 3.6 and 3.7
simplify _format_access_list function
fixup! simplify _format_access_list function
typing tools folder
typing helper-scripts folder
some click typing
enforcing all functions to have typed arguments
reverting the changed argument name in tools
replacing TransportType with Transport
making PinMatrixRequest.type protobuf attribute required
reverting the protobuf change, making argument into get_pin Optional
small fixes in asserts
solving the session decorator type issues
fixup! solving the session decorator type issues
improvements from code review
fixing new pyright errors introduced after version increase
changing -> Iterable to -> Sequence in enumerate_devices, change in wait_for_devices
style change in debuglink.py
chore(python): adding type annotation to Sequences in messages.py
better "self and cls" types on Transport
fixup! better "self and cls" types on Transport
fixing some easy things from strict pyright run
2021-11-03 22:12:53 +00:00
|
|
|
def __init__(self, fw: c.Container) -> None:
|
2020-01-03 12:16:33 +00:00
|
|
|
super().__init__(fw)
|
|
|
|
self._identify_dev_keys()
|
|
|
|
|
|
|
|
def insert_signature(self, signature: bytes, sigmask: int) -> None:
|
|
|
|
super().insert_signature(signature, sigmask)
|
|
|
|
self._identify_dev_keys()
|
|
|
|
|
feat(python): add full type information
WIP - typing the trezorctl apps
typing functions trezorlib/cli
addressing most of mypy issue for trezorlib apps and _internal folder
fixing broken device tests by changing asserts in debuglink.py
addressing most of mypy issues in trezorlib/cli folder
adding types to some untyped functions, mypy section in setup.cfg
typing what can be typed, some mypy fixes, resolving circular import issues
importing type objects in "if TYPE_CHECKING:" branch
fixing CI by removing assert in emulator, better ignore comments
CI assert fix, style fixes, new config options
fixup! CI assert fix, style fixes, new config options
type fixes after rebasing on master
fixing python3.6 and 3.7 unittests by importing Literal from typing_extensions
couple mypy and style fixes
fixes and improvements from code review
silencing all but one mypy issues
trial of typing the tools.expect function
fixup! trial of typing the tools.expect function
@expect and @session decorators correctly type-checked
Optional args in CLI where relevant, not using general list/tuple/dict where possible
python/Makefile commands, adding them into CI, ignoring last mypy issue
documenting overload for expect decorator, two mypy fixes coming from that
black style fix
improved typing of decorators, pyright config file
addressing or ignoring pyright errors, replacing mypy in CI by pyright
fixing incomplete assert causing device tests to fail
pyright issue that showed in CI but not locally, printing pyright version in CI
fixup! pyright issue that showed in CI but not locally, printing pyright version in CI
unifying type:ignore statements for pyright usage
resolving PIL.Image issues, pyrightconfig not excluding anything
replacing couple asserts with TypeGuard on safe_issubclass
better error handling of usb1 import for webusb
better error handling of hid import
small typing details found out by strict pyright mode
improvements from code review
chore(python): changing List to Sequence for protobuf messages
small code changes to reflect the protobuf change to Sequence
importing TypedDict from typing_extensions to support 3.6 and 3.7
simplify _format_access_list function
fixup! simplify _format_access_list function
typing tools folder
typing helper-scripts folder
some click typing
enforcing all functions to have typed arguments
reverting the changed argument name in tools
replacing TransportType with Transport
making PinMatrixRequest.type protobuf attribute required
reverting the protobuf change, making argument into get_pin Optional
small fixes in asserts
solving the session decorator type issues
fixup! solving the session decorator type issues
improvements from code review
fixing new pyright errors introduced after version increase
changing -> Iterable to -> Sequence in enumerate_devices, change in wait_for_devices
style change in debuglink.py
chore(python): adding type annotation to Sequences in messages.py
better "self and cls" types on Transport
fixup! better "self and cls" types on Transport
fixing some easy things from strict pyright run
2021-11-03 22:12:53 +00:00
|
|
|
def _identify_dev_keys(self) -> None:
|
2020-01-03 12:16:33 +00:00
|
|
|
# try checking signature with dev keys first
|
|
|
|
self.public_keys = firmware.V2_BOARDLOADER_DEV_KEYS
|
|
|
|
if not self.check_signature().is_ok():
|
|
|
|
# validation with dev keys failed, use production keys
|
|
|
|
self.public_keys = firmware.V2_BOARDLOADER_KEYS
|
|
|
|
|
|
|
|
def check_signature(self) -> Status:
|
|
|
|
return _check_signature_any(
|
|
|
|
self.header,
|
|
|
|
self.sigs_required,
|
|
|
|
self.public_keys,
|
|
|
|
self.public_keys == firmware.V2_BOARDLOADER_DEV_KEYS,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
feat(python): add full type information
WIP - typing the trezorctl apps
typing functions trezorlib/cli
addressing most of mypy issue for trezorlib apps and _internal folder
fixing broken device tests by changing asserts in debuglink.py
addressing most of mypy issues in trezorlib/cli folder
adding types to some untyped functions, mypy section in setup.cfg
typing what can be typed, some mypy fixes, resolving circular import issues
importing type objects in "if TYPE_CHECKING:" branch
fixing CI by removing assert in emulator, better ignore comments
CI assert fix, style fixes, new config options
fixup! CI assert fix, style fixes, new config options
type fixes after rebasing on master
fixing python3.6 and 3.7 unittests by importing Literal from typing_extensions
couple mypy and style fixes
fixes and improvements from code review
silencing all but one mypy issues
trial of typing the tools.expect function
fixup! trial of typing the tools.expect function
@expect and @session decorators correctly type-checked
Optional args in CLI where relevant, not using general list/tuple/dict where possible
python/Makefile commands, adding them into CI, ignoring last mypy issue
documenting overload for expect decorator, two mypy fixes coming from that
black style fix
improved typing of decorators, pyright config file
addressing or ignoring pyright errors, replacing mypy in CI by pyright
fixing incomplete assert causing device tests to fail
pyright issue that showed in CI but not locally, printing pyright version in CI
fixup! pyright issue that showed in CI but not locally, printing pyright version in CI
unifying type:ignore statements for pyright usage
resolving PIL.Image issues, pyrightconfig not excluding anything
replacing couple asserts with TypeGuard on safe_issubclass
better error handling of usb1 import for webusb
better error handling of hid import
small typing details found out by strict pyright mode
improvements from code review
chore(python): changing List to Sequence for protobuf messages
small code changes to reflect the protobuf change to Sequence
importing TypedDict from typing_extensions to support 3.6 and 3.7
simplify _format_access_list function
fixup! simplify _format_access_list function
typing tools folder
typing helper-scripts folder
some click typing
enforcing all functions to have typed arguments
reverting the changed argument name in tools
replacing TransportType with Transport
making PinMatrixRequest.type protobuf attribute required
reverting the protobuf change, making argument into get_pin Optional
small fixes in asserts
solving the session decorator type issues
fixup! solving the session decorator type issues
improvements from code review
fixing new pyright errors introduced after version increase
changing -> Iterable to -> Sequence in enumerate_devices, change in wait_for_devices
style change in debuglink.py
chore(python): adding type annotation to Sequences in messages.py
better "self and cls" types on Transport
fixup! better "self and cls" types on Transport
fixing some easy things from strict pyright run
2021-11-03 22:12:53 +00:00
|
|
|
def parse_image(image: bytes) -> SignableImage:
|
2020-01-03 12:16:33 +00:00
|
|
|
fw = AnyFirmware.parse(image)
|
|
|
|
if fw.vendor_header and not fw.image:
|
|
|
|
return VendorHeader(fw)
|
|
|
|
if (
|
|
|
|
not fw.vendor_header
|
|
|
|
and fw.image
|
|
|
|
and fw.image.header.magic == firmware.HeaderType.BOOTLOADER
|
|
|
|
):
|
|
|
|
return BootloaderImage(fw)
|
|
|
|
if (
|
|
|
|
fw.vendor_header
|
|
|
|
and fw.image
|
|
|
|
and fw.image.header.magic == firmware.HeaderType.FIRMWARE
|
|
|
|
):
|
|
|
|
return FirmwareImage(fw)
|
|
|
|
raise ValueError("Unrecognized image type")
|