]> git.hungrycats.org Git - linux/commitdiff
tracing: Fix fields of struct trace_iterator that are zeroed by mistake
authorAndrew Vagin <avagin@openvz.org>
Fri, 2 Aug 2013 17:16:43 +0000 (21:16 +0400)
committerBen Hutchings <ben@decadent.org.uk>
Tue, 10 Sep 2013 00:57:20 +0000 (01:57 +0100)
commit ed5467da0e369e65b247b99eb6403cb79172bcda upstream.

tracing_read_pipe zeros all fields bellow "seq". The declaration contains
a comment about that, but it doesn't help.

The first field is "snapshot", it's true when current open file is
snapshot. Looks obvious, that it should not be zeroed.

The second field is "started". It was converted from cpumask_t to
cpumask_var_t (v2.6.28-4983-g4462344), in other words it was
converted from cpumask to pointer on cpumask.

Currently the reference on "started" memory is lost after the first read
from tracing_read_pipe and a proper object will never be freed.

The "started" is never dereferenced for trace_pipe, because trace_pipe
can't have the TRACE_FILE_ANNOTATE options.

Link: http://lkml.kernel.org/r/1375463803-3085183-1-git-send-email-avagin@openvz.org
Signed-off-by: Andrew Vagin <avagin@openvz.org>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
[bwh: Backported to 3.2: there's no snapshot field]
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
include/linux/ftrace_event.h
kernel/trace/trace.c

index c3da42dd22baf17cbf853e6defaed7796bfba950..82924bf2f34546f0584ba752016efde4b000d95b 100644 (file)
@@ -71,6 +71,8 @@ struct trace_iterator {
        /* trace_seq for __print_flags() and __print_symbolic() etc. */
        struct trace_seq        tmp_seq;
 
+       cpumask_var_t           started;
+
        /* The below is zeroed out in pipe_read */
        struct trace_seq        seq;
        struct trace_entry      *ent;
@@ -83,7 +85,7 @@ struct trace_iterator {
        loff_t                  pos;
        long                    idx;
 
-       cpumask_var_t           started;
+       /* All new field here will be zeroed out in pipe_read */
 };
 
 
index a584ad963da80c34c0df59fea434e1ff0cd9fc56..ce1067f819ccc853391280ca9e9fe542f7ef2e09 100644 (file)
@@ -3375,6 +3375,7 @@ waitagain:
        memset(&iter->seq, 0,
               sizeof(struct trace_iterator) -
               offsetof(struct trace_iterator, seq));
+       cpumask_clear(iter->started);
        iter->pos = -1;
 
        trace_event_read_lock();