perf evsel: Add missing overflow check for TRANSACTION
authorAdrian Hunter <[email protected]>
Fri, 1 Nov 2013 13:51:36 +0000 (15:51 +0200)
committerArnaldo Carvalho de Melo <[email protected]>
Mon, 4 Nov 2013 15:44:01 +0000 (12:44 -0300)
Add missing overflow check for PERF_SAMPLE_TRANSACTION in
perf_evsel__parse_sample().

Signed-off-by: Adrian Hunter <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Mike Galbraith <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Stephane Eranian <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/util/evsel.c

index 47bbf03aa7efac9c8bac15b7a778e037e033d1de..b121717ce42ae375c7cf7ff992715a95963eba75 100644 (file)
@@ -1481,6 +1481,7 @@ int perf_evsel__parse_sample(struct perf_evsel *evsel, union perf_event *event,
 
        data->transaction = 0;
        if (type & PERF_SAMPLE_TRANSACTION) {
+               OVERFLOW_CHECK_u64(array);
                data->transaction = *array;
                array++;
        }