mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-26 08:08:51 +00:00
179 lines
5.8 KiB
Python
179 lines
5.8 KiB
Python
import sys
|
|
from struct import pack
|
|
|
|
from . import consts
|
|
|
|
|
|
def align4_int(i: int):
|
|
return (4 - i) % 4
|
|
|
|
|
|
def align4_data(data):
|
|
return data + b"\x00" * align4_int(len(data))
|
|
|
|
|
|
class Norcow:
|
|
def __init__(self):
|
|
self.sectors = None
|
|
self.active_sector = 0
|
|
|
|
def init(self):
|
|
if self.sectors:
|
|
for sector in range(consts.NORCOW_SECTOR_COUNT):
|
|
if self.sectors[sector][:8] == consts.NORCOW_MAGIC_AND_VERSION:
|
|
self.active_sector = sector
|
|
self.active_offset = len(consts.NORCOW_MAGIC_AND_VERSION)
|
|
break
|
|
else:
|
|
self.wipe()
|
|
|
|
def wipe(self, sector: int = None):
|
|
if sector is None:
|
|
sector = self.active_sector
|
|
|
|
self.sectors = [
|
|
bytearray([0xFF] * consts.NORCOW_SECTOR_SIZE)
|
|
for _ in range(consts.NORCOW_SECTOR_COUNT)
|
|
]
|
|
self.sectors[sector][:8] = consts.NORCOW_MAGIC_AND_VERSION
|
|
self.active_sector = sector
|
|
self.active_offset = len(consts.NORCOW_MAGIC_AND_VERSION)
|
|
|
|
def get(self, key: int) -> bytes:
|
|
value, _ = self._find_item(key)
|
|
return value
|
|
|
|
def set(self, key: int, val: bytes):
|
|
if key == consts.NORCOW_KEY_FREE:
|
|
raise RuntimeError("Norcow: key 0xFFFF is not allowed")
|
|
|
|
found_value, pos = self._find_item(key)
|
|
if found_value is not False:
|
|
if self._is_updatable(found_value, val):
|
|
self._write(pos, key, val)
|
|
return
|
|
else:
|
|
self._delete_old(pos, found_value)
|
|
|
|
if self.active_offset + 4 + len(val) > consts.NORCOW_SECTOR_SIZE:
|
|
self._compact()
|
|
|
|
self._append(key, val)
|
|
|
|
def delete(self, key: int):
|
|
if key == consts.NORCOW_KEY_FREE:
|
|
raise RuntimeError("Norcow: key 0xFFFF is not allowed")
|
|
|
|
found_value, pos = self._find_item(key)
|
|
if found_value is False:
|
|
return False
|
|
self._delete_old(pos, found_value)
|
|
return True
|
|
|
|
def replace(self, key: int, new_value: bytes) -> bool:
|
|
old_value, offset = self._find_item(key)
|
|
if not old_value:
|
|
raise RuntimeError("Norcow: key not found")
|
|
if len(old_value) != len(new_value):
|
|
raise RuntimeError(
|
|
"Norcow: replace works only with items of the same length"
|
|
)
|
|
self._write(offset, key, new_value)
|
|
|
|
def _is_updatable(self, old: bytes, new: bytes) -> bool:
|
|
"""
|
|
Item is updatable if the new value is the same or
|
|
it changes 1 to 0 only (the flash memory does not
|
|
allow to flip 0 to 1 unless you wipe it).
|
|
"""
|
|
if len(old) != len(new):
|
|
return False
|
|
if old == new:
|
|
return True
|
|
for a, b in zip(old, new):
|
|
if a & b != b:
|
|
return False
|
|
return True
|
|
|
|
def _delete_old(self, pos: int, value: bytes):
|
|
wiped_data = b"\x00" * len(value)
|
|
self._write(pos, 0x0000, wiped_data)
|
|
|
|
def _append(self, key: int, value: bytes):
|
|
self.active_offset += self._write(self.active_offset, key, value)
|
|
|
|
def _write(self, pos: int, key: int, new_value: bytes) -> int:
|
|
data = pack("<HH", key, len(new_value)) + align4_data(new_value)
|
|
if pos + len(data) > consts.NORCOW_SECTOR_SIZE:
|
|
raise RuntimeError("Norcow: item too big")
|
|
self.sectors[self.active_sector][pos : pos + len(data)] = data
|
|
return len(data)
|
|
|
|
def _find_item(self, key: int) -> (bytes, int):
|
|
offset = len(consts.NORCOW_MAGIC_AND_VERSION)
|
|
value = False
|
|
pos = offset
|
|
while True:
|
|
try:
|
|
k, v = self._read_item(offset)
|
|
if k == key:
|
|
value = v
|
|
pos = offset
|
|
except ValueError:
|
|
break
|
|
offset = offset + self._norcow_item_length(v)
|
|
return value, pos
|
|
|
|
def _get_all_keys(self) -> (bytes, int):
|
|
offset = len(consts.NORCOW_MAGIC_AND_VERSION)
|
|
keys = set()
|
|
while True:
|
|
try:
|
|
k, v = self._read_item(offset)
|
|
keys.add(k)
|
|
except ValueError:
|
|
break
|
|
offset = offset + self._norcow_item_length(v)
|
|
return keys
|
|
|
|
def _norcow_item_length(self, data: bytes) -> int:
|
|
# APP_ID, KEY_ID, LENGTH, DATA, ALIGNMENT
|
|
return 1 + 1 + 2 + len(data) + align4_int(len(data))
|
|
|
|
def _read_item(self, offset: int) -> (int, bytes):
|
|
key = self.sectors[self.active_sector][offset : offset + 2]
|
|
key = int.from_bytes(key, sys.byteorder)
|
|
if key == consts.NORCOW_KEY_FREE:
|
|
raise ValueError("Norcow: no data on this offset")
|
|
length = self.sectors[self.active_sector][offset + 2 : offset + 4]
|
|
length = int.from_bytes(length, sys.byteorder)
|
|
value = self.sectors[self.active_sector][offset + 4 : offset + 4 + length]
|
|
return key, value
|
|
|
|
def _compact(self):
|
|
offset = len(consts.NORCOW_MAGIC_AND_VERSION)
|
|
data = list()
|
|
while True:
|
|
try:
|
|
k, v = self._read_item(offset)
|
|
if k != 0x00:
|
|
data.append((k, v))
|
|
except ValueError:
|
|
break
|
|
offset = offset + self._norcow_item_length(v)
|
|
sector = self.active_sector
|
|
self.wipe((sector + 1) % consts.NORCOW_SECTOR_COUNT)
|
|
for key, value in data:
|
|
self._append(key, value)
|
|
|
|
def _set_sectors(self, data):
|
|
if list(map(len, data)) != [
|
|
consts.NORCOW_SECTOR_SIZE,
|
|
consts.NORCOW_SECTOR_SIZE,
|
|
]:
|
|
raise RuntimeError("Norcow: set_sectors called with invalid data length")
|
|
self.sectors = [bytearray(sector) for sector in data]
|
|
|
|
def _dump(self):
|
|
return [bytes(sector) for sector in self.sectors]
|