Commit adacf21f authored by Jakub Kicinski's avatar Jakub Kicinski

Merge branch '40GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue

Tony Nguyen says:

====================
iavf: fix racing in VLANs

Ahmed Zaki says:

This patchset mainly fixes a racing issue in the iavf where the number of
VLANs in the vlan_filter_list might be more than the PF limit. To fix that,
we get rid of the cvlans and svlans bitmaps and keep all the required info
in the list.

The second patch adds two new states that are needed so that we keep the
VLAN info while the interface goes DOWN:
    -- DISABLE    (notify PF, but keep the filter in the list)
    -- INACTIVE   (dev is DOWN, filter is removed from PF)

Finally, the current code keeps each state in a separate bit field, which
is error prone. The first patch refactors that by replacing all bits with
a single enum. The changes are minimal where each bit change is replaced
with the new state value.

* '40GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue:
  iavf: remove active_cvlans and active_svlans bitmaps
  iavf: refactor VLAN filter states
====================

Link: https://lore.kernel.org/r/20230407210730.3046149-1-anthony.l.nguyen@intel.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parents 160c1317 9c85b7fa
...@@ -59,8 +59,6 @@ enum iavf_vsi_state_t { ...@@ -59,8 +59,6 @@ enum iavf_vsi_state_t {
struct iavf_vsi { struct iavf_vsi {
struct iavf_adapter *back; struct iavf_adapter *back;
struct net_device *netdev; struct net_device *netdev;
unsigned long active_cvlans[BITS_TO_LONGS(VLAN_N_VID)];
unsigned long active_svlans[BITS_TO_LONGS(VLAN_N_VID)];
u16 seid; u16 seid;
u16 id; u16 id;
DECLARE_BITMAP(state, __IAVF_VSI_STATE_SIZE__); DECLARE_BITMAP(state, __IAVF_VSI_STATE_SIZE__);
...@@ -158,15 +156,20 @@ struct iavf_vlan { ...@@ -158,15 +156,20 @@ struct iavf_vlan {
u16 tpid; u16 tpid;
}; };
enum iavf_vlan_state_t {
IAVF_VLAN_INVALID,
IAVF_VLAN_ADD, /* filter needs to be added */
IAVF_VLAN_IS_NEW, /* filter is new, wait for PF answer */
IAVF_VLAN_ACTIVE, /* filter is accepted by PF */
IAVF_VLAN_DISABLE, /* filter needs to be deleted by PF, then marked INACTIVE */
IAVF_VLAN_INACTIVE, /* filter is inactive, we are in IFF_DOWN */
IAVF_VLAN_REMOVE, /* filter needs to be removed from list */
};
struct iavf_vlan_filter { struct iavf_vlan_filter {
struct list_head list; struct list_head list;
struct iavf_vlan vlan; struct iavf_vlan vlan;
struct { enum iavf_vlan_state_t state;
u8 is_new_vlan:1; /* filter is new, wait for PF answer */
u8 remove:1; /* filter needs to be removed */
u8 add:1; /* filter needs to be added */
u8 padding:5;
};
}; };
#define IAVF_MAX_TRAFFIC_CLASS 4 #define IAVF_MAX_TRAFFIC_CLASS 4
...@@ -258,6 +261,7 @@ struct iavf_adapter { ...@@ -258,6 +261,7 @@ struct iavf_adapter {
wait_queue_head_t vc_waitqueue; wait_queue_head_t vc_waitqueue;
struct iavf_q_vector *q_vectors; struct iavf_q_vector *q_vectors;
struct list_head vlan_filter_list; struct list_head vlan_filter_list;
int num_vlan_filters;
struct list_head mac_filter_list; struct list_head mac_filter_list;
struct mutex crit_lock; struct mutex crit_lock;
struct mutex client_lock; struct mutex client_lock;
......
...@@ -791,7 +791,8 @@ iavf_vlan_filter *iavf_add_vlan(struct iavf_adapter *adapter, ...@@ -791,7 +791,8 @@ iavf_vlan_filter *iavf_add_vlan(struct iavf_adapter *adapter,
f->vlan = vlan; f->vlan = vlan;
list_add_tail(&f->list, &adapter->vlan_filter_list); list_add_tail(&f->list, &adapter->vlan_filter_list);
f->add = true; f->state = IAVF_VLAN_ADD;
adapter->num_vlan_filters++;
adapter->aq_required |= IAVF_FLAG_AQ_ADD_VLAN_FILTER; adapter->aq_required |= IAVF_FLAG_AQ_ADD_VLAN_FILTER;
} }
...@@ -813,7 +814,7 @@ static void iavf_del_vlan(struct iavf_adapter *adapter, struct iavf_vlan vlan) ...@@ -813,7 +814,7 @@ static void iavf_del_vlan(struct iavf_adapter *adapter, struct iavf_vlan vlan)
f = iavf_find_vlan(adapter, vlan); f = iavf_find_vlan(adapter, vlan);
if (f) { if (f) {
f->remove = true; f->state = IAVF_VLAN_REMOVE;
adapter->aq_required |= IAVF_FLAG_AQ_DEL_VLAN_FILTER; adapter->aq_required |= IAVF_FLAG_AQ_DEL_VLAN_FILTER;
} }
...@@ -828,14 +829,18 @@ static void iavf_del_vlan(struct iavf_adapter *adapter, struct iavf_vlan vlan) ...@@ -828,14 +829,18 @@ static void iavf_del_vlan(struct iavf_adapter *adapter, struct iavf_vlan vlan)
**/ **/
static void iavf_restore_filters(struct iavf_adapter *adapter) static void iavf_restore_filters(struct iavf_adapter *adapter)
{ {
u16 vid; struct iavf_vlan_filter *f;
/* re-add all VLAN filters */ /* re-add all VLAN filters */
for_each_set_bit(vid, adapter->vsi.active_cvlans, VLAN_N_VID) spin_lock_bh(&adapter->mac_vlan_list_lock);
iavf_add_vlan(adapter, IAVF_VLAN(vid, ETH_P_8021Q));
for_each_set_bit(vid, adapter->vsi.active_svlans, VLAN_N_VID) list_for_each_entry(f, &adapter->vlan_filter_list, list) {
iavf_add_vlan(adapter, IAVF_VLAN(vid, ETH_P_8021AD)); if (f->state == IAVF_VLAN_INACTIVE)
f->state = IAVF_VLAN_ADD;
}
spin_unlock_bh(&adapter->mac_vlan_list_lock);
adapter->aq_required |= IAVF_FLAG_AQ_ADD_VLAN_FILTER;
} }
/** /**
...@@ -844,8 +849,7 @@ static void iavf_restore_filters(struct iavf_adapter *adapter) ...@@ -844,8 +849,7 @@ static void iavf_restore_filters(struct iavf_adapter *adapter)
*/ */
u16 iavf_get_num_vlans_added(struct iavf_adapter *adapter) u16 iavf_get_num_vlans_added(struct iavf_adapter *adapter)
{ {
return bitmap_weight(adapter->vsi.active_cvlans, VLAN_N_VID) + return adapter->num_vlan_filters;
bitmap_weight(adapter->vsi.active_svlans, VLAN_N_VID);
} }
/** /**
...@@ -928,11 +932,6 @@ static int iavf_vlan_rx_kill_vid(struct net_device *netdev, ...@@ -928,11 +932,6 @@ static int iavf_vlan_rx_kill_vid(struct net_device *netdev,
return 0; return 0;
iavf_del_vlan(adapter, IAVF_VLAN(vid, be16_to_cpu(proto))); iavf_del_vlan(adapter, IAVF_VLAN(vid, be16_to_cpu(proto)));
if (proto == cpu_to_be16(ETH_P_8021Q))
clear_bit(vid, adapter->vsi.active_cvlans);
else
clear_bit(vid, adapter->vsi.active_svlans);
return 0; return 0;
} }
...@@ -1293,16 +1292,11 @@ static void iavf_clear_mac_vlan_filters(struct iavf_adapter *adapter) ...@@ -1293,16 +1292,11 @@ static void iavf_clear_mac_vlan_filters(struct iavf_adapter *adapter)
} }
} }
/* remove all VLAN filters */ /* disable all VLAN filters */
list_for_each_entry_safe(vlf, vlftmp, &adapter->vlan_filter_list, list_for_each_entry_safe(vlf, vlftmp, &adapter->vlan_filter_list,
list) { list)
if (vlf->add) { vlf->state = IAVF_VLAN_DISABLE;
list_del(&vlf->list);
kfree(vlf);
} else {
vlf->remove = true;
}
}
spin_unlock_bh(&adapter->mac_vlan_list_lock); spin_unlock_bh(&adapter->mac_vlan_list_lock);
} }
...@@ -2914,6 +2908,7 @@ static void iavf_disable_vf(struct iavf_adapter *adapter) ...@@ -2914,6 +2908,7 @@ static void iavf_disable_vf(struct iavf_adapter *adapter)
list_del(&fv->list); list_del(&fv->list);
kfree(fv); kfree(fv);
} }
adapter->num_vlan_filters = 0;
spin_unlock_bh(&adapter->mac_vlan_list_lock); spin_unlock_bh(&adapter->mac_vlan_list_lock);
...@@ -3131,9 +3126,6 @@ static void iavf_reset_task(struct work_struct *work) ...@@ -3131,9 +3126,6 @@ static void iavf_reset_task(struct work_struct *work)
adapter->aq_required |= IAVF_FLAG_AQ_ADD_CLOUD_FILTER; adapter->aq_required |= IAVF_FLAG_AQ_ADD_CLOUD_FILTER;
iavf_misc_irq_enable(adapter); iavf_misc_irq_enable(adapter);
bitmap_clear(adapter->vsi.active_cvlans, 0, VLAN_N_VID);
bitmap_clear(adapter->vsi.active_svlans, 0, VLAN_N_VID);
mod_delayed_work(adapter->wq, &adapter->watchdog_task, 2); mod_delayed_work(adapter->wq, &adapter->watchdog_task, 2);
/* We were running when the reset started, so we need to restore some /* We were running when the reset started, so we need to restore some
......
...@@ -642,16 +642,10 @@ static void iavf_vlan_add_reject(struct iavf_adapter *adapter) ...@@ -642,16 +642,10 @@ static void iavf_vlan_add_reject(struct iavf_adapter *adapter)
spin_lock_bh(&adapter->mac_vlan_list_lock); spin_lock_bh(&adapter->mac_vlan_list_lock);
list_for_each_entry_safe(f, ftmp, &adapter->vlan_filter_list, list) { list_for_each_entry_safe(f, ftmp, &adapter->vlan_filter_list, list) {
if (f->is_new_vlan) { if (f->state == IAVF_VLAN_IS_NEW) {
if (f->vlan.tpid == ETH_P_8021Q)
clear_bit(f->vlan.vid,
adapter->vsi.active_cvlans);
else
clear_bit(f->vlan.vid,
adapter->vsi.active_svlans);
list_del(&f->list); list_del(&f->list);
kfree(f); kfree(f);
adapter->num_vlan_filters--;
} }
} }
spin_unlock_bh(&adapter->mac_vlan_list_lock); spin_unlock_bh(&adapter->mac_vlan_list_lock);
...@@ -679,7 +673,7 @@ void iavf_add_vlans(struct iavf_adapter *adapter) ...@@ -679,7 +673,7 @@ void iavf_add_vlans(struct iavf_adapter *adapter)
spin_lock_bh(&adapter->mac_vlan_list_lock); spin_lock_bh(&adapter->mac_vlan_list_lock);
list_for_each_entry(f, &adapter->vlan_filter_list, list) { list_for_each_entry(f, &adapter->vlan_filter_list, list) {
if (f->add) if (f->state == IAVF_VLAN_ADD)
count++; count++;
} }
if (!count || !VLAN_FILTERING_ALLOWED(adapter)) { if (!count || !VLAN_FILTERING_ALLOWED(adapter)) {
...@@ -710,11 +704,10 @@ void iavf_add_vlans(struct iavf_adapter *adapter) ...@@ -710,11 +704,10 @@ void iavf_add_vlans(struct iavf_adapter *adapter)
vvfl->vsi_id = adapter->vsi_res->vsi_id; vvfl->vsi_id = adapter->vsi_res->vsi_id;
vvfl->num_elements = count; vvfl->num_elements = count;
list_for_each_entry(f, &adapter->vlan_filter_list, list) { list_for_each_entry(f, &adapter->vlan_filter_list, list) {
if (f->add) { if (f->state == IAVF_VLAN_ADD) {
vvfl->vlan_id[i] = f->vlan.vid; vvfl->vlan_id[i] = f->vlan.vid;
i++; i++;
f->add = false; f->state = IAVF_VLAN_IS_NEW;
f->is_new_vlan = true;
if (i == count) if (i == count)
break; break;
} }
...@@ -760,7 +753,7 @@ void iavf_add_vlans(struct iavf_adapter *adapter) ...@@ -760,7 +753,7 @@ void iavf_add_vlans(struct iavf_adapter *adapter)
vvfl_v2->vport_id = adapter->vsi_res->vsi_id; vvfl_v2->vport_id = adapter->vsi_res->vsi_id;
vvfl_v2->num_elements = count; vvfl_v2->num_elements = count;
list_for_each_entry(f, &adapter->vlan_filter_list, list) { list_for_each_entry(f, &adapter->vlan_filter_list, list) {
if (f->add) { if (f->state == IAVF_VLAN_ADD) {
struct virtchnl_vlan_supported_caps *filtering_support = struct virtchnl_vlan_supported_caps *filtering_support =
&adapter->vlan_v2_caps.filtering.filtering_support; &adapter->vlan_v2_caps.filtering.filtering_support;
struct virtchnl_vlan *vlan; struct virtchnl_vlan *vlan;
...@@ -778,8 +771,7 @@ void iavf_add_vlans(struct iavf_adapter *adapter) ...@@ -778,8 +771,7 @@ void iavf_add_vlans(struct iavf_adapter *adapter)
vlan->tpid = f->vlan.tpid; vlan->tpid = f->vlan.tpid;
i++; i++;
f->add = false; f->state = IAVF_VLAN_IS_NEW;
f->is_new_vlan = true;
} }
} }
...@@ -822,10 +814,16 @@ void iavf_del_vlans(struct iavf_adapter *adapter) ...@@ -822,10 +814,16 @@ void iavf_del_vlans(struct iavf_adapter *adapter)
* filters marked for removal to enable bailing out before * filters marked for removal to enable bailing out before
* sending a virtchnl message * sending a virtchnl message
*/ */
if (f->remove && !VLAN_FILTERING_ALLOWED(adapter)) { if (f->state == IAVF_VLAN_REMOVE &&
!VLAN_FILTERING_ALLOWED(adapter)) {
list_del(&f->list); list_del(&f->list);
kfree(f); kfree(f);
} else if (f->remove) { adapter->num_vlan_filters--;
} else if (f->state == IAVF_VLAN_DISABLE &&
!VLAN_FILTERING_ALLOWED(adapter)) {
f->state = IAVF_VLAN_INACTIVE;
} else if (f->state == IAVF_VLAN_REMOVE ||
f->state == IAVF_VLAN_DISABLE) {
count++; count++;
} }
} }
...@@ -857,11 +855,18 @@ void iavf_del_vlans(struct iavf_adapter *adapter) ...@@ -857,11 +855,18 @@ void iavf_del_vlans(struct iavf_adapter *adapter)
vvfl->vsi_id = adapter->vsi_res->vsi_id; vvfl->vsi_id = adapter->vsi_res->vsi_id;
vvfl->num_elements = count; vvfl->num_elements = count;
list_for_each_entry_safe(f, ftmp, &adapter->vlan_filter_list, list) { list_for_each_entry_safe(f, ftmp, &adapter->vlan_filter_list, list) {
if (f->remove) { if (f->state == IAVF_VLAN_DISABLE) {
vvfl->vlan_id[i] = f->vlan.vid; vvfl->vlan_id[i] = f->vlan.vid;
f->state = IAVF_VLAN_INACTIVE;
i++; i++;
if (i == count)
break;
} else if (f->state == IAVF_VLAN_REMOVE) {
vvfl->vlan_id[i] = f->vlan.vid;
list_del(&f->list); list_del(&f->list);
kfree(f); kfree(f);
adapter->num_vlan_filters--;
i++;
if (i == count) if (i == count)
break; break;
} }
...@@ -901,7 +906,8 @@ void iavf_del_vlans(struct iavf_adapter *adapter) ...@@ -901,7 +906,8 @@ void iavf_del_vlans(struct iavf_adapter *adapter)
vvfl_v2->vport_id = adapter->vsi_res->vsi_id; vvfl_v2->vport_id = adapter->vsi_res->vsi_id;
vvfl_v2->num_elements = count; vvfl_v2->num_elements = count;
list_for_each_entry_safe(f, ftmp, &adapter->vlan_filter_list, list) { list_for_each_entry_safe(f, ftmp, &adapter->vlan_filter_list, list) {
if (f->remove) { if (f->state == IAVF_VLAN_DISABLE ||
f->state == IAVF_VLAN_REMOVE) {
struct virtchnl_vlan_supported_caps *filtering_support = struct virtchnl_vlan_supported_caps *filtering_support =
&adapter->vlan_v2_caps.filtering.filtering_support; &adapter->vlan_v2_caps.filtering.filtering_support;
struct virtchnl_vlan *vlan; struct virtchnl_vlan *vlan;
...@@ -915,8 +921,13 @@ void iavf_del_vlans(struct iavf_adapter *adapter) ...@@ -915,8 +921,13 @@ void iavf_del_vlans(struct iavf_adapter *adapter)
vlan->tci = f->vlan.vid; vlan->tci = f->vlan.vid;
vlan->tpid = f->vlan.tpid; vlan->tpid = f->vlan.tpid;
list_del(&f->list); if (f->state == IAVF_VLAN_DISABLE) {
kfree(f); f->state = IAVF_VLAN_INACTIVE;
} else {
list_del(&f->list);
kfree(f);
adapter->num_vlan_filters--;
}
i++; i++;
if (i == count) if (i == count)
break; break;
...@@ -2192,7 +2203,7 @@ void iavf_virtchnl_completion(struct iavf_adapter *adapter, ...@@ -2192,7 +2203,7 @@ void iavf_virtchnl_completion(struct iavf_adapter *adapter,
list_for_each_entry(vlf, list_for_each_entry(vlf,
&adapter->vlan_filter_list, &adapter->vlan_filter_list,
list) list)
vlf->add = true; vlf->state = IAVF_VLAN_ADD;
adapter->aq_required |= adapter->aq_required |=
IAVF_FLAG_AQ_ADD_VLAN_FILTER; IAVF_FLAG_AQ_ADD_VLAN_FILTER;
...@@ -2260,7 +2271,7 @@ void iavf_virtchnl_completion(struct iavf_adapter *adapter, ...@@ -2260,7 +2271,7 @@ void iavf_virtchnl_completion(struct iavf_adapter *adapter,
list_for_each_entry(vlf, list_for_each_entry(vlf,
&adapter->vlan_filter_list, &adapter->vlan_filter_list,
list) list)
vlf->add = true; vlf->state = IAVF_VLAN_ADD;
aq_required |= IAVF_FLAG_AQ_ADD_VLAN_FILTER; aq_required |= IAVF_FLAG_AQ_ADD_VLAN_FILTER;
} }
...@@ -2444,15 +2455,8 @@ void iavf_virtchnl_completion(struct iavf_adapter *adapter, ...@@ -2444,15 +2455,8 @@ void iavf_virtchnl_completion(struct iavf_adapter *adapter,
spin_lock_bh(&adapter->mac_vlan_list_lock); spin_lock_bh(&adapter->mac_vlan_list_lock);
list_for_each_entry(f, &adapter->vlan_filter_list, list) { list_for_each_entry(f, &adapter->vlan_filter_list, list) {
if (f->is_new_vlan) { if (f->state == IAVF_VLAN_IS_NEW)
f->is_new_vlan = false; f->state = IAVF_VLAN_ACTIVE;
if (f->vlan.tpid == ETH_P_8021Q)
set_bit(f->vlan.vid,
adapter->vsi.active_cvlans);
else
set_bit(f->vlan.vid,
adapter->vsi.active_svlans);
}
} }
spin_unlock_bh(&adapter->mac_vlan_list_lock); spin_unlock_bh(&adapter->mac_vlan_list_lock);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment