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
|
/* SPDX-License-Identifier: MIT */
/*
* Description: test many files being polled for
*
*/
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <poll.h>
#include <sys/resource.h>
#include <fcntl.h>
#include "liburing.h"
#include "helpers.h"
#define NFILES 5000
#define BATCH 500
#define NLOOPS 1000
#define RING_SIZE 512
static int nfiles = NFILES;
struct p {
int fd[2];
int triggered;
};
static struct p p[NFILES];
static int arm_poll(struct io_uring *ring, int off)
{
struct io_uring_sqe *sqe;
sqe = io_uring_get_sqe(ring);
if (!sqe) {
fprintf(stderr, "failed getting sqe\n");
return 1;
}
io_uring_prep_poll_add(sqe, p[off].fd[0], POLLIN);
sqe->user_data = off;
return 0;
}
static int reap_polls(struct io_uring *ring)
{
struct io_uring_cqe *cqe;
int i, ret, off;
char c;
for (i = 0; i < BATCH; i++) {
ret = io_uring_wait_cqe(ring, &cqe);
if (ret) {
fprintf(stderr, "wait cqe %d\n", ret);
return ret;
}
off = cqe->user_data;
p[off].triggered = 0;
ret = read(p[off].fd[0], &c, 1);
if (ret != 1) {
fprintf(stderr, "read got %d/%d\n", ret, errno);
break;
}
if (arm_poll(ring, off))
break;
io_uring_cqe_seen(ring, cqe);
}
if (i != BATCH) {
fprintf(stderr, "gave up at %d\n", i);
return 1;
}
ret = io_uring_submit(ring);
if (ret != BATCH) {
fprintf(stderr, "submitted %d, %d\n", ret, BATCH);
return 1;
}
return 0;
}
static int trigger_polls(void)
{
char c = 89;
int i, ret;
for (i = 0; i < BATCH; i++) {
int off;
do {
off = rand() % nfiles;
if (!p[off].triggered)
break;
} while (1);
p[off].triggered = 1;
ret = write(p[off].fd[1], &c, 1);
if (ret != 1) {
fprintf(stderr, "write got %d/%d\n", ret, errno);
return 1;
}
}
return 0;
}
static int arm_polls(struct io_uring *ring)
{
int ret, to_arm = nfiles, i, off;
off = 0;
while (to_arm) {
int this_arm;
this_arm = to_arm;
if (this_arm > RING_SIZE)
this_arm = RING_SIZE;
for (i = 0; i < this_arm; i++) {
if (arm_poll(ring, off)) {
fprintf(stderr, "arm failed at %d\n", off);
return 1;
}
off++;
}
ret = io_uring_submit(ring);
if (ret != this_arm) {
fprintf(stderr, "submitted %d, %d\n", ret, this_arm);
return 1;
}
to_arm -= this_arm;
}
return 0;
}
static int do_test(struct io_uring *ring)
{
int i;
if (arm_polls(ring))
return 1;
for (i = 0; i < NLOOPS; i++) {
trigger_polls();
if (reap_polls(ring))
return 1;
}
return 0;
}
int main(int argc, char *argv[])
{
struct io_uring ring;
struct io_uring_params params = { };
struct rlimit rlim;
int i, ret;
if (argc > 1)
return T_EXIT_SKIP;
if (getrlimit(RLIMIT_NOFILE, &rlim) < 0) {
perror("getrlimit");
return T_EXIT_FAIL;
}
if (rlim.rlim_cur < (2 * NFILES + 5)) {
rlim.rlim_cur = rlim.rlim_max;
nfiles = (rlim.rlim_cur / 2) - 5;
if (nfiles > NFILES)
nfiles = NFILES;
if (nfiles <= 0)
goto err_nofail;
if (setrlimit(RLIMIT_NOFILE, &rlim) < 0) {
if (errno == EPERM)
goto err_nofail;
perror("setrlimit");
return T_EXIT_FAIL;
}
}
for (i = 0; i < nfiles; i++) {
if (pipe(p[i].fd) < 0) {
perror("pipe");
return T_EXIT_FAIL;
}
}
params.flags = IORING_SETUP_CQSIZE;
params.cq_entries = 4096;
ret = io_uring_queue_init_params(RING_SIZE, &ring, ¶ms);
if (ret) {
if (ret == -EINVAL) {
fprintf(stdout, "No CQSIZE, trying without\n");
params.flags &= ~IORING_SETUP_CQSIZE;
params.cq_entries = 0;
ret = io_uring_queue_init_params(RING_SIZE, &ring, ¶ms);
if (ret) {
fprintf(stderr, "ring setup failed: %d\n", ret);
return T_EXIT_FAIL;
}
}
}
if (do_test(&ring)) {
fprintf(stderr, "test (normal) failed\n");
return T_EXIT_FAIL;
}
io_uring_queue_exit(&ring);
if (t_probe_defer_taskrun()) {
params.flags |= IORING_SETUP_SINGLE_ISSUER | IORING_SETUP_DEFER_TASKRUN;
ret = io_uring_queue_init_params(RING_SIZE, &ring, ¶ms);
if (ret) {
fprintf(stderr, "ring DEFER setup failed: %d\n", ret);
return T_EXIT_FAIL;
}
if (do_test(&ring)) {
fprintf(stderr, "test (DEFER) failed\n");
return T_EXIT_FAIL;
}
io_uring_queue_exit(&ring);
}
return 0;
err_nofail:
fprintf(stderr, "poll-many: not enough files available (and not root), "
"skipped\n");
return T_EXIT_SKIP;
}
|