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
use std::{
io::{self, IoSliceMut},
mem,
os::windows::io::AsRawSocket,
time::Instant,
};
use proto::Transmit;
use windows_sys::Win32::Networking::WinSock;
use super::{log_sendmsg_error, RecvMeta, UdpSockRef, UdpState, IO_ERROR_LOG_INTERVAL};
#[derive(Debug)]
pub struct UdpSocketState {
last_send_error: Instant,
}
impl UdpSocketState {
pub fn new() -> Self {
let now = Instant::now();
Self {
last_send_error: now.checked_sub(2 * IO_ERROR_LOG_INTERVAL).unwrap_or(now),
}
}
pub fn configure(socket: UdpSockRef<'_>) -> io::Result<()> {
socket.0.set_nonblocking(true)?;
let addr = socket.0.local_addr()?;
let is_ipv6 = addr.as_socket_ipv6().is_some();
let v6only = unsafe {
let mut result: u32 = 0;
let mut len = mem::size_of_val(&result) as i32;
let rc = WinSock::getsockopt(
socket.0.as_raw_socket() as _,
WinSock::IPPROTO_IPV6,
WinSock::IPV6_V6ONLY as _,
&mut result as *mut _ as _,
&mut len,
);
if rc == -1 {
return Err(io::Error::last_os_error());
}
result != 0
};
let is_ipv4 = addr.as_socket_ipv4().is_some() || !v6only;
let sock_true: u32 = 1;
if is_ipv4 {
let rc = unsafe {
WinSock::setsockopt(
socket.0.as_raw_socket() as _,
WinSock::IPPROTO_IP as _,
WinSock::IP_DONTFRAGMENT as _,
&sock_true as *const _ as _,
mem::size_of_val(&sock_true) as _,
)
};
if rc == -1 {
return Err(io::Error::last_os_error());
}
}
if is_ipv6 {
let rc = unsafe {
WinSock::setsockopt(
socket.0.as_raw_socket() as _,
WinSock::IPPROTO_IPV6 as _,
WinSock::IPV6_DONTFRAG as _,
&sock_true as *const _ as _,
mem::size_of_val(&sock_true) as _,
)
};
if rc == -1 {
return Err(io::Error::last_os_error());
}
}
Ok(())
}
pub fn send(
&mut self,
socket: UdpSockRef<'_>,
_state: &UdpState,
transmits: &[Transmit],
) -> Result<usize, io::Error> {
let mut sent = 0;
for transmit in transmits {
match socket.0.send_to(
&transmit.contents,
&socket2::SockAddr::from(transmit.destination),
) {
Ok(_) => {
sent += 1;
}
Err(_) if sent != 0 => return Ok(sent),
Err(e) => {
if e.kind() == io::ErrorKind::WouldBlock {
return Err(e);
}
log_sendmsg_error(&mut self.last_send_error, e, transmit);
sent += 1;
}
}
}
Ok(sent)
}
pub fn recv(
&self,
socket: UdpSockRef<'_>,
bufs: &mut [IoSliceMut<'_>],
meta: &mut [RecvMeta],
) -> io::Result<usize> {
let bufs = unsafe {
&mut *(bufs as *mut [IoSliceMut<'_>] as *mut [socket2::MaybeUninitSlice<'_>])
};
let (len, _flags, addr) = socket.0.recv_from_vectored(bufs)?;
meta[0] = RecvMeta {
len,
stride: len,
addr: addr.as_socket().unwrap(),
ecn: None,
dst_ip: None,
};
Ok(1)
}
}
impl Default for UdpSocketState {
fn default() -> Self {
Self::new()
}
}
pub fn udp_state() -> super::UdpState {
super::UdpState {
max_gso_segments: std::sync::atomic::AtomicUsize::new(1),
gro_segments: 1,
}
}
pub const BATCH_SIZE: usize = 1;