123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306 |
- #include "../config-host.h"
- /* SPDX-License-Identifier: MIT */
- /*
- * Test case for socket read/write through IORING_OP_READV and
- * IORING_OP_WRITEV, using both TCP and sockets and blocking and
- * non-blocking IO.
- *
- * Heavily based on a test case from Hrvoje Zeba <zeba.hrvoje@gmail.com>
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <stdint.h>
- #include <assert.h>
- #include <pthread.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <unistd.h>
- #include <sys/socket.h>
- #include <sys/un.h>
- #include <netinet/tcp.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include "helpers.h"
- #include "liburing.h"
- #define RECV_BUFF_SIZE 2
- #define SEND_BUFF_SIZE 3
- struct params {
- int tcp;
- int non_blocking;
- __be16 bind_port;
- };
- static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
- static pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
- static int rcv_ready = 0;
- static void set_rcv_ready(void)
- {
- pthread_mutex_lock(&mutex);
- rcv_ready = 1;
- pthread_cond_signal(&cond);
- pthread_mutex_unlock(&mutex);
- }
- static void wait_for_rcv_ready(void)
- {
- pthread_mutex_lock(&mutex);
- while (!rcv_ready)
- pthread_cond_wait(&cond, &mutex);
- pthread_mutex_unlock(&mutex);
- }
- static void *rcv(void *arg)
- {
- struct params *p = arg;
- int s0;
- int res;
- if (p->tcp) {
- int ret, val = 1;
- s0 = socket(AF_INET, SOCK_STREAM | SOCK_CLOEXEC, IPPROTO_TCP);
- res = setsockopt(s0, SOL_SOCKET, SO_REUSEPORT, &val, sizeof(val));
- assert(res != -1);
- res = setsockopt(s0, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
- assert(res != -1);
- struct sockaddr_in addr;
- addr.sin_family = AF_INET;
- addr.sin_addr.s_addr = inet_addr("127.0.0.1");
- ret = t_bind_ephemeral_port(s0, &addr);
- assert(!ret);
- p->bind_port = addr.sin_port;
- } else {
- s0 = socket(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0);
- assert(s0 != -1);
- struct sockaddr_un addr;
- memset(&addr, 0, sizeof(addr));
- addr.sun_family = AF_UNIX;
- memcpy(addr.sun_path, "\0sock", 6);
- res = bind(s0, (struct sockaddr *) &addr, sizeof(addr));
- assert(res != -1);
- }
- res = listen(s0, 128);
- assert(res != -1);
- set_rcv_ready();
- int s1 = accept(s0, NULL, NULL);
- assert(s1 != -1);
- if (p->non_blocking) {
- int flags = fcntl(s1, F_GETFL, 0);
- assert(flags != -1);
- flags |= O_NONBLOCK;
- res = fcntl(s1, F_SETFL, flags);
- assert(res != -1);
- }
- struct io_uring m_io_uring;
- void *ret = NULL;
- res = io_uring_queue_init(32, &m_io_uring, 0);
- assert(res >= 0);
- int bytes_read = 0;
- int expected_byte = 0;
- int done = 0;
- while (!done && bytes_read != 33) {
- char buff[RECV_BUFF_SIZE];
- struct iovec iov;
- iov.iov_base = buff;
- iov.iov_len = sizeof(buff);
- struct io_uring_sqe *sqe = io_uring_get_sqe(&m_io_uring);
- assert(sqe != NULL);
- io_uring_prep_readv(sqe, s1, &iov, 1, 0);
- res = io_uring_submit(&m_io_uring);
- assert(res != -1);
- struct io_uring_cqe *cqe;
- unsigned head;
- unsigned count = 0;
- while (!done && count != 1) {
- io_uring_for_each_cqe(&m_io_uring, head, cqe) {
- if (cqe->res < 0)
- assert(cqe->res == -EAGAIN);
- else {
- int i;
- for (i = 0; i < cqe->res; i++) {
- if (buff[i] != expected_byte) {
- fprintf(stderr,
- "Received %d, wanted %d\n",
- buff[i], expected_byte);
- ret++;
- done = 1;
- }
- expected_byte++;
- }
- bytes_read += cqe->res;
- }
- count++;
- }
- assert(count <= 1);
- io_uring_cq_advance(&m_io_uring, count);
- }
- }
- shutdown(s1, SHUT_RDWR);
- close(s1);
- close(s0);
- io_uring_queue_exit(&m_io_uring);
- return ret;
- }
- static void *snd(void *arg)
- {
- struct params *p = arg;
- int s0;
- int ret;
- wait_for_rcv_ready();
- if (p->tcp) {
- int val = 1;
- s0 = socket(AF_INET, SOCK_STREAM | SOCK_CLOEXEC, IPPROTO_TCP);
- ret = setsockopt(s0, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val));
- assert(ret != -1);
- struct sockaddr_in addr;
- addr.sin_family = AF_INET;
- addr.sin_port = p->bind_port;
- addr.sin_addr.s_addr = inet_addr("127.0.0.1");
- ret = connect(s0, (struct sockaddr*) &addr, sizeof(addr));
- assert(ret != -1);
- } else {
- s0 = socket(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0);
- assert(s0 != -1);
- struct sockaddr_un addr;
- memset(&addr, 0, sizeof(addr));
- addr.sun_family = AF_UNIX;
- memcpy(addr.sun_path, "\0sock", 6);
- ret = connect(s0, (struct sockaddr*) &addr, sizeof(addr));
- assert(ret != -1);
- }
- if (p->non_blocking) {
- int flags = fcntl(s0, F_GETFL, 0);
- assert(flags != -1);
- flags |= O_NONBLOCK;
- ret = fcntl(s0, F_SETFL, flags);
- assert(ret != -1);
- }
- struct io_uring m_io_uring;
- ret = io_uring_queue_init(32, &m_io_uring, 0);
- assert(ret >= 0);
- int bytes_written = 0;
- int done = 0;
- while (!done && bytes_written != 33) {
- char buff[SEND_BUFF_SIZE];
- int i;
- for (i = 0; i < SEND_BUFF_SIZE; i++)
- buff[i] = i + bytes_written;
- struct iovec iov;
- iov.iov_base = buff;
- iov.iov_len = sizeof(buff);
- struct io_uring_sqe *sqe = io_uring_get_sqe(&m_io_uring);
- assert(sqe != NULL);
- io_uring_prep_writev(sqe, s0, &iov, 1, 0);
- ret = io_uring_submit(&m_io_uring);
- assert(ret != -1);
- struct io_uring_cqe *cqe;
- unsigned head;
- unsigned count = 0;
- while (!done && count != 1) {
- io_uring_for_each_cqe(&m_io_uring, head, cqe) {
- if (cqe->res < 0) {
- if (cqe->res == -EPIPE) {
- done = 1;
- break;
- }
- assert(cqe->res == -EAGAIN);
- } else {
- bytes_written += cqe->res;
- }
- count++;
- }
- assert(count <= 1);
- io_uring_cq_advance(&m_io_uring, count);
- }
- usleep(100000);
- }
- shutdown(s0, SHUT_RDWR);
- close(s0);
- io_uring_queue_exit(&m_io_uring);
- return NULL;
- }
- int main(int argc, char *argv[])
- {
- struct params p;
- pthread_t t1, t2;
- void *res1, *res2;
- int i, exit_val = T_EXIT_PASS;
- if (argc > 1)
- return T_EXIT_SKIP;
- for (i = 0; i < 4; i++) {
- p.tcp = i & 1;
- p.non_blocking = (i & 2) >> 1;
- rcv_ready = 0;
- pthread_create(&t1, NULL, rcv, &p);
- pthread_create(&t2, NULL, snd, &p);
- pthread_join(t1, &res1);
- pthread_join(t2, &res2);
- if (res1 || res2) {
- fprintf(stderr, "Failed tcp=%d, non_blocking=%d\n", p.tcp, p.non_blocking);
- exit_val = T_EXIT_FAIL;
- }
- }
- return exit_val;
- }
|