netfilter: flowtable: Set offload timeout when adding flow
authorRoi Dayan <roid@mellanox.com>
Mon, 3 Aug 2020 07:33:05 +0000 (10:33 +0300)
committerPablo Neira Ayuso <pablo@netfilter.org>
Mon, 3 Aug 2020 10:37:24 +0000 (12:37 +0200)
On heavily loaded systems the GC can take time to go over all existing
conns and reset their timeout. At that time other calls like from
nf_conntrack_in() can call of nf_ct_is_expired() and see the conn as
expired. To fix this when we set the offload bit we should also reset
the timeout instead of counting on GC to finish first iteration over
all conns before the initial timeout.

Fixes: 90964016e5d3 ("netfilter: nf_conntrack: add IPS_OFFLOAD status bit")
Signed-off-by: Roi Dayan <roid@mellanox.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nf_flow_table_core.c

index b1eb5272b3792252e1de32dc00a2223a9ec6ee0c..4f7a567c536e2d090b466ed8ca2ed1d65aa03f7c 100644 (file)
@@ -243,6 +243,8 @@ int flow_offload_add(struct nf_flowtable *flow_table, struct flow_offload *flow)
                return err;
        }
 
+       nf_ct_offload_timeout(flow->ct);
+
        if (nf_flowtable_hw_offload(flow_table)) {
                __set_bit(NF_FLOW_HW, &flow->flags);
                nf_flow_offload_add(flow_table, flow);