]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
riscv: kvm: Use endian-specific __lelong for NACL shared memory
authorSean Chang <seanwascoding@gmail.com>
Mon, 8 Jun 2026 15:52:52 +0000 (23:52 +0800)
committerAnup Patel <anup@brainfault.org>
Sun, 14 Jun 2026 05:39:41 +0000 (11:09 +0530)
When compiling with sparse enabled (C=2), bitwise type warnings are
triggered in the RISC-V KVM implementation. This occurs because the
user-space data unboxing macro '__get_user_asm' performs implicit
casting on restricted types without forcing the compiler's compliance.

Additionally, raw 'unsigned long *' pointers are used to access the
SBI NACL shared memory, whereas the RISC-V SBI specification mandates
that these structures must follow little-endian byte ordering.

Fix these by:
1. Adding a '__force' cast to '__get_user_asm()' to safely suppress
   implicit cast warnings during user-space data fetching.
2. Introducing the '__lelong' type macro, which dynamically resolves to
   '__le32' or '__le64' depending on XLEN, and replacing 'unsigned long *'
   with '__lelong *' to enforce proper compile-time endianness checks.

Signed-off-by: Sean Chang <seanwascoding@gmail.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
Link: https://lore.kernel.org/r/20260608155252.4292-1-seanwascoding@gmail.com
Signed-off-by: Anup Patel <anup@brainfault.org>
arch/riscv/include/asm/kvm_nacl.h
arch/riscv/include/asm/uaccess.h
arch/riscv/kvm/nacl.c

index 4124d5e06a0ff1f6528cc91c23383de544c0fa61..f45407bcaa26aff288835f75bbef37dd7b2b9807 100644 (file)
@@ -60,9 +60,11 @@ int kvm_riscv_nacl_init(void);
 #ifdef CONFIG_32BIT
 #define lelong_to_cpu(__x)     le32_to_cpu(__x)
 #define cpu_to_lelong(__x)     cpu_to_le32(__x)
+#define __lelong                __le32
 #else
 #define lelong_to_cpu(__x)     le64_to_cpu(__x)
 #define cpu_to_lelong(__x)     cpu_to_le64(__x)
+#define __lelong                __le64
 #endif
 
 #define nacl_shmem()                                                   \
@@ -70,7 +72,7 @@ int kvm_riscv_nacl_init(void);
 
 #define nacl_scratch_read_long(__shmem, __offset)                      \
 ({                                                                     \
-       unsigned long *__p = (__shmem) +                                \
+       __lelong *__p = (__shmem) +                                     \
                             SBI_NACL_SHMEM_SCRATCH_OFFSET +            \
                             (__offset);                                \
        lelong_to_cpu(*__p);                                            \
@@ -78,7 +80,7 @@ int kvm_riscv_nacl_init(void);
 
 #define nacl_scratch_write_long(__shmem, __offset, __val)              \
 do {                                                                   \
-       unsigned long *__p = (__shmem) +                                \
+       __lelong *__p = (__shmem) +                                     \
                             SBI_NACL_SHMEM_SCRATCH_OFFSET +            \
                             (__offset);                                \
        *__p = cpu_to_lelong(__val);                                    \
@@ -87,7 +89,7 @@ do {                                                                  \
 #define nacl_scratch_write_longs(__shmem, __offset, __array, __count)  \
 do {                                                                   \
        unsigned int __i;                                               \
-       unsigned long *__p = (__shmem) +                                \
+       __lelong *__p = (__shmem) +                                     \
                             SBI_NACL_SHMEM_SCRATCH_OFFSET +            \
                             (__offset);                                \
        for (__i = 0; __i < (__count); __i++)                           \
@@ -168,7 +170,7 @@ __kvm_riscv_nacl_hfence(__shmem,                                    \
 
 #define nacl_csr_read(__shmem, __csr)                                  \
 ({                                                                     \
-       unsigned long *__a = (__shmem) + SBI_NACL_SHMEM_CSR_OFFSET;     \
+       __lelong *__a = (__shmem) + SBI_NACL_SHMEM_CSR_OFFSET;          \
        lelong_to_cpu(__a[SBI_NACL_SHMEM_CSR_INDEX(__csr)]);            \
 })
 
@@ -176,7 +178,7 @@ __kvm_riscv_nacl_hfence(__shmem,                                    \
 do {                                                                   \
        void *__s = (__shmem);                                          \
        unsigned int __i = SBI_NACL_SHMEM_CSR_INDEX(__csr);             \
-       unsigned long *__a = (__s) + SBI_NACL_SHMEM_CSR_OFFSET;         \
+       __lelong *__a = (__s) + SBI_NACL_SHMEM_CSR_OFFSET;              \
        u8 *__b = (__s) + SBI_NACL_SHMEM_DBITMAP_OFFSET;                \
        __a[__i] = cpu_to_lelong(__val);                                \
        __b[__i >> 3] |= 1U << (__i & 0x7);                             \
@@ -186,7 +188,7 @@ do {                                                                        \
 ({                                                                     \
        void *__s = (__shmem);                                          \
        unsigned int __i = SBI_NACL_SHMEM_CSR_INDEX(__csr);             \
-       unsigned long *__a = (__s) + SBI_NACL_SHMEM_CSR_OFFSET;         \
+       __lelong *__a = (__s) + SBI_NACL_SHMEM_CSR_OFFSET;              \
        u8 *__b = (__s) + SBI_NACL_SHMEM_DBITMAP_OFFSET;                \
        unsigned long __r = lelong_to_cpu(__a[__i]);                    \
        __a[__i] = cpu_to_lelong(__val);                                \
index 11c9886c3b704b2bc72ddb2fd892cf2c52ede4fd..5d4ec15584cfa4364aa37f606d3346c1822f38d2 100644 (file)
@@ -112,7 +112,7 @@ do {                                                                \
                _ASM_EXTABLE_UACCESS_ERR(1b, %l2, %0)           \
                : "=&r" (__tmp)                                 \
                : "m" (*(ptr)) : : label);                      \
-       (x) = (__typeof__(x))(unsigned long)__tmp;              \
+       (x) = (__force __typeof__(x))(unsigned long)__tmp;      \
 } while (0)
 #else /* !CONFIG_CC_HAS_ASM_GOTO_OUTPUT */
 #define __get_user_asm(insn, x, ptr, label)                    \
index 08a95ad9ada2c17d9b4b8cf629eae3219aa11133..6f9f8963e9ddccac8fa0e7f1e2e929fb467ba232 100644 (file)
@@ -20,7 +20,7 @@ void __kvm_riscv_nacl_hfence(void *shmem,
                             unsigned long page_count)
 {
        int i, ent = -1, try_count = 5;
-       unsigned long *entp;
+       __lelong *entp;
 
 again:
        for (i = 0; i < SBI_NACL_SHMEM_HFENCE_ENTRY_MAX; i++) {