From: Oleg Nesterov <oleg@redhat.com>
To: Mathias Krause <minipli@googlemail.com>
Cc: Thomas Gleixner <tglx@linutronix.de>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Brad Spengler <spender@grsecurity.net>,
PaX Team <pageexec@freemail.hu>
Subject: Re: [PATCH] posix-timers: fix stack info leak in timer_create()
Date: Mon, 6 Oct 2014 00:28:58 +0200 [thread overview]
Message-ID: <20141005222858.GA12662@redhat.com> (raw)
In-Reply-To: <CA+rthh96tG+9ZjWa=9WyaWABbUyxJ2z6YVaX4ApL424c31yCRw@mail.gmail.com>
On 10/05, Mathias Krause wrote:
>
> On 5 October 2014 23:06, Oleg Nesterov <oleg@redhat.com> wrote:
> > On 10/04, Mathias Krause wrote:
> >>
> >> Cc: <stable@vger.kernel.org> # v2.6.28+
> >
> > not sure this is -stable material but I won't really argue.
> >
>
> This should fall into the class "security fixes". Info leaks like that
> -- if flagged as such -- got backported regularly in the past. They
> tend to get CVE IDs, even.
And imo, very often we do this for absolutely no reason. Like this fix
tries to do ;) But again, I won't really argue.
> >> --- a/kernel/time/posix-timers.c
> >> +++ b/kernel/time/posix-timers.c
> >> @@ -636,6 +636,7 @@ SYSCALL_DEFINE3(timer_create, const clockid_t, which_clock,
> >> goto out;
> >> }
> >> } else {
> >> + memset(&event.sigev_value, 0, sizeof(event.sigev_value));
> >> event.sigev_notify = SIGEV_SIGNAL;
> >> event.sigev_signo = SIGALRM;
> >> event.sigev_value.sival_int = new_timer->it_id;
> >
> > How about
> >
> > - event.sigev_value.sival_int = new_timer->it_id;
> > + event.sigev_value = (sigval_t) { .sival_int = new_timer_id };
> >
> > ?
>
> Oh, well. It's a matter of taste, I guess.
Sure.
> It won't fit mine ;) I
> think it makes it slightly less readable.
To me it looks more readable, that is why I suggested this change.
But of course, of course, this is subjective, so I won't insist.
So I think this patch is fine.
Oleg.
next prev parent reply other threads:[~2014-10-05 22:32 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-04 21:06 [PATCH] posix-timers: fix stack info leak in timer_create() Mathias Krause
2014-10-05 21:06 ` Oleg Nesterov
2014-10-05 21:24 ` Thomas Gleixner
2014-10-05 21:54 ` Mathias Krause
2014-10-05 22:28 ` Oleg Nesterov [this message]
2014-10-25 8:45 ` [tip:timers/urgent] posix-timers: Fix " tip-bot for Mathias Krause
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=20141005222858.GA12662@redhat.com \
--to=oleg@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=minipli@googlemail.com \
--cc=pageexec@freemail.hu \
--cc=spender@grsecurity.net \
--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