All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] perf core: apply calculated padding to PERF_SAMPLE_RAW output
@ 2020-05-19 13:26 Timo Beckers
  2023-03-14 19:27 ` Peter Zijlstra
  0 siblings, 1 reply; 3+ messages in thread
From: Timo Beckers @ 2020-05-19 13:26 UTC (permalink / raw)
  Cc: timo, Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Mark Rutland, Alexander Shishkin, Jiri Olsa, Namhyung Kim,
	open list:PERFORMANCE EVENTS SUBSYSTEM

Zero the amount of padding bytes determined in perf_prepare_sample().
This prevents garbage being read from the ring buffer after it has wrapped
the page boundary at least once.

Signed-off-by: Timo Beckers <timo@incline.eu>
---
 kernel/events/core.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/kernel/events/core.c b/kernel/events/core.c
index 80cf996a7f19..d4e0b003ece0 100644
--- a/kernel/events/core.c
+++ b/kernel/events/core.c
@@ -6807,8 +6807,16 @@ void perf_output_sample(struct perf_output_handle *handle,
 					break;
 				frag = frag->next;
 			} while (1);
-			if (frag->pad)
-				__output_skip(handle, NULL, frag->pad);
+			/*
+			 * The padding value is determined in
+			 * perf_prepare_sample() and is not
+			 * expected to exceed u64.
+			 */
+			if (frag->pad) {
+				u64 zero = 0;
+
+				__output_copy(handle, &zero, frag->pad);
+			}
 		} else {
 			struct {
 				u32	size;
-- 
2.26.2


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

end of thread, other threads:[~2023-03-16 16:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-19 13:26 [PATCH] perf core: apply calculated padding to PERF_SAMPLE_RAW output Timo Beckers
2023-03-14 19:27 ` Peter Zijlstra
2023-03-16 16:32   ` Timo Beckers

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.