summaryrefslogtreecommitdiff
path: root/netio_posix.c
blob: 3730f98aeacb8ecd19d50cae72e767e768b2240b (plain)
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
#define LINUX       1
#define NUM_SOCKETS 1
#define NUM_WORKERS 8

#define _GNU_SOURCE
#include <aio.h>        /* for struct aiocb, aio_read(), aio_write(), aio_error(), aio_return(), SIGEV_SIGNAL */
#include <arpa/inet.h>  /* for htons() */
#include <errno.h>      /* for errno, EAGAIN, EWOULDBLOCK, EINPROGRESS, EINVAL */
#include <error.h>      /* for error() */
#include <netinet/in.h> /* for struct sockaddr_in */
#include <signal.h>     /* for siginfo_t, struct sigaction, sigaction(), SIGRTMIN, SIGRTMAX, SA_SIGINFO */
#include <stdlib.h>     /* for shutdown(), SHUT_RD, SHUT_WR, SHUT_RDWR */
#include <string.h>     /* for memset() */
#include <sys/socket.h> /* for struct sockaddr, socket(), SOCK_* flags, setsockopt(), SOL_SOCKET, SO_REUSEADDR, bind(), listen(), accept() */
#if LINUX
#  include <fcntl.h>    /* for fcntl(), F_SETFL, O_ASYNC, F_SETSIG */
#endif

#include "netio.h"
#include "coroutine.h"

/* I found the following post to be very helpful when writing this:
 * http://davmac.org/davpage/linux/async-io.html */

static int sigs_allocated = 0;
static int sig_io = 0;
#if LINUX
static int sig_accept = 0;
#endif

struct netio_socket {
	int   fd;
#if LINUX
	cid_t accept_waiters[NUM_WORKERS];
#endif
};

static struct netio_socket socket_table[NUM_SOCKETS] = {0};

static void handle_sig_io(int sig __attribute__ ((unused)), siginfo_t *info, void *ucontext __attribute__ ((unused))) {
	cr_unpause((cid_t)info->si_value.sival_int);
}

#if LINUX
static void handle_sig_accept(int sig __attribute__ ((unused)), siginfo_t *info, void *ucontext __attribute__ ((unused))) {
	struct netio_socket *sock = NULL;
	for (int i = 0; sock == NULL && i < NUM_SOCKETS; i++)
		if (info->si_fd  == socket_table[i].fd)
			sock = &socket_table[i];
	if (!sock)
		return;
	for (int i = 0; i < NUM_WORKERS; i++)
		if (sock->accept_waiters[i] > 0) {
			cr_unpause(sock->accept_waiters[i]);
			sock->accept_waiters[i] = 0;
			return;
		}
}
#endif

static void _netio_init(void) {
	struct sigaction action;

	if (sig_io)
		return;
	
	sig_io = SIGRTMIN + (sigs_allocated++);
	if (sig_io > SIGRTMAX)
		error(1, 0, "SIGRTMAX exceeded");
	memset(&action, 0, sizeof(action));
	action.sa_flags = SA_SIGINFO;
	action.sa_sigaction = handle_sig_io;
	if (sigaction(sig_io, &action, NULL) < 0)
		error(1, errno, "sigaction");

#if LINUX
	sig_accept = SIGRTMIN + (sigs_allocated++);
	if (sig_accept > SIGRTMAX)
		error(1, 0, "SIGRTMAX exceeded");
	memset(&action, 0, sizeof(action));
	action.sa_flags = SA_SIGINFO;
	action.sa_sigaction = handle_sig_accept;
	if (sigaction(sig_accept, &action, NULL) < 0)
		error(1, errno, "sigaction");
#endif
}

