All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] perf: prevent overflow in size calculation
@ 2012-07-20  0:13 Cody Schafer
  2012-07-20  0:49 ` Namhyung Kim
  0 siblings, 1 reply; 7+ messages in thread
From: Cody Schafer @ 2012-07-20  0:13 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo
  Cc: Ingo Molnar, Paul Mackerras, Peter Zijlstra, Sukadev Bhattiprolu,
	LKML, Cody Schafer

A large enough symbol size causes an overflow in the size parameter to the
histogram allocation, leading to a segfault in symbol__inc_addr_samples later
on when this histogram is accessed.

In the case of being called via perf-report, this returns back and
gracefully ignores the sample, eventually ignoring the chained return
value of perf_session_deliver_event in flush_sample_queue.

Signed-off-by: Cody Schafer <cody@linux.vnet.ibm.com>
---
 tools/perf/util/annotate.c |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/tools/perf/util/annotate.c b/tools/perf/util/annotate.c
index 8069dfb..6f78f20 100644
--- a/tools/perf/util/annotate.c
+++ b/tools/perf/util/annotate.c
@@ -426,8 +426,13 @@ int symbol__alloc_hist(struct symbol *sym)
 {
 	struct annotation *notes = symbol__annotation(sym);
 	const size_t size = symbol__size(sym);
-	size_t sizeof_sym_hist = (sizeof(struct sym_hist) + size * sizeof(u64));
+	size_t sizeof_sym_hist;
 
+	/* Check for overflow when calculating sizeof_sym_hist */
+	if (size > (SIZE_MAX / sizeof(u64)))
+		return -1;
+
+	sizeof_sym_hist = (sizeof(struct sym_hist) + size * sizeof(u64));
 	notes->src = zalloc(sizeof(*notes->src) + symbol_conf.nr_events * sizeof_sym_hist);
 	if (notes->src == NULL)
 		return -1;
-- 
1.7.9.5


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

end of thread, other threads:[~2012-07-25 19:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-20  0:13 [PATCH] perf: prevent overflow in size calculation Cody Schafer
2012-07-20  0:49 ` Namhyung Kim
2012-07-20  2:49   ` [PATCH v2] " Cody Schafer
2012-07-20  2:57     ` Cody P Schafer
2012-07-20  3:05       ` [PATCH v3] " Cody Schafer
2012-07-25 19:33         ` [tip:perf/core] perf annotate: Prevent " tip-bot for Cody Schafer
2012-07-20  2:51   ` [PATCH] perf: prevent " Cody P Schafer

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.