2022-05-23 03:50:43 +02:00
|
|
|
use core::cell::UnsafeCell;
|
2022-05-19 05:54:15 +02:00
|
|
|
use core::future::Future;
|
2021-02-03 05:09:37 +01:00
|
|
|
use core::mem;
|
2022-05-04 20:48:37 +02:00
|
|
|
use core::task::Poll;
|
2022-06-12 22:15:44 +02:00
|
|
|
|
2022-05-19 05:54:15 +02:00
|
|
|
use futures::future::poll_fn;
|
2022-05-23 03:50:43 +02:00
|
|
|
use smoltcp::iface::{Interface, SocketHandle};
|
|
|
|
use smoltcp::socket::tcp;
|
2021-02-03 05:09:37 +01:00
|
|
|
use smoltcp::time::Duration;
|
2022-06-12 22:15:44 +02:00
|
|
|
use smoltcp::wire::{IpEndpoint, IpListenEndpoint};
|
2022-05-23 03:50:43 +02:00
|
|
|
|
2022-06-12 22:15:44 +02:00
|
|
|
use super::stack::Stack;
|
2022-05-23 03:50:43 +02:00
|
|
|
use crate::stack::SocketStack;
|
|
|
|
use crate::Device;
|
2021-02-03 05:09:37 +01:00
|
|
|
|
2022-05-04 20:48:37 +02:00
|
|
|
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
pub enum Error {
|
|
|
|
ConnectionReset,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
pub enum ConnectError {
|
|
|
|
/// The socket is already connected or listening.
|
|
|
|
InvalidState,
|
|
|
|
/// The remote host rejected the connection with a RST packet.
|
|
|
|
ConnectionReset,
|
|
|
|
/// Connect timed out.
|
|
|
|
TimedOut,
|
|
|
|
/// No route to host.
|
|
|
|
NoRoute,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
pub enum AcceptError {
|
|
|
|
/// The socket is already connected or listening.
|
|
|
|
InvalidState,
|
|
|
|
/// Invalid listen port
|
|
|
|
InvalidPort,
|
|
|
|
/// The remote host rejected the connection with a RST packet.
|
|
|
|
ConnectionReset,
|
|
|
|
}
|
2021-02-03 05:09:37 +01:00
|
|
|
|
|
|
|
pub struct TcpSocket<'a> {
|
2022-05-23 03:50:43 +02:00
|
|
|
io: TcpIo<'a>,
|
2021-02-03 05:09:37 +01:00
|
|
|
}
|
|
|
|
|
2022-05-13 22:15:27 +02:00
|
|
|
pub struct TcpReader<'a> {
|
2022-05-23 03:50:43 +02:00
|
|
|
io: TcpIo<'a>,
|
2022-05-13 22:15:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct TcpWriter<'a> {
|
2022-05-23 03:50:43 +02:00
|
|
|
io: TcpIo<'a>,
|
2022-05-13 22:15:27 +02:00
|
|
|
}
|
|
|
|
|
2021-02-03 05:09:37 +01:00
|
|
|
impl<'a> TcpSocket<'a> {
|
2022-06-12 22:15:44 +02:00
|
|
|
pub fn new<D: Device>(stack: &'a Stack<D>, rx_buffer: &'a mut [u8], tx_buffer: &'a mut [u8]) -> Self {
|
2022-05-23 03:50:43 +02:00
|
|
|
// safety: not accessed reentrantly.
|
|
|
|
let s = unsafe { &mut *stack.socket.get() };
|
|
|
|
let rx_buffer: &'static mut [u8] = unsafe { mem::transmute(rx_buffer) };
|
|
|
|
let tx_buffer: &'static mut [u8] = unsafe { mem::transmute(tx_buffer) };
|
|
|
|
let handle = s.sockets.add(tcp::Socket::new(
|
|
|
|
tcp::SocketBuffer::new(rx_buffer),
|
|
|
|
tcp::SocketBuffer::new(tx_buffer),
|
|
|
|
));
|
2021-02-03 05:09:37 +01:00
|
|
|
|
|
|
|
Self {
|
2022-05-23 03:50:43 +02:00
|
|
|
io: TcpIo {
|
|
|
|
stack: &stack.socket,
|
|
|
|
handle,
|
|
|
|
},
|
2021-02-03 05:09:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-13 22:15:27 +02:00
|
|
|
pub fn split(&mut self) -> (TcpReader<'_>, TcpWriter<'_>) {
|
2022-05-23 03:50:43 +02:00
|
|
|
(TcpReader { io: self.io }, TcpWriter { io: self.io })
|
2022-05-13 22:15:27 +02:00
|
|
|
}
|
|
|
|
|
2022-05-04 20:48:37 +02:00
|
|
|
pub async fn connect<T>(&mut self, remote_endpoint: T) -> Result<(), ConnectError>
|
2021-02-03 05:09:37 +01:00
|
|
|
where
|
|
|
|
T: Into<IpEndpoint>,
|
|
|
|
{
|
2022-05-23 03:50:43 +02:00
|
|
|
// safety: not accessed reentrantly.
|
|
|
|
let local_port = unsafe { &mut *self.io.stack.get() }.get_local_port();
|
|
|
|
|
|
|
|
// safety: not accessed reentrantly.
|
2022-06-12 22:15:44 +02:00
|
|
|
match unsafe { self.io.with_mut(|s, i| s.connect(i, remote_endpoint, local_port)) } {
|
2022-05-04 20:48:37 +02:00
|
|
|
Ok(()) => {}
|
2022-05-23 03:50:43 +02:00
|
|
|
Err(tcp::ConnectError::InvalidState) => return Err(ConnectError::InvalidState),
|
|
|
|
Err(tcp::ConnectError::Unaddressable) => return Err(ConnectError::NoRoute),
|
2022-05-04 20:48:37 +02:00
|
|
|
}
|
2021-02-03 05:09:37 +01:00
|
|
|
|
2022-05-23 03:50:43 +02:00
|
|
|
futures::future::poll_fn(|cx| unsafe {
|
|
|
|
self.io.with_mut(|s, _| match s.state() {
|
2022-06-12 22:15:44 +02:00
|
|
|
tcp::State::Closed | tcp::State::TimeWait => Poll::Ready(Err(ConnectError::ConnectionReset)),
|
2022-05-23 03:50:43 +02:00
|
|
|
tcp::State::Listen => unreachable!(),
|
|
|
|
tcp::State::SynSent | tcp::State::SynReceived => {
|
2021-02-03 05:09:37 +01:00
|
|
|
s.register_send_waker(cx.waker());
|
|
|
|
Poll::Pending
|
|
|
|
}
|
|
|
|
_ => Poll::Ready(Ok(())),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
|
2022-05-04 20:48:37 +02:00
|
|
|
pub async fn accept<T>(&mut self, local_endpoint: T) -> Result<(), AcceptError>
|
2021-11-04 13:34:13 +01:00
|
|
|
where
|
2022-05-23 03:50:43 +02:00
|
|
|
T: Into<IpListenEndpoint>,
|
2021-11-04 13:34:13 +01:00
|
|
|
{
|
2022-05-23 03:50:43 +02:00
|
|
|
// safety: not accessed reentrantly.
|
|
|
|
match unsafe { self.io.with_mut(|s, _| s.listen(local_endpoint)) } {
|
2022-05-04 20:48:37 +02:00
|
|
|
Ok(()) => {}
|
2022-05-23 03:50:43 +02:00
|
|
|
Err(tcp::ListenError::InvalidState) => return Err(AcceptError::InvalidState),
|
|
|
|
Err(tcp::ListenError::Unaddressable) => return Err(AcceptError::InvalidPort),
|
2022-05-04 20:48:37 +02:00
|
|
|
}
|
2021-11-04 13:34:13 +01:00
|
|
|
|
2022-05-23 03:50:43 +02:00
|
|
|
futures::future::poll_fn(|cx| unsafe {
|
|
|
|
self.io.with_mut(|s, _| match s.state() {
|
|
|
|
tcp::State::Listen | tcp::State::SynSent | tcp::State::SynReceived => {
|
2021-11-04 13:34:13 +01:00
|
|
|
s.register_send_waker(cx.waker());
|
|
|
|
Poll::Pending
|
|
|
|
}
|
|
|
|
_ => Poll::Ready(Ok(())),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
|
2021-02-03 05:09:37 +01:00
|
|
|
pub fn set_timeout(&mut self, duration: Option<Duration>) {
|
2022-05-23 03:50:43 +02:00
|
|
|
unsafe { self.io.with_mut(|s, _| s.set_timeout(duration)) }
|
2021-02-03 05:09:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_keep_alive(&mut self, interval: Option<Duration>) {
|
2022-05-23 03:50:43 +02:00
|
|
|
unsafe { self.io.with_mut(|s, _| s.set_keep_alive(interval)) }
|
2021-02-03 05:09:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_hop_limit(&mut self, hop_limit: Option<u8>) {
|
2022-05-23 03:50:43 +02:00
|
|
|
unsafe { self.io.with_mut(|s, _| s.set_hop_limit(hop_limit)) }
|
2021-02-03 05:09:37 +01:00
|
|
|
}
|
|
|
|
|
2022-05-23 03:50:43 +02:00
|
|
|
pub fn local_endpoint(&self) -> Option<IpEndpoint> {
|
|
|
|
unsafe { self.io.with(|s, _| s.local_endpoint()) }
|
2021-02-03 05:09:37 +01:00
|
|
|
}
|
|
|
|
|
2022-05-23 03:50:43 +02:00
|
|
|
pub fn remote_endpoint(&self) -> Option<IpEndpoint> {
|
|
|
|
unsafe { self.io.with(|s, _| s.remote_endpoint()) }
|
2021-02-03 05:09:37 +01:00
|
|
|
}
|
|
|
|
|
2022-05-23 03:50:43 +02:00
|
|
|
pub fn state(&self) -> tcp::State {
|
|
|
|
unsafe { self.io.with(|s, _| s.state()) }
|
2021-02-03 05:09:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn close(&mut self) {
|
2022-05-23 03:50:43 +02:00
|
|
|
unsafe { self.io.with_mut(|s, _| s.close()) }
|
2021-02-03 05:09:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn abort(&mut self) {
|
2022-05-23 03:50:43 +02:00
|
|
|
unsafe { self.io.with_mut(|s, _| s.abort()) }
|
2021-02-03 05:09:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn may_send(&self) -> bool {
|
2022-05-23 03:50:43 +02:00
|
|
|
unsafe { self.io.with(|s, _| s.may_send()) }
|
2021-02-03 05:09:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn may_recv(&self) -> bool {
|
2022-05-23 03:50:43 +02:00
|
|
|
unsafe { self.io.with(|s, _| s.may_recv()) }
|
2021-02-03 05:09:37 +01:00
|
|
|
}
|
2022-05-13 22:15:27 +02:00
|
|
|
}
|
2021-02-03 05:09:37 +01:00
|
|
|
|
|
|
|
impl<'a> Drop for TcpSocket<'a> {
|
|
|
|
fn drop(&mut self) {
|
2022-05-23 03:50:43 +02:00
|
|
|
// safety: not accessed reentrantly.
|
|
|
|
let s = unsafe { &mut *self.io.stack.get() };
|
|
|
|
s.sockets.remove(self.io.handle);
|
2021-02-03 05:09:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-23 03:50:43 +02:00
|
|
|
// =======================
|
2021-02-03 05:09:37 +01:00
|
|
|
|
2022-05-23 03:50:43 +02:00
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct TcpIo<'a> {
|
|
|
|
stack: &'a UnsafeCell<SocketStack>,
|
|
|
|
handle: SocketHandle,
|
2021-02-03 05:09:37 +01:00
|
|
|
}
|
2022-05-13 22:15:27 +02:00
|
|
|
|
2022-05-23 03:50:43 +02:00
|
|
|
impl<'d> TcpIo<'d> {
|
|
|
|
/// SAFETY: must not call reentrantly.
|
|
|
|
unsafe fn with<R>(&self, f: impl FnOnce(&tcp::Socket, &Interface) -> R) -> R {
|
|
|
|
let s = &*self.stack.get();
|
|
|
|
let socket = s.sockets.get::<tcp::Socket>(self.handle);
|
|
|
|
f(socket, &s.iface)
|
|
|
|
}
|
2022-05-19 05:54:15 +02:00
|
|
|
|
2022-05-23 03:50:43 +02:00
|
|
|
/// SAFETY: must not call reentrantly.
|
|
|
|
unsafe fn with_mut<R>(&mut self, f: impl FnOnce(&mut tcp::Socket, &mut Interface) -> R) -> R {
|
|
|
|
let s = &mut *self.stack.get();
|
|
|
|
let socket = s.sockets.get_mut::<tcp::Socket>(self.handle);
|
|
|
|
let res = f(socket, &mut s.iface);
|
|
|
|
s.waker.wake();
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error> {
|
|
|
|
poll_fn(move |cx| unsafe {
|
2022-05-19 05:54:15 +02:00
|
|
|
// CAUTION: smoltcp semantics around EOF are different to what you'd expect
|
|
|
|
// from posix-like IO, so we have to tweak things here.
|
2022-05-23 03:50:43 +02:00
|
|
|
self.with_mut(|s, _| match s.recv_slice(buf) {
|
2022-05-19 05:54:15 +02:00
|
|
|
// No data ready
|
|
|
|
Ok(0) => {
|
|
|
|
s.register_recv_waker(cx.waker());
|
|
|
|
Poll::Pending
|
|
|
|
}
|
|
|
|
// Data ready!
|
|
|
|
Ok(n) => Poll::Ready(Ok(n)),
|
|
|
|
// EOF
|
2022-05-23 03:50:43 +02:00
|
|
|
Err(tcp::RecvError::Finished) => Poll::Ready(Ok(0)),
|
2022-05-19 05:54:15 +02:00
|
|
|
// Connection reset. TODO: this can also be timeouts etc, investigate.
|
2022-05-23 03:50:43 +02:00
|
|
|
Err(tcp::RecvError::InvalidState) => Poll::Ready(Err(Error::ConnectionReset)),
|
2022-05-19 05:54:15 +02:00
|
|
|
})
|
|
|
|
})
|
2022-05-23 03:50:43 +02:00
|
|
|
.await
|
2022-05-19 05:54:15 +02:00
|
|
|
}
|
|
|
|
|
2022-05-23 03:50:43 +02:00
|
|
|
async fn write(&mut self, buf: &[u8]) -> Result<usize, Error> {
|
|
|
|
poll_fn(move |cx| unsafe {
|
|
|
|
self.with_mut(|s, _| match s.send_slice(buf) {
|
2022-05-19 05:54:15 +02:00
|
|
|
// Not ready to send (no space in the tx buffer)
|
|
|
|
Ok(0) => {
|
|
|
|
s.register_send_waker(cx.waker());
|
|
|
|
Poll::Pending
|
|
|
|
}
|
|
|
|
// Some data sent
|
|
|
|
Ok(n) => Poll::Ready(Ok(n)),
|
|
|
|
// Connection reset. TODO: this can also be timeouts etc, investigate.
|
2022-05-23 03:50:43 +02:00
|
|
|
Err(tcp::SendError::InvalidState) => Poll::Ready(Err(Error::ConnectionReset)),
|
2022-05-19 05:54:15 +02:00
|
|
|
})
|
|
|
|
})
|
2022-05-23 03:50:43 +02:00
|
|
|
.await
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn flush(&mut self) -> Result<(), Error> {
|
|
|
|
poll_fn(move |_| {
|
|
|
|
Poll::Ready(Ok(())) // TODO: Is there a better implementation for this?
|
|
|
|
})
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-01 13:48:28 +02:00
|
|
|
impl embedded_io::Error for ConnectError {
|
|
|
|
fn kind(&self) -> embedded_io::ErrorKind {
|
|
|
|
embedded_io::ErrorKind::Other
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-23 03:50:43 +02:00
|
|
|
impl embedded_io::Error for Error {
|
|
|
|
fn kind(&self) -> embedded_io::ErrorKind {
|
|
|
|
embedded_io::ErrorKind::Other
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'d> embedded_io::Io for TcpSocket<'d> {
|
|
|
|
type Error = Error;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'d> embedded_io::asynch::Read for TcpSocket<'d> {
|
|
|
|
type ReadFuture<'a> = impl Future<Output = Result<usize, Self::Error>>
|
|
|
|
where
|
|
|
|
Self: 'a;
|
|
|
|
|
|
|
|
fn read<'a>(&'a mut self, buf: &'a mut [u8]) -> Self::ReadFuture<'a> {
|
|
|
|
self.io.read(buf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'d> embedded_io::asynch::Write for TcpSocket<'d> {
|
|
|
|
type WriteFuture<'a> = impl Future<Output = Result<usize, Self::Error>>
|
|
|
|
where
|
|
|
|
Self: 'a;
|
|
|
|
|
|
|
|
fn write<'a>(&'a mut self, buf: &'a [u8]) -> Self::WriteFuture<'a> {
|
|
|
|
self.io.write(buf)
|
2022-05-19 05:54:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type FlushFuture<'a> = impl Future<Output = Result<(), Self::Error>>
|
|
|
|
where
|
|
|
|
Self: 'a;
|
|
|
|
|
|
|
|
fn flush<'a>(&'a mut self) -> Self::FlushFuture<'a> {
|
2022-05-23 03:50:43 +02:00
|
|
|
self.io.flush()
|
2022-05-19 05:54:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-13 22:15:27 +02:00
|
|
|
impl<'d> embedded_io::Io for TcpReader<'d> {
|
|
|
|
type Error = Error;
|
|
|
|
}
|
|
|
|
|
2022-05-19 05:54:15 +02:00
|
|
|
impl<'d> embedded_io::asynch::Read for TcpReader<'d> {
|
|
|
|
type ReadFuture<'a> = impl Future<Output = Result<usize, Self::Error>>
|
|
|
|
where
|
|
|
|
Self: 'a;
|
|
|
|
|
|
|
|
fn read<'a>(&'a mut self, buf: &'a mut [u8]) -> Self::ReadFuture<'a> {
|
2022-05-23 03:50:43 +02:00
|
|
|
self.io.read(buf)
|
2022-05-19 05:54:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-13 22:15:27 +02:00
|
|
|
impl<'d> embedded_io::Io for TcpWriter<'d> {
|
|
|
|
type Error = Error;
|
|
|
|
}
|
2022-05-19 05:54:15 +02:00
|
|
|
|
|
|
|
impl<'d> embedded_io::asynch::Write for TcpWriter<'d> {
|
|
|
|
type WriteFuture<'a> = impl Future<Output = Result<usize, Self::Error>>
|
|
|
|
where
|
|
|
|
Self: 'a;
|
|
|
|
|
|
|
|
fn write<'a>(&'a mut self, buf: &'a [u8]) -> Self::WriteFuture<'a> {
|
2022-05-23 03:50:43 +02:00
|
|
|
self.io.write(buf)
|
2022-05-19 05:54:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type FlushFuture<'a> = impl Future<Output = Result<(), Self::Error>>
|
|
|
|
where
|
|
|
|
Self: 'a;
|
|
|
|
|
|
|
|
fn flush<'a>(&'a mut self) -> Self::FlushFuture<'a> {
|
2022-05-23 03:50:43 +02:00
|
|
|
self.io.flush()
|
2022-05-19 05:54:15 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-08 16:51:34 +02:00
|
|
|
|
|
|
|
#[cfg(feature = "unstable-traits")]
|
|
|
|
pub mod client {
|
|
|
|
use core::mem::MaybeUninit;
|
|
|
|
use core::ptr::NonNull;
|
|
|
|
|
|
|
|
use atomic_polyfill::{AtomicBool, Ordering};
|
|
|
|
use embedded_nal_async::IpAddr;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
2022-08-09 14:43:55 +02:00
|
|
|
/// TCP client capable of creating up to N multiple connections with tx and rx buffers according to TX_SZ and RX_SZ.
|
2022-08-08 16:51:34 +02:00
|
|
|
pub struct TcpClient<'d, D: Device, const N: usize, const TX_SZ: usize = 1024, const RX_SZ: usize = 1024> {
|
|
|
|
stack: &'d Stack<D>,
|
2022-08-09 14:43:55 +02:00
|
|
|
state: &'d TcpClientState<N, TX_SZ, RX_SZ>,
|
2022-08-08 16:51:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'d, D: Device, const N: usize, const TX_SZ: usize, const RX_SZ: usize> TcpClient<'d, D, N, TX_SZ, RX_SZ> {
|
2022-08-09 14:43:55 +02:00
|
|
|
/// Create a new TcpClient
|
|
|
|
pub fn new(stack: &'d Stack<D>, state: &'d TcpClientState<N, TX_SZ, RX_SZ>) -> Self {
|
|
|
|
Self { stack, state }
|
2022-08-08 16:51:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'d, D: Device, const N: usize, const TX_SZ: usize, const RX_SZ: usize> embedded_nal_async::TcpConnect
|
|
|
|
for TcpClient<'d, D, N, TX_SZ, RX_SZ>
|
|
|
|
{
|
|
|
|
type Error = Error;
|
|
|
|
type Connection<'m> = TcpConnection<'m, N, TX_SZ, RX_SZ> where Self: 'm;
|
|
|
|
type ConnectFuture<'m> = impl Future<Output = Result<Self::Connection<'m>, Self::Error>> + 'm
|
|
|
|
where
|
|
|
|
Self: 'm;
|
|
|
|
|
|
|
|
fn connect<'m>(&'m self, remote: embedded_nal_async::SocketAddr) -> Self::ConnectFuture<'m> {
|
|
|
|
async move {
|
|
|
|
let addr: crate::IpAddress = match remote.ip() {
|
|
|
|
IpAddr::V4(addr) => crate::IpAddress::Ipv4(crate::Ipv4Address::from_bytes(&addr.octets())),
|
|
|
|
#[cfg(feature = "proto-ipv6")]
|
|
|
|
IpAddr::V6(addr) => crate::IpAddress::Ipv6(crate::Ipv6Address::from_bytes(&addr.octets())),
|
|
|
|
#[cfg(not(feature = "proto-ipv6"))]
|
|
|
|
IpAddr::V6(_) => panic!("ipv6 support not enabled"),
|
|
|
|
};
|
|
|
|
let remote_endpoint = (addr, remote.port());
|
2022-08-09 14:43:55 +02:00
|
|
|
let mut socket = TcpConnection::new(&self.stack, self.state)?;
|
2022-08-08 16:51:34 +02:00
|
|
|
socket
|
|
|
|
.socket
|
|
|
|
.connect(remote_endpoint)
|
|
|
|
.await
|
|
|
|
.map_err(|_| Error::ConnectionReset)?;
|
|
|
|
Ok(socket)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct TcpConnection<'d, const N: usize, const TX_SZ: usize, const RX_SZ: usize> {
|
|
|
|
socket: TcpSocket<'d>,
|
2022-08-09 14:43:55 +02:00
|
|
|
state: &'d TcpClientState<N, TX_SZ, RX_SZ>,
|
|
|
|
bufs: NonNull<([u8; TX_SZ], [u8; RX_SZ])>,
|
2022-08-08 16:51:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'d, const N: usize, const TX_SZ: usize, const RX_SZ: usize> TcpConnection<'d, N, TX_SZ, RX_SZ> {
|
2022-08-09 14:51:32 +02:00
|
|
|
fn new<D: Device>(stack: &'d Stack<D>, state: &'d TcpClientState<N, TX_SZ, RX_SZ>) -> Result<Self, Error> {
|
2022-08-09 14:43:55 +02:00
|
|
|
let mut bufs = state.pool.alloc().ok_or(Error::ConnectionReset)?;
|
2022-08-08 16:51:34 +02:00
|
|
|
Ok(Self {
|
2022-08-09 14:43:55 +02:00
|
|
|
socket: unsafe { TcpSocket::new(stack, &mut bufs.as_mut().0, &mut bufs.as_mut().1) },
|
|
|
|
state,
|
|
|
|
bufs,
|
2022-08-08 16:51:34 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'d, const N: usize, const TX_SZ: usize, const RX_SZ: usize> Drop for TcpConnection<'d, N, TX_SZ, RX_SZ> {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe {
|
|
|
|
self.socket.close();
|
2022-08-09 14:43:55 +02:00
|
|
|
self.state.pool.free(self.bufs);
|
2022-08-08 16:51:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'d, const N: usize, const TX_SZ: usize, const RX_SZ: usize> embedded_io::Io
|
|
|
|
for TcpConnection<'d, N, TX_SZ, RX_SZ>
|
|
|
|
{
|
|
|
|
type Error = Error;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'d, const N: usize, const TX_SZ: usize, const RX_SZ: usize> embedded_io::asynch::Read
|
|
|
|
for TcpConnection<'d, N, TX_SZ, RX_SZ>
|
|
|
|
{
|
|
|
|
type ReadFuture<'a> = impl Future<Output = Result<usize, Self::Error>>
|
|
|
|
where
|
|
|
|
Self: 'a;
|
|
|
|
|
|
|
|
fn read<'a>(&'a mut self, buf: &'a mut [u8]) -> Self::ReadFuture<'a> {
|
|
|
|
self.socket.read(buf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'d, const N: usize, const TX_SZ: usize, const RX_SZ: usize> embedded_io::asynch::Write
|
|
|
|
for TcpConnection<'d, N, TX_SZ, RX_SZ>
|
|
|
|
{
|
|
|
|
type WriteFuture<'a> = impl Future<Output = Result<usize, Self::Error>>
|
|
|
|
where
|
|
|
|
Self: 'a;
|
|
|
|
|
|
|
|
fn write<'a>(&'a mut self, buf: &'a [u8]) -> Self::WriteFuture<'a> {
|
|
|
|
self.socket.write(buf)
|
|
|
|
}
|
|
|
|
|
|
|
|
type FlushFuture<'a> = impl Future<Output = Result<(), Self::Error>>
|
|
|
|
where
|
|
|
|
Self: 'a;
|
|
|
|
|
|
|
|
fn flush<'a>(&'a mut self) -> Self::FlushFuture<'a> {
|
|
|
|
self.socket.flush()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-09 14:43:55 +02:00
|
|
|
/// State for TcpClient
|
|
|
|
pub struct TcpClientState<const N: usize, const TX_SZ: usize, const RX_SZ: usize> {
|
|
|
|
pool: Pool<([u8; TX_SZ], [u8; RX_SZ]), N>,
|
|
|
|
}
|
2022-08-08 16:51:34 +02:00
|
|
|
|
2022-08-09 14:43:55 +02:00
|
|
|
impl<const N: usize, const TX_SZ: usize, const RX_SZ: usize> TcpClientState<N, TX_SZ, RX_SZ> {
|
|
|
|
pub const fn new() -> Self {
|
2022-08-09 14:51:32 +02:00
|
|
|
Self { pool: Pool::new() }
|
2022-08-09 14:43:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl<const N: usize, const TX_SZ: usize, const RX_SZ: usize> Sync for TcpClientState<N, TX_SZ, RX_SZ> {}
|
|
|
|
|
|
|
|
struct Pool<T, const N: usize> {
|
2022-08-08 16:51:34 +02:00
|
|
|
used: [AtomicBool; N],
|
|
|
|
data: [UnsafeCell<MaybeUninit<T>>; N],
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, const N: usize> Pool<T, N> {
|
|
|
|
const VALUE: AtomicBool = AtomicBool::new(false);
|
|
|
|
const UNINIT: UnsafeCell<MaybeUninit<T>> = UnsafeCell::new(MaybeUninit::uninit());
|
|
|
|
|
2022-08-09 14:43:55 +02:00
|
|
|
const fn new() -> Self {
|
2022-08-08 16:51:34 +02:00
|
|
|
Self {
|
|
|
|
used: [Self::VALUE; N],
|
|
|
|
data: [Self::UNINIT; N],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, const N: usize> Pool<T, N> {
|
|
|
|
fn alloc(&self) -> Option<NonNull<T>> {
|
|
|
|
for n in 0..N {
|
|
|
|
if self.used[n].swap(true, Ordering::SeqCst) == false {
|
|
|
|
let p = self.data[n].get() as *mut T;
|
|
|
|
return Some(unsafe { NonNull::new_unchecked(p) });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
/// safety: p must be a pointer obtained from self.alloc that hasn't been freed yet.
|
|
|
|
unsafe fn free(&self, p: NonNull<T>) {
|
|
|
|
let origin = self.data.as_ptr() as *mut T;
|
|
|
|
let n = p.as_ptr().offset_from(origin);
|
|
|
|
assert!(n >= 0);
|
|
|
|
assert!((n as usize) < N);
|
|
|
|
self.used[n as usize].store(false, Ordering::SeqCst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|