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
|
#include "../config-host.h"
/* SPDX-License-Identifier: MIT */
/*
* Configure and operate a TCP socket solely with io_uring.
*/
#include <stdio.h>
#include <string.h>
#include <liburing.h>
#include <err.h>
#include <sys/mman.h>
#include <sys/wait.h>
#include <sys/socket.h>
#include <unistd.h>
#include <stdlib.h>
#include <netinet/ip.h>
#include "liburing.h"
#include "helpers.h"
static void msec_to_ts(struct __kernel_timespec *ts, unsigned int msec)
{
ts->tv_sec = msec / 1000;
ts->tv_nsec = (msec % 1000) * 1000000;
}
static const char *magic = "Hello World!";
static int use_port = 8000;
enum {
SRV_INDEX = 0,
CLI_INDEX,
CONN_INDEX,
};
static int connect_client(struct io_uring *ring, unsigned short peer_port)
{
struct __kernel_timespec ts;
struct io_uring_sqe *sqe;
struct io_uring_cqe *cqe;
int head, ret, submitted = 0;
struct sockaddr_in peer_addr;
socklen_t addr_len = sizeof(peer_addr);
peer_addr.sin_family = AF_INET;
peer_addr.sin_port = peer_port;
peer_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
sqe = io_uring_get_sqe(ring);
io_uring_prep_socket_direct(sqe, AF_INET, SOCK_STREAM, 0,
CLI_INDEX, 0);
sqe->flags |= IOSQE_IO_LINK;
sqe = io_uring_get_sqe(ring);
io_uring_prep_connect(sqe, CLI_INDEX, (struct sockaddr*) &peer_addr, addr_len);
sqe->flags |= IOSQE_FIXED_FILE | IOSQE_IO_LINK;
sqe = io_uring_get_sqe(ring);
io_uring_prep_send(sqe, CLI_INDEX, magic, strlen(magic), 0);
sqe->flags |= IOSQE_FIXED_FILE;
submitted = ret = io_uring_submit(ring);
if (ret < 0)
return T_SETUP_SKIP;
msec_to_ts(&ts, 300);
ret = io_uring_wait_cqes(ring, &cqe, submitted, &ts, NULL);
if (ret < 0)
return T_SETUP_SKIP;
io_uring_for_each_cqe(ring, head, cqe) {
ret = cqe->res;
if (ret < 0)
return T_SETUP_SKIP;
} io_uring_cq_advance(ring, submitted);
return T_SETUP_OK;
}
static int setup_srv(struct io_uring *ring, struct sockaddr_in *server_addr)
{
struct io_uring_sqe *sqe;
struct io_uring_cqe *cqe;
struct __kernel_timespec ts;
int ret, val, submitted;
unsigned head;
memset(server_addr, 0, sizeof(struct sockaddr_in));
server_addr->sin_family = AF_INET;
server_addr->sin_port = htons(use_port++);
server_addr->sin_addr.s_addr = htons(INADDR_ANY);
sqe = io_uring_get_sqe(ring);
io_uring_prep_socket_direct(sqe, AF_INET, SOCK_STREAM, 0, SRV_INDEX, 0);
sqe->flags |= IOSQE_IO_LINK;
sqe = io_uring_get_sqe(ring);
val = 1;
io_uring_prep_cmd_sock(sqe, SOCKET_URING_OP_SETSOCKOPT, 0, SOL_SOCKET,
SO_REUSEADDR, &val, sizeof(val));
sqe->flags |= IOSQE_FIXED_FILE | IOSQE_IO_LINK;
sqe = io_uring_get_sqe(ring);
io_uring_prep_bind(sqe, SRV_INDEX, (struct sockaddr *) server_addr,
sizeof(struct sockaddr_in));
sqe->flags |= IOSQE_FIXED_FILE | IOSQE_IO_LINK;
sqe = io_uring_get_sqe(ring);
io_uring_prep_listen(sqe, SRV_INDEX, 1);
sqe->flags |= IOSQE_FIXED_FILE;
submitted = ret = io_uring_submit(ring);
if (ret < 0) {
fprintf(stderr, "submission failed. %d\n", ret);
return T_EXIT_FAIL;
}
msec_to_ts(&ts, 300);
ret = io_uring_wait_cqes(ring, &cqe, ret, &ts, NULL);
if (ret < 0) {
fprintf(stderr, "submission failed. %d\n", ret);
return T_EXIT_FAIL;
}
io_uring_for_each_cqe(ring, head, cqe) {
ret = cqe->res;
if (ret < 0) {
fprintf(stderr, "Server startup failed. step %d got %d \n", head, ret);
return T_EXIT_FAIL;
}
} io_uring_cq_advance(ring, submitted);
return T_SETUP_OK;
}
static int test_good_server(unsigned int ring_flags)
{
struct sockaddr_in server_addr;
struct __kernel_timespec ts;
struct io_uring_sqe *sqe;
struct io_uring_cqe *cqe;
struct io_uring ring;
int ret;
int fds[3];
char buf[1024];
memset(fds, -1, sizeof(fds));
ret = t_create_ring(10, &ring, ring_flags | IORING_SETUP_SUBMIT_ALL);
if (ret < 0) {
fprintf(stderr, "queue_init: %s\n", strerror(-ret));
return T_SETUP_SKIP;
}
ret = io_uring_register_files(&ring, fds, 3);
if (ret) {
fprintf(stderr, "server file register %d\n", ret);
return T_SETUP_SKIP;
}
ret = setup_srv(&ring, &server_addr);
if (ret != T_SETUP_OK) {
fprintf(stderr, "srv startup failed.\n");
return T_EXIT_FAIL;
}
if (connect_client(&ring, server_addr.sin_port) != T_SETUP_OK) {
fprintf(stderr, "cli startup failed.\n");
return T_SETUP_SKIP;
}
/* Wait for a request */
sqe = io_uring_get_sqe(&ring);
io_uring_prep_accept_direct(sqe, SRV_INDEX, NULL, NULL, 0, CONN_INDEX);
sqe->flags |= IOSQE_FIXED_FILE;
io_uring_submit(&ring);
io_uring_wait_cqe(&ring, &cqe);
if (cqe->res < 0) {
fprintf(stderr, "accept failed. %d\n", cqe->res);
return T_EXIT_FAIL;
}
io_uring_cqe_seen(&ring, cqe);
sqe = io_uring_get_sqe(&ring);
io_uring_prep_recv(sqe, CONN_INDEX, buf, sizeof(buf), 0);
sqe->flags |= IOSQE_FIXED_FILE;
io_uring_submit(&ring);
io_uring_wait_cqe_timeout(&ring, &cqe, &ts);
if (cqe->res < 0) {
fprintf(stderr, "bad receive cqe. %d\n", cqe->res);
return T_EXIT_FAIL;
}
ret = cqe->res;
io_uring_cqe_seen(&ring, cqe);
io_uring_queue_exit(&ring);
if (ret != strlen(magic) || strncmp(buf, magic, ret)) {
fprintf(stderr, "didn't receive expected string. Got %d '%s'\n", ret, buf);
return T_EXIT_FAIL;
}
return T_EXIT_PASS;
}
static int test_bad_bind(void)
{
struct sockaddr_in server_addr;
struct io_uring_sqe *sqe;
struct io_uring_cqe *cqe;
struct io_uring ring;
int sock = -1, err;
int ret = T_EXIT_FAIL;
memset(&server_addr, 0, sizeof(struct sockaddr_in));
server_addr.sin_family = AF_INET;
server_addr.sin_port = htons(9001);
server_addr.sin_addr.s_addr = htons(INADDR_ANY);
err = t_create_ring(1, &ring, 0);
if (err < 0) {
fprintf(stderr, "queue_init: %s\n", strerror(-ret));
return T_SETUP_SKIP;
}
sock = socket(AF_INET, SOCK_STREAM, 0);
if (sock < 0) {
perror("socket");
goto fail;
}
/* Bind with size 0 */
sqe = io_uring_get_sqe(&ring);
io_uring_prep_bind(sqe, sock, (struct sockaddr *) &server_addr, 0);
err = io_uring_submit(&ring);
if (err < 0)
goto fail;
err = io_uring_wait_cqe(&ring, &cqe);
if (err)
goto fail;
if (cqe->res != -EINVAL)
goto fail;
io_uring_cqe_seen(&ring, cqe);
/* Bind with bad fd */
sqe = io_uring_get_sqe(&ring);
io_uring_prep_bind(sqe, 0, (struct sockaddr *) &server_addr, sizeof(struct sockaddr_in));
err = io_uring_submit(&ring);
if (err < 0)
goto fail;
err = io_uring_wait_cqe(&ring, &cqe);
if (err)
goto fail;
if (cqe->res != -ENOTSOCK)
goto fail;
io_uring_cqe_seen(&ring, cqe);
ret = T_EXIT_PASS;
/* bind with weird value */
sqe = io_uring_get_sqe(&ring);
io_uring_prep_bind(sqe, sock, (struct sockaddr *) &server_addr, sizeof(struct sockaddr_in));
sqe->rw_flags = 1;
err = io_uring_submit(&ring);
if (err < 0)
goto fail;
err = io_uring_wait_cqe(&ring, &cqe);
if (err)
goto fail;
if (cqe->res != -EINVAL)
goto fail;
io_uring_cqe_seen(&ring, cqe);
ret = T_EXIT_PASS;
fail:
io_uring_queue_exit(&ring);
if (sock != -1)
close(sock);
return ret;
}
static int test_bad_listen(void)
{
struct sockaddr_in server_addr;
struct io_uring_sqe *sqe;
struct io_uring_cqe *cqe;
struct io_uring ring;
int sock = -1, err;
int ret = T_EXIT_FAIL;
memset(&server_addr, 0, sizeof(struct sockaddr_in));
server_addr.sin_family = AF_INET;
server_addr.sin_port = htons(8001);
server_addr.sin_addr.s_addr = htons(INADDR_ANY);
err = t_create_ring(1, &ring, 0);
if (err < 0) {
fprintf(stderr, "queue_init: %d\n", err);
return T_SETUP_SKIP;
}
sock = socket(AF_INET, SOCK_STREAM, 0);
if (sock < 0) {
perror("socket");
goto fail;
}
err = t_bind_ephemeral_port(sock, &server_addr);
if (err) {
fprintf(stderr, "bind: %s\n", strerror(-err));
goto fail;
}
/* listen on bad sock */
sqe = io_uring_get_sqe(&ring);
io_uring_prep_listen(sqe, 0, 1);
err = io_uring_submit(&ring);
if (err < 0)
goto fail;
err = io_uring_wait_cqe(&ring, &cqe);
if (err)
goto fail;
if (cqe->res != -ENOTSOCK)
goto fail;
io_uring_cqe_seen(&ring, cqe);
/* listen with weird parameters */
sqe = io_uring_get_sqe(&ring);
io_uring_prep_listen(sqe, sock, 1);
sqe->addr2 = 0xffffff;
err = io_uring_submit(&ring);
if (err < 0)
goto fail;
err = io_uring_wait_cqe(&ring, &cqe);
if (err)
goto fail;
if (cqe->res != -EINVAL)
goto fail;
io_uring_cqe_seen(&ring, cqe);
ret = T_EXIT_PASS;
fail:
io_uring_queue_exit(&ring);
if (sock != -1)
close(sock);
return ret;
}
int main(int argc, char *argv[])
{
struct io_uring_probe *probe;
int ret;
if (argc > 1)
return 0;
/*
* This test is not supported on older kernels. Check for
* OP_LISTEN, since that is the last feature required to support
* it.
*/
probe = io_uring_get_probe();
if (!probe)
return T_EXIT_SKIP;
if (!io_uring_opcode_supported(probe, IORING_OP_LISTEN))
return T_EXIT_SKIP;
ret = test_good_server(0);
if (ret) {
fprintf(stderr, "good 0 failed\n");
return T_EXIT_FAIL;
}
ret = test_good_server(IORING_SETUP_SINGLE_ISSUER|IORING_SETUP_DEFER_TASKRUN);
if (ret) {
fprintf(stderr, "good defer failed\n");
return T_EXIT_FAIL;
}
ret = test_good_server(IORING_SETUP_SQPOLL);
if (ret) {
fprintf(stderr, "good sqpoll failed\n");
return T_EXIT_FAIL;
}
ret = test_bad_bind();
if (ret) {
fprintf(stderr, "bad bind failed\n");
return T_EXIT_FAIL;
}
ret = test_bad_listen();
if (ret) {
fprintf(stderr, "bad listen failed\n");
return T_EXIT_FAIL;
}
return T_EXIT_PASS;
}
|