Skip to content

Commit

Permalink
netfilter: nf_flow_table: in flow_offload_lookup, skip entries being …
Browse files Browse the repository at this point in the history
…deleted

Preparation for sending flows back to the slow path

Signed-off-by: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
  • Loading branch information
Felix Fietkau authored and Pablo Neira Ayuso committed Apr 24, 2018
1 parent 59c466d commit ba03137
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions net/netfilter/nf_flow_table_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,21 @@ struct flow_offload_tuple_rhash *
flow_offload_lookup(struct nf_flowtable *flow_table,
struct flow_offload_tuple *tuple)
{
return rhashtable_lookup_fast(&flow_table->rhashtable, tuple,
nf_flow_offload_rhash_params);
struct flow_offload_tuple_rhash *tuplehash;
struct flow_offload *flow;
int dir;

tuplehash = rhashtable_lookup_fast(&flow_table->rhashtable, tuple,
nf_flow_offload_rhash_params);
if (!tuplehash)
return NULL;

dir = tuplehash->tuple.dir;
flow = container_of(tuplehash, struct flow_offload, tuplehash[dir]);
if (flow->flags & (FLOW_OFFLOAD_DYING | FLOW_OFFLOAD_TEARDOWN))
return NULL;

return tuplehash;
}
EXPORT_SYMBOL_GPL(flow_offload_lookup);

Expand Down

0 comments on commit ba03137

Please sign in to comment.