2014-04-29 12:26:51 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the TREZOR project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Pavol Rusnak <stick@satoshilabs.com>
|
|
|
|
*
|
|
|
|
* This library is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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 Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
2015-03-02 20:33:06 +00:00
|
|
|
#include <ctype.h>
|
2014-04-29 12:26:51 +00:00
|
|
|
|
|
|
|
#include "layout2.h"
|
|
|
|
#include "storage.h"
|
|
|
|
#include "oled.h"
|
|
|
|
#include "bitmaps.h"
|
|
|
|
#include "string.h"
|
|
|
|
#include "util.h"
|
2014-08-08 17:09:54 +00:00
|
|
|
#include "qr_encode.h"
|
2014-04-29 12:26:51 +00:00
|
|
|
|
|
|
|
void *layoutLast = layoutHome;
|
|
|
|
|
2016-06-08 15:55:25 +00:00
|
|
|
void layoutDialogSwipe(const BITMAP *icon, const char *btnNo, const char *btnYes, const char *desc, const char *line1, const char *line2, const char *line3, const char *line4, const char *line5, const char *line6)
|
2014-04-29 12:26:51 +00:00
|
|
|
{
|
|
|
|
layoutLast = layoutDialogSwipe;
|
|
|
|
oledSwipeLeft();
|
|
|
|
layoutDialog(icon, btnNo, btnYes, desc, line1, line2, line3, line4, line5, line6);
|
|
|
|
}
|
|
|
|
|
2014-12-21 17:58:56 +00:00
|
|
|
void layoutProgressSwipe(const char *desc, int permil)
|
2014-04-29 12:26:51 +00:00
|
|
|
{
|
|
|
|
if (layoutLast == layoutProgressSwipe) {
|
|
|
|
oledClear();
|
|
|
|
} else {
|
|
|
|
layoutLast = layoutProgressSwipe;
|
|
|
|
oledSwipeLeft();
|
|
|
|
}
|
2014-12-21 17:58:56 +00:00
|
|
|
layoutProgress(desc, permil);
|
2014-04-29 12:26:51 +00:00
|
|
|
}
|
|
|
|
|
2015-04-13 17:52:38 +00:00
|
|
|
void layoutScreensaver(void)
|
|
|
|
{
|
|
|
|
layoutLast = layoutScreensaver;
|
|
|
|
oledClear();
|
|
|
|
oledRefresh();
|
|
|
|
}
|
|
|
|
|
2014-04-29 12:26:51 +00:00
|
|
|
void layoutHome(void)
|
|
|
|
{
|
2015-04-13 17:52:38 +00:00
|
|
|
if (layoutLast == layoutHome || layoutLast == layoutScreensaver) {
|
2014-04-29 12:26:51 +00:00
|
|
|
oledClear();
|
|
|
|
} else {
|
|
|
|
oledSwipeLeft();
|
|
|
|
}
|
2015-04-13 17:52:38 +00:00
|
|
|
layoutLast = layoutHome;
|
2015-07-09 20:58:05 +00:00
|
|
|
const char *label = storage_isInitialized() ? storage_getLabel() : "Go to mytrezor.com";
|
2015-02-04 20:27:07 +00:00
|
|
|
const uint8_t *homescreen = storage_getHomescreen();
|
|
|
|
if (homescreen) {
|
|
|
|
BITMAP b;
|
|
|
|
b.width = 128;
|
|
|
|
b.height = 64;
|
|
|
|
b.data = homescreen;
|
|
|
|
oledDrawBitmap(0, 0, &b);
|
2014-04-29 12:26:51 +00:00
|
|
|
} else {
|
2015-02-04 20:27:07 +00:00
|
|
|
if (label && strlen(label) > 0) {
|
|
|
|
oledDrawBitmap(44, 4, &bmp_logo48);
|
|
|
|
oledDrawStringCenter(OLED_HEIGHT - 8, label);
|
|
|
|
} else {
|
|
|
|
oledDrawBitmap(40, 0, &bmp_logo64);
|
|
|
|
}
|
2014-04-29 12:26:51 +00:00
|
|
|
}
|
|
|
|
oledRefresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *str_amount(uint64_t amnt, const char *abbr, char *buf, int len)
|
|
|
|
{
|
|
|
|
memset(buf, 0, len);
|
|
|
|
uint64_t a = amnt, b = 1;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
|
|
buf[16 - i] = '0' + (a / b) % 10;
|
|
|
|
b *= 10;
|
|
|
|
}
|
|
|
|
buf[8] = '.';
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
|
|
buf[7 - i] = '0' + (a / b) % 10;
|
|
|
|
b *= 10;
|
|
|
|
}
|
|
|
|
i = 17;
|
|
|
|
while (i > 10 && buf[i - 1] == '0') { // drop trailing zeroes
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
if (abbr) {
|
|
|
|
buf[i] = ' ';
|
|
|
|
strlcpy(buf + i + 1, abbr, len - i - 1);
|
|
|
|
} else {
|
|
|
|
buf[i] = 0;
|
|
|
|
}
|
|
|
|
const char *r = buf;
|
|
|
|
while (*r == '0' && *(r + 1) != '.') r++; // drop leading zeroes
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char buf_out[32], buf_fee[32];
|
|
|
|
|
|
|
|
void layoutConfirmOutput(const CoinType *coin, const TxOutputType *out)
|
|
|
|
{
|
|
|
|
static char first_half[17 + 1];
|
|
|
|
strlcpy(first_half, out->address, sizeof(first_half));
|
|
|
|
const char *str_out = str_amount(out->amount, coin->has_coin_shortcut ? coin->coin_shortcut : NULL, buf_out, sizeof(buf_out));
|
2016-06-08 15:55:25 +00:00
|
|
|
layoutDialogSwipe(&bmp_icon_question,
|
2014-04-29 12:26:51 +00:00
|
|
|
"Cancel",
|
|
|
|
"Confirm",
|
|
|
|
NULL,
|
|
|
|
"Confirm sending",
|
|
|
|
str_out,
|
|
|
|
"to",
|
|
|
|
first_half,
|
|
|
|
out->address + 17,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void layoutConfirmTx(const CoinType *coin, uint64_t amount_out, uint64_t amount_fee)
|
|
|
|
{
|
|
|
|
const char *str_out = str_amount(amount_out, coin->has_coin_shortcut ? coin->coin_shortcut : NULL, buf_out, sizeof(buf_out));
|
|
|
|
const char *str_fee = str_amount(amount_fee, coin->has_coin_shortcut ? coin->coin_shortcut : NULL, buf_fee, sizeof(buf_fee));
|
2016-06-08 15:55:25 +00:00
|
|
|
layoutDialogSwipe(&bmp_icon_question,
|
2014-04-29 12:26:51 +00:00
|
|
|
"Cancel",
|
|
|
|
"Confirm",
|
|
|
|
NULL,
|
|
|
|
"Really send",
|
|
|
|
str_out,
|
|
|
|
"from your wallet?",
|
2015-02-04 19:04:59 +00:00
|
|
|
"Fee included:",
|
2014-04-29 12:26:51 +00:00
|
|
|
str_fee,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void layoutFeeOverThreshold(const CoinType *coin, uint64_t fee, uint32_t kb)
|
|
|
|
{
|
|
|
|
(void)kb;
|
|
|
|
const char *str_out = str_amount(fee, coin->has_coin_shortcut ? coin->coin_shortcut : NULL, buf_out, sizeof(buf_out));
|
2016-06-08 15:55:25 +00:00
|
|
|
layoutDialogSwipe(&bmp_icon_question,
|
2014-04-29 12:26:51 +00:00
|
|
|
"Cancel",
|
|
|
|
"Confirm",
|
|
|
|
NULL,
|
|
|
|
"Fee",
|
|
|
|
str_out,
|
|
|
|
"is unexpectedly high.",
|
|
|
|
NULL,
|
|
|
|
"Send anyway?",
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-11-27 16:23:04 +00:00
|
|
|
// split longer string into 4 rows, rowlen chars each
|
|
|
|
const char **split_message(const uint8_t *msg, uint32_t len, uint32_t rowlen)
|
2014-04-29 12:26:51 +00:00
|
|
|
{
|
2014-11-27 16:23:04 +00:00
|
|
|
static char str[4][32 + 1];
|
|
|
|
if (rowlen > 32) {
|
|
|
|
rowlen = 32;
|
2014-04-29 12:26:51 +00:00
|
|
|
}
|
|
|
|
memset(str, 0, sizeof(str));
|
2014-11-27 16:23:04 +00:00
|
|
|
strlcpy(str[0], (char *)msg, rowlen + 1);
|
|
|
|
if (len > rowlen) {
|
|
|
|
strlcpy(str[1], (char *)msg + rowlen, rowlen + 1);
|
|
|
|
}
|
|
|
|
if (len > rowlen * 2) {
|
|
|
|
strlcpy(str[2], (char *)msg + rowlen * 2, rowlen + 1);
|
|
|
|
}
|
|
|
|
if (len > rowlen * 3) {
|
|
|
|
strlcpy(str[3], (char *)msg + rowlen * 3, rowlen + 1);
|
2014-04-29 12:26:51 +00:00
|
|
|
}
|
2014-11-26 17:52:30 +00:00
|
|
|
static const char *ret[4] = { str[0], str[1], str[2], str[3] };
|
|
|
|
return ret;
|
|
|
|
}
|
2014-04-29 12:26:51 +00:00
|
|
|
|
2014-11-26 17:52:30 +00:00
|
|
|
void layoutSignMessage(const uint8_t *msg, uint32_t len)
|
|
|
|
{
|
2014-11-27 16:23:04 +00:00
|
|
|
const char **str = split_message(msg, len, 16);
|
2016-06-08 15:55:25 +00:00
|
|
|
layoutDialogSwipe(&bmp_icon_question, "Cancel", "Confirm",
|
2014-11-26 17:52:30 +00:00
|
|
|
"Sign message?",
|
2014-06-20 22:31:44 +00:00
|
|
|
str[0], str[1], str[2], str[3], NULL, NULL);
|
2014-04-29 12:26:51 +00:00
|
|
|
}
|
2014-06-02 18:40:20 +00:00
|
|
|
|
2016-04-25 21:03:57 +00:00
|
|
|
void layoutVerifyAddress(const char *address)
|
|
|
|
{
|
|
|
|
const char **str = split_message((const uint8_t *)address, strlen(address), 17);
|
2016-06-08 15:55:25 +00:00
|
|
|
layoutDialogSwipe(&bmp_icon_info, "Cancel", "Confirm",
|
2016-04-25 21:40:24 +00:00
|
|
|
"Confirm address?",
|
2016-04-25 21:46:36 +00:00
|
|
|
"Message signed by:",
|
2016-04-25 21:40:24 +00:00
|
|
|
NULL, str[0], str[1], str[2], NULL);
|
2016-04-25 21:03:57 +00:00
|
|
|
}
|
|
|
|
|
2014-06-02 18:40:20 +00:00
|
|
|
void layoutVerifyMessage(const uint8_t *msg, uint32_t len)
|
|
|
|
{
|
2014-11-27 16:23:04 +00:00
|
|
|
const char **str = split_message(msg, len, 16);
|
2016-06-08 15:55:25 +00:00
|
|
|
layoutDialogSwipe(&bmp_icon_info, "Cancel", "Confirm",
|
2014-11-26 17:52:30 +00:00
|
|
|
"Verified message",
|
2014-06-20 22:31:44 +00:00
|
|
|
str[0], str[1], str[2], str[3], NULL, NULL);
|
2014-06-02 18:40:20 +00:00
|
|
|
}
|
2014-06-07 12:21:59 +00:00
|
|
|
|
|
|
|
void layoutCipherKeyValue(bool encrypt, const char *key)
|
|
|
|
{
|
2014-11-27 16:23:04 +00:00
|
|
|
const char **str = split_message((const uint8_t *)key, strlen(key), 16);
|
2016-06-08 15:55:25 +00:00
|
|
|
layoutDialogSwipe(&bmp_icon_question, "Cancel", "Confirm",
|
2014-11-27 16:23:04 +00:00
|
|
|
encrypt ? "Encode value of this key?" : "Decode value of this key?",
|
2014-06-20 22:31:44 +00:00
|
|
|
str[0], str[1], str[2], str[3], NULL, NULL);
|
2014-06-07 12:21:59 +00:00
|
|
|
}
|
2014-08-08 17:09:54 +00:00
|
|
|
|
2014-11-26 17:52:30 +00:00
|
|
|
void layoutEncryptMessage(const uint8_t *msg, uint32_t len, bool signing)
|
|
|
|
{
|
2014-11-27 16:23:04 +00:00
|
|
|
const char **str = split_message(msg, len, 16);
|
2016-06-08 15:55:25 +00:00
|
|
|
layoutDialogSwipe(&bmp_icon_question, "Cancel", "Confirm",
|
2014-11-26 17:52:30 +00:00
|
|
|
signing ? "Encrypt+Sign message?" : "Encrypt message?",
|
|
|
|
str[0], str[1], str[2], str[3], NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void layoutDecryptMessage(const uint8_t *msg, uint32_t len, const char *address)
|
|
|
|
{
|
2014-11-27 16:23:04 +00:00
|
|
|
const char **str = split_message(msg, len, 16);
|
2016-06-08 15:55:25 +00:00
|
|
|
layoutDialogSwipe(&bmp_icon_info, NULL, "OK",
|
2014-11-26 17:52:30 +00:00
|
|
|
address ? "Decrypted signed message" : "Decrypted message",
|
|
|
|
str[0], str[1], str[2], str[3], NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2015-02-18 17:30:54 +00:00
|
|
|
void layoutAddress(const char *address, const char *desc)
|
2014-08-08 17:09:54 +00:00
|
|
|
{
|
|
|
|
oledSwipeLeft();
|
|
|
|
layoutLast = layoutAddress;
|
|
|
|
|
|
|
|
static unsigned char bitdata[QR_MAX_BITDATA];
|
|
|
|
int a, i, j;
|
|
|
|
int side = qr_encode(QR_LEVEL_M, 0, address, 0, bitdata);
|
|
|
|
|
|
|
|
if (side > 0 && side <= 29) {
|
|
|
|
oledInvert(0, 0, (side + 2) * 2, (side + 2) * 2);
|
|
|
|
for (i = 0; i < side; i++) {
|
|
|
|
for (j = 0; j< side; j++) {
|
2015-01-18 03:23:56 +00:00
|
|
|
a = j * side + i;
|
2014-08-08 17:09:54 +00:00
|
|
|
if (bitdata[a / 8] & (1 << (7 - a % 8))) {
|
|
|
|
oledClearPixel(2 + i * 2, 2 + j * 2);
|
|
|
|
oledClearPixel(3 + i * 2, 2 + j * 2);
|
|
|
|
oledClearPixel(2 + i * 2, 3 + j * 2);
|
|
|
|
oledClearPixel(3 + i * 2, 3 + j * 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-27 16:23:04 +00:00
|
|
|
const char **str = split_message((const uint8_t *)address, strlen(address), 9);
|
2014-08-08 17:09:54 +00:00
|
|
|
|
2015-02-18 17:30:54 +00:00
|
|
|
if (desc) {
|
|
|
|
oledDrawString(68, 0 * 9, desc);
|
|
|
|
}
|
|
|
|
oledDrawString(68, 1 * 9 + 4, str[0]);
|
|
|
|
oledDrawString(68, 2 * 9 + 4, str[1]);
|
|
|
|
oledDrawString(68, 3 * 9 + 4, str[2]);
|
|
|
|
oledDrawString(68, 4 * 9 + 4, str[3]);
|
2014-08-08 17:09:54 +00:00
|
|
|
|
|
|
|
static const char *btnYes = "Continue";
|
2015-02-13 16:42:23 +00:00
|
|
|
oledDrawString(OLED_WIDTH - fontCharWidth('\x06') - 1, OLED_HEIGHT - 8, "\x06");
|
|
|
|
oledDrawString(OLED_WIDTH - oledStringWidth(btnYes) - fontCharWidth('\x06') - 3, OLED_HEIGHT - 8, btnYes);
|
|
|
|
oledInvert(OLED_WIDTH - oledStringWidth(btnYes) - fontCharWidth('\x06') - 4, OLED_HEIGHT - 9, OLED_WIDTH - 1, OLED_HEIGHT - 1);
|
2014-08-08 17:09:54 +00:00
|
|
|
|
|
|
|
oledRefresh();
|
|
|
|
}
|
2015-02-20 19:22:05 +00:00
|
|
|
|
2015-11-19 10:48:26 +00:00
|
|
|
void layoutPublicKey(const uint8_t *pubkey)
|
|
|
|
{
|
|
|
|
char hex[32*2+1], desc[16];
|
|
|
|
strlcpy(desc, "Public Key: 00", sizeof(desc));
|
|
|
|
data2hex(pubkey, 1, desc + 12);
|
|
|
|
data2hex(pubkey + 1, 32, hex);
|
|
|
|
const char **str = split_message((const uint8_t *)hex, 32*2, 16);
|
2016-06-08 15:55:25 +00:00
|
|
|
layoutDialogSwipe(&bmp_icon_question, NULL, "Continue", NULL,
|
2015-11-19 10:48:26 +00:00
|
|
|
desc, str[0], str[1], str[2], str[3], NULL);
|
|
|
|
}
|
|
|
|
|
2015-02-20 19:22:05 +00:00
|
|
|
void layoutSignIdentity(const IdentityType *identity, const char *challenge)
|
|
|
|
{
|
2015-04-02 14:48:50 +00:00
|
|
|
char row_proto[8 + 11 + 1];
|
2015-03-02 20:33:06 +00:00
|
|
|
char row_hostport[64 + 6 + 1];
|
|
|
|
char row_user[64 + 8 + 1];
|
|
|
|
|
|
|
|
if (identity->has_proto && identity->proto[0]) {
|
2015-08-21 15:04:38 +00:00
|
|
|
if (strcmp(identity->proto, "https") == 0) {
|
|
|
|
strlcpy(row_proto, "Web sign in to:", sizeof(row_proto));
|
|
|
|
} else {
|
|
|
|
strlcpy(row_proto, identity->proto, sizeof(row_proto));
|
|
|
|
char *p = row_proto;
|
|
|
|
while (*p) { *p = toupper((int)*p); p++; }
|
|
|
|
strlcat(row_proto, " login to:", sizeof(row_proto));
|
|
|
|
}
|
2015-03-02 20:33:06 +00:00
|
|
|
} else {
|
2015-04-02 14:48:50 +00:00
|
|
|
strlcpy(row_proto, "Login to:", sizeof(row_proto));
|
2015-03-02 20:33:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (identity->has_host && identity->host[0]) {
|
|
|
|
strlcpy(row_hostport, identity->host, sizeof(row_hostport));
|
|
|
|
if (identity->has_port && identity->port[0]) {
|
|
|
|
strlcat(row_hostport, ":", sizeof(row_hostport));
|
2015-03-03 16:42:25 +00:00
|
|
|
strlcat(row_hostport, identity->port, sizeof(row_hostport));
|
2015-03-02 20:33:06 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
row_hostport[0] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (identity->has_user && identity->user[0]) {
|
|
|
|
strlcpy(row_user, "user: ", sizeof(row_user));
|
|
|
|
strlcat(row_user, identity->user, sizeof(row_user));
|
|
|
|
} else {
|
|
|
|
row_user[0] = 0;
|
|
|
|
}
|
|
|
|
|
2016-06-08 15:55:25 +00:00
|
|
|
layoutDialogSwipe(&bmp_icon_question, "Cancel", "Confirm",
|
2015-04-02 14:48:50 +00:00
|
|
|
"Do you want to sign in?",
|
2015-03-02 20:33:06 +00:00
|
|
|
row_proto[0] ? row_proto : NULL,
|
|
|
|
row_hostport[0] ? row_hostport : NULL,
|
|
|
|
row_user[0] ? row_user : NULL,
|
2015-02-20 19:22:05 +00:00
|
|
|
challenge,
|
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
}
|
2016-05-16 16:58:13 +00:00
|
|
|
|
2016-06-09 16:11:19 +00:00
|
|
|
void layoutU2FDialog(const char *verb, const char *appname, const BITMAP *appicon) {
|
|
|
|
if (!appicon) {
|
|
|
|
appicon = &bmp_icon_question;
|
|
|
|
}
|
|
|
|
layoutDialog(appicon, NULL, verb, NULL, verb, "U2F security key?", "", appname, "", NULL);
|
2016-05-16 16:58:13 +00:00
|
|
|
}
|