From: Pablo Neira Ayuso <pablo@netfilter.org>
To: "Maciej Żenczykowski" <zenczykowski@gmail.com>
Cc: "Maciej Żenczykowski" <maze@google.com>,
"Florian Westphal" <fw@strlen.de>,
"Linux Network Development Mailing List" <netdev@vger.kernel.org>,
"Netfilter Development Mailing List"
<netfilter-devel@vger.kernel.org>
Subject: Re: [PATCH] libiptc.c: pragma disable a gcc compiler warning
Date: Thu, 14 May 2020 19:58:51 +0200 [thread overview]
Message-ID: <20200514175851.GA886@salvia> (raw)
In-Reply-To: <20200511213404.248715-1-zenczykowski@gmail.com>
On Mon, May 11, 2020 at 02:34:04PM -0700, Maciej Żenczykowski wrote:
> From: Maciej Żenczykowski <maze@google.com>
>
> Fixes:
> In file included from libip4tc.c:113:
> In function ‘iptcc_compile_chain’,
> inlined from ‘iptcc_compile_table’ at libiptc.c:1246:13,
> inlined from ‘iptc_commit’ at libiptc.c:2575:8,
> inlined from ‘iptc_commit’ at libiptc.c:2513:1:
> libiptc.c:1172:2: warning: writing 16 bytes into a region of size 0 [-Wstringop-overflow=]
> 1172 | memcpy(&foot->e.counters, &c->counters, sizeof(STRUCT_COUNTERS));
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> In file included from ../include/libiptc/libiptc.h:12,
> from libip4tc.c:29:
> libiptc.c: In function ‘iptc_commit’:
> ../include/linux/netfilter_ipv4/ip_tables.h:202:19: note: at offset 0 to object ‘entries’ with size 0 declared here
> 202 | struct ipt_entry entries[0];
> | ^~~~~~~
>
> Which was found via compilation on Fedora 32.
>
> Test: builds without warnings
> Signed-off-by: Maciej Żenczykowski <maze@google.com>
> ---
> libiptc/libiptc.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/libiptc/libiptc.c b/libiptc/libiptc.c
> index 58882015..1a92b267 100644
> --- a/libiptc/libiptc.c
> +++ b/libiptc/libiptc.c
> @@ -1169,7 +1169,10 @@ static int iptcc_compile_chain(struct xtc_handle *h, STRUCT_REPLACE *repl, struc
> else
> foot->target.verdict = RETURN;
> /* set policy-counters */
> +#pragma GCC diagnostic push
> +#pragma GCC diagnostic ignored "-Wstringop-overflow"
> memcpy(&foot->e.counters, &c->counters, sizeof(STRUCT_COUNTERS));
> +#pragma GCC diagnostic pop
Probably make a casting from foot->e.counters to the counters object
to make gcc happy?
prev parent reply other threads:[~2020-05-14 17:58 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-11 21:34 [PATCH] libiptc.c: pragma disable a gcc compiler warning Maciej Żenczykowski
2020-05-14 17:58 ` Pablo Neira Ayuso [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200514175851.GA886@salvia \
--to=pablo@netfilter.org \
--cc=fw@strlen.de \
--cc=maze@google.com \
--cc=netdev@vger.kernel.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=zenczykowski@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).