DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v1 0/2] support FDIR inner/outer field for tunnel packet
@ 2020-09-28  6:31 Zhirun Yan
  2020-09-28  6:31 ` [dpdk-dev] [PATCH v1 1/2] net/ice/base: add tunnel support for FDIR Zhirun Yan
  2020-09-28  6:31 ` [dpdk-dev] [PATCH v1 2/2] net/ice: support inner/outer L2/L3 field " Zhirun Yan
  0 siblings, 2 replies; 5+ messages in thread
From: Zhirun Yan @ 2020-09-28  6:31 UTC (permalink / raw)
  To: qi.z.zhang, dev; +Cc: yahui.cao, xiao.w.wang, simei.su, junfeng.guo, Zhirun Yan

support FDIR inner/outer field for tunnel packet
Enable VXLAN inner/outer L2/L3 fields.


Zhirun Yan (2):
  net/ice/base: add tunnel support for FDIR
  net/ice: support inner/outer L2/L3 field for FDIR

 drivers/net/ice/base/ice_fdir.c   |  7 ++++
 drivers/net/ice/base/ice_fdir.h   |  9 +++++
 drivers/net/ice/base/ice_flow.c   |  6 ++--
 drivers/net/ice/ice_fdir_filter.c | 59 +++++++++++++++++++++++++++++--
 4 files changed, 75 insertions(+), 6 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [dpdk-dev] [PATCH v1 1/2] net/ice/base: add tunnel support for FDIR
  2020-09-28  6:31 [dpdk-dev] [PATCH v1 0/2] support FDIR inner/outer field for tunnel packet Zhirun Yan
@ 2020-09-28  6:31 ` Zhirun Yan
  2020-09-28  6:31 ` [dpdk-dev] [PATCH v1 2/2] net/ice: support inner/outer L2/L3 field " Zhirun Yan
  1 sibling, 0 replies; 5+ messages in thread
From: Zhirun Yan @ 2020-09-28  6:31 UTC (permalink / raw)
  To: qi.z.zhang, dev; +Cc: yahui.cao, xiao.w.wang, simei.su, junfeng.guo, Zhirun Yan

Add struct to store outer part for tunnel rule.
Add vxlan ptype in ipv4 mac bitmap. So when create a vxlan rule, the
ptype group will be valid.

Signed-off-by: Zhirun Yan <zhirun.yan@intel.com>
---
 drivers/net/ice/base/ice_fdir.c | 7 +++++++
 drivers/net/ice/base/ice_fdir.h | 9 +++++++++
 drivers/net/ice/base/ice_flow.c | 6 +++---
 3 files changed, 19 insertions(+), 3 deletions(-)

