Skip to content

Commit a63b662

Browse files
w1ldptrummakynes
authored andcommitted
net/sched: act_ct: additional checks for outdated flows
Current nf_flow_is_outdated() implementation considers any flow table flow which state diverged from its underlying CT connection status for teardown which can be problematic in the following cases: - Flow has never been offloaded to hardware in the first place either because flow table has hardware offload disabled (flag NF_FLOWTABLE_HW_OFFLOAD is not set) or because it is still pending on 'add' workqueue to be offloaded for the first time. The former is incorrect, the later generates excessive deletions and additions of flows. - Flow is already pending to be updated on the workqueue. Tearing down such flows will also generate excessive removals from the flow table, especially on highly loaded system where the latency to re-offload a flow via 'add' workqueue can be quite high. When considering a flow for teardown as outdated verify that it is both offloaded to hardware and doesn't have any pending updates. Fixes: 41f2c7c ("net/sched: act_ct: Fix promotion of offloaded unreplied tuple") Reviewed-by: Paul Blakey <[email protected]> Signed-off-by: Vlad Buslov <[email protected]> Signed-off-by: Pablo Neira Ayuso <[email protected]>
1 parent 735795f commit a63b662

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

net/sched/act_ct.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,8 @@ static int tcf_ct_flow_table_fill_actions(struct net *net,
281281
static bool tcf_ct_flow_is_outdated(const struct flow_offload *flow)
282282
{
283283
return test_bit(IPS_SEEN_REPLY_BIT, &flow->ct->status) &&
284+
test_bit(IPS_HW_OFFLOAD_BIT, &flow->ct->status) &&
285+
!test_bit(NF_FLOW_HW_PENDING, &flow->flags) &&
284286
!test_bit(NF_FLOW_HW_ESTABLISHED, &flow->flags);
285287
}
286288

0 commit comments

Comments
 (0)