2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-06-20 10:06:49 +02:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
// Parity 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 General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
use std::collections::{BTreeMap, HashMap};
|
2016-07-31 10:44:17 +02:00
|
|
|
use std::mem;
|
2017-02-03 13:56:48 +01:00
|
|
|
use std::path::PathBuf;
|
2017-01-30 11:44:09 +01:00
|
|
|
use parking_lot::{Mutex, RwLock};
|
2016-12-09 10:45:34 +01:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
use crypto::KEY_ITERATIONS;
|
|
|
|
use random::Random;
|
2017-02-15 16:56:15 +01:00
|
|
|
use ethkey::{self, Signature, Address, Message, Secret, Public, KeyPair, ExtendedKeyPair};
|
2017-01-30 11:44:09 +01:00
|
|
|
use dir::{KeyDirectory, VaultKeyDirectory, VaultKey, SetKeyError};
|
2016-06-20 00:10:34 +02:00
|
|
|
use account::SafeAccount;
|
2016-08-10 17:57:40 +02:00
|
|
|
use presale::PresaleWallet;
|
2016-12-10 15:13:58 +01:00
|
|
|
use json::{self, Uuid};
|
2017-02-15 16:56:15 +01:00
|
|
|
use {import, Error, SimpleSecretStore, SecretStore, SecretVaultRef, StoreAccountRef, Derivation};
|
2016-06-20 00:10:34 +02:00
|
|
|
|
|
|
|
pub struct EthStore {
|
2016-11-30 15:08:38 +01:00
|
|
|
store: EthMultiStore,
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl EthStore {
|
|
|
|
pub fn open(directory: Box<KeyDirectory>) -> Result<Self, Error> {
|
|
|
|
Self::open_with_iterations(directory, KEY_ITERATIONS as u32)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn open_with_iterations(directory: Box<KeyDirectory>, iterations: u32) -> Result<Self, Error> {
|
2016-11-30 15:08:38 +01:00
|
|
|
Ok(EthStore {
|
2016-12-27 12:53:56 +01:00
|
|
|
store: EthMultiStore::open_with_iterations(directory, iterations)?,
|
2016-11-30 15:08:38 +01:00
|
|
|
})
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn get(&self, account: &StoreAccountRef) -> Result<SafeAccount, Error> {
|
|
|
|
let mut accounts = self.store.get(account)?.into_iter();
|
2016-11-30 15:08:38 +01:00
|
|
|
accounts.next().ok_or(Error::InvalidAccount)
|
|
|
|
}
|
|
|
|
}
|
2016-06-20 00:10:34 +02:00
|
|
|
|
2016-11-30 15:08:38 +01:00
|
|
|
impl SimpleSecretStore for EthStore {
|
2017-01-30 11:44:09 +01:00
|
|
|
fn insert_account(&self, vault: SecretVaultRef, secret: Secret, password: &str) -> Result<StoreAccountRef, Error> {
|
|
|
|
self.store.insert_account(vault, secret, password)
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
2016-07-31 10:44:17 +02:00
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
fn insert_derived(&self, vault: SecretVaultRef, account_ref: &StoreAccountRef, password: &str, derivation: Derivation)
|
|
|
|
-> Result<StoreAccountRef, Error>
|
|
|
|
{
|
|
|
|
self.store.insert_derived(vault, account_ref, password, derivation)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn generate_derived(&self, account_ref: &StoreAccountRef, password: &str, derivation: Derivation) -> Result<Address, Error> {
|
|
|
|
self.store.generate_derived(account_ref, password, derivation)
|
|
|
|
}
|
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
fn account_ref(&self, address: &Address) -> Result<StoreAccountRef, Error> {
|
|
|
|
self.store.account_ref(address)
|
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn accounts(&self) -> Result<Vec<StoreAccountRef>, Error> {
|
2016-11-30 15:08:38 +01:00
|
|
|
self.store.accounts()
|
2016-07-31 10:44:17 +02:00
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn change_password(&self, account: &StoreAccountRef, old_password: &str, new_password: &str) -> Result<(), Error> {
|
|
|
|
self.store.change_password(account, old_password, new_password)
|
2016-07-31 10:44:17 +02:00
|
|
|
}
|
2016-06-20 00:10:34 +02:00
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn remove_account(&self, account: &StoreAccountRef, password: &str) -> Result<(), Error> {
|
|
|
|
self.store.remove_account(account, password)
|
2016-11-30 15:08:38 +01:00
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn sign(&self, account: &StoreAccountRef, password: &str, message: &Message) -> Result<Signature, Error> {
|
2017-02-15 16:56:15 +01:00
|
|
|
self.get(account)?.sign(password, message)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn sign_derived(&self, account_ref: &StoreAccountRef, password: &str, derivation: Derivation, message: &Message)
|
|
|
|
-> Result<Signature, Error>
|
|
|
|
{
|
|
|
|
self.store.sign_derived(account_ref, password, derivation, message)
|
2016-11-30 15:08:38 +01:00
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn decrypt(&self, account: &StoreAccountRef, password: &str, shared_mac: &[u8], message: &[u8]) -> Result<Vec<u8>, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
let account = self.get(account)?;
|
2016-11-30 15:08:38 +01:00
|
|
|
account.decrypt(password, shared_mac, message)
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
2017-01-30 11:44:09 +01:00
|
|
|
|
|
|
|
fn create_vault(&self, name: &str, password: &str) -> Result<(), Error> {
|
|
|
|
self.store.create_vault(name, password)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn open_vault(&self, name: &str, password: &str) -> Result<(), Error> {
|
|
|
|
self.store.open_vault(name, password)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn close_vault(&self, name: &str) -> Result<(), Error> {
|
|
|
|
self.store.close_vault(name)
|
|
|
|
}
|
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
fn list_vaults(&self) -> Result<Vec<String>, Error> {
|
|
|
|
self.store.list_vaults()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn list_opened_vaults(&self) -> Result<Vec<String>, Error> {
|
|
|
|
self.store.list_opened_vaults()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn change_vault_password(&self, name: &str, new_password: &str) -> Result<(), Error> {
|
|
|
|
self.store.change_vault_password(name, new_password)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn change_account_vault(&self, vault: SecretVaultRef, account: StoreAccountRef) -> Result<StoreAccountRef, Error> {
|
|
|
|
self.store.change_account_vault(vault, account)
|
2017-01-30 11:44:09 +01:00
|
|
|
}
|
2017-02-08 13:53:39 +01:00
|
|
|
|
|
|
|
fn get_vault_meta(&self, name: &str) -> Result<String, Error> {
|
|
|
|
self.store.get_vault_meta(name)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_vault_meta(&self, name: &str, meta: &str) -> Result<(), Error> {
|
|
|
|
self.store.set_vault_meta(name, meta)
|
|
|
|
}
|
2016-11-30 15:08:38 +01:00
|
|
|
}
|
2016-06-20 00:10:34 +02:00
|
|
|
|
2016-11-30 15:08:38 +01:00
|
|
|
impl SecretStore for EthStore {
|
2017-01-30 11:44:09 +01:00
|
|
|
fn import_presale(&self, vault: SecretVaultRef, json: &[u8], password: &str) -> Result<StoreAccountRef, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
let json_wallet = json::PresaleWallet::load(json).map_err(|_| Error::InvalidKeyFile("Invalid JSON format".to_owned()))?;
|
2016-08-10 17:57:40 +02:00
|
|
|
let wallet = PresaleWallet::from(json_wallet);
|
2016-12-27 12:53:56 +01:00
|
|
|
let keypair = wallet.decrypt(password).map_err(|_| Error::InvalidPassword)?;
|
2017-01-30 11:44:09 +01:00
|
|
|
self.insert_account(vault, keypair.secret().clone(), password)
|
2016-08-10 17:57:40 +02:00
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn import_wallet(&self, vault: SecretVaultRef, json: &[u8], password: &str) -> Result<StoreAccountRef, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
let json_keyfile = json::KeyFile::load(json).map_err(|_| Error::InvalidKeyFile("Invalid JSON format".to_owned()))?;
|
2016-08-10 17:57:40 +02:00
|
|
|
let mut safe_account = SafeAccount::from_file(json_keyfile, None);
|
2016-12-27 12:53:56 +01:00
|
|
|
let secret = safe_account.crypto.secret(password).map_err(|_| Error::InvalidPassword)?;
|
|
|
|
safe_account.address = KeyPair::from_secret(secret)?.address();
|
2017-01-30 11:44:09 +01:00
|
|
|
self.store.import(vault, safe_account)
|
2016-08-10 17:57:40 +02:00
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn test_password(&self, account: &StoreAccountRef, password: &str) -> Result<bool, Error> {
|
|
|
|
let account = self.get(account)?;
|
2016-11-30 15:08:38 +01:00
|
|
|
Ok(account.check_password(password))
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn copy_account(&self, new_store: &SimpleSecretStore, new_vault: SecretVaultRef, account: &StoreAccountRef, password: &str, new_password: &str) -> Result<(), Error> {
|
|
|
|
let account = self.get(account)?;
|
2016-12-27 12:53:56 +01:00
|
|
|
let secret = account.crypto.secret(password)?;
|
2017-01-30 11:44:09 +01:00
|
|
|
new_store.insert_account(new_vault, secret, new_password)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn public(&self, account: &StoreAccountRef, password: &str) -> Result<Public, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
let account = self.get(account)?;
|
2016-10-15 14:44:08 +02:00
|
|
|
account.public(password)
|
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn uuid(&self, account: &StoreAccountRef) -> Result<Uuid, Error> {
|
|
|
|
let account = self.get(account)?;
|
2016-07-24 17:38:21 +02:00
|
|
|
Ok(account.id.into())
|
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn name(&self, account: &StoreAccountRef) -> Result<String, Error> {
|
|
|
|
let account = self.get(account)?;
|
2016-07-24 17:38:21 +02:00
|
|
|
Ok(account.name.clone())
|
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn meta(&self, account: &StoreAccountRef) -> Result<String, Error> {
|
|
|
|
let account = self.get(account)?;
|
2016-07-24 17:38:21 +02:00
|
|
|
Ok(account.meta.clone())
|
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn set_name(&self, account_ref: &StoreAccountRef, name: String) -> Result<(), Error> {
|
|
|
|
let old = self.get(account_ref)?;
|
|
|
|
let mut safe_account = old.clone();
|
|
|
|
safe_account.name = name;
|
2016-07-31 10:44:17 +02:00
|
|
|
|
2016-07-24 17:38:21 +02:00
|
|
|
// save to file
|
2017-01-30 11:44:09 +01:00
|
|
|
self.store.update(account_ref, old, safe_account)
|
2016-07-24 17:38:21 +02:00
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn set_meta(&self, account_ref: &StoreAccountRef, meta: String) -> Result<(), Error> {
|
|
|
|
let old = self.get(account_ref)?;
|
|
|
|
let mut safe_account = old.clone();
|
|
|
|
safe_account.meta = meta;
|
2016-07-31 10:44:17 +02:00
|
|
|
|
2016-07-24 17:38:21 +02:00
|
|
|
// save to file
|
2017-01-30 11:44:09 +01:00
|
|
|
self.store.update(account_ref, old, safe_account)
|
2016-07-24 17:38:21 +02:00
|
|
|
}
|
2016-08-11 18:31:28 +02:00
|
|
|
|
2017-02-03 13:56:48 +01:00
|
|
|
fn local_path(&self) -> PathBuf {
|
|
|
|
self.store.dir.path().cloned().unwrap_or_else(PathBuf::new)
|
2016-08-11 18:31:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn list_geth_accounts(&self, testnet: bool) -> Vec<Address> {
|
|
|
|
import::read_geth_accounts(testnet)
|
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn import_geth_accounts(&self, vault: SecretVaultRef, desired: Vec<Address>, testnet: bool) -> Result<Vec<StoreAccountRef>, Error> {
|
|
|
|
let imported_addresses = match vault {
|
|
|
|
SecretVaultRef::Root => import::import_geth_accounts(&*self.store.dir, desired.into_iter().collect(), testnet),
|
|
|
|
SecretVaultRef::Vault(vault_name) => {
|
|
|
|
if let Some(vault) = self.store.vaults.lock().get(&vault_name) {
|
|
|
|
import::import_geth_accounts(vault.as_key_directory(), desired.into_iter().collect(), testnet)
|
|
|
|
} else {
|
|
|
|
Err(Error::VaultNotFound)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
imported_addresses
|
|
|
|
.map(|a| a.into_iter().map(|a| StoreAccountRef::root(a)).collect())
|
2016-08-11 18:31:28 +02:00
|
|
|
}
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
2016-11-30 13:47:14 +01:00
|
|
|
|
|
|
|
/// Similar to `EthStore` but may store many accounts (with different passwords) for the same `Address`
|
|
|
|
pub struct EthMultiStore {
|
|
|
|
dir: Box<KeyDirectory>,
|
|
|
|
iterations: u32,
|
2017-01-30 11:44:09 +01:00
|
|
|
// order lock: cache, then vaults
|
|
|
|
cache: RwLock<BTreeMap<StoreAccountRef, Vec<SafeAccount>>>,
|
|
|
|
vaults: Mutex<HashMap<String, Box<VaultKeyDirectory>>>,
|
2016-11-30 13:47:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl EthMultiStore {
|
|
|
|
|
|
|
|
pub fn open(directory: Box<KeyDirectory>) -> Result<Self, Error> {
|
|
|
|
Self::open_with_iterations(directory, KEY_ITERATIONS as u32)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn open_with_iterations(directory: Box<KeyDirectory>, iterations: u32) -> Result<Self, Error> {
|
2016-11-30 15:08:38 +01:00
|
|
|
let store = EthMultiStore {
|
2016-11-30 13:47:14 +01:00
|
|
|
dir: directory,
|
2017-01-30 11:44:09 +01:00
|
|
|
vaults: Mutex::new(HashMap::new()),
|
2016-11-30 13:47:14 +01:00
|
|
|
iterations: iterations,
|
|
|
|
cache: Default::default(),
|
|
|
|
};
|
2016-12-27 12:53:56 +01:00
|
|
|
store.reload_accounts()?;
|
2016-11-30 13:47:14 +01:00
|
|
|
Ok(store)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reload_accounts(&self) -> Result<(), Error> {
|
|
|
|
let mut cache = self.cache.write();
|
|
|
|
|
|
|
|
let mut new_accounts = BTreeMap::new();
|
2017-01-30 11:44:09 +01:00
|
|
|
for account in self.dir.load()? {
|
|
|
|
let account_ref = StoreAccountRef::root(account.address);
|
|
|
|
new_accounts
|
|
|
|
.entry(account_ref)
|
|
|
|
.or_insert_with(Vec::new)
|
|
|
|
.push(account);
|
|
|
|
}
|
|
|
|
for (vault_name, vault) in &*self.vaults.lock() {
|
|
|
|
for account in vault.load()? {
|
|
|
|
let account_ref = StoreAccountRef::vault(vault_name, account.address);
|
|
|
|
new_accounts
|
|
|
|
.entry(account_ref)
|
|
|
|
.or_insert_with(Vec::new)
|
|
|
|
.push(account);
|
|
|
|
}
|
2016-11-30 13:47:14 +01:00
|
|
|
}
|
2017-01-30 11:44:09 +01:00
|
|
|
|
2016-11-30 13:47:14 +01:00
|
|
|
mem::replace(&mut *cache, new_accounts);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn get(&self, account: &StoreAccountRef) -> Result<Vec<SafeAccount>, Error> {
|
2016-11-30 13:47:14 +01:00
|
|
|
{
|
|
|
|
let cache = self.cache.read();
|
2017-01-30 11:44:09 +01:00
|
|
|
if let Some(accounts) = cache.get(account) {
|
2016-11-30 13:47:14 +01:00
|
|
|
if !accounts.is_empty() {
|
|
|
|
return Ok(accounts.clone())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-27 12:53:56 +01:00
|
|
|
self.reload_accounts()?;
|
2016-11-30 13:47:14 +01:00
|
|
|
let cache = self.cache.read();
|
2017-01-30 11:44:09 +01:00
|
|
|
let accounts = cache.get(account).ok_or(Error::InvalidAccount)?;
|
2016-11-30 13:47:14 +01:00
|
|
|
if accounts.is_empty() {
|
|
|
|
Err(Error::InvalidAccount)
|
|
|
|
} else {
|
2017-01-30 11:44:09 +01:00
|
|
|
Ok(accounts.clone())
|
2016-11-30 13:47:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn import(&self, vault: SecretVaultRef, account: SafeAccount) -> Result<StoreAccountRef, Error> {
|
2016-12-09 09:31:58 +01:00
|
|
|
// save to file
|
2017-01-30 11:44:09 +01:00
|
|
|
let account = match vault {
|
|
|
|
SecretVaultRef::Root => self.dir.insert(account)?,
|
|
|
|
SecretVaultRef::Vault(ref vault_name) => self.vaults.lock().get_mut(vault_name).ok_or(Error::VaultNotFound)?.insert(account)?,
|
|
|
|
};
|
2016-11-30 13:47:14 +01:00
|
|
|
|
|
|
|
// update cache
|
2017-01-30 11:44:09 +01:00
|
|
|
let account_ref = StoreAccountRef::new(vault, account.address.clone());
|
2016-11-30 13:47:14 +01:00
|
|
|
let mut cache = self.cache.write();
|
2017-01-30 11:44:09 +01:00
|
|
|
cache.entry(account_ref.clone())
|
|
|
|
.or_insert_with(Vec::new)
|
|
|
|
.push(account);
|
|
|
|
|
|
|
|
Ok(account_ref)
|
2016-11-30 13:47:14 +01:00
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn update(&self, account_ref: &StoreAccountRef, old: SafeAccount, new: SafeAccount) -> Result<(), Error> {
|
2016-12-09 09:31:58 +01:00
|
|
|
// save to file
|
2017-01-30 11:44:09 +01:00
|
|
|
let account = match account_ref.vault {
|
|
|
|
SecretVaultRef::Root => self.dir.update(new)?,
|
|
|
|
SecretVaultRef::Vault(ref vault_name) => self.vaults.lock().get_mut(vault_name).ok_or(Error::VaultNotFound)?.update(new)?,
|
|
|
|
};
|
2016-12-09 09:31:58 +01:00
|
|
|
|
|
|
|
// update cache
|
|
|
|
let mut cache = self.cache.write();
|
2017-01-30 11:44:09 +01:00
|
|
|
let mut accounts = cache.entry(account_ref.clone()).or_insert_with(Vec::new);
|
2016-12-09 09:31:58 +01:00
|
|
|
// Remove old account
|
|
|
|
accounts.retain(|acc| acc != &old);
|
|
|
|
// And push updated to the end
|
|
|
|
accounts.push(account);
|
|
|
|
Ok(())
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
fn remove_safe_account(&self, account_ref: &StoreAccountRef, account: &SafeAccount) -> Result<(), Error> {
|
|
|
|
// Remove from dir
|
|
|
|
match account_ref.vault {
|
|
|
|
SecretVaultRef::Root => self.dir.remove(&account)?,
|
|
|
|
SecretVaultRef::Vault(ref vault_name) => self.vaults.lock().get(vault_name).ok_or(Error::VaultNotFound)?.remove(&account)?,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Remove from cache
|
|
|
|
let mut cache = self.cache.write();
|
|
|
|
let is_empty = {
|
|
|
|
if let Some(accounts) = cache.get_mut(account_ref) {
|
|
|
|
if let Some(position) = accounts.iter().position(|acc| acc == account) {
|
|
|
|
accounts.remove(position);
|
|
|
|
}
|
|
|
|
accounts.is_empty()
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if is_empty {
|
|
|
|
cache.remove(account_ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Ok(());
|
|
|
|
}
|
2017-02-15 16:56:15 +01:00
|
|
|
|
|
|
|
fn generate(&self, secret: Secret, derivation: Derivation) -> Result<ExtendedKeyPair, Error> {
|
|
|
|
let mut extended = ExtendedKeyPair::new(secret);
|
|
|
|
match derivation {
|
|
|
|
Derivation::Hierarchical(path) => {
|
|
|
|
for path_item in path {
|
|
|
|
extended = extended.derive(
|
|
|
|
if path_item.soft { ethkey::Derivation::Soft(path_item.index) }
|
|
|
|
else { ethkey::Derivation::Hard(path_item.index) }
|
|
|
|
)?;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Derivation::SoftHash(h256) => { extended = extended.derive(ethkey::Derivation::Soft(h256))?; }
|
|
|
|
Derivation::HardHash(h256) => { extended = extended.derive(ethkey::Derivation::Hard(h256))?; }
|
|
|
|
}
|
|
|
|
Ok(extended)
|
|
|
|
}
|
2016-11-30 15:08:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl SimpleSecretStore for EthMultiStore {
|
2017-01-30 11:44:09 +01:00
|
|
|
fn insert_account(&self, vault: SecretVaultRef, secret: Secret, password: &str) -> Result<StoreAccountRef, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
let keypair = KeyPair::from_secret(secret).map_err(|_| Error::CreationFailed)?;
|
2016-11-30 15:08:38 +01:00
|
|
|
let id: [u8; 16] = Random::random();
|
|
|
|
let account = SafeAccount::create(&keypair, id, password, self.iterations, "".to_owned(), "{}".to_owned());
|
2017-01-30 11:44:09 +01:00
|
|
|
self.import(vault, account)
|
2016-11-30 15:08:38 +01:00
|
|
|
}
|
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
fn insert_derived(&self, vault: SecretVaultRef, account_ref: &StoreAccountRef, password: &str, derivation: Derivation)
|
|
|
|
-> Result<StoreAccountRef, Error>
|
|
|
|
{
|
|
|
|
let accounts = self.get(account_ref)?;
|
|
|
|
for account in accounts {
|
|
|
|
// Skip if password is invalid
|
|
|
|
if !account.check_password(password) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let extended = self.generate(account.crypto.secret(password)?, derivation)?;
|
|
|
|
return self.insert_account(vault, extended.secret().as_raw().clone(), password);
|
|
|
|
}
|
|
|
|
Err(Error::InvalidPassword)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn generate_derived(&self, account_ref: &StoreAccountRef, password: &str, derivation: Derivation)
|
|
|
|
-> Result<Address, Error>
|
|
|
|
{
|
|
|
|
let accounts = self.get(&account_ref)?;
|
|
|
|
for account in accounts {
|
|
|
|
// Skip if password is invalid
|
|
|
|
if !account.check_password(password) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let extended = self.generate(account.crypto.secret(password)?, derivation)?;
|
|
|
|
|
|
|
|
return Ok(ethkey::public_to_address(extended.public().public()));
|
|
|
|
}
|
|
|
|
Err(Error::InvalidPassword)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn sign_derived(&self, account_ref: &StoreAccountRef, password: &str, derivation: Derivation, message: &Message)
|
|
|
|
-> Result<Signature, Error>
|
|
|
|
{
|
|
|
|
let accounts = self.get(&account_ref)?;
|
|
|
|
for account in accounts {
|
|
|
|
// Skip if password is invalid
|
|
|
|
if !account.check_password(password) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let extended = self.generate(account.crypto.secret(password)?, derivation)?;
|
|
|
|
let secret = extended.secret().as_raw();
|
|
|
|
return Ok(ethkey::sign(&secret, message)?)
|
|
|
|
}
|
|
|
|
Err(Error::InvalidPassword)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
fn account_ref(&self, address: &Address) -> Result<StoreAccountRef, Error> {
|
|
|
|
self.reload_accounts()?;
|
|
|
|
self.cache.read().keys()
|
|
|
|
.find(|r| &r.address == address)
|
|
|
|
.cloned()
|
|
|
|
.ok_or(Error::InvalidAccount)
|
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn accounts(&self) -> Result<Vec<StoreAccountRef>, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
self.reload_accounts()?;
|
2016-11-30 15:08:38 +01:00
|
|
|
Ok(self.cache.read().keys().cloned().collect())
|
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn remove_account(&self, account_ref: &StoreAccountRef, password: &str) -> Result<(), Error> {
|
|
|
|
let accounts = self.get(account_ref)?;
|
2016-11-30 13:47:14 +01:00
|
|
|
|
|
|
|
for account in accounts {
|
|
|
|
// Skip if password is invalid
|
|
|
|
if !account.check_password(password) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
return self.remove_safe_account(account_ref, &account);
|
2016-11-30 13:47:14 +01:00
|
|
|
}
|
|
|
|
Err(Error::InvalidPassword)
|
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn change_password(&self, account_ref: &StoreAccountRef, old_password: &str, new_password: &str) -> Result<(), Error> {
|
2017-02-05 16:17:56 +01:00
|
|
|
let accounts = self.get(account_ref)?;
|
2017-01-30 11:44:09 +01:00
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
for account in accounts {
|
|
|
|
// Change password
|
|
|
|
let new_account = account.change_password(old_password, new_password, self.iterations)?;
|
|
|
|
self.update(account_ref, account, new_account)?;
|
2016-11-30 13:47:14 +01:00
|
|
|
}
|
2017-02-05 16:17:56 +01:00
|
|
|
Ok(())
|
2016-11-30 13:47:14 +01:00
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn sign(&self, account: &StoreAccountRef, password: &str, message: &Message) -> Result<Signature, Error> {
|
|
|
|
let accounts = self.get(account)?;
|
2016-11-30 13:47:14 +01:00
|
|
|
for account in accounts {
|
|
|
|
if account.check_password(password) {
|
|
|
|
return account.sign(password, message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Err(Error::InvalidPassword)
|
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
fn decrypt(&self, account: &StoreAccountRef, password: &str, shared_mac: &[u8], message: &[u8]) -> Result<Vec<u8>, Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
let accounts = self.get(account)?;
|
2016-11-30 13:47:14 +01:00
|
|
|
for account in accounts {
|
|
|
|
if account.check_password(password) {
|
|
|
|
return account.decrypt(password, shared_mac, message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(Error::InvalidPassword)
|
|
|
|
}
|
2017-01-30 11:44:09 +01:00
|
|
|
|
|
|
|
fn create_vault(&self, name: &str, password: &str) -> Result<(), Error> {
|
|
|
|
let is_vault_created = { // lock border
|
|
|
|
let mut vaults = self.vaults.lock();
|
|
|
|
if !vaults.contains_key(&name.to_owned()) {
|
|
|
|
let vault_provider = self.dir.as_vault_provider().ok_or(Error::VaultsAreNotSupported)?;
|
|
|
|
let vault = vault_provider.create(name, VaultKey::new(password, self.iterations))?;
|
|
|
|
vaults.insert(name.to_owned(), vault);
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if is_vault_created {
|
|
|
|
self.reload_accounts()?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn open_vault(&self, name: &str, password: &str) -> Result<(), Error> {
|
|
|
|
let is_vault_opened = { // lock border
|
|
|
|
let mut vaults = self.vaults.lock();
|
|
|
|
if !vaults.contains_key(&name.to_owned()) {
|
|
|
|
let vault_provider = self.dir.as_vault_provider().ok_or(Error::VaultsAreNotSupported)?;
|
|
|
|
let vault = vault_provider.open(name, VaultKey::new(password, self.iterations))?;
|
|
|
|
vaults.insert(name.to_owned(), vault);
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if is_vault_opened {
|
|
|
|
self.reload_accounts()?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn close_vault(&self, name: &str) -> Result<(), Error> {
|
|
|
|
let is_vault_removed = self.vaults.lock().remove(&name.to_owned()).is_some();
|
|
|
|
if is_vault_removed {
|
|
|
|
self.reload_accounts()?;
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-02-05 16:17:56 +01:00
|
|
|
fn list_vaults(&self) -> Result<Vec<String>, Error> {
|
|
|
|
let vault_provider = self.dir.as_vault_provider().ok_or(Error::VaultsAreNotSupported)?;
|
|
|
|
vault_provider.list_vaults()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn list_opened_vaults(&self) -> Result<Vec<String>, Error> {
|
|
|
|
Ok(self.vaults.lock().keys().cloned().collect())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn change_vault_password(&self, name: &str, new_password: &str) -> Result<(), Error> {
|
|
|
|
let old_key = self.vaults.lock().get(name).map(|v| v.key()).ok_or(Error::VaultNotFound)?;
|
2017-01-30 11:44:09 +01:00
|
|
|
let vault_provider = self.dir.as_vault_provider().ok_or(Error::VaultsAreNotSupported)?;
|
2017-02-05 16:17:56 +01:00
|
|
|
let vault = vault_provider.open(name, old_key)?;
|
|
|
|
match vault.set_key(VaultKey::new(new_password, self.iterations)) {
|
2017-01-30 11:44:09 +01:00
|
|
|
Ok(_) => {
|
|
|
|
self.close_vault(name)
|
|
|
|
.and_then(|_| self.open_vault(name, new_password))
|
|
|
|
},
|
|
|
|
Err(SetKeyError::Fatal(err)) => {
|
|
|
|
let _ = self.close_vault(name);
|
|
|
|
Err(err)
|
2017-02-05 16:17:56 +01:00
|
|
|
},
|
2017-01-30 11:44:09 +01:00
|
|
|
Err(SetKeyError::NonFatalNew(err)) => {
|
|
|
|
let _ = self.close_vault(name)
|
|
|
|
.and_then(|_| self.open_vault(name, new_password));
|
|
|
|
Err(err)
|
|
|
|
},
|
|
|
|
Err(SetKeyError::NonFatalOld(err)) => Err(err),
|
|
|
|
}
|
|
|
|
}
|
2017-02-05 16:17:56 +01:00
|
|
|
|
|
|
|
fn change_account_vault(&self, vault: SecretVaultRef, account_ref: StoreAccountRef) -> Result<StoreAccountRef, Error> {
|
|
|
|
if account_ref.vault == vault {
|
|
|
|
return Ok(account_ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
let account = self.get(&account_ref)?.into_iter().nth(0).ok_or(Error::InvalidAccount)?;
|
|
|
|
let new_account_ref = self.import(vault, account.clone())?;
|
|
|
|
self.remove_safe_account(&account_ref, &account)?;
|
|
|
|
self.reload_accounts()?;
|
|
|
|
Ok(new_account_ref)
|
|
|
|
}
|
2017-02-08 13:53:39 +01:00
|
|
|
|
|
|
|
fn get_vault_meta(&self, name: &str) -> Result<String, Error> {
|
2017-02-09 16:47:22 +01:00
|
|
|
// vault meta contains password hint
|
|
|
|
// => allow reading meta even if vault is not yet opened
|
2017-02-08 13:53:39 +01:00
|
|
|
self.vaults.lock()
|
|
|
|
.get(name)
|
2017-02-09 16:47:22 +01:00
|
|
|
.and_then(|v| Some(v.meta()))
|
2017-02-08 13:53:39 +01:00
|
|
|
.ok_or(Error::VaultNotFound)
|
2017-02-09 16:47:22 +01:00
|
|
|
.or_else(|_| {
|
|
|
|
let vault_provider = self.dir.as_vault_provider().ok_or(Error::VaultsAreNotSupported)?;
|
|
|
|
vault_provider.vault_meta(name)
|
|
|
|
})
|
2017-02-15 16:56:15 +01:00
|
|
|
|
2017-02-08 13:53:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn set_vault_meta(&self, name: &str, meta: &str) -> Result<(), Error> {
|
|
|
|
self.vaults.lock()
|
|
|
|
.get(name)
|
|
|
|
.ok_or(Error::VaultNotFound)
|
|
|
|
.and_then(|v| v.set_meta(meta))
|
|
|
|
}
|
2016-11-30 13:47:14 +01:00
|
|
|
}
|
|
|
|
|
2016-11-30 15:08:38 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2016-12-09 10:45:34 +01:00
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
use dir::{KeyDirectory, MemoryDirectory, RootDiskDirectory};
|
2016-12-09 10:45:34 +01:00
|
|
|
use ethkey::{Random, Generator, KeyPair};
|
2017-02-15 16:56:15 +01:00
|
|
|
use secret_store::{SimpleSecretStore, SecretStore, SecretVaultRef, StoreAccountRef, Derivation};
|
2016-12-09 10:45:34 +01:00
|
|
|
use super::{EthStore, EthMultiStore};
|
2017-02-05 16:17:56 +01:00
|
|
|
use devtools::RandomTempPath;
|
2017-02-15 16:56:15 +01:00
|
|
|
use util::H256;
|
2016-12-09 10:45:34 +01:00
|
|
|
|
|
|
|
fn keypair() -> KeyPair {
|
|
|
|
Random.generate().unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn store() -> EthStore {
|
|
|
|
EthStore::open(Box::new(MemoryDirectory::default())).expect("MemoryDirectory always load successfuly; qed")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn multi_store() -> EthMultiStore {
|
|
|
|
EthMultiStore::open(Box::new(MemoryDirectory::default())).expect("MemoryDirectory always load successfuly; qed")
|
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
struct RootDiskDirectoryGuard {
|
|
|
|
pub key_dir: Option<Box<KeyDirectory>>,
|
2017-02-05 16:17:56 +01:00
|
|
|
_path: RandomTempPath,
|
2017-01-30 11:44:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl RootDiskDirectoryGuard {
|
2017-02-05 16:17:56 +01:00
|
|
|
pub fn new() -> Self {
|
|
|
|
let temp_path = RandomTempPath::new();
|
|
|
|
let disk_dir = Box::new(RootDiskDirectory::create(temp_path.as_path()).unwrap());
|
2017-01-30 11:44:09 +01:00
|
|
|
|
|
|
|
RootDiskDirectoryGuard {
|
2017-02-05 16:17:56 +01:00
|
|
|
key_dir: Some(disk_dir),
|
|
|
|
_path: temp_path,
|
2017-01-30 11:44:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-09 10:45:34 +01:00
|
|
|
#[test]
|
|
|
|
fn should_insert_account_successfully() {
|
|
|
|
// given
|
|
|
|
let store = store();
|
|
|
|
let keypair = keypair();
|
|
|
|
|
|
|
|
// when
|
2017-01-30 11:44:09 +01:00
|
|
|
let address = store.insert_account(SecretVaultRef::Root, keypair.secret().clone(), "test").unwrap();
|
2016-12-09 10:45:34 +01:00
|
|
|
|
|
|
|
// then
|
2017-01-30 11:44:09 +01:00
|
|
|
assert_eq!(address, StoreAccountRef::root(keypair.address()));
|
2016-12-09 10:45:34 +01:00
|
|
|
assert!(store.get(&address).is_ok(), "Should contain account.");
|
|
|
|
assert_eq!(store.accounts().unwrap().len(), 1, "Should have one account.");
|
|
|
|
}
|
|
|
|
|
2016-11-30 16:41:37 +01:00
|
|
|
#[test]
|
2016-12-09 10:45:34 +01:00
|
|
|
fn should_update_meta_and_name() {
|
|
|
|
// given
|
|
|
|
let store = store();
|
|
|
|
let keypair = keypair();
|
2017-01-30 11:44:09 +01:00
|
|
|
let address = store.insert_account(SecretVaultRef::Root, keypair.secret().clone(), "test").unwrap();
|
2016-12-09 10:45:34 +01:00
|
|
|
assert_eq!(&store.meta(&address).unwrap(), "{}");
|
|
|
|
assert_eq!(&store.name(&address).unwrap(), "");
|
|
|
|
|
|
|
|
// when
|
|
|
|
store.set_meta(&address, "meta".into()).unwrap();
|
|
|
|
store.set_name(&address, "name".into()).unwrap();
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(&store.meta(&address).unwrap(), "meta");
|
|
|
|
assert_eq!(&store.name(&address).unwrap(), "name");
|
|
|
|
assert_eq!(store.accounts().unwrap().len(), 1);
|
2016-11-30 15:08:38 +01:00
|
|
|
}
|
2016-12-09 10:45:34 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_remove_account() {
|
|
|
|
// given
|
|
|
|
let store = store();
|
|
|
|
let keypair = keypair();
|
2017-01-30 11:44:09 +01:00
|
|
|
let address = store.insert_account(SecretVaultRef::Root, keypair.secret().clone(), "test").unwrap();
|
2016-12-09 10:45:34 +01:00
|
|
|
|
|
|
|
// when
|
|
|
|
store.remove_account(&address, "test").unwrap();
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(store.accounts().unwrap().len(), 0, "Should remove account.");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_return_true_if_password_is_correct() {
|
|
|
|
// given
|
|
|
|
let store = store();
|
|
|
|
let keypair = keypair();
|
2017-01-30 11:44:09 +01:00
|
|
|
let address = store.insert_account(SecretVaultRef::Root, keypair.secret().clone(), "test").unwrap();
|
2016-12-09 10:45:34 +01:00
|
|
|
|
|
|
|
// when
|
|
|
|
let res1 = store.test_password(&address, "x").unwrap();
|
|
|
|
let res2 = store.test_password(&address, "test").unwrap();
|
|
|
|
|
|
|
|
assert!(!res1, "First password should be invalid.");
|
|
|
|
assert!(res2, "Second password should be correct.");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn multistore_should_be_able_to_have_the_same_account_twice() {
|
|
|
|
// given
|
|
|
|
let store = multi_store();
|
|
|
|
let keypair = keypair();
|
2017-01-30 11:44:09 +01:00
|
|
|
let address = store.insert_account(SecretVaultRef::Root, keypair.secret().clone(), "test").unwrap();
|
|
|
|
let address2 = store.insert_account(SecretVaultRef::Root, keypair.secret().clone(), "xyz").unwrap();
|
2016-12-09 10:45:34 +01:00
|
|
|
assert_eq!(address, address2);
|
|
|
|
|
|
|
|
// when
|
|
|
|
assert!(store.remove_account(&address, "test").is_ok(), "First password should work.");
|
|
|
|
assert_eq!(store.accounts().unwrap().len(), 1);
|
|
|
|
|
|
|
|
assert!(store.remove_account(&address, "xyz").is_ok(), "Second password should work too.");
|
|
|
|
assert_eq!(store.accounts().unwrap().len(), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_copy_account() {
|
|
|
|
// given
|
|
|
|
let store = store();
|
|
|
|
let multi_store = multi_store();
|
|
|
|
let keypair = keypair();
|
2017-01-30 11:44:09 +01:00
|
|
|
let address = store.insert_account(SecretVaultRef::Root, keypair.secret().clone(), "test").unwrap();
|
2016-12-09 10:45:34 +01:00
|
|
|
assert_eq!(multi_store.accounts().unwrap().len(), 0);
|
|
|
|
|
|
|
|
// when
|
2017-01-30 11:44:09 +01:00
|
|
|
store.copy_account(&multi_store, SecretVaultRef::Root, &address, "test", "xyz").unwrap();
|
2016-12-09 10:45:34 +01:00
|
|
|
|
|
|
|
// then
|
|
|
|
assert!(store.test_password(&address, "test").unwrap(), "First password should work for store.");
|
|
|
|
assert!(multi_store.sign(&address, "xyz", &Default::default()).is_ok(), "Second password should work for second store.");
|
|
|
|
assert_eq!(multi_store.accounts().unwrap().len(), 1);
|
|
|
|
}
|
|
|
|
|
2017-01-30 11:44:09 +01:00
|
|
|
#[test]
|
|
|
|
fn should_create_and_open_vaults() {
|
|
|
|
// given
|
2017-02-05 16:17:56 +01:00
|
|
|
let mut dir = RootDiskDirectoryGuard::new();
|
2017-01-30 11:44:09 +01:00
|
|
|
let store = EthStore::open(dir.key_dir.take().unwrap()).unwrap();
|
|
|
|
let name1 = "vault1"; let password1 = "password1";
|
|
|
|
let name2 = "vault2"; let password2 = "password2";
|
|
|
|
let keypair1 = keypair();
|
|
|
|
let keypair2 = keypair();
|
|
|
|
let keypair3 = keypair(); let password3 = "password3";
|
|
|
|
|
|
|
|
// when
|
|
|
|
store.create_vault(name1, password1).unwrap();
|
|
|
|
store.create_vault(name2, password2).unwrap();
|
|
|
|
|
|
|
|
// then [can create vaults] ^^^
|
|
|
|
|
|
|
|
// and when
|
|
|
|
store.insert_account(SecretVaultRef::Vault(name1.to_owned()), keypair1.secret().clone(), password1).unwrap();
|
|
|
|
store.insert_account(SecretVaultRef::Vault(name2.to_owned()), keypair2.secret().clone(), password2).unwrap();
|
|
|
|
store.insert_account(SecretVaultRef::Root, keypair3.secret().clone(), password3).unwrap();
|
|
|
|
store.insert_account(SecretVaultRef::Vault("vault3".to_owned()), keypair1.secret().clone(), password3).unwrap_err();
|
|
|
|
let accounts = store.accounts().unwrap();
|
|
|
|
|
|
|
|
// then [can create accounts in vaults]
|
|
|
|
assert_eq!(accounts.len(), 3);
|
|
|
|
assert!(accounts.iter().any(|a| a.vault == SecretVaultRef::Root));
|
|
|
|
assert!(accounts.iter().any(|a| a.vault == SecretVaultRef::Vault(name1.to_owned())));
|
|
|
|
assert!(accounts.iter().any(|a| a.vault == SecretVaultRef::Vault(name2.to_owned())));
|
|
|
|
|
|
|
|
// and when
|
|
|
|
store.close_vault(name1).unwrap();
|
|
|
|
store.close_vault(name2).unwrap();
|
|
|
|
store.close_vault("vault3").unwrap();
|
|
|
|
let accounts = store.accounts().unwrap();
|
|
|
|
|
|
|
|
// then [can close vaults + accounts from vaults disappear]
|
|
|
|
assert_eq!(accounts.len(), 1);
|
|
|
|
assert!(accounts.iter().any(|a| a.vault == SecretVaultRef::Root));
|
|
|
|
|
|
|
|
// and when
|
|
|
|
store.open_vault(name1, password2).unwrap_err();
|
|
|
|
store.open_vault(name2, password1).unwrap_err();
|
|
|
|
store.open_vault(name1, password1).unwrap();
|
|
|
|
store.open_vault(name2, password2).unwrap();
|
|
|
|
let accounts = store.accounts().unwrap();
|
|
|
|
|
|
|
|
// then [can check vaults on open + can reopen vaults + accounts from vaults appear]
|
|
|
|
assert_eq!(accounts.len(), 3);
|
|
|
|
assert!(accounts.iter().any(|a| a.vault == SecretVaultRef::Root));
|
|
|
|
assert!(accounts.iter().any(|a| a.vault == SecretVaultRef::Vault(name1.to_owned())));
|
|
|
|
assert!(accounts.iter().any(|a| a.vault == SecretVaultRef::Vault(name2.to_owned())));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_move_vault_acounts() {
|
|
|
|
// given
|
2017-02-05 16:17:56 +01:00
|
|
|
let mut dir = RootDiskDirectoryGuard::new();
|
2017-01-30 11:44:09 +01:00
|
|
|
let store = EthStore::open(dir.key_dir.take().unwrap()).unwrap();
|
|
|
|
let name1 = "vault1"; let password1 = "password1";
|
|
|
|
let name2 = "vault2"; let password2 = "password2";
|
|
|
|
let password3 = "password3";
|
|
|
|
let keypair1 = keypair();
|
|
|
|
let keypair2 = keypair();
|
|
|
|
let keypair3 = keypair();
|
|
|
|
|
|
|
|
// when
|
|
|
|
store.create_vault(name1, password1).unwrap();
|
|
|
|
store.create_vault(name2, password2).unwrap();
|
|
|
|
let account1 = store.insert_account(SecretVaultRef::Vault(name1.to_owned()), keypair1.secret().clone(), password1).unwrap();
|
|
|
|
let account2 = store.insert_account(SecretVaultRef::Vault(name1.to_owned()), keypair2.secret().clone(), password1).unwrap();
|
|
|
|
let account3 = store.insert_account(SecretVaultRef::Root, keypair3.secret().clone(), password3).unwrap();
|
|
|
|
|
|
|
|
// then
|
2017-02-05 16:17:56 +01:00
|
|
|
let account1 = store.change_account_vault(SecretVaultRef::Root, account1.clone()).unwrap();
|
|
|
|
let account2 = store.change_account_vault(SecretVaultRef::Vault(name2.to_owned()), account2.clone()).unwrap();
|
|
|
|
let account3 = store.change_account_vault(SecretVaultRef::Vault(name2.to_owned()), account3).unwrap();
|
2017-01-30 11:44:09 +01:00
|
|
|
let accounts = store.accounts().unwrap();
|
|
|
|
assert_eq!(accounts.len(), 3);
|
|
|
|
assert!(accounts.iter().any(|a| a == &StoreAccountRef::root(account1.address.clone())));
|
|
|
|
assert!(accounts.iter().any(|a| a == &StoreAccountRef::vault(name2, account2.address.clone())));
|
|
|
|
assert!(accounts.iter().any(|a| a == &StoreAccountRef::vault(name2, account3.address.clone())));
|
2017-02-05 16:17:56 +01:00
|
|
|
|
|
|
|
// and then
|
|
|
|
assert_eq!(store.meta(&StoreAccountRef::root(account1.address)).unwrap(), r#"{}"#);
|
|
|
|
assert_eq!(store.meta(&StoreAccountRef::vault("vault2", account2.address)).unwrap(), r#"{"vault":"vault2"}"#);
|
|
|
|
assert_eq!(store.meta(&StoreAccountRef::vault("vault2", account3.address)).unwrap(), r#"{"vault":"vault2"}"#);
|
2017-01-30 11:44:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_not_remove_account_when_moving_to_self() {
|
|
|
|
// given
|
2017-02-05 16:17:56 +01:00
|
|
|
let mut dir = RootDiskDirectoryGuard::new();
|
2017-01-30 11:44:09 +01:00
|
|
|
let store = EthStore::open(dir.key_dir.take().unwrap()).unwrap();
|
|
|
|
let password1 = "password1";
|
|
|
|
let keypair1 = keypair();
|
|
|
|
|
|
|
|
// when
|
|
|
|
let account1 = store.insert_account(SecretVaultRef::Root, keypair1.secret().clone(), password1).unwrap();
|
2017-02-05 16:17:56 +01:00
|
|
|
store.change_account_vault(SecretVaultRef::Root, account1).unwrap();
|
2017-01-30 11:44:09 +01:00
|
|
|
|
|
|
|
// then
|
|
|
|
let accounts = store.accounts().unwrap();
|
|
|
|
assert_eq!(accounts.len(), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_remove_account_from_vault() {
|
|
|
|
// given
|
2017-02-05 16:17:56 +01:00
|
|
|
let mut dir = RootDiskDirectoryGuard::new();
|
2017-01-30 11:44:09 +01:00
|
|
|
let store = EthStore::open(dir.key_dir.take().unwrap()).unwrap();
|
|
|
|
let name1 = "vault1"; let password1 = "password1";
|
|
|
|
let keypair1 = keypair();
|
|
|
|
|
|
|
|
// when
|
|
|
|
store.create_vault(name1, password1).unwrap();
|
|
|
|
let account1 = store.insert_account(SecretVaultRef::Vault(name1.to_owned()), keypair1.secret().clone(), password1).unwrap();
|
|
|
|
assert_eq!(store.accounts().unwrap().len(), 1);
|
|
|
|
|
|
|
|
// then
|
|
|
|
store.remove_account(&account1, password1).unwrap();
|
|
|
|
assert_eq!(store.accounts().unwrap().len(), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_not_remove_account_from_vault_when_password_is_incorrect() {
|
|
|
|
// given
|
2017-02-05 16:17:56 +01:00
|
|
|
let mut dir = RootDiskDirectoryGuard::new();
|
2017-01-30 11:44:09 +01:00
|
|
|
let store = EthStore::open(dir.key_dir.take().unwrap()).unwrap();
|
|
|
|
let name1 = "vault1"; let password1 = "password1";
|
|
|
|
let password2 = "password2";
|
|
|
|
let keypair1 = keypair();
|
|
|
|
|
|
|
|
// when
|
|
|
|
store.create_vault(name1, password1).unwrap();
|
|
|
|
let account1 = store.insert_account(SecretVaultRef::Vault(name1.to_owned()), keypair1.secret().clone(), password1).unwrap();
|
|
|
|
assert_eq!(store.accounts().unwrap().len(), 1);
|
|
|
|
|
|
|
|
// then
|
|
|
|
store.remove_account(&account1, password2).unwrap_err();
|
|
|
|
assert_eq!(store.accounts().unwrap().len(), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_change_vault_password() {
|
|
|
|
// given
|
2017-02-05 16:17:56 +01:00
|
|
|
let mut dir = RootDiskDirectoryGuard::new();
|
2017-01-30 11:44:09 +01:00
|
|
|
let store = EthStore::open(dir.key_dir.take().unwrap()).unwrap();
|
|
|
|
let name = "vault"; let password = "password";
|
|
|
|
let keypair = keypair();
|
|
|
|
|
|
|
|
// when
|
|
|
|
store.create_vault(name, password).unwrap();
|
|
|
|
store.insert_account(SecretVaultRef::Vault(name.to_owned()), keypair.secret().clone(), password).unwrap();
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(store.accounts().unwrap().len(), 1);
|
|
|
|
let new_password = "new_password";
|
2017-02-05 16:17:56 +01:00
|
|
|
store.change_vault_password(name, new_password).unwrap();
|
2017-01-30 11:44:09 +01:00
|
|
|
assert_eq!(store.accounts().unwrap().len(), 1);
|
|
|
|
|
|
|
|
// and when
|
|
|
|
store.close_vault(name).unwrap();
|
|
|
|
|
|
|
|
// then
|
|
|
|
store.open_vault(name, new_password).unwrap();
|
|
|
|
assert_eq!(store.accounts().unwrap().len(), 1);
|
|
|
|
}
|
2017-02-05 16:17:56 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_have_different_passwords_for_vault_secret_and_meta() {
|
|
|
|
// given
|
|
|
|
let mut dir = RootDiskDirectoryGuard::new();
|
|
|
|
let store = EthStore::open(dir.key_dir.take().unwrap()).unwrap();
|
|
|
|
let name = "vault"; let password = "password";
|
|
|
|
let secret_password = "sec_password";
|
|
|
|
let keypair = keypair();
|
|
|
|
|
|
|
|
// when
|
|
|
|
store.create_vault(name, password).unwrap();
|
|
|
|
let account_ref = store.insert_account(SecretVaultRef::Vault(name.to_owned()), keypair.secret().clone(), secret_password).unwrap();
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(store.accounts().unwrap().len(), 1);
|
|
|
|
let new_secret_password = "new_sec_password";
|
|
|
|
store.change_password(&account_ref, secret_password, new_secret_password).unwrap();
|
|
|
|
assert_eq!(store.accounts().unwrap().len(), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_list_opened_vaults() {
|
|
|
|
// given
|
|
|
|
let mut dir = RootDiskDirectoryGuard::new();
|
|
|
|
let store = EthStore::open(dir.key_dir.take().unwrap()).unwrap();
|
|
|
|
let name1 = "vault1"; let password1 = "password1";
|
|
|
|
let name2 = "vault2"; let password2 = "password2";
|
|
|
|
let name3 = "vault3"; let password3 = "password3";
|
|
|
|
|
|
|
|
// when
|
|
|
|
store.create_vault(name1, password1).unwrap();
|
|
|
|
store.create_vault(name2, password2).unwrap();
|
|
|
|
store.create_vault(name3, password3).unwrap();
|
|
|
|
store.close_vault(name2).unwrap();
|
|
|
|
|
|
|
|
// then
|
|
|
|
let opened_vaults = store.list_opened_vaults().unwrap();
|
|
|
|
assert_eq!(opened_vaults.len(), 2);
|
|
|
|
assert!(opened_vaults.iter().any(|v| &*v == name1));
|
|
|
|
assert!(opened_vaults.iter().any(|v| &*v == name3));
|
|
|
|
}
|
2017-02-09 16:47:22 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_manage_vaults_meta() {
|
|
|
|
// given
|
|
|
|
let mut dir = RootDiskDirectoryGuard::new();
|
|
|
|
let store = EthStore::open(dir.key_dir.take().unwrap()).unwrap();
|
|
|
|
let name1 = "vault1"; let password1 = "password1";
|
|
|
|
|
|
|
|
// when
|
|
|
|
store.create_vault(name1, password1).unwrap();
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(store.get_vault_meta(name1).unwrap(), "{}".to_owned());
|
|
|
|
assert!(store.set_vault_meta(name1, "Hello, world!!!").is_ok());
|
|
|
|
assert_eq!(store.get_vault_meta(name1).unwrap(), "Hello, world!!!".to_owned());
|
|
|
|
|
|
|
|
// and when
|
|
|
|
store.close_vault(name1).unwrap();
|
|
|
|
store.open_vault(name1, password1).unwrap();
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(store.get_vault_meta(name1).unwrap(), "Hello, world!!!".to_owned());
|
|
|
|
|
|
|
|
// and when
|
|
|
|
store.close_vault(name1).unwrap();
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(store.get_vault_meta(name1).unwrap(), "Hello, world!!!".to_owned());
|
|
|
|
assert!(store.get_vault_meta("vault2").is_err());
|
|
|
|
}
|
2017-02-15 16:56:15 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_store_derived_keys() {
|
|
|
|
// given we have one account in the store
|
|
|
|
let store = store();
|
|
|
|
let keypair = keypair();
|
|
|
|
let address = store.insert_account(SecretVaultRef::Root, keypair.secret().clone(), "test").unwrap();
|
|
|
|
|
|
|
|
// when we deriving from that account
|
|
|
|
let derived = store.insert_derived(
|
|
|
|
SecretVaultRef::Root,
|
|
|
|
&address,
|
|
|
|
"test",
|
|
|
|
Derivation::HardHash(H256::from(0)),
|
|
|
|
).unwrap();
|
|
|
|
|
|
|
|
// there should be 2 accounts in the store
|
|
|
|
let accounts = store.accounts().unwrap();
|
|
|
|
assert_eq!(accounts.len(), 2);
|
|
|
|
|
|
|
|
// and we can sign with the derived contract
|
|
|
|
assert!(store.sign(&derived, "test", &Default::default()).is_ok(), "Second password should work for second store.");
|
|
|
|
}
|
2016-11-30 15:08:38 +01:00
|
|
|
}
|