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
|
/* SPDX-License-Identifier: MIT */
/*
* Description: basic read/write tests with polled IO
*/
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <sys/types.h>
#include <poll.h>
#include <sys/eventfd.h>
#include <sys/resource.h>
#include "helpers.h"
#include "liburing.h"
#include "../src/syscall.h"
#define FILE_SIZE (128 * 1024)
#define BS 4096
#define BUFFERS (FILE_SIZE / BS)
static struct iovec *vecs;
static int no_buf_select;
static int no_iopoll;
static int provide_buffers(struct io_uring *ring)
{
struct io_uring_sqe *sqe;
struct io_uring_cqe *cqe;
int ret, i;
for (i = 0; i < BUFFERS; i++) {
sqe = io_uring_get_sqe(ring);
io_uring_prep_provide_buffers(sqe, vecs[i].iov_base,
vecs[i].iov_len, 1, 1, i);
}
ret = io_uring_submit(ring);
if (ret != BUFFERS) {
fprintf(stderr, "submit: %d\n", ret);
return 1;
}
for (i = 0; i < BUFFERS; i++) {
ret = io_uring_wait_cqe(ring, &cqe);
if (cqe->res < 0) {
fprintf(stderr, "cqe->res=%d\n", cqe->res);
return 1;
}
io_uring_cqe_seen(ring, cqe);
}
return 0;
}
static int __test_io(const char *file, struct io_uring *ring, int write, int sqthread,
int fixed, int buf_select)
{
struct io_uring_sqe *sqe;
struct io_uring_cqe *cqe;
int open_flags;
int i, fd = -1, ret;
off_t offset;
if (buf_select) {
write = 0;
fixed = 0;
}
if (buf_select && provide_buffers(ring))
return 1;
if (write)
open_flags = O_WRONLY;
else
open_flags = O_RDONLY;
open_flags |= O_DIRECT;
if (fixed) {
ret = t_register_buffers(ring, vecs, BUFFERS);
if (ret == T_SETUP_SKIP)
return 0;
if (ret != T_SETUP_OK) {
fprintf(stderr, "buffer reg failed: %d\n", ret);
goto err;
}
}
fd = open(file, open_flags);
if (fd < 0) {
perror("file open");
goto err;
}
if (sqthread) {
ret = io_uring_register_files(ring, &fd, 1);
if (ret) {
fprintf(stderr, "file reg failed: %d\n", ret);
goto err;
}
}
offset = 0;
for (i = 0; i < BUFFERS; i++) {
sqe = io_uring_get_sqe(ring);
if (!sqe) {
fprintf(stderr, "sqe get failed\n");
goto err;
}
offset = BS * (rand() % BUFFERS);
if (write) {
int do_fixed = fixed;
int use_fd = fd;
if (sqthread)
use_fd = 0;
if (fixed && (i & 1))
do_fixed = 0;
if (do_fixed) {
io_uring_prep_write_fixed(sqe, use_fd, vecs[i].iov_base,
vecs[i].iov_len,
offset, i);
} else {
io_uring_prep_writev(sqe, use_fd, &vecs[i], 1,
offset);
}
} else {
int do_fixed = fixed;
int use_fd = fd;
if (sqthread)
use_fd = 0;
if (fixed && (i & 1))
do_fixed = 0;
if (do_fixed) {
io_uring_prep_read_fixed(sqe, use_fd, vecs[i].iov_base,
vecs[i].iov_len,
offset, i);
} else {
io_uring_prep_readv(sqe, use_fd, &vecs[i], 1,
offset);
}
}
if (sqthread)
sqe->flags |= IOSQE_FIXED_FILE;
if (buf_select) {
sqe->flags |= IOSQE_BUFFER_SELECT;
sqe->buf_group = buf_select;
sqe->user_data = i;
}
}
ret = io_uring_submit(ring);
if (ret != BUFFERS) {
ret = io_uring_peek_cqe(ring, &cqe);
if (!ret && cqe->res == -EOPNOTSUPP) {
no_iopoll = 1;
io_uring_cqe_seen(ring, cqe);
goto out;
}
fprintf(stderr, "submit got %d, wanted %d\n", ret, BUFFERS);
goto err;
}
for (i = 0; i < BUFFERS; i++) {
ret = io_uring_wait_cqe(ring, &cqe);
if (ret) {
fprintf(stderr, "wait_cqe=%d\n", ret);
goto err;
} else if (cqe->res == -EOPNOTSUPP) {
fprintf(stdout, "File/device/fs doesn't support polled IO\n");
no_iopoll = 1;
goto out;
} else if (cqe->res != BS) {
fprintf(stderr, "cqe res %d, wanted %d\n", cqe->res, BS);
goto err;
}
io_uring_cqe_seen(ring, cqe);
}
if (fixed) {
ret = io_uring_unregister_buffers(ring);
if (ret) {
fprintf(stderr, "buffer unreg failed: %d\n", ret);
goto err;
}
}
if (sqthread) {
ret = io_uring_unregister_files(ring);
if (ret) {
fprintf(stderr, "file unreg failed: %d\n", ret);
goto err;
}
}
out:
close(fd);
return 0;
err:
if (fd != -1)
close(fd);
return 1;
}
extern unsigned __io_uring_flush_sq(struct io_uring *ring);
/*
* if we are polling io_uring_submit needs to always enter the
* kernel to fetch events
*/
static int test_io_uring_submit_enters(const char *file)
{
struct io_uring ring;
int fd, i, ret, ring_flags, open_flags;
unsigned head;
struct io_uring_cqe *cqe;
if (no_iopoll)
return 0;
ring_flags = IORING_SETUP_IOPOLL;
ret = io_uring_queue_init(64, &ring, ring_flags);
if (ret) {
fprintf(stderr, "ring create failed: %d\n", ret);
return 1;
}
open_flags = O_WRONLY | O_DIRECT;
fd = open(file, open_flags);
if (fd < 0) {
perror("file open");
goto err;
}
for (i = 0; i < BUFFERS; i++) {
struct io_uring_sqe *sqe;
off_t offset = BS * (rand() % BUFFERS);
sqe = io_uring_get_sqe(&ring);
io_uring_prep_writev(sqe, fd, &vecs[i], 1, offset);
sqe->user_data = 1;
}
/* submit manually to avoid adding IORING_ENTER_GETEVENTS */
ret = __sys_io_uring_enter(ring.ring_fd, __io_uring_flush_sq(&ring), 0,
0, NULL);
if (ret < 0)
goto err;
for (i = 0; i < 500; i++) {
ret = io_uring_submit(&ring);
if (ret != 0) {
fprintf(stderr, "still had %d sqes to submit, this is unexpected", ret);
goto err;
}
io_uring_for_each_cqe(&ring, head, cqe) {
/* runs after test_io so should not have happened */
if (cqe->res == -EOPNOTSUPP) {
fprintf(stdout, "File/device/fs doesn't support polled IO\n");
goto err;
}
goto ok;
}
usleep(10000);
}
err:
ret = 1;
if (fd != -1)
close(fd);
ok:
io_uring_queue_exit(&ring);
return ret;
}
static int test_io(const char *file, int write, int sqthread, int fixed,
int buf_select, int defer)
{
struct io_uring ring;
int ret, ring_flags = IORING_SETUP_IOPOLL;
if (no_iopoll)
return 0;
if (defer)
ring_flags |= IORING_SETUP_SINGLE_ISSUER |
IORING_SETUP_DEFER_TASKRUN;
ret = t_create_ring(64, &ring, ring_flags);
if (ret == T_SETUP_SKIP)
return 0;
if (ret != T_SETUP_OK) {
fprintf(stderr, "ring create failed: %d\n", ret);
return 1;
}
ret = __test_io(file, &ring, write, sqthread, fixed, buf_select);
io_uring_queue_exit(&ring);
return ret;
}
static int probe_buf_select(void)
{
struct io_uring_probe *p;
struct io_uring ring;
int ret;
ret = io_uring_queue_init(1, &ring, 0);
if (ret) {
fprintf(stderr, "ring create failed: %d\n", ret);
return 1;
}
p = io_uring_get_probe_ring(&ring);
if (!p || !io_uring_opcode_supported(p, IORING_OP_PROVIDE_BUFFERS)) {
no_buf_select = 1;
fprintf(stdout, "Buffer select not supported, skipping\n");
return 0;
}
io_uring_free_probe(p);
return 0;
}
int main(int argc, char *argv[])
{
int i, ret, nr;
char buf[256];
char *fname;
if (probe_buf_select())
return T_EXIT_FAIL;
if (argc > 1) {
fname = argv[1];
} else {
srand((unsigned)time(NULL));
snprintf(buf, sizeof(buf), ".basic-rw-%u-%u",
(unsigned)rand(), (unsigned)getpid());
fname = buf;
t_create_file(fname, FILE_SIZE);
}
vecs = t_create_buffers(BUFFERS, BS);
nr = 32;
if (no_buf_select)
nr = 8;
else if (!t_probe_defer_taskrun())
nr = 16;
for (i = 0; i < nr; i++) {
int write = (i & 1) != 0;
int sqthread = (i & 2) != 0;
int fixed = (i & 4) != 0;
int buf_select = (i & 8) != 0;
int defer = (i & 16) != 0;
ret = test_io(fname, write, sqthread, fixed, buf_select, defer);
if (ret) {
fprintf(stderr, "test_io failed %d/%d/%d/%d/%d\n",
write, sqthread, fixed, buf_select, defer);
goto err;
}
if (no_iopoll)
break;
}
ret = test_io_uring_submit_enters(fname);
if (ret) {
fprintf(stderr, "test_io_uring_submit_enters failed\n");
goto err;
}
if (fname != argv[1])
unlink(fname);
return T_EXIT_PASS;
err:
if (fname != argv[1])
unlink(fname);
return T_EXIT_FAIL;
}
|