2017-02-20 16:13:21 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
|
|
// 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-04-03 11:13:51 +02:00
|
|
|
extern crate byteorder;
|
2017-02-20 16:13:21 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
2017-04-03 11:13:51 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate futures;
|
|
|
|
extern crate futures_cpupool;
|
2017-02-20 16:13:21 +01:00
|
|
|
extern crate hyper;
|
2017-07-19 10:35:17 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
2017-02-20 16:13:21 +01:00
|
|
|
extern crate parking_lot;
|
2017-07-06 11:26:14 +02:00
|
|
|
extern crate rustc_hex;
|
2017-04-03 11:13:51 +02:00
|
|
|
extern crate serde;
|
|
|
|
extern crate serde_json;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
2017-04-08 11:26:16 +02:00
|
|
|
extern crate tokio_io;
|
2017-04-03 11:13:51 +02:00
|
|
|
extern crate tokio_core;
|
|
|
|
extern crate tokio_service;
|
|
|
|
extern crate tokio_proto;
|
2017-02-20 16:13:21 +01:00
|
|
|
extern crate url;
|
|
|
|
|
2017-04-03 17:46:51 +02:00
|
|
|
extern crate ethabi;
|
|
|
|
extern crate ethcore;
|
2017-02-20 16:13:21 +01:00
|
|
|
extern crate ethcore_devtools as devtools;
|
|
|
|
extern crate ethcore_util as util;
|
2017-09-04 16:36:49 +02:00
|
|
|
extern crate ethcore_bigint as bigint;
|
2017-02-20 16:13:21 +01:00
|
|
|
extern crate ethcore_ipc as ipc;
|
2017-04-25 21:34:03 +02:00
|
|
|
extern crate ethcore_logger as logger;
|
2017-02-20 16:13:21 +01:00
|
|
|
extern crate ethcrypto;
|
|
|
|
extern crate ethkey;
|
2017-04-03 17:46:51 +02:00
|
|
|
extern crate native_contracts;
|
2017-08-31 11:35:41 +02:00
|
|
|
extern crate hash;
|
2017-02-20 16:13:21 +01:00
|
|
|
|
2017-03-13 12:54:56 +01:00
|
|
|
mod key_server_cluster;
|
2017-02-20 16:13:21 +01:00
|
|
|
mod types;
|
|
|
|
|
|
|
|
mod traits {
|
|
|
|
#![allow(dead_code, unused_assignments, unused_variables, missing_docs)] // codegen issues
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/traits.rs"));
|
|
|
|
}
|
|
|
|
|
|
|
|
mod acl_storage;
|
|
|
|
mod http_listener;
|
|
|
|
mod key_server;
|
|
|
|
mod key_storage;
|
2017-04-03 11:13:51 +02:00
|
|
|
mod serialization;
|
2017-07-19 10:35:17 +02:00
|
|
|
mod key_server_set;
|
2017-07-25 08:24:54 +02:00
|
|
|
mod node_key_pair;
|
2017-02-20 16:13:21 +01:00
|
|
|
|
2017-04-03 17:46:51 +02:00
|
|
|
use std::sync::Arc;
|
|
|
|
use ethcore::client::Client;
|
|
|
|
|
2017-07-06 14:02:10 +02:00
|
|
|
pub use types::all::{ServerKeyId, EncryptedDocumentKey, RequestSignature, Public,
|
2017-04-25 21:34:03 +02:00
|
|
|
Error, NodeAddress, ServiceConfiguration, ClusterConfiguration};
|
2017-07-25 08:24:54 +02:00
|
|
|
pub use traits::{NodeKeyPair, KeyServer};
|
|
|
|
pub use self::node_key_pair::{PlainNodeKeyPair, KeyStoreNodeKeyPair};
|
2017-02-20 16:13:21 +01:00
|
|
|
|
|
|
|
/// Start new key server instance
|
2017-07-25 08:24:54 +02:00
|
|
|
pub fn start(client: Arc<Client>, self_key_pair: Arc<NodeKeyPair>, config: ServiceConfiguration) -> Result<Box<KeyServer>, Error> {
|
2017-04-03 11:13:51 +02:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
2017-07-27 14:48:07 +02:00
|
|
|
let acl_storage: Arc<acl_storage::AclStorage> = if config.acl_check_enabled {
|
|
|
|
acl_storage::OnChainAclStorage::new(&client)
|
|
|
|
} else {
|
|
|
|
Arc::new(acl_storage::DummyAclStorage::default())
|
|
|
|
};
|
2017-07-20 12:15:16 +02:00
|
|
|
let key_server_set = key_server_set::OnChainKeyServerSet::new(&client, config.cluster_config.nodes.clone())?;
|
2017-04-03 11:13:51 +02:00
|
|
|
let key_storage = Arc::new(key_storage::PersistentKeyStorage::new(&config)?);
|
2017-07-25 08:24:54 +02:00
|
|
|
let key_server = key_server::KeyServerImpl::new(&config.cluster_config, key_server_set, self_key_pair, acl_storage, key_storage)?;
|
2017-07-27 12:29:09 +02:00
|
|
|
let listener = http_listener::KeyServerHttpListener::start(config.listener_address, key_server)?;
|
2017-02-20 16:13:21 +01:00
|
|
|
Ok(Box::new(listener))
|
|
|
|
}
|