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
|
module net
import time
const (
udp_default_read_timeout = time.second / 10
udp_default_write_timeout = time.second / 10
)
struct UdpSocket {
handle int
l Addr
// TODO(emily): replace with option again
// when i figure out how to coerce it properly
mut:
has_r bool
r Addr
}
pub struct UdpConn {
pub mut:
sock UdpSocket
mut:
write_deadline time.Time
read_deadline time.Time
read_timeout time.Duration
write_timeout time.Duration
}
pub fn dial_udp(raddr string) ?&UdpConn {
addrs := resolve_addrs_fuzzy(raddr, .udp) ?
for addr in addrs {
// create a local socket for this
// bind to any port (or file) (we dont care in this
// case because we only care about the remote)
if sock := new_udp_socket_for_remote(addr) {
return &UdpConn{
sock: sock
read_timeout: net.udp_default_read_timeout
write_timeout: net.udp_default_write_timeout
}
}
}
return none
}
// pub fn dial_udp(laddr string, raddr string) ?&UdpConn {
// local := resolve_addr(laddr, .inet, .udp) ?
// sbase := new_udp_socket() ?
// sock := UdpSocket{
// handle: sbase.handle
// l: local
// r: resolve_wrapper(raddr)
// }
// }
pub fn (mut c UdpConn) write_ptr(b &byte, len int) ?int {
remote := c.sock.remote() or { return err_no_udp_remote }
return c.write_to_ptr(remote, b, len)
}
pub fn (mut c UdpConn) write(buf []byte) ?int {
return c.write_ptr(buf.data, buf.len)
}
pub fn (mut c UdpConn) write_string(s string) ?int {
return c.write_ptr(s.str, s.len)
}
pub fn (mut c UdpConn) write_to_ptr(addr Addr, b &byte, len int) ?int {
res := C.sendto(c.sock.handle, b, len, 0, voidptr(&addr), addr.len())
if res >= 0 {
return res
}
code := error_code()
if code == int(error_ewouldblock) {
c.wait_for_write() ?
socket_error(C.sendto(c.sock.handle, b, len, 0, voidptr(&addr), addr.len())) ?
} else {
wrap_error(code) ?
}
return none
}
// write_to blocks and writes the buf to the remote addr specified
pub fn (mut c UdpConn) write_to(addr Addr, buf []byte) ?int {
return c.write_to_ptr(addr, buf.data, buf.len)
}
// write_to_string blocks and writes the buf to the remote addr specified
pub fn (mut c UdpConn) write_to_string(addr Addr, s string) ?int {
return c.write_to_ptr(addr, s.str, s.len)
}
// read reads from the socket into buf up to buf.len returning the number of bytes read
pub fn (mut c UdpConn) read(mut buf []byte) ?(int, Addr) {
mut addr := Addr{
addr: AddrData{
Ip6: Ip6{}
}
}
len := sizeof(Addr)
mut res := wrap_read_result(C.recvfrom(c.sock.handle, voidptr(buf.data), buf.len,
0, voidptr(&addr), &len)) ?
if res > 0 {
return res, addr
}
code := error_code()
if code == int(error_ewouldblock) {
c.wait_for_read() ?
// same setup as in tcp
res = wrap_read_result(C.recvfrom(c.sock.handle, voidptr(buf.data), buf.len, 0,
voidptr(&addr), &len)) ?
res2 := socket_error(res) ?
return res2, addr
} else {
wrap_error(code) ?
}
return none
}
pub fn (c &UdpConn) read_deadline() ?time.Time {
if c.read_deadline.unix == 0 {
return c.read_deadline
}
return none
}
pub fn (mut c UdpConn) set_read_deadline(deadline time.Time) {
c.read_deadline = deadline
}
pub fn (c &UdpConn) write_deadline() ?time.Time {
if c.write_deadline.unix == 0 {
return c.write_deadline
}
return none
}
pub fn (mut c UdpConn) set_write_deadline(deadline time.Time) {
c.write_deadline = deadline
}
pub fn (c &UdpConn) read_timeout() time.Duration {
return c.read_timeout
}
pub fn (mut c UdpConn) set_read_timeout(t time.Duration) {
c.read_timeout = t
}
pub fn (c &UdpConn) write_timeout() time.Duration {
return c.write_timeout
}
pub fn (mut c UdpConn) set_write_timeout(t time.Duration) {
c.write_timeout = t
}
[inline]
pub fn (mut c UdpConn) wait_for_read() ? {
return wait_for_read(c.sock.handle, c.read_deadline, c.read_timeout)
}
[inline]
pub fn (mut c UdpConn) wait_for_write() ? {
return wait_for_write(c.sock.handle, c.write_deadline, c.write_timeout)
}
pub fn (c &UdpConn) str() string {
// TODO
return 'UdpConn'
}
pub fn (mut c UdpConn) close() ? {
return c.sock.close()
}
pub fn listen_udp(laddr string) ?&UdpConn {
addrs := resolve_addrs_fuzzy(laddr, .udp) ?
// TODO(emily):
// here we are binding to the first address
// and that is probably not ideal
addr := addrs[0]
return &UdpConn{
sock: new_udp_socket(addr) ?
read_timeout: net.udp_default_read_timeout
write_timeout: net.udp_default_write_timeout
}
}
fn new_udp_socket(local_addr Addr) ?&UdpSocket {
family := local_addr.family()
sockfd := socket_error(C.socket(family, SocketType.udp, 0)) ?
mut s := &UdpSocket{
handle: sockfd
l: local_addr
r: Addr{
addr: AddrData{
Ip6: Ip6{}
}
}
}
s.set_option_bool(.reuse_addr, true) ?
if family == .ip6 {
s.set_dualstack(true) ?
}
// NOTE: refer to comments in tcp.v
$if windows {
t := u32(1) // true
socket_error(C.ioctlsocket(sockfd, fionbio, &t)) ?
} $else {
socket_error(C.fcntl(sockfd, C.F_SETFD, C.O_NONBLOCK)) ?
}
// cast to the correct type
socket_error(C.bind(s.handle, voidptr(&local_addr), local_addr.len())) ?
return s
}
fn new_udp_socket_for_remote(raddr Addr) ?&UdpSocket {
// Invent a sutible local address for this remote addr
// Appease compiler
mut addr := Addr{
addr: AddrData{
Ip6: Ip6{}
}
}
match raddr.family() {
.ip, .ip6 {
// Use ip6 dualstack
addr = new_ip6(0, addr_ip6_any)
}
.unix {
addr = temp_unix() ?
}
else {
panic('Invalid family')
}
}
mut sock := new_udp_socket(addr) ?
sock.has_r = true
sock.r = raddr
return sock
}
pub fn (mut s UdpSocket) set_option_bool(opt SocketOption, value bool) ? {
// TODO reenable when this `in` operation works again
// if opt !in opts_can_set {
// return err_option_not_settable
// }
// if opt !in opts_bool {
// return err_option_wrong_type
// }
x := int(value)
socket_error(C.setsockopt(s.handle, C.SOL_SOCKET, int(opt), &x, sizeof(int))) ?
}
pub fn (mut s UdpSocket) set_dualstack(on bool) ? {
x := int(!on)
socket_error(C.setsockopt(s.handle, C.IPPROTO_IPV6, int(SocketOption.ipv6_only), &x,
sizeof(int))) ?
}
fn (mut s UdpSocket) close() ? {
return shutdown(s.handle)
}
fn (mut s UdpSocket) @select(test Select, timeout time.Duration) ?bool {
return @select(s.handle, test, timeout)
}
fn (s &UdpSocket) remote() ?Addr {
if s.has_r {
return s.r
}
return none
}
|