2018-05-14 14:43:29 +00:00
|
|
|
/*
|
2019-06-17 18:27:55 +00:00
|
|
|
* This file is part of the Trezor project, https://trezor.io/
|
2018-05-14 14:43:29 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) SatoshiLabs
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "py/objint.h"
|
2019-03-29 15:26:02 +00:00
|
|
|
#include "py/runtime.h"
|
2018-05-14 14:43:29 +00:00
|
|
|
|
|
|
|
#ifndef __TREZOROBJ_H__
|
|
|
|
#define __TREZOROBJ_H__
|
|
|
|
|
|
|
|
#if MICROPY_LONGINT_IMPL != MICROPY_LONGINT_IMPL_MPZ
|
|
|
|
#error Use MPZ for MicroPython long int implementation.
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Casts int object into mp_int_t, without any conversions. Raises if object is
|
|
|
|
// not int or if it does not fit into mp_int_t representation.
|
|
|
|
static inline mp_int_t trezor_obj_get_int(mp_obj_t obj) {
|
2019-03-29 15:26:02 +00:00
|
|
|
if (MP_OBJ_IS_SMALL_INT(obj)) {
|
|
|
|
mp_int_t i = MP_OBJ_SMALL_INT_VALUE(obj);
|
|
|
|
return i;
|
|
|
|
} else if (MP_OBJ_IS_TYPE(obj, &mp_type_int)) {
|
|
|
|
mp_int_t i = 0;
|
|
|
|
mp_obj_int_t *self = MP_OBJ_TO_PTR(obj);
|
|
|
|
if (!mpz_as_int_checked(&self->mpz, &i)) {
|
|
|
|
mp_raise_msg(&mp_type_OverflowError,
|
|
|
|
"value does not fit into signed int type");
|
2018-05-14 14:43:29 +00:00
|
|
|
}
|
2019-03-29 15:26:02 +00:00
|
|
|
return i;
|
|
|
|
} else {
|
|
|
|
mp_raise_TypeError("value is not int");
|
|
|
|
}
|
2018-05-14 14:43:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Casts int object into mp_uint_t, without any conversions. Raises if object is
|
|
|
|
// not int or if it does not fit into mp_uint_t representation (or is less than
|
|
|
|
// 0).
|
|
|
|
static inline mp_uint_t trezor_obj_get_uint(mp_obj_t obj) {
|
2019-03-29 15:26:02 +00:00
|
|
|
if (MP_OBJ_IS_SMALL_INT(obj)) {
|
|
|
|
mp_int_t i = MP_OBJ_SMALL_INT_VALUE(obj);
|
2022-01-19 10:54:32 +00:00
|
|
|
if (i < 0) {
|
|
|
|
mp_raise_TypeError("value is negative");
|
|
|
|
}
|
2019-03-29 15:26:02 +00:00
|
|
|
mp_uint_t u = i;
|
|
|
|
return u;
|
|
|
|
} else if (MP_OBJ_IS_TYPE(obj, &mp_type_int)) {
|
|
|
|
mp_uint_t u = 0;
|
|
|
|
mp_obj_int_t *self = MP_OBJ_TO_PTR(obj);
|
|
|
|
if (!mpz_as_uint_checked(&self->mpz, &u)) {
|
|
|
|
mp_raise_msg(&mp_type_OverflowError,
|
|
|
|
"value does not fit into unsigned int type");
|
2018-05-14 14:43:29 +00:00
|
|
|
}
|
2019-03-29 15:26:02 +00:00
|
|
|
return u;
|
|
|
|
} else {
|
|
|
|
mp_raise_TypeError("value is not int");
|
|
|
|
}
|
2018-05-14 14:43:29 +00:00
|
|
|
}
|
|
|
|
|
2018-05-16 12:27:51 +00:00
|
|
|
static inline uint8_t trezor_obj_get_uint8(mp_obj_t obj) {
|
2019-03-29 15:26:02 +00:00
|
|
|
mp_uint_t u = trezor_obj_get_uint(obj);
|
|
|
|
if (u > 0xFF) {
|
|
|
|
mp_raise_msg(&mp_type_OverflowError, "value does not fit into byte type");
|
|
|
|
}
|
|
|
|
return u;
|
2018-05-16 12:27:51 +00:00
|
|
|
}
|
|
|
|
|
2021-11-27 11:48:15 +00:00
|
|
|
static inline uint64_t trezor_obj_get_uint64(mp_const_obj_t obj) {
|
|
|
|
if (MP_OBJ_IS_SMALL_INT(obj)) {
|
|
|
|
mp_int_t i = MP_OBJ_SMALL_INT_VALUE(obj);
|
2022-01-19 10:54:32 +00:00
|
|
|
if (i < 0) {
|
|
|
|
mp_raise_TypeError("value is negative");
|
|
|
|
}
|
2021-11-27 11:48:15 +00:00
|
|
|
mp_uint_t u = i;
|
|
|
|
return u;
|
|
|
|
} else if (MP_OBJ_IS_TYPE(obj, &mp_type_int)) {
|
|
|
|
uint64_t u = 0;
|
|
|
|
mp_obj_int_t *self = MP_OBJ_TO_PTR(obj);
|
|
|
|
if (self->mpz.neg != 0) {
|
|
|
|
mp_raise_TypeError("value is negative");
|
|
|
|
}
|
|
|
|
mpz_as_bytes(&self->mpz, MP_ENDIANNESS_BIG, sizeof(uint64_t), (byte *)&u);
|
|
|
|
return u;
|
|
|
|
} else {
|
|
|
|
mp_raise_TypeError("value is not int");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-23 12:14:33 +00:00
|
|
|
bool trezor_obj_get_ll_checked(mp_obj_t obj, long long *value);
|
|
|
|
|
2021-06-22 17:47:03 +00:00
|
|
|
mp_obj_t trezor_obj_call_protected(void (*func)(void *), void *arg);
|
|
|
|
|
2021-09-09 14:53:05 +00:00
|
|
|
mp_obj_t trezor_obj_str_from_rom_text(const char *str);
|
|
|
|
|
2018-05-14 14:43:29 +00:00
|
|
|
#endif
|