summaryrefslogtreecommitdiffstats
path: root/scripts/leaking_addresses.pl
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2021-09-29 15:02:18 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-11-26 11:36:06 +0100
commit6193591e95c37f427357492fde009c3bf3b0f093 (patch)
tree2a3c58656534040313842e8119fb7be7ae2e7ee1 /scripts/leaking_addresses.pl
parentab363b3734fb9545d1b0bf9997e3f8329fc37ad1 (diff)
downloadlinux-stable-6193591e95c37f427357492fde009c3bf3b0f093.tar.gz
linux-stable-6193591e95c37f427357492fde009c3bf3b0f093.tar.bz2
linux-stable-6193591e95c37f427357492fde009c3bf3b0f093.zip
leaking_addresses: Always print a trailing newline
[ Upstream commit cf2a85efdade117e2169d6e26641016cbbf03ef0 ] For files that lack trailing newlines and match a leaking address (e.g. wchan[1]), the leaking_addresses.pl report would run together with the next line, making things look corrupted. Unconditionally remove the newline on input, and write it back out on output. [1] https://lore.kernel.org/all/20210103142726.GC30643@xsang-OptiPlex-9020/ Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://lkml.kernel.org/r/20211008111626.151570317@infradead.org Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'scripts/leaking_addresses.pl')
-rwxr-xr-xscripts/leaking_addresses.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/leaking_addresses.pl b/scripts/leaking_addresses.pl
index 6a897788f5a7..6e4b0f7ae38c 100755
--- a/scripts/leaking_addresses.pl
+++ b/scripts/leaking_addresses.pl
@@ -456,8 +456,9 @@ sub parse_file
open my $fh, "<", $file or return;
while ( <$fh> ) {
+ chomp;
if (may_leak_address($_)) {
- print $file . ': ' . $_;
+ printf("$file: $_\n");
}
}
close $fh;