diff options
author | Thales Fragoso <thales.fragosoz@gmail.com> | 2021-06-20 16:46:26 -0300 |
---|---|---|
committer | Thales Fragoso <thales.fragosoz@gmail.com> | 2021-06-20 17:15:18 -0300 |
commit | aca0fb10651359b5a3939f7424ac0a78ef20cc27 (patch) | |
tree | e47b640f37c9daab65f2577f6a23e4e2b12be290 /embassy-net | |
parent | 06d69a802856f9064c41dae814070b4e1ad5cf02 (diff) | |
download | embassy-aca0fb10651359b5a3939f7424ac0a78ef20cc27.zip |
net: Make the user pass in the StackResources in init
By having the user pass in the resources, we can make them generic, this way
the user can choose the size of the individual resources
Diffstat (limited to 'embassy-net')
-rw-r--r-- | embassy-net/src/lib.rs | 2 | ||||
-rw-r--r-- | embassy-net/src/stack.rs | 54 |
2 files changed, 30 insertions, 26 deletions
diff --git a/embassy-net/src/lib.rs b/embassy-net/src/lib.rs index 51eb97a2..47a3650b 100644 --- a/embassy-net/src/lib.rs +++ b/embassy-net/src/lib.rs @@ -14,7 +14,7 @@ pub use config::{Config, Configurator, Event as ConfigEvent, StaticConfigurator} pub use device::{Device, LinkState}; pub use packet_pool::{Packet, PacketBox, PacketBoxExt, PacketBuf, MTU}; -pub use stack::{init, is_config_up, is_init, is_link_up, run}; +pub use stack::{init, is_config_up, is_init, is_link_up, run, StackResources}; #[cfg(feature = "tcp")] mod tcp_socket; diff --git a/embassy-net/src/stack.rs b/embassy-net/src/stack.rs index a38f0095..5e795a4f 100644 --- a/embassy-net/src/stack.rs +++ b/embassy-net/src/stack.rs @@ -4,7 +4,7 @@ use core::task::Context; use core::task::Poll; use embassy::time::{Instant, Timer}; use embassy::util::ThreadModeMutex; -use embassy::util::{Forever, WakerRegistration}; +use embassy::util::WakerRegistration; use futures::pin_mut; use smoltcp::iface::InterfaceBuilder; #[cfg(feature = "medium-ethernet")] @@ -22,23 +22,34 @@ use crate::config::Event; use crate::device::{Device, DeviceAdapter, LinkState}; use crate::{Interface, SocketSet}; -const ADDRESSES_LEN: usize = 1; -const NEIGHBOR_CACHE_LEN: usize = 8; -const SOCKETS_LEN: usize = 2; const LOCAL_PORT_MIN: u16 = 1025; const LOCAL_PORT_MAX: u16 = 65535; -struct StackResources { - addresses: [IpCidr; ADDRESSES_LEN], - sockets: [Option<SocketSetItem<'static>>; SOCKETS_LEN], +pub struct StackResources<const ADDR: usize, const SOCK: usize, const NEIGHBOR: usize> { + addresses: [IpCidr; ADDR], + sockets: [Option<SocketSetItem<'static>>; SOCK], #[cfg(feature = "medium-ethernet")] routes: [Option<(IpCidr, Route)>; 1], #[cfg(feature = "medium-ethernet")] - neighbor_cache: [Option<(IpAddress, Neighbor)>; NEIGHBOR_CACHE_LEN], + neighbor_cache: [Option<(IpAddress, Neighbor)>; NEIGHBOR], +} + +impl<const ADDR: usize, const SOCK: usize, const NEIGHBOR: usize> + StackResources<ADDR, SOCK, NEIGHBOR> +{ + pub fn new() -> Self { + const NONE_SOCKET: Option<SocketSetItem<'static>> = None; + + Self { + addresses: [IpCidr::new(Ipv4Address::UNSPECIFIED.into(), 32); ADDR], + sockets: [NONE_SOCKET; SOCK], + routes: [None; 1], + neighbor_cache: [None; NEIGHBOR], + } + } } -static STACK_RESOURCES: Forever<StackResources> = Forever::new(); static STACK: ThreadModeMutex<RefCell<Option<Stack>>> = ThreadModeMutex::new(RefCell::new(None)); pub(crate) struct Stack { @@ -164,18 +175,11 @@ fn set_ipv4_addr(iface: &mut Interface, cidr: Ipv4Cidr) { /// Initialize embassy_net. /// This function must be called from thread mode. -pub fn init(device: &'static mut dyn Device, configurator: &'static mut dyn Configurator) { - const NONE_SOCKET: Option<SocketSetItem<'static>> = None; - let res = STACK_RESOURCES.put(StackResources { - addresses: [IpCidr::new(Ipv4Address::UNSPECIFIED.into(), 32)], - sockets: [NONE_SOCKET; SOCKETS_LEN], - - #[cfg(feature = "medium-ethernet")] - routes: [None; 1], - #[cfg(feature = "medium-ethernet")] - neighbor_cache: [None; NEIGHBOR_CACHE_LEN], - }); - +pub fn init<const ADDR: usize, const SOCK: usize, const NEIGH: usize>( + device: &'static mut dyn Device, + configurator: &'static mut dyn Configurator, + resources: &'static mut StackResources<ADDR, SOCK, NEIGH>, +) { let medium = device.capabilities().medium; #[cfg(feature = "medium-ethernet")] @@ -186,18 +190,18 @@ pub fn init(device: &'static mut dyn Device, configurator: &'static mut dyn Conf }; let mut b = InterfaceBuilder::new(DeviceAdapter::new(device)); - b = b.ip_addrs(&mut res.addresses[..]); + b = b.ip_addrs(&mut resources.addresses[..]); #[cfg(feature = "medium-ethernet")] if medium == Medium::Ethernet { b = b.ethernet_addr(EthernetAddress(ethernet_addr)); - b = b.neighbor_cache(NeighborCache::new(&mut res.neighbor_cache[..])); - b = b.routes(Routes::new(&mut res.routes[..])); + b = b.neighbor_cache(NeighborCache::new(&mut resources.neighbor_cache[..])); + b = b.routes(Routes::new(&mut resources.routes[..])); } let iface = b.finalize(); - let sockets = SocketSet::new(&mut res.sockets[..]); + let sockets = SocketSet::new(&mut resources.sockets[..]); let local_port = loop { let mut res = [0u8; 2]; |