gcc-plugins/stackleak: Ignore .noinstr.text and .entry.text
authorKees Cook <keescook@chromium.org>
Sun, 6 Feb 2022 17:12:50 +0000 (09:12 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 13 Apr 2024 11:01:47 +0000 (13:01 +0200)
commit7e0bd07ce9655656ad0c55f5dfff563eecffa82f
tree433590e670a7c5232dc16ae1531af73b6fb88069
parent2d154a54c58f9c8375bfbea9f7e51ba3bfb2e43a
gcc-plugins/stackleak: Ignore .noinstr.text and .entry.text

commit ae978009fc013e3166c9f523f8b17e41a3c0286e upstream.

The .noinstr.text section functions may not have "current()" sanely
available. Similarly true for .entry.text, though such a check is
currently redundant. Add a check for both. In an x86_64 defconfig build,
the following functions no longer receive stackleak instrumentation:

__do_fast_syscall_32()
do_int80_syscall_32()
do_machine_check()
do_syscall_64()
exc_general_protection()
fixup_bad_iret()

Suggested-by: Peter Zijlstra <peterz@infradead.org>
Cc: Alexander Popov <alex.popov@linux.com>
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
scripts/gcc-plugins/stackleak_plugin.c