Files
app-ethereum/src/utils.c

119 lines
3.7 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>
#include "ethUstream.h"
2020-06-29 15:43:02 +02:00
#include "ethUtils.h"
2019-01-04 10:48:57 +01:00
#include "uint256.h"
2020-06-29 15:43:02 +02:00
#include "tokens.h"
2019-01-04 10:48:57 +01:00
2020-12-01 16:20:13 +01:00
static const unsigned char hex_digits[] =
{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
2019-01-04 10:43:12 +01:00
void array_hexstr(char *strbuf, const void *bin, unsigned int len) {
while (len--) {
2020-12-01 16:20:13 +01:00
*strbuf++ = hex_digits[((*((char *) bin)) >> 4) & 0xF];
*strbuf++ = hex_digits[(*((char *) bin)) & 0xF];
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 convertUint256BE(uint8_t *data, uint32_t length, uint256_t *target) {
uint8_t tmp[32];
2020-11-24 10:23:45 +01:00
memset(tmp, 0, 32);
memmove(tmp + 32 - length, data, length);
2019-01-04 10:48:57 +01:00
readu256BE(tmp, target);
}
int local_strchr(char *string, char ch) {
unsigned int length = strlen(string);
unsigned int i;
2020-12-01 16:20:13 +01:00
for (i = 0; i < length; i++) {
2019-01-04 10:48:57 +01:00
if (string[i] == ch) {
return i;
}
}
return -1;
}
// Almost like U4BE except that it takes `size` as a parameter.
2021-04-21 17:07:16 +02:00
// The `strict` parameter defines whether we should throw in case of a length > 4.
uint32_t u32_from_BE(uint8_t *in, uint8_t size, bool strict) {
uint32_t res = 0;
if (size == 1) {
res = in[0];
} else if (size == 2) {
res = (in[0] << 8) | in[1];
} else if (size == 3) {
res = (in[0] << 16) | (in[1] << 8) | in[2];
2021-04-21 17:07:16 +02:00
} else if (size == 4) {
res = (in[0] << 24) | (in[1] << 16) | (in[2] << 8) | in[3];
2021-04-21 17:07:16 +02:00
} else if (strict && size != 0) {
PRINTF("Unexpected format\n");
THROW(EXCEPTION);
}
return res;
}
2020-12-01 16:20:13 +01:00
void amountToString(uint8_t *amount,
uint8_t amount_size,
uint8_t decimals,
char *ticker,
char *out_buffer,
uint8_t out_buffer_size) {
2020-06-29 15:43:02 +02:00
uint256_t amount_256;
char tmp_buffer[100];
convertUint256BE(amount, amount_size, &amount_256);
tostring256(&amount_256, 10, tmp_buffer, 100);
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));
2020-12-01 16:20:13 +01:00
adjustDecimals(tmp_buffer,
amount_len,
out_buffer + ticker_len,
out_buffer_size - ticker_len - 1,
decimals);
out_buffer[out_buffer_size - 1] = '\0';
2020-06-29 15:43:02 +02:00
}
2020-12-01 16:20:13 +01:00
bool parse_swap_config(uint8_t *config, uint8_t config_len, char *ticker, uint8_t *decimals) {
2020-06-29 15:43:02 +02:00
uint8_t ticker_len, offset = 0;
2020-12-01 16:20:13 +01:00
if (config_len == 0) {
2020-06-29 15:43:02 +02:00
return false;
}
ticker_len = config[offset++];
2020-12-01 16:20:13 +01:00
if (ticker_len == 0 || ticker_len > MAX_TICKER_LEN - 2 || config_len - offset < ticker_len) {
2020-06-29 15:43:02 +02:00
return false;
}
2020-12-01 16:20:13 +01:00
memcpy(ticker, config + offset, ticker_len);
2020-06-29 15:43:02 +02:00
offset += ticker_len;
ticker[ticker_len] = ' ';
2020-12-01 16:20:13 +01:00
ticker[ticker_len + 1] = '\0';
2020-06-29 15:43:02 +02:00
2020-12-01 16:20:13 +01:00
if (config_len - offset < 1) {
2020-06-29 15:43:02 +02:00
return false;
}
*decimals = config[offset];
return true;
2020-11-24 10:23:45 +01:00
}