[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1333129114-22117-2-git-send-email-andi@firstfloor.org>
Date: Fri, 30 Mar 2012 10:38:34 -0700
From: Andi Kleen <andi@...stfloor.org>
To: acme@...hat.com
Cc: linux-kernel@...r.kernel.org, Andi Kleen <ak@...ux.intel.com>
Subject: [PATCH 2/2] perf tools: Fix record sample overlap check for callchains
From: Andi Kleen <ak@...ux.intel.com>
perf record checks for buffer overflow, but checked for the wrong
size for callchains. callchains are 8 bytes each, not 1.
Signed-off-by: Andi Kleen <ak@...ux.intel.com>
---
tools/perf/util/evsel.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/perf/util/evsel.c b/tools/perf/util/evsel.c
index f421f7c..90c0756 100644
--- a/tools/perf/util/evsel.c
+++ b/tools/perf/util/evsel.c
@@ -550,7 +550,7 @@ int perf_event__parse_sample(const union perf_event *event, u64 type,
data->callchain = (struct ip_callchain *)array;
- if (sample_overlap(event, array, data->callchain->nr))
+ if (sample_overlap(event, array, (1 + data->callchain->nr) * 8))
return -EFAULT;
array += 1 + data->callchain->nr;
--
1.7.7.6
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists