Re: [PATCH] netfilter: ebtables: fix fortify warnings

From: Florian Westphal
Date: Tue Aug 08 2023 - 12:41:53 EST


GONG, Ruiqi <gongruiqi@xxxxxxxxxxxxxxx> wrote:
> From: "GONG, Ruiqi" <gongruiqi1@xxxxxxxxxx>
>
> When compiling with gcc 13 and CONFIG_FORTIFY_SOURCE=y, the following
> warning appears:
>
> In function ‘fortify_memcpy_chk’,
> inlined from ‘size_entry_mwt’ at net/bridge/netfilter/ebtables.c:2118:2:
> ./include/linux/fortify-string.h:592:25: error: call to ‘__read_overflow2_field’
> declared with attribute warning: detected read beyond size of field (2nd parameter);
> maybe use struct_group()? [-Werror=attribute-warning]
> 592 | __read_overflow2_field(q_size_field, size);
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> The compiler is complaining:
>
> memcpy(&offsets[1], &entry->watchers_offset,
> sizeof(offsets) - sizeof(offsets[0]));
>
> where memcpy reads beyong &entry->watchers_offset to copy
> {watchers,target,next}_offset altogether into offsets[]. Silence the
> warning by wrapping these three up via struct_group().
>
> Signed-off-by: GONG, Ruiqi <gongruiqi1@xxxxxxxxxx>
> ---
> include/uapi/linux/netfilter_bridge/ebtables.h | 14 ++++++++------
> net/bridge/netfilter/ebtables.c | 3 +--
> 2 files changed, 9 insertions(+), 8 deletions(-)
>
> diff --git a/include/uapi/linux/netfilter_bridge/ebtables.h b/include/uapi/linux/netfilter_bridge/ebtables.h
> index a494cf43a755..e634da196d08 100644
> --- a/include/uapi/linux/netfilter_bridge/ebtables.h
> +++ b/include/uapi/linux/netfilter_bridge/ebtables.h
> @@ -182,12 +182,14 @@ struct ebt_entry {
> unsigned char sourcemsk[ETH_ALEN];
> unsigned char destmac[ETH_ALEN];
> unsigned char destmsk[ETH_ALEN];
> - /* sizeof ebt_entry + matches */
> - unsigned int watchers_offset;
> - /* sizeof ebt_entry + matches + watchers */
> - unsigned int target_offset;
> - /* sizeof ebt_entry + matches + watchers + target */
> - unsigned int next_offset;
> + struct_group(offsets,
> + /* sizeof ebt_entry + matches */

This is an UAPI header, I think you need to use __struct_group here.