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
|
/* SPDX-License-Identifier: MIT */
/*
* Description: test ring messaging command
*
*/
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <pthread.h>
#include "liburing.h"
#include "helpers.h"
static int no_msg;
static int no_sync_msg;
static int test_own_sync(struct io_uring *ring)
{
struct io_uring_sqe sqe = { };
struct io_uring_cqe *cqe;
int ret;
if (no_sync_msg)
return 0;
io_uring_prep_msg_ring(&sqe, ring->ring_fd, 0x10, 0x1234, 0);
sqe.user_data = 1;
ret = io_uring_register_sync_msg(&sqe);
if (ret == -EINVAL) {
no_sync_msg = 1;
return 0;
} else if (ret != 0) {
fprintf(stderr, "register_sync_msg: %d\n", ret);
return 1;
}
ret = io_uring_wait_cqe(ring, &cqe);
if (ret < 0) {
fprintf(stderr, "wait completion %d\n", ret);
return 1;
}
switch (cqe->user_data) {
case 0x1234:
if (cqe->res != 0x10) {
fprintf(stderr, "invalid len %x\n", cqe->res);
return -1;
}
break;
default:
fprintf(stderr, "Invalid user_data\n");
return -1;
}
io_uring_cqe_seen(ring, cqe);
return 0;
}
static int test_own(struct io_uring *ring, int do_sync)
{
struct io_uring_sqe *sqe;
struct io_uring_cqe *cqe;
int ret, i;
if (do_sync)
return test_own_sync(ring);
sqe = io_uring_get_sqe(ring);
if (!sqe) {
fprintf(stderr, "get sqe failed\n");
goto err;
}
io_uring_prep_msg_ring(sqe, ring->ring_fd, 0x10, 0x1234, 0);
sqe->user_data = 1;
ret = io_uring_submit(ring);
if (ret <= 0) {
fprintf(stderr, "sqe submit failed: %d\n", ret);
goto err;
}
for (i = 0; i < 2; i++) {
ret = io_uring_wait_cqe(ring, &cqe);
if (ret < 0) {
fprintf(stderr, "wait completion %d\n", ret);
goto err;
}
switch (cqe->user_data) {
case 1:
if (cqe->res == -EINVAL || cqe->res == -EOPNOTSUPP) {
no_msg = 1;
return 0;
}
if (cqe->res != 0) {
fprintf(stderr, "cqe res %d\n", cqe->res);
return -1;
}
break;
case 0x1234:
if (cqe->res != 0x10) {
fprintf(stderr, "invalid len %x\n", cqe->res);
return -1;
}
break;
default:
fprintf(stderr, "Invalid user_data\n");
return -1;
}
io_uring_cqe_seen(ring, cqe);
}
return 0;
err:
return 1;
}
struct data {
struct io_uring *ring;
unsigned int flags;
pthread_barrier_t startup;
pthread_barrier_t barrier;
};
static void *wait_cqe_fn(void *__data)
{
struct data *d = __data;
struct io_uring_cqe *cqe;
struct io_uring ring;
int ret;
io_uring_queue_init(4, &ring, d->flags);
d->ring = ˚
pthread_barrier_wait(&d->startup);
pthread_barrier_wait(&d->barrier);
ret = io_uring_wait_cqe(&ring, &cqe);
if (ret) {
fprintf(stderr, "wait cqe %d\n", ret);
goto err;
}
if (cqe->user_data != 0x5aa5) {
fprintf(stderr, "user_data %llx\n", (long long) cqe->user_data);
goto err;
}
if (cqe->res != 0x20) {
fprintf(stderr, "len %x\n", cqe->res);
goto err;
}
io_uring_cqe_seen(&ring, cqe);
io_uring_queue_exit(&ring);
return NULL;
err:
io_uring_cqe_seen(&ring, cqe);
io_uring_queue_exit(&ring);
return (void *) (unsigned long) 1;
}
static int test_remote_sync(unsigned int ring_flags)
{
struct io_uring *target;
pthread_t thread;
void *tret;
struct io_uring_sqe sqe = { };
struct data d;
int ret;
if (no_sync_msg)
return 0;
d.flags = ring_flags;
pthread_barrier_init(&d.barrier, NULL, 2);
pthread_barrier_init(&d.startup, NULL, 2);
pthread_create(&thread, NULL, wait_cqe_fn, &d);
pthread_barrier_wait(&d.startup);
target = d.ring;
io_uring_prep_msg_ring(&sqe, target->ring_fd, 0x20, 0x5aa5, 0);
sqe.user_data = 1;
pthread_barrier_wait(&d.barrier);
ret = io_uring_register_sync_msg(&sqe);
if (ret == -EINVAL) {
no_sync_msg = 1;
return 0;
} else if (ret != 0) {
fprintf(stderr, "sync_msg: %d\n", ret);
goto err;
}
pthread_join(thread, &tret);
return 0;
err:
return 1;
}
static int test_remote(struct io_uring *ring, unsigned int ring_flags,
int do_sync)
{
struct io_uring *target;
pthread_t thread;
void *tret;
struct io_uring_cqe *cqe;
struct io_uring_sqe *sqe;
struct data d;
int ret;
if (do_sync)
return test_remote_sync(ring_flags);
d.flags = ring_flags;
pthread_barrier_init(&d.barrier, NULL, 2);
pthread_barrier_init(&d.startup, NULL, 2);
pthread_create(&thread, NULL, wait_cqe_fn, &d);
pthread_barrier_wait(&d.startup);
target = d.ring;
sqe = io_uring_get_sqe(ring);
if (!sqe) {
fprintf(stderr, "get sqe failed\n");
goto err;
}
io_uring_prep_msg_ring(sqe, target->ring_fd, 0x20, 0x5aa5, 0);
sqe->user_data = 1;
ret = io_uring_submit(ring);
if (ret <= 0) {
fprintf(stderr, "sqe submit failed: %d\n", ret);
goto err;
}
pthread_barrier_wait(&d.barrier);
ret = io_uring_wait_cqe(ring, &cqe);
if (ret < 0) {
fprintf(stderr, "wait completion %d\n", ret);
goto err;
}
if (cqe->res != 0) {
fprintf(stderr, "cqe res %d\n", cqe->res);
io_uring_cqe_seen(ring, cqe);
return -1;
}
if (cqe->user_data != 1) {
fprintf(stderr, "user_data %llx\n", (long long) cqe->user_data);
io_uring_cqe_seen(ring, cqe);
return -1;
}
io_uring_cqe_seen(ring, cqe);
pthread_join(thread, &tret);
return 0;
err:
return 1;
}
static void *remote_submit_fn(void *data)
{
struct io_uring_sqe *sqe;
struct io_uring_cqe *cqe;
struct io_uring *target = data;
struct io_uring ring;
int ret;
ret = io_uring_queue_init(8, &ring, 0);
if (ret) {
fprintf(stderr, "thread ring setup failed: %d\n", ret);
goto err;
}
sqe = io_uring_get_sqe(&ring);
if (!sqe) {
fprintf(stderr, "get sqe failed\n");
goto err;
}
io_uring_prep_msg_ring(sqe, target->ring_fd, 0x20, 0x5aa5, 0);
sqe->user_data = 1;
ret = io_uring_submit(&ring);
if (ret <= 0) {
fprintf(stderr, "sqe submit failed: %d\n", ret);
goto err;
}
ret = io_uring_wait_cqe(&ring, &cqe);
if (ret < 0) {
fprintf(stderr, "wait completion %d\n", ret);
goto err;
}
if (cqe->res != 0 || cqe->user_data != 1) {
fprintf(stderr, "invalid cqe\n");
goto err;
}
io_uring_cqe_seen(&ring, cqe);
io_uring_queue_exit(&ring);
return NULL;
err:
return (void *) (unsigned long) 1;
}
static int test_remote_submit(struct io_uring *target)
{
struct io_uring_cqe *cqe;
pthread_t thread;
void *tret;
int ret;
pthread_create(&thread, NULL, remote_submit_fn, target);
ret = io_uring_wait_cqe(target, &cqe);
if (ret < 0) {
fprintf(stderr, "wait completion %d\n", ret);
goto err;
}
if (cqe->res != 0x20) {
fprintf(stderr, "cqe res %d\n", cqe->res);
return -1;
}
if (cqe->user_data != 0x5aa5) {
fprintf(stderr, "user_data %llx\n", (long long) cqe->user_data);
return -1;
}
io_uring_cqe_seen(target, cqe);
pthread_join(thread, &tret);
return 0;
err:
return 1;
}
static int test_invalid(struct io_uring *ring, bool fixed)
{
struct io_uring_cqe *cqe;
struct io_uring_sqe *sqe;
int ret, fd = 1;
sqe = io_uring_get_sqe(ring);
if (!sqe) {
fprintf(stderr, "get sqe failed\n");
return 1;
}
if (fixed) {
ret = io_uring_register_files(ring, &fd, 1);
if (ret) {
fprintf(stderr, "file register %d\n", ret);
return 1;
}
io_uring_prep_msg_ring(sqe, 0, 0, 0x8989, 0);
sqe->flags |= IOSQE_FIXED_FILE;
} else {
io_uring_prep_msg_ring(sqe, 1, 0, 0x8989, 0);
}
sqe->user_data = 1;
ret = io_uring_submit(ring);
if (ret <= 0) {
fprintf(stderr, "sqe submit failed: %d\n", ret);
goto err;
}
ret = io_uring_wait_cqe(ring, &cqe);
if (ret < 0) {
fprintf(stderr, "wait completion %d\n", ret);
goto err;
}
if (cqe->res != -EBADFD) {
fprintf(stderr, "cqe res %d\n", cqe->res);
return -1;
}
io_uring_cqe_seen(ring, cqe);
if (fixed)
io_uring_unregister_files(ring);
return 0;
err:
if (fixed)
io_uring_unregister_files(ring);
return 1;
}
static int test_disabled_ring(struct io_uring *ring, int flags)
{
struct io_uring_cqe *cqe;
struct io_uring_sqe *sqe;
struct io_uring disabled_ring;
int ret;
flags |= IORING_SETUP_R_DISABLED;
ret = io_uring_queue_init(8, &disabled_ring, flags);
if (ret) {
if (ret == -EINVAL)
return T_EXIT_SKIP;
fprintf(stderr, "ring setup failed: %d\n", ret);
return 1;
}
sqe = io_uring_get_sqe(ring);
io_uring_prep_msg_ring(sqe, disabled_ring.ring_fd, 0x10, 0x1234, 0);
sqe->user_data = 1;
ret = io_uring_submit(ring);
if (ret != 1) {
fprintf(stderr, "sqe submit failed: %d\n", ret);
return 1;
}
ret = io_uring_wait_cqe(ring, &cqe);
if (ret < 0) {
fprintf(stderr, "wait completion %d\n", ret);
return 1;
}
if (cqe->res != 0 && cqe->res != -EBADFD) {
fprintf(stderr, "cqe res %d\n", cqe->res);
return 1;
}
if (cqe->user_data != 1) {
fprintf(stderr, "user_data %llx\n", (long long) cqe->user_data);
return 1;
}
io_uring_cqe_seen(ring, cqe);
io_uring_queue_exit(&disabled_ring);
return 0;
}
static int test(int ring_flags)
{
struct io_uring ring, ring2, pring;
int ret, i;
ret = io_uring_queue_init(8, &ring, ring_flags);
if (ret) {
if (ret == -EINVAL)
return T_EXIT_SKIP;
fprintf(stderr, "ring setup failed: %d\n", ret);
return T_EXIT_FAIL;
}
ret = io_uring_queue_init(8, &ring2, ring_flags);
if (ret) {
fprintf(stderr, "ring setup failed: %d\n", ret);
return T_EXIT_FAIL;
}
ret = io_uring_queue_init(8, &pring, ring_flags | IORING_SETUP_IOPOLL);
if (ret) {
fprintf(stderr, "ring setup failed: %d\n", ret);
return T_EXIT_FAIL;
}
ret = test_own(&ring, 0);
if (ret) {
fprintf(stderr, "test_own sync failed\n");
return T_EXIT_FAIL;
}
if (no_msg)
return T_EXIT_SKIP;
ret = test_own(&ring, 1);
if (ret) {
fprintf(stderr, "test_own async failed\n");
return T_EXIT_FAIL;
}
ret = test_own(&pring, 0);
if (ret) {
fprintf(stderr, "test_own async iopoll failed\n");
return T_EXIT_FAIL;
}
ret = test_own(&pring, 1);
if (ret) {
fprintf(stderr, "test_own sync iopoll failed\n");
return T_EXIT_FAIL;
}
ret = test_invalid(&ring, 0);
if (ret) {
fprintf(stderr, "test_invalid failed\n");
return T_EXIT_FAIL;
}
for (i = 0; i < 2; i++) {
ret = test_invalid(&ring, 1);
if (ret) {
fprintf(stderr, "test_invalid fixed failed\n");
return T_EXIT_FAIL;
}
}
ret = test_remote(&ring, ring_flags, 0);
if (ret) {
fprintf(stderr, "test_remote failed\n");
return T_EXIT_FAIL;
}
ret = test_remote(&ring, ring_flags, 1);
if (ret) {
fprintf(stderr, "test_remote sync failed\n");
return T_EXIT_FAIL;
}
io_uring_queue_exit(&ring);
io_uring_queue_exit(&pring);
if (t_probe_defer_taskrun()) {
ret = io_uring_queue_init(8, &ring, IORING_SETUP_SINGLE_ISSUER |
IORING_SETUP_DEFER_TASKRUN);
if (ret) {
fprintf(stderr, "deferred ring setup failed: %d\n", ret);
return T_EXIT_FAIL;
}
ret = test_own(&ring, 0);
if (ret) {
fprintf(stderr, "test_own async deferred failed\n");
return T_EXIT_FAIL;
}
ret = test_own(&ring, 1);
if (ret) {
fprintf(stderr, "test_own sync deferred failed\n");
return T_EXIT_FAIL;
}
for (i = 0; i < 2; i++) {
ret = test_invalid(&ring, i);
if (ret) {
fprintf(stderr, "test_invalid(0) deferred failed\n");
return T_EXIT_FAIL;
}
}
ret = test_remote_submit(&ring);
if (ret) {
fprintf(stderr, "test_remote_submit failed\n");
return T_EXIT_FAIL;
}
io_uring_queue_exit(&ring);
if (test_disabled_ring(&ring2, 0)) {
fprintf(stderr, "test_disabled_ring failed\n");
return T_EXIT_FAIL;
}
if (test_disabled_ring(&ring2, IORING_SETUP_SINGLE_ISSUER |
IORING_SETUP_DEFER_TASKRUN)) {
fprintf(stderr, "test_disabled_ring defer failed\n");
return T_EXIT_FAIL;
}
}
io_uring_queue_exit(&ring2);
return T_EXIT_PASS;
}
int main(int argc, char *argv[])
{
int ret;
if (argc > 1)
return T_EXIT_SKIP;
ret = test(0);
if (ret == T_EXIT_FAIL) {
fprintf(stderr, "ring flags 0 failed\n");
return ret;
} else if (ret == T_EXIT_SKIP) {
return T_EXIT_SKIP;
}
ret = test(IORING_SETUP_SINGLE_ISSUER|IORING_SETUP_DEFER_TASKRUN);
if (ret == T_EXIT_FAIL) {
fprintf(stderr, "ring flags defer failed\n");
return ret;
}
return ret;
}
|