aboutsummaryrefslogtreecommitdiff
path: root/src/platform/posix/posix_udp.c
blob: 552730dad2b032f6ea980d8c2cf59c1b2be5b159 (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
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
//
// Copyright 2017 Garrett D'Amore <garrett@damore.org>
// Copyright 2017 Capitar IT Group BV <info@capitar.com>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt).  A copy of the license may also be
// found online at https://opensource.org/licenses/MIT.
//

#include "core/nng_impl.h"

#ifdef NNG_PLATFORM_POSIX
#include "platform/posix/posix_aio.h"
#include "platform/posix/posix_pollq.h"

#include <errno.h>
#include <fcntl.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <unistd.h>

// UDP support.

// If we can suppress SIGPIPE on send, please do so.
#ifdef MSG_NOSIGNAL
#define NNI_MSG_NOSIGNAL MSG_NOSIGNAL
#else
#define NNI_MSG_NOSIGNAL 0
#endif

struct nni_plat_udp {
	nni_posix_pollq_node udp_pitem;
	int                  udp_fd;
	int                  udp_closed;
	nni_list             udp_recvq;
	nni_list             udp_sendq;
	nni_mtx              udp_mtx;
};

static void
nni_posix_udp_doclose(nni_plat_udp *udp)
{
	nni_aio *aio;

	udp->udp_closed = 1;
	while (((aio = nni_list_first(&udp->udp_recvq)) != NULL) ||
	    ((aio = nni_list_first(&udp->udp_sendq)) != NULL)) {
		nni_aio_list_remove(aio);
		nni_aio_finish_error(aio, NNG_ECLOSED);
	}
	// Underlying socket left open until close API called.
}

static void
nni_posix_udp_dorecv(nni_plat_udp *udp)
{
	nni_aio * aio;
	nni_list *q = &udp->udp_recvq;

	// While we're able to recv, do so.
	while ((aio = nni_list_first(q)) != NULL) {
		nni_list_remove(q, aio);
		struct iovec            iov[4]; // never have more than 4
		int                     niov;
		struct sockaddr_storage ss;
		struct msghdr           hdr;
		int                     rv;

		hdr.msg_iov = iov;
		for (niov = 0; niov < aio->a_niov; niov++) {
			iov[niov].iov_base = aio->a_iov[niov].iov_buf;
			iov[niov].iov_len  = aio->a_iov[niov].iov_len;
		}
		hdr.msg_iovlen     = niov;
		hdr.msg_name       = &ss;
		hdr.msg_namelen    = sizeof(ss);
		hdr.msg_flags      = 0;
		hdr.msg_control    = NULL;
		hdr.msg_controllen = 0;
		rv                 = recvmsg(udp->udp_fd, &hdr, 0);
		if (rv < 0) {
			if ((errno == EAGAIN) || (errno == EWOULDBLOCK)) {
				// No data available at socket.  Return
				// the AIO to the head of the queue.
				nni_list_prepend(q, aio);
				return;
			}
			rv = nni_plat_errno(errno);
			nni_aio_finish_error(aio, rv);
			continue;
		}

		// We need to store the address information.
		// It is incumbent on the AIO submitter to supply
		// storage for the address.
		if (aio->a_addr != NULL) {
			nni_posix_sockaddr2nn(aio->a_addr, (void *) &ss);
		}

		nni_aio_finish(aio, 0, rv);
	}
}

static void
nni_posix_udp_dosend(nni_plat_udp *udp)
{
	// XXX: TBD.
	nni_aio * aio;
	nni_list *q = &udp->udp_sendq;

	// While we're able to send, do so.
	while ((aio = nni_list_first(q)) != NULL) {
		struct sockaddr_storage ss;
		struct msghdr           hdr;
		struct iovec            iov[4];
		int                     niov;
		int                     rv;
		int                     len;

		nni_list_remove(q, aio);

		if (aio->a_addr == NULL) {
			// No outgoing address?
			nni_aio_finish_error(aio, NNG_EADDRINVAL);
			return;
		}
		len = nni_posix_nn2sockaddr(&ss, aio->a_addr);
		if (len < 0) {
			nni_aio_finish_error(aio, NNG_EADDRINVAL);
			return;
		}

		hdr.msg_iov = iov;
		for (niov = 0; niov < aio->a_niov; niov++) {
			iov[niov].iov_base = aio->a_iov[niov].iov_buf;
			iov[niov].iov_len  = aio->a_iov[niov].iov_len;
		}
		hdr.msg_iovlen     = niov;
		hdr.msg_name       = &ss;
		hdr.msg_namelen    = len;
		hdr.msg_flags      = NNI_MSG_NOSIGNAL;
		hdr.msg_control    = NULL;
		hdr.msg_controllen = 0;

		rv = sendmsg(udp->udp_fd, &hdr, 0);
		if (rv < 0) {
			if ((errno == EAGAIN) || (errno == EWOULDBLOCK)) {
				// Cannot send (buffers full), return to
				// head of queue.
				nni_list_prepend(q, aio);
				return;
			}
			rv = nni_plat_errno(errno);
			nni_aio_finish_error(aio, rv);
			continue;
		}

		nni_aio_finish(aio, 0, rv);
	}
}

// This function is called by the poller on activity on the FD.
static void
nni_posix_udp_cb(void *arg)
{
	nni_plat_udp *udp = arg;
	int           revents;
	int           events = 0;

	nni_mtx_lock(&udp->udp_mtx);
	revents = udp->udp_pitem.revents;
	if (revents & POLLIN) {
		nni_posix_udp_dorecv(udp);
	}
	if (revents & POLLOUT) {
		nni_posix_udp_dosend(udp);
	}
	if (revents & (POLLHUP | POLLERR | POLLNVAL)) {
		nni_posix_udp_doclose(udp);
	} else {
		if (!nni_list_empty(&udp->udp_sendq)) {
			events |= POLLOUT;
		}
		if (!nni_list_empty(&udp->udp_recvq)) {
			events |= POLLIN;
		}
		if (events) {
			nni_posix_pollq_arm(&udp->udp_pitem, events);
		}
	}
	nni_mtx_unlock(&udp->udp_mtx);
}

int
nni_plat_udp_open(nni_plat_udp **upp, nni_sockaddr *bindaddr)
{
	nni_plat_udp *          udp;
	int                     salen;
	struct sockaddr_storage sa;
	int                     rv;

	if ((salen = nni_posix_nn2sockaddr(&sa, bindaddr)) < 0) {
		return (NNG_EADDRINVAL);
	}

	// UDP opens can actually run synchronously.
	if ((udp = NNI_ALLOC_STRUCT(udp)) != NULL) {
		return (NNG_ENOMEM);
	}
	nni_mtx_init(&udp->udp_mtx);

	udp->udp_fd = socket(sa.ss_family, SOCK_DGRAM, IPPROTO_UDP);
	if (udp->udp_fd < 0) {
		rv = nni_plat_errno(errno);
		nni_mtx_fini(&udp->udp_mtx);
		NNI_FREE_STRUCT(udp);
		return (rv);
	}

	if (bind(udp->udp_fd, (void *) &sa, salen) != 0) {
		rv = nni_plat_errno(errno);
		(void) close(udp->udp_fd);
		nni_mtx_fini(&udp->udp_mtx);
		NNI_FREE_STRUCT(udp);
		return (rv);
	}
	udp->udp_pitem.fd   = udp->udp_fd;
	udp->udp_pitem.cb   = nni_posix_udp_cb;
	udp->udp_pitem.data = udp;

	nni_aio_list_init(&udp->udp_recvq);
	nni_aio_list_init(&udp->udp_sendq);

	rv = nni_posix_pollq_add(
	    nni_posix_pollq_get(udp->udp_fd), &udp->udp_pitem);
	if (rv != 0) {
		(void) close(udp->udp_fd);
		nni_mtx_fini(&udp->udp_mtx);
		NNI_FREE_STRUCT(udp);
		return (rv);
	}

	*upp = udp;
	return (0);
}

void
nni_plat_udp_close(nni_plat_udp *udp)
{
	nni_aio *aio;

	nni_mtx_lock(&udp->udp_mtx);
	if (udp->udp_closed) {
		// The only way this happens is in response to a callback that
		// is being canceled.  Double close from user code is a bug.
		nni_mtx_unlock(&udp->udp_mtx);
		return;
	}

	// We're no longer interested in events.
	nni_posix_pollq_remove(&udp->udp_pitem);

	nni_posix_udp_doclose(udp);
	nni_mtx_unlock(&udp->udp_mtx);

	(void) close(udp->udp_fd);
	nni_mtx_fini(&udp->udp_mtx);
	NNI_FREE_STRUCT(udp);
}

void
nni_plat_udp_cancel(nni_aio *aio, int rv)
{
	nni_plat_udp *udp = aio->a_prov_data;

	nni_mtx_lock(&udp->udp_mtx);
	if (nni_aio_list_active(aio)) {
		nni_aio_list_remove(aio);
		nni_aio_finish_error(aio, rv);
	}
	nni_mtx_unlock(&udp->udp_mtx);
}

void
nni_plat_udp_recv(nni_plat_udp *udp, nni_aio *aio)
{
	nni_mtx_lock(&udp->udp_mtx);
	if (nni_aio_start(aio, nni_plat_udp_cancel, udp) != 0) {
		nni_mtx_unlock(&udp->udp_mtx);
		return;
	}

	if (udp->udp_closed) {
		nni_aio_finish_error(aio, NNG_ECLOSED);
		nni_mtx_unlock(&udp->udp_mtx);
		return;
	}

	nni_list_append(&udp->udp_recvq, aio);
	nni_posix_pollq_arm(&udp->udp_pitem, POLLIN);
	nni_mtx_unlock(&udp->udp_mtx);
}

void
nni_plat_udp_send(nni_plat_udp *udp, nni_aio *aio)
{
	nni_mtx_lock(&udp->udp_mtx);
	if (nni_aio_start(aio, nni_plat_udp_cancel, udp) != 0) {
		nni_mtx_unlock(&udp->udp_mtx);
		return;
	}

	if (udp->udp_closed) {
		nni_aio_finish_error(aio, NNG_ECLOSED);
		nni_mtx_unlock(&udp->udp_mtx);
		return;
	}

	nni_list_append(&udp->udp_sendq, aio);
	nni_posix_pollq_arm(&udp->udp_pitem, POLLOUT);
	nni_mtx_unlock(&udp->udp_mtx);
}

#endif // NNG_PLATFORM_POSIX