-
Notifications
You must be signed in to change notification settings - Fork 49
/
stream.rs
433 lines (370 loc) · 12.4 KB
/
stream.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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
use std::{
fmt::Debug,
io::{self, Error, Result},
net::SocketAddr,
pin::Pin,
sync::Arc,
task::{ready, Context, Poll},
};
use bytes::{Buf, Bytes};
use tokio::{
io::{AsyncRead, AsyncWrite, ReadBuf},
runtime::Handle,
sync::{mpsc, oneshot},
time::sleep,
};
use crate::{
envelope::{Envelope, Protocol, Segment, Syn},
host::is_same,
host::SequencedSegment,
net::SocketPair,
world::World,
ToSocketAddrs, TRACING_TARGET,
};
use super::split_owned::{OwnedReadHalf, OwnedWriteHalf};
/// A simulated TCP stream between a local and a remote socket.
///
/// All methods must be called from a host within a Turmoil simulation.
#[derive(Debug)]
pub struct TcpStream {
read_half: ReadHalf,
write_half: WriteHalf,
}
impl TcpStream {
pub(crate) fn new(pair: SocketPair, receiver: mpsc::Receiver<SequencedSegment>) -> Self {
let pair = Arc::new(pair);
let read_half = ReadHalf {
pair: pair.clone(),
rx: Rx {
recv: receiver,
buffer: None,
},
is_closed: false,
};
let write_half = WriteHalf {
pair,
is_shutdown: false,
};
Self {
read_half,
write_half,
}
}
/// Opens a TCP connection to a remote host.
pub async fn connect<A: ToSocketAddrs>(addr: A) -> Result<TcpStream> {
let (ack, syn_ack) = oneshot::channel();
let (pair, rx) = World::current(|world| {
let dst = addr.to_socket_addr(&world.dns);
let host = world.current_host_mut();
let mut local_addr = SocketAddr::new(host.addr, host.assign_ephemeral_port());
if dst.ip().is_loopback() {
local_addr.set_ip(dst.ip());
}
let pair = SocketPair::new(local_addr, dst);
let rx = host.tcp.new_stream(pair);
let syn = Protocol::Tcp(Segment::Syn(Syn { ack }));
if !is_same(local_addr, dst) {
world.send_message(local_addr, dst, syn)?;
} else {
send_loopback(local_addr, dst, syn);
};
Ok::<_, Error>((pair, rx))
})?;
syn_ack.await.map_err(|_| {
io::Error::new(io::ErrorKind::ConnectionRefused, pair.remote.to_string())
})?;
tracing::trace!(target: TRACING_TARGET, src = ?pair.remote, dst = ?pair.local, protocol = %"TCP SYN-ACK", "Recv");
Ok(TcpStream::new(pair, rx))
}
/// Try to write a buffer to the stream, returning how many bytes were
/// written.
///
/// The function will attempt to write the entire contents of `buf`, but
/// only part of the buffer may be written.
///
/// This function is usually paired with `writable()`.
///
/// # Return
///
/// If data is successfully written, `Ok(n)` is returned, where `n` is the
/// number of bytes written. If the stream is not ready to write data,
/// `Err(io::ErrorKind::WouldBlock)` is returned.
pub fn try_write(&self, buf: &[u8]) -> Result<usize> {
self.write_half.try_write(buf)
}
/// Returns the local address that this stream is bound to.
pub fn local_addr(&self) -> Result<SocketAddr> {
Ok(self.read_half.pair.local)
}
/// Returns the remote address that this stream is connected to.
pub fn peer_addr(&self) -> Result<SocketAddr> {
Ok(self.read_half.pair.remote)
}
pub(crate) fn reunite(read_half: ReadHalf, write_half: WriteHalf) -> Self {
Self {
read_half,
write_half,
}
}
/// Waits for the socket to become writable.
///
/// This function is equivalent to `ready(Interest::WRITABLE)` and is usually
/// paired with `try_write()`.
///
/// # Cancel safety
///
/// This method is cancel safe. Once a readiness event occurs, the method
/// will continue to return immediately until the readiness event is
/// consumed by an attempt to write that fails with `WouldBlock` or
/// `Poll::Pending`.
pub async fn writable(&self) -> Result<()> {
Ok(())
}
/// Splits a `TcpStream` into a read half and a write half, which can be used
/// to read and write the stream concurrently.
///
/// **Note:** Dropping the write half will shut down the write half of the TCP
/// stream. This is equivalent to calling [`shutdown()`] on the `TcpStream`.
///
/// [`shutdown()`]: fn@tokio::io::AsyncWriteExt::shutdown
pub fn into_split(self) -> (OwnedReadHalf, OwnedWriteHalf) {
(
OwnedReadHalf {
inner: self.read_half,
},
OwnedWriteHalf {
inner: self.write_half,
},
)
}
/// Has no effect in turmoil. API parity with
/// https://docs.rs/tokio/latest/tokio/net/struct.TcpStream.html#method.set_nodelay
pub fn set_nodelay(&self, _nodelay: bool) -> Result<()> {
Ok(())
}
}
pub(crate) struct ReadHalf {
pub(crate) pair: Arc<SocketPair>,
rx: Rx,
/// FIN received, EOF for reads
is_closed: bool,
}
struct Rx {
recv: mpsc::Receiver<SequencedSegment>,
/// The remaining bytes of a received data segment.
///
/// This is used to support read impls by stashing available bytes for
/// subsequent reads.
buffer: Option<Bytes>,
}
impl ReadHalf {
fn poll_read_priv(&mut self, cx: &mut Context<'_>, buf: &mut ReadBuf) -> Poll<Result<()>> {
if self.is_closed || buf.capacity() == 0 {
return Poll::Ready(Ok(()));
}
if let Some(bytes) = self.rx.buffer.take() {
self.rx.buffer = Self::put_slice(bytes, buf);
return Poll::Ready(Ok(()));
}
match ready!(self.rx.recv.poll_recv(cx)) {
Some(seg) => {
tracing::trace!(target: TRACING_TARGET, src = ?self.pair.remote, dst = ?self.pair.local, protocol = %seg, "Recv");
match seg {
SequencedSegment::Data(bytes) => {
self.rx.buffer = Self::put_slice(bytes, buf);
}
SequencedSegment::Fin => {
self.is_closed = true;
}
}
Poll::Ready(Ok(()))
}
None => Poll::Ready(Err(io::Error::new(
io::ErrorKind::ConnectionReset,
"Connection reset",
))),
}
}
/// Put bytes in `buf` based on the minimum of `avail` and its remaining
/// capacity.
///
/// Returns an optional `Bytes` containing any remainder of `avail` that was
/// not consumed.
fn put_slice(mut avail: Bytes, buf: &mut ReadBuf) -> Option<Bytes> {
let amt = std::cmp::min(avail.len(), buf.remaining());
buf.put_slice(&avail[..amt]);
avail.advance(amt);
if avail.is_empty() {
None
} else {
Some(avail)
}
}
}
impl Debug for ReadHalf {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("ReadHalf")
.field("pair", &self.pair)
.field("is_closed", &self.is_closed)
.finish()
}
}
pub(crate) struct WriteHalf {
pub(crate) pair: Arc<SocketPair>,
/// FIN sent, closed for writes
is_shutdown: bool,
}
impl WriteHalf {
fn try_write(&self, buf: &[u8]) -> Result<usize> {
if buf.remaining() == 0 {
return Ok(0);
}
if self.is_shutdown {
return Err(io::Error::new(io::ErrorKind::BrokenPipe, "Broken pipe"));
}
World::current(|world| {
let bytes = Bytes::copy_from_slice(buf);
let len = bytes.len();
let seq = self.seq(world)?;
self.send(world, Segment::Data(seq, bytes))?;
Ok(len)
})
}
fn poll_write_priv(&self, _cx: &mut Context<'_>, buf: &[u8]) -> Poll<Result<usize>> {
Poll::Ready(self.try_write(buf))
}
fn poll_shutdown_priv(&mut self) -> Poll<Result<()>> {
if self.is_shutdown {
return Poll::Ready(Err(io::Error::new(
io::ErrorKind::NotConnected,
"Socket is not connected",
)));
}
let res = World::current(|world| {
let seq = self.seq(world)?;
self.send(world, Segment::Fin(seq))?;
self.is_shutdown = true;
Ok(())
});
Poll::Ready(res)
}
// If a seq is not assignable the connection has been reset by the
// peer.
fn seq(&self, world: &mut World) -> Result<u64> {
world
.current_host_mut()
.tcp
.assign_send_seq(*self.pair)
.ok_or_else(|| io::Error::new(io::ErrorKind::BrokenPipe, "Broken pipe"))
}
fn send(&self, world: &mut World, segment: Segment) -> Result<()> {
let message = Protocol::Tcp(segment);
if is_same(self.pair.local, self.pair.remote) {
send_loopback(self.pair.local, self.pair.remote, message);
} else {
world.send_message(self.pair.local, self.pair.remote, message)?;
}
Ok(())
}
}
fn send_loopback(src: SocketAddr, dst: SocketAddr, message: Protocol) {
// Check for a runtime before spawning as this code is hit in the drop path
// as streams attempt to send FINs.
// TODO: Investigate drop ordering within the Sim to ensure things are unrolling
// as expected.
if Handle::try_current().is_err() {
return;
}
tokio::spawn(async move {
// FIXME: Forces delivery on the next step which better aligns with the
// remote networking behavior.
// https://github.com/tokio-rs/turmoil/issues/132
let tick_duration = World::current(|world| world.tick_duration);
sleep(tick_duration).await;
World::current(|world| {
if let Err(rst) =
world
.current_host_mut()
.receive_from_network(Envelope { src, dst, message })
{
_ = world.current_host_mut().receive_from_network(Envelope {
src: dst,
dst: src,
message: rst,
});
}
})
});
}
impl Debug for WriteHalf {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("WriteHalf")
.field("pair", &self.pair)
.field("is_shutdown", &self.is_shutdown)
.finish()
}
}
impl AsyncRead for ReadHalf {
fn poll_read(
mut self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &mut ReadBuf,
) -> Poll<Result<()>> {
self.poll_read_priv(cx, buf)
}
}
impl AsyncRead for TcpStream {
fn poll_read(
mut self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &mut ReadBuf,
) -> Poll<Result<()>> {
Pin::new(&mut self.read_half).poll_read(cx, buf)
}
}
impl AsyncWrite for WriteHalf {
fn poll_write(self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8]) -> Poll<Result<usize>> {
self.poll_write_priv(cx, buf)
}
fn poll_flush(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Result<()>> {
Poll::Ready(Ok(()))
}
fn poll_shutdown(mut self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Result<()>> {
self.poll_shutdown_priv()
}
}
impl AsyncWrite for TcpStream {
fn poll_write(
mut self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8],
) -> Poll<Result<usize>> {
Pin::new(&mut self.write_half).poll_write(cx, buf)
}
fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>> {
Pin::new(&mut self.write_half).poll_flush(cx)
}
fn poll_shutdown(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>> {
Pin::new(&mut self.write_half).poll_shutdown(cx)
}
}
impl Drop for ReadHalf {
fn drop(&mut self) {
World::current_if_set(|world| {
world.current_host_mut().tcp.close_stream_half(*self.pair);
})
}
}
impl Drop for WriteHalf {
fn drop(&mut self) {
World::current_if_set(|world| {
// skip sending Fin if the write half is already shutdown
if !self.is_shutdown {
if let Ok(seq) = self.seq(world) {
let _ = self.send(world, Segment::Fin(seq));
}
}
world.current_host_mut().tcp.close_stream_half(*self.pair);
})
}
}