Message ID | 20241113-mlo_dfs_fix-v1-1-e4326736347b@quicinc.com (mailing list archive) |
---|---|
State | Under Review |
Delegated to: | Johannes Berg |
Headers | show |
Series | wifi: cfg80211: fix WARN_ON during CAC cancelling | expand |
> > diff --git a/net/wireless/mlme.c b/net/wireless/mlme.c > index a5eb92d93074e6ce1e08fcc2790b80cf04ff08f8..2a932a036225a3e0587cf5c18a4e80e91552313b 100644 > --- a/net/wireless/mlme.c > +++ b/net/wireless/mlme.c > @@ -1112,10 +1112,6 @@ void cfg80211_cac_event(struct net_device *netdev, > struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy); > unsigned long timeout; > > - if (WARN_ON(wdev->valid_links && > - !(wdev->valid_links & BIT(link_id)))) > - return; > - > trace_cfg80211_cac_event(netdev, event, link_id); > > if (WARN_ON(!wdev->links[link_id].cac_started && > This really doesn't seem right. Perhaps the order in teardown should be changed? johannes
On 11/13/24 14:59, Johannes Berg wrote: >> >> diff --git a/net/wireless/mlme.c b/net/wireless/mlme.c >> index a5eb92d93074e6ce1e08fcc2790b80cf04ff08f8..2a932a036225a3e0587cf5c18a4e80e91552313b 100644 >> --- a/net/wireless/mlme.c >> +++ b/net/wireless/mlme.c >> @@ -1112,10 +1112,6 @@ void cfg80211_cac_event(struct net_device *netdev, >> struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy); >> unsigned long timeout; >> >> - if (WARN_ON(wdev->valid_links && >> - !(wdev->valid_links & BIT(link_id)))) >> - return; >> - >> trace_cfg80211_cac_event(netdev, event, link_id); >> >> if (WARN_ON(!wdev->links[link_id].cac_started && >> > > This really doesn't seem right. > > Perhaps the order in teardown should be changed? I thought about it but couldn't really come down to a convincing approach. The thing is when CAC in ongoing and hostapd process is killed, there is no specific event apart from link delete which hostapd sends. Will it be okay to add a new NL command to stop radar detection? Something opposite of what start_radar_detection command does?
On Wed, 2024-11-13 at 20:13 +0530, Aditya Kumar Singh wrote: > On 11/13/24 14:59, Johannes Berg wrote: > > > > > > diff --git a/net/wireless/mlme.c b/net/wireless/mlme.c > > > index a5eb92d93074e6ce1e08fcc2790b80cf04ff08f8..2a932a036225a3e0587cf5c18a4e80e91552313b 100644 > > > --- a/net/wireless/mlme.c > > > +++ b/net/wireless/mlme.c > > > @@ -1112,10 +1112,6 @@ void cfg80211_cac_event(struct net_device *netdev, > > > struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy); > > > unsigned long timeout; > > > > > > - if (WARN_ON(wdev->valid_links && > > > - !(wdev->valid_links & BIT(link_id)))) > > > - return; > > > - > > > trace_cfg80211_cac_event(netdev, event, link_id); > > > > > > if (WARN_ON(!wdev->links[link_id].cac_started && > > > > > > > This really doesn't seem right. > > > > Perhaps the order in teardown should be changed? > > I thought about it but couldn't really come down to a convincing approach. > > The thing is when CAC in ongoing and hostapd process is killed, there is > no specific event apart from link delete which hostapd sends. > so we do have link removal, why doesn't that work? > Will it be > okay to add a new NL command to stop radar detection? Something opposite > of what start_radar_detection command does? > No, obviously not. johannes
On 11/13/24 21:18, Johannes Berg wrote: > On Wed, 2024-11-13 at 20:13 +0530, Aditya Kumar Singh wrote: >> On 11/13/24 14:59, Johannes Berg wrote: >>>> >>>> diff --git a/net/wireless/mlme.c b/net/wireless/mlme.c >>>> index a5eb92d93074e6ce1e08fcc2790b80cf04ff08f8..2a932a036225a3e0587cf5c18a4e80e91552313b 100644 >>>> --- a/net/wireless/mlme.c >>>> +++ b/net/wireless/mlme.c >>>> @@ -1112,10 +1112,6 @@ void cfg80211_cac_event(struct net_device *netdev, >>>> struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy); >>>> unsigned long timeout; >>>> >>>> - if (WARN_ON(wdev->valid_links && >>>> - !(wdev->valid_links & BIT(link_id)))) >>>> - return; >>>> - >>>> trace_cfg80211_cac_event(netdev, event, link_id); >>>> >>>> if (WARN_ON(!wdev->links[link_id].cac_started && >>>> >>> >>> This really doesn't seem right. >>> >>> Perhaps the order in teardown should be changed? >> >> I thought about it but couldn't really come down to a convincing approach. >> >> The thing is when CAC in ongoing and hostapd process is killed, there is >> no specific event apart from link delete which hostapd sends. >> > > so we do have link removal, why doesn't that work? Because link ID is cleared from the bitmap well before link stop is called. As mentioned in commit message, this is the flow - nl80211_remove_link > cfg80211_remove_link -> link ID gets updated here > ieee80211_del_intf_link > ieee80211_vif_set_links > ieee80211_vif_update_links > ieee80211_link_stop -> this ultimately tries to stop CAC if it is ongoing. > >> Will it be >> okay to add a new NL command to stop radar detection? Something opposite >> of what start_radar_detection command does? >> > > No, obviously not. > > johannes
On Wed, 2024-11-13 at 21:50 +0530, Aditya Kumar Singh wrote: > > Because link ID is cleared from the bitmap well before link stop is > called. As mentioned in commit message, this is the flow - > > nl80211_remove_link > > cfg80211_remove_link -> link ID gets updated here > > ieee80211_del_intf_link > > ieee80211_vif_set_links > > ieee80211_vif_update_links > > ieee80211_link_stop -> this ultimately tries to stop > CAC if it is ongoing. > OK, but why does it have to be that way? It's all under wiphy mutex, so perhaps we could just clear it later? There's necessarily going to be some temporary inconsistency here, I'm not sure it matters too much if it isn't very visible? Alternatively, could do something like wdev->valid_links &= ~BIT(link_id); wdev->removing_link = link_id; ... wdev->removing_link = -1; and accept the wdev->removing_link in these APIs like CAC? johannes
diff --git a/net/wireless/mlme.c b/net/wireless/mlme.c index a5eb92d93074e6ce1e08fcc2790b80cf04ff08f8..2a932a036225a3e0587cf5c18a4e80e91552313b 100644 --- a/net/wireless/mlme.c +++ b/net/wireless/mlme.c @@ -1112,10 +1112,6 @@ void cfg80211_cac_event(struct net_device *netdev, struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy); unsigned long timeout; - if (WARN_ON(wdev->valid_links && - !(wdev->valid_links & BIT(link_id)))) - return; - trace_cfg80211_cac_event(netdev, event, link_id); if (WARN_ON(!wdev->links[link_id].cac_started &&