1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/kernel.h>
3 #include <linux/errno.h>
5 #include <linux/file.h>
6 #include <linux/io_uring.h>
8 #include <uapi/linux/io_uring.h>
15 /* NOTE: kiocb has the file as the first member, so don't do it here */
23 #define NOP_FLAGS (IORING_NOP_INJECT_RESULT | IORING_NOP_FIXED_FILE | \
24 IORING_NOP_FIXED_BUFFER | IORING_NOP_FILE)
26 int io_nop_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
28 struct io_nop
*nop
= io_kiocb_to_cmd(req
, struct io_nop
);
30 nop
->flags
= READ_ONCE(sqe
->nop_flags
);
31 if (nop
->flags
& ~NOP_FLAGS
)
34 if (nop
->flags
& IORING_NOP_INJECT_RESULT
)
35 nop
->result
= READ_ONCE(sqe
->len
);
38 if (nop
->flags
& IORING_NOP_FIXED_FILE
)
39 nop
->fd
= READ_ONCE(sqe
->fd
);
40 if (nop
->flags
& IORING_NOP_FIXED_BUFFER
)
41 nop
->buffer
= READ_ONCE(sqe
->buf_index
);
45 int io_nop(struct io_kiocb
*req
, unsigned int issue_flags
)
47 struct io_nop
*nop
= io_kiocb_to_cmd(req
, struct io_nop
);
48 int ret
= nop
->result
;
50 if (nop
->flags
& IORING_NOP_FILE
) {
51 if (nop
->flags
& IORING_NOP_FIXED_FILE
) {
52 req
->file
= io_file_get_fixed(req
, nop
->fd
, issue_flags
);
53 req
->flags
|= REQ_F_FIXED_FILE
;
55 req
->file
= io_file_get_normal(req
, nop
->fd
);
62 if (nop
->flags
& IORING_NOP_FIXED_BUFFER
) {
63 struct io_ring_ctx
*ctx
= req
->ctx
;
64 struct io_rsrc_node
*node
;
67 io_ring_submit_lock(ctx
, issue_flags
);
68 node
= io_rsrc_node_lookup(&ctx
->buf_table
, nop
->buffer
);
70 io_req_assign_buf_node(req
, node
);
73 io_ring_submit_unlock(ctx
, issue_flags
);
78 io_req_set_res(req
, nop
->result
, 0);