public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] perf: treat attr.config as u64 in perf_swevent_init()
@ 2013-04-13 19:49 Tommi Rantala
  2013-04-15 10:42 ` [tip:perf/urgent] perf: Treat " tip-bot for Tommi Rantala
  0 siblings, 1 reply; 4+ messages in thread
From: Tommi Rantala @ 2013-04-13 19:49 UTC (permalink / raw)
  To: Peter Zijlstra, Paul Mackerras, Ingo Molnar,
	Arnaldo Carvalho de Melo
  Cc: linux-kernel, davej, Tommi Rantala

Trinity discovered that we fail to check all 64 bits of attr.config
passed by user space, resulting to out-of-bounds access of the
perf_swevent_enabled array in sw_perf_event_destroy().

Introduced in commit b0a873ebb ("perf: Register PMU implementations").

Signed-off-by: Tommi Rantala <tt.rantala@gmail.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
 kernel/events/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/events/core.c b/kernel/events/core.c
index 59412d0..fff6420 100644
--- a/kernel/events/core.c
+++ b/kernel/events/core.c
@@ -5330,7 +5330,7 @@ static void sw_perf_event_destroy(struct perf_event *event)
 
 static int perf_swevent_init(struct perf_event *event)
 {
-	int event_id = event->attr.config;
+	u64 event_id = event->attr.config;
 
 	if (event->attr.type != PERF_TYPE_SOFTWARE)
 		return -ENOENT;
-- 
1.8.1.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [tip:perf/urgent] perf: Treat attr.config as u64 in perf_swevent_init()
  2013-04-13 19:49 [PATCH] perf: treat attr.config as u64 in perf_swevent_init() Tommi Rantala
@ 2013-04-15 10:42 ` tip-bot for Tommi Rantala
  2013-04-18 11:17   ` Peter Zijlstra
  0 siblings, 1 reply; 4+ messages in thread
From: tip-bot for Tommi Rantala @ 2013-04-15 10:42 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, paulus, hpa, mingo, a.p.zijlstra, acme, tglx,
	tt.rantala

Commit-ID:  8176cced706b5e5d15887584150764894e94e02f
Gitweb:     http://git.kernel.org/tip/8176cced706b5e5d15887584150764894e94e02f
Author:     Tommi Rantala <tt.rantala@gmail.com>
AuthorDate: Sat, 13 Apr 2013 22:49:14 +0300
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Mon, 15 Apr 2013 11:42:12 +0200

perf: Treat attr.config as u64 in perf_swevent_init()

Trinity discovered that we fail to check all 64 bits of
attr.config passed by user space, resulting to out-of-bounds
access of the perf_swevent_enabled array in
sw_perf_event_destroy().

Introduced in commit b0a873ebb ("perf: Register PMU
implementations").

Signed-off-by: Tommi Rantala <tt.rantala@gmail.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: davej@redhat.com
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Link: http://lkml.kernel.org/r/1365882554-30259-1-git-send-email-tt.rantala@gmail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 kernel/events/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/events/core.c b/kernel/events/core.c
index 7e0962e..4d3124b 100644
--- a/kernel/events/core.c
+++ b/kernel/events/core.c
@@ -5331,7 +5331,7 @@ static void sw_perf_event_destroy(struct perf_event *event)
 
 static int perf_swevent_init(struct perf_event *event)
 {
-	int event_id = event->attr.config;
+	u64 event_id = event->attr.config;
 
 	if (event->attr.type != PERF_TYPE_SOFTWARE)
 		return -ENOENT;

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [tip:perf/urgent] perf: Treat attr.config as u64 in perf_swevent_init()
  2013-04-15 10:42 ` [tip:perf/urgent] perf: Treat " tip-bot for Tommi Rantala
@ 2013-04-18 11:17   ` Peter Zijlstra
  2013-04-22 12:33     ` Vince Weaver
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Zijlstra @ 2013-04-18 11:17 UTC (permalink / raw)
  To: mingo, hpa, paulus, linux-kernel, acme, tglx, tt.rantala
  Cc: linux-tip-commits

On Mon, 2013-04-15 at 03:42 -0700, tip-bot for Tommi Rantala wrote:
> Commit-ID:  8176cced706b5e5d15887584150764894e94e02f
> Gitweb:     http://git.kernel.org/tip/8176cced706b5e5d15887584150764894e94e02f
> Author:     Tommi Rantala <tt.rantala@gmail.com>
> AuthorDate: Sat, 13 Apr 2013 22:49:14 +0300
> Committer:  Ingo Molnar <mingo@kernel.org>
> CommitDate: Mon, 15 Apr 2013 11:42:12 +0200
> 
> perf: Treat attr.config as u64 in perf_swevent_init()
> 
> Trinity discovered that we fail to check all 64 bits of
> attr.config passed by user space, resulting to out-of-bounds
> access of the perf_swevent_enabled array in
> sw_perf_event_destroy().

Gah, I so missed we could hide bits in the top word and then use them
in _destroy().

The alternative is of course to also truncate to int in _destroy(), but
yes keeping the natural size seems the best alternative.



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [tip:perf/urgent] perf: Treat attr.config as u64 in perf_swevent_init()
  2013-04-18 11:17   ` Peter Zijlstra
@ 2013-04-22 12:33     ` Vince Weaver
  0 siblings, 0 replies; 4+ messages in thread
From: Vince Weaver @ 2013-04-22 12:33 UTC (permalink / raw)
  To: Peter Zijlstra; +Cc: mingo, hpa, paulus, linux-kernel, acme, tglx, tt.rantala

On Thu, 18 Apr 2013, Peter Zijlstra wrote:

> On Mon, 2013-04-15 at 03:42 -0700, tip-bot for Tommi Rantala wrote:
> > Commit-ID:  8176cced706b5e5d15887584150764894e94e02f
> > Gitweb:     http://git.kernel.org/tip/8176cced706b5e5d15887584150764894e94e02f
> > Author:     Tommi Rantala <tt.rantala@gmail.com>
> > AuthorDate: Sat, 13 Apr 2013 22:49:14 +0300
> > Committer:  Ingo Molnar <mingo@kernel.org>
> > CommitDate: Mon, 15 Apr 2013 11:42:12 +0200
> > 
> > perf: Treat attr.config as u64 in perf_swevent_init()
> > 
> > Trinity discovered that we fail to check all 64 bits of
> > attr.config passed by user space, resulting to out-of-bounds
> > access of the perf_swevent_enabled array in
> > sw_perf_event_destroy().
> 
> Gah, I so missed we could hide bits in the top word and then use them
> in _destroy().
> 
> The alternative is of course to also truncate to int in _destroy(), but
> yes keeping the natural size seems the best alternative.

has this been marked for stable now that it's in 3.9-rc8?  It's trivial to 
oops/lock the kernel with a few line program and the problem has been 
around a while.

Vince


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-04-22 12:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-13 19:49 [PATCH] perf: treat attr.config as u64 in perf_swevent_init() Tommi Rantala
2013-04-15 10:42 ` [tip:perf/urgent] perf: Treat " tip-bot for Tommi Rantala
2013-04-18 11:17   ` Peter Zijlstra
2013-04-22 12:33     ` Vince Weaver

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox