Files
app-ethereum/src/utils.c

149 lines
4.3 KiB
C
Raw Normal View History

2019-01-04 10:43:12 +01:00
/*******************************************************************************
2020-12-01 16:20:13 +01:00
* Ledger Ethereum App
* (c) 2016-2019 Ledger
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
********************************************************************************/
2019-01-04 10:43:12 +01:00
2019-01-04 10:48:57 +01:00
#include <stdint.h>
#include <string.h>
2020-06-29 15:43:02 +02:00
#include "ethUtils.h"
#include "uint128.h"
2019-01-04 10:48:57 +01:00
#include "uint256.h"
2020-06-29 15:43:02 +02:00
#include "tokens.h"
2021-05-17 17:20:20 +02:00
#include "utils.h"
2019-01-04 10:48:57 +01:00
2019-01-04 10:43:12 +01:00
void array_hexstr(char *strbuf, const void *bin, unsigned int len) {
while (len--) {
*strbuf++ = HEXDIGITS[((*((char *) bin)) >> 4) & 0xF];
*strbuf++ = HEXDIGITS[(*((char *) bin)) & 0xF];
2020-12-01 16:20:13 +01:00
bin = (const void *) ((unsigned int) bin + 1);
2019-01-04 10:43:12 +01:00
}
2020-12-01 16:20:13 +01:00
*strbuf = 0; // EOS
2019-01-04 10:48:57 +01:00
}
void convertUint64BEto128(const uint8_t *const data, uint32_t length, uint128_t *const target) {
uint8_t tmp[INT128_LENGTH];
int64_t value;
value = u64_from_BE(data, length);
memset(tmp, ((value < 0) ? 0xff : 0), sizeof(tmp) - length);
memmove(tmp + sizeof(tmp) - length, data, length);
readu128BE(tmp, target);
}
void convertUint128BE(const uint8_t *const data, uint32_t length, uint128_t *const target) {
uint8_t tmp[INT128_LENGTH];
memset(tmp, 0, sizeof(tmp) - length);
memmove(tmp + sizeof(tmp) - length, data, length);
readu128BE(tmp, target);
}
void convertUint256BE(const uint8_t *const data, uint32_t length, uint256_t *const target) {
uint8_t tmp[INT256_LENGTH];
memset(tmp, 0, sizeof(tmp) - length);
memmove(tmp + sizeof(tmp) - length, data, length);
2019-01-04 10:48:57 +01:00
readu256BE(tmp, target);
}
uint64_t u64_from_BE(const uint8_t *in, uint8_t size) {
2021-08-26 13:02:07 +02:00
uint8_t i = 0;
uint64_t res = 0;
while (i < size && i < sizeof(res)) {
res <<= 8;
res |= in[i];
i++;
}
2021-08-26 13:02:07 +02:00
return res;
}
bool uint256_to_decimal(const uint8_t *value, size_t value_len, char *out, size_t out_len) {
if (value_len > INT256_LENGTH) {
// value len is bigger than INT256_LENGTH ?!
return false;
}
uint16_t n[16] = {0};
// Copy and right-align the number
2021-05-20 10:54:34 +02:00
memcpy((uint8_t *) n + INT256_LENGTH - value_len, value, value_len);
// Special case when value is 0
if (allzeroes(n, INT256_LENGTH)) {
if (out_len < 2) {
// Not enough space to hold "0" and \0.
return false;
}
2021-07-27 12:23:55 +02:00
strlcpy(out, "0", out_len);
return true;
}
2021-05-07 16:06:30 +02:00
uint16_t *p = n;
for (int i = 0; i < 16; i++) {
n[i] = __builtin_bswap16(*p++);
}
int pos = out_len;
2021-05-07 16:06:30 +02:00
while (!allzeroes(n, sizeof(n))) {
if (pos == 0) {
return false;
}
pos -= 1;
unsigned int carry = 0;
for (int i = 0; i < 16; i++) {
int rem = ((carry << 16) | n[i]) % 10;
n[i] = ((carry << 16) | n[i]) / 10;
carry = rem;
}
out[pos] = '0' + carry;
}
memmove(out, out + pos, out_len - pos);
out[out_len - pos] = 0;
return true;
}
bool amountToString(const uint8_t *amount,
uint8_t amount_size,
2020-12-01 16:20:13 +01:00
uint8_t decimals,
2021-05-17 17:20:20 +02:00
const char *ticker,
2020-12-01 16:20:13 +01:00
char *out_buffer,
size_t out_buffer_size) {
char tmp_buffer[100] = {0};
if (uint256_to_decimal(amount, amount_size, tmp_buffer, sizeof(tmp_buffer)) == false) {
return false;
}
2020-06-29 15:43:02 +02:00
uint8_t amount_len = strnlen(tmp_buffer, sizeof(tmp_buffer));
uint8_t ticker_len = strnlen(ticker, MAX_TICKER_LEN);
memcpy(out_buffer, ticker, MIN(out_buffer_size, ticker_len));
if (ticker_len > 0) {
out_buffer[ticker_len++] = ' ';
}
2020-06-29 15:43:02 +02:00
if (adjustDecimals(tmp_buffer,
amount_len,
out_buffer + ticker_len,
out_buffer_size - ticker_len - 1,
decimals) == false) {
return false;
}
2020-12-01 16:20:13 +01:00
out_buffer[out_buffer_size - 1] = '\0';
return true;
2020-06-29 15:43:02 +02:00
}