diff --git a/drivers/net/ice/base/ice_fdir.c b/drivers/net/ice/base/ice_fdir.c
index aea388f2a..c15b232db 100644
--- a/drivers/net/ice/base/ice_fdir.c
+++ b/drivers/net/ice/base/ice_fdir.c
@@ -1057,6 +1057,13 @@ ice_fdir_get_gen_prgm_pkt(struct ice_hw *hw, struct ice_fdir_fltr *input,
 			loc[20] = ICE_FDIR_IPV4_PKT_FLAG_DF;
 		break;
 	case ICE_FLTR_PTYPE_NONF_IPV4_UDP:
+		ice_pkt_insert_mac_addr(pkt, input->ext_data_outer.dst_mac);
+		ice_pkt_insert_mac_addr(pkt + ETH_ALEN, input->ext_data_outer.src_mac);
+		ice_pkt_insert_u32(pkt, ICE_IPV4_SRC_ADDR_OFFSET,
+				   input->ip_outer.v4.dst_ip);
+		ice_pkt_insert_u32(pkt, ICE_IPV4_DST_ADDR_OFFSET,
+				   input->ip_outer.v4.src_ip);
+		ice_pkt_insert_u8(pkt, ICE_IPV4_TOS_OFFSET, input->ip_outer.v4.tos);
 		ice_pkt_insert_u32(loc, ICE_IPV4_DST_ADDR_OFFSET,
 				   input->ip.v4.src_ip);
 		ice_pkt_insert_u16(loc, ICE_IPV4_UDP_DST_PORT_OFFSET,
diff --git a/drivers/net/ice/base/ice_fdir.h b/drivers/net/ice/base/ice_fdir.h
index 7e00bb273..d363de385 100644
--- a/drivers/net/ice/base/ice_fdir.h
+++ b/drivers/net/ice/base/ice_fdir.h
@@ -181,6 +181,15 @@ struct ice_fdir_fltr {
 		struct ice_fdir_v6 v6;
 	} ip, mask;
 
+	/* for tunnel outer part */
+	union {
+		struct ice_fdir_v4 v4;
+		struct ice_fdir_v6 v6;
+	} ip_outer, mask_outer;
+
+	struct ice_fdir_extra ext_data_outer;
+	struct ice_fdir_extra ext_mask_outer;
+
 	struct ice_fdir_udp_gtp gtpu_data;
 	struct ice_fdir_udp_gtp gtpu_mask;
 
diff --git a/drivers/net/ice/base/ice_flow.c b/drivers/net/ice/base/ice_flow.c
index de5dfb228..35e8c59f6 100644
--- a/drivers/net/ice/base/ice_flow.c
+++ b/drivers/net/ice/base/ice_flow.c
@@ -222,7 +222,7 @@ static const u32 ice_ptypes_macvlan_il[] = {
  * include IPV4 other PTYPEs
  */
 static const u32 ice_ptypes_ipv4_ofos[] = {
-	0x1DC00000, 0x04000800, 0x00000000, 0x00000000,
+	0x1DC00000, 0x24000800, 0x00000000, 0x00000000,
 	0x00000000, 0x00000155, 0x00000000, 0x00000000,
 	0x00000000, 0x000FC000, 0x000002A0, 0x00000000,
 	0x00000000, 0x00000000, 0x00000000, 0x00000000,
@@ -236,7 +236,7 @@ static const u32 ice_ptypes_ipv4_ofos[] = {
  * IPV4 other PTYPEs
  */
 static const u32 ice_ptypes_ipv4_ofos_all[] = {
-	0x1DC00000, 0x04000800, 0x00000000, 0x00000000,
+	0x1DC00000, 0x24000800, 0x00000000, 0x00000000,
 	0x00000000, 0x00000155, 0x00000000, 0x00000000,
 	0x00000000, 0x000FC000, 0x83E0FAA0, 0x00000101,
 	0x00000000, 0x00000000, 0x00000000, 0x00000000,
@@ -434,7 +434,7 @@ static const u32 ice_ptypes_gre_of[] = {
 
 /* Packet types for packets with an Innermost/Last MAC header */
 static const u32 ice_ptypes_mac_il[] = {
-	0x00000000, 0x00000000, 0x00000000, 0x00000000,
+	0x00000000, 0x20000000, 0x00000000, 0x00000000,
 	0x00000000, 0x00000000, 0x00000000, 0x00000000,
 	0x00000000, 0x00000000, 0x00000000, 0x00000000,
 	0x00000000, 0x00000000, 0x00000000, 0x00000000,
-- 
2.25.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [dpdk-dev] [PATCH v1 2/2] net/ice: support inner/outer L2/L3 field for FDIR
  2020-09-28  6:31 [dpdk-dev] [PATCH v1 0/2] support FDIR inner/outer field for tunnel packet Zhirun Yan
  2020-09-28  6:31 ` [dpdk-dev] [PATCH v1 1/2] net/ice/base: add tunnel support for FDIR Zhirun Yan
@ 2020-09-28  6:31 ` Zhirun Yan
  2020-10-15  9:28   ` Cao, Yahui
  1 sibling, 1 reply; 5+ messages in thread
From: Zhirun Yan @ 2020-09-28  6:31 UTC (permalink / raw)
  To: qi.z.zhang, dev; +Cc: yahui.cao, xiao.w.wang, simei.su, junfeng.guo, Zhirun Yan

Distinguish inner/outer fields for parse pattern. So FDIR for tunnel
can be more flexible. Enable VXLAN inner/outer L3/L4 different fields
for FDIR.

Signed-off-by: Zhirun Yan <zhirun.yan@intel.com>
---
 drivers/net/ice/ice_fdir_filter.c | 59 +++++++++++++++++++++++++++++--
 1 file changed, 56 insertions(+), 3 deletions(-)

diff --git a/drivers/net/ice/ice_fdir_filter.c b/drivers/net/ice/ice_fdir_filter.c
index 175abcdd5..961528d17 100644
--- a/drivers/net/ice/ice_fdir_filter.c
+++ b/drivers/net/ice/ice_fdir_filter.c
@@ -56,6 +56,11 @@
 	ICE_INSET_SCTP_SRC_PORT | ICE_INSET_SCTP_DST_PORT)
 
 #define ICE_FDIR_INSET_VXLAN_IPV4 (\
+	ICE_FDIR_INSET_ETH | \
+	ICE_INSET_IPV4_SRC | ICE_INSET_IPV4_DST | \
+	ICE_INSET_IPV4_TOS | \
+	ICE_INSET_UDP_DST_PORT | \
+	ICE_INSET_TUN_DMAC | ICE_INSET_TUN_SMAC | \
 	ICE_INSET_TUN_IPV4_SRC | ICE_INSET_TUN_IPV4_DST)
 
 #define ICE_FDIR_INSET_VXLAN_IPV4_TCP (\
@@ -907,6 +912,7 @@ ice_fdir_input_set_parse(uint64_t inset, enum ice_flow_field *field)
 	};
 	static const struct ice_inset_map ice_inset_map[] = {
 		{ICE_INSET_DMAC, ICE_FLOW_FIELD_IDX_ETH_DA},
+		{ICE_INSET_SMAC, ICE_FLOW_FIELD_IDX_ETH_SA},
 		{ICE_INSET_ETHERTYPE, ICE_FLOW_FIELD_IDX_ETH_TYPE},
 		{ICE_INSET_IPV4_SRC, ICE_FLOW_FIELD_IDX_IPV4_SA},
 		{ICE_INSET_IPV4_DST, ICE_FLOW_FIELD_IDX_IPV4_DA},
@@ -1655,6 +1661,14 @@ ice_fdir_parse_pattern(__rte_unused struct ice_adapter *ad,
 	uint32_t vtc_flow_cpu;
 	uint16_t ether_type;
 	enum rte_flow_item_type next_type;
+	bool is_outer_part = true;
+
+	for (item = pattern; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
+		if (item->type == RTE_FLOW_ITEM_TYPE_VXLAN) {
+			tunnel_type = ICE_FDIR_TUNNEL_TYPE_VXLAN;
+			break;
+		}
+	}
 
 	for (item = pattern; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
 		if (item->last) {
@@ -1672,7 +1686,25 @@ ice_fdir_parse_pattern(__rte_unused struct ice_adapter *ad,
 			eth_mask = item->mask;
 			next_type = (item + 1)->type;
 
-			if (eth_spec && eth_mask) {
+			if (!(eth_spec && eth_mask))
+				break;
+
+			/* handle outer L2 fields */
+			if (is_outer_part && tunnel_type == ICE_FDIR_TUNNEL_TYPE_VXLAN) {
+				if (!rte_is_zero_ether_addr(&eth_mask->dst)) {
+					filter->outer_input_set |= ICE_INSET_DMAC;
+					rte_memcpy(&filter->input.ext_data_outer.dst_mac,
+						   &eth_spec->dst,
+						   RTE_ETHER_ADDR_LEN);
+				}
+
+				if (!rte_is_zero_ether_addr(&eth_mask->src)) {
+					filter->outer_input_set |= ICE_INSET_SMAC;
+					rte_memcpy(&filter->input.ext_data_outer.src_mac,
+						   &eth_spec->src,
+						   RTE_ETHER_ADDR_LEN);
+				}
+			} else {
 				if (!rte_is_zero_ether_addr(&eth_mask->dst)) {
 					input_set |= ICE_INSET_DMAC;
 					rte_memcpy(&filter->input.ext_data.dst_mac,
@@ -1714,7 +1746,27 @@ ice_fdir_parse_pattern(__rte_unused struct ice_adapter *ad,
 			ipv4_spec = item->spec;
 			ipv4_mask = item->mask;
 
-			if (ipv4_spec && ipv4_mask) {
+			if (!(ipv4_spec && ipv4_mask))
+				break;
+
+			/* handle outer L3 fields */
+			if (is_outer_part && tunnel_type == ICE_FDIR_TUNNEL_TYPE_VXLAN) {
+				if (ipv4_mask->hdr.dst_addr == UINT32_MAX) {
+					filter->outer_input_set |= ICE_INSET_IPV4_DST;
+					filter->input.ip_outer.v4.dst_ip =
+						ipv4_spec->hdr.dst_addr;
+				}
+				if (ipv4_mask->hdr.src_addr == UINT32_MAX) {
+					filter->outer_input_set |= ICE_INSET_IPV4_SRC;
+					filter->input.ip_outer.v4.src_ip =
+						ipv4_spec->hdr.src_addr;
+				}
+				if (ipv4_mask->hdr.type_of_service == UINT8_MAX) {
+					input_set |= ICE_INSET_IPV4_TOS;
+					filter->input.ip_outer.v4.tos =
+						ipv4_spec->hdr.type_of_service;
+				}
+			} else {
 				/* Check IPv4 mask and update input set */
 				if (ipv4_mask->hdr.version_ihl ||
 				    ipv4_mask->hdr.total_length ||
@@ -1944,6 +1996,8 @@ ice_fdir_parse_pattern(__rte_unused struct ice_adapter *ad,
 			break;
 		case RTE_FLOW_ITEM_TYPE_VXLAN:
 			l3 = RTE_FLOW_ITEM_TYPE_END;
+			is_outer_part = false;
+
 			vxlan_spec = item->spec;
 			vxlan_mask = item->mask;
 
@@ -1955,7 +2009,6 @@ ice_fdir_parse_pattern(__rte_unused struct ice_adapter *ad,
 				return -rte_errno;
 			}
 
-			tunnel_type = ICE_FDIR_TUNNEL_TYPE_VXLAN;
 			break;
 		case RTE_FLOW_ITEM_TYPE_GTPU:
 			l3 = RTE_FLOW_ITEM_TYPE_END;
-- 
2.25.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH v1 2/2] net/ice: support inner/outer L2/L3 field for FDIR
  2020-09-28  6:31 ` [dpdk-dev] [PATCH v1 2/2] net/ice: support inner/outer L2/L3 field " Zhirun Yan
@ 2020-10-15  9:28   ` Cao, Yahui
  2020-11-02  8:23     ` Yan, Zhirun
  0 siblings, 1 reply; 5+ messages in thread
From: Cao, Yahui @ 2020-10-15  9:28 UTC (permalink / raw)
  To: Yan, Zhirun, Zhang, Qi Z, dev; +Cc: Wang, Xiao W, Su, Simei, Guo, Junfeng



> -----Original Message-----
> From: Yan, Zhirun <zhirun.yan@intel.com>
> Sent: Monday, September 28, 2020 2:32 PM
> To: Zhang, Qi Z <qi.z.zhang@intel.com>; dev@dpdk.org
> Cc: Cao, Yahui <yahui.cao@intel.com>; Wang, Xiao W
> <xiao.w.wang@intel.com>; Su, Simei <simei.su@intel.com>; Guo, Junfeng
> <junfeng.guo@intel.com>; Yan, Zhirun <zhirun.yan@intel.com>
> Subject: [PATCH v1 2/2] net/ice: support inner/outer L2/L3 field for FDIR
> 
> Distinguish inner/outer fields for parse pattern. So FDIR for tunnel
> can be more flexible. Enable VXLAN inner/outer L3/L4 different fields
> for FDIR.
> 
> Signed-off-by: Zhirun Yan <zhirun.yan@intel.com>
> ---
>  drivers/net/ice/ice_fdir_filter.c | 59 +++++++++++++++++++++++++++++--
>  1 file changed, 56 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/net/ice/ice_fdir_filter.c b/drivers/net/ice/ice_fdir_filter.c
> index 175abcdd5..961528d17 100644
> --- a/drivers/net/ice/ice_fdir_filter.c
> +++ b/drivers/net/ice/ice_fdir_filter.c
> @@ -56,6 +56,11 @@
>  	ICE_INSET_SCTP_SRC_PORT | ICE_INSET_SCTP_DST_PORT)
> 
>  #define ICE_FDIR_INSET_VXLAN_IPV4 (\
> +	ICE_FDIR_INSET_ETH | \
> +	ICE_INSET_IPV4_SRC | ICE_INSET_IPV4_DST | \
> +	ICE_INSET_IPV4_TOS | \
> +	ICE_INSET_UDP_DST_PORT | \
> +	ICE_INSET_TUN_DMAC | ICE_INSET_TUN_SMAC | \
>  	ICE_INSET_TUN_IPV4_SRC | ICE_INSET_TUN_IPV4_DST)
> 
>  #define ICE_FDIR_INSET_VXLAN_IPV4_TCP (\
> @@ -907,6 +912,7 @@ ice_fdir_input_set_parse(uint64_t inset, enum
> ice_flow_field *field)
>  	};
>  	static const struct ice_inset_map ice_inset_map[] = {
>  		{ICE_INSET_DMAC, ICE_FLOW_FIELD_IDX_ETH_DA},
> +		{ICE_INSET_SMAC, ICE_FLOW_FIELD_IDX_ETH_SA},
>  		{ICE_INSET_ETHERTYPE, ICE_FLOW_FIELD_IDX_ETH_TYPE},
>  		{ICE_INSET_IPV4_SRC, ICE_FLOW_FIELD_IDX_IPV4_SA},
>  		{ICE_INSET_IPV4_DST, ICE_FLOW_FIELD_IDX_IPV4_DA},
> @@ -1655,6 +1661,14 @@ ice_fdir_parse_pattern(__rte_unused struct ice_adapter *ad,
>  	uint32_t vtc_flow_cpu;
>  	uint16_t ether_type;
>  	enum rte_flow_item_type next_type;
> +	bool is_outer_part = true;
> +
> +	for (item = pattern; item->type != RTE_FLOW_ITEM_TYPE_END; item++)
> {
> +		if (item->type == RTE_FLOW_ITEM_TYPE_VXLAN) {
> +			tunnel_type = ICE_FDIR_TUNNEL_TYPE_VXLAN;
> +			break;
> +		}
> +	}
> 
>  	for (item = pattern; item->type != RTE_FLOW_ITEM_TYPE_END; item++)
> {
>  		if (item->last) {
> @@ -1672,7 +1686,25 @@ ice_fdir_parse_pattern(__rte_unused struct ice_adapter *ad,
>  			eth_mask = item->mask;
>  			next_type = (item + 1)->type;
> 
> -			if (eth_spec && eth_mask) {
> +			if (!(eth_spec && eth_mask))
> +				break;
> +
> +			/* handle outer L2 fields */
> +			if (is_outer_part && tunnel_type == ICE_FDIR_TUNNEL_TYPE_VXLAN) {
> +				if (!rte_is_zero_ether_addr(&eth_mask->dst))
> {
> +					filter->outer_input_set |= ICE_INSET_DMAC;
> +					rte_memcpy(&filter->input.ext_data_outer.dst_mac,
> +						   &eth_spec->dst,
> +						   RTE_ETHER_ADDR_LEN);
> +				}
> +
> +				if (!rte_is_zero_ether_addr(&eth_mask->src)) {
> +					filter->outer_input_set |=ICE_INSET_SMAC;
> +					rte_memcpy(&filter->input.ext_data_outer.src_mac,
> +						   &eth_spec->src,
> +						   RTE_ETHER_ADDR_LEN);
> +				}
> +			} else {
>  				if (!rte_is_zero_ether_addr(&eth_mask->dst))
> {
>  					input_set |= ICE_INSET_DMAC;
>  					rte_memcpy(&filter->input.ext_data.dst_mac,
> @@ -1714,7 +1746,27 @@ ice_fdir_parse_pattern(__rte_unused struct ice_adapter *ad,
>  			ipv4_spec = item->spec;
>  			ipv4_mask = item->mask;
> 
> -			if (ipv4_spec && ipv4_mask) {
> +			if (!(ipv4_spec && ipv4_mask))
> +				break;
> +
[Cao, Yahui] 
It seems below code has quite some duplication with code within the else condition
 Can you use a pointer *input_set and *ip to point to the different input_set bits and input_set value,
So that existing code can be reused.
> +			/* handle outer L3 fields */
> +			if (is_outer_part && tunnel_type == ICE_FDIR_TUNNEL_TYPE_VXLAN) {
> +				if (ipv4_mask->hdr.dst_addr == UINT32_MAX) {
> +					filter->outer_input_set |= ICE_INSET_IPV4_DST;
> +					filter->input.ip_outer.v4.dst_ip =
> +						ipv4_spec->hdr.dst_addr;
> +				}
> +				if (ipv4_mask->hdr.src_addr == UINT32_MAX) {
> +					filter->outer_input_set |= ICE_INSET_IPV4_SRC;
> +					filter->input.ip_outer.v4.src_ip =
> +						ipv4_spec->hdr.src_addr;
> +				}
> +				if (ipv4_mask->hdr.type_of_service == UINT8_MAX) {
> +					input_set |= ICE_INSET_IPV4_TOS;
[Cao, Yahui] 
Why use input_set instead of filter->outer_input_set in the VXLAN outer section ?

> +					filter->input.ip_outer.v4.tos =
> +						ipv4_spec->hdr.type_of_service;
> +				}
> +			} else {
>  				/* Check IPv4 mask and update input set */
>  				if (ipv4_mask->hdr.version_ihl ||
>  				    ipv4_mask->hdr.total_length ||
> @@ -1944,6 +1996,8 @@ ice_fdir_parse_pattern(__rte_unused struct ice_adapter *ad,
>  			break;
>  		case RTE_FLOW_ITEM_TYPE_VXLAN:
>  			l3 = RTE_FLOW_ITEM_TYPE_END;
> +			is_outer_part = false;
> +
>  			vxlan_spec = item->spec;
>  			vxlan_mask = item->mask;
> 
> @@ -1955,7 +2009,6 @@ ice_fdir_parse_pattern(__rte_unused struct ice_adapter *ad,
>  				return -rte_errno;
>  			}
> 
> -			tunnel_type = ICE_FDIR_TUNNEL_TYPE_VXLAN;
>  			break;
>  		case RTE_FLOW_ITEM_TYPE_GTPU:
>  			l3 = RTE_FLOW_ITEM_TYPE_END;
> --
> 2.25.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH v1 2/2] net/ice: support inner/outer L2/L3 field for FDIR
  2020-10-15  9:28   ` Cao, Yahui
@ 2020-11-02  8:23     ` Yan, Zhirun
  0 siblings, 0 replies; 5+ messages in thread
From: Yan, Zhirun @ 2020-11-02  8:23 UTC (permalink / raw)
  To: Cao, Yahui, Zhang, Qi Z, dev; +Cc: Wang, Xiao W, Su, Simei, Guo, Junfeng



> -----Original Message-----
> From: Cao, Yahui
> Sent: Thursday, October 15, 2020 5:29 PM
> To: Yan, Zhirun <zhirun.yan@intel.com>; Zhang, Qi Z <qi.z.zhang@intel.com>;
> dev@dpdk.org
> Cc: Wang, Xiao W <xiao.w.wang@intel.com>; Su, Simei
> <simei.su@intel.com>; Guo, Junfeng <junfeng.guo@intel.com>
> Subject: RE: [PATCH v1 2/2] net/ice: support inner/outer L2/L3 field for FDIR
> 
> 
> 
> > -----Original Message-----
> > From: Yan, Zhirun <zhirun.yan@intel.com>
> > Sent: Monday, September 28, 2020 2:32 PM
> > To: Zhang, Qi Z <qi.z.zhang@intel.com>; dev@dpdk.org
> > Cc: Cao, Yahui <yahui.cao@intel.com>; Wang, Xiao W
> > <xiao.w.wang@intel.com>; Su, Simei <simei.su@intel.com>; Guo, Junfeng
> > <junfeng.guo@intel.com>; Yan, Zhirun <zhirun.yan@intel.com>
> > Subject: [PATCH v1 2/2] net/ice: support inner/outer L2/L3 field for
> > FDIR
> >
> > Distinguish inner/outer fields for parse pattern. So FDIR for tunnel
> > can be more flexible. Enable VXLAN inner/outer L3/L4 different fields
> > for FDIR.
> >
> > Signed-off-by: Zhirun Yan <zhirun.yan@intel.com>
> > ---
> >  drivers/net/ice/ice_fdir_filter.c | 59
> > +++++++++++++++++++++++++++++--
> >  1 file changed, 56 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/net/ice/ice_fdir_filter.c
> > b/drivers/net/ice/ice_fdir_filter.c
> > index 175abcdd5..961528d17 100644
> > --- a/drivers/net/ice/ice_fdir_filter.c
> > +++ b/drivers/net/ice/ice_fdir_filter.c
> > @@ -56,6 +56,11 @@
> >  	ICE_INSET_SCTP_SRC_PORT | ICE_INSET_SCTP_DST_PORT)
> >
> >  #define ICE_FDIR_INSET_VXLAN_IPV4 (\
> > +	ICE_FDIR_INSET_ETH | \
> > +	ICE_INSET_IPV4_SRC | ICE_INSET_IPV4_DST | \
> > +	ICE_INSET_IPV4_TOS | \
> > +	ICE_INSET_UDP_DST_PORT | \
> > +	ICE_INSET_TUN_DMAC | ICE_INSET_TUN_SMAC | \
> >  	ICE_INSET_TUN_IPV4_SRC | ICE_INSET_TUN_IPV4_DST)
> >
> >  #define ICE_FDIR_INSET_VXLAN_IPV4_TCP (\ @@ -907,6 +912,7 @@
> > ice_fdir_input_set_parse(uint64_t inset, enum ice_flow_field *field)
> >  	};
> >  	static const struct ice_inset_map ice_inset_map[] = {
> >  		{ICE_INSET_DMAC, ICE_FLOW_FIELD_IDX_ETH_DA},
> > +		{ICE_INSET_SMAC, ICE_FLOW_FIELD_IDX_ETH_SA},
> >  		{ICE_INSET_ETHERTYPE, ICE_FLOW_FIELD_IDX_ETH_TYPE},
> >  		{ICE_INSET_IPV4_SRC, ICE_FLOW_FIELD_IDX_IPV4_SA},
> >  		{ICE_INSET_IPV4_DST, ICE_FLOW_FIELD_IDX_IPV4_DA}, @@
> -1655,6
> > +1661,14 @@ ice_fdir_parse_pattern(__rte_unused struct ice_adapter
> *ad,
> >  	uint32_t vtc_flow_cpu;
> >  	uint16_t ether_type;
> >  	enum rte_flow_item_type next_type;
> > +	bool is_outer_part = true;
> > +
> > +	for (item = pattern; item->type != RTE_FLOW_ITEM_TYPE_END;
> item++)
> > {
> > +		if (item->type == RTE_FLOW_ITEM_TYPE_VXLAN) {
> > +			tunnel_type = ICE_FDIR_TUNNEL_TYPE_VXLAN;
> > +			break;
> > +		}
> > +	}
> >
> >  	for (item = pattern; item->type != RTE_FLOW_ITEM_TYPE_END;
> item++) {
> >  		if (item->last) {
> > @@ -1672,7 +1686,25 @@ ice_fdir_parse_pattern(__rte_unused struct
> ice_adapter *ad,
> >  			eth_mask = item->mask;
> >  			next_type = (item + 1)->type;
> >
> > -			if (eth_spec && eth_mask) {
> > +			if (!(eth_spec && eth_mask))
> > +				break;
> > +
> > +			/* handle outer L2 fields */
> > +			if (is_outer_part && tunnel_type ==
> ICE_FDIR_TUNNEL_TYPE_VXLAN) {
> > +				if (!rte_is_zero_ether_addr(&eth_mask-
> >dst))
> > {
> > +					filter->outer_input_set |=
> ICE_INSET_DMAC;
> > +					rte_memcpy(&filter-
> >input.ext_data_outer.dst_mac,
> > +						   &eth_spec->dst,
> > +						   RTE_ETHER_ADDR_LEN);
> > +				}
> > +
> > +				if (!rte_is_zero_ether_addr(&eth_mask-
> >src)) {
> > +					filter->outer_input_set
> |=ICE_INSET_SMAC;
> > +					rte_memcpy(&filter-
> >input.ext_data_outer.src_mac,
> > +						   &eth_spec->src,
> > +						   RTE_ETHER_ADDR_LEN);
> > +				}
> > +			} else {
> >  				if (!rte_is_zero_ether_addr(&eth_mask-
> >dst))
> > {
> >  					input_set |= ICE_INSET_DMAC;
> >  					rte_memcpy(&filter-
> >input.ext_data.dst_mac,
> > @@ -1714,7 +1746,27 @@ ice_fdir_parse_pattern(__rte_unused struct
> ice_adapter *ad,
> >  			ipv4_spec = item->spec;
> >  			ipv4_mask = item->mask;
> >
> > -			if (ipv4_spec && ipv4_mask) {
> > +			if (!(ipv4_spec && ipv4_mask))
> > +				break;
> > +
> [Cao, Yahui]
> It seems below code has quite some duplication with code within the else
> condition  Can you use a pointer *input_set and *ip to point to the different
> input_set bits and input_set value, So that existing code can be reused.

Yes, you are right. And I will refactor this part in V2. Thanks.

> > +			/* handle outer L3 fields */
> > +			if (is_outer_part && tunnel_type ==
> ICE_FDIR_TUNNEL_TYPE_VXLAN) {
> > +				if (ipv4_mask->hdr.dst_addr ==
> UINT32_MAX) {
> > +					filter->outer_input_set |=
> ICE_INSET_IPV4_DST;
> > +					filter->input.ip_outer.v4.dst_ip =
> > +						ipv4_spec->hdr.dst_addr;
> > +				}
> > +				if (ipv4_mask->hdr.src_addr == UINT32_MAX)
> {
> > +					filter->outer_input_set |=
> ICE_INSET_IPV4_SRC;
> > +					filter->input.ip_outer.v4.src_ip =
> > +						ipv4_spec->hdr.src_addr;
> > +				}
> > +				if (ipv4_mask->hdr.type_of_service ==
> UINT8_MAX) {
> > +					input_set |= ICE_INSET_IPV4_TOS;
> [Cao, Yahui]
> Why use input_set instead of filter->outer_input_set in the VXLAN outer
> section ?
> 

Typo, will fix it in V2. Thanks.

> > +					filter->input.ip_outer.v4.tos =
> > +						ipv4_spec-
> >hdr.type_of_service;
> > +				}
> > +			} else {
> >  				/* Check IPv4 mask and update input set */
> >  				if (ipv4_mask->hdr.version_ihl ||
> >  				    ipv4_mask->hdr.total_length || @@ -
> 1944,6 +1996,8 @@
> > ice_fdir_parse_pattern(__rte_unused struct ice_adapter *ad,
> >  			break;
> >  		case RTE_FLOW_ITEM_TYPE_VXLAN:
> >  			l3 = RTE_FLOW_ITEM_TYPE_END;
> > +			is_outer_part = false;
> > +
> >  			vxlan_spec = item->spec;
> >  			vxlan_mask = item->mask;
> >
> > @@ -1955,7 +2009,6 @@ ice_fdir_parse_pattern(__rte_unused struct
> ice_adapter *ad,
> >  				return -rte_errno;
> >  			}
> >
> > -			tunnel_type = ICE_FDIR_TUNNEL_TYPE_VXLAN;
> >  			break;
> >  		case RTE_FLOW_ITEM_TYPE_GTPU:
> >  			l3 = RTE_FLOW_ITEM_TYPE_END;
> > --
> > 2.25.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-11-02  8:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-28  6:31 [dpdk-dev] [PATCH v1 0/2] support FDIR inner/outer field for tunnel packet Zhirun Yan
2020-09-28  6:31 ` [dpdk-dev] [PATCH v1 1/2] net/ice/base: add tunnel support for FDIR Zhirun Yan
2020-09-28  6:31 ` [dpdk-dev] [PATCH v1 2/2] net/ice: support inner/outer L2/L3 field " Zhirun Yan
2020-10-15  9:28   ` Cao, Yahui
2020-11-02  8:23     ` Yan, Zhirun

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).