2017-10-17 17:18:16 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) Pavol Rusnak, Jan Pochyla, SatoshiLabs
|
|
|
|
*
|
|
|
|
* Licensed under TREZOR License
|
|
|
|
* see LICENSE file for details
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2017-11-08 17:08:19 +00:00
|
|
|
#include "common.h"
|
2017-10-17 17:18:16 +00:00
|
|
|
#include "norcow.h"
|
|
|
|
#include "../../trezorhal/flash.h"
|
2017-12-14 16:14:15 +00:00
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "py/obj.h"
|
2017-10-17 17:18:16 +00:00
|
|
|
|
|
|
|
// Norcow storage key of configured PIN.
|
|
|
|
#define PIN_KEY 0x0000
|
|
|
|
|
2017-11-08 17:08:19 +00:00
|
|
|
// Maximum PIN length.
|
|
|
|
#define PIN_MAXLEN 32
|
|
|
|
|
2017-12-12 22:47:42 +00:00
|
|
|
// Byte-length of flash section containing fail counters.
|
|
|
|
#define PIN_FAIL_KEY 0x0001
|
|
|
|
#define PIN_FAIL_SECTOR_SIZE 32
|
|
|
|
|
|
|
|
// Maximum number of failed unlock attempts.
|
|
|
|
#define PIN_MAX_TRIES 15
|
|
|
|
|
2017-10-27 15:49:30 +00:00
|
|
|
static secbool initialized = secfalse;
|
|
|
|
static secbool unlocked = secfalse;
|
2017-10-17 17:18:16 +00:00
|
|
|
|
2017-12-09 13:48:49 +00:00
|
|
|
void storage_init(void)
|
2017-10-17 17:18:16 +00:00
|
|
|
{
|
2017-11-08 17:08:19 +00:00
|
|
|
initialized = secfalse;
|
|
|
|
unlocked = secfalse;
|
2017-12-09 13:48:49 +00:00
|
|
|
flash_init();
|
|
|
|
norcow_init();
|
2017-10-27 15:49:30 +00:00
|
|
|
initialized = sectrue;
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|
|
|
|
|
2017-12-12 22:47:42 +00:00
|
|
|
static void pin_fails_reset(uint16_t ofs)
|
2017-10-17 17:18:16 +00:00
|
|
|
{
|
2017-12-12 22:47:42 +00:00
|
|
|
norcow_update(PIN_FAIL_KEY, ofs, 0);
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|
|
|
|
|
2017-12-12 22:47:42 +00:00
|
|
|
static secbool pin_fails_increase(const uint32_t *ptr, uint16_t ofs)
|
2017-10-17 17:18:16 +00:00
|
|
|
{
|
2017-12-12 22:47:42 +00:00
|
|
|
uint32_t ctr = *ptr;
|
2017-10-17 17:18:16 +00:00
|
|
|
ctr = ctr << 1;
|
|
|
|
|
|
|
|
flash_unlock();
|
2017-12-12 22:47:42 +00:00
|
|
|
if (sectrue != norcow_update(PIN_FAIL_KEY, ofs, ctr)) {
|
2017-10-17 17:18:16 +00:00
|
|
|
flash_lock();
|
2017-10-27 15:49:30 +00:00
|
|
|
return secfalse;
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|
|
|
|
flash_lock();
|
|
|
|
|
2017-12-12 22:47:42 +00:00
|
|
|
uint32_t check = *ptr;
|
2017-10-27 15:49:30 +00:00
|
|
|
if (ctr != check) {
|
|
|
|
return secfalse;
|
|
|
|
}
|
|
|
|
return sectrue;
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void pin_fails_check_max(uint32_t ctr)
|
|
|
|
{
|
2017-12-11 22:11:43 +00:00
|
|
|
if (~ctr >= (1 << PIN_MAX_TRIES)) {
|
2017-12-09 13:48:49 +00:00
|
|
|
norcow_wipe();
|
2017-12-07 14:31:23 +00:00
|
|
|
ensure(secfalse, "pin_fails_check_max");
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-27 15:49:30 +00:00
|
|
|
static secbool const_cmp(const uint8_t *pub, size_t publen, const uint8_t *sec, size_t seclen)
|
2017-10-17 17:18:16 +00:00
|
|
|
{
|
|
|
|
size_t diff = seclen ^ publen;
|
|
|
|
for (size_t i = 0; i < publen; i++) {
|
|
|
|
diff |= pub[i] ^ sec[i];
|
|
|
|
}
|
2017-11-08 17:08:19 +00:00
|
|
|
return sectrue * (0 == diff);
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|
|
|
|
|
2017-11-08 17:08:19 +00:00
|
|
|
static secbool pin_cmp(const uint8_t *pin, size_t pinlen)
|
2017-10-17 17:18:16 +00:00
|
|
|
{
|
2017-10-24 11:55:29 +00:00
|
|
|
const void *spin = NULL;
|
|
|
|
uint16_t spinlen = 0;
|
|
|
|
norcow_get(PIN_KEY, &spin, &spinlen);
|
2017-11-08 17:08:19 +00:00
|
|
|
if (NULL != spin) {
|
|
|
|
return const_cmp(pin, pinlen, spin, spinlen);
|
|
|
|
} else {
|
|
|
|
return sectrue * (0 == pinlen);
|
|
|
|
}
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|
|
|
|
|
2017-12-14 16:14:15 +00:00
|
|
|
static secbool pin_get_fails(const uint32_t **pinfail, uint32_t *pofs)
|
2017-10-17 17:18:16 +00:00
|
|
|
{
|
2017-12-12 22:47:42 +00:00
|
|
|
const void *vpinfail;
|
|
|
|
uint16_t pinfaillen;
|
2017-12-14 16:14:15 +00:00
|
|
|
unsigned int ofs;
|
2017-12-12 22:47:42 +00:00
|
|
|
// The PIN_FAIL_KEY points to an area of words, initialized to
|
|
|
|
// 0xffffffff (meaning no pin failures). The first non-zero word
|
|
|
|
// in this area is the current pin failure counter. If PIN_FAIL_KEY
|
|
|
|
// has no configuration or is empty, the pin failure counter is 0.
|
|
|
|
// We rely on the fact that flash allows to clear bits and we clear one
|
|
|
|
// bit to indicate pin failure. On success, the word is set to 0,
|
|
|
|
// indicating that the next word is the pin failure counter.
|
|
|
|
|
|
|
|
// Find the current pin failure counter
|
|
|
|
if (secfalse != norcow_get(PIN_FAIL_KEY, &vpinfail, &pinfaillen)) {
|
2017-12-14 16:14:15 +00:00
|
|
|
*pinfail = vpinfail;
|
2017-12-12 22:47:42 +00:00
|
|
|
for (ofs = 0; ofs < pinfaillen / sizeof(uint32_t); ofs++) {
|
2017-12-14 16:14:15 +00:00
|
|
|
if (((const uint32_t *) vpinfail)[ofs]) {
|
|
|
|
*pinfail = vpinfail;
|
|
|
|
*pofs = ofs;
|
|
|
|
return sectrue;
|
2017-12-12 22:47:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-12-14 16:14:15 +00:00
|
|
|
|
|
|
|
// No pin failure section, or all entries used -> create a new one.
|
|
|
|
uint32_t pinarea[PIN_FAIL_SECTOR_SIZE];
|
|
|
|
memset(pinarea, 0xff, sizeof(pinarea));
|
|
|
|
if (sectrue != norcow_set(PIN_FAIL_KEY, pinarea, sizeof(pinarea))) {
|
|
|
|
return secfalse;
|
|
|
|
}
|
|
|
|
if (sectrue != norcow_get(PIN_FAIL_KEY, &vpinfail, &pinfaillen)) {
|
|
|
|
return secfalse;
|
|
|
|
}
|
|
|
|
*pinfail = vpinfail;
|
|
|
|
*pofs = 0;
|
|
|
|
return sectrue;
|
|
|
|
}
|
|
|
|
|
|
|
|
static secbool pin_check(const uint8_t *pin, size_t len, mp_obj_t callback)
|
|
|
|
{
|
|
|
|
const uint32_t *pinfail = NULL;
|
|
|
|
uint32_t ofs;
|
|
|
|
uint32_t ctr;
|
|
|
|
|
|
|
|
// Get the pin failure counter
|
|
|
|
if (pin_get_fails(&pinfail, &ofs) != sectrue) {
|
|
|
|
return secfalse;
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|
2017-12-12 22:47:42 +00:00
|
|
|
|
|
|
|
// Read current failure counter
|
|
|
|
ctr = pinfail[ofs];
|
2017-12-14 16:14:15 +00:00
|
|
|
// Wipe storage if too many failures
|
2017-10-17 17:18:16 +00:00
|
|
|
pin_fails_check_max(ctr);
|
|
|
|
|
|
|
|
// Sleep for ~ctr seconds before checking the PIN.
|
|
|
|
for (uint32_t wait = ~ctr; wait > 0; wait--) {
|
2017-12-14 18:01:41 +00:00
|
|
|
if (mp_obj_is_callable(callback)) {
|
|
|
|
mp_call_function_2(callback, mp_obj_new_int(wait), mp_obj_new_int(~ctr));
|
|
|
|
}
|
2017-11-08 17:08:19 +00:00
|
|
|
hal_delay(1000);
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// First, we increase PIN fail counter in storage, even before checking the
|
|
|
|
// PIN. If the PIN is correct, we reset the counter afterwards. If not, we
|
|
|
|
// check if this is the last allowed attempt.
|
2017-12-12 22:47:42 +00:00
|
|
|
if (sectrue != pin_fails_increase(pinfail + ofs, ofs * sizeof(uint32_t))) {
|
2017-10-27 15:49:30 +00:00
|
|
|
return secfalse;
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|
2017-11-08 17:08:19 +00:00
|
|
|
if (sectrue != pin_cmp(pin, len)) {
|
2017-12-14 16:14:15 +00:00
|
|
|
// Wipe storage if too many failures
|
2017-10-17 17:18:16 +00:00
|
|
|
pin_fails_check_max(ctr << 1);
|
2017-10-27 15:49:30 +00:00
|
|
|
return secfalse;
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|
2017-12-12 22:47:42 +00:00
|
|
|
// Finally set the counter to 0 to indicate success.
|
|
|
|
pin_fails_reset(ofs * sizeof(uint32_t));
|
2017-11-06 16:26:13 +00:00
|
|
|
|
2017-11-08 17:08:19 +00:00
|
|
|
return sectrue;
|
|
|
|
}
|
2017-11-06 16:26:13 +00:00
|
|
|
|
2017-12-14 16:14:15 +00:00
|
|
|
secbool storage_unlock(const uint8_t *pin, size_t len, mp_obj_t callback)
|
2017-11-08 17:08:19 +00:00
|
|
|
{
|
|
|
|
unlocked = secfalse;
|
2017-12-14 16:14:15 +00:00
|
|
|
if (sectrue == initialized && sectrue == pin_check(pin, len, callback)) {
|
2017-11-08 17:08:19 +00:00
|
|
|
unlocked = sectrue;
|
|
|
|
}
|
2017-11-06 16:26:13 +00:00
|
|
|
return unlocked;
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|
|
|
|
|
2017-10-27 15:49:30 +00:00
|
|
|
secbool storage_get(uint16_t key, const void **val, uint16_t *len)
|
2017-10-17 17:18:16 +00:00
|
|
|
{
|
2017-12-12 22:47:42 +00:00
|
|
|
if (sectrue != initialized || sectrue != unlocked || (key >> 8) == 0) {
|
2017-10-27 15:49:30 +00:00
|
|
|
return secfalse;
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|
|
|
|
return norcow_get(key, val, len);
|
|
|
|
}
|
|
|
|
|
2017-10-27 15:49:30 +00:00
|
|
|
secbool storage_set(uint16_t key, const void *val, uint16_t len)
|
2017-10-17 17:18:16 +00:00
|
|
|
{
|
2017-12-12 22:47:42 +00:00
|
|
|
if (sectrue != initialized || sectrue != unlocked || (key >> 8) == 0) {
|
2017-10-27 15:49:30 +00:00
|
|
|
return secfalse;
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|
|
|
|
return norcow_set(key, val, len);
|
|
|
|
}
|
|
|
|
|
2017-10-27 15:49:30 +00:00
|
|
|
secbool storage_has_pin(void)
|
2017-10-24 11:55:29 +00:00
|
|
|
{
|
2017-10-27 15:49:30 +00:00
|
|
|
if (sectrue != initialized) {
|
|
|
|
return secfalse;
|
2017-10-24 11:55:29 +00:00
|
|
|
}
|
|
|
|
const void *spin = NULL;
|
|
|
|
uint16_t spinlen = 0;
|
|
|
|
norcow_get(PIN_KEY, &spin, &spinlen);
|
2017-11-08 17:08:19 +00:00
|
|
|
return sectrue * (0 != spinlen);
|
2017-10-24 11:55:29 +00:00
|
|
|
}
|
|
|
|
|
2017-12-14 16:14:15 +00:00
|
|
|
secbool storage_change_pin(const uint8_t *pin, size_t len, const uint8_t *newpin, size_t newlen, mp_obj_t callback)
|
2017-10-24 11:55:29 +00:00
|
|
|
{
|
2017-11-08 17:08:19 +00:00
|
|
|
if (sectrue != initialized || sectrue != unlocked || newlen > PIN_MAXLEN) {
|
2017-10-27 15:49:30 +00:00
|
|
|
return secfalse;
|
2017-10-24 11:55:29 +00:00
|
|
|
}
|
2017-12-14 16:14:15 +00:00
|
|
|
if (sectrue != pin_check(pin, len, callback)) {
|
2017-10-27 15:49:30 +00:00
|
|
|
return secfalse;
|
2017-10-24 11:55:29 +00:00
|
|
|
}
|
2017-11-08 17:08:19 +00:00
|
|
|
return norcow_set(PIN_KEY, newpin, newlen);
|
2017-10-24 11:55:29 +00:00
|
|
|
}
|
|
|
|
|
2017-12-09 13:48:49 +00:00
|
|
|
void storage_wipe(void)
|
2017-10-17 17:18:16 +00:00
|
|
|
{
|
2017-12-09 13:48:49 +00:00
|
|
|
norcow_wipe();
|
2017-10-17 17:18:16 +00:00
|
|
|
}
|