-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathio.rs
405 lines (344 loc) · 13.3 KB
/
io.rs
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
use core::cell::RefCell;
use core::fmt;
use core::net::{IpAddr, Ipv4Addr, Ipv6Addr, SocketAddr, SocketAddrV4, SocketAddrV6};
use core::pin::pin;
use buf::BufferAccess;
use embassy_futures::select::{select, Either};
use embassy_sync::blocking_mutex;
use embassy_sync::blocking_mutex::raw::RawMutex;
use embassy_sync::mutex::Mutex;
use embassy_sync::signal::Signal;
use edge_nal::{MulticastV4, MulticastV6, Readable, UdpBind, UdpReceive, UdpSend};
use embassy_time::{Duration, Timer};
use log::{debug, warn};
use super::*;
/// Socket address that binds to any IPv4-configured interface available
pub const IPV4_DEFAULT_SOCKET: SocketAddr =
SocketAddr::new(IpAddr::V4(Ipv4Addr::UNSPECIFIED), PORT);
/// Socket address that binds to any IPv6-configured interface available on single-stack
/// implementations and to any configured interface available on dual-stack implementations.
pub const IPV6_DEFAULT_SOCKET: SocketAddr =
SocketAddr::new(IpAddr::V6(Ipv6Addr::UNSPECIFIED), PORT);
/// A quick-and-dirty socket address that binds to any interface available on dual-stack
/// implementations.
/// Don't use in production code.
pub const DEFAULT_SOCKET: SocketAddr = IPV6_DEFAULT_SOCKET;
/// The IPv4 mDNS broadcast address, as per spec.
pub const IP_BROADCAST_ADDR: Ipv4Addr = Ipv4Addr::new(224, 0, 0, 251);
/// The IPv6 mDNS broadcast address, as per spec.
pub const IPV6_BROADCAST_ADDR: Ipv6Addr = Ipv6Addr::new(0xff02, 0, 0, 0, 0, 0, 0, 0x00fb);
/// The mDNS port, as per spec.
pub const PORT: u16 = 5353;
/// A wrapper for mDNS and IO errors.
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)]
pub enum MdnsIoError<E> {
MdnsError(MdnsError),
NoRecvBufError,
NoSendBufError,
IoError(E),
}
pub type MdnsIoErrorKind = MdnsIoError<edge_nal::io::ErrorKind>;
impl<E> MdnsIoError<E>
where
E: edge_nal::io::Error,
{
pub fn erase(&self) -> MdnsIoError<edge_nal::io::ErrorKind> {
match self {
Self::MdnsError(e) => MdnsIoError::MdnsError(*e),
Self::NoRecvBufError => MdnsIoError::NoRecvBufError,
Self::NoSendBufError => MdnsIoError::NoSendBufError,
Self::IoError(e) => MdnsIoError::IoError(e.kind()),
}
}
}
impl<E> From<MdnsError> for MdnsIoError<E> {
fn from(err: MdnsError) -> Self {
Self::MdnsError(err)
}
}
impl<E> fmt::Display for MdnsIoError<E>
where
E: fmt::Display,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::MdnsError(err) => write!(f, "mDNS error: {}", err),
Self::NoRecvBufError => write!(f, "No recv buf available"),
Self::NoSendBufError => write!(f, "No send buf available"),
Self::IoError(err) => write!(f, "IO error: {}", err),
}
}
}
#[cfg(feature = "std")]
impl<E> std::error::Error for MdnsIoError<E> where E: std::error::Error {}
/// A utility method to bind a socket suitable for mDNS, by using the provided
/// stack and address, and optionally joining the provided interfaces via multicast.
///
/// Note that mDNS is pointless without multicast, so at least one - or both - of the
/// ipv4 and ipv6 interfaces need to be provided.
pub async fn bind<S>(
stack: &S,
addr: SocketAddr,
ipv4_interface: Option<Ipv4Addr>,
ipv6_interface: Option<u32>,
) -> Result<S::Socket<'_>, MdnsIoError<S::Error>>
where
S: UdpBind,
{
let mut socket = stack.bind(addr).await.map_err(MdnsIoError::IoError)?;
if let Some(v4) = ipv4_interface {
socket
.join_v4(IP_BROADCAST_ADDR, v4)
.await
.map_err(MdnsIoError::IoError)?;
}
if let Some(v6) = ipv6_interface {
socket
.join_v6(IPV6_BROADCAST_ADDR, v6)
.await
.map_err(MdnsIoError::IoError)?;
}
Ok(socket)
}
/// Represents an mDNS service that can respond to queries using the provided handler.
///
/// This structure is generic over the mDNS handler, the UDP receiver and sender, and the
/// raw mutex type.
///
/// The handler is expected to be a type that implements the `MdnsHandler` trait, which
/// allows it to handle mDNS queries and generate responses, as well as to handle mDNS
/// responses to queries which we might have issues using the `query` method.
pub struct Mdns<'a, M, R, S, RB, SB>
where
M: RawMutex,
{
ipv4_interface: Option<Ipv4Addr>,
ipv6_interface: Option<u32>,
recv: Mutex<M, R>,
send: Mutex<M, S>,
recv_buf: RB,
send_buf: SB,
rand: fn(&mut [u8]),
broadcast_signal: &'a Signal<M, ()>,
wait_readable: bool,
}
impl<'a, M, R, S, RB, SB> Mdns<'a, M, R, S, RB, SB>
where
M: RawMutex,
R: UdpReceive + Readable,
S: UdpSend<Error = R::Error>,
RB: BufferAccess<[u8]>,
SB: BufferAccess<[u8]>,
{
/// Creates a new mDNS service with the provided handler, interfaces, and UDP receiver and sender.
#[allow(clippy::too_many_arguments)]
pub fn new(
ipv4_interface: Option<Ipv4Addr>,
ipv6_interface: Option<u32>,
recv: R,
send: S,
recv_buf: RB,
send_buf: SB,
rand: fn(&mut [u8]),
broadcast_signal: &'a Signal<M, ()>,
) -> Self {
Self {
ipv4_interface,
ipv6_interface,
recv: Mutex::new(recv),
send: Mutex::new(send),
recv_buf,
send_buf,
rand,
broadcast_signal,
wait_readable: false,
}
}
/// Sets whether the mDNS service should wait for the socket to be readable before reading.
///
/// Setting this to `true` is only useful when the read buffer is shared with other tasks
pub fn wait_readable(&mut self, wait_readable: bool) {
self.wait_readable = wait_readable;
}
/// Runs the mDNS service, handling queries and responding to them, as well as broadcasting
/// mDNS answers and handling responses to our own queries.
///
/// All of the handling logic is expected to be implemented by the provided handler:
/// - I.e. hanbdling responses to our own queries cannot happen, unless the supplied handler
/// is capable of doing that (i.e. it is a `PeerMdnsHandler`, or a chain containing it, or similar).
/// - Ditto for handling queries coming from other peers - this can only happen if the handler
/// is capable of doing that. I.e., it is a `HostMdnsHandler`, or a chain containing it, or similar.
pub async fn run<T>(&self, handler: T) -> Result<(), MdnsIoError<S::Error>>
where
T: MdnsHandler,
{
let handler = blocking_mutex::Mutex::<M, _>::new(RefCell::new(handler));
let mut broadcast = pin!(self.broadcast(&handler));
let mut respond = pin!(self.respond(&handler));
let result = select(&mut broadcast, &mut respond).await;
match result {
Either::First(result) => result,
Either::Second(result) => result,
}
}
/// Sends a multicast query with the provided payload.
/// It is assumed that the payload represents a valid mDNS query message.
///
/// The payload is constructed via a closure, because this way we can provide to
/// the payload-constructing closure a ready-to-use `&mut [u8]` slice, where the
/// closure can arrange the mDNS query message (i.e. we avoid extra memory usage
/// by constructing the mDNS query directly in the `send_buf` buffer that was supplied
/// when the `Mdns` instance was constructed).
pub async fn query<Q>(&self, q: Q) -> Result<(), MdnsIoError<S::Error>>
where
Q: FnOnce(&mut [u8]) -> Result<usize, MdnsError>,
{
let mut send_buf = self
.send_buf
.get()
.await
.ok_or(MdnsIoError::NoSendBufError)?;
let mut send_guard = self.send.lock().await;
let send = &mut *send_guard;
let len = q(send_buf.as_mut())?;
if len > 0 {
self.broadcast_once(send, &send_buf.as_mut()[..len]).await?;
}
Ok(())
}
async fn broadcast<T>(
&self,
handler: &blocking_mutex::Mutex<M, RefCell<T>>,
) -> Result<(), MdnsIoError<S::Error>>
where
T: MdnsHandler,
{
loop {
{
let mut send_buf = self
.send_buf
.get()
.await
.ok_or(MdnsIoError::NoSendBufError)?;
let mut send_guard = self.send.lock().await;
let send = &mut *send_guard;
let response = handler.lock(|handler| {
handler
.borrow_mut()
.handle(MdnsRequest::None, send_buf.as_mut())
})?;
if let MdnsResponse::Reply { data, delay } = response {
if delay {
// TODO: Not ideal, as we hold the lock during the delay
self.delay().await;
}
self.broadcast_once(send, data).await?;
}
}
self.broadcast_signal.wait().await;
}
}
async fn respond<T>(
&self,
handler: &blocking_mutex::Mutex<M, RefCell<T>>,
) -> Result<(), MdnsIoError<S::Error>>
where
T: MdnsHandler,
{
let mut recv = self.recv.lock().await;
loop {
if self.wait_readable {
recv.readable().await.map_err(MdnsIoError::IoError)?;
}
{
let mut recv_buf = self
.recv_buf
.get()
.await
.ok_or(MdnsIoError::NoRecvBufError)?;
let (len, remote) = recv
.receive(recv_buf.as_mut())
.await
.map_err(MdnsIoError::IoError)?;
debug!("Got mDNS query from {remote}");
{
let mut send_buf = self
.send_buf
.get()
.await
.ok_or(MdnsIoError::NoSendBufError)?;
let mut send_guard = self.send.lock().await;
let send = &mut *send_guard;
let response = match handler.lock(|handler| {
handler.borrow_mut().handle(
MdnsRequest::Request {
data: &recv_buf.as_mut()[..len],
legacy: remote.port() != PORT,
multicast: true, // TODO: Cannot determine this
},
send_buf.as_mut(),
)
}) {
Ok(len) => len,
Err(err) => match err {
MdnsError::InvalidMessage => {
warn!("Got invalid message from {remote}, skipping");
continue;
}
other => Err(other)?,
},
};
if let MdnsResponse::Reply { data, delay } = response {
if remote.port() != PORT {
// Support one-shot legacy queries by replying privately
// to the remote address, if the query was not sent from the mDNS port (as per the spec)
debug!("Replying privately to a one-shot mDNS query from {remote}");
if let Err(err) = send.send(remote, data).await {
warn!("Failed to reply privately to {remote}: {err:?}");
}
} else {
// Otherwise, re-broadcast the response
if delay {
self.delay().await;
}
debug!("Re-broadcasting due to mDNS query from {remote}");
self.broadcast_once(send, data).await?;
}
}
}
}
}
}
async fn broadcast_once(&self, send: &mut S, data: &[u8]) -> Result<(), MdnsIoError<S::Error>> {
for remote_addr in
core::iter::once(SocketAddr::V4(SocketAddrV4::new(IP_BROADCAST_ADDR, PORT)))
.filter(|_| self.ipv4_interface.is_some())
.chain(
self.ipv6_interface
.map(|interface| {
SocketAddr::V6(SocketAddrV6::new(
IPV6_BROADCAST_ADDR,
PORT,
0,
interface,
))
})
.into_iter(),
)
{
if !data.is_empty() {
debug!("Broadcasting mDNS entry to {remote_addr}");
let fut = pin!(send.send(remote_addr, data));
fut.await.map_err(MdnsIoError::IoError)?;
}
}
Ok(())
}
async fn delay(&self) {
let mut b = [0];
(self.rand)(&mut b);
// Generate a delay between 20 and 120 ms, as per spec
let delay_ms = 20 + (b[0] as u32 * 100 / 256);
Timer::after(Duration::from_millis(delay_ms as _)).await;
}
}