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 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918
|
/* 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);
t_set_nonblock(fd);
ret = connect(fd, (struct sockaddr *)addr, sizeof(*addr));
assert(ret == -1);
t_clear_nonblock(fd);
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;
}
|