Files
app-ethereum/src_common/ethUtils.c

304 lines
9.4 KiB
C
Raw Normal View History

2016-06-01 21:41:29 +02: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.
********************************************************************************/
2016-06-01 21:41:29 +02:00
/**
* @brief Utilities for an Ethereum Hardware Wallet logic
* @file ethUtils.h
* @author Ledger Firmware Team <hello@ledger.fr>
* @version 1.0
* @date 8th of March 2016
*/
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include "ethUtils.h"
2018-08-02 11:16:25 +02:00
#include "chainConfig.h"
#include "ethUstream.h"
2018-08-02 11:16:25 +02:00
2016-06-01 21:41:29 +02:00
bool rlpCanDecode(uint8_t *buffer, uint32_t bufferLength, bool *valid) {
if (*buffer <= 0x7f) {
} else if (*buffer <= 0xb7) {
} else if (*buffer <= 0xbf) {
if (bufferLength < (1 + (*buffer - 0xb7))) {
return false;
}
if (*buffer > 0xbb) {
2020-12-01 16:20:13 +01:00
*valid = false; // arbitrary 32 bits length limitation
2016-06-01 21:41:29 +02:00
return true;
}
} else if (*buffer <= 0xf7) {
} else {
if (bufferLength < (1 + (*buffer - 0xf7))) {
return false;
}
if (*buffer > 0xfb) {
2020-12-01 16:20:13 +01:00
*valid = false; // arbitrary 32 bits length limitation
2016-06-01 21:41:29 +02:00
return true;
}
}
*valid = true;
return true;
}
bool rlpDecodeLength(uint8_t *buffer, uint32_t *fieldLength, uint32_t *offset, bool *list) {
2016-06-01 21:41:29 +02:00
if (*buffer <= 0x7f) {
*offset = 0;
*fieldLength = 1;
*list = false;
} else if (*buffer <= 0xb7) {
*offset = 1;
*fieldLength = *buffer - 0x80;
*list = false;
} else if (*buffer <= 0xbf) {
*offset = 1 + (*buffer - 0xb7);
*list = false;
switch (*buffer) {
2020-12-01 16:20:13 +01:00
case 0xb8:
*fieldLength = *(buffer + 1);
break;
case 0xb9:
*fieldLength = (*(buffer + 1) << 8) + *(buffer + 2);
break;
case 0xba:
*fieldLength = (*(buffer + 1) << 16) + (*(buffer + 2) << 8) + *(buffer + 3);
break;
case 0xbb:
*fieldLength = (*(buffer + 1) << 24) + (*(buffer + 2) << 16) +
(*(buffer + 3) << 8) + *(buffer + 4);
break;
default:
return false; // arbitrary 32 bits length limitation
2016-06-01 21:41:29 +02:00
}
} else if (*buffer <= 0xf7) {
*offset = 1;
*fieldLength = *buffer - 0xc0;
*list = true;
} else {
*offset = 1 + (*buffer - 0xf7);
*list = true;
switch (*buffer) {
2020-12-01 16:20:13 +01:00
case 0xf8:
*fieldLength = *(buffer + 1);
break;
case 0xf9:
*fieldLength = (*(buffer + 1) << 8) + *(buffer + 2);
break;
case 0xfa:
*fieldLength = (*(buffer + 1) << 16) + (*(buffer + 2) << 8) + *(buffer + 3);
break;
case 0xfb:
*fieldLength = (*(buffer + 1) << 24) + (*(buffer + 2) << 16) +
(*(buffer + 3) << 8) + *(buffer + 4);
break;
default:
return false; // arbitrary 32 bits length limitation
2016-06-01 21:41:29 +02:00
}
}
return true;
}
2020-12-01 16:20:13 +01:00
void getEthAddressFromKey(cx_ecfp_public_key_t *publicKey, uint8_t *out, cx_sha3_t *sha3Context) {
uint8_t hashAddress[INT256_LENGTH];
cx_keccak_init(sha3Context, 256);
2020-12-01 16:20:13 +01:00
cx_hash((cx_hash_t *) sha3Context, CX_LAST, publicKey->W + 1, 64, hashAddress, 32);
2020-11-24 10:23:45 +01:00
memmove(out, hashAddress + 12, 20);
2016-06-01 21:41:29 +02:00
}
2020-12-01 16:20:13 +01:00
void getEthAddressStringFromKey(cx_ecfp_public_key_t *publicKey,
char *out,
2020-12-01 16:20:13 +01:00
cx_sha3_t *sha3Context,
uint64_t chainId) {
uint8_t hashAddress[INT256_LENGTH];
cx_keccak_init(sha3Context, 256);
2020-12-01 16:20:13 +01:00
cx_hash((cx_hash_t *) sha3Context, CX_LAST, publicKey->W + 1, 64, hashAddress, 32);
getEthAddressStringFromBinary(hashAddress + 12, out, sha3Context, chainId);
2016-06-01 21:41:29 +02:00
}
2021-08-26 13:59:42 +02:00
void 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) {
THROW(0x6502);
}
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++;
}
}
2020-12-01 16:20:13 +01:00
void getEthAddressStringFromBinary(uint8_t *address,
char *out,
2020-12-01 16:20:13 +01:00
cx_sha3_t *sha3Context,
uint64_t chainId) {
2020-06-29 15:43:02 +02:00
// save some precious stack space
2020-12-01 16:20:13 +01:00
union locals_union {
uint8_t hashChecksum[INT256_LENGTH];
2020-06-29 15:43:02 +02:00
uint8_t tmp[51];
} locals_union;
2016-06-01 21:41:29 +02:00
uint8_t i;
2018-08-02 11:16:25 +02:00
bool eip1191 = false;
uint32_t offset = 0;
switch (chainId) {
2018-08-02 11:16:25 +02:00
case 30:
case 31:
eip1191 = true;
break;
}
if (eip1191) {
u64_to_string(chainId, (char *) locals_union.tmp, sizeof(locals_union.tmp));
2021-08-26 13:59:42 +02:00
offset = strnlen((char *) locals_union.tmp, sizeof(locals_union.tmp));
strlcat((char *) locals_union.tmp + offset, "0x", sizeof(locals_union.tmp) - offset);
2021-08-27 11:51:27 +02:00
offset = strnlen((char *) locals_union.tmp, sizeof(locals_union.tmp));
2018-08-02 11:16:25 +02:00
}
2016-06-01 21:41:29 +02:00
for (i = 0; i < 20; i++) {
uint8_t digit = address[i];
2020-06-29 15:43:02 +02:00
locals_union.tmp[offset + 2 * i] = HEXDIGITS[(digit >> 4) & 0x0f];
locals_union.tmp[offset + 2 * i + 1] = HEXDIGITS[digit & 0x0f];
2016-06-01 21:41:29 +02:00
}
cx_keccak_init(sha3Context, 256);
2020-12-01 16:20:13 +01:00
cx_hash((cx_hash_t *) sha3Context,
CX_LAST,
locals_union.tmp,
offset + 40,
locals_union.hashChecksum,
32);
2016-06-01 21:41:29 +02:00
for (i = 0; i < 40; i++) {
2018-08-06 23:46:37 +02:00
uint8_t digit = address[i / 2];
2016-06-01 21:41:29 +02:00
if ((i % 2) == 0) {
2018-08-06 23:46:37 +02:00
digit = (digit >> 4) & 0x0f;
2016-06-01 21:41:29 +02:00
} else {
2018-08-06 23:46:37 +02:00
digit = digit & 0x0f;
2016-06-01 21:41:29 +02:00
}
2018-08-06 23:46:37 +02:00
if (digit < 10) {
out[i] = HEXDIGITS[digit];
2020-12-01 16:20:13 +01:00
} else {
2020-06-29 15:43:02 +02:00
int v = (locals_union.hashChecksum[i / 2] >> (4 * (1 - i % 2))) & 0x0f;
2018-08-06 23:46:37 +02:00
if (v >= 8) {
out[i] = HEXDIGITS[digit] - 'a' + 'A';
2020-12-01 16:20:13 +01:00
} else {
2018-08-06 23:46:37 +02:00
out[i] = HEXDIGITS[digit];
}
2016-06-01 21:41:29 +02:00
}
}
out[40] = '\0';
}
/* Fills the `out` buffer with the lowercase string representation of the pubkey passed in as binary
format by `in`. (eg: uint8_t*:0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB ->
char*:"0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB\0" )
`sha3` context doesn't have have to be initialized prior to call.*/
void getEthDisplayableAddress(uint8_t *in,
char *out,
size_t out_len,
cx_sha3_t *sha3,
uint64_t chainId) {
if (out_len < 43) {
strlcpy(out, "ERROR", out_len);
return;
}
out[0] = '0';
out[1] = 'x';
getEthAddressStringFromBinary(in, out + 2, sha3, chainId);
}
bool adjustDecimals(const char *src,
size_t srcLength,
2020-12-01 16:20:13 +01:00
char *target,
size_t targetLength,
2020-12-01 16:20:13 +01:00
uint8_t decimals) {
2016-06-01 21:41:29 +02:00
uint32_t startOffset;
uint32_t lastZeroOffset = 0;
uint32_t offset = 0;
2016-08-28 23:38:27 +02:00
if ((srcLength == 1) && (*src == '0')) {
if (targetLength < 2) {
2020-12-01 16:20:13 +01:00
return false;
2016-06-01 21:41:29 +02:00
}
2016-08-28 23:38:27 +02:00
target[0] = '0';
target[1] = '\0';
2016-06-01 21:41:29 +02:00
return true;
}
2016-08-28 23:38:27 +02:00
if (srcLength <= decimals) {
2016-06-01 21:41:29 +02:00
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++] = '.';
}
2016-06-01 21:41:29 +02:00
startOffset = offset;
while (sourceOffset < srcLength) {
target[offset++] = src[sourceOffset++];
}
2020-12-01 16:20:13 +01:00
target[offset] = '\0';
2016-06-01 21:41:29 +02:00
}
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';
2016-08-28 23:38:27 +02:00
if (target[lastZeroOffset - 1] == '.') {
2020-12-01 16:20:13 +01:00
target[lastZeroOffset - 1] = '\0';
}
2016-06-01 21:41:29 +02:00
}
return true;
}