]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
epoll: Fix user space breakage related to EPOLLWAKEUP
authorRafael J. Wysocki <rjw@sisk.pl>
Mon, 21 May 2012 19:20:48 +0000 (21:20 +0200)
committerRafael J. Wysocki <rjw@sisk.pl>
Tue, 22 May 2012 18:57:06 +0000 (20:57 +0200)
Commit 4d7e30d (epoll: Add a flag, EPOLLWAKEUP, to prevent
suspend while epoll events are ready) caused some applications to
malfunction, because they set the bit corresponding to the new
EPOLLWAKEUP flag in their eventpoll flags and they don't have the
new CAP_EPOLLWAKEUP capability.

To prevent that from happening, change epoll_ctl() to clear
EPOLLWAKEUP in epds.events if the caller doesn't have the
CAP_EPOLLWAKEUP capability instead of failing and returning an
error code, which allows the affected applications to function
normally.

Reported-and-tested-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
fs/eventpoll.c

index 2cf0f2153be57ddcf6bc782d1f15fa5d2386d8a7..079d1be65ba9e61e6f0452ecffc0cd23a6c3987d 100644 (file)
@@ -1711,7 +1711,7 @@ SYSCALL_DEFINE4(epoll_ctl, int, epfd, int, op, int, fd,
 
        /* Check if EPOLLWAKEUP is allowed */
        if ((epds.events & EPOLLWAKEUP) && !capable(CAP_EPOLLWAKEUP))
-               goto error_tgt_fput;
+               epds.events &= ~EPOLLWAKEUP;
 
        /*
         * We have to check that the file structure underneath the file descriptor