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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
|
/* libhw/host_net.c - <libhw/generic/net.h> implementation for hosted glibc
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#define _GNU_SOURCE /* for pthread_sigqueue(3gnu) */
/* misc */
#include <assert.h> /* for assert() */
#include <errno.h> /* for errno, EAGAIN, EINVAL */
#include <error.h> /* for error(3gnu) */
#include <stdlib.h> /* for abs(), shutdown(), SHUT_RD, SHUT_WR, SHUT_RDWR */
#include <unistd.h> /* for read(), write() */
/* net */
#include <arpa/inet.h> /* for htons(3p) */
#include <netinet/in.h> /* for struct sockaddr_in */
#include <sys/socket.h> /* for struct sockaddr{,_storage}, SOCK_*, SOL_*, SO_*, socket(), setsockopt(), bind(), listen(), accept() */
/* async */
#include <pthread.h> /* for pthread_* */
#include <signal.h> /* for siginfo_t, struct sigaction, enum sigval, sigaction(), SA_SIGINFO */
#include <libcr/coroutine.h>
#include <libmisc/vcall.h>
#include <libhw/generic/alarmclock.h>
#define IMPLEMENTATION_FOR_LIBHW_HOST_NET_H YES
#include <libhw/host_net.h>
#include "host_util.h" /* for host_sigrt_alloc(), ns_to_host_us_time() */
/* common *********************************************************************/
#define UNUSED(name) /* name __attribute__ ((unused)) */
static int hostnet_sig_io = 0;
static void hostnet_handle_sig_io(int UNUSED(sig), siginfo_t *info, void *UNUSED(ucontext)) {
cr_unpause_from_intrhandler((cid_t)info->si_value.sival_int);
}
static void hostnet_init(void) {
struct sigaction action = {0};
if (hostnet_sig_io)
return;
hostnet_sig_io = host_sigrt_alloc();
action.sa_flags = SA_SIGINFO;
action.sa_sigaction = hostnet_handle_sig_io;
if (sigaction(hostnet_sig_io, &action, NULL) < 0)
error(1, errno, "sigaction");
}
#define WAKE_COROUTINE(args) do { \
int r; \
union sigval val = {0}; \
val.sival_int = (int)((args)->cr_coroutine); \
do { \
r = pthread_sigqueue((args)->cr_thread, \
hostnet_sig_io, \
val); \
assert(r == 0 || r == EAGAIN); \
} while (r == EAGAIN); \
} while (0)
static inline bool RUN_PTHREAD(void *(*fn)(void *), void *args) {
pthread_t thread;
if (pthread_create(&thread, NULL, fn, args))
return true;
cr_pause_and_yield();
if (pthread_join(thread, NULL))
return true;
return false;
}
static inline ssize_t hostnet_map_negerrno(ssize_t v) {
if (v >= 0)
return v;
switch (v) {
case -ETIMEDOUT:
return -NET_ETIMEDOUT;
case -EBADF:
return -NET_ECLOSED;
case -EMSGSIZE:
return -NET_EMSGSIZE;
default:
return -NET_EOTHER;
}
}
/* TCP init() ( AKA socket(3) + listen(3) )************************************/
static implements_net_stream_conn *hostnet_tcp_accept(implements_net_stream_listener *_listener);
static void hostnet_tcp_set_read_deadline(implements_net_stream_conn *conn, uint64_t ts_ns);
static ssize_t hostnet_tcp_read(implements_net_stream_conn *conn, void *buf, size_t count);
static ssize_t hostnet_tcp_write(implements_net_stream_conn *conn, void *buf, size_t count);
static int hostnet_tcp_close(implements_net_stream_conn *conn, bool rd, bool wr);
static struct net_stream_listener_vtable hostnet_tcp_listener_vtable = {
.accept = hostnet_tcp_accept,
};
static struct net_stream_conn_vtable hostnet_tcp_conn_vtable = {
.set_read_deadline = hostnet_tcp_set_read_deadline,
.read = hostnet_tcp_read,
.write = hostnet_tcp_write,
.close = hostnet_tcp_close,
};
void hostnet_tcp_listener_init(struct hostnet_tcp_listener *self, uint16_t port) {
int listenerfd;
union {
struct sockaddr_in in;
struct sockaddr gen;
} addr = { 0 };
hostnet_init();
addr.in.sin_family = AF_INET;
addr.in.sin_port = htons(port);
listenerfd = socket(AF_INET, SOCK_STREAM, 0);
if (listenerfd < 0)
error(1, errno, "socket");
if (setsockopt(listenerfd, SOL_SOCKET, SO_REUSEADDR, &(int){1}, sizeof(int)) < 0)
error(1, errno, "setsockopt(fd=%d, SO_REUSEADDR=1)", listenerfd);
if (setsockopt(listenerfd, SOL_SOCKET, SO_REUSEPORT, &(int){1}, sizeof(int)) < 0)
error(1, errno, "setsockopt(fd=%d, SO_REUSEPORT=1)", listenerfd);
if (bind(listenerfd, &addr.gen, sizeof addr) < 0)
error(1, errno, "bind(fd=%d)", listenerfd);
if (listen(listenerfd, 0) < 0)
error(1, errno, "listen(fd=%d)", listenerfd);
self->vtable = &hostnet_tcp_listener_vtable;
self->fd = listenerfd;
}
/* TCP accept() ***************************************************************/
struct hostnet_pthread_accept_args {
pthread_t cr_thread;
cid_t cr_coroutine;
int listenerfd;
int *ret_connfd;
};
static void *hostnet_pthread_accept(void *_args) {
struct hostnet_pthread_accept_args *args = _args;
*(args->ret_connfd) = accept(args->listenerfd, NULL, NULL);
if (*(args->ret_connfd) < 0)
*(args->ret_connfd) = -errno;
WAKE_COROUTINE(args);
return NULL;
}
static implements_net_stream_conn *hostnet_tcp_accept(implements_net_stream_listener *_listener) {
struct hostnet_tcp_listener *listener =
VCALL_SELF(struct hostnet_tcp_listener, implements_net_stream_listener, _listener);
assert(listener);
int ret_connfd;
struct hostnet_pthread_accept_args args = {
.cr_thread = pthread_self(),
.cr_coroutine = cr_getcid(),
.listenerfd = listener->fd,
.ret_connfd = &ret_connfd,
};
if (RUN_PTHREAD(hostnet_pthread_accept, &args))
return NULL;
listener->active_conn.vtable = &hostnet_tcp_conn_vtable;
listener->active_conn.fd = ret_connfd;
return &listener->active_conn;
}
/* TCP read() *****************************************************************/
static void hostnet_tcp_set_read_deadline(implements_net_stream_conn *_conn, uint64_t ts_ns) {
struct _hostnet_tcp_conn *conn =
VCALL_SELF(struct _hostnet_tcp_conn, implements_net_stream_conn, _conn);
assert(conn);
conn->read_deadline_ns = ts_ns;
}
struct hostnet_pthread_read_args {
pthread_t cr_thread;
cid_t cr_coroutine;
int connfd;
struct timeval timeout;
void *buf;
size_t count;
ssize_t *ret;
};
static void *hostnet_pthread_read(void *_args) {
struct hostnet_pthread_read_args *args = _args;
*(args->ret) = setsockopt(args->connfd, SOL_SOCKET, SO_RCVTIMEO,
&args->timeout, sizeof(args->timeout));
if (*(args->ret) < 0)
goto end;
*(args->ret) = read(args->connfd, args->buf, args->count);
if (*(args->ret) < 0)
goto end;
end:
if (*(args->ret) < 0)
*(args->ret) = hostnet_map_negerrno(-errno);
WAKE_COROUTINE(args);
return NULL;
}
static ssize_t hostnet_tcp_read(implements_net_stream_conn *_conn, void *buf, size_t count) {
struct _hostnet_tcp_conn *conn =
VCALL_SELF(struct _hostnet_tcp_conn, implements_net_stream_conn, _conn);
assert(conn);
ssize_t ret;
struct hostnet_pthread_read_args args = {
.cr_thread = pthread_self(),
.cr_coroutine = cr_getcid(),
.connfd = conn->fd,
.buf = buf,
.count = count,
.ret = &ret,
};
if (conn->read_deadline_ns) {
uint64_t now_ns = VCALL(bootclock, get_time_ns);
if (conn->read_deadline_ns < now_ns)
return -NET_ETIMEDOUT;
args.timeout = ns_to_host_us_time(conn->read_deadline_ns-now_ns);
} else {
args.timeout = (host_us_time_t){0};
}
if (RUN_PTHREAD(hostnet_pthread_read, &args))
return -NET_ETHREAD;
return ret;
}
/* TCP write() ****************************************************************/
struct hostnet_pthread_write_args {
pthread_t cr_thread;
cid_t cr_coroutine;
int connfd;
void *buf;
size_t count;
ssize_t *ret;
};
static void *hostnet_pthread_write(void *_args) {
struct hostnet_pthread_read_args *args = _args;
size_t done = 0;
while (done < args->count) {
ssize_t r = write(args->connfd, args->buf, args->count);
if (r < 0) {
hostnet_map_negerrno(-errno);
break;
}
done += r;
}
if (done == args->count)
*(args->ret) = done;
WAKE_COROUTINE(args);
return NULL;
}
static ssize_t hostnet_tcp_write(implements_net_stream_conn *_conn, void *buf, size_t count) {
struct _hostnet_tcp_conn *conn =
VCALL_SELF(struct _hostnet_tcp_conn, implements_net_stream_conn, _conn);
assert(conn);
ssize_t ret;
struct hostnet_pthread_write_args args = {
.cr_thread = pthread_self(),
.cr_coroutine = cr_getcid(),
.connfd = conn->fd,
.buf = buf,
.count = count,
.ret = &ret,
};
if (RUN_PTHREAD(hostnet_pthread_write, &args))
return -NET_ETHREAD;
return ret;
}
/* TCP close() ****************************************************************/
static int hostnet_tcp_close(implements_net_stream_conn *_conn, bool rd, bool wr) {
struct _hostnet_tcp_conn *conn =
VCALL_SELF(struct _hostnet_tcp_conn, implements_net_stream_conn, _conn);
assert(conn);
int how;
if (rd && wr)
how = SHUT_RDWR;
else if (rd && !wr)
how = SHUT_RD;
else if (!rd && wr)
how = SHUT_WR;
else
assert(false);
return hostnet_map_negerrno(shutdown(conn->fd, how) ? -errno : 0);
}
/* UDP init() *****************************************************************/
static void hostnet_udp_set_read_deadline(implements_net_packet_conn *self,
uint64_t ts_ns);
static ssize_t hostnet_udp_sendto(implements_net_packet_conn *self, void *buf, size_t len,
struct net_ip4_addr addr, uint16_t port);
static ssize_t hostnet_udp_recvfrom(implements_net_packet_conn *self, void *buf, size_t len,
struct net_ip4_addr *ret_addr, uint16_t *ret_port);
static int hostnet_udp_close(implements_net_packet_conn *self);
static struct net_packet_conn_vtable hostnet_udp_conn_vtable = {
.set_read_deadline = hostnet_udp_set_read_deadline,
.sendto = hostnet_udp_sendto,
.recvfrom = hostnet_udp_recvfrom,
.close = hostnet_udp_close,
};
void hostnet_udp_conn_init(struct hostnet_udp_conn *self, uint16_t port) {
int fd;
union {
struct sockaddr_in in;
struct sockaddr gen;
struct sockaddr_storage stor;
} addr = { 0 };
hostnet_init();
addr.in.sin_family = AF_INET;
addr.in.sin_port = htons(port);
fd = socket(AF_INET, SOCK_DGRAM, 0);
if (fd < 0)
error(1, errno, "socket");
if (bind(fd, &addr.gen, sizeof addr) < 0)
error(1, errno, "bind");
self->vtable = &hostnet_udp_conn_vtable;
self->fd = fd;
}
/* UDP sendto() ***************************************************************/
struct hostnet_pthread_sendto_args {
pthread_t cr_thread;
cid_t cr_coroutine;
int connfd;
void *buf;
size_t count;
struct net_ip4_addr node;
uint16_t port;
ssize_t *ret;
};
static void *hostnet_pthread_sendto(void *_args) {
struct hostnet_pthread_sendto_args *args = _args;
union {
struct sockaddr_in in;
struct sockaddr gen;
struct sockaddr_storage stor;
} addr = { 0 };
addr.in.sin_family = AF_INET;
addr.in.sin_addr.s_addr =
(((uint32_t)args->node.octets[0])<<24) |
(((uint32_t)args->node.octets[1])<<16) |
(((uint32_t)args->node.octets[2])<< 8) |
(((uint32_t)args->node.octets[3])<< 0) ;
addr.in.sin_port = htons(args->port);
*(args->ret) = sendto(args->connfd, args->buf, args->count, 0, &addr.gen, sizeof(addr));
if (*(args->ret) < 0)
*(args->ret) = hostnet_map_negerrno(-errno);
WAKE_COROUTINE(args);
return NULL;
}
static ssize_t hostnet_udp_sendto(implements_net_packet_conn *_conn, void *buf, size_t count,
struct net_ip4_addr node, uint16_t port) {
struct hostnet_udp_conn *conn =
VCALL_SELF(struct hostnet_udp_conn, implements_net_packet_conn, _conn);
assert(conn);
ssize_t ret;
struct hostnet_pthread_sendto_args args = {
.cr_thread = pthread_self(),
.cr_coroutine = cr_getcid(),
.connfd = conn->fd,
.buf = buf,
.count = count,
.node = node,
.port = port,
.ret = &ret,
};
if (RUN_PTHREAD(hostnet_pthread_sendto, &args))
return -NET_ETHREAD;
return ret;
}
/* UDP recvfrom() *************************************************************/
static void hostnet_udp_set_read_deadline(implements_net_packet_conn *_conn,
uint64_t ts_ns) {
struct hostnet_udp_conn *conn =
VCALL_SELF(struct hostnet_udp_conn, implements_net_packet_conn, _conn);
assert(conn);
conn->read_deadline_ns = ts_ns;
}
struct hostnet_pthread_recvfrom_args {
pthread_t cr_thread;
cid_t cr_coroutine;
int connfd;
struct timeval timeout;
void *buf;
size_t count;
ssize_t *ret_size;
struct net_ip4_addr *ret_node;
uint16_t *ret_port;
};
static void *hostnet_pthread_recvfrom(void *_args) {
struct hostnet_pthread_recvfrom_args *args = _args;
union {
struct sockaddr_in in;
struct sockaddr gen;
struct sockaddr_storage stor;
} addr = { 0 };
socklen_t addr_size;
*(args->ret_size) = setsockopt(args->connfd, SOL_SOCKET, SO_RCVTIMEO,
&args->timeout, sizeof(args->timeout));
if (*(args->ret_size) < 0)
goto end;
*(args->ret_size) = recvfrom(args->connfd, args->buf, args->count,
MSG_TRUNC, &addr.gen, &addr_size);
if (*(args->ret_size) < 0)
goto end;
assert(addr.in.sin_family == AF_INET);
if (args->ret_node) {
args->ret_node->octets[0] = (addr.in.sin_addr.s_addr >> 24) & 0xFF;
args->ret_node->octets[1] = (addr.in.sin_addr.s_addr >> 16) & 0xFF;
args->ret_node->octets[2] = (addr.in.sin_addr.s_addr >> 8) & 0xFF;
args->ret_node->octets[3] = (addr.in.sin_addr.s_addr >> 0) & 0xFF;
}
if (args->ret_port) {
(*args->ret_port) = ntohs(addr.in.sin_port);
}
end:
if (*(args->ret_size) < 0)
*(args->ret_size) = hostnet_map_negerrno(-errno);
WAKE_COROUTINE(args);
return NULL;
}
static ssize_t hostnet_udp_recvfrom(implements_net_packet_conn *_conn, void *buf, size_t count,
struct net_ip4_addr *ret_node, uint16_t *ret_port) {
struct hostnet_udp_conn *conn =
VCALL_SELF(struct hostnet_udp_conn, implements_net_packet_conn, _conn);
assert(conn);
ssize_t ret;
struct hostnet_pthread_recvfrom_args args = {
.cr_thread = pthread_self(),
.cr_coroutine = cr_getcid(),
.connfd = conn->fd,
.buf = buf,
.count = count,
.ret_size = &ret,
.ret_node = ret_node,
.ret_port = ret_port,
};
if (conn->read_deadline_ns) {
uint64_t now_ns = VCALL(bootclock, get_time_ns);
if (conn->read_deadline_ns < now_ns)
return -NET_ETIMEDOUT;
args.timeout = ns_to_host_us_time(conn->read_deadline_ns-now_ns);
} else {
args.timeout = (host_us_time_t){0};
}
if (RUN_PTHREAD(hostnet_pthread_recvfrom, &args))
return -NET_ETHREAD;
return ret;
}
/* UDP close() ****************************************************************/
static int hostnet_udp_close(implements_net_packet_conn *_conn) {
struct hostnet_udp_conn *conn =
VCALL_SELF(struct hostnet_udp_conn, implements_net_packet_conn, _conn);
assert(conn);
return hostnet_map_negerrno(close(conn->fd) ? -errno : 0);
}
|