BFT gossip (#106)

* CLI options and keystore integration

* Replace multiqueue with future::mpsc

* BFT gossip

* Revert to app_dirs

* generate_from_seed commented
This commit is contained in:
Arkadiy Paronyan
2018-04-03 18:06:34 +02:00
committed by Robert Habermeier
parent 5fad9efc0a
commit 3ec6d2dde6
19 changed files with 288 additions and 179 deletions
+4 -58
View File
@@ -18,7 +18,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "app_dirs" name = "app_dirs"
version = "1.1.1" version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [ dependencies = [
"ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -182,11 +182,6 @@ name = "constant_time_eq"
version = "0.1.3" version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "crossbeam"
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "crossbeam" name = "crossbeam"
version = "0.3.2" version = "0.3.2"
@@ -954,18 +949,6 @@ dependencies = [
"ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "multiqueue"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"crossbeam 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)",
"parking_lot 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"smallvec 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "net2" name = "net2"
version = "0.2.31" version = "0.2.31"
@@ -1010,11 +993,6 @@ dependencies = [
"winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "owning_ref"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "owning_ref" name = "owning_ref"
version = "0.3.3" version = "0.3.3"
@@ -1043,16 +1021,6 @@ dependencies = [
"rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "parking_lot"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"owning_ref 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
"parking_lot_core 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
"thread-id 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "parking_lot" name = "parking_lot"
version = "0.4.8" version = "0.4.8"
@@ -1144,7 +1112,7 @@ dependencies = [
name = "polkadot-cli" name = "polkadot-cli"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"app_dirs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.29.4 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.29.4 (registry+https://github.com/rust-lang/crates.io-index)",
"ed25519 0.1.0", "ed25519 0.1.0",
"env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1615,11 +1583,6 @@ name = "smallvec"
version = "0.2.1" version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "smallvec"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "smallvec" name = "smallvec"
version = "0.4.4" version = "0.4.4"
@@ -1680,9 +1643,9 @@ version = "0.1.0"
dependencies = [ dependencies = [
"ed25519 0.1.0", "ed25519 0.1.0",
"error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)",
"hex-literal 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex-literal 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
"multiqueue 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"parking_lot 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"substrate-bft 0.1.0", "substrate-bft 0.1.0",
"substrate-codec 0.1.0", "substrate-codec 0.1.0",
@@ -1757,7 +1720,6 @@ dependencies = [
"ethcore-network 1.9.0 (git+https://github.com/paritytech/parity.git)", "ethcore-network 1.9.0 (git+https://github.com/paritytech/parity.git)",
"futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
"multiqueue 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"parking_lot 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1953,16 +1915,6 @@ dependencies = [
"unicode-width 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "unicode-width 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "thread-id"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
"redox_syscall 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "thread_local" name = "thread_local"
version = "0.3.5" version = "0.3.5"
@@ -2256,7 +2208,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum aho-corasick 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d6531d44de723825aa81398a6415283229725a00fa30713812ab9323faa82fc4" "checksum aho-corasick 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d6531d44de723825aa81398a6415283229725a00fa30713812ab9323faa82fc4"
"checksum ansi_term 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6b3568b48b7cefa6b8ce125f9bb4989e52fbcc29ebea88df04cc7c5f12f70455" "checksum ansi_term 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6b3568b48b7cefa6b8ce125f9bb4989e52fbcc29ebea88df04cc7c5f12f70455"
"checksum ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "23ac7c30002a5accbf7e8987d0632fa6de155b7c3d39d0067317a391e00a2ef6" "checksum ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "23ac7c30002a5accbf7e8987d0632fa6de155b7c3d39d0067317a391e00a2ef6"
"checksum app_dirs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b7d1c0d48a81bbb13043847f957971f4d87c81542d80ece5e84ba3cba4058fd4" "checksum app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d"
"checksum arrayvec 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)" = "06f59fe10306bb78facd90d28c2038ad23ffaaefa85bac43c8a434cde383334f" "checksum arrayvec 0.3.25 (registry+https://github.com/rust-lang/crates.io-index)" = "06f59fe10306bb78facd90d28c2038ad23ffaaefa85bac43c8a434cde383334f"
"checksum arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef" "checksum arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef"
"checksum assert_matches 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9e772942dccdf11b368c31e044e4fca9189f80a773d2f0808379de65894cbf57" "checksum assert_matches 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9e772942dccdf11b368c31e044e4fca9189f80a773d2f0808379de65894cbf57"
@@ -2276,7 +2228,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum clap 2.29.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7b8f59bcebcfe4269b09f71dab0da15b355c75916a8f975d3876ce81561893ee" "checksum clap 2.29.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7b8f59bcebcfe4269b09f71dab0da15b355c75916a8f975d3876ce81561893ee"
"checksum coco 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c06169f5beb7e31c7c67ebf5540b8b472d23e3eade3b2ec7d1f5b504a85f91bd" "checksum coco 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c06169f5beb7e31c7c67ebf5540b8b472d23e3eade3b2ec7d1f5b504a85f91bd"
"checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e" "checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e"
"checksum crossbeam 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "bd66663db5a988098a89599d4857919b3acf7f61402e61365acfd3919857b9be"
"checksum crossbeam 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "24ce9782d4d5c53674646a6a4c1863a21a8fc0cb649b3c94dfc16e45071dea19" "checksum crossbeam 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "24ce9782d4d5c53674646a6a4c1863a21a8fc0cb649b3c94dfc16e45071dea19"
"checksum crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda" "checksum crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda"
"checksum difference 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b3304d19798a8e067e48d8e69b2c37f0b5e9b4e462504ad9e27e9f3fce02bba8" "checksum difference 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b3304d19798a8e067e48d8e69b2c37f0b5e9b4e462504ad9e27e9f3fce02bba8"
@@ -2348,18 +2299,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum mime 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e2e00e17be181010a91dbfefb01660b17311059dc8c7f48b9017677721e732bd" "checksum mime 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e2e00e17be181010a91dbfefb01660b17311059dc8c7f48b9017677721e732bd"
"checksum mio 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "7da01a5e23070d92d99b1ecd1cd0af36447c6fd44b0fe283c2db199fa136724f" "checksum mio 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "7da01a5e23070d92d99b1ecd1cd0af36447c6fd44b0fe283c2db199fa136724f"
"checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
"checksum multiqueue 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4059673f3516669cbf7ebb448cb37171559ed22e6d8bc79cf0cf9394cf9e73fd"
"checksum net2 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)" = "3a80f842784ef6c9a958b68b7516bc7e35883c614004dd94959a4dca1b716c09" "checksum net2 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)" = "3a80f842784ef6c9a958b68b7516bc7e35883c614004dd94959a4dca1b716c09"
"checksum nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2" "checksum nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2"
"checksum num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "9936036cc70fe4a8b2d338ab665900323290efb03983c86cbe235ae800ad8017" "checksum num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "9936036cc70fe4a8b2d338ab665900323290efb03983c86cbe235ae800ad8017"
"checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30" "checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30"
"checksum odds 0.2.26 (registry+https://github.com/rust-lang/crates.io-index)" = "4eae0151b9dacf24fcc170d9995e511669a082856a91f958a2fe380bfab3fb22" "checksum odds 0.2.26 (registry+https://github.com/rust-lang/crates.io-index)" = "4eae0151b9dacf24fcc170d9995e511669a082856a91f958a2fe380bfab3fb22"
"checksum ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c" "checksum ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c"
"checksum owning_ref 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "9d52571ddcb42e9c900c901a18d8d67e393df723fcd51dd59c5b1a85d0acb6cc"
"checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37" "checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37"
"checksum parity-wasm 0.15.4 (registry+https://github.com/rust-lang/crates.io-index)" = "235801e9531998c4bb307f4ea6833c9f40a4cf132895219ac8c2cd25a9b310f7" "checksum parity-wasm 0.15.4 (registry+https://github.com/rust-lang/crates.io-index)" = "235801e9531998c4bb307f4ea6833c9f40a4cf132895219ac8c2cd25a9b310f7"
"checksum parity-wordlist 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d0dec124478845b142f68b446cbee953d14d4b41f1bc0425024417720dce693" "checksum parity-wordlist 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d0dec124478845b142f68b446cbee953d14d4b41f1bc0425024417720dce693"
"checksum parking_lot 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "fa12d706797d42551663426a45e2db2e0364bd1dbf6aeada87e89c5f981f43e9"
"checksum parking_lot 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "149d8f5b97f3c1133e3cfcd8886449959e856b557ff281e292b733d7c69e005e" "checksum parking_lot 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "149d8f5b97f3c1133e3cfcd8886449959e856b557ff281e292b733d7c69e005e"
"checksum parking_lot 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3e7f7c9857874e54afeb950eebeae662b1e51a2493666d2ea4c0a5d91dcf0412" "checksum parking_lot 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3e7f7c9857874e54afeb950eebeae662b1e51a2493666d2ea4c0a5d91dcf0412"
"checksum parking_lot_core 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "9f35048d735bb93dd115a0030498785971aab3234d311fbe273d020084d26bd8" "checksum parking_lot_core 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "9f35048d735bb93dd115a0030498785971aab3234d311fbe273d020084d26bd8"
@@ -2404,7 +2352,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum slab 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17b4fcaed89ab08ef143da37bc52adbcc04d4a69014f4c1208d6b51f0c47bc23" "checksum slab 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17b4fcaed89ab08ef143da37bc52adbcc04d4a69014f4c1208d6b51f0c47bc23"
"checksum slab 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fdeff4cd9ecff59ec7e3744cbca73dfe5ac35c2aedb2cfba8a1c715a18912e9d" "checksum slab 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fdeff4cd9ecff59ec7e3744cbca73dfe5ac35c2aedb2cfba8a1c715a18912e9d"
"checksum smallvec 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4c8cbcd6df1e117c2210e13ab5109635ad68a929fcbb8964dc965b76cb5ee013" "checksum smallvec 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4c8cbcd6df1e117c2210e13ab5109635ad68a929fcbb8964dc965b76cb5ee013"
"checksum smallvec 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4f8266519bc1d17d0b5b16f6c21295625d562841c708f6376f49028a43e9c11e"
"checksum smallvec 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ee4f357e8cd37bf8822e1b964e96fd39e2cb5a0424f8aaa284ccaccc2162411c" "checksum smallvec 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ee4f357e8cd37bf8822e1b964e96fd39e2cb5a0424f8aaa284ccaccc2162411c"
"checksum smallvec 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44db0ecb22921ef790d17ae13a3f6d15784183ff5f2a01aa32098c7498d2b4b9" "checksum smallvec 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44db0ecb22921ef790d17ae13a3f6d15784183ff5f2a01aa32098c7498d2b4b9"
"checksum snappy 0.1.0 (git+https://github.com/paritytech/rust-snappy)" = "<none>" "checksum snappy 0.1.0 (git+https://github.com/paritytech/rust-snappy)" = "<none>"
@@ -2419,7 +2366,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum tempdir 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f73eebdb68c14bcb24aef74ea96079830e7fa7b31a6106e42ea7ee887c1e134e" "checksum tempdir 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f73eebdb68c14bcb24aef74ea96079830e7fa7b31a6106e42ea7ee887c1e134e"
"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" "checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096"
"checksum textwrap 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c0b59b6b4b44d867f1370ef1bd91bfb262bf07bf0ae65c202ea2fbc16153b693" "checksum textwrap 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c0b59b6b4b44d867f1370ef1bd91bfb262bf07bf0ae65c202ea2fbc16153b693"
"checksum thread-id 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2af4d6289a69a35c4d3aea737add39685f2784122c28119a7713165a63d68c9d"
"checksum thread_local 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "279ef31c19ededf577bfd12dfae728040a21f635b06a24cd670ff510edd38963" "checksum thread_local 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "279ef31c19ededf577bfd12dfae728040a21f635b06a24cd670ff510edd38963"
"checksum time 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "a15375f1df02096fb3317256ce2cee6a1f42fc84ea5ad5fc8c421cfe40c73098" "checksum time 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "a15375f1df02096fb3317256ce2cee6a1f42fc84ea5ad5fc8c421cfe40c73098"
"checksum tiny-keccak 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3e9241752647ca572f12c9b520a5d360d9099360c527770647e694001646a1d0" "checksum tiny-keccak 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3e9241752647ca572f12c9b520a5d360d9099360c527770647e694001646a1d0"
+1 -1
View File
@@ -12,7 +12,7 @@ log = "0.3"
hex-literal = "0.1" hex-literal = "0.1"
triehash = "0.1" triehash = "0.1"
ed25519 = { path = "../../substrate/ed25519" } ed25519 = { path = "../../substrate/ed25519" }
app_dirs = "1.1" app_dirs = "1.2"
substrate-client = { path = "../../substrate/client" } substrate-client = { path = "../../substrate/client" }
substrate-codec = { path = "../../substrate/codec" } substrate-codec = { path = "../../substrate/codec" }
substrate-runtime-io = { path = "../../substrate/runtime-io" } substrate-runtime-io = { path = "../../substrate/runtime-io" }
+39 -6
View File
@@ -4,15 +4,48 @@ about: Polkadot Node Rust Implementation
args: args:
- log: - log:
short: l short: l
long: log
value_name: LOG_PATTERN value_name: LOG_PATTERN
help: Sets a custom logging filter help: Sets a custom logging filter
takes_value: true takes_value: true
- keystore-path: - base-path:
value_name: KEYSTORE_PATH long: base-path
help: specify custom keystore path short: d
value_name: PATH
help: Specify custom base path
takes_value: true
- keystore-path:
long: keystore-path
value_name: PATH
help: Specify custom keystore path
takes_value: true
- key:
long: key
value_name: STRING
help: Specify additional key seed
takes_value: true takes_value: true
subcommands:
- collator: - collator:
about: Run collator node long: collator
help: Enable collator mode
takes_value: false
- validator: - validator:
about: Run validator node long: validator
help: Enable validator mode
takes_value: false
- port:
long: port
value_name: PORT
help: Specify p2p protocol TCP port
takes_value: true
- rpc-port:
long: rpc-port
value_name: PORT
help: Specify RPC server TCP port
takes_value: true
- bootnodes:
long: bootnodes
value_name: URL
help: Specify a list of bootnodes
takes_value: true
multiple: true
subcommands:
+49 -12
View File
@@ -42,6 +42,7 @@ extern crate log;
pub mod error; pub mod error;
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
use std::net::SocketAddr;
/// Parse command line arguments and start the node. /// Parse command line arguments and start the node.
/// ///
@@ -56,7 +57,15 @@ pub fn run<I, T>(args: I) -> error::Result<()> where
T: Into<std::ffi::OsString> + Clone, T: Into<std::ffi::OsString> + Clone,
{ {
let yaml = load_yaml!("./cli.yml"); let yaml = load_yaml!("./cli.yml");
let matches = clap::App::from_yaml(yaml).version(crate_version!()).get_matches_from_safe(args)?; let matches = match clap::App::from_yaml(yaml).version(crate_version!()).get_matches_from_safe(args) {
Ok(m) => m,
Err(ref e) if e.kind == clap::ErrorKind::VersionDisplayed => return Ok(()),
Err(ref e) if e.kind == clap::ErrorKind::HelpDisplayed || e.kind == clap::ErrorKind::VersionDisplayed => {
let _ = clap::App::from_yaml(yaml).print_long_help();
return Ok(());
}
Err(e) => return Err(e.into()),
};
// TODO [ToDr] Split parameters parsing from actual execution. // TODO [ToDr] Split parameters parsing from actual execution.
let log_pattern = matches.value_of("log").unwrap_or(""); let log_pattern = matches.value_of("log").unwrap_or("");
@@ -64,38 +73,68 @@ pub fn run<I, T>(args: I) -> error::Result<()> where
let mut config = service::Configuration::default(); let mut config = service::Configuration::default();
let base_path = matches.value_of("base-path")
.map(|x| Path::new(x).to_owned())
.unwrap_or_else(default_base_path);
config.keystore_path = matches.value_of("keystore") config.keystore_path = matches.value_of("keystore")
.map(|x| Path::new(x).to_owned()) .map(|x| Path::new(x).to_owned())
.unwrap_or_else(default_keystore_path) .unwrap_or_else(|| keystore_path(&base_path))
.to_string_lossy() .to_string_lossy()
.into(); .into();
let mut role = service::Role::FULL; let mut role = service::Role::FULL;
if let Some(_) = matches.subcommand_matches("collator") { if matches.is_present("collator") {
info!("Starting collator."); info!("Starting collator.");
role = service::Role::COLLATOR; role = service::Role::COLLATOR;
} }
else if let Some(_) = matches.subcommand_matches("validator") { else if matches.is_present("validator") {
info!("Starting validator."); info!("Starting validator.");
role = service::Role::VALIDATOR; role = service::Role::VALIDATOR;
} }
config.roles = role; config.roles = role;
config.network.boot_nodes = matches
.values_of("bootnodes")
.map_or(Default::default(), |v| v.map(|n| n.to_owned()).collect());
config.network.config_path = Some(network_path(&base_path).to_string_lossy().into());
config.network.net_config_path = config.network.config_path.clone();
let port = match matches.value_of("port") {
Some(port) => port.parse().expect("Invalid p2p port value specified."),
None => 30333,
};
config.network.listen_address = Some(SocketAddr::new("0.0.0.0".parse().unwrap(), port));
config.keys = matches.values_of("key").unwrap_or_default().map(str::to_owned).collect();
let service = service::Service::new(config)?; let service = service::Service::new(config)?;
let address = "127.0.0.1:9933".parse().unwrap(); let mut address: SocketAddr = "127.0.0.1:9933".parse().unwrap();
if let Some(port) = matches.value_of("rpc-port") {
let rpc_port: u16 = port.parse().expect("Invalid RPC port value specified.");
address.set_port(rpc_port);
}
let handler = rpc::rpc_handler(service.client()); let handler = rpc::rpc_handler(service.client());
let server = rpc::start_http(&address, handler)?; let server = rpc::start_http(&address, handler)?;
server.wait(); server.wait();
println!("No command given.\n");
let _ = clap::App::from_yaml(yaml).print_long_help();
Ok(()) Ok(())
} }
fn default_keystore_path() -> PathBuf { fn keystore_path(base_path: &Path) -> PathBuf {
let mut path = base_path.to_owned();
path.push("keystore");
path
}
fn network_path(base_path: &Path) -> PathBuf {
let mut path = base_path.to_owned();
path.push("network");
path
}
fn default_base_path() -> PathBuf {
use app_dirs::{AppInfo, AppDataType}; use app_dirs::{AppInfo, AppDataType};
let app_info = AppInfo { let app_info = AppInfo {
@@ -103,13 +142,11 @@ fn default_keystore_path() -> PathBuf {
author: "Parity Technologies", author: "Parity Technologies",
}; };
app_dirs::get_app_dir( app_dirs::get_app_root(
AppDataType::UserData, AppDataType::UserData,
&app_info, &app_info,
"keystore",
).expect("app directories exist on all supported platforms; qed") ).expect("app directories exist on all supported platforms; qed")
} }
fn init_logger(pattern: &str) { fn init_logger(pattern: &str) {
let mut builder = env_logger::LogBuilder::new(); let mut builder = env_logger::LogBuilder::new();
// Disable info logging by default for some modules: // Disable info logging by default for some modules:
+7 -4
View File
@@ -26,7 +26,6 @@ use parking_lot::Mutex;
use substrate_network as net; use substrate_network as net;
use tokio_core::reactor; use tokio_core::reactor;
use client::BlockchainEvents; use client::BlockchainEvents;
use substrate_keyring::Keyring;
use primitives::{Hash, AuthorityId}; use primitives::{Hash, AuthorityId};
use primitives::block::{Id as BlockId, HeaderHash, Header}; use primitives::block::{Id as BlockId, HeaderHash, Header};
use polkadot_primitives::parachain::{BlockData, Extrinsic, CandidateReceipt}; use polkadot_primitives::parachain::{BlockData, Extrinsic, CandidateReceipt};
@@ -136,14 +135,18 @@ struct Network(Arc<net::ConsensusService>);
impl Service { impl Service {
/// Create and start a new instance. /// Create and start a new instance.
pub fn new<C>(client: Arc<C>, network: Arc<net::ConsensusService>, transaction_pool: Arc<Mutex<TransactionPool>>, best_header: &Header) -> Service pub fn new<C>(
client: Arc<C>,
network: Arc<net::ConsensusService>,
transaction_pool: Arc<Mutex<TransactionPool>>,
key: ed25519::Pair,
best_header: &Header) -> Service
where C: BlockchainEvents + bft::BlockImport + bft::Authorities + PolkadotApi + Send + Sync + 'static where C: BlockchainEvents + bft::BlockImport + bft::Authorities + PolkadotApi + Send + Sync + 'static
{ {
let best_header = best_header.clone(); let best_header = best_header.clone();
let thread = thread::spawn(move || { let thread = thread::spawn(move || {
let mut core = reactor::Core::new().expect("tokio::Core could not be created"); let mut core = reactor::Core::new().expect("tokio::Core could not be created");
let key = Arc::new(Keyring::One.into()); let key = Arc::new(key);
let factory = ProposerFactory { let factory = ProposerFactory {
client: client.clone(), client: client.clone(),
transaction_pool: transaction_pool.clone(), transaction_pool: transaction_pool.clone(),
+22 -2
View File
@@ -33,6 +33,7 @@ extern crate error_chain;
#[cfg(test)] #[cfg(test)]
extern crate tempdir; extern crate tempdir;
use std::collections::HashMap;
use std::path::PathBuf; use std::path::PathBuf;
use std::fs::{self, File}; use std::fs::{self, File};
use std::io::{self, Write}; use std::io::{self, Write};
@@ -120,16 +121,19 @@ impl EncryptedKey {
} }
} }
type Seed = [u8; 32];
/// Key store. /// Key store.
pub struct Store { pub struct Store {
path: PathBuf, path: PathBuf,
additional: HashMap<Public, Seed>,
} }
impl Store { impl Store {
/// Create a new store at the given path. /// Create a new store at the given path.
pub fn open(path: PathBuf) -> Result<Self> { pub fn open(path: PathBuf) -> Result<Self> {
fs::create_dir_all(&path)?; fs::create_dir_all(&path)?;
Ok(Store { path }) Ok(Store { path, additional: HashMap::new() })
} }
/// Generate a new key, placing it into the store. /// Generate a new key, placing it into the store.
@@ -145,8 +149,24 @@ impl Store {
Ok(pair) Ok(pair)
} }
/// Create a new key from seed. Do not place it into the store.
/// Only the first 32 bytes of the sead are used. This is meant to be used for testing only.
// TODO: Remove this
pub fn generate_from_seed(&mut self, seed: &str) -> Result<Pair> {
let mut s: [u8; 32] = [' ' as u8; 32];
let len = ::std::cmp::min(32, seed.len());
&mut s[..len].copy_from_slice(&seed.as_bytes()[..len]);
let pair = Pair::from_seed(&s);
self.additional.insert(pair.public(), s);
Ok(pair)
}
/// Load a key file with given public key. /// Load a key file with given public key.
pub fn load(&self, public: &Public, password: &str) -> Result<Pair> { pub fn load(&self, public: &Public, password: &str) -> Result<Pair> {
if let Some(ref seed) = self.additional.get(public) {
let pair = Pair::from_seed(seed);
return Ok(pair);
}
let path = self.key_file_path(public); let path = self.key_file_path(public);
let file = File::open(path)?; let file = File::open(path)?;
@@ -158,7 +178,7 @@ impl Store {
/// Get public keys of all stored keys. /// Get public keys of all stored keys.
pub fn contents(&self) -> Result<Vec<Public>> { pub fn contents(&self) -> Result<Vec<Public>> {
let mut public_keys = Vec::new(); let mut public_keys: Vec<Public> = self.additional.keys().cloned().collect();
for entry in fs::read_dir(&self.path)? { for entry in fs::read_dir(&self.path)? {
let entry = entry?; let entry = entry?;
let path = entry.path(); let path = entry.path();
+3 -1
View File
@@ -30,7 +30,8 @@ pub struct Configuration {
pub network: NetworkConfiguration, pub network: NetworkConfiguration,
/// Path to key files. /// Path to key files.
pub keystore_path: String, pub keystore_path: String,
// TODO: add more network, client, tx pool configuration options /// Additional key seeds.
pub keys: Vec<String>,
} }
impl Default for Configuration { impl Default for Configuration {
@@ -40,6 +41,7 @@ impl Default for Configuration {
transaction_pool: Default::default(), transaction_pool: Default::default(),
network: Default::default(), network: Default::default(),
keystore_path: Default::default(), keystore_path: Default::default(),
keys: Default::default(),
} }
} }
} }
+2 -5
View File
@@ -18,18 +18,15 @@
use client; use client;
use network; use network;
use keystore;
error_chain! { error_chain! {
links { links {
Client(client::error::Error, client::error::ErrorKind) #[doc="Client error"]; Client(client::error::Error, client::error::ErrorKind) #[doc="Client error"];
Network(network::error::Error, network::error::ErrorKind) #[doc="Network error"]; Network(network::error::Error, network::error::ErrorKind) #[doc="Network error"];
Keystore(keystore::Error, keystore::ErrorKind) #[doc="Keystore error"];
} }
errors { errors {
/// Key store errors
Keystore(e: ::keystore::Error) {
description("Keystore error"),
display("Keystore error: {:?}", e),
}
} }
} }
+23 -7
View File
@@ -56,7 +56,6 @@ use transaction_pool::TransactionPool;
use substrate_keyring::Keyring; use substrate_keyring::Keyring;
use substrate_executor::NativeExecutor; use substrate_executor::NativeExecutor;
use polkadot_executor::Executor as LocalDispatch; use polkadot_executor::Executor as LocalDispatch;
use polkadot_primitives::AccountId;
use keystore::Store as Keystore; use keystore::Store as Keystore;
use polkadot_api::PolkadotApi; use polkadot_api::PolkadotApi;
use polkadot_runtime::genesismap::{additional_storage_with_genesis, GenesisConfig}; use polkadot_runtime::genesismap::{additional_storage_with_genesis, GenesisConfig};
@@ -126,12 +125,27 @@ impl Service {
// Create client // Create client
let executor = polkadot_executor::Executor::new(); let executor = polkadot_executor::Executor::new();
let mut storage = Default::default(); let mut storage = Default::default();
let key: AccountId = Keyring::One.into();
let mut keystore = Keystore::open(config.keystore_path.into())?;
for seed in &config.keys {
keystore.generate_from_seed(seed)?;
}
if keystore.contents()?.is_empty() {
let key = keystore.generate("")?;
info!("Generated a new keypair: {:?}", key.public());
}
let genesis_config = GenesisConfig { let genesis_config = GenesisConfig {
validators: vec![key.clone()], validators: vec![Keyring::Alice.into(), Keyring::Bob.into(), Keyring::Charlie.into()],
authorities: vec![key.clone()], authorities: vec![Keyring::Alice.into(), Keyring::Bob.into(), Keyring::Charlie.into()],
balances: vec![(Keyring::One.into(), 1u64 << 63), (Keyring::Two.into(), 1u64 << 63)].into_iter().collect(), balances: vec![
(Keyring::One.into(), 1u64 << 63),
(Keyring::Two.into(), 1u64 << 63),
(Keyring::Alice.into(), 1u64 << 63),
(Keyring::Bob.into(), 1u64 << 63),
(Keyring::Charlie.into(), 1u64 << 63),
].into_iter().collect(),
block_time: 5, // 5 second block time. block_time: 5, // 5 second block time.
session_length: 720, // that's 1 hour per session. session_length: 720, // that's 1 hour per session.
sessions_per_era: 24, // 24 hours per era. sessions_per_era: 24, // 24 hours per era.
@@ -145,7 +159,6 @@ impl Service {
(primitives::block::Header::decode(&mut block.header.encode().as_ref()).expect("to_vec() always gives a valid serialisation; qed"), storage.into_iter().collect()) (primitives::block::Header::decode(&mut block.header.encode().as_ref()).expect("to_vec() always gives a valid serialisation; qed"), storage.into_iter().collect())
}; };
let _keystore = Keystore::open(config.keystore_path.into()).map_err(::error::ErrorKind::Keystore)?;
let client = Arc::new(client::new_in_mem(executor, prepare_genesis)?); let client = Arc::new(client::new_in_mem(executor, prepare_genesis)?);
let best_header = client.header(&BlockId::Hash(client.info()?.chain.best_hash))?.expect("Best header always exists; qed"); let best_header = client.header(&BlockId::Hash(client.info()?.chain.best_hash))?.expect("Best header always exists; qed");
info!("Starting Polkadot. Best block is #{}", best_header.number); info!("Starting Polkadot. Best block is #{}", best_header.number);
@@ -166,7 +179,10 @@ impl Service {
// Spin consensus service if configured // Spin consensus service if configured
let consensus_service = if config.roles & Role::VALIDATOR == Role::VALIDATOR { let consensus_service = if config.roles & Role::VALIDATOR == Role::VALIDATOR {
Some(consensus::Service::new(client.clone(), network.clone(), transaction_pool, &best_header)) // Load the first available key. Code above makes sure it exisis.
let key = keystore.load(&keystore.contents()?[0], "")?;
info!("Using authority key {:?}", key.public());
Some(consensus::Service::new(client.clone(), network.clone(), transaction_pool, key, &best_header))
} else { } else {
None None
}; };
+1 -1
View File
@@ -9,7 +9,7 @@ log = "0.3"
parking_lot = "0.4" parking_lot = "0.4"
triehash = "0.1" triehash = "0.1"
hex-literal = "0.1" hex-literal = "0.1"
multiqueue = "0.3" futures = "0.1.17"
ed25519 = { path = "../ed25519" } ed25519 = { path = "../ed25519" }
substrate-bft = { path = "../bft" } substrate-bft = { path = "../bft" }
substrate-codec = { path = "../codec" } substrate-codec = { path = "../codec" }
+9 -17
View File
@@ -16,7 +16,7 @@
//! Substrate Client //! Substrate Client
use multiqueue; use futures::sync::mpsc;
use parking_lot::Mutex; use parking_lot::Mutex;
use primitives::{self, block, AuthorityId}; use primitives::{self, block, AuthorityId};
use primitives::block::Id as BlockId; use primitives::block::Id as BlockId;
@@ -30,17 +30,13 @@ use blockchain::{self, Info as ChainInfo, Backend as ChainBackend};
use {error, in_mem, block_builder, runtime_io, bft}; use {error, in_mem, block_builder, runtime_io, bft};
/// Type that implements `futures::Stream` of block import events. /// Type that implements `futures::Stream` of block import events.
pub type BlockchainEventStream = multiqueue::BroadcastFutReceiver<BlockImportNotification>; pub type BlockchainEventStream = mpsc::UnboundedReceiver<BlockImportNotification>;
//TODO: The queue is preallocated in multiqueue. Make it unbounded
const NOTIFICATION_QUEUE_SIZE: u64 = 1 << 16;
/// Polkadot Client /// Polkadot Client
pub struct Client<B, E> where B: backend::Backend { pub struct Client<B, E> where B: backend::Backend {
backend: B, backend: B,
executor: E, executor: E,
import_notification_sink: Mutex<multiqueue::BroadcastFutSender<BlockImportNotification>>, import_notification_sinks: Mutex<Vec<mpsc::UnboundedSender<BlockImportNotification>>>,
import_notification_stream: Mutex<multiqueue::BroadcastFutReceiver<BlockImportNotification>>,
} }
/// A source of blockchain evenets. /// A source of blockchain evenets.
@@ -165,7 +161,6 @@ impl<B, E> Client<B, E> where
where where
F: FnOnce() -> (block::Header, Vec<(Vec<u8>, Vec<u8>)>) F: FnOnce() -> (block::Header, Vec<(Vec<u8>, Vec<u8>)>)
{ {
let (sink, stream) = multiqueue::broadcast_fut_queue(NOTIFICATION_QUEUE_SIZE);
if backend.blockchain().header(BlockId::Number(0))?.is_none() { if backend.blockchain().header(BlockId::Number(0))?.is_none() {
trace!("Empty database, writing genesis block"); trace!("Empty database, writing genesis block");
let (genesis_header, genesis_store) = build_genesis(); let (genesis_header, genesis_store) = build_genesis();
@@ -177,8 +172,7 @@ impl<B, E> Client<B, E> where
Ok(Client { Ok(Client {
backend, backend,
executor, executor,
import_notification_sink: Mutex::new(sink), import_notification_sinks: Mutex::new(Vec::new()),
import_notification_stream: Mutex::new(stream),
}) })
} }
@@ -212,9 +206,7 @@ impl<B, E> Client<B, E> where
/// Close notification streams. /// Close notification streams.
pub fn stop_notifications(&self) { pub fn stop_notifications(&self) {
let (sink, stream) = multiqueue::broadcast_fut_queue(NOTIFICATION_QUEUE_SIZE); self.import_notification_sinks.lock().clear();
*self.import_notification_sink.lock() = sink;
*self.import_notification_stream.lock() = stream;
} }
/// Get the current set of authorities from storage. /// Get the current set of authorities from storage.
@@ -325,9 +317,7 @@ impl<B, E> Client<B, E> where
header: header, header: header,
is_new_best: is_new_best, is_new_best: is_new_best,
}; };
if let Err(e) = self.import_notification_sink.lock().try_send(notification) { self.import_notification_sinks.lock().retain(|sink| !sink.unbounded_send(notification.clone()).is_err());
warn!("Error queueing block import notification: {:?}", e);
}
} }
Ok(ImportResult::Queued) Ok(ImportResult::Queued)
@@ -424,7 +414,9 @@ impl<B, E> BlockchainEvents for Client<B, E>
{ {
/// Get block import event stream. /// Get block import event stream.
fn import_notification_stream(&self) -> BlockchainEventStream { fn import_notification_stream(&self) -> BlockchainEventStream {
self.import_notification_stream.lock().add_stream() let (sink, stream) = mpsc::unbounded();
self.import_notification_sinks.lock().push(sink);
stream
} }
} }
+1 -1
View File
@@ -31,7 +31,7 @@ extern crate ed25519;
extern crate triehash; extern crate triehash;
extern crate parking_lot; extern crate parking_lot;
extern crate multiqueue; extern crate futures;
#[cfg(test)] #[macro_use] extern crate hex_literal; #[cfg(test)] #[macro_use] extern crate hex_literal;
#[macro_use] extern crate error_chain; #[macro_use] extern crate error_chain;
#[macro_use] extern crate log; #[macro_use] extern crate log;
+19 -1
View File
@@ -55,12 +55,18 @@ pub fn verify<P: AsRef<[u8]>>(sig: &[u8], message: &[u8], public: P) -> bool {
} }
/// A public key. /// A public key.
#[derive(PartialEq, Eq, Clone, Debug)] #[derive(PartialEq, Eq, Clone)]
pub struct Public(pub [u8; 32]); pub struct Public(pub [u8; 32]);
/// A key pair. /// A key pair.
pub struct Pair(signature::Ed25519KeyPair); pub struct Pair(signature::Ed25519KeyPair);
impl ::std::hash::Hash for Public {
fn hash<H: ::std::hash::Hasher>(&self, state: &mut H) {
self.0.hash(state);
}
}
impl Public { impl Public {
/// A new instance from the given 32-byte `data`. /// A new instance from the given 32-byte `data`.
pub fn from_raw(data: [u8; 32]) -> Self { pub fn from_raw(data: [u8; 32]) -> Self {
@@ -122,6 +128,18 @@ impl AsRef<Pair> for Pair {
} }
} }
impl ::std::fmt::Display for Public {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "{}", ::primitives::hexdisplay::HexDisplay::from(&self.0))
}
}
impl ::std::fmt::Debug for Public {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "{}", ::primitives::hexdisplay::HexDisplay::from(&self.0))
}
}
impl Pair { impl Pair {
/// Generate new secure (random) key pair, yielding it and the corresponding pkcs#8 bytes. /// Generate new secure (random) key pair, yielding it and the corresponding pkcs#8 bytes.
pub fn generate_with_pkcs8() -> (Self, [u8; PKCS_LEN]) { pub fn generate_with_pkcs8() -> (Self, [u8; PKCS_LEN]) {
-1
View File
@@ -17,7 +17,6 @@ serde = "1.0"
serde_derive = "1.0" serde_derive = "1.0"
serde_json = "1.0" serde_json = "1.0"
futures = "0.1.17" futures = "0.1.17"
multiqueue = "0.3"
ethcore-network = { git = "https://github.com/paritytech/parity.git" } ethcore-network = { git = "https://github.com/paritytech/parity.git" }
ethcore-io = { git = "https://github.com/paritytech/parity.git" } ethcore-io = { git = "https://github.com/paritytech/parity.git" }
ed25519 = { path = "../../substrate/ed25519" } ed25519 = { path = "../../substrate/ed25519" }
+81 -38
View File
@@ -16,9 +16,10 @@
//! Consensus related bits of the network service. //! Consensus related bits of the network service.
use std::collections::HashMap; use std::collections::{HashMap, HashSet};
use multiqueue; use futures::sync::{oneshot, mpsc};
use futures::sync::oneshot; use std::time::{Instant, Duration};
use std::collections::hash_map::Entry;
use io::SyncIo; use io::SyncIo;
use protocol::Protocol; use protocol::Protocol;
use network::PeerId; use network::PeerId;
@@ -26,8 +27,8 @@ use primitives::Hash;
use message::{self, Message}; use message::{self, Message};
use runtime_support::Hashable; use runtime_support::Hashable;
//TODO: The queue is preallocated in multiqueue. Make it unbounded // TODO: Add additional spam/DoS attack protection.
const QUEUE_SIZE: u64 = 1 << 16; const MESSAGE_LIFETIME_SECONDS: u64 = 600;
struct CandidateRequest { struct CandidateRequest {
id: message::RequestId, id: message::RequestId,
@@ -37,41 +38,34 @@ struct CandidateRequest {
struct PeerConsensus { struct PeerConsensus {
candidate_fetch: Option<CandidateRequest>, candidate_fetch: Option<CandidateRequest>,
candidate_available: Option<Hash>, candidate_available: Option<Hash>,
known_messages: HashSet<Hash>,
} }
/// Consensus network protocol handler. Manages statements and candidate requests. /// Consensus network protocol handler. Manages statements and candidate requests.
pub struct Consensus { pub struct Consensus {
peers: HashMap<PeerId, PeerConsensus>, peers: HashMap<PeerId, PeerConsensus>,
our_candidate: Option<(Hash, Vec<u8>)>, our_candidate: Option<(Hash, Vec<u8>)>,
statement_sink: multiqueue::BroadcastFutSender<message::Statement>, statement_sink: Option<mpsc::UnboundedSender<message::Statement>>,
statement_stream: multiqueue::BroadcastFutReceiver<message::Statement>, bft_message_sink: Option<mpsc::UnboundedSender<message::BftMessage>>,
bft_message_sink: multiqueue::BroadcastFutSender<message::BftMessage>, message_timestamps: HashMap<Hash, Instant>,
bft_message_stream: multiqueue::BroadcastFutReceiver<message::BftMessage>,
} }
impl Consensus { impl Consensus {
/// Create a new instance. /// Create a new instance.
pub fn new() -> Consensus { pub fn new() -> Consensus {
let (statement_sink, statement_stream) = multiqueue::broadcast_fut_queue(QUEUE_SIZE);
let (bft_sink, bft_stream) = multiqueue::broadcast_fut_queue(QUEUE_SIZE);
Consensus { Consensus {
peers: HashMap::new(), peers: HashMap::new(),
our_candidate: None, our_candidate: None,
statement_sink: statement_sink, statement_sink: None,
statement_stream: statement_stream, bft_message_sink: None,
bft_message_sink: bft_sink, message_timestamps: Default::default(),
bft_message_stream: bft_stream,
} }
} }
/// Closes all notification streams. /// Closes all notification streams.
pub fn restart(&mut self) { pub fn restart(&mut self) {
let (statement_sink, statement_stream) = multiqueue::broadcast_fut_queue(QUEUE_SIZE); self.statement_sink = None;
let (bft_sink, bft_stream) = multiqueue::broadcast_fut_queue(QUEUE_SIZE); self.bft_message_sink = None;
self.statement_sink = statement_sink;
self.statement_stream = statement_stream;
self.bft_message_sink = bft_sink;
self.bft_message_stream = bft_stream;
} }
/// Handle new connected peer. /// Handle new connected peer.
@@ -81,11 +75,26 @@ impl Consensus {
self.peers.insert(peer_id, PeerConsensus { self.peers.insert(peer_id, PeerConsensus {
candidate_fetch: None, candidate_fetch: None,
candidate_available: None, candidate_available: None,
known_messages: Default::default(),
}); });
} }
} }
pub fn on_statement(&mut self, peer_id: PeerId, statement: message::Statement) { fn propagate(&mut self, io: &mut SyncIo, protocol: &Protocol, message: message::Message, hash: Hash) {
for (id, ref mut peer) in self.peers.iter_mut() {
if peer.known_messages.insert(hash.clone()) {
protocol.send_message(io, *id, message.clone());
}
}
}
fn register_message(&mut self, hash: Hash) {
if let Entry::Vacant(entry) = self.message_timestamps.entry(hash) {
entry.insert(Instant::now());
}
}
pub fn on_statement(&mut self, io: &mut SyncIo, protocol: &Protocol, peer_id: PeerId, statement: message::Statement, hash: Hash) {
if let Some(ref mut peer) = self.peers.get_mut(&peer_id) { if let Some(ref mut peer) = self.peers.get_mut(&peer_id) {
// TODO: validate signature? // TODO: validate signature?
match &statement.statement { match &statement.statement {
@@ -93,31 +102,53 @@ impl Consensus {
&message::UnsignedStatement::Available(ref hash) => peer.candidate_available = Some(*hash), &message::UnsignedStatement::Available(ref hash) => peer.candidate_available = Some(*hash),
&message::UnsignedStatement::Valid(_) | &message::UnsignedStatement::Invalid(_) => (), &message::UnsignedStatement::Valid(_) | &message::UnsignedStatement::Invalid(_) => (),
} }
if let Err(e) = self.statement_sink.try_send(statement) { peer.known_messages.insert(hash);
trace!(target:"sync", "Error broadcasting statement notification: {:?}", e); if let Some(sink) = self.statement_sink.take() {
if let Err(e) = sink.unbounded_send(statement.clone()) {
trace!(target:"sync", "Error broadcasting statement notification: {:?}", e);
} else {
self.statement_sink = Some(sink);
}
} }
} else { } else {
trace!(target:"sync", "Ignored statement from unregistered peer {}", peer_id); trace!(target:"sync", "Ignored statement from unregistered peer {}", peer_id);
return;
} }
self.register_message(hash.clone());
// Propagate to other peers.
self.propagate(io, protocol, Message::Statement(statement), hash);
} }
pub fn statements(&self) -> multiqueue::BroadcastFutReceiver<message::Statement>{ pub fn statements(&mut self) -> mpsc::UnboundedReceiver<message::Statement>{
self.statement_stream.add_stream() let (sink, stream) = mpsc::unbounded();
self.statement_sink = Some(sink);
stream
} }
pub fn on_bft_message(&mut self, peer_id: PeerId, message: message::BftMessage) { pub fn on_bft_message(&mut self, io: &mut SyncIo, protocol: &Protocol, peer_id: PeerId, message: message::BftMessage, hash: Hash) {
if self.peers.contains_key(&peer_id) { if let Some(ref mut peer) = self.peers.get_mut(&peer_id) {
peer.known_messages.insert(hash);
// TODO: validate signature? // TODO: validate signature?
if let Err(e) = self.bft_message_sink.try_send(message) { if let Some(sink) = self.bft_message_sink.take() {
trace!(target:"sync", "Error broadcasting BFT message notification: {:?}", e); if let Err(e) = sink.unbounded_send(message.clone()) {
trace!(target:"sync", "Error broadcasting BFT message notification: {:?}", e);
} else {
self.bft_message_sink = Some(sink);
}
} }
} else { } else {
trace!(target:"sync", "Ignored BFT statement from unregistered peer {}", peer_id); trace!(target:"sync", "Ignored BFT statement from unregistered peer {}", peer_id);
return;
} }
self.register_message(hash.clone());
// Propagate to other peers.
self.propagate(io, protocol, Message::BftMessage(message), hash);
} }
pub fn bft_messages(&self) -> multiqueue::BroadcastFutReceiver<message::BftMessage>{ pub fn bft_messages(&mut self) -> mpsc::UnboundedReceiver<message::BftMessage>{
self.bft_message_stream.add_stream() let (sink, stream) = mpsc::unbounded();
self.bft_message_sink = Some(sink);
stream
} }
pub fn fetch_candidate(&mut self, io: &mut SyncIo, protocol: &Protocol, hash: &Hash) -> oneshot::Receiver<Vec<u8>> { pub fn fetch_candidate(&mut self, io: &mut SyncIo, protocol: &Protocol, hash: &Hash) -> oneshot::Receiver<Vec<u8>> {
@@ -147,17 +178,19 @@ impl Consensus {
pub fn send_statement(&mut self, io: &mut SyncIo, protocol: &Protocol, statement: message::Statement) { pub fn send_statement(&mut self, io: &mut SyncIo, protocol: &Protocol, statement: message::Statement) {
// Broadcast statement to all validators. // Broadcast statement to all validators.
trace!(target:"sync", "Broadcasting statement {:?}", statement); trace!(target:"sync", "Broadcasting statement {:?}", statement);
for peer in self.peers.keys() { let message = Message::Statement(statement);
protocol.send_message(io, *peer, Message::Statement(statement.clone())); let hash = Protocol::hash_message(&message);
} self.register_message(hash.clone());
self.propagate(io, protocol, message, hash);
} }
pub fn send_bft_message(&mut self, io: &mut SyncIo, protocol: &Protocol, message: message::BftMessage) { pub fn send_bft_message(&mut self, io: &mut SyncIo, protocol: &Protocol, message: message::BftMessage) {
// Broadcast message to all validators. // Broadcast message to all validators.
trace!(target:"sync", "Broadcasting BFT message {:?}", message); trace!(target:"sync", "Broadcasting BFT message {:?}", message);
for peer in self.peers.keys() { let message = Message::BftMessage(message);
protocol.send_message(io, *peer, Message::BftMessage(message.clone())); let hash = Protocol::hash_message(&message);
} self.register_message(hash.clone());
self.propagate(io, protocol, message, hash);
} }
pub fn set_local_candidate(&mut self, candidate: Option<(Hash, Vec<u8>)>) { pub fn set_local_candidate(&mut self, candidate: Option<(Hash, Vec<u8>)>) {
@@ -200,4 +233,14 @@ impl Consensus {
pub fn peer_disconnected(&mut self, _io: &mut SyncIo, _protocol: &Protocol, peer_id: PeerId) { pub fn peer_disconnected(&mut self, _io: &mut SyncIo, _protocol: &Protocol, peer_id: PeerId) {
self.peers.remove(&peer_id); self.peers.remove(&peer_id);
} }
pub fn collect_garbage(&mut self) {
let expiration = Duration::from_secs(MESSAGE_LIFETIME_SECONDS);
let now = Instant::now();
self.message_timestamps.retain(|_, timestamp| *timestamp + expiration < now);
let timestamps = &self.message_timestamps;
for (_, ref mut peer) in self.peers.iter_mut() {
peer.known_messages.retain(|h| timestamps.contains_key(h));
}
}
} }
-1
View File
@@ -32,7 +32,6 @@ extern crate substrate_bft;
extern crate serde; extern crate serde;
extern crate serde_json; extern crate serde_json;
extern crate futures; extern crate futures;
extern crate multiqueue;
extern crate ed25519; extern crate ed25519;
#[macro_use] extern crate serde_derive; #[macro_use] extern crate serde_derive;
#[macro_use] extern crate log; #[macro_use] extern crate log;
+5 -5
View File
@@ -26,7 +26,7 @@ pub type RequestId = u64;
type Bytes = Vec<u8>; type Bytes = Vec<u8>;
/// Configured node role. /// Configured node role.
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)] #[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]
pub enum Role { pub enum Role {
/// Full relay chain client with no additional responsibilities. /// Full relay chain client with no additional responsibilities.
Full, Full,
@@ -213,7 +213,7 @@ pub enum SignedConsensusMessage {
/// A vote. /// A vote.
Vote(SignedConsensusVote), Vote(SignedConsensusVote),
} }
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)] #[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]
/// A network message. /// A network message.
pub enum Message { pub enum Message {
/// Status packet. /// Status packet.
@@ -236,7 +236,7 @@ pub enum Message {
BftMessage(BftMessage), BftMessage(BftMessage),
} }
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)] #[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]
pub struct Status { pub struct Status {
/// Protocol version. /// Protocol version.
pub version: u32, pub version: u32,
@@ -291,7 +291,7 @@ pub struct CandidateResponse {
pub data: Option<Vec<u8>>, pub data: Option<Vec<u8>>,
} }
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)] #[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]
/// Response to `BlockRequest` /// Response to `BlockRequest`
pub struct BlockResponse { pub struct BlockResponse {
/// Id of a request this response was made for. /// Id of a request this response was made for.
@@ -300,7 +300,7 @@ pub struct BlockResponse {
pub blocks: Vec<BlockData>, pub blocks: Vec<BlockData>,
} }
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)] #[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]
/// Announce a new complete relay chain block on the network. /// Announce a new complete relay chain block on the network.
pub struct BlockAnnounce { pub struct BlockAnnounce {
/// New block header. /// New block header.
+16 -11
View File
@@ -19,17 +19,16 @@ use std::{mem, cmp};
use std::sync::Arc; use std::sync::Arc;
use std::time; use std::time;
use parking_lot::{RwLock, Mutex}; use parking_lot::{RwLock, Mutex};
use multiqueue;
use futures::sync::oneshot; use futures::sync::oneshot;
use serde_json; use serde_json;
use primitives::block::{HeaderHash, TransactionHash, Number as BlockNumber, Header, Id as BlockId}; use primitives::block::{HeaderHash, TransactionHash, Number as BlockNumber, Header, Id as BlockId};
use primitives::Hash; use primitives::{Hash, blake2_256};
use network::{PeerId, NodeId}; use network::{PeerId, NodeId};
use message::{self, Message}; use message::{self, Message};
use sync::{ChainSync, Status as SyncStatus, SyncState}; use sync::{ChainSync, Status as SyncStatus, SyncState};
use consensus::Consensus; use consensus::Consensus;
use service::{Role, TransactionPool}; use service::{Role, TransactionPool, StatementStream, BftMessageStream};
use config::ProtocolConfig; use config::ProtocolConfig;
use chain::Client; use chain::Client;
use io::SyncIo; use io::SyncIo;
@@ -177,10 +176,10 @@ impl Protocol {
Message::BlockAnnounce(announce) => { Message::BlockAnnounce(announce) => {
self.on_block_announce(io, peer_id, announce); self.on_block_announce(io, peer_id, announce);
}, },
Message::Statement(s) => self.on_statement(io, peer_id, s), Message::Statement(s) => self.on_statement(io, peer_id, s, blake2_256(data).into()),
Message::CandidateRequest(r) => self.on_candidate_request(io, peer_id, r), Message::CandidateRequest(r) => self.on_candidate_request(io, peer_id, r),
Message::CandidateResponse(r) => self.on_candidate_response(io, peer_id, r), Message::CandidateResponse(r) => self.on_candidate_response(io, peer_id, r),
Message::BftMessage(m) => self.on_bft_message(io, peer_id, m), Message::BftMessage(m) => self.on_bft_message(io, peer_id, m, blake2_256(data).into()),
Message::Transactions(m) => self.on_transactions(io, peer_id, m), Message::Transactions(m) => self.on_transactions(io, peer_id, m),
} }
} }
@@ -205,6 +204,11 @@ impl Protocol {
} }
} }
pub fn hash_message(message: &Message) -> Hash {
let data = serde_json::to_vec(&message).expect("Serializer is infallible; qed");
blake2_256(&data).into()
}
/// Called when a new peer is connected /// Called when a new peer is connected
pub fn on_peer_connected(&self, io: &mut SyncIo, peer_id: PeerId) { pub fn on_peer_connected(&self, io: &mut SyncIo, peer_id: PeerId) {
trace!(target: "sync", "Connected {}: {}", peer_id, io.peer_info(peer_id)); trace!(target: "sync", "Connected {}: {}", peer_id, io.peer_info(peer_id));
@@ -294,14 +298,14 @@ impl Protocol {
self.consensus.lock().on_candidate_response(io, self, peer, response); self.consensus.lock().on_candidate_response(io, self, peer, response);
} }
fn on_statement(&self, _io: &mut SyncIo, peer: PeerId, statement: message::Statement) { fn on_statement(&self, io: &mut SyncIo, peer: PeerId, statement: message::Statement, hash: Hash) {
trace!(target: "sync", "Statement from {}: {:?}", peer, statement); trace!(target: "sync", "Statement from {}: {:?}", peer, statement);
self.consensus.lock().on_statement(peer, statement); self.consensus.lock().on_statement(io, self, peer, statement, hash);
} }
fn on_bft_message(&self, _io: &mut SyncIo, peer: PeerId, message: message::BftMessage) { fn on_bft_message(&self, io: &mut SyncIo, peer: PeerId, message: message::BftMessage, hash: Hash) {
trace!(target: "sync", "BFT message from {}: {:?}", peer, message); trace!(target: "sync", "BFT message from {}: {:?}", peer, message);
self.consensus.lock().on_bft_message(peer, message); self.consensus.lock().on_bft_message(io, self, peer, message, hash);
} }
/// See `ConsensusService` trait. /// See `ConsensusService` trait.
@@ -310,12 +314,12 @@ impl Protocol {
} }
/// See `ConsensusService` trait. /// See `ConsensusService` trait.
pub fn bft_messages(&self) -> multiqueue::BroadcastFutReceiver<message::BftMessage> { pub fn bft_messages(&self) -> BftMessageStream {
self.consensus.lock().bft_messages() self.consensus.lock().bft_messages()
} }
/// See `ConsensusService` trait. /// See `ConsensusService` trait.
pub fn statements(&self) -> multiqueue::BroadcastFutReceiver<message::Statement> { pub fn statements(&self) -> StatementStream {
self.consensus.lock().statements() self.consensus.lock().statements()
} }
@@ -337,6 +341,7 @@ impl Protocol {
/// Perform time based maintenance. /// Perform time based maintenance.
pub fn tick(&self, io: &mut SyncIo) { pub fn tick(&self, io: &mut SyncIo) {
self.maintain_peers(io); self.maintain_peers(io);
self.consensus.lock().collect_garbage();
} }
fn maintain_peers(&self, io: &mut SyncIo) { fn maintain_peers(&self, io: &mut SyncIo) {
+6 -7
View File
@@ -17,8 +17,7 @@
use std::sync::Arc; use std::sync::Arc;
use std::collections::{BTreeMap}; use std::collections::{BTreeMap};
use std::io; use std::io;
use multiqueue; use futures::sync::{oneshot, mpsc};
use futures::sync::oneshot;
use network::{NetworkProtocolHandler, NetworkService, NetworkContext, HostInfo, PeerId, ProtocolId, use network::{NetworkProtocolHandler, NetworkService, NetworkContext, HostInfo, PeerId, ProtocolId,
NetworkConfiguration , NonReservedPeerMode, ErrorKind}; NetworkConfiguration , NonReservedPeerMode, ErrorKind};
use primitives::block::{TransactionHash, Header}; use primitives::block::{TransactionHash, Header};
@@ -37,9 +36,9 @@ pub const DOT_PROTOCOL_ID: ProtocolId = *b"dot";
/// Type that represents fetch completion future. /// Type that represents fetch completion future.
pub type FetchFuture = oneshot::Receiver<Vec<u8>>; pub type FetchFuture = oneshot::Receiver<Vec<u8>>;
/// Type that represents statement stream. /// Type that represents statement stream.
pub type StatementStream = multiqueue::BroadcastFutReceiver<Statement>; pub type StatementStream = mpsc::UnboundedReceiver<Statement>;
/// Type that represents bft messages stream. /// Type that represents bft messages stream.
pub type BftMessageStream = multiqueue::BroadcastFutReceiver<BftMessage>; pub type BftMessageStream = mpsc::UnboundedReceiver<BftMessage>;
bitflags! { bitflags! {
/// Node roles bitmask. /// Node roles bitmask.
@@ -80,7 +79,7 @@ pub trait TransactionPool: Send + Sync {
/// ConsensusService /// ConsensusService
pub trait ConsensusService: Send + Sync { pub trait ConsensusService: Send + Sync {
/// Get statement stream. /// Get statement stream.
fn statements(&self) -> multiqueue::BroadcastFutReceiver<Statement>; fn statements(&self) -> StatementStream;
/// Send out a statement. /// Send out a statement.
fn send_statement(&self, statement: Statement); fn send_statement(&self, statement: Statement);
/// Maintain connectivity to given addresses. /// Maintain connectivity to given addresses.
@@ -92,7 +91,7 @@ pub trait ConsensusService: Send + Sync {
fn set_local_candidate(&self, candidate: Option<(Hash, Vec<u8>)>); fn set_local_candidate(&self, candidate: Option<(Hash, Vec<u8>)>);
/// Get BFT message stream. /// Get BFT message stream.
fn bft_messages(&self) -> multiqueue::BroadcastFutReceiver<BftMessage>; fn bft_messages(&self) -> BftMessageStream;
/// Send out a BFT message. /// Send out a BFT message.
fn send_bft_message(&self, message: BftMessage); fn send_bft_message(&self, message: BftMessage);
} }
@@ -228,7 +227,7 @@ impl SyncProvider for Service {
/// ConsensusService /// ConsensusService
impl ConsensusService for Service { impl ConsensusService for Service {
fn statements(&self) -> multiqueue::BroadcastFutReceiver<Statement> { fn statements(&self) -> StatementStream {
self.handler.protocol.statements() self.handler.protocol.statements()
} }