2016-04-04 14:12:13 +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-04-04 14:12:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "py/nlr.h"
|
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "py/binary.h"
|
2016-04-29 01:15:18 +00:00
|
|
|
#include "py/mphal.h"
|
2016-10-07 11:57:21 +00:00
|
|
|
#include "py/objstr.h"
|
2016-04-04 14:12:13 +00:00
|
|
|
|
|
|
|
#if MICROPY_PY_TREZORMSG
|
|
|
|
|
2016-04-29 01:15:18 +00:00
|
|
|
#if defined STM32_HAL_H
|
|
|
|
#include "modtrezormsg-stmhal.h"
|
|
|
|
#elif defined UNIX
|
|
|
|
#include "modtrezormsg-unix.h"
|
|
|
|
#else
|
|
|
|
#error Unsupported port. Only STMHAL and UNIX ports are supported.
|
|
|
|
#endif
|
2016-04-04 14:12:13 +00:00
|
|
|
|
|
|
|
typedef struct _mp_obj_Msg_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
} mp_obj_Msg_t;
|
|
|
|
|
|
|
|
STATIC mp_obj_t mod_TrezorMsg_Msg_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
|
2016-04-15 19:13:27 +00:00
|
|
|
mp_arg_check_num(n_args, n_kw, 0, 0, false);
|
2016-04-29 01:15:18 +00:00
|
|
|
msg_init();
|
2016-04-04 14:12:13 +00:00
|
|
|
mp_obj_Msg_t *o = m_new_obj(mp_obj_Msg_t);
|
|
|
|
o->base.type = type;
|
|
|
|
return MP_OBJ_FROM_PTR(o);
|
|
|
|
}
|
|
|
|
|
2016-09-23 15:25:34 +00:00
|
|
|
/// def trezor.msg.setup(ifaces: list) -> None:
|
2016-06-06 08:18:55 +00:00
|
|
|
/// '''
|
|
|
|
/// Configures USB interfaces with a list of tuples (interface_number, usage_page)
|
|
|
|
/// '''
|
2016-05-25 00:38:10 +00:00
|
|
|
STATIC mp_obj_t mod_TrezorMsg_Msg_setup(mp_obj_t self, mp_obj_t ifaces) {
|
|
|
|
mp_uint_t iface_cnt;
|
|
|
|
mp_obj_t *iface;
|
|
|
|
if (MP_OBJ_IS_TYPE(ifaces, &mp_type_tuple)) {
|
|
|
|
mp_obj_tuple_get(ifaces, &iface_cnt, &iface);
|
|
|
|
} else
|
|
|
|
if (MP_OBJ_IS_TYPE(ifaces, &mp_type_list)) {
|
|
|
|
mp_obj_list_get(ifaces, &iface_cnt, &iface);
|
|
|
|
} else {
|
2016-10-07 10:09:05 +00:00
|
|
|
mp_raise_TypeError("List or tuple expected");
|
2016-05-25 00:38:10 +00:00
|
|
|
}
|
|
|
|
for (mp_uint_t i = 0; i < iface_cnt; i++) {
|
|
|
|
if (!MP_OBJ_IS_TYPE(iface[i], &mp_type_tuple)) {
|
2016-10-07 10:09:05 +00:00
|
|
|
mp_raise_TypeError("Tuple expected");
|
2016-05-25 00:38:10 +00:00
|
|
|
}
|
|
|
|
mp_uint_t attr_cnt;
|
|
|
|
mp_obj_t *attr;
|
|
|
|
mp_obj_tuple_get(iface[i], &attr_cnt, &attr);
|
|
|
|
assert(attr_cnt == 2);
|
2016-05-30 15:18:30 +00:00
|
|
|
uint8_t endpoint = mp_obj_get_int(attr[0]);
|
|
|
|
uint16_t usage_page = mp_obj_get_int(attr[1]);
|
|
|
|
printf("iface %d: ep=%d up=%04x\n", (uint16_t)i, endpoint, usage_page);
|
2016-05-25 00:38:10 +00:00
|
|
|
}
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_2(mod_TrezorMsg_Msg_setup_obj, mod_TrezorMsg_Msg_setup);
|
|
|
|
|
2016-09-23 15:25:34 +00:00
|
|
|
/// def trezor.msg.send(iface: int, message: bytes) -> int:
|
2016-06-06 08:18:55 +00:00
|
|
|
/// '''
|
|
|
|
/// Sends message using USB HID (device) or UDP (emulator).
|
|
|
|
/// '''
|
2016-05-23 15:53:42 +00:00
|
|
|
STATIC mp_obj_t mod_TrezorMsg_Msg_send(mp_obj_t self, mp_obj_t iface, mp_obj_t message) {
|
|
|
|
uint8_t iface_num = mp_obj_get_int(iface);
|
2016-05-02 16:55:32 +00:00
|
|
|
mp_buffer_info_t msg;
|
|
|
|
mp_get_buffer_raise(message, &msg, MP_BUFFER_READ);
|
2016-05-23 15:53:42 +00:00
|
|
|
ssize_t r = msg_send(iface_num, msg.buf, msg.len);
|
2016-04-29 01:15:18 +00:00
|
|
|
return MP_OBJ_NEW_SMALL_INT(r);
|
2016-04-04 14:12:13 +00:00
|
|
|
}
|
2016-05-23 15:53:42 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_3(mod_TrezorMsg_Msg_send_obj, mod_TrezorMsg_Msg_send);
|
2016-04-04 14:12:13 +00:00
|
|
|
|
2016-04-29 12:49:47 +00:00
|
|
|
#define TICK_RESOLUTION 1000
|
2016-05-30 14:29:06 +00:00
|
|
|
#define TOUCH_IFACE 256
|
2016-04-29 12:49:47 +00:00
|
|
|
|
2016-09-23 15:25:34 +00:00
|
|
|
/// def trezor.msg.select(timeout_us: int) -> tuple:
|
2016-06-06 08:18:55 +00:00
|
|
|
/// '''
|
|
|
|
/// Polls the event queue and returns the event object.
|
|
|
|
/// Function returns None if timeout specified in microseconds is reached.
|
|
|
|
/// '''
|
2016-04-29 12:49:47 +00:00
|
|
|
STATIC mp_obj_t mod_TrezorMsg_Msg_select(mp_obj_t self, mp_obj_t timeout_us) {
|
2016-05-02 16:55:32 +00:00
|
|
|
int timeout = mp_obj_get_int(timeout_us);
|
|
|
|
if (timeout < 0) {
|
|
|
|
timeout = 0;
|
2016-04-29 12:49:47 +00:00
|
|
|
}
|
2016-04-29 15:29:46 +00:00
|
|
|
for(;;) {
|
2016-04-29 01:15:18 +00:00
|
|
|
uint32_t e = msg_poll_ui_event();
|
|
|
|
if (e) {
|
2016-05-30 14:29:06 +00:00
|
|
|
mp_obj_tuple_t *tuple = MP_OBJ_TO_PTR(mp_obj_new_tuple(4, NULL));
|
|
|
|
tuple->items[0] = MP_OBJ_NEW_SMALL_INT(TOUCH_IFACE);
|
|
|
|
tuple->items[1] = MP_OBJ_NEW_SMALL_INT((e & 0xFF0000) >> 16); // event type
|
|
|
|
tuple->items[2] = MP_OBJ_NEW_SMALL_INT((e & 0xFF00) >> 8); // x position
|
|
|
|
tuple->items[3] = MP_OBJ_NEW_SMALL_INT((e & 0xFF)); // y position
|
2016-04-29 01:15:18 +00:00
|
|
|
return MP_OBJ_FROM_PTR(tuple);
|
|
|
|
}
|
2016-05-23 15:53:42 +00:00
|
|
|
uint8_t iface;
|
|
|
|
uint8_t recvbuf[64];
|
|
|
|
ssize_t l = msg_recv(&iface, recvbuf, 64);
|
|
|
|
if (l > 0) {
|
2016-05-30 14:29:06 +00:00
|
|
|
mp_obj_tuple_t *tuple = MP_OBJ_TO_PTR(mp_obj_new_tuple(2, NULL));
|
|
|
|
tuple->items[0] = MP_OBJ_NEW_SMALL_INT(iface);
|
2016-10-07 11:57:21 +00:00
|
|
|
tuple->items[1] = mp_obj_new_str_of_type(&mp_type_bytes, recvbuf, l);
|
2016-04-29 17:07:36 +00:00
|
|
|
return MP_OBJ_FROM_PTR(tuple);
|
|
|
|
}
|
2016-05-02 16:55:32 +00:00
|
|
|
if (timeout <= 0) {
|
2016-04-29 15:29:46 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-05-08 00:26:09 +00:00
|
|
|
#if defined UNIX
|
|
|
|
mp_hal_delay_us(TICK_RESOLUTION);
|
|
|
|
#else
|
2016-04-29 12:49:47 +00:00
|
|
|
mp_hal_delay_us_fast(TICK_RESOLUTION);
|
2016-05-08 00:26:09 +00:00
|
|
|
#endif
|
2016-05-02 16:55:32 +00:00
|
|
|
timeout -= TICK_RESOLUTION;
|
2016-04-29 01:15:18 +00:00
|
|
|
}
|
2016-04-04 14:12:13 +00:00
|
|
|
return mp_const_none;
|
|
|
|
}
|
2016-04-29 01:15:18 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_2(mod_TrezorMsg_Msg_select_obj, mod_TrezorMsg_Msg_select);
|
2016-04-04 14:12:13 +00:00
|
|
|
|
|
|
|
STATIC const mp_rom_map_elem_t mod_TrezorMsg_Msg_locals_dict_table[] = {
|
2016-04-29 01:15:18 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_select), MP_ROM_PTR(&mod_TrezorMsg_Msg_select_obj) },
|
2016-04-04 14:12:13 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_send), MP_ROM_PTR(&mod_TrezorMsg_Msg_send_obj) },
|
2016-05-25 00:38:10 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_setup), MP_ROM_PTR(&mod_TrezorMsg_Msg_setup_obj) },
|
2016-04-04 14:12:13 +00:00
|
|
|
};
|
|
|
|
STATIC MP_DEFINE_CONST_DICT(mod_TrezorMsg_Msg_locals_dict, mod_TrezorMsg_Msg_locals_dict_table);
|
|
|
|
|
|
|
|
STATIC const mp_obj_type_t mod_TrezorMsg_Msg_type = {
|
|
|
|
{ &mp_type_type },
|
|
|
|
.name = MP_QSTR_Msg,
|
|
|
|
.make_new = mod_TrezorMsg_Msg_make_new,
|
|
|
|
.locals_dict = (void*)&mod_TrezorMsg_Msg_locals_dict,
|
|
|
|
};
|
|
|
|
|
|
|
|
STATIC const mp_rom_map_elem_t mp_module_TrezorMsg_globals_table[] = {
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_TrezorMsg) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_Msg), MP_ROM_PTR(&mod_TrezorMsg_Msg_type) },
|
|
|
|
};
|
|
|
|
|
|
|
|
STATIC MP_DEFINE_CONST_DICT(mp_module_TrezorMsg_globals, mp_module_TrezorMsg_globals_table);
|
|
|
|
|
|
|
|
const mp_obj_module_t mp_module_TrezorMsg = {
|
|
|
|
.base = { &mp_type_module },
|
|
|
|
.globals = (mp_obj_dict_t*)&mp_module_TrezorMsg_globals,
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MICROPY_PY_TREZORMSG
|