2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2017-02-20 16:13:21 +01:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2017-02-20 16:13:21 +01: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.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is distributed in the hope that it will be useful,
|
2017-02-20 16:13:21 +01: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
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
2017-02-20 16:13:21 +01:00
|
|
|
|
2021-03-12 14:55:49 +01:00
|
|
|
use crate::{account_utils::AccountProvider, sync::SyncProvider};
|
2021-03-12 10:12:42 +01:00
|
|
|
use crypto::publickey::{Public, Secret};
|
2017-12-24 09:34:43 +01:00
|
|
|
use dir::{default_data_path, helpers::replace_home};
|
2017-04-03 17:46:51 +02:00
|
|
|
use ethcore::{client::Client, miner::Miner};
|
2018-01-10 13:35:18 +01:00
|
|
|
use ethereum_types::Address;
|
2021-03-12 10:12:42 +01:00
|
|
|
use ethkey::Password;
|
2018-11-25 18:36:43 +01:00
|
|
|
use parity_runtime::Executor;
|
2017-04-08 11:26:16 +02:00
|
|
|
use std::{collections::BTreeMap, sync::Arc};
|
2017-02-20 16:13:21 +01:00
|
|
|
|
2017-07-25 09:19:48 +02:00
|
|
|
/// This node secret key.
|
2017-11-24 10:33:33 +01:00
|
|
|
#[derive(Debug, PartialEq, Clone)]
|
2017-07-25 09:19:48 +02:00
|
|
|
pub enum NodeSecretKey {
|
|
|
|
/// Stored as plain text in configuration file.
|
|
|
|
Plain(Secret),
|
2017-07-25 15:30:24 +02:00
|
|
|
/// Stored as account in key store.
|
2019-02-07 14:34:24 +01:00
|
|
|
#[cfg(feature = "accounts")]
|
2017-07-25 15:30:24 +02:00
|
|
|
KeyStore(Address),
|
2017-07-25 09:19:48 +02:00
|
|
|
}
|
|
|
|
|
2017-11-24 10:33:33 +01:00
|
|
|
/// Secret store service contract address.
|
|
|
|
#[derive(Debug, PartialEq, Clone)]
|
|
|
|
pub enum ContractAddress {
|
|
|
|
/// Contract address is read from registry.
|
|
|
|
Registry,
|
|
|
|
/// Contract address is specified.
|
|
|
|
Address(Address),
|
|
|
|
}
|
|
|
|
|
2017-02-20 16:13:21 +01:00
|
|
|
#[derive(Debug, PartialEq, Clone)]
|
|
|
|
/// Secret store configuration
|
|
|
|
pub struct Configuration {
|
|
|
|
/// Is secret store functionality enabled?
|
|
|
|
pub enabled: bool,
|
2017-07-27 12:29:09 +02:00
|
|
|
/// Is HTTP API enabled?
|
|
|
|
pub http_enabled: bool,
|
2018-01-10 11:33:45 +01:00
|
|
|
/// Is auto migrate enabled.
|
|
|
|
pub auto_migrate_enabled: bool,
|
2018-06-14 09:01:52 +02:00
|
|
|
/// ACL check contract address.
|
|
|
|
pub acl_check_contract_address: Option<ContractAddress>,
|
2017-11-24 10:33:33 +01:00
|
|
|
/// Service contract address.
|
|
|
|
pub service_contract_address: Option<ContractAddress>,
|
2018-04-03 16:54:34 +02:00
|
|
|
/// Server key generation service contract address.
|
|
|
|
pub service_contract_srv_gen_address: Option<ContractAddress>,
|
|
|
|
/// Server key retrieval service contract address.
|
|
|
|
pub service_contract_srv_retr_address: Option<ContractAddress>,
|
|
|
|
/// Document key store service contract address.
|
|
|
|
pub service_contract_doc_store_address: Option<ContractAddress>,
|
|
|
|
/// Document key shadow retrieval service contract address.
|
|
|
|
pub service_contract_doc_sretr_address: Option<ContractAddress>,
|
2017-04-08 11:26:16 +02:00
|
|
|
/// This node secret.
|
2017-07-25 09:19:48 +02:00
|
|
|
pub self_secret: Option<NodeSecretKey>,
|
2017-04-08 11:26:16 +02:00
|
|
|
/// Other nodes IDs + addresses.
|
|
|
|
pub nodes: BTreeMap<Public, (String, u16)>,
|
2018-06-14 09:01:52 +02:00
|
|
|
/// Key Server Set contract address. If None, 'nodes' map is used.
|
|
|
|
pub key_server_set_contract_address: Option<ContractAddress>,
|
2017-02-20 16:13:21 +01:00
|
|
|
/// Interface to listen to
|
|
|
|
pub interface: String,
|
|
|
|
/// Port to listen to
|
|
|
|
pub port: u16,
|
2017-04-08 11:26:16 +02:00
|
|
|
/// Interface to listen to
|
|
|
|
pub http_interface: String,
|
|
|
|
/// Port to listen to
|
|
|
|
pub http_port: u16,
|
2017-02-20 16:13:21 +01:00
|
|
|
/// Data directory path for secret store
|
|
|
|
pub data_path: String,
|
2017-10-02 15:27:31 +02:00
|
|
|
/// Administrator public key.
|
|
|
|
pub admin_public: Option<Public>,
|
2017-02-20 16:13:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Secret store dependencies
|
2017-07-25 15:30:24 +02:00
|
|
|
pub struct Dependencies<'a> {
|
2017-04-03 17:46:51 +02:00
|
|
|
/// Blockchain client.
|
|
|
|
pub client: Arc<Client>,
|
2017-11-20 13:18:31 +01:00
|
|
|
/// Sync provider.
|
2020-07-29 10:36:15 +02:00
|
|
|
pub sync: Arc<dyn SyncProvider>,
|
2018-04-09 16:38:59 +02:00
|
|
|
/// Miner service.
|
|
|
|
pub miner: Arc<Miner>,
|
2017-07-25 15:30:24 +02:00
|
|
|
/// Account provider.
|
|
|
|
pub account_provider: Arc<AccountProvider>,
|
|
|
|
/// Passed accounts passwords.
|
2018-06-22 15:09:15 +02:00
|
|
|
pub accounts_passwords: &'a [Password],
|
2017-02-20 16:13:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "secretstore"))]
|
|
|
|
mod server {
|
2018-11-25 18:36:43 +01:00
|
|
|
use super::{Configuration, Dependencies, Executor};
|
2017-02-20 16:13:21 +01:00
|
|
|
|
|
|
|
/// Noop key server implementation
|
|
|
|
pub struct KeyServer;
|
|
|
|
|
|
|
|
impl KeyServer {
|
|
|
|
/// Create new noop key server
|
2018-11-25 18:36:43 +01:00
|
|
|
pub fn new(
|
|
|
|
_conf: Configuration,
|
|
|
|
_deps: Dependencies,
|
|
|
|
_executor: Executor,
|
|
|
|
) -> Result<Self, String> {
|
2017-02-20 16:13:21 +01:00
|
|
|
Ok(KeyServer)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2017-02-20 16:13:21 +01:00
|
|
|
}
|
|
|
|
|
2018-06-05 11:28:35 +02:00
|
|
|
#[cfg(feature = "secretstore")]
|
2017-02-20 16:13:21 +01:00
|
|
|
mod server {
|
2018-11-25 18:36:43 +01:00
|
|
|
use super::{Configuration, ContractAddress, Dependencies, Executor, NodeSecretKey};
|
2018-06-22 12:50:06 +02:00
|
|
|
use ansi_term::Colour::{Red, White};
|
2020-08-05 06:08:03 +02:00
|
|
|
use db;
|
2018-04-03 16:54:34 +02:00
|
|
|
use ethcore_secretstore;
|
2017-04-08 11:26:16 +02:00
|
|
|
use ethkey::KeyPair;
|
2017-07-25 08:56:23 +02:00
|
|
|
use std::sync::Arc;
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-04-03 16:54:34 +02:00
|
|
|
fn into_service_contract_address(
|
|
|
|
address: ContractAddress,
|
|
|
|
) -> ethcore_secretstore::ContractAddress {
|
|
|
|
match address {
|
|
|
|
ContractAddress::Registry => ethcore_secretstore::ContractAddress::Registry,
|
|
|
|
ContractAddress::Address(address) => {
|
|
|
|
ethcore_secretstore::ContractAddress::Address(address)
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2018-04-03 16:54:34 +02:00
|
|
|
}
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-20 16:13:21 +01:00
|
|
|
/// Key server
|
|
|
|
pub struct KeyServer {
|
2020-07-29 10:36:15 +02:00
|
|
|
_key_server: Box<dyn ethcore_secretstore::KeyServer>,
|
2017-02-20 16:13:21 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-20 16:13:21 +01:00
|
|
|
impl KeyServer {
|
|
|
|
/// Create new key server
|
2018-11-25 18:36:43 +01:00
|
|
|
pub fn new(
|
|
|
|
mut conf: Configuration,
|
|
|
|
deps: Dependencies,
|
|
|
|
executor: Executor,
|
|
|
|
) -> Result<Self, String> {
|
2020-07-29 10:36:15 +02:00
|
|
|
let self_secret: Arc<dyn ethcore_secretstore::NodeKeyPair> =
|
|
|
|
match conf.self_secret.take() {
|
|
|
|
Some(NodeSecretKey::Plain(secret)) => {
|
|
|
|
Arc::new(ethcore_secretstore::PlainNodeKeyPair::new(
|
|
|
|
KeyPair::from_secret(secret)
|
|
|
|
.map_err(|e| format!("invalid secret: {}", e))?,
|
|
|
|
))
|
2017-07-25 15:30:24 +02:00
|
|
|
}
|
2020-07-29 10:36:15 +02:00
|
|
|
#[cfg(feature = "accounts")]
|
|
|
|
Some(NodeSecretKey::KeyStore(account)) => {
|
|
|
|
// Check if account exists
|
|
|
|
if !deps.account_provider.has_account(account.clone()) {
|
|
|
|
return Err(format!(
|
|
|
|
"Account {} passed as secret store node key is not found",
|
|
|
|
account
|
|
|
|
));
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2020-07-29 10:36:15 +02:00
|
|
|
// Check if any passwords have been read from the password file(s)
|
|
|
|
if deps.accounts_passwords.is_empty() {
|
|
|
|
return Err(format!(
|
|
|
|
"No password found for the secret store node account {}",
|
2017-12-21 14:50:58 +01:00
|
|
|
account
|
2020-07-29 10:36:15 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to sign in the engine signer.
|
|
|
|
let password = deps
|
|
|
|
.accounts_passwords
|
|
|
|
.iter()
|
|
|
|
.find(|p| {
|
|
|
|
deps.account_provider
|
|
|
|
.sign(account.clone(), Some((*p).clone()), Default::default())
|
|
|
|
.is_ok()
|
|
|
|
})
|
|
|
|
.ok_or_else(|| {
|
|
|
|
format!(
|
|
|
|
"No valid password for the secret store node account {}",
|
|
|
|
account
|
|
|
|
)
|
|
|
|
})?;
|
|
|
|
Arc::new(
|
|
|
|
ethcore_secretstore::KeyStoreNodeKeyPair::new(
|
|
|
|
deps.account_provider,
|
|
|
|
account,
|
|
|
|
password.clone(),
|
2020-08-05 06:08:03 +02:00
|
|
|
)
|
2020-07-29 10:36:15 +02:00
|
|
|
.map_err(|e| format!("{}", e))?,
|
2017-07-25 15:30:24 +02:00
|
|
|
)
|
2020-07-29 10:36:15 +02:00
|
|
|
}
|
|
|
|
None => return Err("self secret is required when using secretstore".into()),
|
|
|
|
};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-06-22 12:50:06 +02:00
|
|
|
info!(
|
|
|
|
"Starting SecretStore node: {}",
|
|
|
|
White.bold().paint(format!("{:?}", self_secret.public()))
|
|
|
|
);
|
|
|
|
if conf.acl_check_contract_address.is_none() {
|
|
|
|
warn!(
|
|
|
|
"Running SecretStore with disabled ACL check: {}",
|
|
|
|
Red.bold().paint("everyone has access to stored keys")
|
|
|
|
);
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-07-27 10:33:09 +02:00
|
|
|
let key_server_name = format!("{}:{}", conf.interface, conf.port);
|
|
|
|
let mut cconf = ethcore_secretstore::ServiceConfiguration {
|
2017-07-27 12:29:09 +02:00
|
|
|
listener_address: if conf.http_enabled {
|
|
|
|
Some(ethcore_secretstore::NodeAddress {
|
2017-04-08 11:26:16 +02:00
|
|
|
address: conf.http_interface.clone(),
|
|
|
|
port: conf.http_port,
|
2017-07-27 12:29:09 +02:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
},
|
2018-04-03 16:54:34 +02:00
|
|
|
service_contract_address: conf
|
|
|
|
.service_contract_address
|
|
|
|
.map(into_service_contract_address),
|
|
|
|
service_contract_srv_gen_address: conf
|
|
|
|
.service_contract_srv_gen_address
|
|
|
|
.map(into_service_contract_address),
|
|
|
|
service_contract_srv_retr_address: conf
|
|
|
|
.service_contract_srv_retr_address
|
|
|
|
.map(into_service_contract_address),
|
|
|
|
service_contract_doc_store_address: conf
|
|
|
|
.service_contract_doc_store_address
|
|
|
|
.map(into_service_contract_address),
|
|
|
|
service_contract_doc_sretr_address: conf
|
|
|
|
.service_contract_doc_sretr_address
|
|
|
|
.map(into_service_contract_address),
|
2018-06-14 09:01:52 +02:00
|
|
|
acl_check_contract_address: conf
|
|
|
|
.acl_check_contract_address
|
|
|
|
.map(into_service_contract_address),
|
2017-04-03 11:13:51 +02:00
|
|
|
cluster_config: ethcore_secretstore::ClusterConfiguration {
|
|
|
|
listener_address: ethcore_secretstore::NodeAddress {
|
|
|
|
address: conf.interface.clone(),
|
2017-04-08 11:26:16 +02:00
|
|
|
port: conf.port,
|
2017-04-03 11:13:51 +02:00
|
|
|
},
|
2017-04-08 11:26:16 +02:00
|
|
|
nodes: conf
|
|
|
|
.nodes
|
|
|
|
.into_iter()
|
|
|
|
.map(|(p, (ip, port))| {
|
|
|
|
(
|
|
|
|
p,
|
|
|
|
ethcore_secretstore::NodeAddress {
|
|
|
|
address: ip,
|
|
|
|
port: port,
|
2020-08-05 06:08:03 +02:00
|
|
|
},
|
|
|
|
)
|
2017-04-08 11:26:16 +02:00
|
|
|
})
|
|
|
|
.collect(),
|
2018-06-14 09:01:52 +02:00
|
|
|
key_server_set_contract_address: conf
|
|
|
|
.key_server_set_contract_address
|
|
|
|
.map(into_service_contract_address),
|
2017-04-03 11:13:51 +02:00
|
|
|
allow_connecting_to_higher_nodes: true,
|
2017-10-02 15:27:31 +02:00
|
|
|
admin_public: conf.admin_public,
|
2018-01-10 11:33:45 +01:00
|
|
|
auto_migrate_enabled: conf.auto_migrate_enabled,
|
2017-04-08 11:26:16 +02:00
|
|
|
},
|
2017-02-20 16:13:21 +01:00
|
|
|
};
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-07-27 10:33:09 +02:00
|
|
|
cconf.cluster_config.nodes.insert(
|
|
|
|
self_secret.public().clone(),
|
|
|
|
cconf.cluster_config.listener_address.clone(),
|
|
|
|
);
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2018-04-13 21:14:53 +02:00
|
|
|
let db = db::open_secretstore_db(&conf.data_path)?;
|
2018-11-25 18:36:43 +01:00
|
|
|
let key_server = ethcore_secretstore::start(
|
|
|
|
deps.client,
|
|
|
|
deps.sync,
|
|
|
|
deps.miner,
|
|
|
|
self_secret,
|
|
|
|
cconf,
|
|
|
|
db,
|
|
|
|
executor,
|
|
|
|
)
|
2017-07-27 10:33:09 +02:00
|
|
|
.map_err(|e| format!("Error starting KeyServer {}: {}", key_server_name, e))?;
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-20 16:13:21 +01:00
|
|
|
Ok(KeyServer {
|
|
|
|
_key_server: key_server,
|
|
|
|
})
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2017-02-20 16:13:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub use self::server::KeyServer;
|
|
|
|
|
|
|
|
impl Default for Configuration {
|
|
|
|
fn default() -> Self {
|
|
|
|
let data_dir = default_data_path();
|
|
|
|
Configuration {
|
|
|
|
enabled: true,
|
2017-07-27 12:29:09 +02:00
|
|
|
http_enabled: true,
|
2018-01-10 11:33:45 +01:00
|
|
|
auto_migrate_enabled: true,
|
2018-06-14 09:01:52 +02:00
|
|
|
acl_check_contract_address: Some(ContractAddress::Registry),
|
2017-11-24 10:33:33 +01:00
|
|
|
service_contract_address: None,
|
2018-04-03 16:54:34 +02:00
|
|
|
service_contract_srv_gen_address: None,
|
|
|
|
service_contract_srv_retr_address: None,
|
|
|
|
service_contract_doc_store_address: None,
|
|
|
|
service_contract_doc_sretr_address: None,
|
2017-04-08 11:26:16 +02:00
|
|
|
self_secret: None,
|
2017-10-02 15:27:31 +02:00
|
|
|
admin_public: None,
|
2017-04-08 11:26:16 +02:00
|
|
|
nodes: BTreeMap::new(),
|
2018-06-14 09:01:52 +02:00
|
|
|
key_server_set_contract_address: Some(ContractAddress::Registry),
|
2017-02-20 16:13:21 +01:00
|
|
|
interface: "127.0.0.1".to_owned(),
|
2017-04-08 11:26:16 +02:00
|
|
|
port: 8083,
|
|
|
|
http_interface: "127.0.0.1".to_owned(),
|
|
|
|
http_port: 8082,
|
2017-02-20 16:13:21 +01:00
|
|
|
data_path: replace_home(&data_dir, "$BASE/secretstore"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Start secret store-related functionality
|
2018-11-25 18:36:43 +01:00
|
|
|
pub fn start(
|
|
|
|
conf: Configuration,
|
|
|
|
deps: Dependencies,
|
|
|
|
executor: Executor,
|
|
|
|
) -> Result<Option<KeyServer>, String> {
|
2017-02-20 16:13:21 +01:00
|
|
|
if !conf.enabled {
|
|
|
|
return Ok(None);
|
|
|
|
}
|
|
|
|
|
2018-11-25 18:36:43 +01:00
|
|
|
KeyServer::new(conf, deps, executor).map(|s| Some(s))
|
2017-02-20 16:13:21 +01:00
|
|
|
}
|