Commit ae290450 authored by Pablo Neira Ayuso's avatar Pablo Neira Ayuso

netfilter: flowtable: add nf_flow_offload_tuple() helper

Consolidate code to configure the flow_cls_offload structure into one
helper function.
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent 28b3a427
...@@ -592,23 +592,25 @@ static void nf_flow_offload_init(struct flow_cls_offload *cls_flow, ...@@ -592,23 +592,25 @@ static void nf_flow_offload_init(struct flow_cls_offload *cls_flow,
cls_flow->cookie = (unsigned long)tuple; cls_flow->cookie = (unsigned long)tuple;
} }
static int flow_offload_tuple_add(struct flow_offload_work *offload, static int nf_flow_offload_tuple(struct nf_flowtable *flowtable,
struct flow_offload *flow,
struct nf_flow_rule *flow_rule, struct nf_flow_rule *flow_rule,
enum flow_offload_tuple_dir dir) enum flow_offload_tuple_dir dir,
int priority, int cmd,
struct list_head *block_cb_list)
{ {
struct nf_flowtable *flowtable = offload->flowtable;
struct flow_cls_offload cls_flow = {}; struct flow_cls_offload cls_flow = {};
struct flow_block_cb *block_cb; struct flow_block_cb *block_cb;
struct netlink_ext_ack extack; struct netlink_ext_ack extack;
__be16 proto = ETH_P_ALL; __be16 proto = ETH_P_ALL;
int err, i = 0; int err, i = 0;
nf_flow_offload_init(&cls_flow, proto, offload->priority, nf_flow_offload_init(&cls_flow, proto, priority, cmd,
FLOW_CLS_REPLACE, &flow->tuplehash[dir].tuple, &extack);
&offload->flow->tuplehash[dir].tuple, &extack); if (cmd == FLOW_CLS_REPLACE)
cls_flow.rule = flow_rule->rule; cls_flow.rule = flow_rule->rule;
list_for_each_entry(block_cb, &flowtable->flow_block.cb_list, list) { list_for_each_entry(block_cb, block_cb_list, list) {
err = block_cb->cb(TC_SETUP_CLSFLOWER, &cls_flow, err = block_cb->cb(TC_SETUP_CLSFLOWER, &cls_flow,
block_cb->cb_priv); block_cb->cb_priv);
if (err < 0) if (err < 0)
...@@ -620,23 +622,22 @@ static int flow_offload_tuple_add(struct flow_offload_work *offload, ...@@ -620,23 +622,22 @@ static int flow_offload_tuple_add(struct flow_offload_work *offload,
return i; return i;
} }
static void flow_offload_tuple_del(struct flow_offload_work *offload, static int flow_offload_tuple_add(struct flow_offload_work *offload,
struct nf_flow_rule *flow_rule,
enum flow_offload_tuple_dir dir) enum flow_offload_tuple_dir dir)
{ {
struct nf_flowtable *flowtable = offload->flowtable; return nf_flow_offload_tuple(offload->flowtable, offload->flow,
struct flow_cls_offload cls_flow = {}; flow_rule, dir, offload->priority,
struct flow_block_cb *block_cb; FLOW_CLS_REPLACE,
struct netlink_ext_ack extack; &offload->flowtable->flow_block.cb_list);
__be16 proto = ETH_P_ALL; }
nf_flow_offload_init(&cls_flow, proto, offload->priority,
FLOW_CLS_DESTROY,
&offload->flow->tuplehash[dir].tuple, &extack);
list_for_each_entry(block_cb, &flowtable->flow_block.cb_list, list)
block_cb->cb(TC_SETUP_CLSFLOWER, &cls_flow, block_cb->cb_priv);
set_bit(NF_FLOW_HW_DEAD, &offload->flow->flags); static void flow_offload_tuple_del(struct flow_offload_work *offload,
enum flow_offload_tuple_dir dir)
{
nf_flow_offload_tuple(offload->flowtable, offload->flow, NULL, dir,
offload->priority, FLOW_CLS_DESTROY,
&offload->flowtable->flow_block.cb_list);
} }
static int flow_offload_rule_add(struct flow_offload_work *offload, static int flow_offload_rule_add(struct flow_offload_work *offload,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment