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 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552
// Copyright 2023 Protocol Labs.
//
// 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.
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
use std::{
borrow::Borrow,
collections::{HashMap, VecDeque},
error::Error,
hash::{Hash, Hasher},
net::{self, IpAddr, SocketAddr, SocketAddrV4},
ops::{Deref, DerefMut},
pin::Pin,
task::{Context, Poll},
time::Duration,
};
use crate::tokio::{is_addr_global, Gateway};
use futures::{channel::oneshot, Future, StreamExt};
use futures_timer::Delay;
use igd_next::PortMappingProtocol;
use libp2p_core::{
multiaddr,
transport::{ListenerId, PortUse},
Endpoint, Multiaddr,
};
use libp2p_swarm::{
derive_prelude::PeerId, dummy, ConnectionDenied, ConnectionId, ExpiredListenAddr, FromSwarm,
NetworkBehaviour, NewListenAddr, ToSwarm,
};
/// The duration in seconds of a port mapping on the gateway.
const MAPPING_DURATION: u32 = 3600;
/// Renew the Mapping every half of `MAPPING_DURATION` to avoid the port being unmapped.
const MAPPING_TIMEOUT: u64 = MAPPING_DURATION as u64 / 2;
/// A [`Gateway`] Request.
#[derive(Debug)]
pub(crate) enum GatewayRequest {
AddMapping { mapping: Mapping, duration: u32 },
RemoveMapping(Mapping),
}
/// A [`Gateway`] event.
#[derive(Debug)]
pub(crate) enum GatewayEvent {
/// Port was successfully mapped.
Mapped(Mapping),
/// There was a failure mapping port.
MapFailure(Mapping, Box<dyn Error + Send + Sync + 'static>),
/// Port was successfully removed.
Removed(Mapping),
/// There was a failure removing the mapped port.
RemovalFailure(Mapping, Box<dyn Error + Send + Sync + 'static>),
}
/// Mapping of a Protocol and Port on the gateway.
#[derive(Debug, Clone)]
pub(crate) struct Mapping {
pub(crate) listener_id: ListenerId,
pub(crate) protocol: PortMappingProtocol,
pub(crate) multiaddr: Multiaddr,
pub(crate) internal_addr: SocketAddr,
}
impl Mapping {
/// Given the input gateway address, calculate the
/// open external `Multiaddr`.
fn external_addr(&self, gateway_addr: IpAddr) -> Multiaddr {
let addr = match gateway_addr {
net::IpAddr::V4(ip) => multiaddr::Protocol::Ip4(ip),
net::IpAddr::V6(ip) => multiaddr::Protocol::Ip6(ip),
};
self.multiaddr
.replace(0, |_| Some(addr))
.expect("multiaddr should be valid")
}
}
impl Hash for Mapping {
fn hash<H: Hasher>(&self, state: &mut H) {
self.listener_id.hash(state);
}
}
impl PartialEq for Mapping {
fn eq(&self, other: &Self) -> bool {
self.listener_id == other.listener_id
}
}
impl Eq for Mapping {}
impl Borrow<ListenerId> for Mapping {
fn borrow(&self) -> &ListenerId {
&self.listener_id
}
}
/// Current state of a [`Mapping`].
#[derive(Debug)]
enum MappingState {
/// Port mapping is inactive, will be requested or re-requested on the next iteration.
Inactive,
/// Port mapping/removal has been requested on the gateway.
Pending,
/// Port mapping is active with the inner timeout.
Active(Delay),
/// Port mapping failed, we will try again.
Failed,
}
/// Current state of the UPnP [`Gateway`].
enum GatewayState {
Searching(oneshot::Receiver<Result<Gateway, Box<dyn std::error::Error + Send + Sync>>>),
Available(Gateway),
GatewayNotFound,
NonRoutableGateway(IpAddr),
}
/// The event produced by `Behaviour`.
#[derive(Debug)]
pub enum Event {
/// The multiaddress is reachable externally.
NewExternalAddr(Multiaddr),
/// The renewal of the multiaddress on the gateway failed.
ExpiredExternalAddr(Multiaddr),
/// The IGD gateway was not found.
GatewayNotFound,
/// The Gateway is not exposed directly to the public network.
NonRoutableGateway,
}
/// A list of port mappings and its state.
#[derive(Debug, Default)]
struct MappingList(HashMap<Mapping, MappingState>);
impl Deref for MappingList {
type Target = HashMap<Mapping, MappingState>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl DerefMut for MappingList {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl MappingList {
/// Queue for renewal the current mapped ports on the `Gateway` that are expiring,
/// and try to activate the inactive.
fn renew(&mut self, gateway: &mut Gateway, cx: &mut Context<'_>) {
for (mapping, state) in self.iter_mut() {
match state {
MappingState::Inactive | MappingState::Failed => {
let duration = MAPPING_DURATION;
if let Err(err) = gateway.sender.try_send(GatewayRequest::AddMapping {
mapping: mapping.clone(),
duration,
}) {
tracing::debug!(
multiaddress=%mapping.multiaddr,
"could not request port mapping for multiaddress on the gateway: {}",
err
);
}
*state = MappingState::Pending;
}
MappingState::Active(timeout) => {
if Pin::new(timeout).poll(cx).is_ready() {
let duration = MAPPING_DURATION;
if let Err(err) = gateway.sender.try_send(GatewayRequest::AddMapping {
mapping: mapping.clone(),
duration,
}) {
tracing::debug!(
multiaddress=%mapping.multiaddr,
"could not request port mapping for multiaddress on the gateway: {}",
err
);
}
}
}
MappingState::Pending => {}
}
}
}
}
/// A [`NetworkBehaviour`] for UPnP port mapping. Automatically tries to map the external port
/// to an internal address on the gateway on a [`FromSwarm::NewListenAddr`].
pub struct Behaviour {
/// UPnP interface state.
state: GatewayState,
/// List of port mappings.
mappings: MappingList,
/// Pending behaviour events to be emitted.
pending_events: VecDeque<Event>,
}
impl Default for Behaviour {
fn default() -> Self {
Self {
state: GatewayState::Searching(crate::tokio::search_gateway()),
mappings: Default::default(),
pending_events: VecDeque::new(),
}
}
}
impl NetworkBehaviour for Behaviour {
type ConnectionHandler = dummy::ConnectionHandler;
type ToSwarm = Event;
fn handle_established_inbound_connection(
&mut self,
_connection_id: ConnectionId,
_peer: PeerId,
_local_addr: &Multiaddr,
_remote_addr: &Multiaddr,
) -> Result<libp2p_swarm::THandler<Self>, ConnectionDenied> {
Ok(dummy::ConnectionHandler)
}
fn handle_established_outbound_connection(
&mut self,
_connection_id: ConnectionId,
_peer: PeerId,
_addr: &Multiaddr,
_role_override: Endpoint,
_port_use: PortUse,
) -> Result<libp2p_swarm::THandler<Self>, libp2p_swarm::ConnectionDenied> {
Ok(dummy::ConnectionHandler)
}
fn on_swarm_event(&mut self, event: FromSwarm) {
match event {
FromSwarm::NewListenAddr(NewListenAddr {
listener_id,
addr: multiaddr,
}) => {
let (addr, protocol) = match multiaddr_to_socketaddr_protocol(multiaddr.clone()) {
Ok(addr_port) => addr_port,
Err(()) => {
tracing::debug!("multiaddress not supported for UPnP {multiaddr}");
return;
}
};
if let Some((mapping, _state)) = self
.mappings
.iter()
.find(|(mapping, _state)| mapping.internal_addr.port() == addr.port())
{
tracing::debug!(
multiaddress=%multiaddr,
mapped_multiaddress=%mapping.multiaddr,
"port from multiaddress is already being mapped"
);
return;
}
match &mut self.state {
GatewayState::Searching(_) => {
// As the gateway is not yet available we add the mapping with `MappingState::Inactive`
// so that when and if it becomes available we map it.
self.mappings.insert(
Mapping {
listener_id,
protocol,
internal_addr: addr,
multiaddr: multiaddr.clone(),
},
MappingState::Inactive,
);
}
GatewayState::Available(ref mut gateway) => {
let mapping = Mapping {
listener_id,
protocol,
internal_addr: addr,
multiaddr: multiaddr.clone(),
};
let duration = MAPPING_DURATION;
if let Err(err) = gateway.sender.try_send(GatewayRequest::AddMapping {
mapping: mapping.clone(),
duration,
}) {
tracing::debug!(
multiaddress=%mapping.multiaddr,
"could not request port mapping for multiaddress on the gateway: {}",
err
);
}
self.mappings.insert(mapping, MappingState::Pending);
}
GatewayState::GatewayNotFound => {
tracing::debug!(
multiaddres=%multiaddr,
"network gateway not found, UPnP port mapping of multiaddres discarded"
);
}
GatewayState::NonRoutableGateway(addr) => {
tracing::debug!(
multiaddress=%multiaddr,
network_gateway_ip=%addr,
"the network gateway is not exposed to the public network. /
UPnP port mapping of multiaddress discarded"
);
}
};
}
FromSwarm::ExpiredListenAddr(ExpiredListenAddr {
listener_id,
addr: _addr,
}) => {
if let GatewayState::Available(ref mut gateway) = &mut self.state {
if let Some((mapping, _state)) = self.mappings.remove_entry(&listener_id) {
if let Err(err) = gateway
.sender
.try_send(GatewayRequest::RemoveMapping(mapping.clone()))
{
tracing::debug!(
multiaddress=%mapping.multiaddr,
"could not request port removal for multiaddress on the gateway: {}",
err
);
}
self.mappings.insert(mapping, MappingState::Pending);
}
}
}
_ => {}
}
}
fn on_connection_handler_event(
&mut self,
_peer_id: PeerId,
_connection_id: ConnectionId,
event: libp2p_swarm::THandlerOutEvent<Self>,
) {
void::unreachable(event)
}
#[tracing::instrument(level = "trace", name = "NetworkBehaviour::poll", skip(self, cx))]
fn poll(
&mut self,
cx: &mut Context<'_>,
) -> Poll<ToSwarm<Self::ToSwarm, libp2p_swarm::THandlerInEvent<Self>>> {
// If there are pending addresses to be emitted we emit them.
if let Some(event) = self.pending_events.pop_front() {
return Poll::Ready(ToSwarm::GenerateEvent(event));
}
// Loop through the gateway state so that if it changes from `Searching` to `Available`
// we poll the pending mapping requests.
loop {
match self.state {
GatewayState::Searching(ref mut fut) => match Pin::new(fut).poll(cx) {
Poll::Ready(result) => {
match result.expect("sender shouldn't have been dropped") {
Ok(gateway) => {
if !is_addr_global(gateway.external_addr) {
self.state =
GatewayState::NonRoutableGateway(gateway.external_addr);
tracing::debug!(
gateway_address=%gateway.external_addr,
"the gateway is not routable"
);
return Poll::Ready(ToSwarm::GenerateEvent(
Event::NonRoutableGateway,
));
}
self.state = GatewayState::Available(gateway);
}
Err(err) => {
tracing::debug!("could not find gateway: {err}");
self.state = GatewayState::GatewayNotFound;
return Poll::Ready(ToSwarm::GenerateEvent(Event::GatewayNotFound));
}
}
}
Poll::Pending => return Poll::Pending,
},
GatewayState::Available(ref mut gateway) => {
// Poll pending mapping requests.
if let Poll::Ready(Some(result)) = gateway.receiver.poll_next_unpin(cx) {
match result {
GatewayEvent::Mapped(mapping) => {
let new_state = MappingState::Active(Delay::new(
Duration::from_secs(MAPPING_TIMEOUT),
));
match self
.mappings
.insert(mapping.clone(), new_state)
.expect("mapping should exist")
{
MappingState::Pending => {
let external_multiaddr =
mapping.external_addr(gateway.external_addr);
self.pending_events.push_back(Event::NewExternalAddr(
external_multiaddr.clone(),
));
tracing::debug!(
address=%mapping.internal_addr,
protocol=%mapping.protocol,
"successfully mapped UPnP for protocol"
);
return Poll::Ready(ToSwarm::ExternalAddrConfirmed(
external_multiaddr,
));
}
MappingState::Active(_) => {
tracing::debug!(
address=%mapping.internal_addr,
protocol=%mapping.protocol,
"successfully renewed UPnP mapping for protocol"
);
}
_ => unreachable!(),
}
}
GatewayEvent::MapFailure(mapping, err) => {
match self
.mappings
.insert(mapping.clone(), MappingState::Failed)
.expect("mapping should exist")
{
MappingState::Active(_) => {
tracing::debug!(
address=%mapping.internal_addr,
protocol=%mapping.protocol,
"failed to remap UPnP mapped for protocol: {err}"
);
let external_multiaddr =
mapping.external_addr(gateway.external_addr);
self.pending_events.push_back(Event::ExpiredExternalAddr(
external_multiaddr.clone(),
));
return Poll::Ready(ToSwarm::ExternalAddrExpired(
external_multiaddr,
));
}
MappingState::Pending => {
tracing::debug!(
address=%mapping.internal_addr,
protocol=%mapping.protocol,
"failed to map UPnP mapped for protocol: {err}"
);
}
_ => {
unreachable!()
}
}
}
GatewayEvent::Removed(mapping) => {
tracing::debug!(
address=%mapping.internal_addr,
protocol=%mapping.protocol,
"successfully removed UPnP mapping for protocol"
);
self.mappings
.remove(&mapping)
.expect("mapping should exist");
}
GatewayEvent::RemovalFailure(mapping, err) => {
tracing::debug!(
address=%mapping.internal_addr,
protocol=%mapping.protocol,
"could not remove UPnP mapping for protocol: {err}"
);
if let Err(err) = gateway
.sender
.try_send(GatewayRequest::RemoveMapping(mapping.clone()))
{
tracing::debug!(
multiaddress=%mapping.multiaddr,
"could not request port removal for multiaddress on the gateway: {}",
err
);
}
}
}
}
// Renew expired and request inactive mappings.
self.mappings.renew(gateway, cx);
return Poll::Pending;
}
_ => return Poll::Pending,
}
}
}
}
/// Extracts a [`SocketAddrV4`] and [`PortMappingProtocol`] from a given [`Multiaddr`].
///
/// Fails if the given [`Multiaddr`] does not begin with an IP
/// protocol encapsulating a TCP or UDP port.
fn multiaddr_to_socketaddr_protocol(
addr: Multiaddr,
) -> Result<(SocketAddr, PortMappingProtocol), ()> {
let mut iter = addr.into_iter();
match iter.next() {
// Idg only supports Ipv4.
Some(multiaddr::Protocol::Ip4(ipv4)) if ipv4.is_private() => match iter.next() {
Some(multiaddr::Protocol::Tcp(port)) => {
return Ok((
SocketAddr::V4(SocketAddrV4::new(ipv4, port)),
PortMappingProtocol::TCP,
));
}
Some(multiaddr::Protocol::Udp(port)) => {
return Ok((
SocketAddr::V4(SocketAddrV4::new(ipv4, port)),
PortMappingProtocol::UDP,
));
}
_ => {}
},
_ => {}
}
Err(())
}