From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: "Arve Hjønnevåg" <arve@android.com>
Cc: Linux PM list <linux-pm@vger.kernel.org>,
Jiri Slaby <jslaby@suse.cz>, NeilBrown <neilb@suse.de>,
LKML <linux-kernel@vger.kernel.org>,
Jiri Slaby <jirislaby@gmail.com>
Subject: Re: [PATCH] epoll: Fix user space breakage related to EPOLLWAKEUP (was: Re: [-next regression] TCP window full with EPOLLWAKEUP)
Date: Tue, 22 May 2012 17:56:34 +0200 [thread overview]
Message-ID: <201205221756.34780.rjw@sisk.pl> (raw)
In-Reply-To: <CAMP5XgcOgpRmbVoWvZ0ZqVCKXuyOCrB1yrTUv=qhY1tsg+SUGA@mail.gmail.com>
On Tuesday, May 22, 2012, Arve Hjønnevåg wrote:
> On Mon, May 21, 2012 at 12:28 PM, Rafael J. Wysocki <rjw@sisk.pl> wrote:
> > From: Rafael J. Wysocki <rjw@sisk.pl>
> >
> > 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 | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > Index: linux/fs/eventpoll.c
> > ===================================================================
> > --- linux.orig/fs/eventpoll.c
> > +++ linux/fs/eventpoll.c
> > @@ -1711,7 +1711,7 @@ SYSCALL_DEFINE4(epoll_ctl, int, epfd, in
> >
> > /* 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
>
> Is there any way for the application to detect that it did not get the
> EPOLLWAKEUP feature?
Well, it should check its capabilities beforehand if it really cares ...
Moreover, if the creation of the wakeup source in ep_modify() fails, the
application won't be notified either.
Thanks,
Rafael
prev parent reply other threads:[~2012-05-22 15:51 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-19 22:06 [-next regression] TCP window full with EPOLLWAKEUP Jiri Slaby
2012-05-20 12:23 ` Rafael J. Wysocki
2012-05-20 12:53 ` Rafael J. Wysocki
2012-05-20 18:34 ` Rafael J. Wysocki
2012-05-21 13:55 ` Jiri Slaby
2012-05-21 19:11 ` Rafael J. Wysocki
2012-05-21 19:28 ` [PATCH] epoll: Fix user space breakage related to EPOLLWAKEUP (was: Re: [-next regression] TCP window full with EPOLLWAKEUP) Rafael J. Wysocki
2012-05-21 22:11 ` Arve Hjønnevåg
2012-05-22 15:56 ` Rafael J. Wysocki [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201205221756.34780.rjw@sisk.pl \
--to=rjw@sisk.pl \
--cc=arve@android.com \
--cc=jirislaby@gmail.com \
--cc=jslaby@suse.cz \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=neilb@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.