Skip to content

Commit

Permalink
netfilter: nf_tables_offload: add nft_flow_cls_offload_setup()
Browse files Browse the repository at this point in the history
Add helper function to set up the flow_cls_offload object.

Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
  • Loading branch information
Pablo Neira Ayuso committed Oct 23, 2019
1 parent b582888 commit c5d2752
Showing 1 changed file with 24 additions and 13 deletions.
37 changes: 24 additions & 13 deletions net/netfilter/nf_tables_offload.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,30 +155,41 @@ int nft_chain_offload_priority(struct nft_base_chain *basechain)
return 0;
}

static void nft_flow_cls_offload_setup(struct flow_cls_offload *cls_flow,
const struct nft_base_chain *basechain,
const struct nft_rule *rule,
const struct nft_flow_rule *flow,
enum flow_cls_command command)
{
struct netlink_ext_ack extack;
__be16 proto = ETH_P_ALL;

memset(cls_flow, 0, sizeof(*cls_flow));

if (flow)
proto = flow->proto;

nft_flow_offload_common_init(&cls_flow->common, proto,
basechain->ops.priority, &extack);
cls_flow->command = command;
cls_flow->cookie = (unsigned long) rule;
if (flow)
cls_flow->rule = flow->rule;
}

static int nft_flow_offload_rule(struct nft_chain *chain,
struct nft_rule *rule,
struct nft_flow_rule *flow,
enum flow_cls_command command)
{
struct flow_cls_offload cls_flow = {};
struct flow_cls_offload cls_flow;
struct nft_base_chain *basechain;
struct netlink_ext_ack extack;
__be16 proto = ETH_P_ALL;

if (!nft_is_base_chain(chain))
return -EOPNOTSUPP;

basechain = nft_base_chain(chain);

if (flow)
proto = flow->proto;

nft_flow_offload_common_init(&cls_flow.common, proto,
basechain->ops.priority, &extack);
cls_flow.command = command;
cls_flow.cookie = (unsigned long) rule;
if (flow)
cls_flow.rule = flow->rule;
nft_flow_cls_offload_setup(&cls_flow, basechain, rule, flow, command);

return nft_setup_cb_call(TC_SETUP_CLSFLOWER, &cls_flow,
&basechain->flow_block.cb_list);
Expand Down

0 comments on commit c5d2752

Please sign in to comment.