* [PATCH] arm64: sme: Use STR P to clear FFR context field in streaming SVE mode
@ 2023-06-28 15:56 Will Deacon
2023-06-28 17:04 ` Mark Brown
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Will Deacon @ 2023-06-28 15:56 UTC (permalink / raw)
To: catalin.marinas, linux-arm-kernel
Cc: Will Deacon, Mark Brown, Mark Rutland, Naresh Kamboju,
Linux Kernel Functional Testing
The FFR is a predicate register which can vary between 16 and 256 bits
in size depending upon the configured vector length. When saving the
SVE state in streaming SVE mode, the FFR register is inaccessible and
so commit 9f5848665788 ("arm64/sve: Make access to FFR optional") simply
clears the FFR field of the in-memory context structure. Unfortunately,
it achieves this using an unconditional 8-byte store and so if the SME
vector length is anything other than 64 bytes in size we will either
fail to clear the entire field or, worse, we will corrupt memory
immediately following the structure. This has led to intermittent kfence
splats in CI [1] and can trigger kmalloc Redzone corruption messages
when running the 'fp-stress' kselftest:
| =============================================================================
| BUG kmalloc-1k (Not tainted): kmalloc Redzone overwritten
| -----------------------------------------------------------------------------
|
| 0xffff000809bf1e22-0xffff000809bf1e27 @offset=7714. First byte 0x0 instead of 0xcc
| Allocated in do_sme_acc+0x9c/0x220 age=2613 cpu=1 pid=531
| __kmalloc+0x8c/0xcc
| do_sme_acc+0x9c/0x220
| ...
Replace the 8-byte store with a store of a predicate register which has
been zero-initialised with PFALSE, ensuring that the entire field is
cleared in memory.
[1] https://lore.kernel.org/r/CA+G9fYtU7HsV0R0dp4XEH5xXHSJFw8KyDf5VQrLLfMxWfxQkag@mail.gmail.com
Cc: Mark Brown <broonie@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Naresh Kamboju <naresh.kamboju@linaro.org>
Fixes: 9f5848665788 ("arm64/sve: Make access to FFR optional")
Reported-by: Linux Kernel Functional Testing <lkft@linaro.org>
Signed-off-by: Will Deacon <will@kernel.org>
---
arch/arm64/include/asm/fpsimdmacros.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/arm64/include/asm/fpsimdmacros.h b/arch/arm64/include/asm/fpsimdmacros.h
index cd03819a3b68..cdf6a35e3994 100644
--- a/arch/arm64/include/asm/fpsimdmacros.h
+++ b/arch/arm64/include/asm/fpsimdmacros.h
@@ -316,12 +316,12 @@
_for n, 0, 15, _sve_str_p \n, \nxbase, \n - 16
cbz \save_ffr, 921f
_sve_rdffr 0
- _sve_str_p 0, \nxbase
- _sve_ldr_p 0, \nxbase, -16
b 922f
921:
- str xzr, [x\nxbase] // Zero out FFR
+ _sve_pfalse 0 // Zero out FFR
922:
+ _sve_str_p 0, \nxbase
+ _sve_ldr_p 0, \nxbase, -16
mrs x\nxtmp, fpsr
str w\nxtmp, [\xpfpsr]
mrs x\nxtmp, fpcr
--
2.41.0.162.gfafddb0af9-goog
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] arm64: sme: Use STR P to clear FFR context field in streaming SVE mode
2023-06-28 15:56 [PATCH] arm64: sme: Use STR P to clear FFR context field in streaming SVE mode Will Deacon
@ 2023-06-28 17:04 ` Mark Brown
2023-06-28 17:24 ` Catalin Marinas
2023-06-29 6:43 ` Anders Roxell
2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2023-06-28 17:04 UTC (permalink / raw)
To: Will Deacon
Cc: catalin.marinas, linux-arm-kernel, Mark Rutland, Naresh Kamboju,
Linux Kernel Functional Testing
[-- Attachment #1.1: Type: text/plain, Size: 871 bytes --]
On Wed, Jun 28, 2023 at 04:56:05PM +0100, Will Deacon wrote:
> The FFR is a predicate register which can vary between 16 and 256 bits
> in size depending upon the configured vector length. When saving the
> SVE state in streaming SVE mode, the FFR register is inaccessible and
> so commit 9f5848665788 ("arm64/sve: Make access to FFR optional") simply
> clears the FFR field of the in-memory context structure. Unfortunately,
> it achieves this using an unconditional 8-byte store and so if the SME
> vector length is anything other than 64 bytes in size we will either
> fail to clear the entire field or, worse, we will corrupt memory
> immediately following the structure. This has led to intermittent kfence
> splats in CI [1] and can trigger kmalloc Redzone corruption messages
> when running the 'fp-stress' kselftest:
Reviewed-by: Mark Brown <broonie@kernel.org>
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
[-- Attachment #2: Type: text/plain, Size: 176 bytes --]
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] arm64: sme: Use STR P to clear FFR context field in streaming SVE mode
2023-06-28 15:56 [PATCH] arm64: sme: Use STR P to clear FFR context field in streaming SVE mode Will Deacon
2023-06-28 17:04 ` Mark Brown
@ 2023-06-28 17:24 ` Catalin Marinas
2023-06-29 6:43 ` Anders Roxell
2 siblings, 0 replies; 4+ messages in thread
From: Catalin Marinas @ 2023-06-28 17:24 UTC (permalink / raw)
To: linux-arm-kernel, Will Deacon
Cc: Mark Brown, Mark Rutland, Naresh Kamboju,
Linux Kernel Functional Testing
On Wed, 28 Jun 2023 16:56:05 +0100, Will Deacon wrote:
> The FFR is a predicate register which can vary between 16 and 256 bits
> in size depending upon the configured vector length. When saving the
> SVE state in streaming SVE mode, the FFR register is inaccessible and
> so commit 9f5848665788 ("arm64/sve: Make access to FFR optional") simply
> clears the FFR field of the in-memory context structure. Unfortunately,
> it achieves this using an unconditional 8-byte store and so if the SME
> vector length is anything other than 64 bytes in size we will either
> fail to clear the entire field or, worse, we will corrupt memory
> immediately following the structure. This has led to intermittent kfence
> splats in CI [1] and can trigger kmalloc Redzone corruption messages
> when running the 'fp-stress' kselftest:
>
> [...]
Applied to arm64 (for-next/core), thanks!
[1/1] arm64: sme: Use STR P to clear FFR context field in streaming SVE mode
https://git.kernel.org/arm64/c/1c297ec19245
--
Catalin
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] arm64: sme: Use STR P to clear FFR context field in streaming SVE mode
2023-06-28 15:56 [PATCH] arm64: sme: Use STR P to clear FFR context field in streaming SVE mode Will Deacon
2023-06-28 17:04 ` Mark Brown
2023-06-28 17:24 ` Catalin Marinas
@ 2023-06-29 6:43 ` Anders Roxell
2 siblings, 0 replies; 4+ messages in thread
From: Anders Roxell @ 2023-06-29 6:43 UTC (permalink / raw)
To: Will Deacon
Cc: catalin.marinas, linux-arm-kernel, Mark Brown, Mark Rutland,
Naresh Kamboju, Linux Kernel Functional Testing
On Wed, 28 Jun 2023 at 17:56, Will Deacon <will@kernel.org> wrote:
>
> The FFR is a predicate register which can vary between 16 and 256 bits
> in size depending upon the configured vector length. When saving the
> SVE state in streaming SVE mode, the FFR register is inaccessible and
> so commit 9f5848665788 ("arm64/sve: Make access to FFR optional") simply
> clears the FFR field of the in-memory context structure. Unfortunately,
> it achieves this using an unconditional 8-byte store and so if the SME
> vector length is anything other than 64 bytes in size we will either
> fail to clear the entire field or, worse, we will corrupt memory
> immediately following the structure. This has led to intermittent kfence
> splats in CI [1] and can trigger kmalloc Redzone corruption messages
> when running the 'fp-stress' kselftest:
Tested-by: Anders Roxell <anders.roxell@linaro.org>
I applied your patch on next-20230628 and ran the kselftest-arm64
tests over night...
I've not been able to reproduce "BUG: KFENCE: memory corruption in
fpsimd_release_task".
Cheers,
Anders
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-06-29 6:44 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-28 15:56 [PATCH] arm64: sme: Use STR P to clear FFR context field in streaming SVE mode Will Deacon
2023-06-28 17:04 ` Mark Brown
2023-06-28 17:24 ` Catalin Marinas
2023-06-29 6:43 ` Anders Roxell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).