123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930 |
- #include "../config-host.h"
- /* SPDX-License-Identifier: MIT */
- /*
- * Check that IORING_OP_ACCEPT works, and send some data across to verify we
- * didn't get a junk fd.
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <stdint.h>
- #include <assert.h>
- #include <limits.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <unistd.h>
- #include <sys/socket.h>
- #include <sys/time.h>
- #include <sys/resource.h>
- #include <sys/un.h>
- #include <netinet/tcp.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include "helpers.h"
- #include "liburing.h"
- #define MAX_FDS 32
- #define NOP_USER_DATA (1LLU << 50)
- #define INITIAL_USER_DATA 1000
- static int no_accept;
- static int no_accept_multi;
- struct data {
- char buf[128];
- struct iovec iov;
- };
- struct accept_test_args {
- int accept_should_error;
- bool fixed;
- bool nonblock;
- bool queue_accept_before_connect;
- bool multishot;
- int extra_loops;
- bool overflow;
- };
- static void close_fds(int fds[], int nr)
- {
- int i;
- for (i = 0; i < nr; i++)
- close(fds[i]);
- }
- static void close_sock_fds(int s_fd[], int c_fd[], int nr, bool fixed)
- {
- if (!fixed)
- close_fds(s_fd, nr);
- close_fds(c_fd, nr);
- }
- static void *queue_send(struct io_uring *ring, int fd)
- {
- struct io_uring_sqe *sqe;
- struct data *d;
- d = t_malloc(sizeof(*d));
- d->iov.iov_base = d->buf;
- d->iov.iov_len = sizeof(d->buf);
- sqe = io_uring_get_sqe(ring);
- io_uring_prep_writev(sqe, fd, &d->iov, 1, 0);
- sqe->user_data = 1;
- return d;
- }
- static void *queue_recv(struct io_uring *ring, int fd, bool fixed)
- {
- struct io_uring_sqe *sqe;
- struct data *d;
- d = t_malloc(sizeof(*d));
- d->iov.iov_base = d->buf;
- d->iov.iov_len = sizeof(d->buf);
- sqe = io_uring_get_sqe(ring);
- io_uring_prep_readv(sqe, fd, &d->iov, 1, 0);
- sqe->user_data = 2;
- if (fixed)
- sqe->flags |= IOSQE_FIXED_FILE;
- return d;
- }
- static void queue_accept_multishot(struct io_uring *ring, int fd,
- int idx, bool fixed)
- {
- struct io_uring_sqe *sqe = io_uring_get_sqe(ring);
- int ret;
- if (fixed)
- io_uring_prep_multishot_accept_direct(sqe, fd,
- NULL, NULL,
- 0);
- else
- io_uring_prep_multishot_accept(sqe, fd, NULL, NULL, 0);
- io_uring_sqe_set_data64(sqe, idx);
- ret = io_uring_submit(ring);
- assert(ret != -1);
- }
- static void queue_accept_conn(struct io_uring *ring, int fd,
- struct accept_test_args args)
- {
- struct io_uring_sqe *sqe;
- int ret;
- int fixed_idx = args.fixed ? 0 : -1;
- int count = 1 + args.extra_loops;
- if (args.multishot) {
- queue_accept_multishot(ring, fd, INITIAL_USER_DATA, args.fixed);
- return;
- }
- while (count--) {
- sqe = io_uring_get_sqe(ring);
- if (fixed_idx < 0) {
- io_uring_prep_accept(sqe, fd, NULL, NULL, 0);
- } else {
- io_uring_prep_accept_direct(sqe, fd, NULL, NULL,
- 0, fixed_idx);
- }
- ret = io_uring_submit(ring);
- assert(ret != -1);
- }
- }
- static int accept_conn(struct io_uring *ring, int fixed_idx, int *multishot, int fd)
- {
- struct io_uring_cqe *pcqe;
- struct io_uring_cqe cqe;
- int ret;
- do {
- ret = io_uring_wait_cqe(ring, &pcqe);
- assert(!ret);
- cqe = *pcqe;
- io_uring_cqe_seen(ring, pcqe);
- } while (cqe.user_data == NOP_USER_DATA);
- if (*multishot) {
- if (!(cqe.flags & IORING_CQE_F_MORE)) {
- (*multishot)++;
- queue_accept_multishot(ring, fd, *multishot, fixed_idx == 0);
- } else {
- if (cqe.user_data != *multishot) {
- fprintf(stderr, "received multishot after told done!\n");
- return -ECANCELED;
- }
- }
- }
- ret = cqe.res;
- if (fixed_idx >= 0) {
- if (ret > 0) {
- if (!multishot) {
- close(ret);
- return -EINVAL;
- }
- } else if (!ret) {
- ret = fixed_idx;
- }
- }
- return ret;
- }
- static int start_accept_listen(struct sockaddr_in *addr, int port_off,
- int extra_flags)
- {
- int fd, ret;
- fd = socket(AF_INET, SOCK_STREAM | SOCK_CLOEXEC | extra_flags,
- IPPROTO_TCP);
- int32_t val = 1;
- ret = setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &val, sizeof(val));
- assert(ret != -1);
- ret = setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
- assert(ret != -1);
- struct sockaddr_in laddr;
- if (!addr)
- addr = &laddr;
- addr->sin_family = AF_INET;
- addr->sin_addr.s_addr = inet_addr("127.0.0.1");
- ret = t_bind_ephemeral_port(fd, addr);
- assert(!ret);
- ret = listen(fd, 128);
- assert(ret != -1);
- return fd;
- }
- static int set_client_fd(struct sockaddr_in *addr)
- {
- int32_t val;
- int fd, ret;
- fd = socket(AF_INET, SOCK_STREAM | SOCK_CLOEXEC, IPPROTO_TCP);
- val = 1;
- ret = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val));
- assert(ret != -1);
- int32_t flags = fcntl(fd, F_GETFL, 0);
- assert(flags != -1);
- flags |= O_NONBLOCK;
- ret = fcntl(fd, F_SETFL, flags);
- assert(ret != -1);
- ret = connect(fd, (struct sockaddr *)addr, sizeof(*addr));
- assert(ret == -1);
- flags = fcntl(fd, F_GETFL, 0);
- assert(flags != -1);
- flags &= ~O_NONBLOCK;
- ret = fcntl(fd, F_SETFL, flags);
- assert(ret != -1);
- return fd;
- }
- static void cause_overflow(struct io_uring *ring)
- {
- int i, ret;
- for (i = 0; i < ring->cq.ring_entries; i++) {
- struct io_uring_sqe *sqe = io_uring_get_sqe(ring);
- io_uring_prep_nop(sqe);
- io_uring_sqe_set_data64(sqe, NOP_USER_DATA);
- ret = io_uring_submit(ring);
- assert(ret != -1);
- }
- }
- static void clear_overflow(struct io_uring *ring)
- {
- struct io_uring_cqe *cqe;
- while (!io_uring_peek_cqe(ring, &cqe)) {
- if (cqe->user_data != NOP_USER_DATA)
- break;
- io_uring_cqe_seen(ring, cqe);
- }
- }
- static int test_loop(struct io_uring *ring,
- struct accept_test_args args,
- int recv_s0,
- struct sockaddr_in *addr)
- {
- struct io_uring_cqe *cqe;
- uint32_t head, count = 0;
- int i, ret, s_fd[MAX_FDS], c_fd[MAX_FDS], done = 0;
- bool fixed = args.fixed;
- bool multishot = args.multishot;
- uint32_t multishot_mask = 0;
- int nr_fds = multishot ? MAX_FDS : 1;
- int multishot_idx = multishot ? INITIAL_USER_DATA : 0;
- int err_ret = T_EXIT_FAIL;
- void* send_d = 0;
- void* recv_d = 0;
- if (args.overflow)
- cause_overflow(ring);
- for (i = 0; i < nr_fds; i++) {
- c_fd[i] = set_client_fd(addr);
- if (args.overflow && i == nr_fds / 2)
- clear_overflow(ring);
- }
- if (!args.queue_accept_before_connect)
- queue_accept_conn(ring, recv_s0, args);
- for (i = 0; i < nr_fds; i++) {
- s_fd[i] = accept_conn(ring, fixed ? 0 : -1, &multishot_idx, recv_s0);
- if (s_fd[i] == -EINVAL) {
- if (args.accept_should_error)
- goto out;
- fprintf(stdout,
- "%s %s Accept not supported, skipping\n",
- fixed ? "Fixed" : "",
- multishot ? "Multishot" : "");
- if (multishot)
- no_accept_multi = 1;
- else
- no_accept = 1;
- ret = T_EXIT_SKIP;
- goto out;
- } else if (s_fd[i] < 0) {
- if (args.accept_should_error &&
- (s_fd[i] == -EBADF || s_fd[i] == -EINVAL))
- goto out;
- fprintf(stderr, "%s %s Accept[%d] got %d\n",
- fixed ? "Fixed" : "",
- multishot ? "Multishot" : "",
- i, s_fd[i]);
- goto err;
- } else if (s_fd[i] == 195 && args.overflow) {
- fprintf(stderr, "Broken overflow handling\n");
- goto err;
- }
- if (multishot && fixed) {
- if (s_fd[i] >= MAX_FDS) {
- fprintf(stderr,
- "Fixed Multishot Accept[%d] got outbound index: %d\n",
- i, s_fd[i]);
- goto err;
- }
- /*
- * for fixed multishot accept test, the file slots
- * allocated are [0, 32), this means we finally end up
- * with each bit of a u32 being 1.
- */
- multishot_mask |= (1U << s_fd[i]);
- }
- }
- if (multishot) {
- if (fixed && (~multishot_mask != 0U)) {
- fprintf(stderr, "Fixed Multishot Accept misses events\n");
- goto err;
- }
- goto out;
- }
- send_d = queue_send(ring, c_fd[0]);
- recv_d = queue_recv(ring, s_fd[0], fixed);
- ret = io_uring_submit_and_wait(ring, 2);
- assert(ret != -1);
- while (count < 2) {
- io_uring_for_each_cqe(ring, head, cqe) {
- if (cqe->res < 0) {
- fprintf(stderr, "Got cqe res %d, user_data %i\n",
- cqe->res, (int)cqe->user_data);
- done = 1;
- break;
- }
- assert(cqe->res == 128);
- count++;
- }
- assert(count <= 2);
- io_uring_cq_advance(ring, count);
- if (done)
- goto err;
- }
- out:
- free(send_d);
- free(recv_d);
- close_sock_fds(s_fd, c_fd, nr_fds, fixed);
- return T_EXIT_PASS;
- err:
- free(send_d);
- free(recv_d);
- close_sock_fds(s_fd, c_fd, nr_fds, fixed);
- return err_ret;
- }
- static int test(struct io_uring *ring, struct accept_test_args args)
- {
- struct sockaddr_in addr;
- int ret = 0;
- int loop;
- int32_t recv_s0 = start_accept_listen(&addr, 0,
- args.nonblock ? SOCK_NONBLOCK : 0);
- if (args.queue_accept_before_connect)
- queue_accept_conn(ring, recv_s0, args);
- for (loop = 0; loop < 1 + args.extra_loops; loop++) {
- ret = test_loop(ring, args, recv_s0, &addr);
- if (ret)
- break;
- }
- close(recv_s0);
- return ret;
- }
- static void sig_alrm(int sig)
- {
- exit(0);
- }
- static int test_accept_pending_on_exit(void)
- {
- struct io_uring m_io_uring;
- struct io_uring_cqe *cqe;
- struct io_uring_sqe *sqe;
- int fd, ret;
- ret = io_uring_queue_init(32, &m_io_uring, 0);
- assert(ret >= 0);
- fd = start_accept_listen(NULL, 0, 0);
- sqe = io_uring_get_sqe(&m_io_uring);
- io_uring_prep_accept(sqe, fd, NULL, NULL, 0);
- ret = io_uring_submit(&m_io_uring);
- assert(ret != -1);
- signal(SIGALRM, sig_alrm);
- alarm(1);
- ret = io_uring_wait_cqe(&m_io_uring, &cqe);
- assert(!ret);
- io_uring_cqe_seen(&m_io_uring, cqe);
- io_uring_queue_exit(&m_io_uring);
- return 0;
- }
- struct test_accept_many_args {
- unsigned int usecs;
- bool nonblock;
- bool single_sock;
- bool close_fds;
- };
- /*
- * Test issue many accepts and see if we handle cancelation on exit
- */
- static int test_accept_many(struct test_accept_many_args args)
- {
- struct io_uring m_io_uring;
- struct io_uring_cqe *cqe;
- struct io_uring_sqe *sqe;
- unsigned long cur_lim;
- struct rlimit rlim;
- int *fds, i, ret;
- unsigned int nr = 128;
- int nr_socks = args.single_sock ? 1 : nr;
- if (getrlimit(RLIMIT_NPROC, &rlim) < 0) {
- perror("getrlimit");
- return 1;
- }
- cur_lim = rlim.rlim_cur;
- rlim.rlim_cur = nr / 4;
- if (setrlimit(RLIMIT_NPROC, &rlim) < 0) {
- perror("setrlimit");
- return 1;
- }
- ret = io_uring_queue_init(2 * nr, &m_io_uring, 0);
- assert(ret >= 0);
- fds = t_calloc(nr_socks, sizeof(int));
- for (i = 0; i < nr_socks; i++)
- fds[i] = start_accept_listen(NULL, i,
- args.nonblock ? SOCK_NONBLOCK : 0);
- for (i = 0; i < nr; i++) {
- int sock_idx = args.single_sock ? 0 : i;
- sqe = io_uring_get_sqe(&m_io_uring);
- io_uring_prep_accept(sqe, fds[sock_idx], NULL, NULL, 0);
- sqe->user_data = 1 + i;
- ret = io_uring_submit(&m_io_uring);
- assert(ret == 1);
- }
- if (args.usecs)
- usleep(args.usecs);
- if (args.close_fds)
- for (i = 0; i < nr_socks; i++)
- close(fds[i]);
- for (i = 0; i < nr; i++) {
- if (io_uring_peek_cqe(&m_io_uring, &cqe))
- break;
- if (cqe->res != -ECANCELED) {
- fprintf(stderr, "Expected cqe to be canceled %d\n", cqe->res);
- ret = 1;
- goto out;
- }
- io_uring_cqe_seen(&m_io_uring, cqe);
- }
- ret = 0;
- out:
- rlim.rlim_cur = cur_lim;
- if (setrlimit(RLIMIT_NPROC, &rlim) < 0) {
- perror("setrlimit");
- return 1;
- }
- free(fds);
- io_uring_queue_exit(&m_io_uring);
- return ret;
- }
- static int test_accept_cancel(unsigned usecs, unsigned int nr, bool multishot)
- {
- struct io_uring m_io_uring;
- struct io_uring_cqe *cqe;
- struct io_uring_sqe *sqe;
- int fd, i, ret;
- if (multishot && no_accept_multi)
- return T_EXIT_SKIP;
- ret = io_uring_queue_init(32, &m_io_uring, 0);
- assert(ret >= 0);
- fd = start_accept_listen(NULL, 0, 0);
- for (i = 1; i <= nr; i++) {
- sqe = io_uring_get_sqe(&m_io_uring);
- if (!multishot)
- io_uring_prep_accept(sqe, fd, NULL, NULL, 0);
- else
- io_uring_prep_multishot_accept(sqe, fd, NULL, NULL, 0);
- sqe->user_data = i;
- ret = io_uring_submit(&m_io_uring);
- assert(ret == 1);
- }
- if (usecs)
- usleep(usecs);
- for (i = 1; i <= nr; i++) {
- sqe = io_uring_get_sqe(&m_io_uring);
- io_uring_prep_cancel64(sqe, i, 0);
- sqe->user_data = nr + i;
- ret = io_uring_submit(&m_io_uring);
- assert(ret == 1);
- }
- for (i = 0; i < nr * 2; i++) {
- ret = io_uring_wait_cqe(&m_io_uring, &cqe);
- assert(!ret);
- /*
- * Two cases here:
- *
- * 1) We cancel the accept4() before it got started, we should
- * get '0' for the cancel request and '-ECANCELED' for the
- * accept request.
- * 2) We cancel the accept4() after it's already running, we
- * should get '-EALREADY' for the cancel request and
- * '-EINTR' for the accept request.
- */
- if (cqe->user_data == 0) {
- fprintf(stderr, "unexpected 0 user data\n");
- goto err;
- } else if (cqe->user_data <= nr) {
- /* no multishot */
- if (cqe->res == -EINVAL)
- return T_EXIT_SKIP;
- if (cqe->res != -EINTR && cqe->res != -ECANCELED) {
- fprintf(stderr, "Cancelled accept got %d\n", cqe->res);
- goto err;
- }
- } else if (cqe->user_data <= nr * 2) {
- if (cqe->res != -EALREADY && cqe->res != 0) {
- fprintf(stderr, "Cancel got %d\n", cqe->res);
- goto err;
- }
- }
- io_uring_cqe_seen(&m_io_uring, cqe);
- }
- io_uring_queue_exit(&m_io_uring);
- close(fd);
- return 0;
- err:
- io_uring_queue_exit(&m_io_uring);
- close(fd);
- return 1;
- }
- static int test_accept(int count, bool before)
- {
- struct io_uring m_io_uring;
- int ret;
- struct accept_test_args args = {
- .queue_accept_before_connect = before,
- .extra_loops = count - 1
- };
- ret = io_uring_queue_init(32, &m_io_uring, 0);
- assert(ret >= 0);
- ret = test(&m_io_uring, args);
- io_uring_queue_exit(&m_io_uring);
- return ret;
- }
- static int test_multishot_accept(int count, bool before, bool overflow)
- {
- struct io_uring m_io_uring;
- int ret;
- struct accept_test_args args = {
- .queue_accept_before_connect = before,
- .multishot = true,
- .extra_loops = count - 1,
- .overflow = overflow
- };
- if (no_accept_multi)
- return T_EXIT_SKIP;
- ret = io_uring_queue_init(MAX_FDS + 10, &m_io_uring, 0);
- assert(ret >= 0);
- ret = test(&m_io_uring, args);
- io_uring_queue_exit(&m_io_uring);
- return ret;
- }
- static int test_accept_multishot_wrong_arg(void)
- {
- struct io_uring m_io_uring;
- struct io_uring_cqe *cqe;
- struct io_uring_sqe *sqe;
- int fd, ret;
- ret = io_uring_queue_init(4, &m_io_uring, 0);
- assert(ret >= 0);
- fd = start_accept_listen(NULL, 0, 0);
- sqe = io_uring_get_sqe(&m_io_uring);
- io_uring_prep_multishot_accept_direct(sqe, fd, NULL, NULL, 0);
- sqe->file_index = 1;
- ret = io_uring_submit(&m_io_uring);
- assert(ret == 1);
- ret = io_uring_wait_cqe(&m_io_uring, &cqe);
- assert(!ret);
- if (cqe->res != -EINVAL) {
- fprintf(stderr, "file index should be IORING_FILE_INDEX_ALLOC \
- if its accept in multishot direct mode\n");
- goto err;
- }
- io_uring_cqe_seen(&m_io_uring, cqe);
- io_uring_queue_exit(&m_io_uring);
- close(fd);
- return 0;
- err:
- io_uring_queue_exit(&m_io_uring);
- close(fd);
- return 1;
- }
- static int test_accept_nonblock(bool queue_before_connect, int count)
- {
- struct io_uring m_io_uring;
- int ret;
- struct accept_test_args args = {
- .nonblock = true,
- .queue_accept_before_connect = queue_before_connect,
- .extra_loops = count - 1
- };
- ret = io_uring_queue_init(32, &m_io_uring, 0);
- assert(ret >= 0);
- ret = test(&m_io_uring, args);
- io_uring_queue_exit(&m_io_uring);
- return ret;
- }
- static int test_accept_fixed(void)
- {
- struct io_uring m_io_uring;
- int ret, fd = -1;
- struct accept_test_args args = {
- .fixed = true
- };
- ret = io_uring_queue_init(32, &m_io_uring, 0);
- assert(ret >= 0);
- ret = io_uring_register_files(&m_io_uring, &fd, 1);
- if (ret) {
- /* kernel doesn't support sparse registered files, skip */
- if (ret == -EBADF || ret == -EINVAL)
- return T_EXIT_SKIP;
- return T_EXIT_FAIL;
- }
- ret = test(&m_io_uring, args);
- io_uring_queue_exit(&m_io_uring);
- return ret;
- }
- static int test_multishot_fixed_accept(void)
- {
- struct io_uring m_io_uring;
- int ret, fd[MAX_FDS];
- struct accept_test_args args = {
- .fixed = true,
- .multishot = true
- };
- if (no_accept_multi)
- return T_EXIT_SKIP;
- memset(fd, -1, sizeof(fd));
- ret = io_uring_queue_init(MAX_FDS + 10, &m_io_uring, 0);
- assert(ret >= 0);
- ret = io_uring_register_files(&m_io_uring, fd, MAX_FDS);
- if (ret) {
- /* kernel doesn't support sparse registered files, skip */
- if (ret == -EBADF || ret == -EINVAL)
- return T_EXIT_SKIP;
- return T_EXIT_FAIL;
- }
- ret = test(&m_io_uring, args);
- io_uring_queue_exit(&m_io_uring);
- return ret;
- }
- static int test_accept_sqpoll(void)
- {
- struct io_uring m_io_uring;
- struct io_uring_params p = { };
- int ret;
- struct accept_test_args args = { };
- p.flags = IORING_SETUP_SQPOLL;
- ret = t_create_ring_params(32, &m_io_uring, &p);
- if (ret == T_SETUP_SKIP)
- return 0;
- else if (ret < 0)
- return ret;
- args.accept_should_error = 1;
- if (p.features & IORING_FEAT_SQPOLL_NONFIXED)
- args.accept_should_error = 0;
- ret = test(&m_io_uring, args);
- io_uring_queue_exit(&m_io_uring);
- return ret;
- }
- int main(int argc, char *argv[])
- {
- int ret;
- if (argc > 1)
- return T_EXIT_SKIP;
- ret = test_accept(1, false);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept failed\n");
- return ret;
- }
- if (no_accept)
- return T_EXIT_SKIP;
- ret = test_accept(2, false);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept(2) failed\n");
- return ret;
- }
- ret = test_accept(2, true);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept(2, true) failed\n");
- return ret;
- }
- ret = test_accept_nonblock(false, 1);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_nonblock failed\n");
- return ret;
- }
- ret = test_accept_nonblock(true, 1);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_nonblock(before, 1) failed\n");
- return ret;
- }
- ret = test_accept_nonblock(true, 3);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_nonblock(before,3) failed\n");
- return ret;
- }
- ret = test_accept_fixed();
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_fixed failed\n");
- return ret;
- }
- ret = test_multishot_fixed_accept();
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_multishot_fixed_accept failed\n");
- return ret;
- }
- ret = test_accept_multishot_wrong_arg();
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_multishot_wrong_arg failed\n");
- return ret;
- }
- ret = test_accept_sqpoll();
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_sqpoll failed\n");
- return ret;
- }
- ret = test_accept_cancel(0, 1, false);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_cancel nodelay failed\n");
- return ret;
- }
- ret = test_accept_cancel(10000, 1, false);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_cancel delay failed\n");
- return ret;
- }
- ret = test_accept_cancel(0, 4, false);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_cancel nodelay failed\n");
- return ret;
- }
- ret = test_accept_cancel(10000, 4, false);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_cancel delay failed\n");
- return ret;
- }
- ret = test_accept_cancel(0, 1, true);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_cancel multishot nodelay failed\n");
- return ret;
- }
- ret = test_accept_cancel(10000, 1, true);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_cancel multishot delay failed\n");
- return ret;
- }
- ret = test_accept_cancel(0, 4, true);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_cancel multishot nodelay failed\n");
- return ret;
- }
- ret = test_accept_cancel(10000, 4, true);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_cancel multishot delay failed\n");
- return ret;
- }
- ret = test_multishot_accept(1, true, true);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_multishot_accept(1, false, true) failed\n");
- return ret;
- }
- ret = test_multishot_accept(1, false, false);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_multishot_accept(1, false, false) failed\n");
- return ret;
- }
- ret = test_multishot_accept(1, true, false);
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_multishot_accept(1, true, false) failed\n");
- return ret;
- }
- ret = test_accept_many((struct test_accept_many_args) {});
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_many failed\n");
- return ret;
- }
- ret = test_accept_many((struct test_accept_many_args) {
- .usecs = 100000 });
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_many(sleep) failed\n");
- return ret;
- }
- ret = test_accept_many((struct test_accept_many_args) {
- .nonblock = true });
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_many(nonblock) failed\n");
- return ret;
- }
- ret = test_accept_many((struct test_accept_many_args) {
- .nonblock = true,
- .single_sock = true,
- .close_fds = true });
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_many(nonblock,close) failed\n");
- return ret;
- }
- ret = test_accept_pending_on_exit();
- if (ret == T_EXIT_FAIL) {
- fprintf(stderr, "test_accept_pending_on_exit failed\n");
- return ret;
- }
- return T_EXIT_PASS;
- }
|