2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2016-06-20 00:10:34 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2016-06-20 00:10:34 +02:00
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2016-06-20 00:10:34 +02:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-06-20 00:10:34 +02:00
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
#![warn(missing_docs)]
|
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
//! Account management.
|
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
mod account_data;
|
|
|
|
mod error;
|
2016-11-22 11:56:27 +01:00
|
|
|
mod stores;
|
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
#[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows")))]
|
|
|
|
extern crate fake_hardware_wallet as hardware_wallet;
|
|
|
|
|
|
|
|
use self::{
|
|
|
|
account_data::{AccountData, Unlock},
|
2018-08-07 14:52:23 +02:00
|
|
|
stores::AddressBook,
|
|
|
|
};
|
2016-11-22 11:56:27 +01:00
|
|
|
|
2018-08-07 14:52:23 +02:00
|
|
|
use std::{
|
|
|
|
collections::HashMap,
|
2016-08-15 15:09:00 +02:00
|
|
|
time::{Duration, Instant},
|
|
|
|
};
|
2018-06-26 09:03:38 +02:00
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
use common_types::transaction::{Action, Transaction};
|
|
|
|
use ethkey::{Address, Generator, Message, Password, Public, Random, Secret};
|
2017-03-23 13:23:03 +01:00
|
|
|
use ethstore::{
|
2017-06-06 18:06:40 +02:00
|
|
|
accounts_dir::MemoryDirectory, random_string, EthMultiStore, EthStore, OpaqueSecret,
|
|
|
|
SecretStore, SecretVaultRef, SimpleSecretStore, StoreAccountRef,
|
2017-03-23 13:23:03 +01:00
|
|
|
};
|
2019-02-07 14:34:24 +01:00
|
|
|
use log::{debug, warn};
|
2018-06-26 09:03:38 +02:00
|
|
|
use parking_lot::RwLock;
|
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
pub use ethkey::Signature;
|
|
|
|
pub use ethstore::{Derivation, Error, IndexDerivation, KeyFile};
|
2018-06-26 09:03:38 +02:00
|
|
|
pub use hardware_wallet::{
|
|
|
|
Error as HardwareError, HardwareWalletManager, KeyPath, TransactionInfo,
|
|
|
|
};
|
2016-06-20 00:10:34 +02:00
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
pub use self::{account_data::AccountMeta, error::SignError};
|
2016-06-20 00:10:34 +02:00
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
type AccountToken = Password;
|
2017-01-30 21:08:36 +01:00
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
/// Account management settings.
|
|
|
|
#[derive(Debug, Default)]
|
|
|
|
pub struct AccountProviderSettings {
|
|
|
|
/// Enable hardware wallet support.
|
|
|
|
pub enable_hardware_wallets: bool,
|
|
|
|
/// Use the classic chain key on the hardware wallet.
|
|
|
|
pub hardware_wallet_classic_key: bool,
|
|
|
|
/// Store raw account secret when unlocking the account permanently.
|
|
|
|
pub unlock_keep_secret: bool,
|
|
|
|
/// Disallowed accounts.
|
|
|
|
pub blacklisted_accounts: Vec<Address>,
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Account management.
|
|
|
|
/// Responsible for unlocking accounts.
|
|
|
|
pub struct AccountProvider {
|
2017-06-06 18:06:40 +02:00
|
|
|
/// For performance reasons some methods can re-use unlocked secrets.
|
|
|
|
unlocked_secrets: RwLock<HashMap<StoreAccountRef, OpaqueSecret>>,
|
|
|
|
/// Unlocked account data.
|
2017-01-30 11:44:09 +01:00
|
|
|
unlocked: RwLock<HashMap<StoreAccountRef, AccountData>>,
|
2017-06-06 18:06:40 +02:00
|
|
|
/// Address book.
|
2016-11-22 11:56:27 +01:00
|
|
|
address_book: RwLock<AddressBook>,
|
2016-11-30 13:47:14 +01:00
|
|
|
/// Accounts on disk
|
2020-07-29 10:36:15 +02:00
|
|
|
sstore: Box<dyn SecretStore>,
|
2016-11-30 13:47:14 +01:00
|
|
|
/// Accounts unlocked with rolling tokens
|
2016-11-30 15:08:38 +01:00
|
|
|
transient_sstore: EthMultiStore,
|
2017-02-10 01:07:06 +01:00
|
|
|
/// Accounts in hardware wallets.
|
|
|
|
hardware_store: Option<HardwareWalletManager>,
|
2017-06-14 12:06:15 +02:00
|
|
|
/// When unlocking account permanently we additionally keep a raw secret in memory
|
|
|
|
/// to increase the performance of transaction signing.
|
|
|
|
unlock_keep_secret: bool,
|
2017-06-07 11:34:53 +02:00
|
|
|
/// Disallowed accounts.
|
|
|
|
blacklisted_accounts: Vec<Address>,
|
2017-02-10 01:07:06 +01:00
|
|
|
}
|
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
fn transient_sstore() -> EthMultiStore {
|
|
|
|
EthMultiStore::open(Box::new(MemoryDirectory::default()))
|
|
|
|
.expect("MemoryDirectory load always succeeds; qed")
|
2016-07-24 17:38:21 +02:00
|
|
|
}
|
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
impl AccountProvider {
|
|
|
|
/// Creates new account provider.
|
2020-07-29 10:36:15 +02:00
|
|
|
pub fn new(sstore: Box<dyn SecretStore>, settings: AccountProviderSettings) -> Self {
|
2017-02-10 01:07:06 +01:00
|
|
|
let mut hardware_store = None;
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-10 01:07:06 +01:00
|
|
|
if settings.enable_hardware_wallets {
|
|
|
|
match HardwareWalletManager::new() {
|
|
|
|
Ok(manager) => {
|
|
|
|
manager.set_key_path(if settings.hardware_wallet_classic_key {
|
|
|
|
KeyPath::EthereumClassic
|
|
|
|
} else {
|
|
|
|
KeyPath::Ethereum
|
|
|
|
});
|
|
|
|
hardware_store = Some(manager)
|
|
|
|
}
|
2017-03-10 10:25:40 +01:00
|
|
|
Err(e) => debug!("Error initializing hardware wallets: {}", e),
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2017-02-10 01:07:06 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-10-24 08:40:53 +02:00
|
|
|
if let Ok(accounts) = sstore.accounts() {
|
|
|
|
for account in accounts
|
|
|
|
.into_iter()
|
|
|
|
.filter(|a| settings.blacklisted_accounts.contains(&a.address))
|
|
|
|
{
|
|
|
|
warn!("Local Account {} has a blacklisted (known to be weak) address and will be ignored",
|
|
|
|
account.address);
|
|
|
|
}
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-06-07 11:34:53 +02:00
|
|
|
// Remove blacklisted accounts from address book.
|
|
|
|
let mut address_book = AddressBook::new(&sstore.local_path());
|
|
|
|
for addr in &settings.blacklisted_accounts {
|
|
|
|
address_book.remove(*addr);
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
AccountProvider {
|
2017-06-06 18:06:40 +02:00
|
|
|
unlocked_secrets: RwLock::new(HashMap::new()),
|
2016-12-09 09:31:58 +01:00
|
|
|
unlocked: RwLock::new(HashMap::new()),
|
2017-06-07 11:34:53 +02:00
|
|
|
address_book: RwLock::new(address_book),
|
2016-06-20 00:10:34 +02:00
|
|
|
sstore: sstore,
|
2016-11-30 13:47:14 +01:00
|
|
|
transient_sstore: transient_sstore(),
|
2017-02-10 01:07:06 +01:00
|
|
|
hardware_store: hardware_store,
|
2017-06-14 12:06:15 +02:00
|
|
|
unlock_keep_secret: settings.unlock_keep_secret,
|
2017-06-07 11:34:53 +02:00
|
|
|
blacklisted_accounts: settings.blacklisted_accounts,
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
/// Creates not disk backed provider.
|
|
|
|
pub fn transient_provider() -> Self {
|
|
|
|
AccountProvider {
|
2017-06-06 18:06:40 +02:00
|
|
|
unlocked_secrets: RwLock::new(HashMap::new()),
|
2016-12-09 09:31:58 +01:00
|
|
|
unlocked: RwLock::new(HashMap::new()),
|
2016-11-22 11:56:27 +01:00
|
|
|
address_book: RwLock::new(AddressBook::transient()),
|
2016-12-09 10:45:34 +01:00
|
|
|
sstore: Box::new(
|
|
|
|
EthStore::open(Box::new(MemoryDirectory::default()))
|
|
|
|
.expect("MemoryDirectory load always succeeds; qed"),
|
2020-08-05 06:08:03 +02:00
|
|
|
),
|
2016-11-30 13:47:14 +01:00
|
|
|
transient_sstore: transient_sstore(),
|
2017-02-10 01:07:06 +01:00
|
|
|
hardware_store: None,
|
2017-06-14 12:06:15 +02:00
|
|
|
unlock_keep_secret: false,
|
2017-06-07 11:34:53 +02:00
|
|
|
blacklisted_accounts: vec![],
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
/// Creates new random account.
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn new_account(&self, password: &Password) -> Result<Address, Error> {
|
2016-10-15 14:44:08 +02:00
|
|
|
self.new_account_and_public(password).map(|d| d.0)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-10-15 14:44:08 +02:00
|
|
|
/// Creates new random account and returns address and public key
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn new_account_and_public(&self, password: &Password) -> Result<(Address, Public), Error> {
|
2016-10-20 23:41:15 +02:00
|
|
|
let acc = Random
|
|
|
|
.generate()
|
|
|
|
.expect("secp context has generation capabilities; qed");
|
2016-10-15 14:44:08 +02:00
|
|
|
let public = acc.public().clone();
|
|
|
|
let secret = acc.secret().clone();
|
2017-01-30 11:44:09 +01:00
|
|
|
let account = self
|
|
|
|
.sstore
|
|
|
|
.insert_account(SecretVaultRef::Root, secret, password)?;
|
|
|
|
Ok((account.address, public))
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
/// Inserts new account into underlying store.
|
|
|
|
/// Does not unlock account!
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn insert_account(&self, secret: Secret, password: &Password) -> Result<Address, Error> {
|
2017-01-30 11:44:09 +01:00
|
|
|
let account = self
|
|
|
|
.sstore
|
|
|
|
.insert_account(SecretVaultRef::Root, secret, password)?;
|
2017-06-07 11:34:53 +02:00
|
|
|
if self.blacklisted_accounts.contains(&account.address) {
|
|
|
|
self.sstore.remove_account(&account, password)?;
|
2019-02-07 14:34:24 +01:00
|
|
|
return Err(Error::InvalidAccount.into());
|
2017-06-07 11:34:53 +02:00
|
|
|
}
|
2017-01-30 11:44:09 +01:00
|
|
|
Ok(account.address)
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
/// Generates new derived account based on the existing one
|
|
|
|
/// If password is not provided, account must be unlocked
|
|
|
|
/// New account will be created with the same password (if save: true)
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn derive_account(
|
|
|
|
&self,
|
|
|
|
address: &Address,
|
|
|
|
password: Option<Password>,
|
|
|
|
derivation: Derivation,
|
|
|
|
save: bool,
|
2017-02-15 16:56:15 +01:00
|
|
|
) -> Result<Address, SignError> {
|
|
|
|
let account = self.sstore.account_ref(&address)?;
|
|
|
|
let password = password
|
|
|
|
.map(Ok)
|
|
|
|
.unwrap_or_else(|| self.password(&account))?;
|
|
|
|
Ok(if save {
|
|
|
|
self.sstore
|
|
|
|
.insert_derived(SecretVaultRef::Root, &account, &password, derivation)?
|
|
|
|
.address
|
|
|
|
} else {
|
|
|
|
self.sstore
|
|
|
|
.generate_derived(&account, &password, derivation)?
|
|
|
|
})
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-08-10 17:57:40 +02:00
|
|
|
/// Import a new presale wallet.
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn import_presale(
|
|
|
|
&self,
|
|
|
|
presale_json: &[u8],
|
|
|
|
password: &Password,
|
|
|
|
) -> Result<Address, Error> {
|
2017-01-30 11:44:09 +01:00
|
|
|
let account = self
|
|
|
|
.sstore
|
|
|
|
.import_presale(SecretVaultRef::Root, presale_json, password)?;
|
|
|
|
Ok(Address::from(account.address).into())
|
2016-08-10 17:57:40 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-02-14 14:21:58 +01:00
|
|
|
/// Import a new wallet.
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn import_wallet(
|
|
|
|
&self,
|
|
|
|
json: &[u8],
|
|
|
|
password: &Password,
|
|
|
|
gen_id: bool,
|
|
|
|
) -> Result<Address, Error> {
|
2018-02-14 14:21:58 +01:00
|
|
|
let account = self
|
|
|
|
.sstore
|
|
|
|
.import_wallet(SecretVaultRef::Root, json, password, gen_id)?;
|
2017-06-07 11:34:53 +02:00
|
|
|
if self.blacklisted_accounts.contains(&account.address) {
|
|
|
|
self.sstore.remove_account(&account, password)?;
|
2019-02-07 14:34:24 +01:00
|
|
|
return Err(Error::InvalidAccount.into());
|
2017-06-07 11:34:53 +02:00
|
|
|
}
|
2017-01-30 11:44:09 +01:00
|
|
|
Ok(Address::from(account.address).into())
|
2016-08-10 17:57:40 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-01-04 12:50:50 +01:00
|
|
|
/// Checks whether an account with a given address is present.
|
2018-06-13 09:58:52 +02:00
|
|
|
pub fn has_account(&self, address: Address) -> bool {
|
|
|
|
self.sstore.account_ref(&address).is_ok() && !self.blacklisted_accounts.contains(&address)
|
2017-01-04 12:50:50 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
/// Returns addresses of all accounts.
|
2016-08-15 15:09:00 +02:00
|
|
|
pub fn accounts(&self) -> Result<Vec<Address>, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
let accounts = self.sstore.accounts()?;
|
2017-06-07 11:34:53 +02:00
|
|
|
Ok(accounts
|
2018-06-13 11:01:56 +02:00
|
|
|
.into_iter()
|
|
|
|
.map(|a| a.address)
|
|
|
|
.filter(|address| !self.blacklisted_accounts.contains(address))
|
|
|
|
.collect())
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-08-07 14:52:23 +02:00
|
|
|
/// Returns the address of default account.
|
|
|
|
pub fn default_account(&self) -> Result<Address, Error> {
|
|
|
|
Ok(self.accounts()?.first().cloned().unwrap_or_default())
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-10 01:07:06 +01:00
|
|
|
/// Returns addresses of hardware accounts.
|
|
|
|
pub fn hardware_accounts(&self) -> Result<Vec<Address>, Error> {
|
2018-08-07 14:52:23 +02:00
|
|
|
if let Some(accounts) = self.hardware_store.as_ref().map(|h| h.list_wallets()) {
|
2018-06-26 09:03:38 +02:00
|
|
|
if !accounts.is_empty() {
|
|
|
|
return Ok(accounts.into_iter().map(|a| a.address).collect());
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2018-06-26 09:03:38 +02:00
|
|
|
}
|
2019-02-07 14:34:24 +01:00
|
|
|
Err(Error::Custom(
|
|
|
|
"No hardware wallet accounts were found".into(),
|
|
|
|
))
|
2017-02-10 01:07:06 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-09-14 19:28:43 +02:00
|
|
|
/// Get a list of paths to locked hardware wallets
|
|
|
|
pub fn locked_hardware_accounts(&self) -> Result<Vec<String>, SignError> {
|
|
|
|
match self
|
|
|
|
.hardware_store
|
|
|
|
.as_ref()
|
|
|
|
.map(|h| h.list_locked_wallets())
|
|
|
|
{
|
|
|
|
None => Err(SignError::NotFound),
|
|
|
|
Some(Err(e)) => Err(SignError::Hardware(e)),
|
|
|
|
Some(Ok(s)) => Ok(s),
|
|
|
|
}
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-09-14 19:28:43 +02:00
|
|
|
/// Provide a pin to a locked hardware wallet on USB path to unlock it
|
|
|
|
pub fn hardware_pin_matrix_ack(&self, path: &str, pin: &str) -> Result<bool, SignError> {
|
|
|
|
match self
|
|
|
|
.hardware_store
|
|
|
|
.as_ref()
|
|
|
|
.map(|h| h.pin_matrix_ack(path, pin))
|
|
|
|
{
|
|
|
|
None => Err(SignError::NotFound),
|
|
|
|
Some(Err(e)) => Err(SignError::Hardware(e)),
|
|
|
|
Some(Ok(s)) => Ok(s),
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2017-09-14 19:28:43 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-08-11 18:31:28 +02:00
|
|
|
/// Returns each address along with metadata.
|
2017-02-03 13:56:48 +01:00
|
|
|
pub fn addresses_info(&self) -> HashMap<Address, AccountMeta> {
|
|
|
|
self.address_book.read().get()
|
2016-08-11 18:31:28 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-08-11 18:31:28 +02:00
|
|
|
/// Returns each address along with metadata.
|
2017-02-03 13:56:48 +01:00
|
|
|
pub fn set_address_name(&self, account: Address, name: String) {
|
|
|
|
self.address_book.write().set_name(account, name)
|
2016-08-11 18:31:28 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-08-11 18:31:28 +02:00
|
|
|
/// Returns each address along with metadata.
|
2017-02-10 01:07:06 +01:00
|
|
|
pub fn set_address_meta(&self, account: Address, meta: String) {
|
2017-02-03 13:56:48 +01:00
|
|
|
self.address_book.write().set_meta(account, meta)
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
|
2018-06-13 11:01:56 +02:00
|
|
|
/// Removes and address from the address book
|
2017-02-03 13:56:48 +01:00
|
|
|
pub fn remove_address(&self, addr: Address) {
|
|
|
|
self.address_book.write().remove(addr)
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
|
2017-02-03 13:56:48 +01:00
|
|
|
/// Returns each account along with name and meta.
|
2017-02-10 01:07:06 +01:00
|
|
|
pub fn accounts_info(&self) -> Result<HashMap<Address, AccountMeta>, Error> {
|
|
|
|
let r = self
|
2017-02-03 13:56:48 +01:00
|
|
|
.sstore
|
2017-02-10 01:07:06 +01:00
|
|
|
.accounts()?
|
|
|
|
.into_iter()
|
2017-06-07 11:34:53 +02:00
|
|
|
.filter(|a| !self.blacklisted_accounts.contains(&a.address))
|
2020-08-05 06:08:03 +02:00
|
|
|
.map(|a| {
|
|
|
|
(
|
2017-02-10 01:07:06 +01:00
|
|
|
a.address.clone(),
|
2017-02-03 13:56:48 +01:00
|
|
|
self.account_meta(a.address).ok().unwrap_or_default(),
|
|
|
|
)
|
2020-08-05 06:08:03 +02:00
|
|
|
})
|
2017-02-03 13:56:48 +01:00
|
|
|
.collect();
|
|
|
|
Ok(r)
|
2016-12-07 16:53:46 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-24 17:38:21 +02:00
|
|
|
/// Returns each hardware account along with name and meta.
|
2016-08-15 15:09:00 +02:00
|
|
|
pub fn hardware_accounts_info(&self) -> Result<HashMap<Address, AccountMeta>, Error> {
|
2017-02-10 01:07:06 +01:00
|
|
|
let r = self
|
|
|
|
.hardware_accounts()?
|
2016-07-24 17:38:21 +02:00
|
|
|
.into_iter()
|
2017-06-07 11:34:53 +02:00
|
|
|
.map(|address| {
|
2017-01-30 11:44:09 +01:00
|
|
|
(
|
|
|
|
address.clone(),
|
|
|
|
self.account_meta(address).ok().unwrap_or_default(),
|
|
|
|
)
|
2020-08-05 06:08:03 +02:00
|
|
|
})
|
2016-07-24 17:38:21 +02:00
|
|
|
.collect();
|
|
|
|
Ok(r)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-10 01:07:06 +01:00
|
|
|
/// Returns each hardware account along with name and meta.
|
2017-11-01 11:23:18 +01:00
|
|
|
pub fn is_hardware_address(&self, address: &Address) -> bool {
|
|
|
|
self.hardware_store
|
|
|
|
.as_ref()
|
|
|
|
.and_then(|s| s.wallet_info(address))
|
|
|
|
.is_some()
|
2017-02-10 01:07:06 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-24 17:38:21 +02:00
|
|
|
/// Returns each account along with name and meta.
|
2017-01-30 11:44:09 +01:00
|
|
|
pub fn account_meta(&self, address: Address) -> Result<AccountMeta, Error> {
|
2017-02-10 01:07:06 +01:00
|
|
|
if let Some(info) = self
|
|
|
|
.hardware_store
|
|
|
|
.as_ref()
|
|
|
|
.and_then(|s| s.wallet_info(&address))
|
|
|
|
{
|
|
|
|
Ok(AccountMeta {
|
|
|
|
name: info.name,
|
|
|
|
meta: info.manufacturer,
|
|
|
|
uuid: None,
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
let account = self.sstore.account_ref(&address)?;
|
|
|
|
Ok(AccountMeta {
|
|
|
|
name: self.sstore.name(&account)?,
|
|
|
|
meta: self.sstore.meta(&account)?,
|
|
|
|
uuid: self.sstore.uuid(&account).ok().map(Into::into), // allowed to not have a Uuid
|
|
|
|
})
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2017-02-10 01:07:06 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-08-09 11:09:40 +02:00
|
|
|
/// Returns account public key.
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn account_public(&self, address: Address, password: &Password) -> Result<Public, Error> {
|
2017-08-09 11:09:40 +02:00
|
|
|
self.sstore
|
|
|
|
.public(&self.sstore.account_ref(&address)?, password)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-24 17:38:21 +02:00
|
|
|
/// Returns each account along with name and meta.
|
2017-02-10 01:07:06 +01:00
|
|
|
pub fn set_account_name(&self, address: Address, name: String) -> Result<(), Error> {
|
2017-11-01 11:23:18 +01:00
|
|
|
self.sstore
|
2017-01-30 11:44:09 +01:00
|
|
|
.set_name(&self.sstore.account_ref(&address)?, name)?;
|
2020-08-05 06:08:03 +02:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-02-10 01:07:06 +01:00
|
|
|
/// Returns each account along with name and meta.
|
2017-01-30 11:44:09 +01:00
|
|
|
pub fn set_account_meta(&self, address: Address, meta: String) -> Result<(), Error> {
|
2017-02-05 16:17:56 +01:00
|
|
|
self.sstore
|
|
|
|
.set_meta(&self.sstore.account_ref(&address)?, meta)?;
|
2016-07-24 17:38:21 +02:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-07-24 17:38:21 +02:00
|
|
|
/// Returns `true` if the password for `account` is `password`. `false` if not.
|
2017-01-30 11:44:09 +01:00
|
|
|
pub fn test_password(&self, address: &Address, password: &Password) -> Result<bool, Error> {
|
2017-02-05 16:17:56 +01:00
|
|
|
self.sstore
|
|
|
|
.test_password(&self.sstore.account_ref(&address)?, password)
|
2016-07-24 17:38:21 +02:00
|
|
|
.map_err(Into::into)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-10-22 15:24:02 +02:00
|
|
|
/// Permanently removes an account.
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn kill_account(&self, address: &Address, password: &Password) -> Result<(), Error> {
|
2017-02-05 16:17:56 +01:00
|
|
|
self.sstore
|
|
|
|
.remove_account(&self.sstore.account_ref(&address)?, &password)?;
|
|
|
|
Ok(())
|
2016-10-27 08:28:12 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-06-22 15:09:15 +02:00
|
|
|
/// Changes the password of `account` from `password` to `new_password`. Fails if incorrect `password` given.
|
|
|
|
pub fn change_password(
|
|
|
|
&self,
|
|
|
|
address: &Address,
|
2017-02-05 16:17:56 +01:00
|
|
|
password: Password,
|
2016-10-22 15:24:02 +02:00
|
|
|
new_password: Password,
|
2018-06-22 15:09:15 +02:00
|
|
|
) -> Result<(), Error> {
|
|
|
|
self.sstore
|
2017-02-05 16:17:56 +01:00
|
|
|
.change_password(&self.sstore.account_ref(address)?, &password, &new_password)
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
/// Exports an account for given address.
|
2017-03-23 13:23:03 +01:00
|
|
|
pub fn export_account(&self, address: &Address, password: Password) -> Result<KeyFile, Error> {
|
2018-06-22 15:09:15 +02:00
|
|
|
self.sstore
|
|
|
|
.export_account(&self.sstore.account_ref(address)?, &password)
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
|
2017-03-23 13:23:03 +01:00
|
|
|
/// Helper method used for unlocking accounts.
|
|
|
|
fn unlock_account(
|
|
|
|
&self,
|
2018-06-22 15:09:15 +02:00
|
|
|
address: Address,
|
|
|
|
password: Password,
|
|
|
|
unlock: Unlock,
|
|
|
|
) -> Result<(), Error> {
|
2017-02-05 16:17:56 +01:00
|
|
|
let account = self.sstore.account_ref(&address)?;
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-06-13 11:01:56 +02:00
|
|
|
// check if account is already unlocked permanently, if it is, do nothing
|
2016-12-09 09:31:58 +01:00
|
|
|
let mut unlocked = self.unlocked.write();
|
2016-08-05 23:33:14 +02:00
|
|
|
if let Some(data) = unlocked.get(&account) {
|
|
|
|
if let Unlock::Perm = data.unlock {
|
|
|
|
return Ok(());
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-11-01 11:23:18 +01:00
|
|
|
if self.unlock_keep_secret && unlock == Unlock::Perm {
|
|
|
|
// verify password and get the secret
|
|
|
|
let secret = self.sstore.raw_secret(&account, &password)?;
|
|
|
|
self.unlocked_secrets
|
2020-08-05 06:08:03 +02:00
|
|
|
.write()
|
2017-06-06 18:06:40 +02:00
|
|
|
.insert(account.clone(), secret);
|
2020-08-05 06:08:03 +02:00
|
|
|
} else {
|
2017-06-06 18:06:40 +02:00
|
|
|
// verify password by signing dump message
|
|
|
|
// result may be discarded
|
|
|
|
let _ = self.sstore.sign(&account, &password, &Default::default())?;
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
|
2017-06-06 18:06:40 +02:00
|
|
|
let data = AccountData {
|
|
|
|
unlock: unlock,
|
2018-06-22 15:09:15 +02:00
|
|
|
password: password,
|
2020-08-05 06:08:03 +02:00
|
|
|
};
|
|
|
|
|
2017-06-06 18:06:40 +02:00
|
|
|
unlocked.insert(account, data);
|
|
|
|
Ok(())
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-06-06 18:06:40 +02:00
|
|
|
fn password(&self, account: &StoreAccountRef) -> Result<Password, SignError> {
|
2016-06-20 00:10:34 +02:00
|
|
|
let mut unlocked = self.unlocked.write();
|
|
|
|
let data = unlocked.get(account).ok_or(SignError::NotUnlocked)?.clone();
|
2017-06-06 18:06:40 +02:00
|
|
|
if let Unlock::OneTime = data.unlock {
|
2020-08-05 06:08:03 +02:00
|
|
|
unlocked
|
2016-06-20 00:10:34 +02:00
|
|
|
.remove(account)
|
2018-06-22 15:09:15 +02:00
|
|
|
.expect("data exists: so key must exist: qed");
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-12-09 09:31:58 +01:00
|
|
|
if let Unlock::Timed(ref end) = data.unlock {
|
2017-01-30 21:08:36 +01:00
|
|
|
if Instant::now() > *end {
|
|
|
|
unlocked
|
|
|
|
.remove(account)
|
2016-10-15 14:44:08 +02:00
|
|
|
.expect("data exists: so key must exist: qed");
|
|
|
|
return Err(SignError::NotUnlocked);
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
2018-06-22 15:09:15 +02:00
|
|
|
Ok(data.password)
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
|
2017-11-01 11:23:18 +01:00
|
|
|
/// Unlocks account permanently.
|
2016-10-15 14:44:08 +02:00
|
|
|
pub fn unlock_account_permanently(
|
2020-08-05 06:08:03 +02:00
|
|
|
&self,
|
2016-10-31 16:55:30 +01:00
|
|
|
account: Address,
|
2018-06-22 15:09:15 +02:00
|
|
|
password: Password,
|
2016-10-31 16:55:30 +01:00
|
|
|
) -> Result<(), Error> {
|
2016-10-15 14:44:08 +02:00
|
|
|
self.unlock_account(account, password, Unlock::Perm)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
/// Unlocks account temporarily (for one signing).
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn unlock_account_temporarily(
|
|
|
|
&self,
|
|
|
|
account: Address,
|
|
|
|
password: Password,
|
|
|
|
) -> Result<(), Error> {
|
2016-06-20 00:10:34 +02:00
|
|
|
self.unlock_account(account, password, Unlock::OneTime)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
/// Unlocks account temporarily with a timeout.
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn unlock_account_timed(
|
|
|
|
&self,
|
|
|
|
account: Address,
|
|
|
|
password: Password,
|
|
|
|
duration: Duration,
|
|
|
|
) -> Result<(), Error> {
|
2018-04-14 21:35:58 +02:00
|
|
|
self.unlock_account(account, password, Unlock::Timed(Instant::now() + duration))
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
|
2017-11-01 11:23:18 +01:00
|
|
|
/// Checks if given account is unlocked
|
|
|
|
pub fn is_unlocked(&self, address: &Address) -> bool {
|
|
|
|
let unlocked = self.unlocked.read();
|
2017-06-06 18:06:40 +02:00
|
|
|
let unlocked_secrets = self.unlocked_secrets.read();
|
2017-02-05 16:17:56 +01:00
|
|
|
self.sstore
|
2017-11-01 11:23:18 +01:00
|
|
|
.account_ref(address)
|
2017-06-06 18:06:40 +02:00
|
|
|
.map(|r| unlocked.get(&r).is_some() || unlocked_secrets.get(&r).is_some())
|
2017-02-05 16:17:56 +01:00
|
|
|
.unwrap_or(false)
|
2016-08-05 23:33:14 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-22 21:32:26 +02:00
|
|
|
/// Checks if given account is unlocked permanently
|
2017-11-01 11:23:18 +01:00
|
|
|
pub fn is_unlocked_permanently(&self, address: &Address) -> bool {
|
2016-12-09 09:31:58 +01:00
|
|
|
let unlocked = self.unlocked.read();
|
2017-11-01 11:23:18 +01:00
|
|
|
self.sstore
|
|
|
|
.account_ref(address)
|
2017-06-06 18:06:40 +02:00
|
|
|
.map(|r| {
|
|
|
|
unlocked
|
|
|
|
.get(&r)
|
2017-11-01 11:23:18 +01:00
|
|
|
.map_or(false, |account| account.unlock == Unlock::Perm)
|
2020-08-05 06:08:03 +02:00
|
|
|
})
|
2017-11-01 11:23:18 +01:00
|
|
|
.unwrap_or(false)
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
/// Signs the message. If password is not provided the account must be unlocked.
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn sign(
|
2020-08-05 06:08:03 +02:00
|
|
|
&self,
|
2018-06-22 15:09:15 +02:00
|
|
|
address: Address,
|
|
|
|
password: Option<Password>,
|
|
|
|
message: Message,
|
|
|
|
) -> Result<Signature, SignError> {
|
2017-02-05 16:17:56 +01:00
|
|
|
let account = self.sstore.account_ref(&address)?;
|
2017-06-06 18:06:40 +02:00
|
|
|
match self.unlocked_secrets.read().get(&account) {
|
|
|
|
Some(secret) => Ok(self.sstore.sign_with_secret(&secret, &message)?),
|
|
|
|
None => {
|
|
|
|
let password = password
|
2020-08-05 06:08:03 +02:00
|
|
|
.map(Ok)
|
2017-06-06 18:06:40 +02:00
|
|
|
.unwrap_or_else(|| self.password(&account))?;
|
|
|
|
Ok(self.sstore.sign(&account, &password, &message)?)
|
2017-11-01 11:23:18 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-15 14:44:08 +02:00
|
|
|
/// Signs message using the derived secret. If password is not provided the account must be unlocked.
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn sign_derived(
|
|
|
|
&self,
|
|
|
|
address: &Address,
|
|
|
|
password: Option<Password>,
|
|
|
|
derivation: Derivation,
|
|
|
|
message: Message,
|
2017-02-15 16:56:15 +01:00
|
|
|
) -> Result<Signature, SignError> {
|
|
|
|
let account = self.sstore.account_ref(address)?;
|
|
|
|
let password = password
|
|
|
|
.map(Ok)
|
|
|
|
.unwrap_or_else(|| self.password(&account))?;
|
|
|
|
Ok(self
|
|
|
|
.sstore
|
|
|
|
.sign_derived(&account, &password, derivation, &message)?)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-11-30 15:08:38 +01:00
|
|
|
/// Signs given message with supplied token. Returns a token to use in next signing within this session.
|
2017-01-30 21:08:36 +01:00
|
|
|
pub fn sign_with_token(
|
|
|
|
&self,
|
|
|
|
address: Address,
|
|
|
|
token: AccountToken,
|
|
|
|
message: Message,
|
|
|
|
) -> Result<(Signature, AccountToken), SignError> {
|
2017-02-05 16:17:56 +01:00
|
|
|
let account = self.sstore.account_ref(&address)?;
|
2016-12-27 12:53:56 +01:00
|
|
|
let is_std_password = self.sstore.test_password(&account, &token)?;
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-06-22 15:09:15 +02:00
|
|
|
let new_token = Password::from(random_string(16));
|
2016-11-30 15:08:38 +01:00
|
|
|
let signature = if is_std_password {
|
|
|
|
// Insert to transient store
|
2017-01-30 11:44:09 +01:00
|
|
|
self.sstore.copy_account(
|
|
|
|
&self.transient_sstore,
|
|
|
|
SecretVaultRef::Root,
|
|
|
|
&account,
|
|
|
|
&token,
|
|
|
|
&new_token,
|
|
|
|
)?;
|
2016-11-30 15:08:38 +01:00
|
|
|
// sign
|
2016-12-27 12:53:56 +01:00
|
|
|
self.sstore.sign(&account, &token, &message)?
|
2016-11-30 15:08:38 +01:00
|
|
|
} else {
|
|
|
|
// check transient store
|
2016-12-27 12:53:56 +01:00
|
|
|
self.transient_sstore
|
|
|
|
.change_password(&account, &token, &new_token)?;
|
2016-11-30 15:08:38 +01:00
|
|
|
// and sign
|
2016-12-27 12:53:56 +01:00
|
|
|
self.transient_sstore.sign(&account, &new_token, &message)?
|
2016-11-30 15:08:38 +01:00
|
|
|
};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-11-30 15:08:38 +01:00
|
|
|
Ok((signature, new_token))
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-11-30 16:11:41 +01:00
|
|
|
/// Decrypts a message with given token. Returns a token to use in next operation for this account.
|
2017-01-30 11:44:09 +01:00
|
|
|
pub fn decrypt_with_token(
|
|
|
|
&self,
|
|
|
|
address: Address,
|
|
|
|
token: AccountToken,
|
|
|
|
shared_mac: &[u8],
|
|
|
|
message: &[u8],
|
2017-01-30 21:08:36 +01:00
|
|
|
) -> Result<(Vec<u8>, AccountToken), SignError> {
|
2017-02-05 16:17:56 +01:00
|
|
|
let account = self.sstore.account_ref(&address)?;
|
2016-12-27 12:53:56 +01:00
|
|
|
let is_std_password = self.sstore.test_password(&account, &token)?;
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-06-22 15:09:15 +02:00
|
|
|
let new_token = Password::from(random_string(16));
|
2016-11-30 16:11:41 +01:00
|
|
|
let message = if is_std_password {
|
|
|
|
// Insert to transient store
|
2017-01-30 11:44:09 +01:00
|
|
|
self.sstore.copy_account(
|
|
|
|
&self.transient_sstore,
|
|
|
|
SecretVaultRef::Root,
|
|
|
|
&account,
|
|
|
|
&token,
|
|
|
|
&new_token,
|
|
|
|
)?;
|
2016-11-30 16:11:41 +01:00
|
|
|
// decrypt
|
2016-12-27 12:53:56 +01:00
|
|
|
self.sstore.decrypt(&account, &token, shared_mac, message)?
|
2016-11-30 16:11:41 +01:00
|
|
|
} else {
|
|
|
|
// check transient store
|
2016-12-27 12:53:56 +01:00
|
|
|
self.transient_sstore
|
|
|
|
.change_password(&account, &token, &new_token)?;
|
2016-11-30 16:11:41 +01:00
|
|
|
// and decrypt
|
2016-12-27 12:53:56 +01:00
|
|
|
self.transient_sstore
|
|
|
|
.decrypt(&account, &token, shared_mac, message)?
|
2016-11-30 16:11:41 +01:00
|
|
|
};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-11-30 16:11:41 +01:00
|
|
|
Ok((message, new_token))
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-10-15 14:44:08 +02:00
|
|
|
/// Decrypts a message. If password is not provided the account must be unlocked.
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn decrypt(
|
|
|
|
&self,
|
|
|
|
address: Address,
|
|
|
|
password: Option<Password>,
|
|
|
|
shared_mac: &[u8],
|
|
|
|
message: &[u8],
|
|
|
|
) -> Result<Vec<u8>, SignError> {
|
2017-02-05 16:17:56 +01:00
|
|
|
let account = self.sstore.account_ref(&address)?;
|
2016-12-27 12:53:56 +01:00
|
|
|
let password = password
|
|
|
|
.map(Ok)
|
|
|
|
.unwrap_or_else(|| self.password(&account))?;
|
|
|
|
Ok(self
|
|
|
|
.sstore
|
|
|
|
.decrypt(&account, &password, shared_mac, message)?)
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-08-09 11:09:40 +02:00
|
|
|
/// Agree on shared key.
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn agree(
|
|
|
|
&self,
|
|
|
|
address: Address,
|
|
|
|
password: Option<Password>,
|
|
|
|
other_public: &Public,
|
|
|
|
) -> Result<Secret, SignError> {
|
2017-08-09 11:09:40 +02:00
|
|
|
let account = self.sstore.account_ref(&address)?;
|
|
|
|
let password = password
|
|
|
|
.map(Ok)
|
|
|
|
.unwrap_or_else(|| self.password(&account))?;
|
|
|
|
Ok(self.sstore.agree(&account, &password, other_public)?)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-08-11 18:31:28 +02:00
|
|
|
/// Returns the underlying `SecretStore` reference if one exists.
|
2016-08-15 15:09:00 +02:00
|
|
|
pub fn list_geth_accounts(&self, testnet: bool) -> Vec<Address> {
|
2016-08-11 18:31:28 +02:00
|
|
|
self.sstore
|
|
|
|
.list_geth_accounts(testnet)
|
|
|
|
.into_iter()
|
|
|
|
.map(|a| Address::from(a).into())
|
|
|
|
.collect()
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-08-11 18:31:28 +02:00
|
|
|
/// Returns the underlying `SecretStore` reference if one exists.
|
2016-08-15 15:09:00 +02:00
|
|
|
pub fn import_geth_accounts(
|
|
|
|
&self,
|
|
|
|
desired: Vec<Address>,
|
2017-01-30 11:44:09 +01:00
|
|
|
testnet: bool,
|
|
|
|
) -> Result<Vec<Address>, Error> {
|
|
|
|
self.sstore
|
2017-02-05 16:17:56 +01:00
|
|
|
.import_geth_accounts(SecretVaultRef::Root, desired, testnet)
|
2017-01-30 11:44:09 +01:00
|
|
|
.map(|a| a.into_iter().map(|a| a.address).collect())
|
2017-02-08 13:53:39 +01:00
|
|
|
.map_err(Into::into)
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
/// Create new vault.
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn create_vault(&self, name: &str, password: &Password) -> Result<(), Error> {
|
2017-02-05 16:17:56 +01:00
|
|
|
self.sstore.create_vault(name, password).map_err(Into::into)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
/// Open existing vault.
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn open_vault(&self, name: &str, password: &Password) -> Result<(), Error> {
|
2017-02-05 16:17:56 +01:00
|
|
|
self.sstore.open_vault(name, password).map_err(Into::into)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
/// Close previously opened vault.
|
|
|
|
pub fn close_vault(&self, name: &str) -> Result<(), Error> {
|
|
|
|
self.sstore.close_vault(name).map_err(Into::into)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
/// List all vaults
|
|
|
|
pub fn list_vaults(&self) -> Result<Vec<String>, Error> {
|
|
|
|
self.sstore.list_vaults().map_err(Into::into)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
/// List all currently opened vaults
|
|
|
|
pub fn list_opened_vaults(&self) -> Result<Vec<String>, Error> {
|
|
|
|
self.sstore.list_opened_vaults().map_err(Into::into)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
/// Change vault password.
|
2018-06-22 15:09:15 +02:00
|
|
|
pub fn change_vault_password(&self, name: &str, new_password: &Password) -> Result<(), Error> {
|
2017-02-05 16:17:56 +01:00
|
|
|
self.sstore
|
|
|
|
.change_vault_password(name, new_password)
|
|
|
|
.map_err(Into::into)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
/// Change vault of the given address.
|
|
|
|
pub fn change_vault(&self, address: Address, new_vault: &str) -> Result<(), Error> {
|
|
|
|
let new_vault_ref = if new_vault.is_empty() {
|
|
|
|
SecretVaultRef::Root
|
|
|
|
} else {
|
|
|
|
SecretVaultRef::Vault(new_vault.to_owned())
|
|
|
|
};
|
|
|
|
let old_account_ref = self.sstore.account_ref(&address)?;
|
|
|
|
self.sstore
|
|
|
|
.change_account_vault(new_vault_ref, old_account_ref)
|
|
|
|
.map_err(Into::into)
|
|
|
|
.map(|_| ())
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-08 13:53:39 +01:00
|
|
|
/// Get vault metadata string.
|
|
|
|
pub fn get_vault_meta(&self, name: &str) -> Result<String, Error> {
|
|
|
|
self.sstore.get_vault_meta(name).map_err(Into::into)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-08 13:53:39 +01:00
|
|
|
/// Set vault metadata string.
|
|
|
|
pub fn set_vault_meta(&self, name: &str, meta: &str) -> Result<(), Error> {
|
|
|
|
self.sstore.set_vault_meta(name, meta).map_err(Into::into)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-06-13 11:01:56 +02:00
|
|
|
/// Sign message with hardware wallet.
|
|
|
|
pub fn sign_message_with_hardware(
|
|
|
|
&self,
|
|
|
|
address: &Address,
|
|
|
|
message: &[u8],
|
|
|
|
) -> Result<Signature, SignError> {
|
|
|
|
match self
|
|
|
|
.hardware_store
|
|
|
|
.as_ref()
|
|
|
|
.map(|s| s.sign_message(address, message))
|
|
|
|
{
|
|
|
|
None | Some(Err(HardwareError::KeyNotFound)) => Err(SignError::NotFound),
|
|
|
|
Some(Err(e)) => Err(From::from(e)),
|
|
|
|
Some(Ok(s)) => Ok(s),
|
|
|
|
}
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-10 01:07:06 +01:00
|
|
|
/// Sign transaction with hardware wallet.
|
2018-06-13 11:01:56 +02:00
|
|
|
pub fn sign_transaction_with_hardware(
|
|
|
|
&self,
|
|
|
|
address: &Address,
|
|
|
|
transaction: &Transaction,
|
|
|
|
chain_id: Option<u64>,
|
|
|
|
rlp_encoded_transaction: &[u8],
|
|
|
|
) -> Result<Signature, SignError> {
|
2017-09-14 19:28:43 +02:00
|
|
|
let t_info = TransactionInfo {
|
|
|
|
nonce: transaction.nonce,
|
|
|
|
gas_price: transaction.gas_price,
|
|
|
|
gas_limit: transaction.gas,
|
|
|
|
to: match transaction.action {
|
|
|
|
Action::Create => None,
|
|
|
|
Action::Call(ref to) => Some(to.clone()),
|
|
|
|
},
|
|
|
|
value: transaction.value,
|
|
|
|
data: transaction.data.to_vec(),
|
|
|
|
chain_id: chain_id,
|
|
|
|
};
|
|
|
|
match self
|
|
|
|
.hardware_store
|
|
|
|
.as_ref()
|
|
|
|
.map(|s| s.sign_transaction(&address, &t_info, rlp_encoded_transaction))
|
|
|
|
{
|
2017-02-10 01:07:06 +01:00
|
|
|
None | Some(Err(HardwareError::KeyNotFound)) => Err(SignError::NotFound),
|
|
|
|
Some(Err(e)) => Err(From::from(e)),
|
|
|
|
Some(Ok(s)) => Ok(s),
|
|
|
|
}
|
|
|
|
}
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2018-08-07 14:52:23 +02:00
|
|
|
use super::{AccountProvider, Unlock};
|
2018-04-14 21:35:58 +02:00
|
|
|
use ethereum_types::H256;
|
2019-02-07 14:34:24 +01:00
|
|
|
use ethkey::{Address, Generator, Random};
|
2017-02-15 16:56:15 +01:00
|
|
|
use ethstore::{Derivation, StoreAccountRef};
|
2018-01-10 13:35:18 +01:00
|
|
|
use std::time::{Duration, Instant};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
#[test]
|
|
|
|
fn unlock_account_temp() {
|
|
|
|
let kp = Random.generate().unwrap();
|
|
|
|
let ap = AccountProvider::transient_provider();
|
2018-06-22 15:09:15 +02:00
|
|
|
assert!(ap
|
|
|
|
.insert_account(kp.secret().clone(), &"test".into())
|
|
|
|
.is_ok());
|
2016-06-20 00:10:34 +02:00
|
|
|
assert!(ap
|
|
|
|
.unlock_account_temporarily(kp.address(), "test1".into())
|
|
|
|
.is_err());
|
|
|
|
assert!(ap
|
|
|
|
.unlock_account_temporarily(kp.address(), "test".into())
|
|
|
|
.is_ok());
|
2016-10-15 14:44:08 +02:00
|
|
|
assert!(ap.sign(kp.address(), None, Default::default()).is_ok());
|
|
|
|
assert!(ap.sign(kp.address(), None, Default::default()).is_err());
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
#[test]
|
|
|
|
fn derived_account_nosave() {
|
|
|
|
let kp = Random.generate().unwrap();
|
|
|
|
let ap = AccountProvider::transient_provider();
|
2018-06-22 15:09:15 +02:00
|
|
|
assert!(ap
|
|
|
|
.insert_account(kp.secret().clone(), &"base".into())
|
|
|
|
.is_ok());
|
2017-02-15 16:56:15 +01:00
|
|
|
assert!(ap
|
|
|
|
.unlock_account_permanently(kp.address(), "base".into())
|
|
|
|
.is_ok());
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
let derived_addr = ap
|
|
|
|
.derive_account(
|
|
|
|
&kp.address(),
|
|
|
|
None,
|
|
|
|
Derivation::SoftHash(H256::from(999)),
|
|
|
|
false,
|
|
|
|
)
|
|
|
|
.expect("Derivation should not fail");
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
assert!(
|
|
|
|
ap.unlock_account_permanently(derived_addr, "base".into())
|
|
|
|
.is_err(),
|
|
|
|
"There should be an error because account is not supposed to be saved"
|
|
|
|
);
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
#[test]
|
|
|
|
fn derived_account_save() {
|
|
|
|
let kp = Random.generate().unwrap();
|
|
|
|
let ap = AccountProvider::transient_provider();
|
2018-06-22 15:09:15 +02:00
|
|
|
assert!(ap
|
|
|
|
.insert_account(kp.secret().clone(), &"base".into())
|
|
|
|
.is_ok());
|
2017-02-15 16:56:15 +01:00
|
|
|
assert!(ap
|
|
|
|
.unlock_account_permanently(kp.address(), "base".into())
|
|
|
|
.is_ok());
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
let derived_addr = ap
|
|
|
|
.derive_account(
|
|
|
|
&kp.address(),
|
|
|
|
None,
|
|
|
|
Derivation::SoftHash(H256::from(999)),
|
|
|
|
true,
|
|
|
|
)
|
|
|
|
.expect("Derivation should not fail");
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
assert!(
|
|
|
|
ap.unlock_account_permanently(derived_addr, "base_wrong".into())
|
|
|
|
.is_err(),
|
|
|
|
"There should be an error because password is invalid"
|
|
|
|
);
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
assert!(
|
|
|
|
ap.unlock_account_permanently(derived_addr, "base".into())
|
|
|
|
.is_ok(),
|
|
|
|
"Should be ok because account is saved and password is valid"
|
|
|
|
);
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
#[test]
|
|
|
|
fn derived_account_sign() {
|
|
|
|
let kp = Random.generate().unwrap();
|
|
|
|
let ap = AccountProvider::transient_provider();
|
2018-06-22 15:09:15 +02:00
|
|
|
assert!(ap
|
|
|
|
.insert_account(kp.secret().clone(), &"base".into())
|
|
|
|
.is_ok());
|
2017-02-15 16:56:15 +01:00
|
|
|
assert!(ap
|
|
|
|
.unlock_account_permanently(kp.address(), "base".into())
|
|
|
|
.is_ok());
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
let derived_addr = ap
|
|
|
|
.derive_account(
|
|
|
|
&kp.address(),
|
|
|
|
None,
|
|
|
|
Derivation::SoftHash(H256::from(1999)),
|
|
|
|
true,
|
|
|
|
)
|
|
|
|
.expect("Derivation should not fail");
|
|
|
|
ap.unlock_account_permanently(derived_addr, "base".into())
|
|
|
|
.expect("Should be ok because account is saved and password is valid");
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
let msg = Default::default();
|
|
|
|
let signed_msg1 = ap
|
|
|
|
.sign(derived_addr, None, msg)
|
|
|
|
.expect("Signing with existing unlocked account should not fail");
|
|
|
|
let signed_msg2 = ap
|
|
|
|
.sign_derived(
|
|
|
|
&kp.address(),
|
|
|
|
None,
|
|
|
|
Derivation::SoftHash(H256::from(1999)),
|
|
|
|
msg,
|
|
|
|
)
|
|
|
|
.expect("Derived signing with existing unlocked account should not fail");
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
assert_eq!(signed_msg1, signed_msg2, "Signed messages should match");
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
#[test]
|
|
|
|
fn unlock_account_perm() {
|
|
|
|
let kp = Random.generate().unwrap();
|
|
|
|
let ap = AccountProvider::transient_provider();
|
2018-06-22 15:09:15 +02:00
|
|
|
assert!(ap
|
|
|
|
.insert_account(kp.secret().clone(), &"test".into())
|
|
|
|
.is_ok());
|
2016-06-20 00:10:34 +02:00
|
|
|
assert!(ap
|
|
|
|
.unlock_account_permanently(kp.address(), "test1".into())
|
|
|
|
.is_err());
|
|
|
|
assert!(ap
|
|
|
|
.unlock_account_permanently(kp.address(), "test".into())
|
2016-10-15 14:44:08 +02:00
|
|
|
.is_ok());
|
2016-06-20 00:10:34 +02:00
|
|
|
assert!(ap.sign(kp.address(), None, Default::default()).is_ok());
|
2016-10-15 14:44:08 +02:00
|
|
|
assert!(ap.sign(kp.address(), None, Default::default()).is_ok());
|
|
|
|
assert!(ap
|
2016-06-20 00:10:34 +02:00
|
|
|
.unlock_account_temporarily(kp.address(), "test".into())
|
2016-10-15 14:44:08 +02:00
|
|
|
.is_ok());
|
|
|
|
assert!(ap.sign(kp.address(), None, Default::default()).is_ok());
|
|
|
|
assert!(ap.sign(kp.address(), None, Default::default()).is_ok());
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-08-05 23:33:14 +02:00
|
|
|
#[test]
|
|
|
|
fn unlock_account_timer() {
|
|
|
|
let kp = Random.generate().unwrap();
|
|
|
|
let ap = AccountProvider::transient_provider();
|
2018-06-22 15:09:15 +02:00
|
|
|
assert!(ap
|
|
|
|
.insert_account(kp.secret().clone(), &"test".into())
|
|
|
|
.is_ok());
|
2018-04-14 21:35:58 +02:00
|
|
|
assert!(ap
|
|
|
|
.unlock_account_timed(kp.address(), "test1".into(), Duration::from_secs(60))
|
|
|
|
.is_err());
|
|
|
|
assert!(ap
|
|
|
|
.unlock_account_timed(kp.address(), "test".into(), Duration::from_secs(60))
|
|
|
|
.is_ok());
|
2016-10-15 14:44:08 +02:00
|
|
|
assert!(ap.sign(kp.address(), None, Default::default()).is_ok());
|
2017-01-30 11:44:09 +01:00
|
|
|
ap.unlocked
|
|
|
|
.write()
|
|
|
|
.get_mut(&StoreAccountRef::root(kp.address()))
|
|
|
|
.unwrap()
|
|
|
|
.unlock = Unlock::Timed(Instant::now());
|
2016-10-15 14:44:08 +02:00
|
|
|
assert!(ap.sign(kp.address(), None, Default::default()).is_err());
|
2016-08-05 23:33:14 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-11-30 13:47:14 +01:00
|
|
|
#[test]
|
|
|
|
fn should_sign_and_return_token() {
|
|
|
|
// given
|
2016-11-30 16:11:41 +01:00
|
|
|
let kp = Random.generate().unwrap();
|
2016-11-30 13:47:14 +01:00
|
|
|
let ap = AccountProvider::transient_provider();
|
2018-06-22 15:09:15 +02:00
|
|
|
assert!(ap
|
|
|
|
.insert_account(kp.secret().clone(), &"test".into())
|
|
|
|
.is_ok());
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-11-30 13:47:14 +01:00
|
|
|
// when
|
2016-11-30 15:08:38 +01:00
|
|
|
let (_signature, token) = ap
|
|
|
|
.sign_with_token(kp.address(), "test".into(), Default::default())
|
|
|
|
.unwrap();
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-11-30 15:08:38 +01:00
|
|
|
// then
|
|
|
|
ap.sign_with_token(kp.address(), token.clone(), Default::default())
|
|
|
|
.expect("First usage of token should be correct.");
|
|
|
|
assert!(
|
|
|
|
ap.sign_with_token(kp.address(), token, Default::default())
|
|
|
|
.is_err(),
|
|
|
|
"Second usage of the same token should fail."
|
|
|
|
);
|
2016-11-30 13:47:14 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-06-07 11:34:53 +02:00
|
|
|
#[test]
|
|
|
|
fn should_not_return_blacklisted_account() {
|
|
|
|
// given
|
|
|
|
let mut ap = AccountProvider::transient_provider();
|
2018-06-22 15:09:15 +02:00
|
|
|
let acc = ap.new_account(&"test".into()).unwrap();
|
2017-06-07 11:34:53 +02:00
|
|
|
ap.blacklisted_accounts = vec![acc];
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-06-07 11:34:53 +02:00
|
|
|
// then
|
|
|
|
assert_eq!(
|
|
|
|
ap.accounts_info()
|
|
|
|
.unwrap()
|
|
|
|
.keys()
|
|
|
|
.cloned()
|
|
|
|
.collect::<Vec<Address>>(),
|
|
|
|
vec![]
|
|
|
|
);
|
|
|
|
assert_eq!(ap.accounts().unwrap(), vec![]);
|
|
|
|
}
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|