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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
use crate::{
config::{Config, Interface},
router::Router,
statistics::Statistics,
turn::{Observer, Service},
};
use std::net::SocketAddr;
#[allow(unused)]
struct ServerStartOptions<T> {
bind: SocketAddr,
external: SocketAddr,
service: Service<T>,
router: Router,
statistics: Statistics,
}
#[allow(unused)]
trait Server {
async fn start<T>(options: ServerStartOptions<T>) -> Result<(), anyhow::Error>
where
T: Clone + Observer + 'static;
}
#[cfg(feature = "udp")]
mod udp {
use super::{Server as ServerExt, ServerStartOptions};
use crate::{
statistics::Stats,
stun::Transport,
turn::{Observer, ResponseMethod, SessionAddr},
};
use std::{io::ErrorKind::ConnectionReset, sync::Arc};
use tokio::net::UdpSocket;
/// udp socket process thread.
///
/// read the data packet from the UDP socket and hand
/// it to the proto for processing, and send the processed
/// data packet to the specified address.
pub struct Server;
impl ServerExt for Server {
async fn start<T>(
ServerStartOptions {
bind,
external,
service,
router,
statistics,
}: ServerStartOptions<T>,
) -> Result<(), anyhow::Error>
where
T: Clone + Observer + 'static,
{
let socket = Arc::new(UdpSocket::bind(bind).await?);
let local_addr = socket.local_addr()?;
{
let socket = socket.clone();
let router = router.clone();
let reporter = statistics.get_reporter(Transport::UDP);
let mut operationer = service.get_operationer(external, external);
let mut session_addr = SessionAddr {
address: external,
interface: external,
};
tokio::spawn(async move {
let mut buf = vec![0u8; 2048];
loop {
// Note: An error will also be reported when the remote host is
// shut down, which is not processed yet, but a
// warning will be issued.
let (size, addr) = match socket.recv_from(&mut buf).await {
Err(e) if e.kind() != ConnectionReset => break,
Ok(s) => s,
_ => continue,
};
session_addr.address = addr;
reporter.send(&session_addr, &[Stats::ReceivedBytes(size), Stats::ReceivedPkts(1)]);
// The stun message requires at least 4 bytes. (currently the
// smallest stun message is channel data,
// excluding content)
if size >= 4 {
if let Ok(Some(res)) = operationer.route(&buf[..size], addr) {
let target = res.relay.as_ref().unwrap_or(&addr);
if let Some(ref endpoint) = res.endpoint {
router.send(endpoint, res.method, target, res.bytes);
} else {
if let Err(e) = socket.send_to(res.bytes, target).await {
if e.kind() != ConnectionReset {
break;
}
}
reporter
.send(&session_addr, &[Stats::SendBytes(res.bytes.len()), Stats::SendPkts(1)]);
if let ResponseMethod::Stun(method) = res.method {
if method.is_error() {
reporter.send(&session_addr, &[Stats::ErrorPkts(1)]);
}
}
}
}
}
}
});
}
tokio::spawn(async move {
let mut session_addr = SessionAddr {
address: external,
interface: external,
};
let reporter = statistics.get_reporter(Transport::UDP);
let mut receiver = router.get_receiver(external);
while let Some((bytes, _, addr)) = receiver.recv().await {
session_addr.address = addr;
if let Err(e) = socket.send_to(&bytes, addr).await {
if e.kind() != ConnectionReset {
break;
}
} else {
reporter.send(&session_addr, &[Stats::SendBytes(bytes.len()), Stats::SendPkts(1)]);
}
}
router.remove(&external);
log::error!("udp server close: interface={:?}", local_addr);
});
log::info!(
"turn server listening: bind={}, external={}, transport=UDP",
bind,
external,
);
Ok(())
}
}
}
#[cfg(feature = "tcp")]
mod tcp {
use super::{Server as ServerExt, ServerStartOptions};
use crate::{
statistics::Stats,
stun::{Decoder, Transport},
turn::{Observer, ResponseMethod, SessionAddr},
};
use std::{
ops::{Deref, DerefMut},
sync::Arc,
};
use tokio::{io::AsyncReadExt, io::AsyncWriteExt, net::TcpListener, sync::Mutex};
static ZERO_BYTES: [u8; 8] = [0u8; 8];
/// An emulated double buffer queue, this is used when reading data over
/// TCP.
///
/// When reading data over TCP, you need to keep adding to the buffer until
/// you find the delimited position. But this double buffer queue solves
/// this problem well, in the queue, the separation is treated as the first
/// read operation and after the separation the buffer is reversed and
/// another free buffer is used for writing the data.
///
/// If the current buffer in the separation after the existence of
/// unconsumed data, this time the unconsumed data will be copied to another
/// free buffer, and fill the length of the free buffer data, this time to
/// write data again when you can continue to fill to the end of the
/// unconsumed data.
///
/// This queue only needs to copy the unconsumed data without duplicating
/// the memory allocation, which will reduce a lot of overhead.
struct ExchangeBuffer {
buffers: [(Vec<u8>, usize /* len */); 2],
index: usize,
}
impl Default for ExchangeBuffer {
#[rustfmt::skip]
fn default() -> Self {
Self {
index: 0,
buffers: [
(vec![0u8; 2048], 0),
(vec![0u8; 2048], 0),
],
}
}
}
impl Deref for ExchangeBuffer {
type Target = [u8];
fn deref(&self) -> &Self::Target {
&self.buffers[self.index].0[..]
}
}
impl DerefMut for ExchangeBuffer {
// Writes need to take into account overwriting written data, so fetching the
// writable buffer starts with the internal cursor.
fn deref_mut(&mut self) -> &mut Self::Target {
let len = self.buffers[self.index].1;
&mut self.buffers[self.index].0[len..]
}
}
impl ExchangeBuffer {
fn len(&self) -> usize {
self.buffers[self.index].1
}
/// The buffer does not automatically advance the cursor as BytesMut
/// does, and you need to manually advance the length of the data
/// written.
fn advance(&mut self, len: usize) {
self.buffers[self.index].1 += len;
}
fn split(&mut self, len: usize) -> &[u8] {
let (ref current_bytes, current_len) = self.buffers[self.index];
// The length of the separation cannot be greater than the length of the data.
assert!(len <= current_len);
// Length of unconsumed data
let remaining = current_len - len;
{
// The current buffer is no longer in use, resetting the content length.
self.buffers[self.index].1 = 0;
// Invert the buffer.
self.index = if self.index == 0 { 1 } else { 0 };
// The length of unconsumed data needs to be updated into the reversed
// completion buffer.
self.buffers[self.index].1 = remaining;
}
// Unconsumed data exists and is copied to the free buffer.
#[allow(mutable_transmutes)]
if remaining > 0 {
unsafe { std::mem::transmute::<&[u8], &mut [u8]>(&self.buffers[self.index].0[..remaining]) }
.copy_from_slice(¤t_bytes[len..current_len]);
}
¤t_bytes[..len]
}
}
/// tcp socket process thread.
///
/// This function is used to handle all connections coming from the tcp
/// listener, and handle the receiving, sending and forwarding of messages.
pub struct Server;
impl ServerExt for Server {
async fn start<T>(
ServerStartOptions {
bind,
external,
service,
router,
statistics,
}: ServerStartOptions<T>,
) -> Result<(), anyhow::Error>
where
T: Clone + Observer + 'static,
{
let listener = TcpListener::bind(bind).await?;
let local_addr = listener.local_addr()?;
tokio::spawn(async move {
// Accept all connections on the current listener, but exit the entire
// process when an error occurs.
while let Ok((socket, address)) = listener.accept().await {
let router = router.clone();
let reporter = statistics.get_reporter(Transport::TCP);
let mut receiver = router.get_receiver(address);
let mut operationer = service.get_operationer(address, external);
log::info!("tcp socket accept: addr={:?}, interface={:?}", address, local_addr,);
// Disable the Nagle algorithm.
// because to maintain real-time, any received data should be processed
// as soon as possible.
if let Err(e) = socket.set_nodelay(true) {
log::error!("tcp socket set nodelay failed!: addr={}, err={}", address, e);
}
let session_addr = SessionAddr {
interface: external,
address,
};
let (mut reader, writer) = socket.into_split();
let writer = Arc::new(Mutex::new(writer));
// Use a separate task to handle messages forwarded to this socket.
let writer_ = writer.clone();
let reporter_ = reporter.clone();
tokio::spawn(async move {
while let Some((bytes, method, _)) = receiver.recv().await {
let mut writer = writer_.lock().await;
if writer.write_all(bytes.as_slice()).await.is_err() {
break;
} else {
reporter_.send(&session_addr, &[Stats::SendBytes(bytes.len()), Stats::SendPkts(1)]);
}
// The channel data needs to be aligned in multiples of 4 in
// tcp. If the channel data is forwarded to tcp, the alignment
// bit needs to be filled, because if the channel data comes
// from udp, it is not guaranteed to be aligned and needs to be
// checked.
if method == ResponseMethod::ChannelData {
let pad = bytes.len() % 4;
if pad > 0 && writer.write_all(&ZERO_BYTES[..(4 - pad)]).await.is_err() {
break;
}
}
}
});
let sessions = service.get_sessions();
tokio::spawn(async move {
let mut buffer = ExchangeBuffer::default();
'a: while let Ok(size) = reader.read(&mut buffer).await {
// When the received message is 0, it means that the socket
// has been closed.
if size == 0 {
break;
} else {
reporter.send(&session_addr, &[Stats::ReceivedBytes(size)]);
buffer.advance(size);
}
// The minimum length of a stun message will not be less
// than 4.
if buffer.len() < 4 {
continue;
}
loop {
if buffer.len() <= 4 {
break;
}
// Try to get the message length, if the currently
// received data is less than the message length, jump
// out of the current loop and continue to receive more
// data.
let size = match Decoder::message_size(&buffer, true) {
Err(_) => break,
Ok(s) => {
// Limit the maximum length of messages to 2048, this is to prevent buffer
// overflow attacks.
if s > 2048 {
break 'a;
}
if s > buffer.len() {
break;
}
reporter.send(&session_addr, &[Stats::ReceivedPkts(1)]);
s
}
};
let chunk = buffer.split(size);
if let Ok(ret) = operationer.route(chunk, address) {
if let Some(res) = ret {
if let Some(ref inerface) = res.endpoint {
router.send(
inerface,
res.method,
res.relay.as_ref().unwrap_or(&address),
res.bytes,
);
} else {
if writer.lock().await.write_all(res.bytes).await.is_err() {
break 'a;
}
reporter.send(
&session_addr,
&[Stats::SendBytes(res.bytes.len()), Stats::SendPkts(1)],
);
if let ResponseMethod::Stun(method) = res.method {
if method.is_error() {
reporter.send(&session_addr, &[Stats::ErrorPkts(1)]);
}
}
}
}
} else {
break 'a;
}
}
}
// When the tcp connection is closed, the procedure to close the session is
// process directly once, avoiding the connection being disconnected
// directly without going through the closing
// process.
sessions.refresh(&session_addr, 0);
router.remove(&address);
log::info!("tcp socket disconnect: addr={:?}, interface={:?}", address, local_addr);
});
}
log::error!("tcp server close: interface={:?}", local_addr);
});
log::info!(
"turn server listening: bind={}, external={}, transport=TCP",
bind,
external,
);
Ok(())
}
}
}
/// start turn server.
///
/// create a specified number of threads,
/// each thread processes udp data separately.
pub async fn start<T>(config: &Config, statistics: &Statistics, service: &Service<T>) -> anyhow::Result<()>
where
T: Clone + Observer + 'static,
{
#[allow(unused)]
use crate::config::Transport;
let router = Router::default();
for Interface {
transport,
external,
bind,
} in config.turn.interfaces.iter().cloned()
{
#[allow(unused)]
let options = ServerStartOptions {
statistics: statistics.clone(),
service: service.clone(),
router: router.clone(),
external,
bind,
};
match transport {
#[cfg(feature = "udp")]
Transport::UDP => udp::Server::start(options).await?,
#[cfg(feature = "tcp")]
Transport::TCP => tcp::Server::start(options).await?,
#[allow(unreachable_patterns)]
_ => (),
};
}
Ok(())
}