Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * io_uring opcode handling table
4 */
5#include <linux/kernel.h>
6#include <linux/errno.h>
7#include <linux/fs.h>
8#include <linux/file.h>
9#include <linux/io_uring.h>
10#include <linux/io_uring/cmd.h>
11
12#include "io_uring.h"
13#include "opdef.h"
14#include "refs.h"
15#include "tctx.h"
16#include "sqpoll.h"
17#include "fdinfo.h"
18#include "kbuf.h"
19#include "rsrc.h"
20
21#include "xattr.h"
22#include "nop.h"
23#include "fs.h"
24#include "splice.h"
25#include "sync.h"
26#include "advise.h"
27#include "openclose.h"
28#include "uring_cmd.h"
29#include "epoll.h"
30#include "statx.h"
31#include "net.h"
32#include "msg_ring.h"
33#include "timeout.h"
34#include "poll.h"
35#include "cancel.h"
36#include "rw.h"
37#include "waitid.h"
38#include "futex.h"
39#include "truncate.h"
40
41static int io_no_issue(struct io_kiocb *req, unsigned int issue_flags)
42{
43 WARN_ON_ONCE(1);
44 return -ECANCELED;
45}
46
47static __maybe_unused int io_eopnotsupp_prep(struct io_kiocb *kiocb,
48 const struct io_uring_sqe *sqe)
49{
50 return -EOPNOTSUPP;
51}
52
53const struct io_issue_def io_issue_defs[] = {
54 [IORING_OP_NOP] = {
55 .audit_skip = 1,
56 .iopoll = 1,
57 .prep = io_nop_prep,
58 .issue = io_nop,
59 },
60 [IORING_OP_READV] = {
61 .needs_file = 1,
62 .unbound_nonreg_file = 1,
63 .pollin = 1,
64 .buffer_select = 1,
65 .plug = 1,
66 .audit_skip = 1,
67 .ioprio = 1,
68 .iopoll = 1,
69 .iopoll_queue = 1,
70 .vectored = 1,
71 .async_size = sizeof(struct io_async_rw),
72 .prep = io_prep_readv,
73 .issue = io_read,
74 },
75 [IORING_OP_WRITEV] = {
76 .needs_file = 1,
77 .hash_reg_file = 1,
78 .unbound_nonreg_file = 1,
79 .pollout = 1,
80 .plug = 1,
81 .audit_skip = 1,
82 .ioprio = 1,
83 .iopoll = 1,
84 .iopoll_queue = 1,
85 .vectored = 1,
86 .async_size = sizeof(struct io_async_rw),
87 .prep = io_prep_writev,
88 .issue = io_write,
89 },
90 [IORING_OP_FSYNC] = {
91 .needs_file = 1,
92 .audit_skip = 1,
93 .prep = io_fsync_prep,
94 .issue = io_fsync,
95 },
96 [IORING_OP_READ_FIXED] = {
97 .needs_file = 1,
98 .unbound_nonreg_file = 1,
99 .pollin = 1,
100 .plug = 1,
101 .audit_skip = 1,
102 .ioprio = 1,
103 .iopoll = 1,
104 .iopoll_queue = 1,
105 .async_size = sizeof(struct io_async_rw),
106 .prep = io_prep_read_fixed,
107 .issue = io_read,
108 },
109 [IORING_OP_WRITE_FIXED] = {
110 .needs_file = 1,
111 .hash_reg_file = 1,
112 .unbound_nonreg_file = 1,
113 .pollout = 1,
114 .plug = 1,
115 .audit_skip = 1,
116 .ioprio = 1,
117 .iopoll = 1,
118 .iopoll_queue = 1,
119 .async_size = sizeof(struct io_async_rw),
120 .prep = io_prep_write_fixed,
121 .issue = io_write,
122 },
123 [IORING_OP_POLL_ADD] = {
124 .needs_file = 1,
125 .unbound_nonreg_file = 1,
126 .audit_skip = 1,
127 .prep = io_poll_add_prep,
128 .issue = io_poll_add,
129 },
130 [IORING_OP_POLL_REMOVE] = {
131 .audit_skip = 1,
132 .prep = io_poll_remove_prep,
133 .issue = io_poll_remove,
134 },
135 [IORING_OP_SYNC_FILE_RANGE] = {
136 .needs_file = 1,
137 .audit_skip = 1,
138 .prep = io_sfr_prep,
139 .issue = io_sync_file_range,
140 },
141 [IORING_OP_SENDMSG] = {
142 .needs_file = 1,
143 .unbound_nonreg_file = 1,
144 .pollout = 1,
145 .ioprio = 1,
146#if defined(CONFIG_NET)
147 .async_size = sizeof(struct io_async_msghdr),
148 .prep = io_sendmsg_prep,
149 .issue = io_sendmsg,
150#else
151 .prep = io_eopnotsupp_prep,
152#endif
153 },
154 [IORING_OP_RECVMSG] = {
155 .needs_file = 1,
156 .unbound_nonreg_file = 1,
157 .pollin = 1,
158 .buffer_select = 1,
159 .ioprio = 1,
160#if defined(CONFIG_NET)
161 .async_size = sizeof(struct io_async_msghdr),
162 .prep = io_recvmsg_prep,
163 .issue = io_recvmsg,
164#else
165 .prep = io_eopnotsupp_prep,
166#endif
167 },
168 [IORING_OP_TIMEOUT] = {
169 .audit_skip = 1,
170 .async_size = sizeof(struct io_timeout_data),
171 .prep = io_timeout_prep,
172 .issue = io_timeout,
173 },
174 [IORING_OP_TIMEOUT_REMOVE] = {
175 /* used by timeout updates' prep() */
176 .audit_skip = 1,
177 .prep = io_timeout_remove_prep,
178 .issue = io_timeout_remove,
179 },
180 [IORING_OP_ACCEPT] = {
181 .needs_file = 1,
182 .unbound_nonreg_file = 1,
183 .pollin = 1,
184 .poll_exclusive = 1,
185 .ioprio = 1, /* used for flags */
186#if defined(CONFIG_NET)
187 .prep = io_accept_prep,
188 .issue = io_accept,
189#else
190 .prep = io_eopnotsupp_prep,
191#endif
192 },
193 [IORING_OP_ASYNC_CANCEL] = {
194 .audit_skip = 1,
195 .prep = io_async_cancel_prep,
196 .issue = io_async_cancel,
197 },
198 [IORING_OP_LINK_TIMEOUT] = {
199 .audit_skip = 1,
200 .async_size = sizeof(struct io_timeout_data),
201 .prep = io_link_timeout_prep,
202 .issue = io_no_issue,
203 },
204 [IORING_OP_CONNECT] = {
205 .needs_file = 1,
206 .unbound_nonreg_file = 1,
207 .pollout = 1,
208#if defined(CONFIG_NET)
209 .async_size = sizeof(struct io_async_msghdr),
210 .prep = io_connect_prep,
211 .issue = io_connect,
212#else
213 .prep = io_eopnotsupp_prep,
214#endif
215 },
216 [IORING_OP_FALLOCATE] = {
217 .needs_file = 1,
218 .prep = io_fallocate_prep,
219 .issue = io_fallocate,
220 },
221 [IORING_OP_OPENAT] = {
222 .prep = io_openat_prep,
223 .issue = io_openat,
224 },
225 [IORING_OP_CLOSE] = {
226 .prep = io_close_prep,
227 .issue = io_close,
228 },
229 [IORING_OP_FILES_UPDATE] = {
230 .audit_skip = 1,
231 .iopoll = 1,
232 .prep = io_files_update_prep,
233 .issue = io_files_update,
234 },
235 [IORING_OP_STATX] = {
236 .audit_skip = 1,
237 .prep = io_statx_prep,
238 .issue = io_statx,
239 },
240 [IORING_OP_READ] = {
241 .needs_file = 1,
242 .unbound_nonreg_file = 1,
243 .pollin = 1,
244 .buffer_select = 1,
245 .plug = 1,
246 .audit_skip = 1,
247 .ioprio = 1,
248 .iopoll = 1,
249 .iopoll_queue = 1,
250 .async_size = sizeof(struct io_async_rw),
251 .prep = io_prep_read,
252 .issue = io_read,
253 },
254 [IORING_OP_WRITE] = {
255 .needs_file = 1,
256 .hash_reg_file = 1,
257 .unbound_nonreg_file = 1,
258 .pollout = 1,
259 .plug = 1,
260 .audit_skip = 1,
261 .ioprio = 1,
262 .iopoll = 1,
263 .iopoll_queue = 1,
264 .async_size = sizeof(struct io_async_rw),
265 .prep = io_prep_write,
266 .issue = io_write,
267 },
268 [IORING_OP_FADVISE] = {
269 .needs_file = 1,
270 .audit_skip = 1,
271 .prep = io_fadvise_prep,
272 .issue = io_fadvise,
273 },
274 [IORING_OP_MADVISE] = {
275 .audit_skip = 1,
276 .prep = io_madvise_prep,
277 .issue = io_madvise,
278 },
279 [IORING_OP_SEND] = {
280 .needs_file = 1,
281 .unbound_nonreg_file = 1,
282 .pollout = 1,
283 .audit_skip = 1,
284 .ioprio = 1,
285 .buffer_select = 1,
286#if defined(CONFIG_NET)
287 .async_size = sizeof(struct io_async_msghdr),
288 .prep = io_sendmsg_prep,
289 .issue = io_send,
290#else
291 .prep = io_eopnotsupp_prep,
292#endif
293 },
294 [IORING_OP_RECV] = {
295 .needs_file = 1,
296 .unbound_nonreg_file = 1,
297 .pollin = 1,
298 .buffer_select = 1,
299 .audit_skip = 1,
300 .ioprio = 1,
301#if defined(CONFIG_NET)
302 .async_size = sizeof(struct io_async_msghdr),
303 .prep = io_recvmsg_prep,
304 .issue = io_recv,
305#else
306 .prep = io_eopnotsupp_prep,
307#endif
308 },
309 [IORING_OP_OPENAT2] = {
310 .prep = io_openat2_prep,
311 .issue = io_openat2,
312 },
313 [IORING_OP_EPOLL_CTL] = {
314 .unbound_nonreg_file = 1,
315 .audit_skip = 1,
316#if defined(CONFIG_EPOLL)
317 .prep = io_epoll_ctl_prep,
318 .issue = io_epoll_ctl,
319#else
320 .prep = io_eopnotsupp_prep,
321#endif
322 },
323 [IORING_OP_SPLICE] = {
324 .needs_file = 1,
325 .hash_reg_file = 1,
326 .unbound_nonreg_file = 1,
327 .audit_skip = 1,
328 .prep = io_splice_prep,
329 .issue = io_splice,
330 },
331 [IORING_OP_PROVIDE_BUFFERS] = {
332 .audit_skip = 1,
333 .iopoll = 1,
334 .prep = io_provide_buffers_prep,
335 .issue = io_provide_buffers,
336 },
337 [IORING_OP_REMOVE_BUFFERS] = {
338 .audit_skip = 1,
339 .iopoll = 1,
340 .prep = io_remove_buffers_prep,
341 .issue = io_remove_buffers,
342 },
343 [IORING_OP_TEE] = {
344 .needs_file = 1,
345 .hash_reg_file = 1,
346 .unbound_nonreg_file = 1,
347 .audit_skip = 1,
348 .prep = io_tee_prep,
349 .issue = io_tee,
350 },
351 [IORING_OP_SHUTDOWN] = {
352 .needs_file = 1,
353#if defined(CONFIG_NET)
354 .prep = io_shutdown_prep,
355 .issue = io_shutdown,
356#else
357 .prep = io_eopnotsupp_prep,
358#endif
359 },
360 [IORING_OP_RENAMEAT] = {
361 .prep = io_renameat_prep,
362 .issue = io_renameat,
363 },
364 [IORING_OP_UNLINKAT] = {
365 .prep = io_unlinkat_prep,
366 .issue = io_unlinkat,
367 },
368 [IORING_OP_MKDIRAT] = {
369 .prep = io_mkdirat_prep,
370 .issue = io_mkdirat,
371 },
372 [IORING_OP_SYMLINKAT] = {
373 .prep = io_symlinkat_prep,
374 .issue = io_symlinkat,
375 },
376 [IORING_OP_LINKAT] = {
377 .prep = io_linkat_prep,
378 .issue = io_linkat,
379 },
380 [IORING_OP_MSG_RING] = {
381 .needs_file = 1,
382 .iopoll = 1,
383 .prep = io_msg_ring_prep,
384 .issue = io_msg_ring,
385 },
386 [IORING_OP_FSETXATTR] = {
387 .needs_file = 1,
388 .prep = io_fsetxattr_prep,
389 .issue = io_fsetxattr,
390 },
391 [IORING_OP_SETXATTR] = {
392 .prep = io_setxattr_prep,
393 .issue = io_setxattr,
394 },
395 [IORING_OP_FGETXATTR] = {
396 .needs_file = 1,
397 .prep = io_fgetxattr_prep,
398 .issue = io_fgetxattr,
399 },
400 [IORING_OP_GETXATTR] = {
401 .prep = io_getxattr_prep,
402 .issue = io_getxattr,
403 },
404 [IORING_OP_SOCKET] = {
405 .audit_skip = 1,
406#if defined(CONFIG_NET)
407 .prep = io_socket_prep,
408 .issue = io_socket,
409#else
410 .prep = io_eopnotsupp_prep,
411#endif
412 },
413 [IORING_OP_URING_CMD] = {
414 .needs_file = 1,
415 .plug = 1,
416 .iopoll = 1,
417 .iopoll_queue = 1,
418 .async_size = sizeof(struct io_uring_cmd_data),
419 .prep = io_uring_cmd_prep,
420 .issue = io_uring_cmd,
421 },
422 [IORING_OP_SEND_ZC] = {
423 .needs_file = 1,
424 .unbound_nonreg_file = 1,
425 .pollout = 1,
426 .audit_skip = 1,
427 .ioprio = 1,
428#if defined(CONFIG_NET)
429 .async_size = sizeof(struct io_async_msghdr),
430 .prep = io_send_zc_prep,
431 .issue = io_send_zc,
432#else
433 .prep = io_eopnotsupp_prep,
434#endif
435 },
436 [IORING_OP_SENDMSG_ZC] = {
437 .needs_file = 1,
438 .unbound_nonreg_file = 1,
439 .pollout = 1,
440 .ioprio = 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,
445#else
446 .prep = io_eopnotsupp_prep,
447#endif
448 },
449 [IORING_OP_READ_MULTISHOT] = {
450 .needs_file = 1,
451 .unbound_nonreg_file = 1,
452 .pollin = 1,
453 .buffer_select = 1,
454 .audit_skip = 1,
455 .async_size = sizeof(struct io_async_rw),
456 .prep = io_read_mshot_prep,
457 .issue = io_read_mshot,
458 },
459 [IORING_OP_WAITID] = {
460 .async_size = sizeof(struct io_waitid_async),
461 .prep = io_waitid_prep,
462 .issue = io_waitid,
463 },
464 [IORING_OP_FUTEX_WAIT] = {
465#if defined(CONFIG_FUTEX)
466 .prep = io_futex_prep,
467 .issue = io_futex_wait,
468#else
469 .prep = io_eopnotsupp_prep,
470#endif
471 },
472 [IORING_OP_FUTEX_WAKE] = {
473#if defined(CONFIG_FUTEX)
474 .prep = io_futex_prep,
475 .issue = io_futex_wake,
476#else
477 .prep = io_eopnotsupp_prep,
478#endif
479 },
480 [IORING_OP_FUTEX_WAITV] = {
481#if defined(CONFIG_FUTEX)
482 .prep = io_futexv_prep,
483 .issue = io_futexv_wait,
484#else
485 .prep = io_eopnotsupp_prep,
486#endif
487 },
488 [IORING_OP_FIXED_FD_INSTALL] = {
489 .needs_file = 1,
490 .prep = io_install_fixed_fd_prep,
491 .issue = io_install_fixed_fd,
492 },
493 [IORING_OP_FTRUNCATE] = {
494 .needs_file = 1,
495 .hash_reg_file = 1,
496 .prep = io_ftruncate_prep,
497 .issue = io_ftruncate,
498 },
499 [IORING_OP_BIND] = {
500#if defined(CONFIG_NET)
501 .needs_file = 1,
502 .prep = io_bind_prep,
503 .issue = io_bind,
504 .async_size = sizeof(struct io_async_msghdr),
505#else
506 .prep = io_eopnotsupp_prep,
507#endif
508 },
509 [IORING_OP_LISTEN] = {
510#if defined(CONFIG_NET)
511 .needs_file = 1,
512 .prep = io_listen_prep,
513 .issue = io_listen,
514 .async_size = sizeof(struct io_async_msghdr),
515#else
516 .prep = io_eopnotsupp_prep,
517#endif
518 },
519};
520
521const struct io_cold_def io_cold_defs[] = {
522 [IORING_OP_NOP] = {
523 .name = "NOP",
524 },
525 [IORING_OP_READV] = {
526 .name = "READV",
527 .cleanup = io_readv_writev_cleanup,
528 .fail = io_rw_fail,
529 },
530 [IORING_OP_WRITEV] = {
531 .name = "WRITEV",
532 .cleanup = io_readv_writev_cleanup,
533 .fail = io_rw_fail,
534 },
535 [IORING_OP_FSYNC] = {
536 .name = "FSYNC",
537 },
538 [IORING_OP_READ_FIXED] = {
539 .name = "READ_FIXED",
540 .cleanup = io_readv_writev_cleanup,
541 .fail = io_rw_fail,
542 },
543 [IORING_OP_WRITE_FIXED] = {
544 .name = "WRITE_FIXED",
545 .cleanup = io_readv_writev_cleanup,
546 .fail = io_rw_fail,
547 },
548 [IORING_OP_POLL_ADD] = {
549 .name = "POLL_ADD",
550 },
551 [IORING_OP_POLL_REMOVE] = {
552 .name = "POLL_REMOVE",
553 },
554 [IORING_OP_SYNC_FILE_RANGE] = {
555 .name = "SYNC_FILE_RANGE",
556 },
557 [IORING_OP_SENDMSG] = {
558 .name = "SENDMSG",
559#if defined(CONFIG_NET)
560 .cleanup = io_sendmsg_recvmsg_cleanup,
561 .fail = io_sendrecv_fail,
562#endif
563 },
564 [IORING_OP_RECVMSG] = {
565 .name = "RECVMSG",
566#if defined(CONFIG_NET)
567 .cleanup = io_sendmsg_recvmsg_cleanup,
568 .fail = io_sendrecv_fail,
569#endif
570 },
571 [IORING_OP_TIMEOUT] = {
572 .name = "TIMEOUT",
573 },
574 [IORING_OP_TIMEOUT_REMOVE] = {
575 .name = "TIMEOUT_REMOVE",
576 },
577 [IORING_OP_ACCEPT] = {
578 .name = "ACCEPT",
579 },
580 [IORING_OP_ASYNC_CANCEL] = {
581 .name = "ASYNC_CANCEL",
582 },
583 [IORING_OP_LINK_TIMEOUT] = {
584 .name = "LINK_TIMEOUT",
585 },
586 [IORING_OP_CONNECT] = {
587 .name = "CONNECT",
588 },
589 [IORING_OP_FALLOCATE] = {
590 .name = "FALLOCATE",
591 },
592 [IORING_OP_OPENAT] = {
593 .name = "OPENAT",
594 .cleanup = io_open_cleanup,
595 },
596 [IORING_OP_CLOSE] = {
597 .name = "CLOSE",
598 },
599 [IORING_OP_FILES_UPDATE] = {
600 .name = "FILES_UPDATE",
601 },
602 [IORING_OP_STATX] = {
603 .name = "STATX",
604 .cleanup = io_statx_cleanup,
605 },
606 [IORING_OP_READ] = {
607 .name = "READ",
608 .cleanup = io_readv_writev_cleanup,
609 .fail = io_rw_fail,
610 },
611 [IORING_OP_WRITE] = {
612 .name = "WRITE",
613 .cleanup = io_readv_writev_cleanup,
614 .fail = io_rw_fail,
615 },
616 [IORING_OP_FADVISE] = {
617 .name = "FADVISE",
618 },
619 [IORING_OP_MADVISE] = {
620 .name = "MADVISE",
621 },
622 [IORING_OP_SEND] = {
623 .name = "SEND",
624#if defined(CONFIG_NET)
625 .cleanup = io_sendmsg_recvmsg_cleanup,
626 .fail = io_sendrecv_fail,
627#endif
628 },
629 [IORING_OP_RECV] = {
630 .name = "RECV",
631#if defined(CONFIG_NET)
632 .cleanup = io_sendmsg_recvmsg_cleanup,
633 .fail = io_sendrecv_fail,
634#endif
635 },
636 [IORING_OP_OPENAT2] = {
637 .name = "OPENAT2",
638 .cleanup = io_open_cleanup,
639 },
640 [IORING_OP_EPOLL_CTL] = {
641 .name = "EPOLL",
642 },
643 [IORING_OP_SPLICE] = {
644 .name = "SPLICE",
645 .cleanup = io_splice_cleanup,
646 },
647 [IORING_OP_PROVIDE_BUFFERS] = {
648 .name = "PROVIDE_BUFFERS",
649 },
650 [IORING_OP_REMOVE_BUFFERS] = {
651 .name = "REMOVE_BUFFERS",
652 },
653 [IORING_OP_TEE] = {
654 .name = "TEE",
655 .cleanup = io_splice_cleanup,
656 },
657 [IORING_OP_SHUTDOWN] = {
658 .name = "SHUTDOWN",
659 },
660 [IORING_OP_RENAMEAT] = {
661 .name = "RENAMEAT",
662 .cleanup = io_renameat_cleanup,
663 },
664 [IORING_OP_UNLINKAT] = {
665 .name = "UNLINKAT",
666 .cleanup = io_unlinkat_cleanup,
667 },
668 [IORING_OP_MKDIRAT] = {
669 .name = "MKDIRAT",
670 .cleanup = io_mkdirat_cleanup,
671 },
672 [IORING_OP_SYMLINKAT] = {
673 .name = "SYMLINKAT",
674 .cleanup = io_link_cleanup,
675 },
676 [IORING_OP_LINKAT] = {
677 .name = "LINKAT",
678 .cleanup = io_link_cleanup,
679 },
680 [IORING_OP_MSG_RING] = {
681 .name = "MSG_RING",
682 .cleanup = io_msg_ring_cleanup,
683 },
684 [IORING_OP_FSETXATTR] = {
685 .name = "FSETXATTR",
686 .cleanup = io_xattr_cleanup,
687 },
688 [IORING_OP_SETXATTR] = {
689 .name = "SETXATTR",
690 .cleanup = io_xattr_cleanup,
691 },
692 [IORING_OP_FGETXATTR] = {
693 .name = "FGETXATTR",
694 .cleanup = io_xattr_cleanup,
695 },
696 [IORING_OP_GETXATTR] = {
697 .name = "GETXATTR",
698 .cleanup = io_xattr_cleanup,
699 },
700 [IORING_OP_SOCKET] = {
701 .name = "SOCKET",
702 },
703 [IORING_OP_URING_CMD] = {
704 .name = "URING_CMD",
705 },
706 [IORING_OP_SEND_ZC] = {
707 .name = "SEND_ZC",
708#if defined(CONFIG_NET)
709 .cleanup = io_send_zc_cleanup,
710 .fail = io_sendrecv_fail,
711#endif
712 },
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,
718#endif
719 },
720 [IORING_OP_READ_MULTISHOT] = {
721 .name = "READ_MULTISHOT",
722 .cleanup = io_readv_writev_cleanup,
723 },
724 [IORING_OP_WAITID] = {
725 .name = "WAITID",
726 },
727 [IORING_OP_FUTEX_WAIT] = {
728 .name = "FUTEX_WAIT",
729 },
730 [IORING_OP_FUTEX_WAKE] = {
731 .name = "FUTEX_WAKE",
732 },
733 [IORING_OP_FUTEX_WAITV] = {
734 .name = "FUTEX_WAITV",
735 },
736 [IORING_OP_FIXED_FD_INSTALL] = {
737 .name = "FIXED_FD_INSTALL",
738 },
739 [IORING_OP_FTRUNCATE] = {
740 .name = "FTRUNCATE",
741 },
742 [IORING_OP_BIND] = {
743 .name = "BIND",
744 },
745 [IORING_OP_LISTEN] = {
746 .name = "LISTEN",
747 },
748};
749
750const char *io_uring_get_opcode(u8 opcode)
751{
752 if (opcode < IORING_OP_LAST)
753 return io_cold_defs[opcode].name;
754 return "INVALID";
755}
756
757bool io_uring_op_supported(u8 opcode)
758{
759 if (opcode < IORING_OP_LAST &&
760 io_issue_defs[opcode].prep != io_eopnotsupp_prep)
761 return true;
762 return false;
763}
764
765void __init io_uring_optable_init(void)
766{
767 int i;
768
769 BUILD_BUG_ON(ARRAY_SIZE(io_cold_defs) != IORING_OP_LAST);
770 BUILD_BUG_ON(ARRAY_SIZE(io_issue_defs) != IORING_OP_LAST);
771
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);
777 }
778}
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * io_uring opcode handling table
4 */
5#include <linux/kernel.h>
6#include <linux/errno.h>
7#include <linux/fs.h>
8#include <linux/file.h>
9#include <linux/io_uring.h>
10
11#include "io_uring.h"
12#include "opdef.h"
13#include "refs.h"
14#include "tctx.h"
15#include "sqpoll.h"
16#include "fdinfo.h"
17#include "kbuf.h"
18#include "rsrc.h"
19
20#include "xattr.h"
21#include "nop.h"
22#include "fs.h"
23#include "splice.h"
24#include "sync.h"
25#include "advise.h"
26#include "openclose.h"
27#include "uring_cmd.h"
28#include "epoll.h"
29#include "statx.h"
30#include "net.h"
31#include "msg_ring.h"
32#include "timeout.h"
33#include "poll.h"
34#include "cancel.h"
35#include "rw.h"
36
37static int io_no_issue(struct io_kiocb *req, unsigned int issue_flags)
38{
39 WARN_ON_ONCE(1);
40 return -ECANCELED;
41}
42
43static __maybe_unused int io_eopnotsupp_prep(struct io_kiocb *kiocb,
44 const struct io_uring_sqe *sqe)
45{
46 return -EOPNOTSUPP;
47}
48
49const struct io_op_def io_op_defs[] = {
50 [IORING_OP_NOP] = {
51 .audit_skip = 1,
52 .iopoll = 1,
53 .name = "NOP",
54 .prep = io_nop_prep,
55 .issue = io_nop,
56 },
57 [IORING_OP_READV] = {
58 .needs_file = 1,
59 .unbound_nonreg_file = 1,
60 .pollin = 1,
61 .buffer_select = 1,
62 .plug = 1,
63 .audit_skip = 1,
64 .ioprio = 1,
65 .iopoll = 1,
66 .iopoll_queue = 1,
67 .async_size = sizeof(struct io_async_rw),
68 .name = "READV",
69 .prep = io_prep_rw,
70 .issue = io_read,
71 .prep_async = io_readv_prep_async,
72 .cleanup = io_readv_writev_cleanup,
73 .fail = io_rw_fail,
74 },
75 [IORING_OP_WRITEV] = {
76 .needs_file = 1,
77 .hash_reg_file = 1,
78 .unbound_nonreg_file = 1,
79 .pollout = 1,
80 .plug = 1,
81 .audit_skip = 1,
82 .ioprio = 1,
83 .iopoll = 1,
84 .iopoll_queue = 1,
85 .async_size = sizeof(struct io_async_rw),
86 .name = "WRITEV",
87 .prep = io_prep_rw,
88 .issue = io_write,
89 .prep_async = io_writev_prep_async,
90 .cleanup = io_readv_writev_cleanup,
91 .fail = io_rw_fail,
92 },
93 [IORING_OP_FSYNC] = {
94 .needs_file = 1,
95 .audit_skip = 1,
96 .name = "FSYNC",
97 .prep = io_fsync_prep,
98 .issue = io_fsync,
99 },
100 [IORING_OP_READ_FIXED] = {
101 .needs_file = 1,
102 .unbound_nonreg_file = 1,
103 .pollin = 1,
104 .plug = 1,
105 .audit_skip = 1,
106 .ioprio = 1,
107 .iopoll = 1,
108 .iopoll_queue = 1,
109 .async_size = sizeof(struct io_async_rw),
110 .name = "READ_FIXED",
111 .prep = io_prep_rw,
112 .issue = io_read,
113 .fail = io_rw_fail,
114 },
115 [IORING_OP_WRITE_FIXED] = {
116 .needs_file = 1,
117 .hash_reg_file = 1,
118 .unbound_nonreg_file = 1,
119 .pollout = 1,
120 .plug = 1,
121 .audit_skip = 1,
122 .ioprio = 1,
123 .iopoll = 1,
124 .iopoll_queue = 1,
125 .async_size = sizeof(struct io_async_rw),
126 .name = "WRITE_FIXED",
127 .prep = io_prep_rw,
128 .issue = io_write,
129 .fail = io_rw_fail,
130 },
131 [IORING_OP_POLL_ADD] = {
132 .needs_file = 1,
133 .unbound_nonreg_file = 1,
134 .audit_skip = 1,
135 .name = "POLL_ADD",
136 .prep = io_poll_add_prep,
137 .issue = io_poll_add,
138 },
139 [IORING_OP_POLL_REMOVE] = {
140 .audit_skip = 1,
141 .name = "POLL_REMOVE",
142 .prep = io_poll_remove_prep,
143 .issue = io_poll_remove,
144 },
145 [IORING_OP_SYNC_FILE_RANGE] = {
146 .needs_file = 1,
147 .audit_skip = 1,
148 .name = "SYNC_FILE_RANGE",
149 .prep = io_sfr_prep,
150 .issue = io_sync_file_range,
151 },
152 [IORING_OP_SENDMSG] = {
153 .needs_file = 1,
154 .unbound_nonreg_file = 1,
155 .pollout = 1,
156 .ioprio = 1,
157 .manual_alloc = 1,
158 .name = "SENDMSG",
159#if defined(CONFIG_NET)
160 .async_size = sizeof(struct io_async_msghdr),
161 .prep = io_sendmsg_prep,
162 .issue = io_sendmsg,
163 .prep_async = io_sendmsg_prep_async,
164 .cleanup = io_sendmsg_recvmsg_cleanup,
165 .fail = io_sendrecv_fail,
166#else
167 .prep = io_eopnotsupp_prep,
168#endif
169 },
170 [IORING_OP_RECVMSG] = {
171 .needs_file = 1,
172 .unbound_nonreg_file = 1,
173 .pollin = 1,
174 .buffer_select = 1,
175 .ioprio = 1,
176 .manual_alloc = 1,
177 .name = "RECVMSG",
178#if defined(CONFIG_NET)
179 .async_size = sizeof(struct io_async_msghdr),
180 .prep = io_recvmsg_prep,
181 .issue = io_recvmsg,
182 .prep_async = io_recvmsg_prep_async,
183 .cleanup = io_sendmsg_recvmsg_cleanup,
184 .fail = io_sendrecv_fail,
185#else
186 .prep = io_eopnotsupp_prep,
187#endif
188 },
189 [IORING_OP_TIMEOUT] = {
190 .audit_skip = 1,
191 .async_size = sizeof(struct io_timeout_data),
192 .name = "TIMEOUT",
193 .prep = io_timeout_prep,
194 .issue = io_timeout,
195 },
196 [IORING_OP_TIMEOUT_REMOVE] = {
197 /* used by timeout updates' prep() */
198 .audit_skip = 1,
199 .name = "TIMEOUT_REMOVE",
200 .prep = io_timeout_remove_prep,
201 .issue = io_timeout_remove,
202 },
203 [IORING_OP_ACCEPT] = {
204 .needs_file = 1,
205 .unbound_nonreg_file = 1,
206 .pollin = 1,
207 .poll_exclusive = 1,
208 .ioprio = 1, /* used for flags */
209 .name = "ACCEPT",
210#if defined(CONFIG_NET)
211 .prep = io_accept_prep,
212 .issue = io_accept,
213#else
214 .prep = io_eopnotsupp_prep,
215#endif
216 },
217 [IORING_OP_ASYNC_CANCEL] = {
218 .audit_skip = 1,
219 .name = "ASYNC_CANCEL",
220 .prep = io_async_cancel_prep,
221 .issue = io_async_cancel,
222 },
223 [IORING_OP_LINK_TIMEOUT] = {
224 .audit_skip = 1,
225 .async_size = sizeof(struct io_timeout_data),
226 .name = "LINK_TIMEOUT",
227 .prep = io_link_timeout_prep,
228 .issue = io_no_issue,
229 },
230 [IORING_OP_CONNECT] = {
231 .needs_file = 1,
232 .unbound_nonreg_file = 1,
233 .pollout = 1,
234 .name = "CONNECT",
235#if defined(CONFIG_NET)
236 .async_size = sizeof(struct io_async_connect),
237 .prep = io_connect_prep,
238 .issue = io_connect,
239 .prep_async = io_connect_prep_async,
240#else
241 .prep = io_eopnotsupp_prep,
242#endif
243 },
244 [IORING_OP_FALLOCATE] = {
245 .needs_file = 1,
246 .name = "FALLOCATE",
247 .prep = io_fallocate_prep,
248 .issue = io_fallocate,
249 },
250 [IORING_OP_OPENAT] = {
251 .name = "OPENAT",
252 .prep = io_openat_prep,
253 .issue = io_openat,
254 .cleanup = io_open_cleanup,
255 },
256 [IORING_OP_CLOSE] = {
257 .name = "CLOSE",
258 .prep = io_close_prep,
259 .issue = io_close,
260 },
261 [IORING_OP_FILES_UPDATE] = {
262 .audit_skip = 1,
263 .iopoll = 1,
264 .name = "FILES_UPDATE",
265 .prep = io_files_update_prep,
266 .issue = io_files_update,
267 },
268 [IORING_OP_STATX] = {
269 .audit_skip = 1,
270 .name = "STATX",
271 .prep = io_statx_prep,
272 .issue = io_statx,
273 .cleanup = io_statx_cleanup,
274 },
275 [IORING_OP_READ] = {
276 .needs_file = 1,
277 .unbound_nonreg_file = 1,
278 .pollin = 1,
279 .buffer_select = 1,
280 .plug = 1,
281 .audit_skip = 1,
282 .ioprio = 1,
283 .iopoll = 1,
284 .iopoll_queue = 1,
285 .async_size = sizeof(struct io_async_rw),
286 .name = "READ",
287 .prep = io_prep_rw,
288 .issue = io_read,
289 .fail = io_rw_fail,
290 },
291 [IORING_OP_WRITE] = {
292 .needs_file = 1,
293 .hash_reg_file = 1,
294 .unbound_nonreg_file = 1,
295 .pollout = 1,
296 .plug = 1,
297 .audit_skip = 1,
298 .ioprio = 1,
299 .iopoll = 1,
300 .iopoll_queue = 1,
301 .async_size = sizeof(struct io_async_rw),
302 .name = "WRITE",
303 .prep = io_prep_rw,
304 .issue = io_write,
305 .fail = io_rw_fail,
306 },
307 [IORING_OP_FADVISE] = {
308 .needs_file = 1,
309 .audit_skip = 1,
310 .name = "FADVISE",
311 .prep = io_fadvise_prep,
312 .issue = io_fadvise,
313 },
314 [IORING_OP_MADVISE] = {
315 .name = "MADVISE",
316 .prep = io_madvise_prep,
317 .issue = io_madvise,
318 },
319 [IORING_OP_SEND] = {
320 .needs_file = 1,
321 .unbound_nonreg_file = 1,
322 .pollout = 1,
323 .audit_skip = 1,
324 .ioprio = 1,
325 .manual_alloc = 1,
326 .name = "SEND",
327#if defined(CONFIG_NET)
328 .async_size = sizeof(struct io_async_msghdr),
329 .prep = io_sendmsg_prep,
330 .issue = io_send,
331 .fail = io_sendrecv_fail,
332 .prep_async = io_send_prep_async,
333#else
334 .prep = io_eopnotsupp_prep,
335#endif
336 },
337 [IORING_OP_RECV] = {
338 .needs_file = 1,
339 .unbound_nonreg_file = 1,
340 .pollin = 1,
341 .buffer_select = 1,
342 .audit_skip = 1,
343 .ioprio = 1,
344 .name = "RECV",
345#if defined(CONFIG_NET)
346 .prep = io_recvmsg_prep,
347 .issue = io_recv,
348 .fail = io_sendrecv_fail,
349#else
350 .prep = io_eopnotsupp_prep,
351#endif
352 },
353 [IORING_OP_OPENAT2] = {
354 .name = "OPENAT2",
355 .prep = io_openat2_prep,
356 .issue = io_openat2,
357 .cleanup = io_open_cleanup,
358 },
359 [IORING_OP_EPOLL_CTL] = {
360 .unbound_nonreg_file = 1,
361 .audit_skip = 1,
362 .name = "EPOLL",
363#if defined(CONFIG_EPOLL)
364 .prep = io_epoll_ctl_prep,
365 .issue = io_epoll_ctl,
366#else
367 .prep = io_eopnotsupp_prep,
368#endif
369 },
370 [IORING_OP_SPLICE] = {
371 .needs_file = 1,
372 .hash_reg_file = 1,
373 .unbound_nonreg_file = 1,
374 .audit_skip = 1,
375 .name = "SPLICE",
376 .prep = io_splice_prep,
377 .issue = io_splice,
378 },
379 [IORING_OP_PROVIDE_BUFFERS] = {
380 .audit_skip = 1,
381 .iopoll = 1,
382 .name = "PROVIDE_BUFFERS",
383 .prep = io_provide_buffers_prep,
384 .issue = io_provide_buffers,
385 },
386 [IORING_OP_REMOVE_BUFFERS] = {
387 .audit_skip = 1,
388 .iopoll = 1,
389 .name = "REMOVE_BUFFERS",
390 .prep = io_remove_buffers_prep,
391 .issue = io_remove_buffers,
392 },
393 [IORING_OP_TEE] = {
394 .needs_file = 1,
395 .hash_reg_file = 1,
396 .unbound_nonreg_file = 1,
397 .audit_skip = 1,
398 .name = "TEE",
399 .prep = io_tee_prep,
400 .issue = io_tee,
401 },
402 [IORING_OP_SHUTDOWN] = {
403 .needs_file = 1,
404 .name = "SHUTDOWN",
405#if defined(CONFIG_NET)
406 .prep = io_shutdown_prep,
407 .issue = io_shutdown,
408#else
409 .prep = io_eopnotsupp_prep,
410#endif
411 },
412 [IORING_OP_RENAMEAT] = {
413 .name = "RENAMEAT",
414 .prep = io_renameat_prep,
415 .issue = io_renameat,
416 .cleanup = io_renameat_cleanup,
417 },
418 [IORING_OP_UNLINKAT] = {
419 .name = "UNLINKAT",
420 .prep = io_unlinkat_prep,
421 .issue = io_unlinkat,
422 .cleanup = io_unlinkat_cleanup,
423 },
424 [IORING_OP_MKDIRAT] = {
425 .name = "MKDIRAT",
426 .prep = io_mkdirat_prep,
427 .issue = io_mkdirat,
428 .cleanup = io_mkdirat_cleanup,
429 },
430 [IORING_OP_SYMLINKAT] = {
431 .name = "SYMLINKAT",
432 .prep = io_symlinkat_prep,
433 .issue = io_symlinkat,
434 .cleanup = io_link_cleanup,
435 },
436 [IORING_OP_LINKAT] = {
437 .name = "LINKAT",
438 .prep = io_linkat_prep,
439 .issue = io_linkat,
440 .cleanup = io_link_cleanup,
441 },
442 [IORING_OP_MSG_RING] = {
443 .needs_file = 1,
444 .iopoll = 1,
445 .name = "MSG_RING",
446 .prep = io_msg_ring_prep,
447 .issue = io_msg_ring,
448 .cleanup = io_msg_ring_cleanup,
449 },
450 [IORING_OP_FSETXATTR] = {
451 .needs_file = 1,
452 .name = "FSETXATTR",
453 .prep = io_fsetxattr_prep,
454 .issue = io_fsetxattr,
455 .cleanup = io_xattr_cleanup,
456 },
457 [IORING_OP_SETXATTR] = {
458 .name = "SETXATTR",
459 .prep = io_setxattr_prep,
460 .issue = io_setxattr,
461 .cleanup = io_xattr_cleanup,
462 },
463 [IORING_OP_FGETXATTR] = {
464 .needs_file = 1,
465 .name = "FGETXATTR",
466 .prep = io_fgetxattr_prep,
467 .issue = io_fgetxattr,
468 .cleanup = io_xattr_cleanup,
469 },
470 [IORING_OP_GETXATTR] = {
471 .name = "GETXATTR",
472 .prep = io_getxattr_prep,
473 .issue = io_getxattr,
474 .cleanup = io_xattr_cleanup,
475 },
476 [IORING_OP_SOCKET] = {
477 .audit_skip = 1,
478 .name = "SOCKET",
479#if defined(CONFIG_NET)
480 .prep = io_socket_prep,
481 .issue = io_socket,
482#else
483 .prep = io_eopnotsupp_prep,
484#endif
485 },
486 [IORING_OP_URING_CMD] = {
487 .needs_file = 1,
488 .plug = 1,
489 .name = "URING_CMD",
490 .iopoll = 1,
491 .iopoll_queue = 1,
492 .async_size = uring_cmd_pdu_size(1),
493 .prep = io_uring_cmd_prep,
494 .issue = io_uring_cmd,
495 .prep_async = io_uring_cmd_prep_async,
496 },
497 [IORING_OP_SEND_ZC] = {
498 .name = "SEND_ZC",
499 .needs_file = 1,
500 .unbound_nonreg_file = 1,
501 .pollout = 1,
502 .audit_skip = 1,
503 .ioprio = 1,
504 .manual_alloc = 1,
505#if defined(CONFIG_NET)
506 .async_size = sizeof(struct io_async_msghdr),
507 .prep = io_send_zc_prep,
508 .issue = io_send_zc,
509 .prep_async = io_send_prep_async,
510 .cleanup = io_send_zc_cleanup,
511 .fail = io_sendrecv_fail,
512#else
513 .prep = io_eopnotsupp_prep,
514#endif
515 },
516 [IORING_OP_SENDMSG_ZC] = {
517 .name = "SENDMSG_ZC",
518 .needs_file = 1,
519 .unbound_nonreg_file = 1,
520 .pollout = 1,
521 .ioprio = 1,
522 .manual_alloc = 1,
523#if defined(CONFIG_NET)
524 .async_size = sizeof(struct io_async_msghdr),
525 .prep = io_send_zc_prep,
526 .issue = io_sendmsg_zc,
527 .prep_async = io_sendmsg_prep_async,
528 .cleanup = io_send_zc_cleanup,
529 .fail = io_sendrecv_fail,
530#else
531 .prep = io_eopnotsupp_prep,
532#endif
533 },
534};
535
536const char *io_uring_get_opcode(u8 opcode)
537{
538 if (opcode < IORING_OP_LAST)
539 return io_op_defs[opcode].name;
540 return "INVALID";
541}
542
543void __init io_uring_optable_init(void)
544{
545 int i;
546
547 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
548
549 for (i = 0; i < ARRAY_SIZE(io_op_defs); i++) {
550 BUG_ON(!io_op_defs[i].prep);
551 if (io_op_defs[i].prep != io_eopnotsupp_prep)
552 BUG_ON(!io_op_defs[i].issue);
553 WARN_ON_ONCE(!io_op_defs[i].name);
554 }
555}