10853e8ed0788751d1031dc7d7ecdb45d8018cdf
[linux-block.git] / io_uring / epoll.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/kernel.h>
3 #include <linux/errno.h>
4 #include <linux/file.h>
5 #include <linux/fs.h>
6 #include <linux/uaccess.h>
7 #include <linux/io_uring.h>
8 #include <linux/eventpoll.h>
9
10 #include <uapi/linux/io_uring.h>
11
12 #include "io_uring_types.h"
13 #include "io_uring.h"
14 #include "epoll.h"
15
16 #if defined(CONFIG_EPOLL)
17 struct io_epoll {
18         struct file                     *file;
19         int                             epfd;
20         int                             op;
21         int                             fd;
22         struct epoll_event              event;
23 };
24
25 int io_epoll_ctl_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
26 {
27         struct io_epoll *epoll = io_kiocb_to_cmd(req);
28
29         pr_warn_once("%s: epoll_ctl support in io_uring is deprecated and will "
30                      "be removed in a future Linux kernel version.\n",
31                      current->comm);
32
33         if (sqe->buf_index || sqe->splice_fd_in)
34                 return -EINVAL;
35
36         epoll->epfd = READ_ONCE(sqe->fd);
37         epoll->op = READ_ONCE(sqe->len);
38         epoll->fd = READ_ONCE(sqe->off);
39
40         if (ep_op_has_event(epoll->op)) {
41                 struct epoll_event __user *ev;
42
43                 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
44                 if (copy_from_user(&epoll->event, ev, sizeof(*ev)))
45                         return -EFAULT;
46         }
47
48         return 0;
49 }
50
51 int io_epoll_ctl(struct io_kiocb *req, unsigned int issue_flags)
52 {
53         struct io_epoll *ie = io_kiocb_to_cmd(req);
54         int ret;
55         bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
56
57         ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
58         if (force_nonblock && ret == -EAGAIN)
59                 return -EAGAIN;
60
61         if (ret < 0)
62                 req_set_fail(req);
63         io_req_set_res(req, ret, 0);
64         return IOU_OK;
65 }
66 #endif