Line data Source code
1 : use std::{
2 : cmp::Ordering,
3 : collections::{BinaryHeap, VecDeque},
4 : fmt::{self, Debug},
5 : ops::DerefMut,
6 : sync::{mpsc, Arc},
7 : };
8 :
9 : use parking_lot::{
10 : lock_api::{MappedMutexGuard, MutexGuard},
11 : Mutex, RawMutex,
12 : };
13 : use rand::rngs::StdRng;
14 : use tracing::debug;
15 :
16 : use crate::{
17 : executor::{self, ThreadContext},
18 : options::NetworkOptions,
19 : proto::NetEvent,
20 : proto::NodeEvent,
21 : };
22 :
23 : use super::{chan::Chan, proto::AnyMessage};
24 :
25 : pub struct NetworkTask {
26 : options: Arc<NetworkOptions>,
27 : connections: Mutex<Vec<VirtualConnection>>,
28 : /// min-heap of connections having something to deliver.
29 : events: Mutex<BinaryHeap<Event>>,
30 : task_context: Arc<ThreadContext>,
31 : }
32 :
33 : impl NetworkTask {
34 4056 : pub fn start_new(options: Arc<NetworkOptions>, tx: mpsc::Sender<Arc<NetworkTask>>) {
35 4056 : let ctx = executor::get_thread_ctx();
36 4056 : let task = Arc::new(Self {
37 4056 : options,
38 4056 : connections: Mutex::new(Vec::new()),
39 4056 : events: Mutex::new(BinaryHeap::new()),
40 4056 : task_context: ctx,
41 4056 : });
42 4056 :
43 4056 : // send the task upstream
44 4056 : tx.send(task.clone()).unwrap();
45 4056 :
46 4056 : // start the task
47 4056 : task.start();
48 4056 : }
49 :
50 274100 : pub fn start_new_connection(self: &Arc<Self>, rng: StdRng, dst_accept: Chan<NodeEvent>) -> TCP {
51 274100 : let now = executor::now();
52 274100 : let connection_id = self.connections.lock().len();
53 274100 :
54 274100 : let vc = VirtualConnection {
55 274100 : connection_id,
56 274100 : dst_accept,
57 274100 : dst_sockets: [Chan::new(), Chan::new()],
58 274100 : state: Mutex::new(ConnectionState {
59 274100 : buffers: [NetworkBuffer::new(None), NetworkBuffer::new(Some(now))],
60 274100 : rng,
61 274100 : }),
62 274100 : };
63 274100 : vc.schedule_timeout(self);
64 274100 : vc.send_connect(self);
65 274100 :
66 274100 : let recv_chan = vc.dst_sockets[0].clone();
67 274100 : self.connections.lock().push(vc);
68 274100 :
69 274100 : TCP {
70 274100 : net: self.clone(),
71 274100 : conn_id: connection_id,
72 274100 : dir: 0,
73 274100 : recv_chan,
74 274100 : }
75 274100 : }
76 : }
77 :
78 : // private functions
79 : impl NetworkTask {
80 : /// Schedule to wakeup network task (self) `after_ms` later to deliver
81 : /// messages of connection `id`.
82 1382215 : fn schedule(&self, id: usize, after_ms: u64) {
83 1382215 : self.events.lock().push(Event {
84 1382215 : time: executor::now() + after_ms,
85 1382215 : conn_id: id,
86 1382215 : });
87 1382215 : self.task_context.schedule_wakeup(after_ms);
88 1382215 : }
89 :
90 : /// Get locked connection `id`.
91 1840723 : fn get(&self, id: usize) -> MappedMutexGuard<'_, RawMutex, VirtualConnection> {
92 1840723 : MutexGuard::map(self.connections.lock(), |connections| {
93 1840723 : connections.get_mut(id).unwrap()
94 1840723 : })
95 1840723 : }
96 :
97 1300434 : fn collect_pending_events(&self, now: u64, vec: &mut Vec<Event>) {
98 1300434 : vec.clear();
99 1300434 : let mut events = self.events.lock();
100 2596814 : while let Some(event) = events.peek() {
101 2579059 : if event.time > now {
102 1282679 : break;
103 1296380 : }
104 1296380 : let event = events.pop().unwrap();
105 1296380 : vec.push(event);
106 : }
107 1300434 : }
108 :
109 4056 : fn start(self: &Arc<Self>) {
110 4056 : debug!("started network task");
111 :
112 4056 : let mut events = Vec::new();
113 : loop {
114 1304490 : let now = executor::now();
115 1304490 : self.collect_pending_events(now, &mut events);
116 :
117 1304490 : for event in events.drain(..) {
118 1296380 : let conn = self.get(event.conn_id);
119 1296380 : conn.process(self);
120 1296380 : }
121 :
122 : // block until wakeup
123 1300434 : executor::yield_me(-1);
124 : }
125 : }
126 : }
127 :
128 : // 0 - from node(0) to node(1)
129 : // 1 - from node(1) to node(0)
130 : type MessageDirection = u8;
131 :
132 2570 : fn sender_str(dir: MessageDirection) -> &'static str {
133 2570 : match dir {
134 422 : 0 => "client",
135 2148 : 1 => "server",
136 0 : _ => unreachable!(),
137 : }
138 2570 : }
139 :
140 694 : fn receiver_str(dir: MessageDirection) -> &'static str {
141 694 : match dir {
142 316 : 0 => "server",
143 378 : 1 => "client",
144 0 : _ => unreachable!(),
145 : }
146 694 : }
147 :
148 : /// Virtual connection between two nodes.
149 : /// Node 0 is the creator of the connection (client),
150 : /// and node 1 is the acceptor (server).
151 : struct VirtualConnection {
152 : connection_id: usize,
153 : /// one-off chan, used to deliver Accept message to dst
154 : dst_accept: Chan<NodeEvent>,
155 : /// message sinks
156 : dst_sockets: [Chan<NetEvent>; 2],
157 : state: Mutex<ConnectionState>,
158 : }
159 :
160 : struct ConnectionState {
161 : buffers: [NetworkBuffer; 2],
162 : rng: StdRng,
163 : }
164 :
165 : impl VirtualConnection {
166 : /// Notify the future about the possible timeout.
167 794327 : fn schedule_timeout(&self, net: &NetworkTask) {
168 794327 : if let Some(timeout) = net.options.keepalive_timeout {
169 794327 : net.schedule(self.connection_id, timeout);
170 794327 : }
171 794327 : }
172 :
173 : /// Send the handshake (Accept) to the server.
174 274100 : fn send_connect(&self, net: &NetworkTask) {
175 274100 : let now = executor::now();
176 274100 : let mut state = self.state.lock();
177 274100 : let delay = net.options.connect_delay.delay(&mut state.rng);
178 274100 : let buffer = &mut state.buffers[0];
179 274100 : assert!(buffer.buf.is_empty());
180 274100 : assert!(!buffer.recv_closed);
181 274100 : assert!(!buffer.send_closed);
182 274100 : assert!(buffer.last_recv.is_none());
183 :
184 274100 : let delay = if let Some(ms) = delay {
185 213745 : ms
186 : } else {
187 60355 : debug!("NET: TCP #{} dropped connect", self.connection_id);
188 60355 : buffer.send_closed = true;
189 60355 : return;
190 : };
191 :
192 : // Send a message into the future.
193 213745 : buffer
194 213745 : .buf
195 213745 : .push_back((now + delay, AnyMessage::InternalConnect));
196 213745 : net.schedule(self.connection_id, delay);
197 274100 : }
198 :
199 : /// Transmit some of the messages from the buffer to the nodes.
200 1296380 : fn process(&self, net: &Arc<NetworkTask>) {
201 1296380 : let now = executor::now();
202 1296380 :
203 1296380 : let mut state = self.state.lock();
204 :
205 3889140 : for direction in 0..2 {
206 2592760 : self.process_direction(
207 2592760 : net,
208 2592760 : state.deref_mut(),
209 2592760 : now,
210 2592760 : direction as MessageDirection,
211 2592760 : &self.dst_sockets[direction ^ 1],
212 2592760 : );
213 2592760 : }
214 :
215 : // Close the one side of the connection by timeout if the node
216 : // has not received any messages for a long time.
217 1296380 : if let Some(timeout) = net.options.keepalive_timeout {
218 1296380 : let mut to_close = [false, false];
219 3889140 : for direction in 0..2 {
220 2592760 : let buffer = &mut state.buffers[direction];
221 2592760 : if buffer.recv_closed {
222 555404 : continue;
223 2037356 : }
224 2037356 : if let Some(last_recv) = buffer.last_recv {
225 1838996 : if now - last_recv >= timeout {
226 410270 : debug!(
227 694 : "NET: connection {} timed out at {}",
228 694 : self.connection_id,
229 694 : receiver_str(direction as MessageDirection)
230 694 : );
231 410270 : let node_idx = direction ^ 1;
232 410270 : to_close[node_idx] = true;
233 1428726 : }
234 198360 : }
235 : }
236 1296380 : drop(state);
237 :
238 2592760 : for (node_idx, should_close) in to_close.iter().enumerate() {
239 2592760 : if *should_close {
240 410270 : self.close(node_idx);
241 2182490 : }
242 : }
243 0 : }
244 1296380 : }
245 :
246 : /// Process messages in the buffer in the given direction.
247 2592760 : fn process_direction(
248 2592760 : &self,
249 2592760 : net: &Arc<NetworkTask>,
250 2592760 : state: &mut ConnectionState,
251 2592760 : now: u64,
252 2592760 : direction: MessageDirection,
253 2592760 : to_socket: &Chan<NetEvent>,
254 2592760 : ) {
255 2592760 : let buffer = &mut state.buffers[direction as usize];
256 2592760 : if buffer.recv_closed {
257 555404 : assert!(buffer.buf.is_empty());
258 2037356 : }
259 :
260 3112987 : while !buffer.buf.is_empty() && buffer.buf.front().unwrap().0 <= now {
261 520227 : let msg = buffer.buf.pop_front().unwrap().1;
262 520227 :
263 520227 : buffer.last_recv = Some(now);
264 520227 : self.schedule_timeout(net);
265 520227 :
266 520227 : if let AnyMessage::InternalConnect = msg {
267 202613 : // TODO: assert to_socket is the server
268 202613 : let server_to_client = TCP {
269 202613 : net: net.clone(),
270 202613 : conn_id: self.connection_id,
271 202613 : dir: direction ^ 1,
272 202613 : recv_chan: to_socket.clone(),
273 202613 : };
274 202613 : // special case, we need to deliver new connection to a separate channel
275 202613 : self.dst_accept.send(NodeEvent::Accept(server_to_client));
276 317614 : } else {
277 317614 : to_socket.send(NetEvent::Message(msg));
278 317614 : }
279 : }
280 2592760 : }
281 :
282 : /// Try to send a message to the buffer, optionally dropping it and
283 : /// determining delivery timestamp.
284 513444 : fn send(&self, net: &NetworkTask, direction: MessageDirection, msg: AnyMessage) {
285 513444 : let now = executor::now();
286 513444 : let mut state = self.state.lock();
287 :
288 513444 : let (delay, close) = if let Some(ms) = net.options.send_delay.delay(&mut state.rng) {
289 470664 : (ms, false)
290 : } else {
291 42780 : (0, true)
292 : };
293 :
294 513444 : let buffer = &mut state.buffers[direction as usize];
295 513444 : if buffer.send_closed {
296 56089 : debug!(
297 74 : "NET: TCP #{} dropped message {:?} (broken pipe)",
298 74 : self.connection_id, msg
299 74 : );
300 56089 : return;
301 457355 : }
302 457355 :
303 457355 : if close {
304 31734 : debug!(
305 14 : "NET: TCP #{} dropped message {:?} (pipe just broke)",
306 14 : self.connection_id, msg
307 14 : );
308 31734 : buffer.send_closed = true;
309 31734 : return;
310 425621 : }
311 425621 :
312 425621 : if buffer.recv_closed {
313 51478 : debug!(
314 0 : "NET: TCP #{} dropped message {:?} (recv closed)",
315 0 : self.connection_id, msg
316 0 : );
317 51478 : return;
318 374143 : }
319 374143 :
320 374143 : // Send a message into the future.
321 374143 : buffer.buf.push_back((now + delay, msg));
322 374143 : net.schedule(self.connection_id, delay);
323 513444 : }
324 :
325 : /// Close the connection. Only one side of the connection will be closed,
326 : /// and no further messages will be delivered. The other side will not be notified.
327 441169 : fn close(&self, node_idx: usize) {
328 441169 : let mut state = self.state.lock();
329 441169 : let recv_buffer = &mut state.buffers[1 ^ node_idx];
330 441169 : if recv_buffer.recv_closed {
331 2085 : debug!(
332 10 : "NET: TCP #{} closed twice at {}",
333 10 : self.connection_id,
334 10 : sender_str(node_idx as MessageDirection),
335 10 : );
336 2085 : return;
337 439084 : }
338 439084 :
339 439084 : debug!(
340 758 : "NET: TCP #{} closed at {}",
341 758 : self.connection_id,
342 758 : sender_str(node_idx as MessageDirection),
343 758 : );
344 439084 : recv_buffer.recv_closed = true;
345 439084 : for msg in recv_buffer.buf.drain(..) {
346 43989 : debug!(
347 0 : "NET: TCP #{} dropped message {:?} (closed)",
348 0 : self.connection_id, msg
349 0 : );
350 : }
351 :
352 439084 : let send_buffer = &mut state.buffers[node_idx];
353 439084 : send_buffer.send_closed = true;
354 439084 : drop(state);
355 439084 :
356 439084 : // TODO: notify the other side?
357 439084 :
358 439084 : self.dst_sockets[node_idx].send(NetEvent::Closed);
359 441169 : }
360 : }
361 :
362 : struct NetworkBuffer {
363 : /// Messages paired with time of delivery
364 : buf: VecDeque<(u64, AnyMessage)>,
365 : /// True if the connection is closed on the receiving side,
366 : /// i.e. no more messages from the buffer will be delivered.
367 : recv_closed: bool,
368 : /// True if the connection is closed on the sending side,
369 : /// i.e. no more messages will be added to the buffer.
370 : send_closed: bool,
371 : /// Last time a message was delivered from the buffer.
372 : /// If None, it means that the server is the receiver and
373 : /// it has not yet aware of this connection (i.e. has not
374 : /// received the Accept).
375 : last_recv: Option<u64>,
376 : }
377 :
378 : impl NetworkBuffer {
379 548200 : fn new(last_recv: Option<u64>) -> Self {
380 548200 : Self {
381 548200 : buf: VecDeque::new(),
382 548200 : recv_closed: false,
383 548200 : send_closed: false,
384 548200 : last_recv,
385 548200 : }
386 548200 : }
387 : }
388 :
389 : /// Single end of a bidirectional network stream without reordering (TCP-like).
390 : /// Reads are implemented using channels, writes go to the buffer inside VirtualConnection.
391 : pub struct TCP {
392 : net: Arc<NetworkTask>,
393 : conn_id: usize,
394 : dir: MessageDirection,
395 : recv_chan: Chan<NetEvent>,
396 : }
397 :
398 : impl Debug for TCP {
399 1802 : fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
400 1802 : write!(f, "TCP #{} ({})", self.conn_id, sender_str(self.dir),)
401 1802 : }
402 : }
403 :
404 : impl TCP {
405 : /// Send a message to the other side. It's guaranteed that it will not arrive
406 : /// before the arrival of all messages sent earlier.
407 513444 : pub fn send(&self, msg: AnyMessage) {
408 513444 : let conn = self.net.get(self.conn_id);
409 513444 : conn.send(&self.net, self.dir, msg);
410 513444 : }
411 :
412 : /// Get a channel to receive incoming messages.
413 3437071 : pub fn recv_chan(&self) -> Chan<NetEvent> {
414 3437071 : self.recv_chan.clone()
415 3437071 : }
416 :
417 2366064 : pub fn connection_id(&self) -> usize {
418 2366064 : self.conn_id
419 2366064 : }
420 :
421 30899 : pub fn close(&self) {
422 30899 : let conn = self.net.get(self.conn_id);
423 30899 : conn.close(self.dir as usize);
424 30899 : }
425 : }
426 : struct Event {
427 : time: u64,
428 : conn_id: usize,
429 : }
430 :
431 : // BinaryHeap is a max-heap, and we want a min-heap. Reverse the ordering here
432 : // to get that.
433 : impl PartialOrd for Event {
434 7921937 : fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
435 7921937 : Some(self.cmp(other))
436 7921937 : }
437 : }
438 :
439 : impl Ord for Event {
440 7921937 : fn cmp(&self, other: &Self) -> Ordering {
441 7921937 : (other.time, other.conn_id).cmp(&(self.time, self.conn_id))
442 7921937 : }
443 : }
444 :
445 : impl PartialEq for Event {
446 0 : fn eq(&self, other: &Self) -> bool {
447 0 : (other.time, other.conn_id) == (self.time, self.conn_id)
448 0 : }
449 : }
450 :
451 : impl Eq for Event {}
|