Netdev List
 help / color / mirror / Atom feed
* [PATCH] netfilter: fix nf_l4proto_log_invalid to log invalid packets
@ 2019-04-17 16:49 Andrei Vagin
  2019-04-17 20:37 ` Florian Westphal
  2019-04-22  8:38 ` Pablo Neira Ayuso
  0 siblings, 2 replies; 4+ messages in thread
From: Andrei Vagin @ 2019-04-17 16:49 UTC (permalink / raw)
  To: Florian Westphal; +Cc: David S. Miller, netfilter-devel, netdev, Andrei Vagin

It doesn't log a packet if sysctl_log_invalid isn't equal to protonum
OR sysctl_log_invalid isn't equal to IPPROTO_RAW. This sentence is
always true. I believe we need to replace OR to AND.

Cc: Florian Westphal <fw@strlen.de>
Fixes: c4f3db1595827 ("netfilter: conntrack: add and use nf_l4proto_log_invalid")
Signed-off-by: Andrei Vagin <avagin@gmail.com>
---
 net/netfilter/nf_conntrack_proto.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/netfilter/nf_conntrack_proto.c b/net/netfilter/nf_conntrack_proto.c
index b9403a266a2e..37bb530d848f 100644
--- a/net/netfilter/nf_conntrack_proto.c
+++ b/net/netfilter/nf_conntrack_proto.c
@@ -55,7 +55,7 @@ void nf_l4proto_log_invalid(const struct sk_buff *skb,
 	struct va_format vaf;
 	va_list args;
 
-	if (net->ct.sysctl_log_invalid != protonum ||
+	if (net->ct.sysctl_log_invalid != protonum &&
 	    net->ct.sysctl_log_invalid != IPPROTO_RAW)
 		return;
 
-- 
2.20.1


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

end of thread, other threads:[~2019-04-30  6:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-17 16:49 [PATCH] netfilter: fix nf_l4proto_log_invalid to log invalid packets Andrei Vagin
2019-04-17 20:37 ` Florian Westphal
2019-04-22  8:38 ` Pablo Neira Ayuso
2019-04-30  6:38   ` Dexuan-Linux Cui

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox