lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Wed, 13 May 2020 19:12:16 -0400 (EDT)
From:   Mathieu Desnoyers <mathieu.desnoyers@...icios.com>
To:     Thomas Gleixner <tglx@...utronix.de>
Cc:     linux-kernel <linux-kernel@...r.kernel.org>, x86 <x86@...nel.org>,
        paulmck <paulmck@...nel.org>, Andy Lutomirski <luto@...nel.org>,
        Alexandre Chartre <alexandre.chartre@...cle.com>,
        Frederic Weisbecker <frederic@...nel.org>,
        Paolo Bonzini <pbonzini@...hat.com>,
        Sean Christopherson <sean.j.christopherson@...el.com>,
        Masami Hiramatsu <mhiramat@...nel.org>,
        Petr Mladek <pmladek@...e.com>, rostedt <rostedt@...dmis.org>,
        "Joel Fernandes, Google" <joel@...lfernandes.org>,
        Boris Ostrovsky <boris.ostrovsky@...cle.com>,
        Juergen Gross <jgross@...e.com>,
        Brian Gerst <brgerst@...il.com>,
        Josh Poimboeuf <jpoimboe@...hat.com>,
        Will Deacon <will@...nel.org>
Subject: Re: [patch V4 part 1 23/36] bug: Annotate WARN/BUG/stackfail as
 noinstr safe

----- On May 5, 2020, at 9:16 AM, Thomas Gleixner tglx@...utronix.de wrote:

> Warnings, bugs and stack protection fails from noinstr sections, e.g. low
> level and early entry code, are likely to be fatal.
> 
> Mark them as "safe" to be invoked from noinstr protected code to avoid
> annotating all usage sites. Getting the information out is important.

Why instrument at the x86 level (and miss other architectures) when this
could perhaps be done directly in the macro WARN_ON_ONCE(condition) in
generic code ?

> 
> Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
> ---
> arch/x86/include/asm/bug.h |    3 +++
> include/asm-generic/bug.h  |    9 +++++++--
> kernel/panic.c             |    4 +++-
> 3 files changed, 13 insertions(+), 3 deletions(-)
> 
> --- a/arch/x86/include/asm/bug.h
> +++ b/arch/x86/include/asm/bug.h
> @@ -70,13 +70,16 @@ do {									\
> #define HAVE_ARCH_BUG
> #define BUG()							\
> do {								\
> +	instr_begin();						\
> 	_BUG_FLAGS(ASM_UD2, 0);					\
> 	unreachable();						\
> } while (0)
> 
> #define __WARN_FLAGS(flags)					\
> do {								\
> +	instr_begin();						\
> 	_BUG_FLAGS(ASM_UD2, BUGFLAG_WARNING|(flags));		\
> +	instr_end();						\
> 	annotate_reachable();					\
> } while (0)

riscv, arm64, s390, powerpc, parisc and sh also have __WARN_FLAGS.

> 
> --- a/include/asm-generic/bug.h
> +++ b/include/asm-generic/bug.h
> @@ -83,14 +83,19 @@ extern __printf(4, 5)
> void warn_slowpath_fmt(const char *file, const int line, unsigned taint,
> 		       const char *fmt, ...);
> #define __WARN()		__WARN_printf(TAINT_WARN, NULL)
> -#define __WARN_printf(taint, arg...)					\
> -	warn_slowpath_fmt(__FILE__, __LINE__, taint, arg)
> +#define __WARN_printf(taint, arg...) do {				\
> +		instr_begin();						\
> +		warn_slowpath_fmt(__FILE__, __LINE__, taint, arg);	\
> +		instr_end();						\
> +	} while (0)
> #else
> extern __printf(1, 2) void __warn_printk(const char *fmt, ...);
> #define __WARN()		__WARN_FLAGS(BUGFLAG_TAINT(TAINT_WARN))
> #define __WARN_printf(taint, arg...) do {				\
> +		instr_begin();						\
> 		__warn_printk(arg);					\
> 		__WARN_FLAGS(BUGFLAG_NO_CUT_HERE | BUGFLAG_TAINT(taint));\
> +		instr_end();						\
> 	} while (0)
> #define WARN_ON_ONCE(condition) ({				\

Moving the instr_begin/end here should fix it ?

Thanks,

Mathieu

> 	int __ret_warn_on = !!(condition);			\
> --- a/kernel/panic.c
> +++ b/kernel/panic.c
> @@ -662,10 +662,12 @@ device_initcall(register_warn_debugfs);
>  * Called when gcc's -fstack-protector feature is used, and
>  * gcc detects corruption of the on-stack canary value
>  */
> -__visible void __stack_chk_fail(void)
> +__visible noinstr void __stack_chk_fail(void)
> {
> +	instr_begin();
> 	panic("stack-protector: Kernel stack is corrupted in: %pB",
> 		__builtin_return_address(0));
> +	instr_end();
> }
>  EXPORT_SYMBOL(__stack_chk_fail);

-- 
Mathieu Desnoyers
EfficiOS Inc.
http://www.efficios.com

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