> -----Original Message-----
> From: Nick Desaulniers <ndesaulni...@google.com>
> Sent: Monday, June 1, 2020 4:18 PM
> To: Moore, Robert <robert.mo...@intel.com>; Kaneda, Erik
> <erik.kan...@intel.com>; Wysocki, Rafael J <rafael.j.wyso...@intel.com>;
> Len Brown <l...@kernel.org>
> Cc: Ard Biesheuvel <a...@kernel.org>; dvyu...@google.com;
> gli...@google.com; guohan...@huawei.com; linux-arm-
> ker...@lists.infradead.org; linux-kernel@vger.kernel.org;
> lorenzo.pieral...@arm.com; mark.rutl...@arm.com;
> ndesaulni...@google.com; p...@google.com; r...@rjwysocki.net;
> w...@kernel.org; sta...@vger.kernel.org; linux-a...@vger.kernel.org;
> de...@acpica.org
> Subject: [PATCH] ACPICA: fix UBSAN warning using __builtin_offsetof
>
Hi,
 
> Will reported UBSAN warnings:
> UBSAN: null-ptr-deref in drivers/acpi/acpica/tbfadt.c:459:37
> UBSAN: null-ptr-deref in arch/arm64/kernel/smp.c:596:6
> 
> Looks like the emulated offsetof macro ACPI_OFFSET is causing these. We
> can avoid this by using the compiler builtin, __builtin_offsetof.

I'll take a look at this tomorrow
> 
> The non-kernel runtime of UBSAN would print:
> runtime error: member access within null pointer of type for this macro.

actypes.h is owned by ACPICA so we typically do not allow compiler-specific
extensions because the code is intended to be compiled using the C99 standard
without compiler extensions. We could allow this sort of thing in a 
Linux-specific
header file like include/acpi/platform/aclinux.h but I'll take a look at the 
error as well..

Erik
> 
> Link: https://lore.kernel.org/lkml/20200521100952.GA5360@willie-the-truck/
> Cc: sta...@vger.kernel.org
> Reported-by: Will Deacon <w...@kernel.org>
> Suggested-by: Ard Biesheuvel <a...@kernel.org>
> Signed-off-by: Nick Desaulniers <ndesaulni...@google.com>
> ---
>  include/acpi/actypes.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index
> 4defed58ea33..04359c70b198 100644
> --- a/include/acpi/actypes.h
> +++ b/include/acpi/actypes.h
> @@ -508,7 +508,7 @@ typedef u64 acpi_integer;
> 
>  #define ACPI_TO_POINTER(i)              ACPI_CAST_PTR (void, (acpi_size) (i))
>  #define ACPI_TO_INTEGER(p)              ACPI_PTR_DIFF (p, (void *) 0)
> -#define ACPI_OFFSET(d, f)               ACPI_PTR_DIFF (&(((d *) 0)->f), 
> (void *)
> 0)
> +#define ACPI_OFFSET(d, f)               __builtin_offsetof(d, f)
>  #define ACPI_PHYSADDR_TO_PTR(i)         ACPI_TO_POINTER(i)
>  #define ACPI_PTR_TO_PHYSADDR(i)         ACPI_TO_INTEGER(i)
> 
> --
> 2.27.0.rc2.251.g90737beb825-goog

Reply via email to