io_uring/rsrc: fix DEFER_TASKRUN rsrc quiesce
[linux-2.6-block.git] / include / linux / io_uring_types.h
CommitLineData
e27f928e
JA
1#ifndef IO_URING_TYPES_H
2#define IO_URING_TYPES_H
3
4#include <linux/blkdev.h>
5#include <linux/task_work.h>
d9b57aa3 6#include <linux/bitmap.h>
e70cb608 7#include <linux/llist.h>
d9b57aa3 8#include <uapi/linux/io_uring.h>
e27f928e 9
ab1c84d8
PB
10struct io_wq_work_node {
11 struct io_wq_work_node *next;
12};
13
14struct io_wq_work_list {
15 struct io_wq_work_node *first;
16 struct io_wq_work_node *last;
17};
18
19struct io_wq_work {
20 struct io_wq_work_node list;
21 unsigned flags;
22 /* place it here instead of io_kiocb as it fills padding and saves 4B */
23 int cancel_seq;
24};
25
26struct io_fixed_file {
27 /* file * with additional FFS_* flags */
28 unsigned long file_ptr;
29};
30
31struct io_file_table {
32 struct io_fixed_file *files;
33 unsigned long *bitmap;
34 unsigned int alloc_hint;
35};
e27f928e 36
e6f89be6
PB
37struct io_hash_bucket {
38 spinlock_t lock;
39 struct hlist_head list;
40} ____cacheline_aligned_in_smp;
41
42struct io_hash_table {
43 struct io_hash_bucket *hbs;
44 unsigned hash_bits;
45};
46
e70cb608
PB
47/*
48 * Arbitrary limit, can be raised if need be
49 */
50#define IO_RINGFD_REG_MAX 16
51
52struct io_uring_task {
53 /* submission side */
54 int cached_refs;
55 const struct io_ring_ctx *last;
56 struct io_wq *io_wq;
57 struct file *registered_rings[IO_RINGFD_REG_MAX];
58
59 struct xarray xa;
60 struct wait_queue_head wait;
8d664282 61 atomic_t in_cancel;
e70cb608
PB
62 atomic_t inflight_tracked;
63 struct percpu_counter inflight;
64
65 struct { /* task_work */
66 struct llist_head task_list;
67 struct callback_head task_work;
68 } ____cacheline_aligned_in_smp;
69};
70
e27f928e
JA
71struct io_uring {
72 u32 head ____cacheline_aligned_in_smp;
73 u32 tail ____cacheline_aligned_in_smp;
74};
75
76/*
77 * This data is shared with the application through the mmap at offsets
78 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
79 *
80 * The offsets to the member fields are published through struct
81 * io_sqring_offsets when calling io_uring_setup.
82 */
83struct io_rings {
84 /*
85 * Head and tail offsets into the ring; the offsets need to be
86 * masked to get valid indices.
87 *
88 * The kernel controls head of the sq ring and the tail of the cq ring,
89 * and the application controls tail of the sq ring and the head of the
90 * cq ring.
91 */
92 struct io_uring sq, cq;
93 /*
94 * Bitmasks to apply to head and tail offsets (constant, equals
95 * ring_entries - 1)
96 */
97 u32 sq_ring_mask, cq_ring_mask;
98 /* Ring sizes (constant, power of 2) */
99 u32 sq_ring_entries, cq_ring_entries;
100 /*
101 * Number of invalid entries dropped by the kernel due to
102 * invalid index stored in array
103 *
104 * Written by the kernel, shouldn't be modified by the
105 * application (i.e. get number of "new events" by comparing to
106 * cached value).
107 *
108 * After a new SQ head value was read by the application this
109 * counter includes all submissions that were dropped reaching
110 * the new SQ head (and possibly more).
111 */
112 u32 sq_dropped;
113 /*
114 * Runtime SQ flags
115 *
116 * Written by the kernel, shouldn't be modified by the
117 * application.
118 *
119 * The application needs a full memory barrier before checking
120 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
121 */
122 atomic_t sq_flags;
123 /*
124 * Runtime CQ flags
125 *
126 * Written by the application, shouldn't be modified by the
127 * kernel.
128 */
129 u32 cq_flags;
130 /*
131 * Number of completion events lost because the queue was full;
132 * this should be avoided by the application by making sure
133 * there are not more requests pending than there is space in
134 * the completion queue.
135 *
136 * Written by the kernel, shouldn't be modified by the
137 * application (i.e. get number of "new events" by comparing to
138 * cached value).
139 *
140 * As completion events come in out of order this counter is not
141 * ordered with any other data.
142 */
143 u32 cq_overflow;
144 /*
145 * Ring buffer of completion events.
146 *
147 * The kernel writes completion events fresh every time they are
148 * produced, so the application is allowed to modify pending
149 * entries.
150 */
151 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
152};
153
154struct io_restriction {
155 DECLARE_BITMAP(register_op, IORING_REGISTER_LAST);
156 DECLARE_BITMAP(sqe_op, IORING_OP_LAST);
157 u8 sqe_flags_allowed;
158 u8 sqe_flags_required;
159 bool registered;
160};
161
162struct io_submit_link {
163 struct io_kiocb *head;
164 struct io_kiocb *last;
165};
166
167struct io_submit_state {
168 /* inline/task_work completion list, under ->uring_lock */
169 struct io_wq_work_node free_list;
170 /* batch completion logic */
171 struct io_wq_work_list compl_reqs;
172 struct io_submit_link link;
173
174 bool plug_started;
175 bool need_plug;
e27f928e 176 unsigned short submit_nr;
931147dd 177 unsigned int cqes_count;
e27f928e 178 struct blk_plug plug;
931147dd 179 struct io_uring_cqe cqes[16];
e27f928e
JA
180};
181
182struct io_ev_fd {
183 struct eventfd_ctx *cq_ev_fd;
184 unsigned int eventfd_async: 1;
185 struct rcu_head rcu;
21a091b9
DY
186 atomic_t refs;
187 atomic_t ops;
e27f928e
JA
188};
189
9b797a37 190struct io_alloc_cache {
efba1a9e 191 struct io_wq_work_node list;
9731bc98 192 unsigned int nr_cached;
69bbc6ad 193 unsigned int max_cached;
e1fe7ee8 194 size_t elem_size;
9b797a37
JA
195};
196
e27f928e
JA
197struct io_ring_ctx {
198 /* const or read-mostly hot data */
199 struct {
e27f928e 200 unsigned int flags;
e27f928e
JA
201 unsigned int drain_next: 1;
202 unsigned int restricted: 1;
203 unsigned int off_timeout_used: 1;
204 unsigned int drain_active: 1;
e27f928e 205 unsigned int has_evfd: 1;
e6aeb272
PB
206 /* all CQEs should be posted only by the submitter task */
207 unsigned int task_complete: 1;
632ffe09 208 unsigned int syscall_iopoll: 1;
bca39f39 209 unsigned int poll_activated: 1;
632ffe09
PB
210 unsigned int drain_disabled: 1;
211 unsigned int compat: 1;
dde40322
PB
212
213 enum task_work_notify_mode notify_method;
214 struct io_rings *rings;
215 struct task_struct *submitter_task;
216 struct percpu_ref refs;
e27f928e
JA
217 } ____cacheline_aligned_in_smp;
218
219 /* submission data */
220 struct {
221 struct mutex uring_lock;
222
223 /*
224 * Ring buffer of indices into array of io_uring_sqe, which is
225 * mmapped by the application using the IORING_OFF_SQES offset.
226 *
227 * This indirection could e.g. be used to assign fixed
228 * io_uring_sqe entries to operations and only submit them to
229 * the queue when needed.
230 *
231 * The kernel modifies neither the indices array nor the entries
232 * array.
233 */
234 u32 *sq_array;
235 struct io_uring_sqe *sq_sqes;
236 unsigned cached_sq_head;
237 unsigned sq_entries;
e27f928e
JA
238
239 /*
240 * Fixed resources fast path, should be accessed only under
241 * uring_lock, and updated through io_uring_register(2)
242 */
243 struct io_rsrc_node *rsrc_node;
e27f928e
JA
244 atomic_t cancel_seq;
245 struct io_file_table file_table;
246 unsigned nr_user_files;
247 unsigned nr_user_bufs;
248 struct io_mapped_ubuf **user_bufs;
249
250 struct io_submit_state submit_state;
251
252 struct io_buffer_list *io_bl;
253 struct xarray io_bl_xa;
254 struct list_head io_buffers_cache;
255
9ca9fb24 256 struct io_hash_table cancel_table_locked;
e27f928e 257 struct list_head cq_overflow_list;
9b797a37 258 struct io_alloc_cache apoll_cache;
43e0bbbd 259 struct io_alloc_cache netmsg_cache;
e27f928e
JA
260 } ____cacheline_aligned_in_smp;
261
262 /* IRQ completion list, under ->completion_lock */
263 struct io_wq_work_list locked_free_list;
264 unsigned int locked_free_nr;
265
266 const struct cred *sq_creds; /* cred used for __io_sq_thread() */
267 struct io_sq_data *sq_data; /* if using sq thread polling */
268
269 struct wait_queue_head sqo_sq_wait;
270 struct list_head sqd_list;
271
272 unsigned long check_cq;
273
6e73dffb
PB
274 unsigned int file_alloc_start;
275 unsigned int file_alloc_end;
276
43e0bbbd
JA
277 struct xarray personalities;
278 u32 pers_next;
279
e27f928e
JA
280 struct {
281 /*
282 * We cache a range of free CQEs we can use, once exhausted it
283 * should go through a slower range setup, see __io_get_cqe()
284 */
285 struct io_uring_cqe *cqe_cached;
286 struct io_uring_cqe *cqe_sentinel;
287
288 unsigned cached_cq_tail;
289 unsigned cq_entries;
290 struct io_ev_fd __rcu *io_ev_fd;
291 struct wait_queue_head cq_wait;
292 unsigned cq_extra;
e27f928e
JA
293 } ____cacheline_aligned_in_smp;
294
295 struct {
296 spinlock_t completion_lock;
297
59b745bb 298 bool poll_multi_queue;
8751d154 299 atomic_t cq_wait_nr;
59b745bb 300
e27f928e
JA
301 /*
302 * ->iopoll_list is protected by the ctx->uring_lock for
303 * io_uring instances that don't use IORING_SETUP_SQPOLL.
304 * For SQPOLL, only the single threaded io_sq_thread() will
305 * manipulate the list, hence no extra locking is needed there.
306 */
307 struct io_wq_work_list iopoll_list;
e6f89be6 308 struct io_hash_table cancel_table;
e27f928e 309
c0e0d6ba
DY
310 struct llist_head work_llist;
311
e27f928e
JA
312 struct list_head io_buffers_comp;
313 } ____cacheline_aligned_in_smp;
314
aff5b2df
PB
315 /* timeouts */
316 struct {
317 spinlock_t timeout_lock;
318 atomic_t cq_timeouts;
319 struct list_head timeout_list;
320 struct list_head ltimeout_list;
321 unsigned cq_last_tm_flush;
322 } ____cacheline_aligned_in_smp;
323
e27f928e 324 /* Keep this last, we don't need it for the fast path */
7b235dd8 325 struct wait_queue_head poll_wq;
22eb2a3f
PB
326 struct io_restriction restrictions;
327
328 /* slow path rsrc auxilary data, used by update/register */
22eb2a3f
PB
329 struct io_mapped_ubuf *dummy_ubuf;
330 struct io_rsrc_data *file_data;
331 struct io_rsrc_data *buf_data;
332
0a4813b1 333 /* protected by ->uring_lock */
22eb2a3f 334 struct list_head rsrc_ref_list;
9eae8655 335 struct io_alloc_cache rsrc_node_cache;
4ea15b56 336 struct wait_queue_head rsrc_quiesce_wq;
22eb2a3f
PB
337
338 struct list_head io_buffers_pages;
339
340 #if defined(CONFIG_UNIX)
341 struct socket *ring_sock;
342 #endif
343 /* hashed buffered write serialization */
344 struct io_wq_hash *hash_map;
345
346 /* Only used for accounting purposes */
347 struct user_struct *user;
348 struct mm_struct *mm_account;
349
350 /* ctx exit and cancelation */
351 struct llist_head fallback_llist;
352 struct delayed_work fallback_work;
353 struct work_struct exit_work;
354 struct list_head tctx_list;
355 struct completion ref_comp;
356
357 /* io-wq management, e.g. thread count */
358 u32 iowq_limits[2];
359 bool iowq_limits_set;
360
bca39f39 361 struct callback_head poll_wq_task_work;
22eb2a3f
PB
362 struct list_head defer_list;
363 unsigned sq_thread_idle;
305bef98
PB
364 /* protected by ->completion_lock */
365 unsigned evfd_last_cq_tail;
e27f928e
JA
366};
367
a282967c
PB
368struct io_tw_state {
369 /* ->uring_lock is taken, callbacks can use io_tw_lock to lock it */
370 bool locked;
371};
372
e27f928e
JA
373enum {
374 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
375 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
376 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
377 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
378 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
379 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
380 REQ_F_CQE_SKIP_BIT = IOSQE_CQE_SKIP_SUCCESS_BIT,
381
382 /* first byte is taken by user flags, shift it to not overlap */
383 REQ_F_FAIL_BIT = 8,
384 REQ_F_INFLIGHT_BIT,
385 REQ_F_CUR_POS_BIT,
386 REQ_F_NOWAIT_BIT,
387 REQ_F_LINK_TIMEOUT_BIT,
388 REQ_F_NEED_CLEANUP_BIT,
389 REQ_F_POLLED_BIT,
390 REQ_F_BUFFER_SELECTED_BIT,
391 REQ_F_BUFFER_RING_BIT,
e27f928e
JA
392 REQ_F_REISSUE_BIT,
393 REQ_F_CREDS_BIT,
394 REQ_F_REFCOUNT_BIT,
395 REQ_F_ARM_LTIMEOUT_BIT,
396 REQ_F_ASYNC_DATA_BIT,
397 REQ_F_SKIP_LINK_CQES_BIT,
398 REQ_F_SINGLE_POLL_BIT,
399 REQ_F_DOUBLE_POLL_BIT,
400 REQ_F_PARTIAL_IO_BIT,
401 REQ_F_CQE32_INIT_BIT,
402 REQ_F_APOLL_MULTISHOT_BIT,
403 REQ_F_CLEAR_POLLIN_BIT,
9ca9fb24 404 REQ_F_HASH_LOCKED_BIT,
e27f928e
JA
405 /* keep async read/write and isreg together and in order */
406 REQ_F_SUPPORT_NOWAIT_BIT,
407 REQ_F_ISREG_BIT,
408
409 /* not a real bit, just to check we're not overflowing the space */
410 __REQ_F_LAST_BIT,
411};
412
413enum {
414 /* ctx owns file */
415 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
416 /* drain existing IO first */
417 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
418 /* linked sqes */
419 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
420 /* doesn't sever on completion < 0 */
421 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
422 /* IOSQE_ASYNC */
423 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
424 /* IOSQE_BUFFER_SELECT */
425 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
426 /* IOSQE_CQE_SKIP_SUCCESS */
427 REQ_F_CQE_SKIP = BIT(REQ_F_CQE_SKIP_BIT),
428
429 /* fail rest of links */
430 REQ_F_FAIL = BIT(REQ_F_FAIL_BIT),
431 /* on inflight list, should be cancelled and waited on exit reliably */
432 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
433 /* read/write uses file position */
434 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
435 /* must not punt to workers */
436 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
437 /* has or had linked timeout */
438 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
439 /* needs cleanup */
440 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
441 /* already went through poll handler */
442 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
443 /* buffer already selected */
444 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
445 /* buffer selected from ring, needs commit */
446 REQ_F_BUFFER_RING = BIT(REQ_F_BUFFER_RING_BIT),
e27f928e
JA
447 /* caller should reissue async */
448 REQ_F_REISSUE = BIT(REQ_F_REISSUE_BIT),
449 /* supports async reads/writes */
450 REQ_F_SUPPORT_NOWAIT = BIT(REQ_F_SUPPORT_NOWAIT_BIT),
451 /* regular file */
452 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
453 /* has creds assigned */
454 REQ_F_CREDS = BIT(REQ_F_CREDS_BIT),
455 /* skip refcounting if not set */
456 REQ_F_REFCOUNT = BIT(REQ_F_REFCOUNT_BIT),
457 /* there is a linked timeout that has to be armed */
458 REQ_F_ARM_LTIMEOUT = BIT(REQ_F_ARM_LTIMEOUT_BIT),
459 /* ->async_data allocated */
460 REQ_F_ASYNC_DATA = BIT(REQ_F_ASYNC_DATA_BIT),
461 /* don't post CQEs while failing linked requests */
462 REQ_F_SKIP_LINK_CQES = BIT(REQ_F_SKIP_LINK_CQES_BIT),
463 /* single poll may be active */
464 REQ_F_SINGLE_POLL = BIT(REQ_F_SINGLE_POLL_BIT),
465 /* double poll may active */
466 REQ_F_DOUBLE_POLL = BIT(REQ_F_DOUBLE_POLL_BIT),
467 /* request has already done partial IO */
468 REQ_F_PARTIAL_IO = BIT(REQ_F_PARTIAL_IO_BIT),
469 /* fast poll multishot mode */
470 REQ_F_APOLL_MULTISHOT = BIT(REQ_F_APOLL_MULTISHOT_BIT),
471 /* ->extra1 and ->extra2 are initialised */
472 REQ_F_CQE32_INIT = BIT(REQ_F_CQE32_INIT_BIT),
473 /* recvmsg special flag, clear EPOLLIN */
474 REQ_F_CLEAR_POLLIN = BIT(REQ_F_CLEAR_POLLIN_BIT),
9ca9fb24
PB
475 /* hashed into ->cancel_hash_locked, protected by ->uring_lock */
476 REQ_F_HASH_LOCKED = BIT(REQ_F_HASH_LOCKED_BIT),
e27f928e
JA
477};
478
a282967c 479typedef void (*io_req_tw_func_t)(struct io_kiocb *req, struct io_tw_state *ts);
e27f928e
JA
480
481struct io_task_work {
3218e5d3 482 struct llist_node node;
e27f928e
JA
483 io_req_tw_func_t func;
484};
485
486struct io_cqe {
487 __u64 user_data;
488 __s32 res;
489 /* fd initially, then cflags for completion */
490 union {
491 __u32 flags;
492 int fd;
493 };
494};
495
496/*
497 * Each request type overlays its private data structure on top of this one.
498 * They must not exceed this one in size.
499 */
500struct io_cmd_data {
501 struct file *file;
502 /* each command gets 56 bytes of data */
503 __u8 data[56];
504};
505
f2ccb5ae
SM
506static inline void io_kiocb_cmd_sz_check(size_t cmd_sz)
507{
508 BUILD_BUG_ON(cmd_sz > sizeof(struct io_cmd_data));
509}
510#define io_kiocb_to_cmd(req, cmd_type) ( \
511 io_kiocb_cmd_sz_check(sizeof(cmd_type)) , \
512 ((cmd_type *)&(req)->cmd) \
513)
e27f928e
JA
514#define cmd_to_io_kiocb(ptr) ((struct io_kiocb *) ptr)
515
516struct io_kiocb {
517 union {
518 /*
519 * NOTE! Each of the io_kiocb union members has the file pointer
520 * as the first entry in their struct definition. So you can
521 * access the file pointer through any of the sub-structs,
522 * or directly as just 'file' in this struct.
523 */
524 struct file *file;
525 struct io_cmd_data cmd;
526 };
527
528 u8 opcode;
529 /* polled IO has completed */
530 u8 iopoll_completed;
531 /*
532 * Can be either a fixed buffer index, or used with provided buffers.
533 * For the latter, before issue it points to the buffer group ID,
534 * and after selection it points to the buffer ID itself.
535 */
536 u16 buf_index;
537 unsigned int flags;
538
539 struct io_cqe cqe;
540
541 struct io_ring_ctx *ctx;
542 struct task_struct *task;
543
544 struct io_rsrc_node *rsrc_node;
545
546 union {
547 /* store used ubuf, so we can prevent reloading */
548 struct io_mapped_ubuf *imu;
549
550 /* stores selected buf, valid IFF REQ_F_BUFFER_SELECTED is set */
551 struct io_buffer *kbuf;
552
553 /*
554 * stores buffer ID for ring provided buffers, valid IFF
555 * REQ_F_BUFFER_RING is set.
556 */
557 struct io_buffer_list *buf_list;
558 };
559
560 union {
561 /* used by request caches, completion batching and iopoll */
562 struct io_wq_work_node comp_list;
563 /* cache ->apoll->events */
564 __poll_t apoll_events;
565 };
566 atomic_t refs;
567 atomic_t poll_refs;
568 struct io_task_work io_task_work;
8751d154 569 unsigned nr_tw;
e27f928e
JA
570 /* for polled requests, i.e. IORING_OP_POLL_ADD and async armed poll */
571 union {
572 struct hlist_node hash_node;
573 struct {
574 u64 extra1;
575 u64 extra2;
576 };
577 };
578 /* internal polling, see IORING_FEAT_FAST_POLL */
579 struct async_poll *apoll;
580 /* opcode allocated if it needs to store data for async defer */
581 void *async_data;
582 /* linked requests, IFF REQ_F_HARDLINK or REQ_F_LINK are set */
583 struct io_kiocb *link;
584 /* custom credentials, valid IFF REQ_F_CREDS is set */
585 const struct cred *creds;
586 struct io_wq_work work;
587};
588
a4ad4f74
JA
589struct io_overflow_cqe {
590 struct list_head list;
591 struct io_uring_cqe cqe;
592};
593
e27f928e 594#endif