From: wenxu <wenxu@ucloud.cn>
To: unlisted-recipients:; (no To-header on input)
Cc: netfilter-devel@vger.kernel.org, Paul Blakey <paulb@mellanox.com>
Subject: Re: [PATCH nf-next v2 4/4] netfilter: nf_flow_table_offload: add tunnel encap/decap action offload support
Date: Thu, 21 Nov 2019 20:38:23 +0800 [thread overview]
Message-ID: <8d5790b8-8b65-8dc1-71a8-d331c600363f@ucloud.cn> (raw)
In-Reply-To: <1574330056-5377-5-git-send-email-wenxu@ucloud.cn>
Hi paul,
encap in this patch.
在 2019/11/21 17:54, wenxu@ucloud.cn 写道:
> From: wenxu <wenxu@ucloud.cn>
>
> This patch add tunnel encap decap action offload in the flowtable
> offload.
>
> Signed-off-by: wenxu <wenxu@ucloud.cn>
> ---
> v2: put encap/decap action before redirect action
>
> net/netfilter/nf_flow_table_offload.c | 47 +++++++++++++++++++++++++++++++++++
> 1 file changed, 47 insertions(+)
>
> diff --git a/net/netfilter/nf_flow_table_offload.c b/net/netfilter/nf_flow_table_offload.c
> index 656095c..36a5103 100644
> --- a/net/netfilter/nf_flow_table_offload.c
> +++ b/net/netfilter/nf_flow_table_offload.c
> @@ -469,6 +469,45 @@ static void flow_offload_redirect(const struct flow_offload *flow,
> dev_hold(rt->dst.dev);
> }
>
> +static void flow_offload_encap_tunnel(const struct flow_offload *flow,
> + enum flow_offload_tuple_dir dir,
> + struct nf_flow_rule *flow_rule)
> +{
> + struct flow_action_entry *entry;
> + struct dst_entry *dst;
> +
> + dst = flow->tuplehash[dir].tuple.dst_cache;
> + if (dst->lwtstate) {
> + struct ip_tunnel_info *tun_info;
> +
> + tun_info = lwt_tun_info(dst->lwtstate);
> + if (tun_info && (tun_info->mode & IP_TUNNEL_INFO_TX)) {
> + entry = flow_action_entry_next(flow_rule);
> + entry->id = FLOW_ACTION_TUNNEL_ENCAP;
> + entry->tunnel = tun_info;
> + }
> + }
> +}
> +
> +static void flow_offload_decap_tunnel(const struct flow_offload *flow,
> + enum flow_offload_tuple_dir dir,
> + struct nf_flow_rule *flow_rule)
> +{
> + struct flow_action_entry *entry;
> + struct dst_entry *dst;
> +
> + dst = flow->tuplehash[!dir].tuple.dst_cache;
> + if (dst->lwtstate) {
> + struct ip_tunnel_info *tun_info;
> +
> + tun_info = lwt_tun_info(dst->lwtstate);
> + if (tun_info && (tun_info->mode & IP_TUNNEL_INFO_TX)) {
> + entry = flow_action_entry_next(flow_rule);
> + entry->id = FLOW_ACTION_TUNNEL_DECAP;
> + }
> + }
> +}
> +
> int nf_flow_rule_route_ipv4(struct net *net, const struct flow_offload *flow,
> enum flow_offload_tuple_dir dir,
> struct nf_flow_rule *flow_rule)
> @@ -489,6 +528,10 @@ int nf_flow_rule_route_ipv4(struct net *net, const struct flow_offload *flow,
> flow->flags & FLOW_OFFLOAD_DNAT)
> flow_offload_ipv4_checksum(net, flow, flow_rule);
>
> + flow_offload_encap_tunnel(flow, dir, flow_rule);
> +
> + flow_offload_decap_tunnel(flow, dir, flow_rule);
> +
> flow_offload_redirect(flow, dir, flow_rule);
>
> return 0;
> @@ -512,6 +555,10 @@ int nf_flow_rule_route_ipv6(struct net *net, const struct flow_offload *flow,
> flow_offload_port_dnat(net, flow, dir, flow_rule);
> }
>
> + flow_offload_encap_tunnel(flow, dir, flow_rule);
> +
> + flow_offload_decap_tunnel(flow, dir, flow_rule);
> +
> flow_offload_redirect(flow, dir, flow_rule);
>
> return 0;
next prev parent reply other threads:[~2019-11-21 12:38 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-21 9:54 [PATCH nf-next v2 0/4] netfilter: nf_flow_table_offload: support tunnel offload wenxu
2019-11-21 9:54 ` [PATCH nf-next v2 1/4] netfilter: nf_flow_table_offload: refactor nf_flow_table_offload_setup to support indir setup wenxu
2019-11-21 12:36 ` wenxu
2019-11-21 9:54 ` [PATCH nf-next v2 2/4] netfilter: nf_flow_table_offload: add indr block setup support wenxu
2019-11-21 12:37 ` wenxu
2019-11-21 9:54 ` [PATCH nf-next v2 3/4] netfilter: nf_flow_table_offload: add tunnel match offload support wenxu
2019-11-21 12:37 ` wenxu
2019-11-24 21:07 ` kbuild test robot
2019-11-21 9:54 ` [PATCH nf-next v2 4/4] netfilter: nf_flow_table_offload: add tunnel encap/decap action " wenxu
2019-11-21 12:38 ` wenxu [this message]
2019-11-21 12:36 ` [PATCH nf-next v2 0/4] netfilter: nf_flow_table_offload: support tunnel offload wenxu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8d5790b8-8b65-8dc1-71a8-d331c600363f@ucloud.cn \
--to=wenxu@ucloud.cn \
--cc=netfilter-devel@vger.kernel.org \
--cc=paulb@mellanox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).