All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH nf] netfilter: ip6_tables: zero-initialize fragment offset
@ 2021-09-12 21:24 Jeremy Sowden
  2021-09-12 23:39 ` Florian Westphal
  2021-09-15 15:01 ` Pablo Neira Ayuso
  0 siblings, 2 replies; 4+ messages in thread
From: Jeremy Sowden @ 2021-09-12 21:24 UTC (permalink / raw)
  To: Pablo Neira Ayuso; +Cc: Netfilter Devel

ip6tables only sets the `IP6T_F_PROTO` flag on a rule if a protocol is
specified (`-p tcp`, for example).  However, if the flag is not set,
`ip6_packet_match` doesn't call `ipv6_find_hdr` for the skb, in which
case the fragment offset is left uninitialized and a garbage value is
passed to each matcher.

Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
---
 net/ipv6/netfilter/ip6_tables.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net/ipv6/netfilter/ip6_tables.c b/net/ipv6/netfilter/ip6_tables.c
index de2cf3943b91..a579ea14a69b 100644
--- a/net/ipv6/netfilter/ip6_tables.c
+++ b/net/ipv6/netfilter/ip6_tables.c
@@ -273,6 +273,7 @@ ip6t_do_table(struct sk_buff *skb,
 	 * things we don't know, ie. tcp syn flag or ports).  If the
 	 * rule is also a fragment-specific rule, non-fragments won't
 	 * match it. */
+	acpar.fragoff = 0;
 	acpar.hotdrop = false;
 	acpar.state   = state;
 
-- 
2.33.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-09-15 15:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-12 21:24 [PATCH nf] netfilter: ip6_tables: zero-initialize fragment offset Jeremy Sowden
2021-09-12 23:39 ` Florian Westphal
2021-09-13  9:28   ` Jeremy Sowden
2021-09-15 15:01 ` Pablo Neira Ayuso

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.