]> git.ipfire.org Git - thirdparty/kernel/linux.git/blame - io_uring/kbuf.h
Merge tag 'perf-tools-fixes-for-v6.9-2024-04-19' of git://git.kernel.org/pub/scm...
[thirdparty/kernel/linux.git] / io_uring / kbuf.h
CommitLineData
3b77495a
JA
1// SPDX-License-Identifier: GPL-2.0
2#ifndef IOU_KBUF_H
3#define IOU_KBUF_H
4
5#include <uapi/linux/io_uring.h>
6
7struct io_buffer_list {
8 /*
9 * If ->buf_nr_pages is set, then buf_pages/buf_ring are used. If not,
10 * then these are classic provided buffers and ->buf_list is used.
11 */
12 union {
13 struct list_head buf_list;
14 struct {
15 struct page **buf_pages;
16 struct io_uring_buf_ring *buf_ring;
17 };
5cf4f52e 18 struct rcu_head rcu;
3b77495a
JA
19 };
20 __u16 bgid;
21
22 /* below is for ring provided buffers */
23 __u16 buf_nr_pages;
24 __u16 nr_entries;
25 __u16 head;
26 __u16 mask;
25a2c188 27
6b69c4ab
JA
28 atomic_t refs;
29
25a2c188 30 /* ring mapped provided buffers */
9219e4a9 31 __u8 is_buf_ring;
c56e022c
JA
32 /* ring mapped provided buffers, but mmap'ed by application */
33 __u8 is_mmap;
3b77495a
JA
34};
35
36struct io_buffer {
37 struct list_head list;
38 __u64 addr;
39 __u32 len;
40 __u16 bid;
41 __u16 bgid;
42};
43
44void __user *io_buffer_select(struct io_kiocb *req, size_t *len,
45 unsigned int issue_flags);
3b77495a
JA
46void io_destroy_buffers(struct io_ring_ctx *ctx);
47
48int io_remove_buffers_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
49int io_remove_buffers(struct io_kiocb *req, unsigned int issue_flags);
50
51int io_provide_buffers_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
52int io_provide_buffers(struct io_kiocb *req, unsigned int issue_flags);
53
54int io_register_pbuf_ring(struct io_ring_ctx *ctx, void __user *arg);
55int io_unregister_pbuf_ring(struct io_ring_ctx *ctx, void __user *arg);
d293b1a8 56int io_register_pbuf_status(struct io_ring_ctx *ctx, void __user *arg);
3b77495a 57
c392cbec
JA
58void io_kbuf_mmap_list_free(struct io_ring_ctx *ctx);
59
8435c6f3 60void __io_put_kbuf(struct io_kiocb *req, unsigned issue_flags);
53ccf69b 61
89d528ba 62bool io_kbuf_recycle_legacy(struct io_kiocb *req, unsigned issue_flags);
795bbbc8 63
561e4f94
JA
64void io_put_bl(struct io_ring_ctx *ctx, struct io_buffer_list *bl);
65struct io_buffer_list *io_pbuf_get_bl(struct io_ring_ctx *ctx,
66 unsigned long bgid);
c56e022c 67
89d528ba 68static inline bool io_kbuf_recycle_ring(struct io_kiocb *req)
795bbbc8
HX
69{
70 /*
71 * We don't need to recycle for REQ_F_BUFFER_RING, we can just clear
72 * the flag and hence ensure that bl->head doesn't get incremented.
73 * If the tail has already been incremented, hang on to it.
74 * The exception is partial io, that case we should increment bl->head
75 * to monopolize the buffer.
76 */
77 if (req->buf_list) {
186daf23
JA
78 req->buf_index = req->buf_list->bgid;
79 req->flags &= ~REQ_F_BUFFER_RING;
80 return true;
795bbbc8 81 }
89d528ba 82 return false;
795bbbc8 83}
024b8fde 84
3b77495a
JA
85static inline bool io_do_buffer_select(struct io_kiocb *req)
86{
87 if (!(req->flags & REQ_F_BUFFER_SELECT))
88 return false;
89 return !(req->flags & (REQ_F_BUFFER_SELECTED|REQ_F_BUFFER_RING));
90}
91
89d528ba 92static inline bool io_kbuf_recycle(struct io_kiocb *req, unsigned issue_flags)
3b77495a 93{
186daf23
JA
94 if (req->flags & REQ_F_BL_NO_RECYCLE)
95 return false;
024b8fde 96 if (req->flags & REQ_F_BUFFER_SELECTED)
89d528ba 97 return io_kbuf_recycle_legacy(req, issue_flags);
024b8fde 98 if (req->flags & REQ_F_BUFFER_RING)
89d528ba
DY
99 return io_kbuf_recycle_ring(req);
100 return false;
3b77495a
JA
101}
102
8435c6f3 103static inline void __io_put_kbuf_ring(struct io_kiocb *req)
3b77495a 104{
8435c6f3
JA
105 if (req->buf_list) {
106 req->buf_index = req->buf_list->bgid;
107 req->buf_list->head++;
108 }
109 req->flags &= ~REQ_F_BUFFER_RING;
110}
32f3c434 111
8435c6f3
JA
112static inline void __io_put_kbuf_list(struct io_kiocb *req,
113 struct list_head *list)
114{
3b77495a 115 if (req->flags & REQ_F_BUFFER_RING) {
8435c6f3 116 __io_put_kbuf_ring(req);
3b77495a 117 } else {
32f3c434 118 req->buf_index = req->kbuf->bgid;
3b77495a
JA
119 list_add(&req->kbuf->list, list);
120 req->flags &= ~REQ_F_BUFFER_SELECTED;
121 }
3b77495a
JA
122}
123
124static inline unsigned int io_put_kbuf_comp(struct io_kiocb *req)
125{
8435c6f3
JA
126 unsigned int ret;
127
3b77495a
JA
128 lockdep_assert_held(&req->ctx->completion_lock);
129
130 if (!(req->flags & (REQ_F_BUFFER_SELECTED|REQ_F_BUFFER_RING)))
131 return 0;
8435c6f3
JA
132
133 ret = IORING_CQE_F_BUFFER | (req->buf_index << IORING_CQE_BUFFER_SHIFT);
134 __io_put_kbuf_list(req, &req->ctx->io_buffers_comp);
135 return ret;
3b77495a
JA
136}
137
138static inline unsigned int io_put_kbuf(struct io_kiocb *req,
139 unsigned issue_flags)
140{
8435c6f3 141 unsigned int ret;
3b77495a 142
8435c6f3 143 if (!(req->flags & (REQ_F_BUFFER_RING | REQ_F_BUFFER_SELECTED)))
3b77495a 144 return 0;
8435c6f3
JA
145
146 ret = IORING_CQE_F_BUFFER | (req->buf_index << IORING_CQE_BUFFER_SHIFT);
147 if (req->flags & REQ_F_BUFFER_RING)
148 __io_put_kbuf_ring(req);
149 else
150 __io_put_kbuf(req, issue_flags);
151 return ret;
3b77495a
JA
152}
153#endif