2021-02-03 05:09:37 +01:00
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
2022-11-21 23:31:31 +01:00
|
|
|
#![cfg_attr(
|
|
|
|
feature = "nightly",
|
|
|
|
feature(type_alias_impl_trait, async_fn_in_trait, impl_trait_projections)
|
|
|
|
)]
|
|
|
|
#![cfg_attr(feature = "nightly", allow(incomplete_features))]
|
2021-02-03 05:09:37 +01:00
|
|
|
|
|
|
|
// This mod MUST go first, so that the others see its macros.
|
|
|
|
pub(crate) mod fmt;
|
|
|
|
|
2022-12-07 15:55:46 +01:00
|
|
|
pub mod device;
|
2021-04-07 19:06:45 +02:00
|
|
|
#[cfg(feature = "tcp")]
|
2022-05-04 20:48:37 +02:00
|
|
|
pub mod tcp;
|
2022-07-28 10:25:47 +02:00
|
|
|
#[cfg(feature = "udp")]
|
|
|
|
pub mod udp;
|
|
|
|
|
2022-12-07 16:02:28 +01:00
|
|
|
use core::cell::RefCell;
|
|
|
|
use core::future::{poll_fn, Future};
|
|
|
|
use core::task::{Context, Poll};
|
|
|
|
|
2022-12-26 03:33:49 +01:00
|
|
|
use embassy_net_driver::{Driver, LinkState, Medium};
|
2022-12-07 16:02:28 +01:00
|
|
|
use embassy_sync::waitqueue::WakerRegistration;
|
|
|
|
use embassy_time::{Instant, Timer};
|
|
|
|
use futures::pin_mut;
|
|
|
|
use heapless::Vec;
|
2023-01-18 09:56:38 +01:00
|
|
|
#[cfg(feature = "medium-ethernet")]
|
|
|
|
use smoltcp::iface::Routes;
|
2022-12-07 16:02:28 +01:00
|
|
|
#[cfg(feature = "dhcpv4")]
|
|
|
|
use smoltcp::iface::SocketHandle;
|
|
|
|
use smoltcp::iface::{Interface, InterfaceBuilder, SocketSet, SocketStorage};
|
|
|
|
#[cfg(feature = "dhcpv4")]
|
|
|
|
use smoltcp::socket::dhcpv4;
|
2023-01-18 10:10:33 +01:00
|
|
|
use smoltcp::socket::dhcpv4::RetryConfig;
|
|
|
|
use smoltcp::time::Duration;
|
2021-02-03 05:09:37 +01:00
|
|
|
// smoltcp reexports
|
2022-06-12 22:15:44 +02:00
|
|
|
pub use smoltcp::time::{Duration as SmolDuration, Instant as SmolInstant};
|
2021-11-26 20:39:21 +01:00
|
|
|
#[cfg(feature = "medium-ethernet")]
|
|
|
|
pub use smoltcp::wire::{EthernetAddress, HardwareAddress};
|
|
|
|
pub use smoltcp::wire::{IpAddress, IpCidr, Ipv4Address, Ipv4Cidr};
|
2022-06-01 13:48:09 +02:00
|
|
|
#[cfg(feature = "proto-ipv6")]
|
|
|
|
pub use smoltcp::wire::{Ipv6Address, Ipv6Cidr};
|
2022-07-28 10:25:47 +02:00
|
|
|
#[cfg(feature = "udp")]
|
|
|
|
pub use smoltcp::{socket::udp::PacketMetadata, wire::IpListenEndpoint};
|
2022-12-07 16:02:28 +01:00
|
|
|
|
2022-12-26 03:33:49 +01:00
|
|
|
use crate::device::DriverAdapter;
|
2022-12-07 16:02:28 +01:00
|
|
|
|
|
|
|
const LOCAL_PORT_MIN: u16 = 1025;
|
|
|
|
const LOCAL_PORT_MAX: u16 = 65535;
|
|
|
|
|
2023-01-18 10:10:33 +01:00
|
|
|
pub struct StackResources<const SOCK: usize> {
|
2022-12-07 16:02:28 +01:00
|
|
|
sockets: [SocketStorage<'static>; SOCK],
|
|
|
|
}
|
|
|
|
|
2023-01-18 10:10:33 +01:00
|
|
|
impl<const SOCK: usize> StackResources<SOCK> {
|
2022-12-07 16:02:28 +01:00
|
|
|
pub fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
sockets: [SocketStorage::EMPTY; SOCK],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
2023-01-18 10:10:33 +01:00
|
|
|
pub struct StaticConfig {
|
2022-12-07 16:02:28 +01:00
|
|
|
pub address: Ipv4Cidr,
|
|
|
|
pub gateway: Option<Ipv4Address>,
|
|
|
|
pub dns_servers: Vec<Ipv4Address, 3>,
|
|
|
|
}
|
|
|
|
|
2023-01-18 10:10:33 +01:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct DhcpConfig {
|
|
|
|
pub max_lease_duration: Option<Duration>,
|
|
|
|
pub retry_config: RetryConfig,
|
|
|
|
/// Ignore NAKs.
|
|
|
|
pub ignore_naks: bool,
|
|
|
|
/// Server port config
|
|
|
|
pub server_port: u16,
|
|
|
|
/// Client port config
|
|
|
|
pub client_port: u16,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for DhcpConfig {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {
|
|
|
|
max_lease_duration: Default::default(),
|
|
|
|
retry_config: Default::default(),
|
|
|
|
ignore_naks: Default::default(),
|
|
|
|
server_port: smoltcp::wire::DHCP_SERVER_PORT,
|
|
|
|
client_port: smoltcp::wire::DHCP_CLIENT_PORT,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum Config {
|
|
|
|
Static(StaticConfig),
|
2022-12-07 16:02:28 +01:00
|
|
|
#[cfg(feature = "dhcpv4")]
|
2023-01-18 10:10:33 +01:00
|
|
|
Dhcp(DhcpConfig),
|
2022-12-07 16:02:28 +01:00
|
|
|
}
|
|
|
|
|
2022-12-26 03:33:49 +01:00
|
|
|
pub struct Stack<D: Driver> {
|
2022-12-07 16:02:28 +01:00
|
|
|
pub(crate) socket: RefCell<SocketStack>,
|
|
|
|
inner: RefCell<Inner<D>>,
|
|
|
|
}
|
|
|
|
|
2022-12-26 03:33:49 +01:00
|
|
|
struct Inner<D: Driver> {
|
2022-12-07 16:02:28 +01:00
|
|
|
device: D,
|
|
|
|
link_up: bool,
|
2023-01-18 10:10:33 +01:00
|
|
|
config: Option<StaticConfig>,
|
2022-12-07 16:02:28 +01:00
|
|
|
#[cfg(feature = "dhcpv4")]
|
|
|
|
dhcp_socket: Option<SocketHandle>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) struct SocketStack {
|
|
|
|
pub(crate) sockets: SocketSet<'static>,
|
|
|
|
pub(crate) iface: Interface<'static>,
|
|
|
|
pub(crate) waker: WakerRegistration,
|
|
|
|
next_local_port: u16,
|
|
|
|
}
|
|
|
|
|
2022-12-26 03:33:49 +01:00
|
|
|
impl<D: Driver + 'static> Stack<D> {
|
2023-01-18 10:10:33 +01:00
|
|
|
pub fn new<const SOCK: usize>(
|
2022-12-07 16:02:28 +01:00
|
|
|
mut device: D,
|
2023-01-18 10:10:33 +01:00
|
|
|
config: Config,
|
|
|
|
resources: &'static mut StackResources<SOCK>,
|
2022-12-07 16:02:28 +01:00
|
|
|
random_seed: u64,
|
|
|
|
) -> Self {
|
|
|
|
#[cfg(feature = "medium-ethernet")]
|
|
|
|
let medium = device.capabilities().medium;
|
|
|
|
|
|
|
|
let mut b = InterfaceBuilder::new();
|
|
|
|
b = b.random_seed(random_seed);
|
|
|
|
|
|
|
|
#[cfg(feature = "medium-ethernet")]
|
|
|
|
if medium == Medium::Ethernet {
|
2022-12-27 01:04:55 +01:00
|
|
|
b = b.hardware_addr(HardwareAddress::Ethernet(EthernetAddress(device.ethernet_address())));
|
2023-01-18 09:56:38 +01:00
|
|
|
b = b.routes(Routes::new());
|
2022-12-07 16:02:28 +01:00
|
|
|
}
|
|
|
|
|
2022-12-26 03:33:49 +01:00
|
|
|
let iface = b.finalize(&mut DriverAdapter {
|
2022-12-07 16:02:28 +01:00
|
|
|
inner: &mut device,
|
|
|
|
cx: None,
|
|
|
|
});
|
|
|
|
|
|
|
|
let sockets = SocketSet::new(&mut resources.sockets[..]);
|
|
|
|
|
|
|
|
let next_local_port = (random_seed % (LOCAL_PORT_MAX - LOCAL_PORT_MIN) as u64) as u16 + LOCAL_PORT_MIN;
|
|
|
|
|
|
|
|
let mut inner = Inner {
|
|
|
|
device,
|
|
|
|
link_up: false,
|
|
|
|
config: None,
|
|
|
|
#[cfg(feature = "dhcpv4")]
|
|
|
|
dhcp_socket: None,
|
|
|
|
};
|
|
|
|
let mut socket = SocketStack {
|
|
|
|
sockets,
|
|
|
|
iface,
|
|
|
|
waker: WakerRegistration::new(),
|
|
|
|
next_local_port,
|
|
|
|
};
|
|
|
|
|
|
|
|
match config {
|
2023-01-18 10:10:33 +01:00
|
|
|
Config::Static(config) => inner.apply_config(&mut socket, config),
|
2022-12-07 16:02:28 +01:00
|
|
|
#[cfg(feature = "dhcpv4")]
|
2023-01-18 10:10:33 +01:00
|
|
|
Config::Dhcp(config) => {
|
|
|
|
let mut dhcp_socket = smoltcp::socket::dhcpv4::Socket::new();
|
|
|
|
inner.apply_dhcp_config(&mut dhcp_socket, config);
|
|
|
|
let handle = socket.sockets.add(dhcp_socket);
|
2022-12-07 16:02:28 +01:00
|
|
|
inner.dhcp_socket = Some(handle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Self {
|
|
|
|
socket: RefCell::new(socket),
|
|
|
|
inner: RefCell::new(inner),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn with<R>(&self, f: impl FnOnce(&SocketStack, &Inner<D>) -> R) -> R {
|
|
|
|
f(&*self.socket.borrow(), &*self.inner.borrow())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn with_mut<R>(&self, f: impl FnOnce(&mut SocketStack, &mut Inner<D>) -> R) -> R {
|
|
|
|
f(&mut *self.socket.borrow_mut(), &mut *self.inner.borrow_mut())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn ethernet_address(&self) -> [u8; 6] {
|
|
|
|
self.with(|_s, i| i.device.ethernet_address())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_link_up(&self) -> bool {
|
|
|
|
self.with(|_s, i| i.link_up)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_config_up(&self) -> bool {
|
|
|
|
self.with(|_s, i| i.config.is_some())
|
|
|
|
}
|
|
|
|
|
2023-01-18 10:10:33 +01:00
|
|
|
pub fn config(&self) -> Option<StaticConfig> {
|
2022-12-07 16:02:28 +01:00
|
|
|
self.with(|_s, i| i.config.clone())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn run(&self) -> ! {
|
|
|
|
poll_fn(|cx| {
|
|
|
|
self.with_mut(|s, i| i.poll(cx, s));
|
|
|
|
Poll::<()>::Pending
|
|
|
|
})
|
|
|
|
.await;
|
|
|
|
unreachable!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SocketStack {
|
2023-01-18 10:10:33 +01:00
|
|
|
#[allow(clippy::absurd_extreme_comparisons, dead_code)]
|
2022-12-07 16:02:28 +01:00
|
|
|
pub fn get_local_port(&mut self) -> u16 {
|
|
|
|
let res = self.next_local_port;
|
|
|
|
self.next_local_port = if res >= LOCAL_PORT_MAX { LOCAL_PORT_MIN } else { res + 1 };
|
|
|
|
res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-26 03:33:49 +01:00
|
|
|
impl<D: Driver + 'static> Inner<D> {
|
2023-01-18 10:10:33 +01:00
|
|
|
fn apply_config(&mut self, s: &mut SocketStack, config: StaticConfig) {
|
2022-12-07 16:02:28 +01:00
|
|
|
#[cfg(feature = "medium-ethernet")]
|
|
|
|
let medium = self.device.capabilities().medium;
|
|
|
|
|
|
|
|
debug!("Acquired IP configuration:");
|
|
|
|
|
|
|
|
debug!(" IP address: {}", config.address);
|
|
|
|
self.set_ipv4_addr(s, config.address);
|
|
|
|
|
|
|
|
#[cfg(feature = "medium-ethernet")]
|
|
|
|
if medium == Medium::Ethernet {
|
|
|
|
if let Some(gateway) = config.gateway {
|
|
|
|
debug!(" Default gateway: {}", gateway);
|
|
|
|
s.iface.routes_mut().add_default_ipv4_route(gateway).unwrap();
|
|
|
|
} else {
|
|
|
|
debug!(" Default gateway: None");
|
|
|
|
s.iface.routes_mut().remove_default_ipv4_route();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i, s) in config.dns_servers.iter().enumerate() {
|
|
|
|
debug!(" DNS server {}: {}", i, s);
|
|
|
|
}
|
|
|
|
|
|
|
|
self.config = Some(config)
|
|
|
|
}
|
|
|
|
|
2023-01-18 10:10:33 +01:00
|
|
|
fn apply_dhcp_config(&self, socket: &mut smoltcp::socket::dhcpv4::Socket, config: DhcpConfig) {
|
|
|
|
socket.set_ignore_naks(config.ignore_naks);
|
|
|
|
socket.set_max_lease_duration(config.max_lease_duration);
|
|
|
|
socket.set_ports(config.server_port, config.client_port);
|
|
|
|
socket.set_retry_config(config.retry_config);
|
|
|
|
}
|
|
|
|
|
2022-12-07 16:02:28 +01:00
|
|
|
#[allow(unused)] // used only with dhcp
|
|
|
|
fn unapply_config(&mut self, s: &mut SocketStack) {
|
|
|
|
#[cfg(feature = "medium-ethernet")]
|
|
|
|
let medium = self.device.capabilities().medium;
|
|
|
|
|
|
|
|
debug!("Lost IP configuration");
|
|
|
|
self.set_ipv4_addr(s, Ipv4Cidr::new(Ipv4Address::UNSPECIFIED, 0));
|
|
|
|
#[cfg(feature = "medium-ethernet")]
|
|
|
|
if medium == Medium::Ethernet {
|
|
|
|
s.iface.routes_mut().remove_default_ipv4_route();
|
|
|
|
}
|
|
|
|
self.config = None
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_ipv4_addr(&mut self, s: &mut SocketStack, cidr: Ipv4Cidr) {
|
|
|
|
s.iface.update_ip_addrs(|addrs| {
|
|
|
|
let dest = addrs.iter_mut().next().unwrap();
|
|
|
|
*dest = IpCidr::Ipv4(cidr);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
fn poll(&mut self, cx: &mut Context<'_>, s: &mut SocketStack) {
|
|
|
|
s.waker.register(cx.waker());
|
|
|
|
|
2022-12-27 01:04:55 +01:00
|
|
|
#[cfg(feature = "medium-ethernet")]
|
|
|
|
if self.device.capabilities().medium == Medium::Ethernet {
|
|
|
|
s.iface.set_hardware_addr(HardwareAddress::Ethernet(EthernetAddress(
|
|
|
|
self.device.ethernet_address(),
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
|
2022-12-07 16:02:28 +01:00
|
|
|
let timestamp = instant_to_smoltcp(Instant::now());
|
2022-12-26 03:33:49 +01:00
|
|
|
let mut smoldev = DriverAdapter {
|
2022-12-07 16:02:28 +01:00
|
|
|
cx: Some(cx),
|
|
|
|
inner: &mut self.device,
|
|
|
|
};
|
2023-01-18 09:56:38 +01:00
|
|
|
if !s.iface.poll(timestamp, &mut smoldev, &mut s.sockets) {
|
2022-12-07 16:02:28 +01:00
|
|
|
// If poll() returns error, it may not be done yet, so poll again later.
|
|
|
|
cx.waker().wake_by_ref();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update link up
|
|
|
|
let old_link_up = self.link_up;
|
|
|
|
self.link_up = self.device.link_state(cx) == LinkState::Up;
|
|
|
|
|
|
|
|
// Print when changed
|
|
|
|
if old_link_up != self.link_up {
|
|
|
|
info!("link_up = {:?}", self.link_up);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "dhcpv4")]
|
|
|
|
if let Some(dhcp_handle) = self.dhcp_socket {
|
|
|
|
let socket = s.sockets.get_mut::<dhcpv4::Socket>(dhcp_handle);
|
|
|
|
|
|
|
|
if self.link_up {
|
|
|
|
match socket.poll() {
|
|
|
|
None => {}
|
|
|
|
Some(dhcpv4::Event::Deconfigured) => self.unapply_config(s),
|
|
|
|
Some(dhcpv4::Event::Configured(config)) => {
|
2023-01-18 10:10:33 +01:00
|
|
|
let config = StaticConfig {
|
2022-12-07 16:02:28 +01:00
|
|
|
address: config.address,
|
|
|
|
gateway: config.router,
|
|
|
|
dns_servers: config.dns_servers,
|
|
|
|
};
|
|
|
|
self.apply_config(s, config)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if old_link_up {
|
|
|
|
socket.reset();
|
|
|
|
self.unapply_config(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//if old_link_up || self.link_up {
|
|
|
|
// self.poll_configurator(timestamp)
|
|
|
|
//}
|
|
|
|
|
|
|
|
if let Some(poll_at) = s.iface.poll_at(timestamp, &mut s.sockets) {
|
|
|
|
let t = Timer::at(instant_from_smoltcp(poll_at));
|
|
|
|
pin_mut!(t);
|
|
|
|
if t.poll(cx).is_ready() {
|
|
|
|
cx.waker().wake_by_ref();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn instant_to_smoltcp(instant: Instant) -> SmolInstant {
|
|
|
|
SmolInstant::from_millis(instant.as_millis() as i64)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn instant_from_smoltcp(instant: SmolInstant) -> Instant {
|
|
|
|
Instant::from_millis(instant.total_millis() as u64)
|
|
|
|
}
|