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
|
//! Re-exports of the smol runtime for use with arti.
//! This crate defines a slim API around our async runtime so that we
//! can swap it out easily.
/// Types used for networking (smol implementation).
pub(crate) mod net {
use super::SmolRuntime;
use crate::{impls, traits};
use async_trait::async_trait;
use futures::future::Future;
use futures::stream::Stream;
use paste::paste;
use smol::Async;
#[cfg(unix)]
use smol::net::unix::{UnixListener, UnixStream};
use smol::net::{TcpListener, TcpStream, UdpSocket as SmolUdpSocket};
use std::io::Result as IoResult;
use std::net::SocketAddr;
use std::pin::Pin;
use std::task::{Context, Poll};
use tor_general_addr::unix;
use tracing::instrument;
/// Provide wrapper for different stream types
/// (e.g async_net::TcpStream and async_net::unix::UnixStream).
macro_rules! impl_stream {
{ $kind:ident, $addr:ty } => { paste! {
/// A `Stream` of incoming streams.
pub struct [<Incoming $kind Streams>] {
/// A state object, stored in an Option so we can take ownership of it
// TODO: Currently this is an Option so we can take ownership of it using `.take()`.
// Check if this approach can be improved once supporting Rust 2024.
state: Option<[<Incoming $kind StreamsState>]>,
}
/// The result type returned by `take_and_poll_*`.
type [<$kind FResult>] = (IoResult<([<$kind Stream>], $addr)>, [<$kind Listener>]);
/// Helper to implement `Incoming*Streams`
async fn [<take_and_poll_ $kind:lower>](lis: [<$kind Listener>]) -> [<$kind FResult>] {
let result = lis.accept().await;
(result, lis)
}
/// The possible states for an `Incoming*Streams`.
enum [<Incoming $kind StreamsState>] {
/// We're ready to call `accept` on the listener again.
Ready([<$kind Listener>]),
/// We've called `accept` on the listener, and we're waiting
Accepting(Pin<Box<dyn Future<Output = [<$kind FResult>]> + Send + Sync>>),
}
impl [<Incoming $kind Streams>] {
/// Create a new `Incoming*Streams` from a listener.
pub fn from_listener(lis: [<$kind Listener>]) -> Self {
Self { state: Some([<Incoming $kind StreamsState>]::Ready(lis)) }
}
}
impl Stream for [<Incoming $kind Streams>] {
type Item = IoResult<([<$kind Stream>], $addr)>;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Option<Self::Item>> {
use [<Incoming $kind StreamsState>] as St;
let state = self.state.take().expect("No valid state!");
let mut future = match state {
St::Ready(lis) => Box::pin([<take_and_poll_ $kind:lower>](lis)),
St::Accepting(fut) => fut,
};
match future.as_mut().poll(cx) {
Poll::Ready((val, lis)) => {
self.state = Some(St::Ready(lis));
Poll::Ready(Some(val))
}
Poll::Pending => {
self.state = Some(St::Accepting(future));
Poll::Pending
}
}
}
}
impl traits::NetStreamListener<$addr> for [<$kind Listener>] {
type Stream = [<$kind Stream>];
type Incoming = [<Incoming $kind Streams>];
fn incoming(self) -> Self::Incoming {
[<Incoming $kind Streams>]::from_listener(self)
}
fn local_addr(&self) -> IoResult<$addr> {
[<$kind Listener>]::local_addr(self)
}
}
}}
}
impl_stream! { Tcp, SocketAddr }
#[cfg(unix)]
impl_stream! { Unix, unix::SocketAddr }
#[async_trait]
impl traits::NetStreamProvider<SocketAddr> for SmolRuntime {
type Stream = TcpStream;
type Listener = TcpListener;
#[instrument(skip_all, level = "trace")]
async fn connect(&self, addr: &SocketAddr) -> IoResult<Self::Stream> {
TcpStream::connect(addr).await
}
async fn listen(&self, addr: &SocketAddr) -> IoResult<Self::Listener> {
// Use an implementation that's the same across all runtimes.
// The socket is already non-blocking, so `Async` doesn't need to set as non-blocking
// again. If it *were* to be blocking, then I/O operations would block in async
// contexts, which would lead to deadlocks.
Ok(Async::new_nonblocking(impls::tcp_listen(addr)?)?.into())
}
}
#[cfg(unix)]
#[async_trait]
impl traits::NetStreamProvider<unix::SocketAddr> for SmolRuntime {
type Stream = UnixStream;
type Listener = UnixListener;
#[instrument(skip_all, level = "trace")]
async fn connect(&self, addr: &unix::SocketAddr) -> IoResult<Self::Stream> {
let path = addr
.as_pathname()
.ok_or(crate::unix::UnsupportedAfUnixAddressType)?;
UnixStream::connect(path).await
}
async fn listen(&self, addr: &unix::SocketAddr) -> IoResult<Self::Listener> {
let path = addr
.as_pathname()
.ok_or(crate::unix::UnsupportedAfUnixAddressType)?;
UnixListener::bind(path)
}
}
#[cfg(not(unix))]
crate::impls::impl_unix_non_provider! { SmolRuntime }
#[async_trait]
impl traits::UdpProvider for SmolRuntime {
type UdpSocket = UdpSocket;
async fn bind(&self, addr: &SocketAddr) -> IoResult<Self::UdpSocket> {
SmolUdpSocket::bind(addr)
.await
.map(|socket| UdpSocket { socket })
}
}
/// Wrapper for `SmolUdpSocket`.
// Required to implement `traits::UdpSocket`.
pub struct UdpSocket {
/// The underlying socket.
socket: SmolUdpSocket,
}
#[async_trait]
impl traits::UdpSocket for UdpSocket {
async fn recv(&self, buf: &mut [u8]) -> IoResult<(usize, SocketAddr)> {
self.socket.recv_from(buf).await
}
async fn send(&self, buf: &[u8], target: &SocketAddr) -> IoResult<usize> {
self.socket.send_to(buf, target).await
}
fn local_addr(&self) -> IoResult<SocketAddr> {
self.socket.local_addr()
}
}
impl traits::StreamOps for TcpStream {
fn set_tcp_notsent_lowat(&self, lowat: u32) -> IoResult<()> {
impls::streamops::set_tcp_notsent_lowat(self, lowat)
}
#[cfg(target_os = "linux")]
fn new_handle(&self) -> Box<dyn traits::StreamOps + Send + Unpin> {
Box::new(impls::streamops::TcpSockFd::from_fd(self))
}
}
#[cfg(unix)]
impl traits::StreamOps for UnixStream {
fn set_tcp_notsent_lowat(&self, _notsent_lowat: u32) -> IoResult<()> {
Err(traits::UnsupportedStreamOp::new(
"set_tcp_notsent_lowat",
"unsupported on Unix streams",
)
.into())
}
}
}
// ==============================
use crate::traits::*;
use futures::task::{FutureObj, Spawn, SpawnError};
use futures::{Future, FutureExt};
use std::pin::Pin;
use std::time::Duration;
/// Type to wrap `smol::Executor`.
#[derive(Clone)]
pub struct SmolRuntime {
/// Instance of the smol executor we own.
executor: std::sync::Arc<smol::Executor<'static>>,
}
/// Construct new instance of the smol runtime.
//
// TODO: Make SmolRuntime multi-threaded.
pub fn create_runtime() -> SmolRuntime {
SmolRuntime {
executor: std::sync::Arc::new(smol::Executor::new()),
}
}
impl SleepProvider for SmolRuntime {
type SleepFuture = Pin<Box<dyn Future<Output = ()> + Send + 'static>>;
fn sleep(&self, duration: Duration) -> Self::SleepFuture {
Box::pin(async_io::Timer::after(duration).map(|_| ()))
}
}
impl ToplevelBlockOn for SmolRuntime {
fn block_on<F: Future>(&self, f: F) -> F::Output {
smol::block_on(self.executor.run(f))
}
}
impl Blocking for SmolRuntime {
type ThreadHandle<T: Send + 'static> = blocking::Task<T>;
fn spawn_blocking<F, T>(&self, f: F) -> blocking::Task<T>
where
F: FnOnce() -> T + Send + 'static,
T: Send + 'static,
{
smol::unblock(f)
}
fn reenter_block_on<F: Future>(&self, f: F) -> F::Output {
smol::block_on(self.executor.run(f))
}
}
impl Spawn for SmolRuntime {
fn spawn_obj(&self, future: FutureObj<'static, ()>) -> Result<(), SpawnError> {
self.executor.spawn(future).detach();
Ok(())
}
}
|