io_uring: add IORING_SETUP_SINGLE_ISSUER
[linux-2.6-microblaze.git] / include / uapi / linux / io_uring.h
1 /* SPDX-License-Identifier: (GPL-2.0 WITH Linux-syscall-note) OR MIT */
2 /*
3  * Header file for the io_uring interface.
4  *
5  * Copyright (C) 2019 Jens Axboe
6  * Copyright (C) 2019 Christoph Hellwig
7  */
8 #ifndef LINUX_IO_URING_H
9 #define LINUX_IO_URING_H
10
11 #include <linux/fs.h>
12 #include <linux/types.h>
13
14 /*
15  * IO submission data structure (Submission Queue Entry)
16  */
17 struct io_uring_sqe {
18         __u8    opcode;         /* type of operation for this sqe */
19         __u8    flags;          /* IOSQE_ flags */
20         __u16   ioprio;         /* ioprio for the request */
21         __s32   fd;             /* file descriptor to do IO on */
22         union {
23                 __u64   off;    /* offset into file */
24                 __u64   addr2;
25                 struct {
26                         __u32   cmd_op;
27                         __u32   __pad1;
28                 };
29         };
30         union {
31                 __u64   addr;   /* pointer to buffer or iovecs */
32                 __u64   splice_off_in;
33         };
34         __u32   len;            /* buffer size or number of iovecs */
35         union {
36                 __kernel_rwf_t  rw_flags;
37                 __u32           fsync_flags;
38                 __u16           poll_events;    /* compatibility */
39                 __u32           poll32_events;  /* word-reversed for BE */
40                 __u32           sync_range_flags;
41                 __u32           msg_flags;
42                 __u32           timeout_flags;
43                 __u32           accept_flags;
44                 __u32           cancel_flags;
45                 __u32           open_flags;
46                 __u32           statx_flags;
47                 __u32           fadvise_advice;
48                 __u32           splice_flags;
49                 __u32           rename_flags;
50                 __u32           unlink_flags;
51                 __u32           hardlink_flags;
52                 __u32           xattr_flags;
53         };
54         __u64   user_data;      /* data to be passed back at completion time */
55         /* pack this to avoid bogus arm OABI complaints */
56         union {
57                 /* index into fixed buffers, if used */
58                 __u16   buf_index;
59                 /* for grouped buffer selection */
60                 __u16   buf_group;
61         } __attribute__((packed));
62         /* personality to use, if used */
63         __u16   personality;
64         union {
65                 __s32   splice_fd_in;
66                 __u32   file_index;
67         };
68         union {
69                 struct {
70                         __u64   addr3;
71                         __u64   __pad2[1];
72                 };
73                 /*
74                  * If the ring is initialized with IORING_SETUP_SQE128, then
75                  * this field is used for 80 bytes of arbitrary command data
76                  */
77                 __u8    cmd[0];
78         };
79 };
80
81 /*
82  * If sqe->file_index is set to this for opcodes that instantiate a new
83  * direct descriptor (like openat/openat2/accept), then io_uring will allocate
84  * an available direct descriptor instead of having the application pass one
85  * in. The picked direct descriptor will be returned in cqe->res, or -ENFILE
86  * if the space is full.
87  */
88 #define IORING_FILE_INDEX_ALLOC         (~0U)
89
90 enum {
91         IOSQE_FIXED_FILE_BIT,
92         IOSQE_IO_DRAIN_BIT,
93         IOSQE_IO_LINK_BIT,
94         IOSQE_IO_HARDLINK_BIT,
95         IOSQE_ASYNC_BIT,
96         IOSQE_BUFFER_SELECT_BIT,
97         IOSQE_CQE_SKIP_SUCCESS_BIT,
98 };
99
100 /*
101  * sqe->flags
102  */
103 /* use fixed fileset */
104 #define IOSQE_FIXED_FILE        (1U << IOSQE_FIXED_FILE_BIT)
105 /* issue after inflight IO */
106 #define IOSQE_IO_DRAIN          (1U << IOSQE_IO_DRAIN_BIT)
107 /* links next sqe */
108 #define IOSQE_IO_LINK           (1U << IOSQE_IO_LINK_BIT)
109 /* like LINK, but stronger */
110 #define IOSQE_IO_HARDLINK       (1U << IOSQE_IO_HARDLINK_BIT)
111 /* always go async */
112 #define IOSQE_ASYNC             (1U << IOSQE_ASYNC_BIT)
113 /* select buffer from sqe->buf_group */
114 #define IOSQE_BUFFER_SELECT     (1U << IOSQE_BUFFER_SELECT_BIT)
115 /* don't post CQE if request succeeded */
116 #define IOSQE_CQE_SKIP_SUCCESS  (1U << IOSQE_CQE_SKIP_SUCCESS_BIT)
117
118 /*
119  * io_uring_setup() flags
120  */
121 #define IORING_SETUP_IOPOLL     (1U << 0)       /* io_context is polled */
122 #define IORING_SETUP_SQPOLL     (1U << 1)       /* SQ poll thread */
123 #define IORING_SETUP_SQ_AFF     (1U << 2)       /* sq_thread_cpu is valid */
124 #define IORING_SETUP_CQSIZE     (1U << 3)       /* app defines CQ size */
125 #define IORING_SETUP_CLAMP      (1U << 4)       /* clamp SQ/CQ ring sizes */
126 #define IORING_SETUP_ATTACH_WQ  (1U << 5)       /* attach to existing wq */
127 #define IORING_SETUP_R_DISABLED (1U << 6)       /* start with ring disabled */
128 #define IORING_SETUP_SUBMIT_ALL (1U << 7)       /* continue submit on error */
129 /*
130  * Cooperative task running. When requests complete, they often require
131  * forcing the submitter to transition to the kernel to complete. If this
132  * flag is set, work will be done when the task transitions anyway, rather
133  * than force an inter-processor interrupt reschedule. This avoids interrupting
134  * a task running in userspace, and saves an IPI.
135  */
136 #define IORING_SETUP_COOP_TASKRUN       (1U << 8)
137 /*
138  * If COOP_TASKRUN is set, get notified if task work is available for
139  * running and a kernel transition would be needed to run it. This sets
140  * IORING_SQ_TASKRUN in the sq ring flags. Not valid with COOP_TASKRUN.
141  */
142 #define IORING_SETUP_TASKRUN_FLAG       (1U << 9)
143 #define IORING_SETUP_SQE128             (1U << 10) /* SQEs are 128 byte */
144 #define IORING_SETUP_CQE32              (1U << 11) /* CQEs are 32 byte */
145 /*
146  * Only one task is allowed to submit requests
147  */
148 #define IORING_SETUP_SINGLE_ISSUER      (1U << 12)
149
150 enum io_uring_op {
151         IORING_OP_NOP,
152         IORING_OP_READV,
153         IORING_OP_WRITEV,
154         IORING_OP_FSYNC,
155         IORING_OP_READ_FIXED,
156         IORING_OP_WRITE_FIXED,
157         IORING_OP_POLL_ADD,
158         IORING_OP_POLL_REMOVE,
159         IORING_OP_SYNC_FILE_RANGE,
160         IORING_OP_SENDMSG,
161         IORING_OP_RECVMSG,
162         IORING_OP_TIMEOUT,
163         IORING_OP_TIMEOUT_REMOVE,
164         IORING_OP_ACCEPT,
165         IORING_OP_ASYNC_CANCEL,
166         IORING_OP_LINK_TIMEOUT,
167         IORING_OP_CONNECT,
168         IORING_OP_FALLOCATE,
169         IORING_OP_OPENAT,
170         IORING_OP_CLOSE,
171         IORING_OP_FILES_UPDATE,
172         IORING_OP_STATX,
173         IORING_OP_READ,
174         IORING_OP_WRITE,
175         IORING_OP_FADVISE,
176         IORING_OP_MADVISE,
177         IORING_OP_SEND,
178         IORING_OP_RECV,
179         IORING_OP_OPENAT2,
180         IORING_OP_EPOLL_CTL,
181         IORING_OP_SPLICE,
182         IORING_OP_PROVIDE_BUFFERS,
183         IORING_OP_REMOVE_BUFFERS,
184         IORING_OP_TEE,
185         IORING_OP_SHUTDOWN,
186         IORING_OP_RENAMEAT,
187         IORING_OP_UNLINKAT,
188         IORING_OP_MKDIRAT,
189         IORING_OP_SYMLINKAT,
190         IORING_OP_LINKAT,
191         IORING_OP_MSG_RING,
192         IORING_OP_FSETXATTR,
193         IORING_OP_SETXATTR,
194         IORING_OP_FGETXATTR,
195         IORING_OP_GETXATTR,
196         IORING_OP_SOCKET,
197         IORING_OP_URING_CMD,
198
199         /* this goes last, obviously */
200         IORING_OP_LAST,
201 };
202
203 /*
204  * sqe->fsync_flags
205  */
206 #define IORING_FSYNC_DATASYNC   (1U << 0)
207
208 /*
209  * sqe->timeout_flags
210  */
211 #define IORING_TIMEOUT_ABS              (1U << 0)
212 #define IORING_TIMEOUT_UPDATE           (1U << 1)
213 #define IORING_TIMEOUT_BOOTTIME         (1U << 2)
214 #define IORING_TIMEOUT_REALTIME         (1U << 3)
215 #define IORING_LINK_TIMEOUT_UPDATE      (1U << 4)
216 #define IORING_TIMEOUT_ETIME_SUCCESS    (1U << 5)
217 #define IORING_TIMEOUT_CLOCK_MASK       (IORING_TIMEOUT_BOOTTIME | IORING_TIMEOUT_REALTIME)
218 #define IORING_TIMEOUT_UPDATE_MASK      (IORING_TIMEOUT_UPDATE | IORING_LINK_TIMEOUT_UPDATE)
219 /*
220  * sqe->splice_flags
221  * extends splice(2) flags
222  */
223 #define SPLICE_F_FD_IN_FIXED    (1U << 31) /* the last bit of __u32 */
224
225 /*
226  * POLL_ADD flags. Note that since sqe->poll_events is the flag space, the
227  * command flags for POLL_ADD are stored in sqe->len.
228  *
229  * IORING_POLL_ADD_MULTI        Multishot poll. Sets IORING_CQE_F_MORE if
230  *                              the poll handler will continue to report
231  *                              CQEs on behalf of the same SQE.
232  *
233  * IORING_POLL_UPDATE           Update existing poll request, matching
234  *                              sqe->addr as the old user_data field.
235  *
236  * IORING_POLL_LEVEL            Level triggered poll.
237  */
238 #define IORING_POLL_ADD_MULTI   (1U << 0)
239 #define IORING_POLL_UPDATE_EVENTS       (1U << 1)
240 #define IORING_POLL_UPDATE_USER_DATA    (1U << 2)
241 #define IORING_POLL_ADD_LEVEL           (1U << 3)
242
243 /*
244  * ASYNC_CANCEL flags.
245  *
246  * IORING_ASYNC_CANCEL_ALL      Cancel all requests that match the given key
247  * IORING_ASYNC_CANCEL_FD       Key off 'fd' for cancelation rather than the
248  *                              request 'user_data'
249  * IORING_ASYNC_CANCEL_ANY      Match any request
250  */
251 #define IORING_ASYNC_CANCEL_ALL (1U << 0)
252 #define IORING_ASYNC_CANCEL_FD  (1U << 1)
253 #define IORING_ASYNC_CANCEL_ANY (1U << 2)
254
255 /*
256  * send/sendmsg and recv/recvmsg flags (sqe->ioprio)
257  *
258  * IORING_RECVSEND_POLL_FIRST   If set, instead of first attempting to send
259  *                              or receive and arm poll if that yields an
260  *                              -EAGAIN result, arm poll upfront and skip
261  *                              the initial transfer attempt.
262  */
263 #define IORING_RECVSEND_POLL_FIRST      (1U << 0)
264
265 /*
266  * accept flags stored in sqe->ioprio
267  */
268 #define IORING_ACCEPT_MULTISHOT (1U << 0)
269
270 /*
271  * IO completion data structure (Completion Queue Entry)
272  */
273 struct io_uring_cqe {
274         __u64   user_data;      /* sqe->data submission passed back */
275         __s32   res;            /* result code for this event */
276         __u32   flags;
277
278         /*
279          * If the ring is initialized with IORING_SETUP_CQE32, then this field
280          * contains 16-bytes of padding, doubling the size of the CQE.
281          */
282         __u64 big_cqe[];
283 };
284
285 /*
286  * cqe->flags
287  *
288  * IORING_CQE_F_BUFFER  If set, the upper 16 bits are the buffer ID
289  * IORING_CQE_F_MORE    If set, parent SQE will generate more CQE entries
290  * IORING_CQE_F_SOCK_NONEMPTY   If set, more data to read after socket recv
291  */
292 #define IORING_CQE_F_BUFFER             (1U << 0)
293 #define IORING_CQE_F_MORE               (1U << 1)
294 #define IORING_CQE_F_SOCK_NONEMPTY      (1U << 2)
295
296 enum {
297         IORING_CQE_BUFFER_SHIFT         = 16,
298 };
299
300 /*
301  * Magic offsets for the application to mmap the data it needs
302  */
303 #define IORING_OFF_SQ_RING              0ULL
304 #define IORING_OFF_CQ_RING              0x8000000ULL
305 #define IORING_OFF_SQES                 0x10000000ULL
306
307 /*
308  * Filled with the offset for mmap(2)
309  */
310 struct io_sqring_offsets {
311         __u32 head;
312         __u32 tail;
313         __u32 ring_mask;
314         __u32 ring_entries;
315         __u32 flags;
316         __u32 dropped;
317         __u32 array;
318         __u32 resv1;
319         __u64 resv2;
320 };
321
322 /*
323  * sq_ring->flags
324  */
325 #define IORING_SQ_NEED_WAKEUP   (1U << 0) /* needs io_uring_enter wakeup */
326 #define IORING_SQ_CQ_OVERFLOW   (1U << 1) /* CQ ring is overflown */
327 #define IORING_SQ_TASKRUN       (1U << 2) /* task should enter the kernel */
328
329 struct io_cqring_offsets {
330         __u32 head;
331         __u32 tail;
332         __u32 ring_mask;
333         __u32 ring_entries;
334         __u32 overflow;
335         __u32 cqes;
336         __u32 flags;
337         __u32 resv1;
338         __u64 resv2;
339 };
340
341 /*
342  * cq_ring->flags
343  */
344
345 /* disable eventfd notifications */
346 #define IORING_CQ_EVENTFD_DISABLED      (1U << 0)
347
348 /*
349  * io_uring_enter(2) flags
350  */
351 #define IORING_ENTER_GETEVENTS          (1U << 0)
352 #define IORING_ENTER_SQ_WAKEUP          (1U << 1)
353 #define IORING_ENTER_SQ_WAIT            (1U << 2)
354 #define IORING_ENTER_EXT_ARG            (1U << 3)
355 #define IORING_ENTER_REGISTERED_RING    (1U << 4)
356
357 /*
358  * Passed in for io_uring_setup(2). Copied back with updated info on success
359  */
360 struct io_uring_params {
361         __u32 sq_entries;
362         __u32 cq_entries;
363         __u32 flags;
364         __u32 sq_thread_cpu;
365         __u32 sq_thread_idle;
366         __u32 features;
367         __u32 wq_fd;
368         __u32 resv[3];
369         struct io_sqring_offsets sq_off;
370         struct io_cqring_offsets cq_off;
371 };
372
373 /*
374  * io_uring_params->features flags
375  */
376 #define IORING_FEAT_SINGLE_MMAP         (1U << 0)
377 #define IORING_FEAT_NODROP              (1U << 1)
378 #define IORING_FEAT_SUBMIT_STABLE       (1U << 2)
379 #define IORING_FEAT_RW_CUR_POS          (1U << 3)
380 #define IORING_FEAT_CUR_PERSONALITY     (1U << 4)
381 #define IORING_FEAT_FAST_POLL           (1U << 5)
382 #define IORING_FEAT_POLL_32BITS         (1U << 6)
383 #define IORING_FEAT_SQPOLL_NONFIXED     (1U << 7)
384 #define IORING_FEAT_EXT_ARG             (1U << 8)
385 #define IORING_FEAT_NATIVE_WORKERS      (1U << 9)
386 #define IORING_FEAT_RSRC_TAGS           (1U << 10)
387 #define IORING_FEAT_CQE_SKIP            (1U << 11)
388 #define IORING_FEAT_LINKED_FILE         (1U << 12)
389
390 /*
391  * io_uring_register(2) opcodes and arguments
392  */
393 enum {
394         IORING_REGISTER_BUFFERS                 = 0,
395         IORING_UNREGISTER_BUFFERS               = 1,
396         IORING_REGISTER_FILES                   = 2,
397         IORING_UNREGISTER_FILES                 = 3,
398         IORING_REGISTER_EVENTFD                 = 4,
399         IORING_UNREGISTER_EVENTFD               = 5,
400         IORING_REGISTER_FILES_UPDATE            = 6,
401         IORING_REGISTER_EVENTFD_ASYNC           = 7,
402         IORING_REGISTER_PROBE                   = 8,
403         IORING_REGISTER_PERSONALITY             = 9,
404         IORING_UNREGISTER_PERSONALITY           = 10,
405         IORING_REGISTER_RESTRICTIONS            = 11,
406         IORING_REGISTER_ENABLE_RINGS            = 12,
407
408         /* extended with tagging */
409         IORING_REGISTER_FILES2                  = 13,
410         IORING_REGISTER_FILES_UPDATE2           = 14,
411         IORING_REGISTER_BUFFERS2                = 15,
412         IORING_REGISTER_BUFFERS_UPDATE          = 16,
413
414         /* set/clear io-wq thread affinities */
415         IORING_REGISTER_IOWQ_AFF                = 17,
416         IORING_UNREGISTER_IOWQ_AFF              = 18,
417
418         /* set/get max number of io-wq workers */
419         IORING_REGISTER_IOWQ_MAX_WORKERS        = 19,
420
421         /* register/unregister io_uring fd with the ring */
422         IORING_REGISTER_RING_FDS                = 20,
423         IORING_UNREGISTER_RING_FDS              = 21,
424
425         /* register ring based provide buffer group */
426         IORING_REGISTER_PBUF_RING               = 22,
427         IORING_UNREGISTER_PBUF_RING             = 23,
428
429         /* this goes last */
430         IORING_REGISTER_LAST
431 };
432
433 /* io-wq worker categories */
434 enum {
435         IO_WQ_BOUND,
436         IO_WQ_UNBOUND,
437 };
438
439 /* deprecated, see struct io_uring_rsrc_update */
440 struct io_uring_files_update {
441         __u32 offset;
442         __u32 resv;
443         __aligned_u64 /* __s32 * */ fds;
444 };
445
446 /*
447  * Register a fully sparse file space, rather than pass in an array of all
448  * -1 file descriptors.
449  */
450 #define IORING_RSRC_REGISTER_SPARSE     (1U << 0)
451
452 struct io_uring_rsrc_register {
453         __u32 nr;
454         __u32 flags;
455         __u64 resv2;
456         __aligned_u64 data;
457         __aligned_u64 tags;
458 };
459
460 struct io_uring_rsrc_update {
461         __u32 offset;
462         __u32 resv;
463         __aligned_u64 data;
464 };
465
466 struct io_uring_rsrc_update2 {
467         __u32 offset;
468         __u32 resv;
469         __aligned_u64 data;
470         __aligned_u64 tags;
471         __u32 nr;
472         __u32 resv2;
473 };
474
475 /* Skip updating fd indexes set to this value in the fd table */
476 #define IORING_REGISTER_FILES_SKIP      (-2)
477
478 #define IO_URING_OP_SUPPORTED   (1U << 0)
479
480 struct io_uring_probe_op {
481         __u8 op;
482         __u8 resv;
483         __u16 flags;    /* IO_URING_OP_* flags */
484         __u32 resv2;
485 };
486
487 struct io_uring_probe {
488         __u8 last_op;   /* last opcode supported */
489         __u8 ops_len;   /* length of ops[] array below */
490         __u16 resv;
491         __u32 resv2[3];
492         struct io_uring_probe_op ops[0];
493 };
494
495 struct io_uring_restriction {
496         __u16 opcode;
497         union {
498                 __u8 register_op; /* IORING_RESTRICTION_REGISTER_OP */
499                 __u8 sqe_op;      /* IORING_RESTRICTION_SQE_OP */
500                 __u8 sqe_flags;   /* IORING_RESTRICTION_SQE_FLAGS_* */
501         };
502         __u8 resv;
503         __u32 resv2[3];
504 };
505
506 struct io_uring_buf {
507         __u64   addr;
508         __u32   len;
509         __u16   bid;
510         __u16   resv;
511 };
512
513 struct io_uring_buf_ring {
514         union {
515                 /*
516                  * To avoid spilling into more pages than we need to, the
517                  * ring tail is overlaid with the io_uring_buf->resv field.
518                  */
519                 struct {
520                         __u64   resv1;
521                         __u32   resv2;
522                         __u16   resv3;
523                         __u16   tail;
524                 };
525                 struct io_uring_buf     bufs[0];
526         };
527 };
528
529 /* argument for IORING_(UN)REGISTER_PBUF_RING */
530 struct io_uring_buf_reg {
531         __u64   ring_addr;
532         __u32   ring_entries;
533         __u16   bgid;
534         __u16   pad;
535         __u64   resv[3];
536 };
537
538 /*
539  * io_uring_restriction->opcode values
540  */
541 enum {
542         /* Allow an io_uring_register(2) opcode */
543         IORING_RESTRICTION_REGISTER_OP          = 0,
544
545         /* Allow an sqe opcode */
546         IORING_RESTRICTION_SQE_OP               = 1,
547
548         /* Allow sqe flags */
549         IORING_RESTRICTION_SQE_FLAGS_ALLOWED    = 2,
550
551         /* Require sqe flags (these flags must be set on each submission) */
552         IORING_RESTRICTION_SQE_FLAGS_REQUIRED   = 3,
553
554         IORING_RESTRICTION_LAST
555 };
556
557 struct io_uring_getevents_arg {
558         __u64   sigmask;
559         __u32   sigmask_sz;
560         __u32   pad;
561         __u64   ts;
562 };
563
564 #endif