netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] bpf: fix check of allowed specifiers in bpf_trace_printk
@ 2018-11-22 16:00 Martynas Pumputis
  2018-11-22 21:31 ` Daniel Borkmann
  0 siblings, 1 reply; 2+ messages in thread
From: Martynas Pumputis @ 2018-11-22 16:00 UTC (permalink / raw)
  To: netdev; +Cc: ast, daniel, m

A format string consisting of "%p" or "%s" followed by an invalid
specifier (e.g. "%p%\n" or "%s%") could pass the check which
would make format_decode (lib/vsprintf.c) to warn.

Reported-by: syzbot+1ec5c5ec949c4adaa0c4@syzkaller.appspotmail.com
Signed-off-by: Martynas Pumputis <m@lambda.lt>
---
 kernel/trace/bpf_trace.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/kernel/trace/bpf_trace.c b/kernel/trace/bpf_trace.c
index 08fcfe440c63..9ab05736e1a1 100644
--- a/kernel/trace/bpf_trace.c
+++ b/kernel/trace/bpf_trace.c
@@ -225,6 +225,8 @@ BPF_CALL_5(bpf_trace_printk, char *, fmt, u32, fmt_size, u64, arg1,
 						    (void *) (long) unsafe_addr,
 						    sizeof(buf));
 			}
+			if (fmt[i] == '%')
+				i--;
 			continue;
 		}
 
-- 
2.19.1

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

end of thread, other threads:[~2018-11-23  8:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-22 16:00 [PATCH] bpf: fix check of allowed specifiers in bpf_trace_printk Martynas Pumputis
2018-11-22 21:31 ` Daniel Borkmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).