mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +00:00
d631f1dea8
* add some gum * bump expander * gum * fix all remaining issues * last fixup * Update node/gum/proc-macro/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * change * netowrk * fixins * chore * allow optional fmt str + args, prep for expr as kv field * tracing -> gum rename fallout * restrict further * allow multiple levels of field accesses * another round of docs and a slip of the pen * update ADR * fixup lock fiel * use target: instead of target= * minors * fix * chore * Update node/gum/README.md Co-authored-by: Andrei Sandu <54316454+sandreim@users.noreply.github.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Andrei Sandu <54316454+sandreim@users.noreply.github.com>
145 lines
4.4 KiB
Rust
145 lines
4.4 KiB
Rust
// Copyright 2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot 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.
|
|
|
|
// Polkadot 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 Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! The Collator Protocol allows collators and validators talk to each other.
|
|
//! This subsystem implements both sides of the collator protocol.
|
|
|
|
#![deny(missing_docs)]
|
|
#![deny(unused_crate_dependencies)]
|
|
#![recursion_limit = "256"]
|
|
|
|
use std::time::Duration;
|
|
|
|
use futures::{FutureExt, TryFutureExt};
|
|
|
|
use sp_keystore::SyncCryptoStorePtr;
|
|
|
|
use polkadot_node_network_protocol::{
|
|
request_response::{v1 as request_v1, IncomingRequestReceiver},
|
|
PeerId, UnifiedReputationChange as Rep,
|
|
};
|
|
use polkadot_primitives::v2::CollatorPair;
|
|
|
|
use polkadot_subsystem::{
|
|
errors::SubsystemError,
|
|
messages::{CollatorProtocolMessage, NetworkBridgeMessage},
|
|
overseer, SpawnedSubsystem, SubsystemContext, SubsystemSender,
|
|
};
|
|
|
|
mod error;
|
|
|
|
mod collator_side;
|
|
mod validator_side;
|
|
|
|
const LOG_TARGET: &'static str = "parachain::collator-protocol";
|
|
|
|
/// A collator eviction policy - how fast to evict collators which are inactive.
|
|
#[derive(Debug, Clone, Copy)]
|
|
pub struct CollatorEvictionPolicy {
|
|
/// How fast to evict collators who are inactive.
|
|
pub inactive_collator: Duration,
|
|
/// How fast to evict peers which don't declare their para.
|
|
pub undeclared: Duration,
|
|
}
|
|
|
|
impl Default for CollatorEvictionPolicy {
|
|
fn default() -> Self {
|
|
CollatorEvictionPolicy {
|
|
inactive_collator: Duration::from_secs(24),
|
|
undeclared: Duration::from_secs(1),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// What side of the collator protocol is being engaged
|
|
pub enum ProtocolSide {
|
|
/// Validators operate on the relay chain.
|
|
Validator {
|
|
/// The keystore holding validator keys.
|
|
keystore: SyncCryptoStorePtr,
|
|
/// An eviction policy for inactive peers or validators.
|
|
eviction_policy: CollatorEvictionPolicy,
|
|
/// Prometheus metrics for validators.
|
|
metrics: validator_side::Metrics,
|
|
},
|
|
/// Collators operate on a parachain.
|
|
Collator(
|
|
PeerId,
|
|
CollatorPair,
|
|
IncomingRequestReceiver<request_v1::CollationFetchingRequest>,
|
|
collator_side::Metrics,
|
|
),
|
|
}
|
|
|
|
/// The collator protocol subsystem.
|
|
pub struct CollatorProtocolSubsystem {
|
|
protocol_side: ProtocolSide,
|
|
}
|
|
|
|
impl CollatorProtocolSubsystem {
|
|
/// Start the collator protocol.
|
|
/// If `id` is `Some` this is a collator side of the protocol.
|
|
/// If `id` is `None` this is a validator side of the protocol.
|
|
/// Caller must provide a registry for prometheus metrics.
|
|
pub fn new(protocol_side: ProtocolSide) -> Self {
|
|
Self { protocol_side }
|
|
}
|
|
|
|
async fn run<Context>(self, ctx: Context) -> std::result::Result<(), error::FatalError>
|
|
where
|
|
Context: overseer::SubsystemContext<Message = CollatorProtocolMessage>,
|
|
Context: SubsystemContext<Message = CollatorProtocolMessage>,
|
|
{
|
|
match self.protocol_side {
|
|
ProtocolSide::Validator { keystore, eviction_policy, metrics } =>
|
|
validator_side::run(ctx, keystore, eviction_policy, metrics).await,
|
|
ProtocolSide::Collator(local_peer_id, collator_pair, req_receiver, metrics) =>
|
|
collator_side::run(ctx, local_peer_id, collator_pair, req_receiver, metrics).await,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<Context> overseer::Subsystem<Context, SubsystemError> for CollatorProtocolSubsystem
|
|
where
|
|
Context: SubsystemContext<Message = CollatorProtocolMessage>,
|
|
Context: overseer::SubsystemContext<Message = CollatorProtocolMessage>,
|
|
<Context as SubsystemContext>::Sender: SubsystemSender,
|
|
{
|
|
fn start(self, ctx: Context) -> SpawnedSubsystem {
|
|
let future = self
|
|
.run(ctx)
|
|
.map_err(|e| SubsystemError::with_origin("collator-protocol", e))
|
|
.boxed();
|
|
|
|
SpawnedSubsystem { name: "collator-protocol-subsystem", future }
|
|
}
|
|
}
|
|
|
|
/// Modify the reputation of a peer based on its behavior.
|
|
async fn modify_reputation<Context>(ctx: &mut Context, peer: PeerId, rep: Rep)
|
|
where
|
|
Context: SubsystemContext,
|
|
{
|
|
gum::trace!(
|
|
target: LOG_TARGET,
|
|
rep = ?rep,
|
|
peer_id = %peer,
|
|
"reputation change for peer",
|
|
);
|
|
|
|
ctx.send_message(NetworkBridgeMessage::ReportPeer(peer, rep)).await;
|
|
}
|