| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643 |
- /* This file is part of DarkFi (https://dark.fi)
- *
- * Copyright (C) 2020-2025 Dyne.org foundation
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- use std::{
- collections::{BTreeMap, HashSet, VecDeque},
- sync::{
- atomic::{AtomicUsize, Ordering::SeqCst},
- Arc,
- },
- };
- use darkfi_serial::{async_trait, SerialDecodable, SerialEncodable};
- use log::{debug, error, trace, warn};
- use smol::Executor;
- use super::{Event, EventGraphPtr, NULL_ID};
- use crate::{
- impl_p2p_message,
- net::{
- metering::{MeteringConfiguration, DEFAULT_METERING_CONFIGURATION},
- ChannelPtr, Message, MessageSubscription, ProtocolBase, ProtocolBasePtr,
- ProtocolJobsManager, ProtocolJobsManagerPtr,
- },
- system::msleep,
- util::time::NanoTimestamp,
- Error, Result,
- };
- /// Malicious behaviour threshold. If the threshold is reached, we will
- /// drop the peer from our P2P connection.
- const MALICIOUS_THRESHOLD: usize = 5;
- /// Global limit of messages per window
- const WINDOW_MAXSIZE: usize = 200;
- /// Rolling length of the window
- const WINDOW_EXPIRY_TIME: NanoTimestamp = NanoTimestamp::from_secs(60);
- /// Rolling length of the window
- const RATELIMIT_EXPIRY_TIME: NanoTimestamp = NanoTimestamp::from_secs(10);
- /// Ratelimit kicks in above this count
- const RATELIMIT_MIN_COUNT: usize = 6;
- /// Sample point used to calculate sleep time when ratelimit is active
- const RATELIMIT_SAMPLE_IDX: usize = 10;
- /// Sleep for this amount of time when `count == RATE_LIMIT_SAMPLE_IDX`.
- const RATELIMIT_SAMPLE_SLEEP: usize = 1000;
- struct MovingWindow {
- times: VecDeque<NanoTimestamp>,
- expiry_time: NanoTimestamp,
- }
- impl MovingWindow {
- fn new(expiry_time: NanoTimestamp) -> Self {
- Self { times: VecDeque::new(), expiry_time }
- }
- /// Clean out expired timestamps from the window.
- fn clean(&mut self) {
- while let Some(ts) = self.times.front() {
- let Ok(elapsed) = ts.elapsed() else {
- debug!(target: "event_graph::protocol::MovingWindow::clean()", "Timestamp [{}] is in future. Removing...", ts);
- let _ = self.times.pop_front();
- continue
- };
- if elapsed < self.expiry_time {
- break
- }
- let _ = self.times.pop_front();
- }
- }
- /// Add new timestamp
- fn ticktock(&mut self) {
- self.clean();
- self.times.push_back(NanoTimestamp::current_time());
- }
- #[inline]
- fn count(&self) -> usize {
- self.times.len()
- }
- }
- /// P2P protocol implementation for the Event Graph.
- pub struct ProtocolEventGraph {
- /// Pointer to the connected peer
- channel: ChannelPtr,
- /// Pointer to the Event Graph instance
- event_graph: EventGraphPtr,
- /// `MessageSubscriber` for `EventPut`
- ev_put_sub: MessageSubscription<EventPut>,
- /// `MessageSubscriber` for `EventReq`
- ev_req_sub: MessageSubscription<EventReq>,
- /// `MessageSubscriber` for `EventRep`
- ev_rep_sub: MessageSubscription<EventRep>,
- /// `MessageSubscriber` for `TipReq`
- tip_req_sub: MessageSubscription<TipReq>,
- /// `MessageSubscriber` for `TipRep`
- _tip_rep_sub: MessageSubscription<TipRep>,
- /// Peer malicious message count
- malicious_count: AtomicUsize,
- /// P2P jobs manager pointer
- jobsman: ProtocolJobsManagerPtr,
- /// To apply the rate-limit, we don't broadcast directly but instead send into the
- /// sending queue.
- broadcaster_push: smol::channel::Sender<EventPut>,
- /// Receive send requests and rate-limit broadcasting them.
- broadcaster_pull: smol::channel::Receiver<EventPut>,
- }
- /// A P2P message representing publishing an event on the network
- #[derive(Clone, SerialEncodable, SerialDecodable)]
- pub struct EventPut(pub Event);
- impl_p2p_message!(EventPut, "EventGraph::EventPut", 0, 0, DEFAULT_METERING_CONFIGURATION);
- /// A P2P message representing an event request
- #[derive(Clone, SerialEncodable, SerialDecodable)]
- pub struct EventReq(pub Vec<blake3::Hash>);
- impl_p2p_message!(EventReq, "EventGraph::EventReq", 0, 0, DEFAULT_METERING_CONFIGURATION);
- /// A P2P message representing an event reply
- #[derive(Clone, SerialEncodable, SerialDecodable)]
- pub struct EventRep(pub Vec<Event>);
- impl_p2p_message!(EventRep, "EventGraph::EventRep", 0, 0, DEFAULT_METERING_CONFIGURATION);
- /// A P2P message representing a request for a peer's DAG tips
- #[derive(Clone, SerialEncodable, SerialDecodable)]
- pub struct TipReq {}
- impl_p2p_message!(TipReq, "EventGraph::TipReq", 0, 0, DEFAULT_METERING_CONFIGURATION);
- /// A P2P message representing a reply for the peer's DAG tips
- #[derive(Clone, SerialEncodable, SerialDecodable)]
- pub struct TipRep(pub BTreeMap<u64, HashSet<blake3::Hash>>);
- impl_p2p_message!(TipRep, "EventGraph::TipRep", 0, 0, DEFAULT_METERING_CONFIGURATION);
- #[async_trait]
- impl ProtocolBase for ProtocolEventGraph {
- async fn start(self: Arc<Self>, ex: Arc<Executor<'_>>) -> Result<()> {
- self.jobsman.clone().start(ex.clone());
- self.jobsman.clone().spawn(self.clone().handle_event_put(), ex.clone()).await;
- self.jobsman.clone().spawn(self.clone().handle_event_req(), ex.clone()).await;
- self.jobsman.clone().spawn(self.clone().handle_tip_req(), ex.clone()).await;
- self.jobsman.clone().spawn(self.clone().broadcast_rate_limiter(), ex.clone()).await;
- Ok(())
- }
- fn name(&self) -> &'static str {
- "ProtocolEventGraph"
- }
- }
- impl ProtocolEventGraph {
- pub async fn init(event_graph: EventGraphPtr, channel: ChannelPtr) -> Result<ProtocolBasePtr> {
- let msg_subsystem = channel.message_subsystem();
- msg_subsystem.add_dispatch::<EventPut>().await;
- msg_subsystem.add_dispatch::<EventReq>().await;
- msg_subsystem.add_dispatch::<EventRep>().await;
- msg_subsystem.add_dispatch::<TipReq>().await;
- msg_subsystem.add_dispatch::<TipRep>().await;
- let ev_put_sub = channel.subscribe_msg::<EventPut>().await?;
- let ev_req_sub = channel.subscribe_msg::<EventReq>().await?;
- let ev_rep_sub = channel.subscribe_msg::<EventRep>().await?;
- let tip_req_sub = channel.subscribe_msg::<TipReq>().await?;
- let _tip_rep_sub = channel.subscribe_msg::<TipRep>().await?;
- let (broadcaster_push, broadcaster_pull) = smol::channel::unbounded();
- Ok(Arc::new(Self {
- channel: channel.clone(),
- event_graph,
- ev_put_sub,
- ev_req_sub,
- ev_rep_sub,
- tip_req_sub,
- _tip_rep_sub,
- malicious_count: AtomicUsize::new(0),
- jobsman: ProtocolJobsManager::new("ProtocolEventGraph", channel.clone()),
- broadcaster_push,
- broadcaster_pull,
- }))
- }
- async fn increase_malicious_count(self: Arc<Self>) -> Result<()> {
- let malicious_count = self.malicious_count.fetch_add(1, SeqCst);
- if malicious_count + 1 == MALICIOUS_THRESHOLD {
- error!(
- target: "event_graph::protocol::handle_event_put()",
- "[EVENTGRAPH] Peer {} reached malicious threshold. Dropping connection.",
- self.channel.address(),
- );
- self.channel.stop().await;
- return Err(Error::ChannelStopped)
- }
- warn!(
- target: "event_graph::protocol::handle_event_put()",
- "[EVENTGRAPH] Peer {} sent us a malicious event", self.channel.address(),
- );
- Ok(())
- }
- /// Protocol function handling `EventPut`.
- /// This is triggered whenever someone broadcasts (or relays) a new
- /// event on the network.
- async fn handle_event_put(self: Arc<Self>) -> Result<()> {
- // Rolling window of event timestamps on this channel
- let mut bantimes = MovingWindow::new(WINDOW_EXPIRY_TIME);
- loop {
- let event = match self.ev_put_sub.receive().await {
- Ok(v) => v.0.clone(),
- Err(_) => continue,
- };
- trace!(
- target: "event_graph::protocol::handle_event_put()",
- "Got EventPut: {} [{}]", event.id(), self.channel.address(),
- );
- // Check if node has finished syncing its DAG
- if !*self.event_graph.synced.read().await {
- debug!(
- target: "event_graph::protocol::handle_event_put",
- "DAG is still syncing, skipping..."
- );
- continue
- }
- // If we have already seen the event, we'll stay quiet.
- let event_id = event.id();
- if self.event_graph.dag.contains_key(event_id.as_bytes()).unwrap() {
- debug!(
- target: "event_graph::protocol::handle_event_put()",
- "Event {} is already known", event_id,
- );
- continue
- }
- // There's a new unique event.
- // Apply ban logic to stop network floods.
- bantimes.ticktock();
- if bantimes.count() > WINDOW_MAXSIZE {
- self.channel.ban().await;
- // This error is actually unused. We could return Ok here too.
- return Err(Error::MaliciousFlood)
- }
- // We received an event. Check if we already have it in our DAG.
- // Check event is not older that current genesis event timestamp.
- // Also check if we have the event's parents. In the case we do
- // not have the parents, we'll request them from the peer that has
- // sent this event to us. In case they do not reply in time, we drop
- // the event.
- // Check if the event is older than the genesis event. If so, we should
- // not include it in our Dag.
- // The genesis event marks the last time the Dag has been pruned of old
- // events. The pruning interval is defined by the days_rotation field
- // of [`EventGraph`].
- let genesis_timestamp = self.event_graph.current_genesis.read().await.timestamp;
- if event.timestamp < genesis_timestamp {
- debug!(
- target: "event_graph::protocol::handle_event_put()",
- "Event {} is older than genesis. Event timestamp: `{}`. Genesis timestamp: `{}`",
- event.id(), event.timestamp, genesis_timestamp
- );
- }
- // Validate the new event first. If we do not consider it valid, we
- // will just drop it and stay quiet. If the malicious threshold
- // is reached, we will stop the connection.
- if !event.validate_new() {
- self.clone().increase_malicious_count().await?;
- continue
- }
- // At this point, this is a new event to us. Let's see if we
- // have all of its parents.
- debug!(
- target: "event_graph::protocol::handle_event_put()",
- "Event {} is new", event_id,
- );
- let mut missing_parents = HashSet::new();
- for parent_id in event.parents.iter() {
- // `event.validate_new()` should have already made sure that
- // not all parents are NULL, and that there are no duplicates.
- if parent_id == &NULL_ID {
- continue
- }
- if !self.event_graph.dag.contains_key(parent_id.as_bytes()).unwrap() {
- missing_parents.insert(*parent_id);
- }
- }
- // If we have missing parents, then we have to attempt to
- // fetch them from this peer. Do this recursively until we
- // find all of them.
- if !missing_parents.is_empty() {
- // We track the received events mapped by their layer.
- // If/when we get all of them, we need to insert them in order so
- // the DAG state stays correct and unreferenced tips represent the
- // actual thing they should. If we insert them out of order, then
- // we might have wrong unreferenced tips.
- let mut received_events: BTreeMap<u64, Vec<Event>> = BTreeMap::new();
- let mut received_events_hashes = HashSet::new();
- debug!(
- target: "event_graph::protocol::handle_event_put()",
- "Event has {} missing parents. Requesting...", missing_parents.len(),
- );
- while !missing_parents.is_empty() {
- // for parent_id in missing_parents.clone().iter() {
- debug!(
- target: "event_graph::protocol::handle_event_put()",
- "Requesting {:?}...", missing_parents,
- );
- self.channel
- .send(&EventReq(missing_parents.clone().into_iter().collect()))
- .await?;
- // Node waits for response
- let Ok(parents) = self
- .ev_rep_sub
- .receive_with_timeout(
- self.event_graph.p2p.settings().read().await.outbound_connect_timeout,
- )
- .await
- else {
- error!(
- target: "event_graph::protocol::handle_event_put()",
- "[EVENTGRAPH] Timeout while waiting for parents {:?} from {}",
- missing_parents, self.channel.address(),
- );
- self.channel.stop().await;
- return Err(Error::ChannelStopped)
- };
- let parents = parents.0.clone();
- for parent in parents {
- let parent_id = parent.id();
- if !missing_parents.contains(&parent_id) {
- error!(
- target: "event_graph::protocol::handle_event_put()",
- "[EVENTGRAPH] Peer {} replied with a wrong event: {}",
- self.channel.address(), parent.id(),
- );
- self.channel.stop().await;
- return Err(Error::ChannelStopped)
- }
- debug!(
- target: "event_graph::protocol::handle_event_put()",
- "Got correct parent event {}", parent.id(),
- );
- if let Some(layer_events) = received_events.get_mut(&parent.layer) {
- layer_events.push(parent.clone());
- } else {
- let layer_events = vec![parent.clone()];
- received_events.insert(parent.layer, layer_events);
- }
- received_events_hashes.insert(parent_id);
- missing_parents.remove(&parent_id);
- // See if we have the upper parents
- for upper_parent in parent.parents.iter() {
- if upper_parent == &NULL_ID {
- continue
- }
- if !missing_parents.contains(upper_parent) &&
- !received_events_hashes.contains(upper_parent) &&
- !self
- .event_graph
- .dag
- .contains_key(upper_parent.as_bytes())
- .unwrap()
- {
- debug!(
- target: "event_graph::protocol::handle_event_put()",
- "Found upper missing parent event {}", upper_parent,
- );
- missing_parents.insert(*upper_parent);
- }
- }
- }
- } // <-- while !missing_parents.is_empty()
- // At this point we should've got all the events.
- // We should add them to the DAG.
- let mut events = vec![];
- for (_, tips) in received_events {
- for tip in tips {
- events.push(tip);
- }
- }
- if self.event_graph.dag_insert(&events).await.is_err() {
- self.clone().increase_malicious_count().await?;
- continue
- }
- } // <-- !missing_parents.is_empty()
- // If we're here, we have all the parents, and we can now
- // perform a full validation and add the actual event to
- // the DAG.
- debug!(
- target: "event_graph::protocol::handle_event_put()",
- "Got all parents necessary for insertion",
- );
- if self.event_graph.dag_insert(&[event.clone()]).await.is_err() {
- self.clone().increase_malicious_count().await?;
- continue
- }
- self.broadcaster_push.send(EventPut(event)).await.expect("push broadcaster closed");
- }
- }
- /// Protocol function handling `EventReq`.
- /// This is triggered whenever someone requests an event from us.
- async fn handle_event_req(self: Arc<Self>) -> Result<()> {
- loop {
- let event_ids = match self.ev_req_sub.receive().await {
- Ok(v) => v.0.clone(),
- Err(_) => continue,
- };
- trace!(
- target: "event_graph::protocol::handle_event_req()",
- "Got EventReq: {:?} [{}]", event_ids, self.channel.address(),
- );
- // Check if node has finished syncing its DAG
- if !*self.event_graph.synced.read().await {
- debug!(
- target: "event_graph::protocol::handle_event_req()",
- "DAG is still syncing, skipping..."
- );
- continue
- }
- // We received an event request from somebody.
- // If we do have it, we will send it back to them as `EventRep`.
- // Otherwise, we'll stay quiet. An honest node should always have
- // something to reply with provided that the request is legitimate,
- // i.e. we've sent something to them and they did not have some of
- // the parents.
- // Check if we expected this request to come around.
- // I dunno if this is a good idea, but it seems it will help
- // against malicious event requests where they want us to keep
- // reading our db and steal our bandwidth.
- let mut events = vec![];
- for event_id in event_ids.iter() {
- if !self.event_graph.broadcasted_ids.read().await.contains(event_id) {
- let malicious_count = self.malicious_count.fetch_add(1, SeqCst);
- if malicious_count + 1 == MALICIOUS_THRESHOLD {
- error!(
- target: "event_graph::protocol::handle_event_req()",
- "[EVENTGRAPH] Peer {} reached malicious threshold. Dropping connection.",
- self.channel.address(),
- );
- self.channel.stop().await;
- return Err(Error::ChannelStopped)
- }
- warn!(
- target: "event_graph::protocol::handle_event_req()",
- "[EVENTGRAPH] Peer {} requested an unexpected event {:?}",
- self.channel.address(), event_id,
- );
- continue
- }
- // At this point we should have it in our DAG.
- // This code panics if this is not the case.
- debug!(
- target: "event_graph::protocol::handle_event_req()",
- "Fetching event {:?} from DAG", event_id,
- );
- events.push(self.event_graph.dag_get(event_id).await.unwrap().unwrap());
- }
- // Check if the incoming event is older than the genesis event. If so, something
- // has gone wrong. The event should have been pruned during the last
- // rotation.
- let genesis_timestamp = self.event_graph.current_genesis.read().await.timestamp;
- let mut bcast_ids = self.event_graph.broadcasted_ids.write().await;
- for event in events.iter() {
- if event.timestamp < genesis_timestamp {
- error!(
- target: "event_graph::protocol::handle_event_req()",
- "Requested event by peer {} is older than previous rotation period. It should have been pruned.
- Event timestamp: `{}`. Genesis timestamp: `{}`",
- event.id(), event.timestamp, genesis_timestamp
- );
- }
- // Now let's get the upper level of event IDs. When we reply, we could
- // get requests for those IDs as well.
- for parent_id in event.parents.iter() {
- if parent_id != &NULL_ID {
- bcast_ids.insert(*parent_id);
- }
- }
- }
- // TODO: We should remove the reply from the bcast IDs for this specific channel.
- // We can't remove them for everyone.
- //bcast_ids.remove(&event_id);
- drop(bcast_ids);
- // Reply with the event
- self.channel.send(&EventRep(events)).await?;
- }
- }
- /// Protocol function handling `TipReq`.
- /// This is triggered when someone requests the current unreferenced
- /// tips of our DAG.
- async fn handle_tip_req(self: Arc<Self>) -> Result<()> {
- loop {
- self.tip_req_sub.receive().await?;
- trace!(
- target: "event_graph::protocol::handle_tip_req()",
- "Got TipReq [{}]", self.channel.address(),
- );
- // Check if node has finished syncing its DAG
- if !*self.event_graph.synced.read().await {
- debug!(
- target: "event_graph::protocol::handle_tip_req()",
- "DAG is still syncing, skipping..."
- );
- continue
- }
- // TODO: Rate limit
- // We received a tip request. Let's find them, add them to
- // our bcast ids list, and reply with them.
- let layers = self.event_graph.unreferenced_tips.read().await.clone();
- let mut bcast_ids = self.event_graph.broadcasted_ids.write().await;
- for (_, tips) in layers.iter() {
- for tip in tips {
- bcast_ids.insert(*tip);
- }
- }
- drop(bcast_ids);
- self.channel.send(&TipRep(layers)).await?;
- }
- }
- /// We need to rate limit message propagation so malicious nodes don't get us banned
- /// for flooding. We do that by aggregating messages here into a queue then apply
- /// rate limit logic before broadcasting.
- ///
- /// The rate limit logic is this:
- ///
- /// * If the count is less then RATELIMIT_MIN_COUNT then do nothing.
- /// * Otherwise sleep for `sleep_time` ms.
- ///
- /// To calculate the sleep time, we use the RATELIMIT_SAMPLE_* values.
- /// For example RATELIMIT_SAMPLE_IDX = 10, RATELIMIT_SAMPLE_SLEEP = 1000
- /// means that when N = 10, then sleep for 1000 ms.
- ///
- /// Let RATELIMIT_MIN_COUNT = 6, then here's a table of sleep times:
- ///
- /// | Count | Sleep Time / ms |
- /// |-------|-----------------|
- /// | 0 | 0 |
- /// | 4 | 0 |
- /// | 6 | 0 |
- /// | 10 | 1000 |
- /// | 14 | 2000 |
- /// | 18 | 3000 |
- ///
- /// So we use the sample to calculate a straight line from RATELIMIT_MIN_COUNT.
- async fn broadcast_rate_limiter(self: Arc<Self>) -> Result<()> {
- let mut ratelimit = MovingWindow::new(RATELIMIT_EXPIRY_TIME);
- loop {
- let event_put = self.broadcaster_pull.recv().await.expect("pull broadcaster closed");
- ratelimit.ticktock();
- if ratelimit.count() > RATELIMIT_MIN_COUNT {
- let sleep_time =
- ((ratelimit.count() - RATELIMIT_MIN_COUNT) * RATELIMIT_SAMPLE_SLEEP /
- (RATELIMIT_SAMPLE_IDX - RATELIMIT_MIN_COUNT)) as u64;
- debug!(
- target: "event_graph::protocol::broadcast_rate_limiter",
- "Activated rate limit: sleeping {sleep_time} ms [count={}]",
- ratelimit.count()
- );
- // Apply the ratelimit
- msleep(sleep_time).await;
- }
- // Relay the event to other peers.
- self.event_graph
- .p2p
- .broadcast_with_exclude(&event_put, &[self.channel.address().clone()])
- .await;
- }
- }
- }
- #[cfg(test)]
- mod test {
- use super::*;
- use std::time::UNIX_EPOCH;
- #[test]
- fn test_eventgraph_moving_window_clean_future() {
- let mut window = MovingWindow::new(NanoTimestamp::from_secs(60));
- let future = UNIX_EPOCH.elapsed().unwrap().as_secs() + 100;
- window.times.push_back(NanoTimestamp::from_secs(future.into()));
- window.clean();
- assert_eq!(window.count(), 0);
- }
- }
|