This patch enables DFS within nl80211/cfg80211. start_ap now checks if DFS is allowed on the channel with the selected channel width. Signed-off-by: Simon Wunderlich <siwu@xxxxxxxxxxxxxxxxxx> --- Changes to PATCHv5: * check radar detection width --- net/wireless/mlme.c | 1 + net/wireless/nl80211.c | 23 +++++++++++++++++++++-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/net/wireless/mlme.c b/net/wireless/mlme.c index 6b63ffb..153c4ed 100644 --- a/net/wireless/mlme.c +++ b/net/wireless/mlme.c @@ -709,6 +709,7 @@ int cfg80211_mlme_register_mgmt(struct wireless_dev *wdev, u32 snd_portid, void cfg80211_mlme_unregister_socket(struct wireless_dev *wdev, u32 nlportid) { struct wiphy *wiphy = wdev->wiphy; + struct net_device *dev = wdev->netdev; struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); struct cfg80211_mgmt_registration *reg, *tmp; diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index d98c1d3..2bb9889 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -2600,7 +2600,9 @@ static int nl80211_start_ap(struct sk_buff *skb, struct genl_info *info) struct net_device *dev = info->user_ptr[1]; struct wireless_dev *wdev = dev->ieee80211_ptr; struct cfg80211_ap_settings params; + struct ieee80211_channel *chan; int err; + u8 radar_detect_width = 0; if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP && dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) @@ -2719,9 +2721,26 @@ static int nl80211_start_ap(struct sk_buff *skb, struct genl_info *info) if (!cfg80211_reg_can_beacon(&rdev->wiphy, ¶ms.chandef)) return -EINVAL; + chan = params.chandef.chan; + + if (chan->flags & IEEE80211_CHAN_RADAR) { + if (!(rdev->wiphy.features & NL80211_FEATURE_DFS)) + return -EINVAL; + + if (!chan->cac_started) + return -EPERM; + + if (time_is_after_jiffies(chan->radar_detect_timeout)) + return -EPERM; + + radar_detect_width = BIT(params.chandef.width); + } + mutex_lock(&rdev->devlist_mtx); - err = cfg80211_can_use_chan(rdev, wdev, params.chandef.chan, - CHAN_MODE_SHARED); + err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype, + params.chandef.chan, + CHAN_MODE_SHARED, + radar_detect_width); mutex_unlock(&rdev->devlist_mtx); if (err) -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html