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>
|
|
|
|
|
|
2024-01-16 17:17:42 +01:00
|
|
|
#include "asset_info.h"
|
2024-01-16 13:51:36 +01:00
|
|
|
#include "common_utils.h"
|
2024-03-18 08:58:05 +01:00
|
|
|
#include "lcx_ecfp.h"
|
|
|
|
|
#include "lcx_sha3.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--) {
|
2022-06-07 14:44:01 +02:00
|
|
|
*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
|
|
|
}
|
|
|
|
|
|
2022-07-15 12:33:19 +02:00
|
|
|
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-04-21 16:56:17 +02:00
|
|
|
}
|
2021-08-26 13:02:07 +02:00
|
|
|
|
|
|
|
|
return res;
|
2021-04-21 16:56:17 +02:00
|
|
|
}
|
|
|
|
|
|
2024-01-15 18:52:12 +01:00
|
|
|
bool u64_to_string(uint64_t src, char *dst, uint8_t dst_size) {
|
|
|
|
|
// Copy the numbers in ASCII format.
|
|
|
|
|
uint8_t i = 0;
|
|
|
|
|
do {
|
|
|
|
|
// Checking `i + 1` to make sure we have enough space for '\0'.
|
|
|
|
|
if (i + 1 >= dst_size) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
dst[i] = src % 10 + '0';
|
|
|
|
|
src /= 10;
|
|
|
|
|
i++;
|
|
|
|
|
} while (src);
|
|
|
|
|
|
|
|
|
|
// Null terminate string
|
|
|
|
|
dst[i] = '\0';
|
|
|
|
|
|
|
|
|
|
// Revert the string
|
|
|
|
|
i--;
|
|
|
|
|
uint8_t j = 0;
|
|
|
|
|
while (j < i) {
|
|
|
|
|
char tmp = dst[i];
|
|
|
|
|
dst[i] = dst[j];
|
|
|
|
|
dst[j] = tmp;
|
|
|
|
|
i--;
|
|
|
|
|
j++;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-19 16:05:56 +02:00
|
|
|
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);
|
2021-05-19 16:05:56 +02:00
|
|
|
|
|
|
|
|
// 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);
|
2021-05-19 16:05:56 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-07 16:06:30 +02:00
|
|
|
uint16_t *p = n;
|
2021-05-06 22:34:12 +02:00
|
|
|
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))) {
|
2021-05-06 22:34:12 +02:00
|
|
|
if (pos == 0) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
pos -= 1;
|
2021-11-04 15:00:33 +01:00
|
|
|
unsigned int carry = 0;
|
2021-05-06 22:34:12 +02:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-15 18:52:12 +01:00
|
|
|
bool adjustDecimals(const char *src,
|
|
|
|
|
size_t srcLength,
|
|
|
|
|
char *target,
|
|
|
|
|
size_t targetLength,
|
|
|
|
|
uint8_t decimals) {
|
|
|
|
|
uint32_t startOffset;
|
|
|
|
|
uint32_t lastZeroOffset = 0;
|
|
|
|
|
uint32_t offset = 0;
|
|
|
|
|
if ((srcLength == 1) && (*src == '0')) {
|
|
|
|
|
if (targetLength < 2) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
target[0] = '0';
|
|
|
|
|
target[1] = '\0';
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (srcLength <= decimals) {
|
|
|
|
|
uint32_t delta = decimals - srcLength;
|
|
|
|
|
if (targetLength < srcLength + 1 + 2 + delta) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
target[offset++] = '0';
|
|
|
|
|
target[offset++] = '.';
|
|
|
|
|
for (uint32_t i = 0; i < delta; i++) {
|
|
|
|
|
target[offset++] = '0';
|
|
|
|
|
}
|
|
|
|
|
startOffset = offset;
|
|
|
|
|
for (uint32_t i = 0; i < srcLength; i++) {
|
|
|
|
|
target[offset++] = src[i];
|
|
|
|
|
}
|
|
|
|
|
target[offset] = '\0';
|
|
|
|
|
} else {
|
|
|
|
|
uint32_t sourceOffset = 0;
|
|
|
|
|
uint32_t delta = srcLength - decimals;
|
|
|
|
|
if (targetLength < srcLength + 1 + 1) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
while (offset < delta) {
|
|
|
|
|
target[offset++] = src[sourceOffset++];
|
|
|
|
|
}
|
|
|
|
|
if (decimals != 0) {
|
|
|
|
|
target[offset++] = '.';
|
|
|
|
|
}
|
|
|
|
|
startOffset = offset;
|
|
|
|
|
while (sourceOffset < srcLength) {
|
|
|
|
|
target[offset++] = src[sourceOffset++];
|
|
|
|
|
}
|
|
|
|
|
target[offset] = '\0';
|
|
|
|
|
}
|
|
|
|
|
for (uint32_t i = startOffset; i < offset; i++) {
|
|
|
|
|
if (target[i] == '0') {
|
|
|
|
|
if (lastZeroOffset == 0) {
|
|
|
|
|
lastZeroOffset = i;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
lastZeroOffset = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (lastZeroOffset != 0) {
|
|
|
|
|
target[lastZeroOffset] = '\0';
|
|
|
|
|
if (target[lastZeroOffset - 1] == '.') {
|
|
|
|
|
target[lastZeroOffset - 1] = '\0';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-11 17:23:49 +02:00
|
|
|
bool amountToString(const uint8_t *amount,
|
2021-05-19 16:05:56 +02:00
|
|
|
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,
|
2022-02-04 17:52:52 +01:00
|
|
|
size_t out_buffer_size) {
|
2021-05-19 16:05:56 +02:00
|
|
|
char tmp_buffer[100] = {0};
|
|
|
|
|
|
2021-10-04 11:26:01 +02:00
|
|
|
if (uint256_to_decimal(amount, amount_size, tmp_buffer, sizeof(tmp_buffer)) == false) {
|
2023-07-11 17:23:49 +02:00
|
|
|
return false;
|
2021-05-19 16:05:56 +02:00
|
|
|
}
|
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);
|
|
|
|
|
|
2023-01-10 14:12:39 +01:00
|
|
|
if (ticker_len > 0) {
|
2024-04-12 09:32:16 +02:00
|
|
|
if (out_buffer_size <= ticker_len + 1) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
memcpy(out_buffer, ticker, ticker_len);
|
2023-01-10 14:12:39 +01:00
|
|
|
out_buffer[ticker_len++] = ' ';
|
|
|
|
|
}
|
2020-06-29 15:43:02 +02:00
|
|
|
|
2021-10-04 11:26:01 +02:00
|
|
|
if (adjustDecimals(tmp_buffer,
|
|
|
|
|
amount_len,
|
|
|
|
|
out_buffer + ticker_len,
|
|
|
|
|
out_buffer_size - ticker_len - 1,
|
|
|
|
|
decimals) == false) {
|
2023-07-11 17:23:49 +02:00
|
|
|
return false;
|
2021-10-04 11:26:01 +02:00
|
|
|
}
|
|
|
|
|
|
2020-12-01 16:20:13 +01:00
|
|
|
out_buffer[out_buffer_size - 1] = '\0';
|
2023-07-11 17:23:49 +02:00
|
|
|
return true;
|
2020-06-29 15:43:02 +02:00
|
|
|
}
|
2024-01-15 18:52:12 +01:00
|
|
|
|
2024-03-18 08:58:05 +01:00
|
|
|
void getEthAddressFromRawKey(const uint8_t raw_pubkey[static 65],
|
|
|
|
|
uint8_t out[static ADDRESS_LENGTH]) {
|
|
|
|
|
uint8_t hashAddress[CX_KECCAK_256_SIZE];
|
|
|
|
|
CX_ASSERT(cx_keccak_256_hash(raw_pubkey + 1, 64, hashAddress));
|
|
|
|
|
memmove(out, hashAddress + 12, ADDRESS_LENGTH);
|
2024-01-15 18:52:12 +01:00
|
|
|
}
|
|
|
|
|
|
2024-03-18 08:58:05 +01:00
|
|
|
void getEthAddressStringFromRawKey(const uint8_t raw_pubkey[static 65],
|
|
|
|
|
char out[static ADDRESS_LENGTH * 2],
|
|
|
|
|
uint64_t chainId) {
|
|
|
|
|
uint8_t hashAddress[CX_KECCAK_256_SIZE];
|
|
|
|
|
CX_ASSERT(cx_keccak_256_hash(raw_pubkey + 1, 64, hashAddress));
|
|
|
|
|
getEthAddressStringFromBinary(hashAddress + 12, out, chainId);
|
2024-01-15 18:52:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool getEthAddressStringFromBinary(uint8_t *address,
|
2024-03-18 08:58:05 +01:00
|
|
|
char out[static ADDRESS_LENGTH * 2],
|
2024-01-15 18:52:12 +01:00
|
|
|
uint64_t chainId) {
|
|
|
|
|
// save some precious stack space
|
|
|
|
|
union locals_union {
|
|
|
|
|
uint8_t hashChecksum[INT256_LENGTH];
|
|
|
|
|
uint8_t tmp[51];
|
|
|
|
|
} locals_union;
|
|
|
|
|
|
|
|
|
|
uint8_t i;
|
|
|
|
|
bool eip1191 = false;
|
|
|
|
|
uint32_t offset = 0;
|
|
|
|
|
switch (chainId) {
|
|
|
|
|
case 30:
|
|
|
|
|
case 31:
|
|
|
|
|
eip1191 = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (eip1191) {
|
|
|
|
|
if (!u64_to_string(chainId, (char *) locals_union.tmp, sizeof(locals_union.tmp))) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
offset = strnlen((char *) locals_union.tmp, sizeof(locals_union.tmp));
|
|
|
|
|
strlcat((char *) locals_union.tmp + offset, "0x", sizeof(locals_union.tmp) - offset);
|
|
|
|
|
offset = strnlen((char *) locals_union.tmp, sizeof(locals_union.tmp));
|
|
|
|
|
}
|
|
|
|
|
for (i = 0; i < 20; i++) {
|
|
|
|
|
uint8_t digit = address[i];
|
|
|
|
|
locals_union.tmp[offset + 2 * i] = HEXDIGITS[(digit >> 4) & 0x0f];
|
|
|
|
|
locals_union.tmp[offset + 2 * i + 1] = HEXDIGITS[digit & 0x0f];
|
|
|
|
|
}
|
2024-03-18 08:58:05 +01:00
|
|
|
if (cx_keccak_256_hash(locals_union.tmp, offset + 40, locals_union.hashChecksum) != CX_OK) {
|
2024-01-15 18:52:12 +01:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < 40; i++) {
|
|
|
|
|
uint8_t digit = address[i / 2];
|
|
|
|
|
if ((i % 2) == 0) {
|
|
|
|
|
digit = (digit >> 4) & 0x0f;
|
|
|
|
|
} else {
|
|
|
|
|
digit = digit & 0x0f;
|
|
|
|
|
}
|
|
|
|
|
if (digit < 10) {
|
|
|
|
|
out[i] = HEXDIGITS[digit];
|
|
|
|
|
} else {
|
|
|
|
|
int v = (locals_union.hashChecksum[i / 2] >> (4 * (1 - i % 2))) & 0x0f;
|
|
|
|
|
if (v >= 8) {
|
|
|
|
|
out[i] = HEXDIGITS[digit] - 'a' + 'A';
|
|
|
|
|
} else {
|
|
|
|
|
out[i] = HEXDIGITS[digit];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
out[40] = '\0';
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Fills the `out` buffer with the lowercase string representation of the pubkey passed in as binary
|
|
|
|
|
format by `in`. (eg: uint8_t*:0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB ->
|
2024-03-18 08:58:05 +01:00
|
|
|
char*:"0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB\0" ).*/
|
|
|
|
|
bool getEthDisplayableAddress(uint8_t *in, char *out, size_t out_len, uint64_t chainId) {
|
2024-01-15 18:52:12 +01:00
|
|
|
if (out_len < 43) {
|
|
|
|
|
strlcpy(out, "ERROR", out_len);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
out[0] = '0';
|
|
|
|
|
out[1] = 'x';
|
2024-03-18 08:58:05 +01:00
|
|
|
if (!getEthAddressStringFromBinary(in, out + 2, chainId)) {
|
2024-01-15 18:52:12 +01:00
|
|
|
strlcpy(out, "ERROR", out_len);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|