From: Lukasz Czapnik Flow Director can keep only one input set per flow type. After ACL support was added for ethtool ntuple rules, the driver still only selected ACL for rules with partial masks. That leaves a gap for rules with full masks that still require a different input set than the one already programmed for Flow Director. Such rules go through the FDir path, build a different extraction sequence and then fail because the existing FDir profile cannot be reused. Detect this case before programming the rule. Build the candidate IP flow segment, compare it with the active non-tunneled FDir profile and, when the input sets differ, offload the rule through ACL if ACL is available. Refactor the IP flow segment setup into a helper so the same logic can be used both by the extraction-sequence configuration path and by the conflict check. Signed-off-by: Lukasz Czapnik --- v3: * Include flex fields in test_seg to avoid false conflict detection * Skip conflict check early for ETHER_FLOW v2: * Add this patch --- .../ethernet/intel/ice/ice_ethtool_ntuple.c | 168 +++++++++++++----- 1 file changed, 121 insertions(+), 47 deletions(-) diff --git a/drivers/net/ethernet/intel/ice/ice_ethtool_ntuple.c b/drivers/net/ethernet/intel/ice/ice_ethtool_ntuple.c index 99ef9059628a..b90f40eb98a4 100644 --- a/drivers/net/ethernet/intel/ice/ice_ethtool_ntuple.c +++ b/drivers/net/ethernet/intel/ice/ice_ethtool_ntuple.c @@ -1400,6 +1400,115 @@ ice_set_fdir_vlan_seg(struct ice_flow_seg_info *seg, return 0; } +/** + * ice_set_fdir_ip_flow_seg - set IP flow segment based on ethtool flow type + * @fsp: pointer to ethtool Rx flow specification + * @seg: flow segment for programming + * @perfect_fltr: valid on success; returns true if perfect fltr, false if not + * + * Return: 0 on success and errno in case of error. + */ +static int ice_set_fdir_ip_flow_seg(struct ethtool_rx_flow_spec *fsp, + struct ice_flow_seg_info *seg, + bool *perfect_fltr) +{ + switch (fsp->flow_type & ~FLOW_EXT) { + case TCP_V4_FLOW: + return ice_set_fdir_ip4_seg(seg, &fsp->m_u.tcp_ip4_spec, + ICE_FLOW_SEG_HDR_TCP, perfect_fltr); + case UDP_V4_FLOW: + return ice_set_fdir_ip4_seg(seg, &fsp->m_u.tcp_ip4_spec, + ICE_FLOW_SEG_HDR_UDP, perfect_fltr); + case SCTP_V4_FLOW: + return ice_set_fdir_ip4_seg(seg, &fsp->m_u.tcp_ip4_spec, + ICE_FLOW_SEG_HDR_SCTP, + perfect_fltr); + case IPV4_USER_FLOW: + return ice_set_fdir_ip4_usr_seg(seg, &fsp->m_u.usr_ip4_spec, + perfect_fltr); + case TCP_V6_FLOW: + return ice_set_fdir_ip6_seg(seg, &fsp->m_u.tcp_ip6_spec, + ICE_FLOW_SEG_HDR_TCP, perfect_fltr); + case UDP_V6_FLOW: + return ice_set_fdir_ip6_seg(seg, &fsp->m_u.tcp_ip6_spec, + ICE_FLOW_SEG_HDR_UDP, perfect_fltr); + case SCTP_V6_FLOW: + return ice_set_fdir_ip6_seg(seg, &fsp->m_u.tcp_ip6_spec, + ICE_FLOW_SEG_HDR_SCTP, + perfect_fltr); + case IPV6_USER_FLOW: + return ice_set_fdir_ip6_usr_seg(seg, &fsp->m_u.usr_ip6_spec, + perfect_fltr); + default: + return -EINVAL; + } +} + +/** + * ice_fdir_has_input_set_conflict - Check conflict with existing FD filters + * @pf: PF structure + * @fsp: pointer to ethtool Rx flow specification + * @user: user-defined data parsed from flow specification + * + * Checks if adding this filter to Flow Director would cause an input set + * mismatch with existing filters for the same flow type by building + * the segment and comparing with existing profiles. + * + * Return: true if there's a conflict (use ACL), false otherwise (can use FD) + */ +static bool +ice_fdir_has_input_set_conflict(struct ice_pf *pf, + struct ethtool_rx_flow_spec *fsp, + const struct ice_rx_flow_userdef *user) +{ + struct ice_flow_seg_info *test_seg, *old_seg; + bool perfect_fltr = false, conflict = false; + struct ice_fd_hw_prof *hw_prof; + struct ice_hw *hw = &pf->hw; + enum ice_fltr_ptype flow; + int err; + + if ((fsp->flow_type & ~FLOW_EXT) == ETHER_FLOW) + return false; + + flow = ice_ethtool_flow_to_fltr(fsp->flow_type & ~FLOW_EXT); + if (flow >= ICE_FLTR_PTYPE_MAX || !hw->fdir_prof || + !hw->fdir_prof[flow]) { + return false; + } + + hw_prof = hw->fdir_prof[flow]; + old_seg = hw_prof->fdir_seg[ICE_FD_HW_SEG_NON_TUN]; + + if (!old_seg || hw->fdir_fltr_cnt[flow] == 0) + return false; + + test_seg = kzalloc_obj(*test_seg); + if (!test_seg) + return false; + + err = ice_set_fdir_ip_flow_seg(fsp, test_seg, &perfect_fltr); + + if (err) { + kfree(test_seg); + return false; + } + + if (user && user->flex_fltr) + ice_flow_add_fld_raw(test_seg, user->flex_offset, + ICE_FLTR_PRGM_FLEX_WORD_SIZE, + ICE_FLOW_FLD_OFF_INVAL, + ICE_FLOW_FLD_OFF_INVAL); + + /* Compare the test segment with the existing segment */ + if (memcmp(old_seg, test_seg, sizeof(*test_seg)) != 0) + conflict = true; + + kfree(test_seg); + + return conflict; +} + /** * ice_cfg_fdir_xtrct_seq - Configure extraction sequence for the given filter * @pf: PF structure @@ -1430,57 +1539,16 @@ ice_cfg_fdir_xtrct_seq(struct ice_pf *pf, struct ethtool_rx_flow_spec *fsp, return -ENOMEM; } - switch (fsp->flow_type & ~FLOW_EXT) { - case TCP_V4_FLOW: - ret = ice_set_fdir_ip4_seg(seg, &fsp->m_u.tcp_ip4_spec, - ICE_FLOW_SEG_HDR_TCP, - &perfect_filter); - break; - case UDP_V4_FLOW: - ret = ice_set_fdir_ip4_seg(seg, &fsp->m_u.tcp_ip4_spec, - ICE_FLOW_SEG_HDR_UDP, - &perfect_filter); - break; - case SCTP_V4_FLOW: - ret = ice_set_fdir_ip4_seg(seg, &fsp->m_u.tcp_ip4_spec, - ICE_FLOW_SEG_HDR_SCTP, - &perfect_filter); - break; - case IPV4_USER_FLOW: - ret = ice_set_fdir_ip4_usr_seg(seg, &fsp->m_u.usr_ip4_spec, - &perfect_filter); - break; - case TCP_V6_FLOW: - ret = ice_set_fdir_ip6_seg(seg, &fsp->m_u.tcp_ip6_spec, - ICE_FLOW_SEG_HDR_TCP, - &perfect_filter); - break; - case UDP_V6_FLOW: - ret = ice_set_fdir_ip6_seg(seg, &fsp->m_u.tcp_ip6_spec, - ICE_FLOW_SEG_HDR_UDP, - &perfect_filter); - break; - case SCTP_V6_FLOW: - ret = ice_set_fdir_ip6_seg(seg, &fsp->m_u.tcp_ip6_spec, - ICE_FLOW_SEG_HDR_SCTP, - &perfect_filter); - break; - case IPV6_USER_FLOW: - ret = ice_set_fdir_ip6_usr_seg(seg, &fsp->m_u.usr_ip6_spec, - &perfect_filter); - break; - case ETHER_FLOW: + if ((fsp->flow_type & ~FLOW_EXT) == ETHER_FLOW) { ret = ice_set_ether_flow_seg(dev, seg, &fsp->m_u.ether_spec); if (!ret && (fsp->m_ext.vlan_etype || fsp->m_ext.vlan_tci)) { - if (!ice_fdir_vlan_valid(dev, fsp)) { + if (!ice_fdir_vlan_valid(dev, fsp)) ret = -EINVAL; - break; - } - ret = ice_set_fdir_vlan_seg(seg, &fsp->m_ext); + else + ret = ice_set_fdir_vlan_seg(seg, &fsp->m_ext); } - break; - default: - ret = -EINVAL; + } else { + ret = ice_set_fdir_ip_flow_seg(fsp, seg, &perfect_filter); } if (ret) goto err_exit; @@ -2215,6 +2283,12 @@ int ice_add_ntuple_ethtool(struct ice_vsi *vsi, struct ethtool_rxnfc *cmd) if (pf->hw.acl_tbl && ice_is_acl_filter(fsp)) return ice_acl_add_rule_ethtool(vsi, cmd); + /* Check if this would cause input set conflict with existing FD filters + */ + if (pf->hw.acl_tbl && ice_fdir_has_input_set_conflict(pf, fsp, + &userdata)) + return ice_acl_add_rule_ethtool(vsi, cmd); + ret = ice_cfg_fdir_xtrct_seq(pf, fsp, &userdata); if (ret) return ret; -- 2.49.0