1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
#![doc = include_str!("../README.md")]
mod guardian;
mod receiver;
mod sender;
mod socket;
mod updater;
use acto::{AcTokio, ActoHandle, ActoRef, ActoRuntime, SupervisionRef, TokioJoinHandle};
use anyhow::Context;
use hickory_proto::rr::Name;
use socket::Sockets;
use std::{
collections::BTreeMap,
fmt::Display,
net::IpAddr,
str::FromStr,
time::{Duration, Instant},
};
use tokio::runtime::Handle;
type Callback = Box<dyn FnMut(&str, &Peer) + Send + 'static>;
/// Builder for a swarm discovery service.
///
/// # Example
///
/// ```rust
/// use if_addrs::get_if_addrs;
/// use swarm_discovery::Discoverer;
/// use tokio::runtime::Builder;
///
/// // create Tokio runtime
/// let rt = Builder::new_multi_thread()
/// .enable_all()
/// .build()
/// .expect("build runtime");
///
/// // make up some peer ID
/// let peer_id = "peer_id42".to_owned();
///
/// // get local addresses and make up some port
/// let addrs = get_if_addrs().unwrap().into_iter().map(|i| i.addr.ip()).collect::<Vec<_>>();
/// let port = 1234;
///
/// // start announcing and discovering
/// let _guard = Discoverer::new("swarm".to_owned(), peer_id)
/// .with_addrs(port, addrs)
/// .with_callback(|peer_id, peer| {
/// println!("discovered {}: {:?}", peer_id, peer);
/// })
/// .spawn(rt.handle())
/// .expect("discoverer spawn");
/// ```
pub struct Discoverer {
name: String,
protocol: Protocol,
peer_id: String,
peers: BTreeMap<String, Peer>,
callback: Callback,
tau: Duration,
phi: f32,
class: IpClass,
}
/// A peer discovered by the swarm discovery service.
///
/// The discovery yields service instances, which are located by a port and a list of IP addresses.
/// Both IPv4 and IPv6 addresses may be present, depending on the configuration via [Discoverer::with_ip_class].
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct Peer {
addrs: Vec<(IpAddr, u16)>,
last_seen: Instant,
}
impl Peer {
/// Known addresses of this peer, or empty slice in case the peer has expired.
pub fn addrs(&self) -> &[(IpAddr, u16)] {
&self.addrs
}
/// Returns true if this peer has expired.
pub fn is_expiry(&self) -> bool {
self.addrs.len() == 0
}
/// Return the age of this peer snapshot.
///
/// Note that observations performed after this Peer structure was handed to
/// your code are not taken into account; this yields the age of this Peer
/// snapshot.
pub fn age(&self) -> Duration {
self.last_seen.elapsed()
}
}
/// This selects which sockets will be created by the [Discoverer].
///
/// Responses will be sent on that socket which received the query.
/// Queries will prefer v4 when available.
/// Default is [IpClass::Auto], which means the socket will figure out what ip classes are available on its own.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Default)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum IpClass {
/// Require the socket to bind to ipv4.
V4Only,
/// Require the socket to bind to ipv6.
V6Only,
/// Require the socket to bind to both ipv4 and ipv6.
V4AndV6,
/// Allow the socket to attempt to bind to both ipv4 and ipv6.
///
/// Only error if the socket is unable to bind to either.
#[default]
Auto,
}
impl IpClass {
/// Returns `true` if IPv4 is enabled.
pub fn has_v4(self) -> bool {
matches!(self, Self::V4Only | Self::V4AndV6)
}
/// Returns `true` if IPv6 is enabled.
pub fn has_v6(self) -> bool {
matches!(self, Self::V6Only | Self::V4AndV6)
}
}
/// This selects which protocol suffix to use for the service name.
///
/// Default is [Protocol::Udp].
#[derive(Clone, Copy, Debug, PartialEq, Eq, Default)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum Protocol {
#[default]
Udp,
Tcp,
}
impl Display for Protocol {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Protocol::Udp => write!(f, "_udp"),
Protocol::Tcp => write!(f, "_tcp"),
}
}
}
impl Discoverer {
/// Creates a new builder for a swarm discovery service.
///
/// The `name` is the name of the mDNS service, meaning that it will be discoverable under the name `_name._udp.local.`.
/// The `peer_id` is the unique identifier of this peer, which will be discoverable under the name `peer_id._name._udp.local.`.
pub fn new(name: String, peer_id: String) -> Self {
Self {
name,
protocol: Protocol::default(),
peer_id,
peers: BTreeMap::new(),
callback: Box::new(|_, _| {}),
tau: Duration::from_secs(10),
phi: 1.0,
class: IpClass::default(),
}
}
/// Creates a new builder with default cadence and response rate for human interactive applications.
///
/// This sets τ=0.7sec and φ=2.5, see [Discoverer::new] for the `name` and `peer_id` arguments.
pub fn new_interactive(name: String, peer_id: String) -> Self {
Self::new(name, peer_id)
.with_cadence(Duration::from_millis(700))
.with_response_rate(2.5)
}
/// Set the protocol suffix to use for the service name.
///
/// Note that this does not change the protocol used for discovery, which is always UDP-based mDNS.
/// Default is [Protocol::Udp].
pub fn with_protocol(mut self, protocol: Protocol) -> Self {
self.protocol = protocol;
self
}
/// Register the local peer's port and IP addresses, may be called multiple times with additive effect.
///
/// If this method is not called, the local peer will not advertise itself.
/// It can still discover others.
pub fn with_addrs(mut self, port: u16, addrs: impl IntoIterator<Item = IpAddr>) -> Self {
let me = self
.peers
.entry(self.peer_id.clone())
.or_insert_with(|| Peer {
addrs: Vec::new(),
last_seen: Instant::now(),
});
me.addrs.extend(addrs.into_iter().map(|addr| (addr, port)));
me.addrs.sort_unstable();
me.addrs.dedup();
self
}
/// Register a callback to be called when a peer is discovered or its addresses change.
///
/// When a peer is removed, the callback will be called with an empty list of addresses.
/// This happens after not receiving any responses for a time period greater than three
/// times the estimated swarm size divided by the response frequency.
pub fn with_callback(mut self, callback: impl FnMut(&str, &Peer) + Send + 'static) -> Self {
self.callback = Box::new(callback);
self
}
/// Set the discovery time target.
///
/// After roughly this time a new peer should have discovered some parts of the swarm.
/// The worst-case latency is 1.2•τ.
///
/// Note that the product τ•φ must be greater than 1 for the rate limiting to work correctly.
/// For human interactive applications it is recommended to set τ=0.7s and φ=2.5 (see [Discoverer::new_interactive]).
///
/// The default is 10 seconds.
pub fn with_cadence(mut self, tau: Duration) -> Self {
self.tau = tau;
self
}
/// Set the response frequency target in Hz.
///
/// While query-response cycles follow the configured cadence (see [Discoverer::with_cadence]),
/// the response rate determines the (soft) maximum of how many responses should be received per second.
///
/// With cadence 10sec, setting this to 1.0Hz means that at most 10 responses will be received per cycle.
/// Setting it to 0.5Hz means that up to roughly 5 responses will be received per cycle.
///
/// Note that the product τ•φ must be greater than 1 for the rate limiting to work correctly.
/// For human interactive applications it is recommended to set τ=0.7s and φ=2.5 (see [Discoverer::new_interactive]).
///
/// The default is 1.0Hz.
pub fn with_response_rate(mut self, phi: f32) -> Self {
self.phi = phi;
self
}
/// Set which IP classes to use.
///
/// The default is to use both IPv4 and IPv6, where IPv4 is preferred for sending queries.
/// Responses will be sent using that class which the query used.
pub fn with_ip_class(mut self, class: IpClass) -> Self {
self.class = class;
self
}
/// Start the discovery service.
///
/// This will spawn asynchronous tasks and return a guard which will stop the discovery when dropped.
/// Changing the configuration is done by stopping the discovery and starting a new one.
pub fn spawn(self, handle: &Handle) -> anyhow::Result<DropGuard> {
let _entered = handle.enter();
let sockets = Sockets::new(self.class)?;
tracing::trace!(?sockets, "created new sockets");
let service_name = Name::from_str(&format!("_{}.{}.local.", self.name, self.protocol))
.context("constructing service name")?;
// need to test this here so it won't fail in the actor
Name::from_str(&self.peer_id)
.context("constructing name from peer ID")?
.append_domain(&service_name)
.context("appending service name to peer ID")?;
let rt = AcTokio::from_handle("swarm-discovery", handle.clone());
let SupervisionRef { me, handle } = rt.spawn_actor("guardian", move |ctx| {
guardian::guardian(ctx, self, sockets, service_name)
});
Ok(DropGuard {
task: Some(handle),
aref: me,
_rt: rt,
})
}
}
/// A guard which will keep the discovery running until it is dropped.
///
/// You can also use this guard to modify the local addresses while the discovery is running.
#[must_use = "dropping this value will stop the mDNS discovery"]
pub struct DropGuard {
task: Option<TokioJoinHandle<()>>,
aref: ActoRef<guardian::Input>,
_rt: AcTokio,
}
impl DropGuard {
/// Remove all local addresses and stop advertising.
pub fn remove_all(&self) {
self.aref.send(guardian::Input::RemoveAll);
}
/// Remove a specific port from the local addresses.
pub fn remove_port(&self, port: u16) {
self.aref.send(guardian::Input::RemovePort(port));
}
/// Remove a specific address from the local addresses.
pub fn remove_addr(&self, addr: IpAddr) {
self.aref.send(guardian::Input::RemoveAddr(addr));
}
/// Add a port and addresses to the local addresses.
pub fn add(&self, port: u16, addrs: Vec<IpAddr>) {
self.aref.send(guardian::Input::Add(port, addrs));
}
}
impl Drop for DropGuard {
fn drop(&mut self) {
self.task.take().unwrap().abort();
}
}
#[cfg(test)]
mod tests {
use super::*;
use std::net::{Ipv4Addr, Ipv6Addr};
use tokio::sync::mpsc;
#[tokio::test]
async fn test_change_addresses() {
let handle = tokio::runtime::Handle::current();
let peer_id1 = "test_peer1".to_string();
let peer_id2 = "test_peer2".to_string();
let (tx, mut rx) = mpsc::channel(10);
// First Discoverer (the one we're testing)
let discoverer1 = Discoverer::new("test_service".to_string(), peer_id1.clone())
.with_addrs(8000, vec![IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1))])
.with_cadence(Duration::from_secs(1))
.with_response_rate(1.0);
let guard1 = discoverer1
.spawn(&handle)
.expect("Failed to spawn discoverer1");
// Second Discoverer (to verify the changes)
let discoverer2 =
Discoverer::new("test_service".to_string(), peer_id2).with_callback(move |id, peer| {
if id == peer_id1 {
tx.try_send(peer.clone()).ok();
}
});
let _guard2 = discoverer2
.spawn(&handle)
.expect("Failed to spawn discoverer2");
// Wait for initial discovery with a timeout
let initial_peer = tokio::time::timeout(Duration::from_secs(2), rx.recv())
.await
.expect("Timeout waiting for initial peer")
.expect("Failed to receive initial peer");
assert_eq!(initial_peer.addrs().len(), 1);
assert_eq!(
initial_peer.addrs()[0],
(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)), 8000)
);
// Change addresses
guard1.add(
9000,
vec![IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1))],
);
guard1.remove_port(8000);
// Wait for the update to be discovered
let updated_peer = tokio::time::timeout(Duration::from_secs(5), async {
loop {
if let Some(peer) = rx.recv().await {
if peer.addrs().len() == 1 && peer.addrs()[0].1 == 9000 {
return Ok(peer);
}
} else {
return Err(anyhow::anyhow!("Failed to receive updated peer"));
}
}
})
.await
.expect("Timeout waiting for updated peer")
.expect("Failed to receive updated peer");
assert_eq!(updated_peer.addrs().len(), 1);
assert_eq!(
updated_peer.addrs()[0],
(IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1)), 9000)
);
// Stop the discoverers
drop(guard1);
}
}