Skip to content

Commit b29482f

Browse files
committed
Merge branch 'work.epoll' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull epoll update from Al Viro: "epoll conversion to read_iter from Jens; I thought there might be more epoll stuff this cycle, but uaccess took too much time" * 'work.epoll' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: eventfd: convert to f_op->read_iter()
2 parents 4dbb29f + 12aceb8 commit b29482f

File tree

1 file changed

+38
-26
lines changed

1 file changed

+38
-26
lines changed

fs/eventfd.c

Lines changed: 38 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include <linux/proc_fs.h>
2424
#include <linux/seq_file.h>
2525
#include <linux/idr.h>
26+
#include <linux/uio.h>
2627

2728
DEFINE_PER_CPU(int, eventfd_wake_count);
2829

@@ -216,32 +217,32 @@ int eventfd_ctx_remove_wait_queue(struct eventfd_ctx *ctx, wait_queue_entry_t *w
216217
}
217218
EXPORT_SYMBOL_GPL(eventfd_ctx_remove_wait_queue);
218219

219-
static ssize_t eventfd_read(struct file *file, char __user *buf, size_t count,
220-
loff_t *ppos)
220+
static ssize_t eventfd_read(struct kiocb *iocb, struct iov_iter *to)
221221
{
222+
struct file *file = iocb->ki_filp;
222223
struct eventfd_ctx *ctx = file->private_data;
223-
ssize_t res;
224224
__u64 ucnt = 0;
225225
DECLARE_WAITQUEUE(wait, current);
226226

227-
if (count < sizeof(ucnt))
227+
if (iov_iter_count(to) < sizeof(ucnt))
228228
return -EINVAL;
229-
230229
spin_lock_irq(&ctx->wqh.lock);
231-
res = -EAGAIN;
232-
if (ctx->count > 0)
233-
res = sizeof(ucnt);
234-
else if (!(file->f_flags & O_NONBLOCK)) {
230+
if (!ctx->count) {
231+
if ((file->f_flags & O_NONBLOCK) ||
232+
(iocb->ki_flags & IOCB_NOWAIT)) {
233+
spin_unlock_irq(&ctx->wqh.lock);
234+
return -EAGAIN;
235+
}
235236
__add_wait_queue(&ctx->wqh, &wait);
236237
for (;;) {
237238
set_current_state(TASK_INTERRUPTIBLE);
238-
if (ctx->count > 0) {
239-
res = sizeof(ucnt);
239+
if (ctx->count)
240240
break;
241-
}
242241
if (signal_pending(current)) {
243-
res = -ERESTARTSYS;
244-
break;
242+
__remove_wait_queue(&ctx->wqh, &wait);
243+
__set_current_state(TASK_RUNNING);
244+
spin_unlock_irq(&ctx->wqh.lock);
245+
return -ERESTARTSYS;
245246
}
246247
spin_unlock_irq(&ctx->wqh.lock);
247248
schedule();
@@ -250,17 +251,14 @@ static ssize_t eventfd_read(struct file *file, char __user *buf, size_t count,
250251
__remove_wait_queue(&ctx->wqh, &wait);
251252
__set_current_state(TASK_RUNNING);
252253
}
253-
if (likely(res > 0)) {
254-
eventfd_ctx_do_read(ctx, &ucnt);
255-
if (waitqueue_active(&ctx->wqh))
256-
wake_up_locked_poll(&ctx->wqh, EPOLLOUT);
257-
}
254+
eventfd_ctx_do_read(ctx, &ucnt);
255+
if (waitqueue_active(&ctx->wqh))
256+
wake_up_locked_poll(&ctx->wqh, EPOLLOUT);
258257
spin_unlock_irq(&ctx->wqh.lock);
259-
260-
if (res > 0 && put_user(ucnt, (__u64 __user *)buf))
258+
if (unlikely(copy_to_iter(&ucnt, sizeof(ucnt), to) != sizeof(ucnt)))
261259
return -EFAULT;
262260

263-
return res;
261+
return sizeof(ucnt);
264262
}
265263

266264
static ssize_t eventfd_write(struct file *file, const char __user *buf, size_t count,
@@ -329,7 +327,7 @@ static const struct file_operations eventfd_fops = {
329327
#endif
330328
.release = eventfd_release,
331329
.poll = eventfd_poll,
332-
.read = eventfd_read,
330+
.read_iter = eventfd_read,
333331
.write = eventfd_write,
334332
.llseek = noop_llseek,
335333
};
@@ -406,6 +404,7 @@ EXPORT_SYMBOL_GPL(eventfd_ctx_fileget);
406404
static int do_eventfd(unsigned int count, int flags)
407405
{
408406
struct eventfd_ctx *ctx;
407+
struct file *file;
409408
int fd;
410409

411410
/* Check the EFD_* constants for consistency. */
@@ -425,11 +424,24 @@ static int do_eventfd(unsigned int count, int flags)
425424
ctx->flags = flags;
426425
ctx->id = ida_simple_get(&eventfd_ida, 0, 0, GFP_KERNEL);
427426

428-
fd = anon_inode_getfd("[eventfd]", &eventfd_fops, ctx,
429-
O_RDWR | (flags & EFD_SHARED_FCNTL_FLAGS));
427+
flags &= EFD_SHARED_FCNTL_FLAGS;
428+
flags |= O_RDWR;
429+
fd = get_unused_fd_flags(flags);
430430
if (fd < 0)
431-
eventfd_free_ctx(ctx);
431+
goto err;
432+
433+
file = anon_inode_getfile("[eventfd]", &eventfd_fops, ctx, flags);
434+
if (IS_ERR(file)) {
435+
put_unused_fd(fd);
436+
fd = PTR_ERR(file);
437+
goto err;
438+
}
432439

440+
file->f_mode |= FMODE_NOWAIT;
441+
fd_install(fd, file);
442+
return fd;
443+
err:
444+
eventfd_free_ctx(ctx);
433445
return fd;
434446
}
435447

0 commit comments

Comments
 (0)