1 // SPDX-License-Identifier: GPL-2.0
3 * io_uring opcode handling table
5 #include <linux/kernel.h>
6 #include <linux/errno.h>
8 #include <linux/file.h>
9 #include <linux/io_uring.h>
10 #include <linux/io_uring/cmd.h>
27 #include "openclose.h"
28 #include "uring_cmd.h"
41 static int io_no_issue(struct io_kiocb *req, unsigned int issue_flags)
47 static __maybe_unused int io_eopnotsupp_prep(struct io_kiocb *kiocb,
48 const struct io_uring_sqe *sqe)
53 const struct io_issue_def io_issue_defs[] = {
62 .unbound_nonreg_file = 1,
71 .async_size = sizeof(struct io_async_rw),
72 .prep = io_prep_readv,
75 [IORING_OP_WRITEV] = {
78 .unbound_nonreg_file = 1,
86 .async_size = sizeof(struct io_async_rw),
87 .prep = io_prep_writev,
93 .prep = io_fsync_prep,
96 [IORING_OP_READ_FIXED] = {
98 .unbound_nonreg_file = 1,
105 .async_size = sizeof(struct io_async_rw),
106 .prep = io_prep_read_fixed,
109 [IORING_OP_WRITE_FIXED] = {
112 .unbound_nonreg_file = 1,
119 .async_size = sizeof(struct io_async_rw),
120 .prep = io_prep_write_fixed,
123 [IORING_OP_POLL_ADD] = {
125 .unbound_nonreg_file = 1,
127 .prep = io_poll_add_prep,
128 .issue = io_poll_add,
130 [IORING_OP_POLL_REMOVE] = {
132 .prep = io_poll_remove_prep,
133 .issue = io_poll_remove,
135 [IORING_OP_SYNC_FILE_RANGE] = {
139 .issue = io_sync_file_range,
141 [IORING_OP_SENDMSG] = {
143 .unbound_nonreg_file = 1,
146 #if defined(CONFIG_NET)
147 .async_size = sizeof(struct io_async_msghdr),
148 .prep = io_sendmsg_prep,
151 .prep = io_eopnotsupp_prep,
154 [IORING_OP_RECVMSG] = {
156 .unbound_nonreg_file = 1,
160 #if defined(CONFIG_NET)
161 .async_size = sizeof(struct io_async_msghdr),
162 .prep = io_recvmsg_prep,
165 .prep = io_eopnotsupp_prep,
168 [IORING_OP_TIMEOUT] = {
170 .async_size = sizeof(struct io_timeout_data),
171 .prep = io_timeout_prep,
174 [IORING_OP_TIMEOUT_REMOVE] = {
175 /* used by timeout updates' prep() */
177 .prep = io_timeout_remove_prep,
178 .issue = io_timeout_remove,
180 [IORING_OP_ACCEPT] = {
182 .unbound_nonreg_file = 1,
185 .ioprio = 1, /* used for flags */
186 #if defined(CONFIG_NET)
187 .prep = io_accept_prep,
190 .prep = io_eopnotsupp_prep,
193 [IORING_OP_ASYNC_CANCEL] = {
195 .prep = io_async_cancel_prep,
196 .issue = io_async_cancel,
198 [IORING_OP_LINK_TIMEOUT] = {
200 .async_size = sizeof(struct io_timeout_data),
201 .prep = io_link_timeout_prep,
202 .issue = io_no_issue,
204 [IORING_OP_CONNECT] = {
206 .unbound_nonreg_file = 1,
208 #if defined(CONFIG_NET)
209 .async_size = sizeof(struct io_async_msghdr),
210 .prep = io_connect_prep,
213 .prep = io_eopnotsupp_prep,
216 [IORING_OP_FALLOCATE] = {
218 .prep = io_fallocate_prep,
219 .issue = io_fallocate,
221 [IORING_OP_OPENAT] = {
222 .prep = io_openat_prep,
225 [IORING_OP_CLOSE] = {
226 .prep = io_close_prep,
229 [IORING_OP_FILES_UPDATE] = {
232 .prep = io_files_update_prep,
233 .issue = io_files_update,
235 [IORING_OP_STATX] = {
237 .prep = io_statx_prep,
242 .unbound_nonreg_file = 1,
250 .async_size = sizeof(struct io_async_rw),
251 .prep = io_prep_read,
254 [IORING_OP_WRITE] = {
257 .unbound_nonreg_file = 1,
264 .async_size = sizeof(struct io_async_rw),
265 .prep = io_prep_write,
268 [IORING_OP_FADVISE] = {
271 .prep = io_fadvise_prep,
274 [IORING_OP_MADVISE] = {
276 .prep = io_madvise_prep,
281 .unbound_nonreg_file = 1,
286 #if defined(CONFIG_NET)
287 .async_size = sizeof(struct io_async_msghdr),
288 .prep = io_sendmsg_prep,
291 .prep = io_eopnotsupp_prep,
296 .unbound_nonreg_file = 1,
301 #if defined(CONFIG_NET)
302 .async_size = sizeof(struct io_async_msghdr),
303 .prep = io_recvmsg_prep,
306 .prep = io_eopnotsupp_prep,
309 [IORING_OP_OPENAT2] = {
310 .prep = io_openat2_prep,
313 [IORING_OP_EPOLL_CTL] = {
314 .unbound_nonreg_file = 1,
316 #if defined(CONFIG_EPOLL)
317 .prep = io_epoll_ctl_prep,
318 .issue = io_epoll_ctl,
320 .prep = io_eopnotsupp_prep,
323 [IORING_OP_SPLICE] = {
326 .unbound_nonreg_file = 1,
328 .prep = io_splice_prep,
331 [IORING_OP_PROVIDE_BUFFERS] = {
334 .prep = io_provide_buffers_prep,
335 .issue = io_provide_buffers,
337 [IORING_OP_REMOVE_BUFFERS] = {
340 .prep = io_remove_buffers_prep,
341 .issue = io_remove_buffers,
346 .unbound_nonreg_file = 1,
351 [IORING_OP_SHUTDOWN] = {
353 #if defined(CONFIG_NET)
354 .prep = io_shutdown_prep,
355 .issue = io_shutdown,
357 .prep = io_eopnotsupp_prep,
360 [IORING_OP_RENAMEAT] = {
361 .prep = io_renameat_prep,
362 .issue = io_renameat,
364 [IORING_OP_UNLINKAT] = {
365 .prep = io_unlinkat_prep,
366 .issue = io_unlinkat,
368 [IORING_OP_MKDIRAT] = {
369 .prep = io_mkdirat_prep,
372 [IORING_OP_SYMLINKAT] = {
373 .prep = io_symlinkat_prep,
374 .issue = io_symlinkat,
376 [IORING_OP_LINKAT] = {
377 .prep = io_linkat_prep,
380 [IORING_OP_MSG_RING] = {
383 .prep = io_msg_ring_prep,
384 .issue = io_msg_ring,
386 [IORING_OP_FSETXATTR] = {
388 .prep = io_fsetxattr_prep,
389 .issue = io_fsetxattr,
391 [IORING_OP_SETXATTR] = {
392 .prep = io_setxattr_prep,
393 .issue = io_setxattr,
395 [IORING_OP_FGETXATTR] = {
397 .prep = io_fgetxattr_prep,
398 .issue = io_fgetxattr,
400 [IORING_OP_GETXATTR] = {
401 .prep = io_getxattr_prep,
402 .issue = io_getxattr,
404 [IORING_OP_SOCKET] = {
406 #if defined(CONFIG_NET)
407 .prep = io_socket_prep,
410 .prep = io_eopnotsupp_prep,
413 [IORING_OP_URING_CMD] = {
418 .async_size = sizeof(struct io_uring_cmd_data),
419 .prep = io_uring_cmd_prep,
420 .issue = io_uring_cmd,
422 [IORING_OP_SEND_ZC] = {
424 .unbound_nonreg_file = 1,
428 #if defined(CONFIG_NET)
429 .async_size = sizeof(struct io_async_msghdr),
430 .prep = io_send_zc_prep,
433 .prep = io_eopnotsupp_prep,
436 [IORING_OP_SENDMSG_ZC] = {
438 .unbound_nonreg_file = 1,
441 #if defined(CONFIG_NET)
442 .async_size = sizeof(struct io_async_msghdr),
443 .prep = io_send_zc_prep,
444 .issue = io_sendmsg_zc,
446 .prep = io_eopnotsupp_prep,
449 [IORING_OP_READ_MULTISHOT] = {
451 .unbound_nonreg_file = 1,
455 .async_size = sizeof(struct io_async_rw),
456 .prep = io_read_mshot_prep,
457 .issue = io_read_mshot,
459 [IORING_OP_WAITID] = {
460 .async_size = sizeof(struct io_waitid_async),
461 .prep = io_waitid_prep,
464 [IORING_OP_FUTEX_WAIT] = {
465 #if defined(CONFIG_FUTEX)
466 .prep = io_futex_prep,
467 .issue = io_futex_wait,
469 .prep = io_eopnotsupp_prep,
472 [IORING_OP_FUTEX_WAKE] = {
473 #if defined(CONFIG_FUTEX)
474 .prep = io_futex_prep,
475 .issue = io_futex_wake,
477 .prep = io_eopnotsupp_prep,
480 [IORING_OP_FUTEX_WAITV] = {
481 #if defined(CONFIG_FUTEX)
482 .prep = io_futexv_prep,
483 .issue = io_futexv_wait,
485 .prep = io_eopnotsupp_prep,
488 [IORING_OP_FIXED_FD_INSTALL] = {
490 .prep = io_install_fixed_fd_prep,
491 .issue = io_install_fixed_fd,
493 [IORING_OP_FTRUNCATE] = {
496 .prep = io_ftruncate_prep,
497 .issue = io_ftruncate,
500 #if defined(CONFIG_NET)
502 .prep = io_bind_prep,
504 .async_size = sizeof(struct io_async_msghdr),
506 .prep = io_eopnotsupp_prep,
509 [IORING_OP_LISTEN] = {
510 #if defined(CONFIG_NET)
512 .prep = io_listen_prep,
514 .async_size = sizeof(struct io_async_msghdr),
516 .prep = io_eopnotsupp_prep,
521 const struct io_cold_def io_cold_defs[] = {
525 [IORING_OP_READV] = {
527 .cleanup = io_readv_writev_cleanup,
530 [IORING_OP_WRITEV] = {
532 .cleanup = io_readv_writev_cleanup,
535 [IORING_OP_FSYNC] = {
538 [IORING_OP_READ_FIXED] = {
539 .name = "READ_FIXED",
540 .cleanup = io_readv_writev_cleanup,
543 [IORING_OP_WRITE_FIXED] = {
544 .name = "WRITE_FIXED",
545 .cleanup = io_readv_writev_cleanup,
548 [IORING_OP_POLL_ADD] = {
551 [IORING_OP_POLL_REMOVE] = {
552 .name = "POLL_REMOVE",
554 [IORING_OP_SYNC_FILE_RANGE] = {
555 .name = "SYNC_FILE_RANGE",
557 [IORING_OP_SENDMSG] = {
559 #if defined(CONFIG_NET)
560 .cleanup = io_sendmsg_recvmsg_cleanup,
561 .fail = io_sendrecv_fail,
564 [IORING_OP_RECVMSG] = {
566 #if defined(CONFIG_NET)
567 .cleanup = io_sendmsg_recvmsg_cleanup,
568 .fail = io_sendrecv_fail,
571 [IORING_OP_TIMEOUT] = {
574 [IORING_OP_TIMEOUT_REMOVE] = {
575 .name = "TIMEOUT_REMOVE",
577 [IORING_OP_ACCEPT] = {
580 [IORING_OP_ASYNC_CANCEL] = {
581 .name = "ASYNC_CANCEL",
583 [IORING_OP_LINK_TIMEOUT] = {
584 .name = "LINK_TIMEOUT",
586 [IORING_OP_CONNECT] = {
589 [IORING_OP_FALLOCATE] = {
592 [IORING_OP_OPENAT] = {
594 .cleanup = io_open_cleanup,
596 [IORING_OP_CLOSE] = {
599 [IORING_OP_FILES_UPDATE] = {
600 .name = "FILES_UPDATE",
602 [IORING_OP_STATX] = {
604 .cleanup = io_statx_cleanup,
608 .cleanup = io_readv_writev_cleanup,
611 [IORING_OP_WRITE] = {
613 .cleanup = io_readv_writev_cleanup,
616 [IORING_OP_FADVISE] = {
619 [IORING_OP_MADVISE] = {
624 #if defined(CONFIG_NET)
625 .cleanup = io_sendmsg_recvmsg_cleanup,
626 .fail = io_sendrecv_fail,
631 #if defined(CONFIG_NET)
632 .cleanup = io_sendmsg_recvmsg_cleanup,
633 .fail = io_sendrecv_fail,
636 [IORING_OP_OPENAT2] = {
638 .cleanup = io_open_cleanup,
640 [IORING_OP_EPOLL_CTL] = {
643 [IORING_OP_SPLICE] = {
645 .cleanup = io_splice_cleanup,
647 [IORING_OP_PROVIDE_BUFFERS] = {
648 .name = "PROVIDE_BUFFERS",
650 [IORING_OP_REMOVE_BUFFERS] = {
651 .name = "REMOVE_BUFFERS",
655 .cleanup = io_splice_cleanup,
657 [IORING_OP_SHUTDOWN] = {
660 [IORING_OP_RENAMEAT] = {
662 .cleanup = io_renameat_cleanup,
664 [IORING_OP_UNLINKAT] = {
666 .cleanup = io_unlinkat_cleanup,
668 [IORING_OP_MKDIRAT] = {
670 .cleanup = io_mkdirat_cleanup,
672 [IORING_OP_SYMLINKAT] = {
674 .cleanup = io_link_cleanup,
676 [IORING_OP_LINKAT] = {
678 .cleanup = io_link_cleanup,
680 [IORING_OP_MSG_RING] = {
682 .cleanup = io_msg_ring_cleanup,
684 [IORING_OP_FSETXATTR] = {
686 .cleanup = io_xattr_cleanup,
688 [IORING_OP_SETXATTR] = {
690 .cleanup = io_xattr_cleanup,
692 [IORING_OP_FGETXATTR] = {
694 .cleanup = io_xattr_cleanup,
696 [IORING_OP_GETXATTR] = {
698 .cleanup = io_xattr_cleanup,
700 [IORING_OP_SOCKET] = {
703 [IORING_OP_URING_CMD] = {
706 [IORING_OP_SEND_ZC] = {
708 #if defined(CONFIG_NET)
709 .cleanup = io_send_zc_cleanup,
710 .fail = io_sendrecv_fail,
713 [IORING_OP_SENDMSG_ZC] = {
714 .name = "SENDMSG_ZC",
715 #if defined(CONFIG_NET)
716 .cleanup = io_send_zc_cleanup,
717 .fail = io_sendrecv_fail,
720 [IORING_OP_READ_MULTISHOT] = {
721 .name = "READ_MULTISHOT",
722 .cleanup = io_readv_writev_cleanup,
724 [IORING_OP_WAITID] = {
727 [IORING_OP_FUTEX_WAIT] = {
728 .name = "FUTEX_WAIT",
730 [IORING_OP_FUTEX_WAKE] = {
731 .name = "FUTEX_WAKE",
733 [IORING_OP_FUTEX_WAITV] = {
734 .name = "FUTEX_WAITV",
736 [IORING_OP_FIXED_FD_INSTALL] = {
737 .name = "FIXED_FD_INSTALL",
739 [IORING_OP_FTRUNCATE] = {
745 [IORING_OP_LISTEN] = {
750 const char *io_uring_get_opcode(u8 opcode)
752 if (opcode < IORING_OP_LAST)
753 return io_cold_defs[opcode].name;
757 bool io_uring_op_supported(u8 opcode)
759 if (opcode < IORING_OP_LAST &&
760 io_issue_defs[opcode].prep != io_eopnotsupp_prep)
765 void __init io_uring_optable_init(void)
769 BUILD_BUG_ON(ARRAY_SIZE(io_cold_defs) != IORING_OP_LAST);
770 BUILD_BUG_ON(ARRAY_SIZE(io_issue_defs) != IORING_OP_LAST);
772 for (i = 0; i < ARRAY_SIZE(io_issue_defs); i++) {
773 BUG_ON(!io_issue_defs[i].prep);
774 if (io_issue_defs[i].prep != io_eopnotsupp_prep)
775 BUG_ON(!io_issue_defs[i].issue);
776 WARN_ON_ONCE(!io_cold_defs[i].name);