]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
leaking_addresses: Always print a trailing newline
authorKees Cook <keescook@chromium.org>
Wed, 29 Sep 2021 22:02:18 +0000 (15:02 -0700)
committerAndrea Righi <andrea.righi@canonical.com>
Tue, 7 Dec 2021 06:32:45 +0000 (07:32 +0100)
BugLink: https://bugs.launchpad.net/bugs/1951822
[ 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>
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
scripts/leaking_addresses.pl

index b2d8b8aa2d99eca75873bfa1a31fbbcd9f9fe13d..8f636a23bc3f24bf0c56a1f760596b5e724516fc 100755 (executable)
@@ -455,8 +455,9 @@ sub parse_file
 
        open my $fh, "<", $file or return;
        while ( <$fh> ) {
+               chomp;
                if (may_leak_address($_)) {
-                       print $file . ': ' . $_;
+                       printf("$file: $_\n");
                }
        }
        close $fh;