From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Jakub Kicinski <jakub.kicinski@netronome.com>
Cc: netfilter-devel@vger.kernel.org, davem@davemloft.net,
netdev@vger.kernel.org, jiri@resnulli.us, saeedm@mellanox.com,
vishal@chelsio.com, vladbu@mellanox.com, ecree@solarflare.com
Subject: Re: [PATCH net-next,v5 3/4] net: flow_offload: mangle action at byte level
Date: Thu, 17 Oct 2019 18:11:57 +0200 [thread overview]
Message-ID: <20191017161157.rr4lrolsjbnmk3ke@salvia> (raw)
In-Reply-To: <20191016163651.230b60e1@cakuba.netronome.com>
Hello Jakub,
On Wed, Oct 16, 2019 at 04:36:51PM -0700, Jakub Kicinski wrote:
> Let's see if I can recount the facts:
> (1) this is a "improvement" to simplify driver work but driver
> developers (Ed and I) don't like it;
Ed requested to support for partial mangling of header fields. This
patchset already supports for this, eg. mangle one single byte of a
TCP port.
> (2) it's supposed to simplify things yet it makes the code longer;
The driver codebase is simplified at the cost of adding more frontend
code which is common to everyone.
drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_flower.c | 162 +++---------
drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_flower.h | 40 ---
drivers/net/ethernet/mellanox/mlx5/core/en_tc.c | 80 ++----
drivers/net/ethernet/netronome/nfp/flower/action.c | 191 ++++++--------
> (3) it causes loss of functionality (looks like a single u32 changing
> both sport and dport is rejected by the IR since it wouldn't
> match fields);
Not correct.
tc filter add dev eth0 protocol ip \
parent ffff: \
pref 11 \
flower ip_proto tcp \
dst_port 80 \
src_ip 1.1.2.3/24 \
action pedit ex munge tcp src 2004 \
action pedit ex munge tcp dst 80
This results in two independent tc pedit actions:
* One tc pedit action with one single key, with value 0xd4070000 /
0x0000ffff.
* Another tc pedit action with one single key, with value 0x00005000
/ 0xffff0000.
This works perfectly with this patchset.
> (4) at v5 it still is buggy (see below).
That, I can fix, thank you for reporting.
> The motivation for this patch remains unclear.
The motivation is to provide a representation for drivers that is
easier to interpret. Have a look at the nfp driver and tell me if it
not easier to follow. This is already saving complexity from the
drivers.
Thank you.
next prev parent reply other threads:[~2019-10-17 16:12 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-14 22:10 [PATCH net-next,v5 0/4] flow_offload: update mangle action representation Pablo Neira Ayuso
2019-10-14 22:10 ` [PATCH net-next,v5 1/4] net: flow_offload: flip mangle action mask Pablo Neira Ayuso
2019-10-15 6:05 ` Jiri Pirko
2019-10-14 22:10 ` [PATCH net-next,v5 2/4] net: flow_offload: bitwise AND on mangle action value field Pablo Neira Ayuso
2019-10-15 6:12 ` Jiri Pirko
2019-10-14 22:10 ` [PATCH net-next,v5 3/4] net: flow_offload: mangle action at byte level Pablo Neira Ayuso
2019-10-15 8:48 ` kbuild test robot
2019-10-15 8:48 ` [RFC PATCH] net: flow_offload: tc_proto_udp_hdr[] can be static kbuild test robot
2019-10-16 23:36 ` [PATCH net-next,v5 3/4] net: flow_offload: mangle action at byte level Jakub Kicinski
2019-10-17 16:11 ` Pablo Neira Ayuso [this message]
2019-10-17 16:22 ` Pablo Neira Ayuso
2019-10-17 17:59 ` Edward Cree
2019-10-17 18:02 ` David Miller
2019-10-17 17:30 ` Jakub Kicinski
2019-10-17 17:46 ` Pablo Neira Ayuso
2019-10-17 18:01 ` Edward Cree
2019-10-17 18:03 ` David Miller
2019-10-14 22:10 ` [PATCH net-next,v5 4/4] netfilter: nft_payload: packet mangling offload support Pablo Neira Ayuso
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=20191017161157.rr4lrolsjbnmk3ke@salvia \
--to=pablo@netfilter.org \
--cc=davem@davemloft.net \
--cc=ecree@solarflare.com \
--cc=jakub.kicinski@netronome.com \
--cc=jiri@resnulli.us \
--cc=netdev@vger.kernel.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=saeedm@mellanox.com \
--cc=vishal@chelsio.com \
--cc=vladbu@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