This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
core/authority-discovery: Enable authorities to discover each other (#…
…3452) With the *authority-discovery* module an authoritative node makes itself discoverable and is able to discover other authorities. Once discovered, a node can directly connect to other authorities instead of multi-hop gossiping information. 1. **Making itself discoverable** 1. Retrieve its external addresses 2. Adds its network peer id to the addresses 3. Sign the above 4. Put the signature and the addresses on the libp2p Kademlia DHT 2. **Discovering other authorities** 1. Retrieve the current set of authorities 2. Start DHT queries for the ids of the authorities 3. Validate the signatures of the retrieved key value pairs 4. Add the retrieved external addresses as ~reserved~ priority nodes to the peerset * node/runtime: Add authority-discovery as session handler The srml/authority-discovery module implements the OneSessionHandler in order to keep its authority set in sync. This commit adds the module to the set of session handlers. * core/network: Make network worker return Dht events on poll Instead of network worker implement the Future trait, have it implement the Stream interface returning Dht events. For now these events are ignored in build_network_future but will be used by the core/authority-discovery module in subsequent commits. * *: Add scaffolding and integration for core/authority-discovery module * core/authority-discovery: Implement module logic itself
- Loading branch information
1 parent
9ad3dc9
commit f85e797
Showing
19 changed files
with
1,041 additions
and
62 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[package] | ||
name = "substrate-authority-discovery" | ||
version = "2.0.0" | ||
authors = ["Parity Technologies <admin@parity.io>"] | ||
edition = "2018" | ||
build = "build.rs" | ||
|
||
[build-dependencies] | ||
prost-build = "0.5" | ||
|
||
[dependencies] | ||
authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", path = "./primitives", default-features = false } | ||
bytes = "0.4" | ||
client = { package = "substrate-client", path = "../../core/client" } | ||
codec = { package = "parity-scale-codec", default-features = false, version = "1.0.3" } | ||
derive_more = "0.14.0" | ||
futures = "0.1" | ||
keystore = { package = "substrate-keystore", path = "../../core/keystore" } | ||
libp2p = { version = "0.12.0", default-features = false, features = ["secp256k1", "libp2p-websocket"] } | ||
log = "0.4" | ||
network = { package = "substrate-network", path = "../../core/network" } | ||
primitives = { package = "substrate-primitives", path = "../primitives" } | ||
prost = "0.5" | ||
serde_json = "1.0" | ||
sr-primitives = { path = "../../core/sr-primitives" } | ||
tokio-timer = "0.2" | ||
|
||
[dev-dependencies] | ||
parking_lot = { version = "0.9.0" } | ||
peerset = { package = "substrate-peerset", path = "../../core/peerset" } | ||
test-client = { package = "substrate-test-runtime-client", path = "../../core/test-runtime/client" } | ||
tokio = { version = "0.1"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
fn main() { | ||
prost_build::compile_protos(&["src/schema/dht.proto"], &["src/schema"]).unwrap(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Copyright 2019 Parity Technologies (UK) Ltd. | ||
// This file is part of Substrate. | ||
|
||
// Substrate 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. | ||
|
||
// Substrate 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 Substrate. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
//! Authority discovery errors. | ||
/// AuthorityDiscovery Result. | ||
pub type Result<T> = std::result::Result<T, Error>; | ||
|
||
/// Error type for the authority discovery module. | ||
#[derive(Debug, derive_more::Display, derive_more::From)] | ||
pub enum Error { | ||
/// Failed to verify a dht payload with the given signature. | ||
VerifyingDhtPayload, | ||
/// Failed to hash the authority id to be used as a dht key. | ||
HashingAuthorityId(libp2p::core::multiaddr::multihash::EncodeError), | ||
/// Failed calling into the Substrate runtime. | ||
CallingRuntime(client::error::Error), | ||
/// Failed signing the dht payload via the Substrate runtime. | ||
SigningDhtPayload, | ||
/// From the Dht we only get the hashed authority id. In order to retrieve the actual authority id and to ensure it | ||
/// is actually an authority, we match the hash against the hash of the authority id of all other authorities. This | ||
/// error is the result of the above failing. | ||
MatchingHashedAuthorityIdWithAuthorityId, | ||
/// Failed to set the authority discovery peerset priority group in the peerset module. | ||
SettingPeersetPriorityGroup(String), | ||
/// Failed to encode a dht payload. | ||
Encoding(prost::EncodeError), | ||
/// Failed to decode a dht payload. | ||
Decoding(prost::DecodeError), | ||
/// Failed to parse a libp2p multi address. | ||
ParsingMultiaddress(libp2p::core::multiaddr::Error), | ||
/// Tokio timer error. | ||
PollingTokioTimer(tokio_timer::Error) | ||
} |
Oops, something went wrong.