* [PATCH] KVM: arm64: Stop sparse from moaning at __hyp_this_cpu_ptr
@ 2020-06-08 8:57 Marc Zyngier
2020-06-08 15:00 ` Andrew Scull
0 siblings, 1 reply; 3+ messages in thread
From: Marc Zyngier @ 2020-06-08 8:57 UTC (permalink / raw)
To: kvm, kvmarm, linux-arm-kernel
Cc: kernel-team, James Morse, Julien Thierry, Suzuki K Poulose
Sparse complains that __hyp_this_cpu_ptr() returns something
that is flagged noderef and not in the correct address space
(both being the result of the __percpu annotation).
Pretend that __hyp_this_cpu_ptr() knows what it is doing by
forcefully casting the pointer with __kernel __force.
Signed-off-by: Marc Zyngier <maz@kernel.org>
---
arch/arm64/include/asm/kvm_asm.h | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/arch/arm64/include/asm/kvm_asm.h b/arch/arm64/include/asm/kvm_asm.h
index 0c9b5fc4ba0a..82691406d493 100644
--- a/arch/arm64/include/asm/kvm_asm.h
+++ b/arch/arm64/include/asm/kvm_asm.h
@@ -81,12 +81,17 @@ extern u32 __kvm_get_mdcr_el2(void);
extern char __smccc_workaround_1_smc[__SMCCC_WORKAROUND_1_SMC_SZ];
-/* Home-grown __this_cpu_{ptr,read} variants that always work at HYP */
+/*
+ * Home-grown __this_cpu_{ptr,read} variants that always work at HYP,
+ * provided that sym is really a *symbol* and not a pointer obtained from
+ * a data structure. As for SHIFT_PERCPU_PTR(), the creative casting keeps
+ * sparse quiet.
+ */
#define __hyp_this_cpu_ptr(sym) \
({ \
void *__ptr = hyp_symbol_addr(sym); \
__ptr += read_sysreg(tpidr_el2); \
- (typeof(&sym))__ptr; \
+ (typeof(sym) __kernel __force *)__ptr; \
})
#define __hyp_this_cpu_read(sym) \
--
2.26.2
_______________________________________________
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] 3+ messages in thread* Re: [PATCH] KVM: arm64: Stop sparse from moaning at __hyp_this_cpu_ptr
2020-06-08 8:57 [PATCH] KVM: arm64: Stop sparse from moaning at __hyp_this_cpu_ptr Marc Zyngier
@ 2020-06-08 15:00 ` Andrew Scull
2020-06-08 16:31 ` Marc Zyngier
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Scull @ 2020-06-08 15:00 UTC (permalink / raw)
To: Marc Zyngier
Cc: kvm, Suzuki K Poulose, James Morse, Julien Thierry, kernel-team,
kvmarm, linux-arm-kernel
On Mon, Jun 08, 2020 at 09:57:31AM +0100, Marc Zyngier wrote:
> Sparse complains that __hyp_this_cpu_ptr() returns something
> that is flagged noderef and not in the correct address space
> (both being the result of the __percpu annotation).
>
> Pretend that __hyp_this_cpu_ptr() knows what it is doing by
> forcefully casting the pointer with __kernel __force.
>
> Signed-off-by: Marc Zyngier <maz@kernel.org>
> ---
> arch/arm64/include/asm/kvm_asm.h | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm64/include/asm/kvm_asm.h b/arch/arm64/include/asm/kvm_asm.h
> index 0c9b5fc4ba0a..82691406d493 100644
> --- a/arch/arm64/include/asm/kvm_asm.h
> +++ b/arch/arm64/include/asm/kvm_asm.h
> @@ -81,12 +81,17 @@ extern u32 __kvm_get_mdcr_el2(void);
>
> extern char __smccc_workaround_1_smc[__SMCCC_WORKAROUND_1_SMC_SZ];
>
> -/* Home-grown __this_cpu_{ptr,read} variants that always work at HYP */
> +/*
> + * Home-grown __this_cpu_{ptr,read} variants that always work at HYP,
> + * provided that sym is really a *symbol* and not a pointer obtained from
Look at `this_cpu_ptr` one thing that stood out was `__verify_pcpu_ptr`
that is documented to be suitable for used in custom per CPU macros. I
didn't get how it worked (a type check?) but maybe it would work here
to validate the argment was indeed a per CPU symbol?
> + * a data structure. As for SHIFT_PERCPU_PTR(), the creative casting keeps
> + * sparse quiet.
> + */
> #define __hyp_this_cpu_ptr(sym) \
> ({ \
> void *__ptr = hyp_symbol_addr(sym); \
> __ptr += read_sysreg(tpidr_el2); \
> - (typeof(&sym))__ptr; \
> + (typeof(sym) __kernel __force *)__ptr; \
> })
>
> #define __hyp_this_cpu_read(sym) \
_______________________________________________
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] 3+ messages in thread* Re: [PATCH] KVM: arm64: Stop sparse from moaning at __hyp_this_cpu_ptr
2020-06-08 15:00 ` Andrew Scull
@ 2020-06-08 16:31 ` Marc Zyngier
0 siblings, 0 replies; 3+ messages in thread
From: Marc Zyngier @ 2020-06-08 16:31 UTC (permalink / raw)
To: Andrew Scull
Cc: kvm, Suzuki K Poulose, James Morse, Julien Thierry, kernel-team,
kvmarm, linux-arm-kernel
On 2020-06-08 16:00, Andrew Scull wrote:
> On Mon, Jun 08, 2020 at 09:57:31AM +0100, Marc Zyngier wrote:
>> Sparse complains that __hyp_this_cpu_ptr() returns something
>> that is flagged noderef and not in the correct address space
>> (both being the result of the __percpu annotation).
>>
>> Pretend that __hyp_this_cpu_ptr() knows what it is doing by
>> forcefully casting the pointer with __kernel __force.
>>
>> Signed-off-by: Marc Zyngier <maz@kernel.org>
>> ---
>> arch/arm64/include/asm/kvm_asm.h | 9 +++++++--
>> 1 file changed, 7 insertions(+), 2 deletions(-)
>>
>> diff --git a/arch/arm64/include/asm/kvm_asm.h
>> b/arch/arm64/include/asm/kvm_asm.h
>> index 0c9b5fc4ba0a..82691406d493 100644
>> --- a/arch/arm64/include/asm/kvm_asm.h
>> +++ b/arch/arm64/include/asm/kvm_asm.h
>> @@ -81,12 +81,17 @@ extern u32 __kvm_get_mdcr_el2(void);
>>
>> extern char __smccc_workaround_1_smc[__SMCCC_WORKAROUND_1_SMC_SZ];
>>
>> -/* Home-grown __this_cpu_{ptr,read} variants that always work at HYP
>> */
>> +/*
>> + * Home-grown __this_cpu_{ptr,read} variants that always work at HYP,
>> + * provided that sym is really a *symbol* and not a pointer obtained
>> from
>
> Look at `this_cpu_ptr` one thing that stood out was `__verify_pcpu_ptr`
> that is documented to be suitable for used in custom per CPU macros. I
> didn't get how it worked (a type check?) but maybe it would work here
> to validate the argment was indeed a per CPU symbol?
It only works for sparse, but that is definitely a good addition while
we're fixing the sparse compliance.
Thanks,
M.
--
Jazz is not dead. It just smells funny...
_______________________________________________
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] 3+ messages in thread
end of thread, other threads:[~2020-06-08 16:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-08 8:57 [PATCH] KVM: arm64: Stop sparse from moaning at __hyp_this_cpu_ptr Marc Zyngier
2020-06-08 15:00 ` Andrew Scull
2020-06-08 16:31 ` Marc Zyngier
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).