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
|
/* SPDX-License-Identifier: MIT */
/*
* Check that repeated IORING_OP_CONNECT to a socket without a listener keeps
* yielding -ECONNREFUSED rather than -ECONNABORTED. Based on a reproducer
* from:
*
* https://github.com/axboe/liburing/issues/828
*
* and adopted to our usual test cases. Other changes made like looping,
* using different ring types, adding a memset() for reuse, etc.
*
*/
#include <stdio.h>
#include <netinet/in.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <arpa/inet.h>
#include "liburing.h"
#include "helpers.h"
static unsigned long ud;
static int init_test_server(struct sockaddr_in *serv_addr)
{
socklen_t servaddr_len = sizeof(struct sockaddr_in);
int fd;
/* Init server socket. Bind but don't listen */
fd = socket(AF_INET, SOCK_STREAM, 0);
if (fd < 0) {
perror("socket");
return -1;
}
serv_addr->sin_family = AF_INET;
serv_addr->sin_addr.s_addr = inet_addr("127.0.0.1");
if (bind(fd, (struct sockaddr *) serv_addr, servaddr_len) < 0) {
perror("bind");
return -1;
}
/*
* Get the addresses the socket is bound to because the port is chosen
* by the network stack.
*/
if (getsockname(fd, (struct sockaddr *)serv_addr, &servaddr_len) < 0) {
perror("getsockname");
return -1;
}
return fd;
}
static int init_test_client(void)
{
socklen_t addr_len = sizeof(struct sockaddr_in);
struct sockaddr_in client_addr = {};
int clientfd;
clientfd = socket(AF_INET, SOCK_STREAM, 0);
if (clientfd < 0) {
perror("socket");
return -1;
}
client_addr.sin_family = AF_INET;
client_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
if (bind(clientfd, (struct sockaddr *)&client_addr, addr_len) < 0) {
perror("bind");
close(clientfd);
return -1;
}
/*
* Get the addresses the socket is bound to because the port is chosen
* by the network stack.
*/
if (getsockname(clientfd, (struct sockaddr *)&client_addr, &addr_len) < 0) {
perror("getsockname");
close(clientfd);
return -1;
}
return clientfd;
}
static int get_completion_and_print(struct io_uring *ring)
{
struct io_uring_cqe *cqe;
int ret, res;
ret = io_uring_wait_cqe(ring, &cqe);
if (ret < 0) {
fprintf(stderr, "wait_cqe=%d\n", ret);
return -1;
}
/* Mark this completion as seen */
res = cqe->res;
io_uring_cqe_seen(ring, cqe);
return res;
}
static int test_connect(struct io_uring *ring,
int clientfd, struct sockaddr_in *serv_addr)
{
struct sockaddr_in local_sa;
struct io_uring_sqe *sqe;
int ret;
sqe = io_uring_get_sqe(ring);
io_uring_prep_connect(sqe, clientfd, (const struct sockaddr *)serv_addr,
sizeof(struct sockaddr_in));
sqe->user_data = ++ud;
memcpy(&local_sa, serv_addr, sizeof(local_sa));
ret = io_uring_submit_and_wait(ring, 1);
if (ret != 1) {
fprintf(stderr, "submit=%d\n", ret);
return T_EXIT_FAIL;
}
/* check for reuse at the same time */
memset(&local_sa, 0xff, sizeof(local_sa));
ret = get_completion_and_print(ring);
if (ret != -ECONNREFUSED) {
fprintf(stderr, "Connect got %d\n", ret);
return T_EXIT_FAIL;
}
return T_EXIT_PASS;
}
static int test(int flags)
{
struct io_uring_params params = { .flags = flags, };
struct sockaddr_in serv_addr = {};
struct io_uring ring;
int ret, clientfd, s_fd, i;
if (flags & IORING_SETUP_SQPOLL)
params.sq_thread_idle = 50;
ret = io_uring_queue_init_params(8, &ring, ¶ms);
if (ret < 0) {
fprintf(stderr, "Queue init: %d\n", ret);
return T_EXIT_FAIL;
}
s_fd = init_test_server(&serv_addr);
if (s_fd < 0)
return T_EXIT_FAIL;
clientfd = init_test_client();
if (clientfd < 0) {
close(s_fd);
return T_EXIT_FAIL;
}
/* make sure SQPOLL thread is sleeping */
if (flags & IORING_SETUP_SQPOLL)
usleep(100000);
for (i = 0; i < 32; i++) {
ret = test_connect(&ring, clientfd, &serv_addr);
if (ret == T_EXIT_SKIP)
return T_EXIT_SKIP;
else if (ret == T_EXIT_PASS)
continue;
return T_EXIT_FAIL;
}
close(s_fd);
close(clientfd);
return T_EXIT_PASS;
}
int main(int argc, char *argv[])
{
int ret;
if (argc > 1)
return T_EXIT_SKIP;
ret = test(0);
if (ret == T_EXIT_FAIL) {
fprintf(stderr, "test(0) failed\n");
return T_EXIT_FAIL;
}
ret = test(IORING_SETUP_SQPOLL);
if (ret == T_EXIT_FAIL) {
fprintf(stderr, "test(SQPOLL) failed\n");
return T_EXIT_FAIL;
}
return 0;
}
|