[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1625196871-2780-1-git-send-email-wenxu@ucloud.cn>
Date: Fri, 2 Jul 2021 11:34:31 +0800
From: wenxu@...oud.cn
To: marcelo.leitner@...il.com
Cc: davem@...emloft.net, kuba@...nel.org, netdev@...r.kernel.org,
jhs@...atatu.com
Subject: [PATCH] net/sched: act_ct: fix err check for nf_conntrack_confirm
From: wenxu <wenxu@...oud.cn>
The confirm operation should be checked. If there are any failed,
the packet should be dropped like in ovs and netfilter.
Fixes: b57dc7c13ea9 ("net/sched: Introduce action ct")
Signed-off-by: wenxu <wenxu@...oud.cn>
---
net/sched/act_ct.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net/sched/act_ct.c b/net/sched/act_ct.c
index a656baa..a62f404 100644
--- a/net/sched/act_ct.c
+++ b/net/sched/act_ct.c
@@ -1026,7 +1026,8 @@ static int tcf_ct_act(struct sk_buff *skb, const struct tc_action *a,
/* This will take care of sending queued events
* even if the connection is already confirmed.
*/
- nf_conntrack_confirm(skb);
+ if (nf_conntrack_confirm(skb) != NF_ACCEPT)
+ goto drop;
}
if (!skip_add)
--
1.8.3.1
Powered by blists - more mailing lists