int netio_listen(uint16_t port) {
	int handle;
	struct netio_socket *sock;
	union {
		struct sockaddr_in in;
		struct sockaddr gen;
	} addr;

	_netio_init();

	/* Allocate a handle out of socket_table.  */
	handle = -1;
	for (int i = 0; handle < 0 && i < NUM_SOCKETS; i++)
		if (socket_table[i].fd == 0)
			handle = i;
	if (handle < 0)
		error(1, 0, "NUM_SOCKETS exceeded");
	sock = &socket_table[handle];

	/* Bind the socket.  */
	memset(&addr, 0, sizeof addr);
	addr.in.sin_family = AF_INET;
	addr.in.sin_port = htons(port);
	sock->fd = socket(AF_INET, SOCK_STREAM | (LINUX ? 0 : SOCK_NONBLOCK), 0);
	if (sock->fd < 0)
		error(1, errno, "socket");
	if (setsockopt(sock->fd, SOL_SOCKET, SO_REUSEADDR, &(int){1}, sizeof(int)) < 0)
		error(1, errno, "setsockopt");
#if LINUX
	if (fcntl(sock->fd, F_SETFL, O_ASYNC) < 0)
		error(1, errno, "fcntl(F_SETFL)");
	if (fcntl(sock->fd, F_SETSIG, sig_accept) < 0)
		error(1, errno, "fcntl(F_SETSIG)");
#endif
	if (bind(sock->fd, &addr.gen, sizeof addr) < 0)
		error(1, errno, "bind");
	if (listen(sock->fd, NUM_WORKERS) < 0)
		error(1, errno, "listen");

	/* Return.  */
	return handle;
}

int netio_accept(int sock) {
#if LINUX
	int conn;
	for (int i = 0; i < NUM_WORKERS; i++)
		if (socket_table[sock].accept_waiters[i] == 0) {
			socket_table[sock].accept_waiters[i] = cr_getcid();
			break;
		}
	cr_pause_and_yield();
	conn = accept(socket_table[sock].fd, NULL, NULL);
	return conn < 0 ? -errno : conn;
#else
	/* AFAICT in pure POSIX there's no good way to do this that
	 * isn't just busy-polling.  */
	for (;;) {
		int conn = accept(socket_table[sock].fd, NULL, NULL);
		if (conn < 0) {
			if (errno == EAGAIN || errno == EWOULDBLOCK) {
				cr_yield();
				continue;
			}
			return -errno;
		}
		return conn;
	}
#endif
}

size_t netio_read(int conn, void *buf, size_t count) {
	int r;
	struct aiocb ctl_block = {
		.aio_fildes = conn,
		.aio_buf = buf,
		.aio_nbytes = count,
		.aio_sigevent = {
			.sigev_notify = SIGEV_SIGNAL,
			.sigev_signo = sig_io,
			.sigev_value = {
				.sival_int = (int)cr_getcid(),
			},
		},
	};

	if (aio_read(&ctl_block) < 0)
		return -errno;

	while ((r = aio_error(&ctl_block)) == EINPROGRESS)
		cr_pause_and_yield();
	return r ? -abs(r) : aio_return(&ctl_block);
}

size_t netio_write(int conn, void *buf, size_t count) {
	int r;
	struct aiocb ctl_block = {
		.aio_fildes = conn,
		.aio_buf = buf,
		.aio_nbytes = count,
		.aio_sigevent = {
			.sigev_notify = SIGEV_SIGNAL,
			.sigev_signo = sig_io,
			.sigev_value = {
				.sival_int = (int)cr_getcid(),
			},
		},
	};

	if (aio_write(&ctl_block) < 0)
		return -errno;

	while ((r = aio_error(&ctl_block)) == EINPROGRESS)
		cr_pause_and_yield();
	return r ? -abs(r) : aio_return(&ctl_block);
}

int netio_close(int conn, bool rd, bool wr) {
	int how;
	if (rd && wr)
		how = SHUT_RDWR;
	else if (rd && !wr)
		how = SHUT_RD;
	else if (!rd && wr)
		how = SHUT_WR;
	else
		return -EINVAL;
	return shutdown(conn, how) ? -errno : 0;
}