Re: [PATCH] [RFC] blk-iocost stringop-overread warning workaround

From: Arnd Bergmann
Date: Mon Sep 20 2021 - 12:18:28 EST


On Mon, Sep 20, 2021 at 3:15 PM Arnd Bergmann <arnd@xxxxxxxxxx> wrote:
>
> From: Arnd Bergmann <arnd@xxxxxxxx>
>
> In some randconfig builds with gcc-11, I get a warning from
> the fortified string helpers:
>
> In function 'memcpy',
> inlined from 'ioc_cost_model_write' at block/blk-iocost.c:3345:2:
> include/linux/fortify-string.h:20:33: error: '__builtin_memcpy' reading 48 bytes from a region of size 0 [-Werror=stringop-overread]
> 20 | #define __underlying_memcpy __builtin_memcpy
> | ^
> include/linux/fortify-string.h:191:16: note: in expansion of macro '__underlying_memcpy'
> 191 | return __underlying_memcpy(p, q, size);
> | ^~~~~~~~~~~~~~~~~~~
>
> I don't see anything wrong in the code itself, so I suspect it's
> gcc doing something weird again. The only way I could find to make
> this warning go away is to hide the object using the RELOC_HIDE()
> macro, but this is really ugly and I hope someone has a better
> idea.
>
> Cc: Kees Cook <keescook@xxxxxxxxxxxx>
> Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx>

Please disregard my patch for now. After looking closer, I found that I had
applied a patch that accidentally removed the

KBUILD_CFLAGS += -fno-delete-null-pointer-checks

line from the top-level Makefile. If I put that line back, the warning
disappears.

Arnd