mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [Bug report] __arch_hweight32/64 x86
@ 2023-06-26 20:49 Sebastian Sumpf
  2023-06-26 21:06 ` Borislav Petkov
  0 siblings, 1 reply; 7+ messages in thread
From: Sebastian Sumpf @ 2023-06-26 20:49 UTC (permalink / raw)
  To: tglx, mingo, bp, dave.hansen, x86; +Cc: linux-kernel

Hello kernel developers,

I recently stumbled over a bug in the inline assembly of '__arch_hweight32' and 
'__arch_hweight64'  in 'arch/x86/include/asm/arch_hweight.h' (present in 6.4 as 
well):

! asm (ALTERNATIVE("call __sw_hweight64", "popcntq %1, %0",
! X86_FEATURE_POPCNT)
! 			 : "="REG_OUT (res)
! 			 : REG_IN (w));

The 'ALTERNATIVE' macro checks for the popcnt feature. In case this fails the 
'__sw_hweight' C-function is called from inline assembly with rax and rdi as 
intput/output operands. However, the code does not contain a clobber list of any 
callee safe registers that might be touched by the '__sw_height64' C-function. 
Therefore, these registers will not be restored upon function return by the 
compiler. This leads to varying exceptions/bad behavior caused by the thus 
corrupted registers later on.

Kind regards,

Sebastian


-- 
Sebastian Sumpf
Genode Labs

http://www.genode-labs.com · http://genode.org

Genode Labs GmbH · Amtsgericht Dresden · HRB 28424 · Sitz Dresden
Geschäftsführer: Dr.-Ing. Norman Feske, Christian Helmuth




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

end of thread, other threads:[~2023-06-29  9:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-26 20:49 [Bug report] __arch_hweight32/64 x86 Sebastian Sumpf
2023-06-26 21:06 ` Borislav Petkov
2023-06-26 21:42   ` Sebastian Sumpf
2023-06-26 22:41     ` Dave Hansen
2023-06-27  4:25       ` Borislav Petkov
2023-06-27 16:57         ` Sebastian Sumpf
2023-06-29  9:10         ` David Laight

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®