DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Zhang, Qi Z" <qi.z.zhang@intel.com>
To: mocan <faicker.mo@ucloud.cn>, "Zhao1, Wei" <wei.zhao1@intel.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>
Subject: Re: [dpdk-dev] [PATCH] net/ixgbe: put 5tuple check in front to jump over ntuple filter case
Date: Wed, 26 Sep 2018 11:14:15 +0000	[thread overview]
Message-ID: <039ED4275CED7440929022BC67E70611532A6812@SHSMSX103.ccr.corp.intel.com> (raw)
In-Reply-To: <27452153.f1c7.16614f29e5f.Coremail.faicker.mo@ucloud.cn>

OK, got your point. We should not reject a possible valid fdir flow at n-tuple flow check stage.

Review-by: Qi Zhang <qi.z.zhang@intel.com>

Thanks
Qi

From: mocan [mailto:faicker.mo@ucloud.cn] 
Sent: Wednesday, September 26, 2018 4:16 PM
To: Zhang, Qi Z <qi.z.zhang@intel.com>
Cc: dev@dpdk.org
Subject: Re:RE: [dpdk-dev] [PATCH] net/ixgbe: put 5tuple check in front to jump over ntuple filter case

Hi Qi,
In ixgbe_flow_create function, ntuple filter is parsed first. 
If the flow is considered to be ntuple filter, it will not go on to judge ethertype filter, syn filter and fdir filter.
In the function ntuple_filter_to_5tuple, 5 tuple info is checked, but it's too late to jump over the ntuple filter if it's a fdir filter.






At 2018-09-21 23:48:37, "Zhang, Qi Z" <qi.z.zhang@intel.com> wrote:
>Hi Faicker:
>
>> -----Original Message-----
>> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of faicker.mo
>> Sent: Tuesday, September 18, 2018 1:49 PM
>> To: dev@dpdk.org
>> Cc: faicker.mo <faicker.mo@ucloud.cn>
>> Subject: [dpdk-dev] [PATCH] net/ixgbe: put 5tuple check in front to jump over
>> ntuple filter case
>> 
>> From: "faicker.mo" <faicker.mo@ucloud.cn>
>> 
>> Check in func ntuple_filter_to_5tuple is too late for fdir filter rule, add check
>> in func cons_parse_ntuple_filter.
>
>Would you explain more about the intention for this patch?
>Though it can be more fast to reject an invalid flow, but why it is too late in your case? 
>
>Thanks
>Qi
>
>
>> 
>> Signed-off-by: faicker.mo <faicker.mo@ucloud.cn>
>> ---
>>  drivers/net/ixgbe/ixgbe_flow.c | 29 +++++++++++++++++++++++++++++
>>  1 file changed, 29 insertions(+)
>> 
>> diff --git a/drivers/net/ixgbe/ixgbe_flow.c b/drivers/net/ixgbe/ixgbe_flow.c
>> index 1adf1b8..f0fafeb 100644
>> --- a/drivers/net/ixgbe/ixgbe_flow.c
>> +++ b/drivers/net/ixgbe/ixgbe_flow.c
>> @@ -363,6 +363,17 @@ const struct rte_flow_action *next_no_void_action(
>>  				item, "Not supported by ntuple filter");
>>  			return -rte_errno;
>>  		}
>> +		if ((ipv4_mask->hdr.src_addr != 0 &&
>> +			ipv4_mask->hdr.src_addr != UINT32_MAX) ||
>> +			(ipv4_mask->hdr.dst_addr != 0 &&
>> +			ipv4_mask->hdr.dst_addr != UINT32_MAX) ||
>> +			(ipv4_mask->hdr.next_proto_id != UINT8_MAX &&
>> +			ipv4_mask->hdr.next_proto_id != 0)) {
>> +			rte_flow_error_set(error,
>> +				EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
>> +				item, "Not supported by ntuple filter");
>> +			return -rte_errno;
>> +		}
>> 
>>  		filter->dst_ip_mask = ipv4_mask->hdr.dst_addr;
>>  		filter->src_ip_mask = ipv4_mask->hdr.src_addr; @@ -432,6 +443,15
>> @@ const struct rte_flow_action *next_no_void_action(
>>  				item, "Not supported by ntuple filter");
>>  			return -rte_errno;
>>  		}
>> +		if ((tcp_mask->hdr.src_port != 0 &&
>> +			tcp_mask->hdr.src_port != UINT16_MAX) ||
>> +			(tcp_mask->hdr.dst_port != 0 &&
>> +			tcp_mask->hdr.dst_port != UINT16_MAX)) {
>> +			rte_flow_error_set(error,
>> +				EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
>> +				item, "Not supported by ntuple filter");
>> +			return -rte_errno;
>> +		}
>> 
>>  		filter->dst_port_mask  = tcp_mask->hdr.dst_port;
>>  		filter->src_port_mask  = tcp_mask->hdr.src_port; @@ -467,6
>> +487,15 @@ const struct rte_flow_action *next_no_void_action(
>>  				item, "Not supported by ntuple filter");
>>  			return -rte_errno;
>>  		}
>> +		if ((udp_mask->hdr.src_port != 0 &&
>> +			udp_mask->hdr.src_port != UINT16_MAX) ||
>> +			(udp_mask->hdr.dst_port != 0 &&
>> +			udp_mask->hdr.dst_port != UINT16_MAX)) {
>> +			rte_flow_error_set(error,
>> +				EINVAL, RTE_FLOW_ERROR_TYPE_ITEM,
>> +				item, "Not supported by ntuple filter");
>> +			return -rte_errno;
>> +		}
>> 
>>  		filter->dst_port_mask = udp_mask->hdr.dst_port;
>>  		filter->src_port_mask = udp_mask->hdr.src_port;
>> --
>> 1.8.3.1
>> 
>

  reply	other threads:[~2018-09-26 11:16 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-18  5:48 faicker.mo
2018-09-21 15:48 ` Zhang, Qi Z
2018-09-26  8:15   ` mocan
2018-09-26 11:14     ` Zhang, Qi Z [this message]
2018-10-08  9:46       ` Zhao1, Wei
2018-10-10 18:36         ` Zhang, Qi Z
2018-10-11  8:10           ` Zhao1, Wei
2018-10-15  3:30             ` Zhang, Qi Z
2018-10-17  5:57               ` Zhao1, Wei
2018-10-19 17:10                 ` Zhang, Qi Z

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=039ED4275CED7440929022BC67E70611532A6812@SHSMSX103.ccr.corp.intel.com \
    --to=qi.z.zhang@intel.com \
    --cc=dev@dpdk.org \
    --cc=faicker.mo@ucloud.cn \
    --cc=wei.zhao1@intel.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).