Loading...
1// SPDX-License-Identifier: GPL-2.0
2#ifndef IOU_RSRC_H
3#define IOU_RSRC_H
4
5#include <net/af_unix.h>
6
7#define IO_RSRC_TAG_TABLE_SHIFT (PAGE_SHIFT - 3)
8#define IO_RSRC_TAG_TABLE_MAX (1U << IO_RSRC_TAG_TABLE_SHIFT)
9#define IO_RSRC_TAG_TABLE_MASK (IO_RSRC_TAG_TABLE_MAX - 1)
10
11enum {
12 IORING_RSRC_FILE = 0,
13 IORING_RSRC_BUFFER = 1,
14};
15
16struct io_rsrc_put {
17 struct list_head list;
18 u64 tag;
19 union {
20 void *rsrc;
21 struct file *file;
22 struct io_mapped_ubuf *buf;
23 };
24};
25
26typedef void (rsrc_put_fn)(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc);
27
28struct io_rsrc_data {
29 struct io_ring_ctx *ctx;
30
31 u64 **tags;
32 unsigned int nr;
33 rsrc_put_fn *do_put;
34 atomic_t refs;
35 struct completion done;
36 bool quiesce;
37};
38
39struct io_rsrc_node {
40 struct percpu_ref refs;
41 struct list_head node;
42 struct list_head rsrc_list;
43 struct io_rsrc_data *rsrc_data;
44 struct llist_node llist;
45 bool done;
46};
47
48struct io_mapped_ubuf {
49 u64 ubuf;
50 u64 ubuf_end;
51 unsigned int nr_bvecs;
52 unsigned long acct_pages;
53 struct bio_vec bvec[];
54};
55
56void io_rsrc_put_tw(struct callback_head *cb);
57void io_rsrc_put_work(struct work_struct *work);
58void io_rsrc_refs_refill(struct io_ring_ctx *ctx);
59void io_wait_rsrc_data(struct io_rsrc_data *data);
60void io_rsrc_node_destroy(struct io_rsrc_node *ref_node);
61void io_rsrc_refs_drop(struct io_ring_ctx *ctx);
62int io_rsrc_node_switch_start(struct io_ring_ctx *ctx);
63int io_queue_rsrc_removal(struct io_rsrc_data *data, unsigned idx,
64 struct io_rsrc_node *node, void *rsrc);
65void io_rsrc_node_switch(struct io_ring_ctx *ctx,
66 struct io_rsrc_data *data_to_kill);
67
68int io_import_fixed(int ddir, struct iov_iter *iter,
69 struct io_mapped_ubuf *imu,
70 u64 buf_addr, size_t len);
71
72void __io_sqe_buffers_unregister(struct io_ring_ctx *ctx);
73int io_sqe_buffers_unregister(struct io_ring_ctx *ctx);
74int io_sqe_buffers_register(struct io_ring_ctx *ctx, void __user *arg,
75 unsigned int nr_args, u64 __user *tags);
76void __io_sqe_files_unregister(struct io_ring_ctx *ctx);
77int io_sqe_files_unregister(struct io_ring_ctx *ctx);
78int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
79 unsigned nr_args, u64 __user *tags);
80
81int __io_scm_file_account(struct io_ring_ctx *ctx, struct file *file);
82
83#if defined(CONFIG_UNIX)
84static inline bool io_file_need_scm(struct file *filp)
85{
86 return !!unix_get_socket(filp);
87}
88#else
89static inline bool io_file_need_scm(struct file *filp)
90{
91 return false;
92}
93#endif
94
95static inline int io_scm_file_account(struct io_ring_ctx *ctx,
96 struct file *file)
97{
98 if (likely(!io_file_need_scm(file)))
99 return 0;
100 return __io_scm_file_account(ctx, file);
101}
102
103int io_register_files_update(struct io_ring_ctx *ctx, void __user *arg,
104 unsigned nr_args);
105int io_register_rsrc_update(struct io_ring_ctx *ctx, void __user *arg,
106 unsigned size, unsigned type);
107int io_register_rsrc(struct io_ring_ctx *ctx, void __user *arg,
108 unsigned int size, unsigned int type);
109
110static inline void io_rsrc_put_node(struct io_rsrc_node *node, int nr)
111{
112 percpu_ref_put_many(&node->refs, nr);
113}
114
115static inline void io_req_put_rsrc(struct io_kiocb *req)
116{
117 if (req->rsrc_node)
118 io_rsrc_put_node(req->rsrc_node, 1);
119}
120
121static inline void io_req_put_rsrc_locked(struct io_kiocb *req,
122 struct io_ring_ctx *ctx)
123 __must_hold(&ctx->uring_lock)
124{
125 struct io_rsrc_node *node = req->rsrc_node;
126
127 if (node) {
128 if (node == ctx->rsrc_node)
129 ctx->rsrc_cached_refs++;
130 else
131 io_rsrc_put_node(node, 1);
132 }
133}
134
135static inline void io_charge_rsrc_node(struct io_ring_ctx *ctx)
136{
137 ctx->rsrc_cached_refs--;
138 if (unlikely(ctx->rsrc_cached_refs < 0))
139 io_rsrc_refs_refill(ctx);
140}
141
142static inline void io_req_set_rsrc_node(struct io_kiocb *req,
143 struct io_ring_ctx *ctx,
144 unsigned int issue_flags)
145{
146 if (!req->rsrc_node) {
147 req->rsrc_node = ctx->rsrc_node;
148
149 if (!(issue_flags & IO_URING_F_UNLOCKED)) {
150 lockdep_assert_held(&ctx->uring_lock);
151
152 io_charge_rsrc_node(ctx);
153 } else {
154 percpu_ref_get(&req->rsrc_node->refs);
155 }
156 }
157}
158
159static inline u64 *io_get_tag_slot(struct io_rsrc_data *data, unsigned int idx)
160{
161 unsigned int off = idx & IO_RSRC_TAG_TABLE_MASK;
162 unsigned int table_idx = idx >> IO_RSRC_TAG_TABLE_SHIFT;
163
164 return &data->tags[table_idx][off];
165}
166
167int io_files_update(struct io_kiocb *req, unsigned int issue_flags);
168int io_files_update_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
169
170int __io_account_mem(struct user_struct *user, unsigned long nr_pages);
171
172static inline void __io_unaccount_mem(struct user_struct *user,
173 unsigned long nr_pages)
174{
175 atomic_long_sub(nr_pages, &user->locked_vm);
176}
177
178#endif
1// SPDX-License-Identifier: GPL-2.0
2#ifndef IOU_RSRC_H
3#define IOU_RSRC_H
4
5#define IO_NODE_ALLOC_CACHE_MAX 32
6
7#define IO_RSRC_TAG_TABLE_SHIFT (PAGE_SHIFT - 3)
8#define IO_RSRC_TAG_TABLE_MAX (1U << IO_RSRC_TAG_TABLE_SHIFT)
9#define IO_RSRC_TAG_TABLE_MASK (IO_RSRC_TAG_TABLE_MAX - 1)
10
11enum {
12 IORING_RSRC_FILE = 0,
13 IORING_RSRC_BUFFER = 1,
14};
15
16struct io_rsrc_node {
17 unsigned char type;
18 int refs;
19
20 u64 tag;
21 union {
22 unsigned long file_ptr;
23 struct io_mapped_ubuf *buf;
24 };
25};
26
27struct io_mapped_ubuf {
28 u64 ubuf;
29 unsigned int len;
30 unsigned int nr_bvecs;
31 unsigned int folio_shift;
32 refcount_t refs;
33 unsigned long acct_pages;
34 struct bio_vec bvec[] __counted_by(nr_bvecs);
35};
36
37struct io_imu_folio_data {
38 /* Head folio can be partially included in the fixed buf */
39 unsigned int nr_pages_head;
40 /* For non-head/tail folios, has to be fully included */
41 unsigned int nr_pages_mid;
42 unsigned int folio_shift;
43};
44
45struct io_rsrc_node *io_rsrc_node_alloc(struct io_ring_ctx *ctx, int type);
46void io_free_rsrc_node(struct io_ring_ctx *ctx, struct io_rsrc_node *node);
47void io_rsrc_data_free(struct io_ring_ctx *ctx, struct io_rsrc_data *data);
48int io_rsrc_data_alloc(struct io_rsrc_data *data, unsigned nr);
49
50int io_import_fixed(int ddir, struct iov_iter *iter,
51 struct io_mapped_ubuf *imu,
52 u64 buf_addr, size_t len);
53
54int io_register_clone_buffers(struct io_ring_ctx *ctx, void __user *arg);
55int io_sqe_buffers_unregister(struct io_ring_ctx *ctx);
56int io_sqe_buffers_register(struct io_ring_ctx *ctx, void __user *arg,
57 unsigned int nr_args, u64 __user *tags);
58int io_sqe_files_unregister(struct io_ring_ctx *ctx);
59int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
60 unsigned nr_args, u64 __user *tags);
61
62int io_register_files_update(struct io_ring_ctx *ctx, void __user *arg,
63 unsigned nr_args);
64int io_register_rsrc_update(struct io_ring_ctx *ctx, void __user *arg,
65 unsigned size, unsigned type);
66int io_register_rsrc(struct io_ring_ctx *ctx, void __user *arg,
67 unsigned int size, unsigned int type);
68
69static inline struct io_rsrc_node *io_rsrc_node_lookup(struct io_rsrc_data *data,
70 int index)
71{
72 if (index < data->nr)
73 return data->nodes[array_index_nospec(index, data->nr)];
74 return NULL;
75}
76
77static inline void io_put_rsrc_node(struct io_ring_ctx *ctx, struct io_rsrc_node *node)
78{
79 if (node && !--node->refs)
80 io_free_rsrc_node(ctx, node);
81}
82
83static inline bool io_reset_rsrc_node(struct io_ring_ctx *ctx,
84 struct io_rsrc_data *data, int index)
85{
86 struct io_rsrc_node *node = data->nodes[index];
87
88 if (!node)
89 return false;
90 io_put_rsrc_node(ctx, node);
91 data->nodes[index] = NULL;
92 return true;
93}
94
95static inline void io_req_put_rsrc_nodes(struct io_kiocb *req)
96{
97 if (req->file_node) {
98 io_put_rsrc_node(req->ctx, req->file_node);
99 req->file_node = NULL;
100 }
101 if (req->flags & REQ_F_BUF_NODE) {
102 io_put_rsrc_node(req->ctx, req->buf_node);
103 req->buf_node = NULL;
104 }
105}
106
107static inline void io_req_assign_rsrc_node(struct io_rsrc_node **dst_node,
108 struct io_rsrc_node *node)
109{
110 node->refs++;
111 *dst_node = node;
112}
113
114static inline void io_req_assign_buf_node(struct io_kiocb *req,
115 struct io_rsrc_node *node)
116{
117 io_req_assign_rsrc_node(&req->buf_node, node);
118 req->flags |= REQ_F_BUF_NODE;
119}
120
121int io_files_update(struct io_kiocb *req, unsigned int issue_flags);
122int io_files_update_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
123
124int __io_account_mem(struct user_struct *user, unsigned long nr_pages);
125
126static inline void __io_unaccount_mem(struct user_struct *user,
127 unsigned long nr_pages)
128{
129 atomic_long_sub(nr_pages, &user->locked_vm);
130}
131
132#endif