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
//! Shared socket options and blocking helpers.
//!
//! Protocol-specific sockets embed `GeneralOptions` for common POSIX socket
//! state such as nonblocking mode, reuse-address, timeouts, socket identity, and
//! device binding. Keeping these fields here avoids duplicating subtly
//! different getsockopt/setsockopt behavior in TCP, UDP, raw, Unix, and vsock
//! transports.
//!
//! # Blocking Semantics
//!
//! The helpers in this module bridge poll-based readiness with synchronous
//! socket operations. They should only wait on protocol-specific pollers and
//! must not drive the smoltcp interface directly. Progress is requested through
//! the net-poll worker so application threads do not become temporary protocol
//! stack owners.
use core::{
sync::atomic::{AtomicBool, AtomicI32, AtomicU32, AtomicU64, Ordering},
task::Waker,
time::Duration,
};
use ax_errno::{AxError, AxResult, LinuxError};
use ax_task::future::{block_on, poll_io, timeout};
use axpoll::{IoEvents, Pollable};
use crate::{
config::{DeviceBinding, InterfaceId},
get_service, interface_by_id,
options::{Configurable, GetSocketOption, SetSocketOption},
};
/// General options for all sockets.
pub(crate) struct GeneralOptions {
/// Whether the socket is non-blocking.
nonblock: AtomicBool,
/// Whether the socket should reuse the address.
reuse_address: AtomicBool,
/// Per-socket send timeout in nanoseconds; zero means no timeout.
send_timeout_nanos: AtomicU64,
/// Per-socket receive timeout in nanoseconds; zero means no timeout.
recv_timeout_nanos: AtomicU64,
/// Bound interface id encoded as zero for "not bound".
bound_if: AtomicU32,
/// Socket type: SOCK_STREAM (1), SOCK_DGRAM (2), SOCK_RAW (3).
socket_type: AtomicI32,
/// Socket domain: AF_INET (2), AF_UNIX (1), AF_VSOCK (40).
domain: i32,
/// IP protocol: IPPROTO_TCP (6), IPPROTO_UDP (17), IPPROTO_ICMP (1), etc.
protocol: i32,
}
impl GeneralOptions {
/// Create new GeneralOptions. `socket_type` is the SOCK_* constant
/// (e.g. SOCK_STREAM=1, SOCK_DGRAM=2, SOCK_RAW=3).
/// `domain` is the AF_* constant (e.g. AF_INET=2, AF_UNIX=1, AF_VSOCK=40).
/// `protocol` is the IPPROTO_* constant (e.g. IPPROTO_TCP=6, IPPROTO_UDP=17, IPPROTO_ICMP=1).
pub fn new(socket_type: i32, domain: i32, protocol: i32) -> Self {
Self {
nonblock: AtomicBool::new(false),
reuse_address: AtomicBool::new(false),
send_timeout_nanos: AtomicU64::new(0),
recv_timeout_nanos: AtomicU64::new(0),
bound_if: AtomicU32::new(0),
socket_type: AtomicI32::new(socket_type),
domain,
protocol,
}
}
/// Returns whether this socket is in non-blocking mode.
pub fn nonblocking(&self) -> bool {
self.nonblock.load(Ordering::Relaxed)
}
/// Returns whether SO_REUSEADDR-style bind reuse is enabled.
pub fn reuse_address(&self) -> bool {
self.reuse_address.load(Ordering::Relaxed)
}
/// Returns the configured send timeout, or `None` for blocking forever.
pub fn send_timeout(&self) -> Option<Duration> {
let nanos = self.send_timeout_nanos.load(Ordering::Relaxed);
(nanos > 0).then(|| Duration::from_nanos(nanos))
}
/// Returns the configured receive timeout, or `None` for blocking forever.
pub fn recv_timeout(&self) -> Option<Duration> {
let nanos = self.recv_timeout_nanos.load(Ordering::Relaxed);
(nanos > 0).then(|| Duration::from_nanos(nanos))
}
/// Updates the interface binding used by route selection.
pub fn set_device_binding(&self, binding: DeviceBinding) {
self.bound_if.store(
binding.bound_if.map_or(0, InterfaceId::get),
Ordering::Release,
);
}
/// Returns the current interface binding.
pub fn device_binding(&self) -> DeviceBinding {
let raw = self.bound_if.load(Ordering::Acquire);
DeviceBinding {
bound_if: (raw != 0).then_some(InterfaceId::new(raw)),
}
}
/// Registers a waker with the service/device path for the bound interface.
pub fn register_waker(&self, waker: &Waker) {
get_service().register_waker(self.device_binding(), waker);
}
/// Runs a send operation through the standard blocking/nonblocking poller.
pub fn send_poller<P: Pollable, F: FnMut() -> AxResult<T>, T>(
&self,
pollable: &P,
f: F,
) -> AxResult<T> {
self.send_poller_with(pollable, false, f)
}
/// Runs a receive operation through the standard blocking/nonblocking poller.
pub fn recv_poller<P: Pollable, F: FnMut() -> AxResult<T>, T>(
&self,
pollable: &P,
f: F,
) -> AxResult<T> {
self.recv_poller_with(pollable, false, f)
}
/// Like [`send_poller`] but lets the caller force non-blocking
/// behavior for this call only (e.g. `MSG_DONTWAIT`). The effective
/// non-blocking state is the OR of the socket's own `nonblocking()`
/// and `extra_nonblocking`.
pub fn send_poller_with<P: Pollable, F: FnMut() -> AxResult<T>, T>(
&self,
pollable: &P,
extra_nonblocking: bool,
f: F,
) -> AxResult<T> {
block_on(timeout(
self.send_timeout(),
poll_io(
pollable,
IoEvents::OUT,
self.nonblocking() || extra_nonblocking,
f,
),
))?
}
/// Like [`recv_poller`] but lets the caller force non-blocking
/// behavior for this call only (e.g. `MSG_DONTWAIT`).
pub fn recv_poller_with<P: Pollable, F: FnMut() -> AxResult<T>, T>(
&self,
pollable: &P,
extra_nonblocking: bool,
f: F,
) -> AxResult<T> {
block_on(timeout(
self.recv_timeout(),
poll_io(
pollable,
IoEvents::IN,
self.nonblocking() || extra_nonblocking,
f,
),
))?
}
}
impl Configurable for GeneralOptions {
fn get_option_inner(&self, option: &mut GetSocketOption) -> AxResult<bool> {
use GetSocketOption as O;
match option {
O::Error(error) => {
// TODO(mivik): actual logic
**error = 0;
}
O::NonBlocking(nonblock) => {
**nonblock = self.nonblocking();
}
O::ReuseAddress(reuse) => {
**reuse = self.reuse_address();
}
O::SendTimeout(timeout) => {
**timeout = Duration::from_nanos(self.send_timeout_nanos.load(Ordering::Relaxed));
}
O::ReceiveTimeout(timeout) => {
**timeout = Duration::from_nanos(self.recv_timeout_nanos.load(Ordering::Relaxed));
}
O::RecvErr(val) => {
**val = false;
}
O::SocketType(t) => {
**t = self.socket_type.load(Ordering::Relaxed);
}
O::SocketProtocol(proto) => {
**proto = self.protocol;
}
O::SocketDomain(domain) => {
**domain = self.domain;
}
O::BindToDevice(binding) => {
**binding = self.device_binding().bound_if;
}
_ => return Ok(false),
}
Ok(true)
}
fn set_option_inner(&self, option: SetSocketOption) -> AxResult<bool> {
use SetSocketOption as O;
match option {
O::NonBlocking(nonblock) => {
self.nonblock.store(*nonblock, Ordering::Relaxed);
}
O::ReuseAddress(reuse) => {
self.reuse_address.store(*reuse, Ordering::Relaxed);
}
O::SendTimeout(timeout) => {
self.send_timeout_nanos
.store(timeout.as_nanos() as u64, Ordering::Relaxed);
}
O::ReceiveTimeout(timeout) => {
self.recv_timeout_nanos
.store(timeout.as_nanos() as u64, Ordering::Relaxed);
}
O::SendBuffer(_) | O::ReceiveBuffer(_) => {
// TODO(mivik): implement buffer size options
}
O::BindToDevice(interface_id) => {
if let Some(id) = *interface_id
&& interface_by_id(id).is_none()
{
return Err(AxError::NoSuchDevice);
}
self.set_device_binding(DeviceBinding {
bound_if: *interface_id,
});
}
O::RecvErr(_) => {
// TODO: Retrieve ICMP errors via errqueue
}
O::SocketType(_) | O::SocketProtocol(_) | O::SocketDomain(_) => {
// Read-only options
return Err(AxError::from(LinuxError::ENOPROTOOPT));
}
_ => return Ok(false),
}
Ok(true)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn device_binding_round_trips_none_and_some_interface() {
let options = GeneralOptions::new(1, 2, 6);
assert_eq!(options.device_binding(), DeviceBinding { bound_if: None });
let interface_id = InterfaceId::new(7);
options.set_device_binding(DeviceBinding {
bound_if: Some(interface_id),
});
assert_eq!(
options.device_binding(),
DeviceBinding {
bound_if: Some(interface_id)
}
);
options.set_device_binding(DeviceBinding { bound_if: None });
assert_eq!(options.device_binding(), DeviceBinding { bound_if: None });
}
}