2020-01-25 02:16:02 +11:00
|
|
|
// Copyright 2018 Parity Technologies (UK) Ltd.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
|
|
// to deal in the Software without restriction, including without limitation
|
|
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2023-06-01 09:40:22 +02:00
|
|
|
#![doc = include_str!("../README.md")]
|
2020-01-25 02:16:02 +11:00
|
|
|
|
2021-12-06 11:32:58 -05:00
|
|
|
use async_std::io;
|
2023-03-24 04:12:38 -07:00
|
|
|
use futures::{future::Either, prelude::*, select};
|
2022-10-26 02:43:14 +02:00
|
|
|
use libp2p::{
|
2023-03-24 04:12:38 -07:00
|
|
|
core::{muxing::StreamMuxerBox, transport::OrTransport, upgrade},
|
2023-08-17 09:54:29 +02:00
|
|
|
gossipsub, identity, mdns, noise, quic,
|
2023-03-13 20:53:14 +01:00
|
|
|
swarm::NetworkBehaviour,
|
|
|
|
swarm::{SwarmBuilder, SwarmEvent},
|
2023-03-24 04:12:38 -07:00
|
|
|
tcp, yamux, PeerId, Transport,
|
2021-01-07 18:19:31 +11:00
|
|
|
};
|
2020-01-25 02:16:02 +11:00
|
|
|
use std::collections::hash_map::DefaultHasher;
|
2021-12-06 11:32:58 -05:00
|
|
|
use std::error::Error;
|
2020-01-25 02:16:02 +11:00
|
|
|
use std::hash::{Hash, Hasher};
|
|
|
|
use std::time::Duration;
|
|
|
|
|
2023-03-24 04:12:38 -07:00
|
|
|
// We create a custom network behaviour that combines Gossipsub and Mdns.
|
|
|
|
#[derive(NetworkBehaviour)]
|
|
|
|
struct MyBehaviour {
|
|
|
|
gossipsub: gossipsub::Behaviour,
|
|
|
|
mdns: mdns::async_io::Behaviour,
|
|
|
|
}
|
|
|
|
|
2021-03-16 11:48:48 +01:00
|
|
|
#[async_std::main]
|
|
|
|
async fn main() -> Result<(), Box<dyn Error>> {
|
2020-01-25 02:16:02 +11:00
|
|
|
// Create a random PeerId
|
2023-09-12 13:09:27 +03:00
|
|
|
env_logger::init();
|
2023-03-24 04:12:38 -07:00
|
|
|
let id_keys = identity::Keypair::generate_ed25519();
|
|
|
|
let local_peer_id = PeerId::from(id_keys.public());
|
2020-01-25 02:16:02 +11:00
|
|
|
|
2023-05-15 16:11:13 +02:00
|
|
|
// Set up an encrypted DNS-enabled TCP Transport over the yamux protocol.
|
2023-03-24 04:12:38 -07:00
|
|
|
let tcp_transport = tcp::async_io::Transport::new(tcp::Config::default().nodelay(true))
|
2023-04-21 11:58:08 +02:00
|
|
|
.upgrade(upgrade::Version::V1Lazy)
|
2023-04-28 15:50:31 +02:00
|
|
|
.authenticate(noise::Config::new(&id_keys).expect("signing libp2p-noise static keypair"))
|
2023-05-01 04:25:52 +02:00
|
|
|
.multiplex(yamux::Config::default())
|
2023-03-24 04:12:38 -07:00
|
|
|
.timeout(std::time::Duration::from_secs(20))
|
|
|
|
.boxed();
|
|
|
|
let quic_transport = quic::async_std::Transport::new(quic::Config::new(&id_keys));
|
|
|
|
let transport = OrTransport::new(quic_transport, tcp_transport)
|
|
|
|
.map(|either_output, _| match either_output {
|
|
|
|
Either::Left((peer_id, muxer)) => (peer_id, StreamMuxerBox::new(muxer)),
|
|
|
|
Either::Right((peer_id, muxer)) => (peer_id, StreamMuxerBox::new(muxer)),
|
|
|
|
})
|
|
|
|
.boxed();
|
2020-01-25 02:16:02 +11:00
|
|
|
|
2022-10-26 02:43:14 +02:00
|
|
|
// To content-address message, we can take the hash of message and use it as an ID.
|
2023-01-27 05:44:04 +01:00
|
|
|
let message_id_fn = |message: &gossipsub::Message| {
|
2022-10-26 02:43:14 +02:00
|
|
|
let mut s = DefaultHasher::new();
|
|
|
|
message.data.hash(&mut s);
|
2023-01-27 05:44:04 +01:00
|
|
|
gossipsub::MessageId::from(s.finish().to_string())
|
2022-10-26 02:43:14 +02:00
|
|
|
};
|
2020-01-25 02:16:02 +11:00
|
|
|
|
2022-10-26 02:43:14 +02:00
|
|
|
// Set a custom gossipsub configuration
|
2023-01-27 05:44:04 +01:00
|
|
|
let gossipsub_config = gossipsub::ConfigBuilder::default()
|
2022-10-26 02:43:14 +02:00
|
|
|
.heartbeat_interval(Duration::from_secs(10)) // This is set to aid debugging by not cluttering the log space
|
2023-01-27 05:44:04 +01:00
|
|
|
.validation_mode(gossipsub::ValidationMode::Strict) // This sets the kind of message validation. The default is Strict (enforce message signing)
|
2022-10-26 02:43:14 +02:00
|
|
|
.message_id_fn(message_id_fn) // content-address messages. No two messages of the same content will be propagated.
|
|
|
|
.build()
|
|
|
|
.expect("Valid config");
|
2021-01-07 18:19:31 +11:00
|
|
|
|
2022-10-26 02:43:14 +02:00
|
|
|
// build a gossipsub network behaviour
|
2023-01-27 05:44:04 +01:00
|
|
|
let mut gossipsub = gossipsub::Behaviour::new(
|
2023-03-24 04:12:38 -07:00
|
|
|
gossipsub::MessageAuthenticity::Signed(id_keys),
|
2023-01-27 05:44:04 +01:00
|
|
|
gossipsub_config,
|
|
|
|
)
|
|
|
|
.expect("Correct configuration");
|
2022-10-26 02:43:14 +02:00
|
|
|
// Create a Gossipsub topic
|
2023-01-27 05:44:04 +01:00
|
|
|
let topic = gossipsub::IdentTopic::new("test-net");
|
2022-10-26 02:43:14 +02:00
|
|
|
// subscribes to our topic
|
|
|
|
gossipsub.subscribe(&topic)?;
|
2020-01-25 02:16:02 +11:00
|
|
|
|
2022-10-26 02:43:14 +02:00
|
|
|
// Create a Swarm to manage peers and events
|
|
|
|
let mut swarm = {
|
2022-12-14 11:50:08 +11:00
|
|
|
let mdns = mdns::async_io::Behaviour::new(mdns::Config::default(), local_peer_id)?;
|
2022-10-26 02:43:14 +02:00
|
|
|
let behaviour = MyBehaviour { gossipsub, mdns };
|
2023-03-13 20:53:14 +01:00
|
|
|
SwarmBuilder::with_async_std_executor(transport, behaviour, local_peer_id).build()
|
2022-10-26 02:43:14 +02:00
|
|
|
};
|
2020-01-25 02:16:02 +11:00
|
|
|
|
|
|
|
// Read full lines from stdin
|
2021-12-06 11:32:58 -05:00
|
|
|
let mut stdin = io::BufReader::new(io::stdin()).lines().fuse();
|
2020-01-25 02:16:02 +11:00
|
|
|
|
2022-10-26 02:43:14 +02:00
|
|
|
// Listen on all interfaces and whatever port the OS assigns
|
2023-03-24 04:12:38 -07:00
|
|
|
swarm.listen_on("/ip4/0.0.0.0/udp/0/quic-v1".parse()?)?;
|
2022-10-26 02:43:14 +02:00
|
|
|
swarm.listen_on("/ip4/0.0.0.0/tcp/0".parse()?)?;
|
|
|
|
|
|
|
|
println!("Enter messages via STDIN and they will be sent to connected peers using Gossipsub");
|
|
|
|
|
2020-01-25 02:16:02 +11:00
|
|
|
// Kick it off
|
2021-12-06 11:32:58 -05:00
|
|
|
loop {
|
|
|
|
select! {
|
|
|
|
line = stdin.select_next_some() => {
|
|
|
|
if let Err(e) = swarm
|
2022-10-26 02:43:14 +02:00
|
|
|
.behaviour_mut().gossipsub
|
|
|
|
.publish(topic.clone(), line.expect("Stdin not to close").as_bytes()) {
|
2022-11-11 21:30:58 +01:00
|
|
|
println!("Publish error: {e:?}");
|
2021-12-06 11:32:58 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
event = swarm.select_next_some() => match event {
|
2022-11-18 01:12:23 +00:00
|
|
|
SwarmEvent::Behaviour(MyBehaviourEvent::Mdns(mdns::Event::Discovered(list))) => {
|
2022-10-26 02:43:14 +02:00
|
|
|
for (peer_id, _multiaddr) in list {
|
2022-11-11 21:30:58 +01:00
|
|
|
println!("mDNS discovered a new peer: {peer_id}");
|
2022-10-26 02:43:14 +02:00
|
|
|
swarm.behaviour_mut().gossipsub.add_explicit_peer(&peer_id);
|
|
|
|
}
|
|
|
|
},
|
2022-11-18 01:12:23 +00:00
|
|
|
SwarmEvent::Behaviour(MyBehaviourEvent::Mdns(mdns::Event::Expired(list))) => {
|
2022-10-26 02:43:14 +02:00
|
|
|
for (peer_id, _multiaddr) in list {
|
2022-11-11 21:30:58 +01:00
|
|
|
println!("mDNS discover peer has expired: {peer_id}");
|
2022-10-26 02:43:14 +02:00
|
|
|
swarm.behaviour_mut().gossipsub.remove_explicit_peer(&peer_id);
|
|
|
|
}
|
|
|
|
},
|
2023-01-27 05:44:04 +01:00
|
|
|
SwarmEvent::Behaviour(MyBehaviourEvent::Gossipsub(gossipsub::Event::Message {
|
2021-12-06 11:32:58 -05:00
|
|
|
propagation_source: peer_id,
|
|
|
|
message_id: id,
|
|
|
|
message,
|
2022-10-26 02:43:14 +02:00
|
|
|
})) => println!(
|
|
|
|
"Got message: '{}' with id: {id} from peer: {peer_id}",
|
|
|
|
String::from_utf8_lossy(&message.data),
|
|
|
|
),
|
2023-03-24 04:12:38 -07:00
|
|
|
SwarmEvent::NewListenAddr { address, .. } => {
|
|
|
|
println!("Local node is listening on {address}");
|
|
|
|
}
|
2021-12-06 11:32:58 -05:00
|
|
|
_ => {}
|
2020-01-25 02:16:02 +11:00
|
|
|
}
|
|
|
|
}
|
2021-12-06 11:32:58 -05:00
|
|
|
}
|
2020-01-25 02:16:02 +11:00
|
|
|
}
|