All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][GIT PULL][v2.6.36] tracing: t_start: reset FTRACE_ITER_HASH in case of seek/pread
@ 2010-09-10  3:24 Steven Rostedt
  2010-09-10  6:05 ` Ingo Molnar
  0 siblings, 1 reply; 2+ messages in thread
From: Steven Rostedt @ 2010-09-10  3:24 UTC (permalink / raw)
  To: LKML; +Cc: Ingo Molnar, Robert Swiecki, Eugene Teo, stable, Chris Wright


Ingo,

The previous fixed only fixed lseek, Chris's fix also handles pread().

Please pull the latest tip/perf/urgent tree, which can be found at:

  git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace.git
tip/perf/urgent


Chris Wright (1):
      tracing: t_start: reset FTRACE_ITER_HASH in case of seek/pread

----
 kernel/trace/ftrace.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
---------------------------
commit df09162550fbb53354f0c88e85b5d0e6129ee9cc
Author: Chris Wright <chrisw@sous-sol.org>
Date:   Thu Sep 9 16:34:59 2010 -0700

    tracing: t_start: reset FTRACE_ITER_HASH in case of seek/pread
    
    Be sure to avoid entering t_show() with FTRACE_ITER_HASH set without
    having properly started the iterator to iterate the hash.  This case is
    degenerate and, as discovered by Robert Swiecki, can cause t_hash_show()
    to misuse a pointer.  This causes a NULL ptr deref with possible security
    implications.  Tracked as CVE-2010-3079.
    
    Cc: Robert Swiecki <swiecki@google.com>
    Cc: Eugene Teo <eugene@redhat.com>
    Cc: <stable@kernel.org>
    Signed-off-by: Chris Wright <chrisw@sous-sol.org>
    Signed-off-by: Steven Rostedt <rostedt@goodmis.org>

diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
index 83a16e9..fa7ece6 100644
--- a/kernel/trace/ftrace.c
+++ b/kernel/trace/ftrace.c
@@ -1510,6 +1510,8 @@ static void *t_start(struct seq_file *m, loff_t *pos)
 		if (*pos > 0)
 			return t_hash_start(m, pos);
 		iter->flags |= FTRACE_ITER_PRINTALL;
+		/* reset in case of seek/pread */
+		iter->flags &= ~FTRACE_ITER_HASH;
 		return iter;
 	}
 



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

* Re: [PATCH][GIT PULL][v2.6.36] tracing: t_start: reset FTRACE_ITER_HASH in case of seek/pread
  2010-09-10  3:24 [PATCH][GIT PULL][v2.6.36] tracing: t_start: reset FTRACE_ITER_HASH in case of seek/pread Steven Rostedt
@ 2010-09-10  6:05 ` Ingo Molnar
  0 siblings, 0 replies; 2+ messages in thread
From: Ingo Molnar @ 2010-09-10  6:05 UTC (permalink / raw)
  To: Steven Rostedt; +Cc: LKML, Robert Swiecki, Eugene Teo, stable, Chris Wright


* Steven Rostedt <rostedt@goodmis.org> wrote:

> 
> Ingo,
> 
> The previous fixed only fixed lseek, Chris's fix also handles pread().
> 
> Please pull the latest tip/perf/urgent tree, which can be found at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace.git
> tip/perf/urgent
> 
> 
> Chris Wright (1):
>       tracing: t_start: reset FTRACE_ITER_HASH in case of seek/pread
> 
> ----
>  kernel/trace/ftrace.c |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)

Pulled, thanks Steve!

	Ingo

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

end of thread, other threads:[~2010-09-10  6:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-10  3:24 [PATCH][GIT PULL][v2.6.36] tracing: t_start: reset FTRACE_ITER_HASH in case of seek/pread Steven Rostedt
2010-09-10  6:05 ` Ingo Molnar

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.