From: Michael Kerrisk <mtk.manpages@googlemail.com>
To: Greg KH <greg@kroah.com>
Cc: Davide Libenzi <davidel@xmailserver.org>,
"linux-man@vger.kernel.org" <linux-man@vger.kernel.org>,
Thomas Gleixner <tglx@linutronix.de>,
lkml <linux-kernel@vger.kernel.org>,
stable@kernel.org, Ulrich Drepper <drepper@redhat.com>,
Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [stable] Why does timerfd() only support CLOCK_REALTIME and CLOCK_MONOTONIC?
Date: Mon, 9 Feb 2009 11:27:55 +1300 [thread overview]
Message-ID: <cfd18e0f0902081427g78e56d61k6caac8ebaf1a2012@mail.gmail.com> (raw)
In-Reply-To: <20090208221027.GA14523@kroah.com>
On Mon, Feb 9, 2009 at 11:10 AM, Greg KH <greg@kroah.com> wrote:
> On Sun, Feb 08, 2009 at 02:06:34PM -0800, Davide Libenzi wrote:
>> On Mon, 9 Feb 2009, Michael Kerrisk wrote:
>>
>> > On Mon, Feb 9, 2009 at 10:50 AM, Davide Libenzi <davidel@xmailserver.org> wrote:
>> > > On Mon, 9 Feb 2009, Michael Kerrisk wrote:
>> > >
>> > >> > @@ -186,12 +187,9 @@ SYSCALL_DEFINE2(timerfd_create, int, clo
>> > >> > BUILD_BUG_ON(TFD_CLOEXEC != O_CLOEXEC);
>> > >> > BUILD_BUG_ON(TFD_NONBLOCK != O_NONBLOCK);
>> > >> >
>> > >> > - if (flags & ~(TFD_CLOEXEC | TFD_NONBLOCK))
>> > >> > + if ((flags & ~TFD_FLAGS_SET) ||
>> > >> > + invalid_clockid(clockid))
>> > >> > return -EINVAL;
>> > >>
>> > >> Oh! Does this mean that in 2.6.2[789] it wasn't possible to use
>> > >> TFD_TIMER_ABSTIME?
>> > >
>> > > No, sorry, my fault. Patch is wrong. In "create" ATM we accept only
>> > > FCNTL-like flags. In "settime" we get TFD_TIMER_ABSTIME (that needs a
>> > > check too for EINVAL).
>> >
>> > That last piece should be a separate patch, that also gets pushed back
>> > into -stable. Do you agree?
>>
>> Hmm, it's a check for extra bits that do not cause any harm. Dunno if it
>> fits -stable requirements. You should ask Greg.
>
> If it fixes a bug, it would go into -stable. Does this?
Depends on the definition of bug, I guess ;-).
The issue is this:
a) timerfd_create() (added in kernel 2.6.25) has a flags argument.
b) Currently, one such flag is supported: TFD_TIMER_ABSTIME
c) Eventually, we may add other flag bits to the flags argument.
d) Currently, timerfd_settime() does not check for invalid values in
its flags argument (i.e., bits other than TFD_TIMER_ABSTIME)
e) If/when new flag bits are added, then applications would like to
have a way of determining whether there is support in a given kernel,
something like:
s = timerfd_settime(fd, TFD_XXX, newval, currval);
if (s == 1 && errno == EINVAL)
printf("TFD_XXX isn't supported by this kernel\n");
Davide, I think, proposes to add the missing check d) in kernel 2.6.29
(or 30). But, IMO, checks like the above are going to be more useful
to userspace the further back in kernel time that we can push them.
So, it's a philosophical kind of bug. Your call, I guess.
Cheers,
Michael
--
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
git://git.kernel.org/pub/scm/docs/man-pages/man-pages.git
man-pages online: http://www.kernel.org/doc/man-pages/online_pages.html
Found a bug? http://www.kernel.org/doc/man-pages/reporting_bugs.html
next prev parent reply other threads:[~2009-02-08 22:28 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-08 18:25 Michael Kerrisk
2009-02-08 19:29 ` Davide Libenzi
2009-02-08 20:46 ` Davide Libenzi
2009-02-08 21:18 ` Michael Kerrisk
2009-02-08 21:22 ` Davide Libenzi
2009-02-08 21:26 ` Michael Kerrisk
2009-02-08 21:29 ` Michael Kerrisk
2009-02-08 21:50 ` Davide Libenzi
2009-02-08 21:53 ` Michael Kerrisk
2009-02-08 22:06 ` Davide Libenzi
2009-02-08 22:10 ` [stable] " Greg KH
2009-02-08 22:27 ` Michael Kerrisk [this message]
2009-02-08 22:12 ` Michael Kerrisk
2009-02-09 2:24 ` Greg KH
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=cfd18e0f0902081427g78e56d61k6caac8ebaf1a2012@mail.gmail.com \
--to=mtk.manpages@googlemail.com \
--cc=akpm@linux-foundation.org \
--cc=davidel@xmailserver.org \
--cc=drepper@redhat.com \
--cc=greg@kroah.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-man@vger.kernel.org \
--cc=mtk.manpages@gmail.com \
--cc=stable@kernel.org \
--cc=tglx@linutronix.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®