2016-05-23 13:44:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) Pavol Rusnak, SatoshiLabs
|
|
|
|
*
|
2016-05-28 12:37:32 +00:00
|
|
|
* Licensed under TREZOR License
|
|
|
|
* see LICENSE file for details
|
2016-05-23 13:44:09 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "py/runtime.h"
|
|
|
|
|
2016-11-21 18:56:23 +00:00
|
|
|
#if MICROPY_PY_TREZORCONFIG
|
2016-10-14 16:40:30 +00:00
|
|
|
|
2017-06-20 11:24:12 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "norcow.h"
|
|
|
|
|
|
|
|
static bool initialized = false;
|
2016-05-23 13:44:09 +00:00
|
|
|
|
2017-06-20 15:44:38 +00:00
|
|
|
/// def init() -> None:
|
2017-06-14 15:40:50 +00:00
|
|
|
/// '''
|
2017-06-20 11:24:12 +00:00
|
|
|
/// Initializes the storage. Must be called before any other method is called from this module!
|
2017-06-14 15:40:50 +00:00
|
|
|
/// '''
|
2017-06-20 11:24:12 +00:00
|
|
|
STATIC mp_obj_t mod_trezorconfig_init(void) {
|
2016-11-21 20:15:57 +00:00
|
|
|
bool r = norcow_init();
|
|
|
|
if (!r) {
|
2017-06-20 11:24:12 +00:00
|
|
|
mp_raise_msg(&mp_type_RuntimeError, "Could not initialize config module");
|
2016-11-21 20:15:57 +00:00
|
|
|
}
|
2017-06-20 11:24:12 +00:00
|
|
|
initialized = true;
|
|
|
|
return mp_const_none;
|
2016-05-23 13:44:09 +00:00
|
|
|
}
|
2017-06-20 11:24:12 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_0(mod_trezorconfig_init_obj, mod_trezorconfig_init);
|
2016-05-23 13:44:09 +00:00
|
|
|
|
2017-06-20 11:24:12 +00:00
|
|
|
/// def get(app: int, key: int) -> bytes:
|
2016-06-06 08:18:55 +00:00
|
|
|
/// '''
|
2016-11-23 13:45:58 +00:00
|
|
|
/// Gets a value of given key for given app (or empty bytes if not set).
|
2016-06-06 08:18:55 +00:00
|
|
|
/// '''
|
2017-06-20 11:24:12 +00:00
|
|
|
STATIC mp_obj_t mod_trezorconfig_get(mp_obj_t app, mp_obj_t key) {
|
|
|
|
if (!initialized) {
|
|
|
|
mp_raise_msg(&mp_type_RuntimeError, "Config module not initialized");
|
|
|
|
}
|
2016-10-14 16:40:30 +00:00
|
|
|
uint8_t a = mp_obj_get_int(app);
|
|
|
|
uint8_t k = mp_obj_get_int(key);
|
2017-03-30 19:40:36 +00:00
|
|
|
uint16_t appkey = a << 8 | k, len;
|
2016-10-14 16:40:30 +00:00
|
|
|
const void *val;
|
|
|
|
bool r = norcow_get(appkey, &val, &len);
|
2016-11-23 13:45:58 +00:00
|
|
|
if (!r || len == 0) {
|
|
|
|
return mp_const_empty_bytes;
|
2016-11-21 20:15:57 +00:00
|
|
|
}
|
2016-10-14 16:40:30 +00:00
|
|
|
vstr_t vstr;
|
|
|
|
vstr_init_len(&vstr, len);
|
|
|
|
memcpy(vstr.buf, val, len);
|
|
|
|
return mp_obj_new_str_from_vstr(&mp_type_bytes, &vstr);
|
2016-05-23 13:44:09 +00:00
|
|
|
}
|
2017-06-20 11:24:12 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_2(mod_trezorconfig_get_obj, mod_trezorconfig_get);
|
2016-05-23 13:44:09 +00:00
|
|
|
|
2017-06-20 11:24:12 +00:00
|
|
|
/// def set(app: int, key: int, value: bytes) -> None:
|
2016-06-06 08:18:55 +00:00
|
|
|
/// '''
|
|
|
|
/// Sets a value of given key for given app.
|
|
|
|
/// '''
|
2017-06-20 11:24:12 +00:00
|
|
|
STATIC mp_obj_t mod_trezorconfig_set(mp_obj_t app, mp_obj_t key, mp_obj_t value) {
|
|
|
|
if (!initialized) {
|
|
|
|
mp_raise_msg(&mp_type_RuntimeError, "Config module not initialized");
|
|
|
|
}
|
|
|
|
uint8_t a = mp_obj_get_int(app);
|
|
|
|
uint8_t k = mp_obj_get_int(key);
|
2016-10-14 16:40:30 +00:00
|
|
|
uint16_t appkey = a << 8 | k;
|
2017-06-20 11:24:12 +00:00
|
|
|
mp_buffer_info_t v;
|
|
|
|
mp_get_buffer_raise(value, &v, MP_BUFFER_READ);
|
|
|
|
bool r = norcow_set(appkey, v.buf, v.len);
|
2016-10-14 16:40:30 +00:00
|
|
|
if (!r) {
|
2016-11-21 20:15:57 +00:00
|
|
|
mp_raise_msg(&mp_type_RuntimeError, "Could not save value");
|
2016-10-14 16:40:30 +00:00
|
|
|
}
|
2016-05-23 13:44:09 +00:00
|
|
|
return mp_const_none;
|
|
|
|
}
|
2017-06-20 11:24:12 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_3(mod_trezorconfig_set_obj, mod_trezorconfig_set);
|
2016-05-23 13:44:09 +00:00
|
|
|
|
2017-06-20 15:44:38 +00:00
|
|
|
/// def wipe() -> None:
|
2016-11-06 11:38:33 +00:00
|
|
|
/// '''
|
2017-06-14 15:40:50 +00:00
|
|
|
/// Erases the whole config. Use with caution!
|
2016-11-06 11:38:33 +00:00
|
|
|
/// '''
|
2017-06-20 11:24:12 +00:00
|
|
|
STATIC mp_obj_t mod_trezorconfig_wipe(void) {
|
|
|
|
if (!initialized) {
|
|
|
|
mp_raise_msg(&mp_type_RuntimeError, "Config module not initialized");
|
|
|
|
}
|
2016-11-21 20:15:57 +00:00
|
|
|
bool r = norcow_wipe();
|
|
|
|
if (!r) {
|
|
|
|
mp_raise_msg(&mp_type_RuntimeError, "Could not wipe storage");
|
|
|
|
}
|
2016-11-06 11:38:33 +00:00
|
|
|
return mp_const_none;
|
|
|
|
}
|
2017-06-20 11:24:12 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_0(mod_trezorconfig_wipe_obj, mod_trezorconfig_wipe);
|
2016-05-23 13:44:09 +00:00
|
|
|
|
2017-06-14 16:47:38 +00:00
|
|
|
STATIC const mp_rom_map_elem_t mp_module_trezorconfig_globals_table[] = {
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_trezorconfig) },
|
2017-06-20 11:24:12 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_init), MP_ROM_PTR(&mod_trezorconfig_init_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_get), MP_ROM_PTR(&mod_trezorconfig_get_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_set), MP_ROM_PTR(&mod_trezorconfig_set_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_wipe), MP_ROM_PTR(&mod_trezorconfig_wipe_obj) },
|
2016-05-23 13:44:09 +00:00
|
|
|
};
|
2017-06-14 16:47:38 +00:00
|
|
|
STATIC MP_DEFINE_CONST_DICT(mp_module_trezorconfig_globals, mp_module_trezorconfig_globals_table);
|
2016-05-23 13:44:09 +00:00
|
|
|
|
2017-06-14 16:47:38 +00:00
|
|
|
const mp_obj_module_t mp_module_trezorconfig = {
|
2016-05-23 13:44:09 +00:00
|
|
|
.base = { &mp_type_module },
|
2017-06-14 16:47:38 +00:00
|
|
|
.globals = (mp_obj_dict_t*)&mp_module_trezorconfig_globals,
|
2016-05-23 13:44:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MICROPY_PY_TREZORCONFIG
|