2020-09-20 15:17:02 +00:00
|
|
|
#![allow(unused)]
|
|
|
|
use coins_ledger::{
|
|
|
|
common::{APDUAnswer, APDUCommand, APDUData},
|
|
|
|
transports::{Ledger, LedgerAsync},
|
|
|
|
};
|
2020-10-08 15:56:36 +00:00
|
|
|
use futures_executor::block_on;
|
2020-09-20 15:17:02 +00:00
|
|
|
use futures_util::lock::Mutex;
|
|
|
|
|
|
|
|
use ethers_core::{
|
|
|
|
types::{
|
2021-08-09 00:31:11 +00:00
|
|
|
transaction::eip2718::TypedTransaction, Address, NameOrAddress, Signature, Transaction,
|
|
|
|
TransactionRequest, TxHash, H256, U256,
|
2020-09-20 15:17:02 +00:00
|
|
|
},
|
|
|
|
utils::keccak256,
|
|
|
|
};
|
|
|
|
use std::convert::TryFrom;
|
|
|
|
use thiserror::Error;
|
|
|
|
|
|
|
|
use super::types::*;
|
|
|
|
|
|
|
|
/// A Ledger Ethereum App.
|
|
|
|
///
|
|
|
|
/// This is a simple wrapper around the [Ledger transport](Ledger)
|
2020-09-24 21:33:09 +00:00
|
|
|
#[derive(Debug)]
|
2020-09-20 15:17:02 +00:00
|
|
|
pub struct LedgerEthereum {
|
|
|
|
transport: Mutex<Ledger>,
|
|
|
|
derivation: DerivationType,
|
2021-07-29 20:22:25 +00:00
|
|
|
pub(crate) chain_id: u64,
|
|
|
|
pub(crate) address: Address,
|
2020-09-20 15:17:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl LedgerEthereum {
|
|
|
|
/// Instantiate the application by acquiring a lock on the ledger device.
|
|
|
|
///
|
|
|
|
///
|
2020-09-24 21:33:09 +00:00
|
|
|
/// ```
|
|
|
|
/// # async fn foo() -> Result<(), Box<dyn std::error::Error>> {
|
2021-08-28 21:06:29 +00:00
|
|
|
/// use ethers_signers::{Ledger, HDPath};
|
2020-09-24 21:33:09 +00:00
|
|
|
///
|
2021-07-29 20:22:25 +00:00
|
|
|
/// let ledger = Ledger::new(HDPath::LedgerLive(0), 1).await?;
|
2020-09-24 21:33:09 +00:00
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2021-07-29 20:22:25 +00:00
|
|
|
pub async fn new(derivation: DerivationType, chain_id: u64) -> Result<Self, LedgerError> {
|
2020-09-24 21:33:09 +00:00
|
|
|
let transport = Ledger::init().await?;
|
|
|
|
let address = Self::get_address_with_path_transport(&transport, &derivation).await?;
|
|
|
|
|
2020-09-20 15:17:02 +00:00
|
|
|
Ok(Self {
|
2020-09-24 21:33:09 +00:00
|
|
|
transport: Mutex::new(transport),
|
2020-09-20 15:17:02 +00:00
|
|
|
derivation,
|
|
|
|
chain_id,
|
2020-09-24 21:33:09 +00:00
|
|
|
address,
|
2020-09-20 15:17:02 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Consume self and drop the ledger mutex
|
|
|
|
pub fn close(self) {}
|
|
|
|
|
|
|
|
/// Get the account which corresponds to our derivation path
|
|
|
|
pub async fn get_address(&self) -> Result<Address, LedgerError> {
|
|
|
|
self.get_address_with_path(&self.derivation).await
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Gets the account which corresponds to the provided derivation path
|
|
|
|
pub async fn get_address_with_path(
|
|
|
|
&self,
|
|
|
|
derivation: &DerivationType,
|
|
|
|
) -> Result<Address, LedgerError> {
|
2020-09-24 21:33:09 +00:00
|
|
|
let data = APDUData::new(&Self::path_to_bytes(&derivation));
|
2020-09-20 15:17:02 +00:00
|
|
|
let transport = self.transport.lock().await;
|
2020-09-24 21:33:09 +00:00
|
|
|
Self::get_address_with_path_transport(&transport, derivation).await
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn get_address_with_path_transport(
|
|
|
|
transport: &Ledger,
|
|
|
|
derivation: &DerivationType,
|
|
|
|
) -> Result<Address, LedgerError> {
|
|
|
|
let data = APDUData::new(&Self::path_to_bytes(&derivation));
|
2020-09-20 15:17:02 +00:00
|
|
|
|
|
|
|
let command = APDUCommand {
|
|
|
|
ins: INS::GET_PUBLIC_KEY as u8,
|
|
|
|
p1: P1::NON_CONFIRM as u8,
|
|
|
|
p2: P2::NO_CHAINCODE as u8,
|
|
|
|
data,
|
|
|
|
response_len: None,
|
|
|
|
};
|
|
|
|
|
2020-10-08 15:56:36 +00:00
|
|
|
let answer = block_on(transport.exchange(&command))?;
|
2020-09-20 15:17:02 +00:00
|
|
|
let result = answer.data().ok_or(LedgerError::UnexpectedNullResponse)?;
|
|
|
|
|
|
|
|
let address = {
|
|
|
|
// extract the address from the response
|
|
|
|
let offset = 1 + result[0] as usize;
|
2020-12-31 17:19:14 +00:00
|
|
|
let address_str = &result[offset + 1..offset + 1 + result[offset] as usize];
|
|
|
|
let mut address = [0; 20];
|
|
|
|
address.copy_from_slice(&hex::decode(address_str)?);
|
|
|
|
Address::from(address)
|
2020-09-20 15:17:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Ok(address)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the semver of the Ethereum ledger app
|
|
|
|
pub async fn version(&self) -> Result<String, LedgerError> {
|
|
|
|
let transport = self.transport.lock().await;
|
|
|
|
|
|
|
|
let command = APDUCommand {
|
|
|
|
ins: INS::GET_APP_CONFIGURATION as u8,
|
|
|
|
p1: P1::NON_CONFIRM as u8,
|
|
|
|
p2: P2::NO_CHAINCODE as u8,
|
|
|
|
data: APDUData::new(&[]),
|
|
|
|
response_len: None,
|
|
|
|
};
|
|
|
|
|
2020-10-08 15:56:36 +00:00
|
|
|
let answer = block_on(transport.exchange(&command))?;
|
2020-09-20 15:17:02 +00:00
|
|
|
let result = answer.data().ok_or(LedgerError::UnexpectedNullResponse)?;
|
|
|
|
|
|
|
|
Ok(format!("{}.{}.{}", result[1], result[2], result[3]))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Signs an Ethereum transaction (requires confirmation on the ledger)
|
2021-08-09 00:31:11 +00:00
|
|
|
pub async fn sign_tx(&self, tx: &TypedTransaction) -> Result<Signature, LedgerError> {
|
2020-09-24 21:33:09 +00:00
|
|
|
let mut payload = Self::path_to_bytes(&self.derivation);
|
2021-07-29 20:22:25 +00:00
|
|
|
payload.extend_from_slice(tx.rlp(self.chain_id).as_ref());
|
2020-09-24 21:33:09 +00:00
|
|
|
self.sign_payload(INS::SIGN, payload).await
|
2020-09-20 15:17:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Signs an ethereum personal message
|
|
|
|
pub async fn sign_message<S: AsRef<[u8]>>(&self, message: S) -> Result<Signature, LedgerError> {
|
|
|
|
let message = message.as_ref();
|
|
|
|
|
2020-09-24 21:33:09 +00:00
|
|
|
let mut payload = Self::path_to_bytes(&self.derivation);
|
2020-09-20 15:17:02 +00:00
|
|
|
payload.extend_from_slice(&(message.len() as u32).to_be_bytes());
|
|
|
|
payload.extend_from_slice(message);
|
|
|
|
|
|
|
|
self.sign_payload(INS::SIGN_PERSONAL_MESSAGE, payload).await
|
|
|
|
}
|
|
|
|
|
|
|
|
// Helper function for signing either transaction data or personal messages
|
|
|
|
async fn sign_payload(
|
|
|
|
&self,
|
|
|
|
command: INS,
|
|
|
|
mut payload: Vec<u8>,
|
|
|
|
) -> Result<Signature, LedgerError> {
|
|
|
|
let transport = self.transport.lock().await;
|
|
|
|
let mut command = APDUCommand {
|
|
|
|
ins: command as u8,
|
|
|
|
p1: P1_FIRST,
|
|
|
|
p2: P2::NO_CHAINCODE as u8,
|
|
|
|
data: APDUData::new(&[]),
|
|
|
|
response_len: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut result = Vec::new();
|
|
|
|
|
|
|
|
// Iterate in 255 byte chunks
|
2020-10-02 08:41:16 +00:00
|
|
|
while !payload.is_empty() {
|
2020-09-20 15:17:02 +00:00
|
|
|
let chunk_size = std::cmp::min(payload.len(), 255);
|
|
|
|
let data = payload.drain(0..chunk_size).collect::<Vec<_>>();
|
|
|
|
command.data = APDUData::new(&data);
|
|
|
|
|
2020-10-08 15:56:36 +00:00
|
|
|
let answer = block_on(transport.exchange(&command))?;
|
2020-09-20 15:17:02 +00:00
|
|
|
result = answer
|
|
|
|
.data()
|
|
|
|
.ok_or(LedgerError::UnexpectedNullResponse)?
|
|
|
|
.to_vec();
|
|
|
|
|
|
|
|
// We need more data
|
|
|
|
command.p1 = P1::MORE as u8;
|
|
|
|
}
|
|
|
|
|
|
|
|
let v = result[0] as u64;
|
2021-08-15 11:30:44 +00:00
|
|
|
let r = U256::from_big_endian(&result[1..33]);
|
|
|
|
let s = U256::from_big_endian(&result[33..]);
|
2021-07-05 11:03:38 +00:00
|
|
|
Ok(Signature { r, s, v })
|
2020-09-20 15:17:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// helper which converts a derivation path to bytes
|
2020-09-24 21:33:09 +00:00
|
|
|
fn path_to_bytes(derivation: &DerivationType) -> Vec<u8> {
|
2020-09-20 15:17:02 +00:00
|
|
|
let derivation = derivation.to_string();
|
|
|
|
let elements = derivation.split('/').skip(1).collect::<Vec<_>>();
|
|
|
|
let depth = elements.len();
|
|
|
|
|
|
|
|
let mut bytes = vec![depth as u8];
|
|
|
|
for derivation_index in elements {
|
2020-10-02 08:41:16 +00:00
|
|
|
let hardened = derivation_index.contains('\'');
|
2020-09-20 15:17:02 +00:00
|
|
|
let mut index = derivation_index.replace("'", "").parse::<u32>().unwrap();
|
|
|
|
if hardened {
|
2020-10-02 08:41:16 +00:00
|
|
|
index |= 0x80000000;
|
2020-09-20 15:17:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bytes.extend(&index.to_be_bytes());
|
|
|
|
}
|
|
|
|
|
|
|
|
bytes
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-08 15:56:36 +00:00
|
|
|
#[cfg(all(test, feature = "ledger"))]
|
2020-09-20 15:17:02 +00:00
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2020-09-24 21:33:09 +00:00
|
|
|
use crate::Signer;
|
2021-08-28 21:06:29 +00:00
|
|
|
use ethers_core::types::{Address, TransactionRequest};
|
2020-09-20 15:17:02 +00:00
|
|
|
use std::str::FromStr;
|
|
|
|
|
|
|
|
#[tokio::test]
|
2020-09-24 21:33:09 +00:00
|
|
|
#[ignore]
|
2020-09-20 15:17:02 +00:00
|
|
|
// Replace this with your ETH addresses.
|
|
|
|
async fn test_get_address() {
|
|
|
|
// Instantiate it with the default ledger derivation path
|
2021-07-29 20:22:25 +00:00
|
|
|
let ledger = LedgerEthereum::new(DerivationType::LedgerLive(0), 1)
|
2020-09-20 15:17:02 +00:00
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(
|
|
|
|
ledger.get_address().await.unwrap(),
|
|
|
|
"eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee".parse().unwrap()
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
ledger
|
|
|
|
.get_address_with_path(&DerivationType::Legacy(0))
|
|
|
|
.await
|
|
|
|
.unwrap(),
|
|
|
|
"eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee".parse().unwrap()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
2020-09-24 21:33:09 +00:00
|
|
|
#[ignore]
|
2020-09-20 15:17:02 +00:00
|
|
|
async fn test_sign_tx() {
|
2021-07-29 20:22:25 +00:00
|
|
|
let ledger = LedgerEthereum::new(DerivationType::LedgerLive(0), 1)
|
2020-09-20 15:17:02 +00:00
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
// approve uni v2 router 0xff
|
2020-12-31 17:19:14 +00:00
|
|
|
let data = hex::decode("095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff").unwrap();
|
2020-09-20 15:17:02 +00:00
|
|
|
|
|
|
|
let tx_req = TransactionRequest::new()
|
2020-12-31 17:19:14 +00:00
|
|
|
.to("2ed7afa17473e17ac59908f088b4371d28585476"
|
|
|
|
.parse::<Address>()
|
|
|
|
.unwrap())
|
2020-09-20 15:17:02 +00:00
|
|
|
.gas(1000000)
|
|
|
|
.gas_price(400e9 as u64)
|
|
|
|
.nonce(5)
|
|
|
|
.data(data)
|
2021-08-09 00:31:11 +00:00
|
|
|
.value(ethers_core::utils::parse_ether(100).unwrap())
|
|
|
|
.into();
|
2020-09-24 21:33:09 +00:00
|
|
|
let tx = ledger.sign_transaction(&tx_req).await.unwrap();
|
2020-09-20 15:17:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
2020-09-24 21:33:09 +00:00
|
|
|
#[ignore]
|
2020-09-20 15:17:02 +00:00
|
|
|
async fn test_version() {
|
2021-07-29 20:22:25 +00:00
|
|
|
let ledger = LedgerEthereum::new(DerivationType::LedgerLive(0), 1)
|
2020-09-20 15:17:02 +00:00
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let version = ledger.version().await.unwrap();
|
|
|
|
assert_eq!(version, "1.3.7");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
2020-09-24 21:33:09 +00:00
|
|
|
#[ignore]
|
2020-09-20 15:17:02 +00:00
|
|
|
async fn test_sign_message() {
|
2021-07-29 20:22:25 +00:00
|
|
|
let ledger = LedgerEthereum::new(DerivationType::Legacy(0), 1)
|
2020-09-20 15:17:02 +00:00
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
let message = "hello world";
|
|
|
|
let sig = ledger.sign_message(message).await.unwrap();
|
|
|
|
let addr = ledger.get_address().await.unwrap();
|
|
|
|
sig.verify(message, addr).unwrap();
|
|
|
|
}
|
|
|
|
}
|