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
|
/* SPDX-License-Identifier: MIT */
/*
* Description: test IORING_REGISTER_PROBE
*/
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include "helpers.h"
#include "liburing.h"
static int no_probe;
static int verify_probe(struct io_uring_probe *p, int full)
{
if (!full && p->ops_len) {
fprintf(stderr, "Got ops_len=%u\n", p->ops_len);
return 1;
}
if (!p->last_op) {
fprintf(stderr, "Got last_op=%u\n", p->last_op);
return 1;
}
if (!full)
return 0;
/* check a few ops that must be supported */
if (!(p->ops[IORING_OP_NOP].flags & IO_URING_OP_SUPPORTED)) {
fprintf(stderr, "NOP not supported!?\n");
return 1;
}
if (!(p->ops[IORING_OP_READV].flags & IO_URING_OP_SUPPORTED)) {
fprintf(stderr, "READV not supported!?\n");
return 1;
}
if (!(p->ops[IORING_OP_WRITE].flags & IO_URING_OP_SUPPORTED)) {
fprintf(stderr, "WRITE not supported!?\n");
return 1;
}
return 0;
}
static int test_probe_helper(struct io_uring *ring)
{
int ret;
struct io_uring_probe *p;
p = io_uring_get_probe_ring(ring);
if (!p) {
fprintf(stderr, "Failed getting probe data\n");
return 1;
}
ret = verify_probe(p, 1);
io_uring_free_probe(p);
return ret;
}
static int test_probe(struct io_uring *ring)
{
struct io_uring_probe *p;
size_t len;
int ret;
len = sizeof(*p) + 256 * sizeof(struct io_uring_probe_op);
p = t_calloc(1, len);
ret = io_uring_register_probe(ring, p, 0);
if (ret == -EINVAL) {
fprintf(stdout, "Probe not supported, skipping\n");
no_probe = 1;
goto out;
} else if (ret) {
fprintf(stdout, "Probe returned %d\n", ret);
goto err;
}
if (verify_probe(p, 0))
goto err;
/* now grab for all entries */
memset(p, 0, len);
ret = io_uring_register_probe(ring, p, 256);
if (ret == -EINVAL) {
fprintf(stdout, "Probe not supported, skipping\n");
goto err;
} else if (ret) {
fprintf(stdout, "Probe returned %d\n", ret);
goto err;
}
if (verify_probe(p, 1))
goto err;
out:
free(p);
return 0;
err:
free(p);
return 1;
}
int main(int argc, char *argv[])
{
struct io_uring ring;
int ret;
if (argc > 1)
return 0;
ret = io_uring_queue_init(8, &ring, 0);
if (ret) {
fprintf(stderr, "ring setup failed\n");
return 1;
}
ret = test_probe(&ring);
if (ret) {
fprintf(stderr, "test_probe failed\n");
return ret;
}
if (no_probe)
return 0;
ret = test_probe_helper(&ring);
if (ret) {
fprintf(stderr, "test_probe failed\n");
return ret;
}
return 0;
}
|