blob: 4b9c2be0d56d85506319f08ecff55af49bbd6ae3 [file] [log] [blame]
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001/*
2 * cfg80211 MLME SAP interface
3 *
4 * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
5 */
6
7#include <linux/kernel.h>
8#include <linux/module.h>
Felix Fietkauc6fb08a2012-03-18 22:58:04 +01009#include <linux/etherdevice.h>
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010#include <linux/netdevice.h>
11#include <linux/nl80211.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Johannes Berga9a11622009-07-27 12:01:53 +020013#include <linux/wireless.h>
Jouni Malinen6039f6d2009-03-19 13:39:21 +020014#include <net/cfg80211.h>
Johannes Berga9a11622009-07-27 12:01:53 +020015#include <net/iw_handler.h>
Jouni Malinen6039f6d2009-03-19 13:39:21 +020016#include "core.h"
17#include "nl80211.h"
Hila Gonene35e4d22012-06-27 17:19:42 +030018#include "rdev-ops.h"
19
Jouni Malinen6039f6d2009-03-19 13:39:21 +020020
Johannes Berg6ff57cf2013-05-16 00:55:00 +020021void cfg80211_rx_assoc_resp(struct net_device *dev, struct cfg80211_bss *bss,
Johannes Berg95de8172012-01-20 13:55:25 +010022 const u8 *buf, size_t len)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020023{
Johannes Berg6829c872009-07-02 09:13:27 +020024 u16 status_code;
25 struct wireless_dev *wdev = dev->ieee80211_ptr;
26 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen6039f6d2009-03-19 13:39:21 +020027 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6829c872009-07-02 09:13:27 +020028 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)buf;
29 u8 *ie = mgmt->u.assoc_resp.variable;
Johannes Berg95de8172012-01-20 13:55:25 +010030 int ieoffs = offsetof(struct ieee80211_mgmt, u.assoc_resp.variable);
Johannes Berg6829c872009-07-02 09:13:27 +020031
Beni Lev4ee3e062012-08-27 12:49:39 +030032 trace_cfg80211_send_rx_assoc(dev, bss);
Johannes Bergcb0b4be2009-07-07 03:56:07 +020033
Johannes Berg6829c872009-07-02 09:13:27 +020034 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
35
Johannes Bergf401a6f2009-08-07 14:51:05 +020036 /*
37 * This is a bit of a hack, we don't notify userspace of
38 * a (re-)association reply if we tried to send a reassoc
39 * and got a reject -- we only try again with an assoc
40 * frame instead of reassoc.
41 */
42 if (status_code != WLAN_STATUS_SUCCESS && wdev->conn &&
Johannes Berg95de8172012-01-20 13:55:25 +010043 cfg80211_sme_failed_reassoc(wdev)) {
Johannes Berg5b112d32013-02-01 01:49:58 +010044 cfg80211_put_bss(wiphy, bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +020045 return;
Johannes Berg95de8172012-01-20 13:55:25 +010046 }
Johannes Bergf401a6f2009-08-07 14:51:05 +020047
Johannes Bergcb0b4be2009-07-07 03:56:07 +020048 nl80211_send_rx_assoc(rdev, dev, buf, len, GFP_KERNEL);
Johannes Berg6829c872009-07-02 09:13:27 +020049
Johannes Berg95de8172012-01-20 13:55:25 +010050 if (status_code != WLAN_STATUS_SUCCESS && wdev->conn) {
Johannes Berg7d930bc2009-10-20 15:08:53 +090051 cfg80211_sme_failed_assoc(wdev);
Johannes Berg7d930bc2009-10-20 15:08:53 +090052 /*
53 * do not call connect_result() now because the
54 * sme will schedule work that does it later.
55 */
Johannes Berg5b112d32013-02-01 01:49:58 +010056 cfg80211_put_bss(wiphy, bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +020057 return;
Johannes Bergdf7fc0f2009-07-29 11:23:49 +020058 }
59
Johannes Bergea416a72009-08-17 12:22:14 +020060 if (!wdev->conn && wdev->sme_state == CFG80211_SME_IDLE) {
61 /*
62 * This is for the userspace SME, the CONNECTING
63 * state will be changed to CONNECTED by
64 * __cfg80211_connect_result() below.
65 */
66 wdev->sme_state = CFG80211_SME_CONNECTING;
67 }
68
Johannes Berg95de8172012-01-20 13:55:25 +010069 /* this consumes the bss reference */
Johannes Bergdf7fc0f2009-07-29 11:23:49 +020070 __cfg80211_connect_result(dev, mgmt->bssid, NULL, 0, ie, len - ieoffs,
71 status_code,
Johannes Berg95de8172012-01-20 13:55:25 +010072 status_code == WLAN_STATUS_SUCCESS, bss);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020073}
Johannes Berg6ff57cf2013-05-16 00:55:00 +020074EXPORT_SYMBOL(cfg80211_rx_assoc_resp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020075
Johannes Berg6ff57cf2013-05-16 00:55:00 +020076static void cfg80211_process_deauth(struct net_device *dev,
77 const u8 *buf, size_t len)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020078{
Johannes Berg6829c872009-07-02 09:13:27 +020079 struct wireless_dev *wdev = dev->ieee80211_ptr;
80 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen6039f6d2009-03-19 13:39:21 +020081 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6829c872009-07-02 09:13:27 +020082 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)buf;
Johannes Berg19957bb2009-07-02 17:20:43 +020083 const u8 *bssid = mgmt->bssid;
Johannes Berg95de8172012-01-20 13:55:25 +010084 bool was_current = false;
Johannes Berg6829c872009-07-02 09:13:27 +020085
Johannes Berg19957bb2009-07-02 17:20:43 +020086 if (wdev->current_bss &&
Joe Perchesac422d32012-05-08 18:56:55 +000087 ether_addr_equal(wdev->current_bss->pub.bssid, bssid)) {
Johannes Berg19957bb2009-07-02 17:20:43 +020088 cfg80211_unhold_bss(wdev->current_bss);
Johannes Berg5b112d32013-02-01 01:49:58 +010089 cfg80211_put_bss(wiphy, &wdev->current_bss->pub);
Johannes Berg19957bb2009-07-02 17:20:43 +020090 wdev->current_bss = NULL;
Johannes Berg3f3b6a82010-08-05 10:20:27 +020091 was_current = true;
Johannes Berg19957bb2009-07-02 17:20:43 +020092 }
Johannes Berg19957bb2009-07-02 17:20:43 +020093
Johannes Berg5fba4af2009-12-02 12:43:42 +010094 nl80211_send_deauth(rdev, dev, buf, len, GFP_KERNEL);
95
Johannes Berg3f3b6a82010-08-05 10:20:27 +020096 if (wdev->sme_state == CFG80211_SME_CONNECTED && was_current) {
Johannes Berg6829c872009-07-02 09:13:27 +020097 u16 reason_code;
98 bool from_ap;
99
100 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
101
Joe Perchesac422d32012-05-08 18:56:55 +0000102 from_ap = !ether_addr_equal(mgmt->sa, dev->dev_addr);
Johannes Berg667503dd2009-07-07 03:56:11 +0200103 __cfg80211_disconnected(dev, NULL, 0, reason_code, from_ap);
Johannes Berg6829c872009-07-02 09:13:27 +0200104 } else if (wdev->sme_state == CFG80211_SME_CONNECTING) {
Johannes Berg667503dd2009-07-07 03:56:11 +0200105 __cfg80211_connect_result(dev, mgmt->bssid, NULL, 0, NULL, 0,
106 WLAN_STATUS_UNSPECIFIED_FAILURE,
Johannes Bergdf7fc0f2009-07-29 11:23:49 +0200107 false, NULL);
Johannes Berg667503dd2009-07-07 03:56:11 +0200108 }
109}
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200110
Johannes Berg6ff57cf2013-05-16 00:55:00 +0200111static void cfg80211_process_disassoc(struct net_device *dev,
112 const u8 *buf, size_t len)
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200113{
Johannes Berg6829c872009-07-02 09:13:27 +0200114 struct wireless_dev *wdev = dev->ieee80211_ptr;
115 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200116 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6829c872009-07-02 09:13:27 +0200117 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)buf;
Johannes Berg19957bb2009-07-02 17:20:43 +0200118 const u8 *bssid = mgmt->bssid;
Johannes Berg19957bb2009-07-02 17:20:43 +0200119 u16 reason_code;
120 bool from_ap;
Johannes Berg6829c872009-07-02 09:13:27 +0200121
Johannes Bergcb0b4be2009-07-07 03:56:07 +0200122 nl80211_send_disassoc(rdev, dev, buf, len, GFP_KERNEL);
Johannes Berg6829c872009-07-02 09:13:27 +0200123
Johannes Berg596a07c2009-07-11 00:17:32 +0200124 if (wdev->sme_state != CFG80211_SME_CONNECTED)
125 return;
Johannes Berg6829c872009-07-02 09:13:27 +0200126
Johannes Berg19957bb2009-07-02 17:20:43 +0200127 if (wdev->current_bss &&
Joe Perchesac422d32012-05-08 18:56:55 +0000128 ether_addr_equal(wdev->current_bss->pub.bssid, bssid)) {
Johannes Berg95de8172012-01-20 13:55:25 +0100129 cfg80211_sme_disassoc(dev, wdev->current_bss);
130 cfg80211_unhold_bss(wdev->current_bss);
Johannes Berg5b112d32013-02-01 01:49:58 +0100131 cfg80211_put_bss(wiphy, &wdev->current_bss->pub);
Johannes Berg95de8172012-01-20 13:55:25 +0100132 wdev->current_bss = NULL;
Johannes Berg19957bb2009-07-02 17:20:43 +0200133 } else
134 WARN_ON(1);
Johannes Berg6829c872009-07-02 09:13:27 +0200135
Johannes Berg19957bb2009-07-02 17:20:43 +0200136 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
137
Joe Perchesac422d32012-05-08 18:56:55 +0000138 from_ap = !ether_addr_equal(mgmt->sa, dev->dev_addr);
Johannes Berg667503dd2009-07-07 03:56:11 +0200139 __cfg80211_disconnected(dev, NULL, 0, reason_code, from_ap);
Johannes Berg667503dd2009-07-07 03:56:11 +0200140}
Jouni Malinena3b8b052009-03-27 21:59:49 +0200141
Johannes Berg6ff57cf2013-05-16 00:55:00 +0200142void cfg80211_rx_mlme_mgmt(struct net_device *dev, const u8 *buf, size_t len)
143{
144 struct wireless_dev *wdev = dev->ieee80211_ptr;
145 struct wiphy *wiphy = wdev->wiphy;
146 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
147 struct ieee80211_mgmt *mgmt = (void *)buf;
148
149 ASSERT_WDEV_LOCK(wdev);
150
151 trace_cfg80211_rx_mlme_mgmt(dev, buf, len);
152
153 if (WARN_ON(len < 2))
154 return;
155
156 if (ieee80211_is_auth(mgmt->frame_control)) {
157 nl80211_send_rx_auth(rdev, dev, buf, len, GFP_KERNEL);
158 cfg80211_sme_rx_auth(dev, buf, len);
159 } else if (ieee80211_is_deauth(mgmt->frame_control)) {
160 cfg80211_process_deauth(dev, buf, len);
161 } else if (ieee80211_is_disassoc(mgmt->frame_control)) {
162 cfg80211_process_disassoc(dev, buf, len);
163 }
164}
165EXPORT_SYMBOL(cfg80211_rx_mlme_mgmt);
166
167void cfg80211_auth_timeout(struct net_device *dev, const u8 *addr)
Johannes Berga58ce432009-11-19 12:45:42 +0100168{
169 struct wireless_dev *wdev = dev->ieee80211_ptr;
170 struct wiphy *wiphy = wdev->wiphy;
171 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
172
Beni Lev4ee3e062012-08-27 12:49:39 +0300173 trace_cfg80211_send_auth_timeout(dev, addr);
Johannes Berga58ce432009-11-19 12:45:42 +0100174
175 nl80211_send_auth_timeout(rdev, dev, addr, GFP_KERNEL);
176 if (wdev->sme_state == CFG80211_SME_CONNECTING)
177 __cfg80211_connect_result(dev, addr, NULL, 0, NULL, 0,
178 WLAN_STATUS_UNSPECIFIED_FAILURE,
179 false, NULL);
Jouni Malinen1965c852009-04-22 21:38:25 +0300180}
Johannes Berg6ff57cf2013-05-16 00:55:00 +0200181EXPORT_SYMBOL(cfg80211_auth_timeout);
Jouni Malinen1965c852009-04-22 21:38:25 +0300182
Johannes Berg6ff57cf2013-05-16 00:55:00 +0200183void cfg80211_assoc_timeout(struct net_device *dev, const u8 *addr)
Jouni Malinen1965c852009-04-22 21:38:25 +0300184{
Johannes Berg6829c872009-07-02 09:13:27 +0200185 struct wireless_dev *wdev = dev->ieee80211_ptr;
186 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen1965c852009-04-22 21:38:25 +0300187 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg19957bb2009-07-02 17:20:43 +0200188
Beni Lev4ee3e062012-08-27 12:49:39 +0300189 trace_cfg80211_send_assoc_timeout(dev, addr);
Johannes Bergcb0b4be2009-07-07 03:56:07 +0200190
191 nl80211_send_assoc_timeout(rdev, dev, addr, GFP_KERNEL);
Johannes Berg6829c872009-07-02 09:13:27 +0200192 if (wdev->sme_state == CFG80211_SME_CONNECTING)
Johannes Berg667503dd2009-07-07 03:56:11 +0200193 __cfg80211_connect_result(dev, addr, NULL, 0, NULL, 0,
194 WLAN_STATUS_UNSPECIFIED_FAILURE,
Johannes Bergdf7fc0f2009-07-29 11:23:49 +0200195 false, NULL);
Jouni Malinen1965c852009-04-22 21:38:25 +0300196}
Johannes Berg6ff57cf2013-05-16 00:55:00 +0200197EXPORT_SYMBOL(cfg80211_assoc_timeout);
198
199void cfg80211_tx_mlme_mgmt(struct net_device *dev, const u8 *buf, size_t len)
200{
201 struct wireless_dev *wdev = dev->ieee80211_ptr;
202 struct ieee80211_mgmt *mgmt = (void *)buf;
203
204 ASSERT_WDEV_LOCK(wdev);
205
206 trace_cfg80211_tx_mlme_mgmt(dev, buf, len);
207
208 if (WARN_ON(len < 2))
209 return;
210
211 if (ieee80211_is_deauth(mgmt->frame_control))
212 cfg80211_process_deauth(dev, buf, len);
213 else
214 cfg80211_process_disassoc(dev, buf, len);
215}
216EXPORT_SYMBOL(cfg80211_tx_mlme_mgmt);
Jouni Malinen1965c852009-04-22 21:38:25 +0300217
Jouni Malinena3b8b052009-03-27 21:59:49 +0200218void cfg80211_michael_mic_failure(struct net_device *dev, const u8 *addr,
219 enum nl80211_key_type key_type, int key_id,
Johannes Berge6d6e342009-07-01 21:26:47 +0200220 const u8 *tsc, gfp_t gfp)
Jouni Malinena3b8b052009-03-27 21:59:49 +0200221{
222 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
223 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg3d23e342009-09-29 23:27:28 +0200224#ifdef CONFIG_CFG80211_WEXT
Johannes Bergf58d4ed2009-06-19 02:45:21 +0200225 union iwreq_data wrqu;
Johannes Berge6d6e342009-07-01 21:26:47 +0200226 char *buf = kmalloc(128, gfp);
Johannes Bergf58d4ed2009-06-19 02:45:21 +0200227
228 if (buf) {
229 sprintf(buf, "MLME-MICHAELMICFAILURE.indication("
230 "keyid=%d %scast addr=%pM)", key_id,
231 key_type == NL80211_KEYTYPE_GROUP ? "broad" : "uni",
232 addr);
233 memset(&wrqu, 0, sizeof(wrqu));
234 wrqu.data.length = strlen(buf);
235 wireless_send_event(dev, IWEVCUSTOM, &wrqu, buf);
236 kfree(buf);
237 }
238#endif
239
Beni Lev4ee3e062012-08-27 12:49:39 +0300240 trace_cfg80211_michael_mic_failure(dev, addr, key_type, key_id, tsc);
Johannes Berge6d6e342009-07-01 21:26:47 +0200241 nl80211_michael_mic_failure(rdev, dev, addr, key_type, key_id, tsc, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +0200242}
243EXPORT_SYMBOL(cfg80211_michael_mic_failure);
Johannes Berg19957bb2009-07-02 17:20:43 +0200244
245/* some MLME handling for userspace SME */
Johannes Berg91bf9b22013-05-15 17:44:01 +0200246int cfg80211_mlme_auth(struct cfg80211_registered_device *rdev,
247 struct net_device *dev,
248 struct ieee80211_channel *chan,
249 enum nl80211_auth_type auth_type,
250 const u8 *bssid,
251 const u8 *ssid, int ssid_len,
252 const u8 *ie, int ie_len,
253 const u8 *key, int key_len, int key_idx,
254 const u8 *sae_data, int sae_data_len)
Johannes Berg19957bb2009-07-02 17:20:43 +0200255{
256 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg7ade7032013-05-13 11:37:30 +0200257 struct cfg80211_auth_request req = {
258 .ie = ie,
259 .ie_len = ie_len,
260 .sae_data = sae_data,
261 .sae_data_len = sae_data_len,
262 .auth_type = auth_type,
263 .key = key,
264 .key_len = key_len,
265 .key_idx = key_idx,
266 };
Johannes Berg95de8172012-01-20 13:55:25 +0100267 int err;
Johannes Berg19957bb2009-07-02 17:20:43 +0200268
Johannes Berg667503dd2009-07-07 03:56:11 +0200269 ASSERT_WDEV_LOCK(wdev);
270
Johannes Bergfffd0932009-07-08 14:22:54 +0200271 if (auth_type == NL80211_AUTHTYPE_SHARED_KEY)
272 if (!key || !key_len || key_idx < 0 || key_idx > 4)
273 return -EINVAL;
274
Johannes Berg0a9b5e12009-07-02 18:26:18 +0200275 if (wdev->current_bss &&
Joe Perchesac422d32012-05-08 18:56:55 +0000276 ether_addr_equal(bssid, wdev->current_bss->pub.bssid))
Johannes Berg0a9b5e12009-07-02 18:26:18 +0200277 return -EALREADY;
278
Johannes Berg19957bb2009-07-02 17:20:43 +0200279 req.bss = cfg80211_get_bss(&rdev->wiphy, chan, bssid, ssid, ssid_len,
280 WLAN_CAPABILITY_ESS, WLAN_CAPABILITY_ESS);
281 if (!req.bss)
282 return -ENOENT;
283
Michal Kaziore4e32452012-06-29 12:47:08 +0200284 err = cfg80211_can_use_chan(rdev, wdev, req.bss->channel,
285 CHAN_MODE_SHARED);
286 if (err)
287 goto out;
288
Hila Gonene35e4d22012-06-27 17:19:42 +0300289 err = rdev_auth(rdev, dev, &req);
Johannes Berg19957bb2009-07-02 17:20:43 +0200290
Michal Kaziore4e32452012-06-29 12:47:08 +0200291out:
Johannes Berg5b112d32013-02-01 01:49:58 +0100292 cfg80211_put_bss(&rdev->wiphy, req.bss);
Johannes Berg19957bb2009-07-02 17:20:43 +0200293 return err;
294}
295
Ben Greear7e7c8922011-11-18 11:31:59 -0800296/* Do a logical ht_capa &= ht_capa_mask. */
297void cfg80211_oper_and_ht_capa(struct ieee80211_ht_cap *ht_capa,
298 const struct ieee80211_ht_cap *ht_capa_mask)
299{
300 int i;
301 u8 *p1, *p2;
302 if (!ht_capa_mask) {
303 memset(ht_capa, 0, sizeof(*ht_capa));
304 return;
305 }
306
307 p1 = (u8*)(ht_capa);
308 p2 = (u8*)(ht_capa_mask);
309 for (i = 0; i<sizeof(*ht_capa); i++)
310 p1[i] &= p2[i];
311}
312
Johannes Bergee2aca32013-02-21 17:36:01 +0100313/* Do a logical ht_capa &= ht_capa_mask. */
314void cfg80211_oper_and_vht_capa(struct ieee80211_vht_cap *vht_capa,
315 const struct ieee80211_vht_cap *vht_capa_mask)
316{
317 int i;
318 u8 *p1, *p2;
319 if (!vht_capa_mask) {
320 memset(vht_capa, 0, sizeof(*vht_capa));
321 return;
322 }
323
324 p1 = (u8*)(vht_capa);
325 p2 = (u8*)(vht_capa_mask);
326 for (i = 0; i < sizeof(*vht_capa); i++)
327 p1[i] &= p2[i];
328}
329
Johannes Berg91bf9b22013-05-15 17:44:01 +0200330int cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
331 struct net_device *dev,
332 struct ieee80211_channel *chan,
333 const u8 *bssid,
334 const u8 *ssid, int ssid_len,
335 struct cfg80211_assoc_request *req)
Johannes Berg19957bb2009-07-02 17:20:43 +0200336{
337 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg95de8172012-01-20 13:55:25 +0100338 int err;
Jouni Malinen24b6b152009-11-17 21:35:38 +0200339 bool was_connected = false;
Johannes Berg19957bb2009-07-02 17:20:43 +0200340
Johannes Berg667503dd2009-07-07 03:56:11 +0200341 ASSERT_WDEV_LOCK(wdev);
342
Johannes Bergf62fab72013-02-21 20:09:09 +0100343 if (wdev->current_bss && req->prev_bssid &&
344 ether_addr_equal(wdev->current_bss->pub.bssid, req->prev_bssid)) {
Jouni Malinen24b6b152009-11-17 21:35:38 +0200345 /*
346 * Trying to reassociate: Allow this to proceed and let the old
347 * association to be dropped when the new one is completed.
348 */
349 if (wdev->sme_state == CFG80211_SME_CONNECTED) {
350 was_connected = true;
351 wdev->sme_state = CFG80211_SME_CONNECTING;
352 }
353 } else if (wdev->current_bss)
Johannes Berg19957bb2009-07-02 17:20:43 +0200354 return -EALREADY;
355
Johannes Bergf62fab72013-02-21 20:09:09 +0100356 cfg80211_oper_and_ht_capa(&req->ht_capa_mask,
Ben Greear7e7c8922011-11-18 11:31:59 -0800357 rdev->wiphy.ht_capa_mod_mask);
Johannes Bergf62fab72013-02-21 20:09:09 +0100358 cfg80211_oper_and_vht_capa(&req->vht_capa_mask,
Johannes Bergee2aca32013-02-21 17:36:01 +0100359 rdev->wiphy.vht_capa_mod_mask);
Ben Greear7e7c8922011-11-18 11:31:59 -0800360
Johannes Bergf62fab72013-02-21 20:09:09 +0100361 req->bss = cfg80211_get_bss(&rdev->wiphy, chan, bssid, ssid, ssid_len,
362 WLAN_CAPABILITY_ESS, WLAN_CAPABILITY_ESS);
363 if (!req->bss) {
Jouni Malinen24b6b152009-11-17 21:35:38 +0200364 if (was_connected)
365 wdev->sme_state = CFG80211_SME_CONNECTED;
Johannes Berg19957bb2009-07-02 17:20:43 +0200366 return -ENOENT;
Jouni Malinen24b6b152009-11-17 21:35:38 +0200367 }
Johannes Berg19957bb2009-07-02 17:20:43 +0200368
Johannes Bergf62fab72013-02-21 20:09:09 +0100369 err = cfg80211_can_use_chan(rdev, wdev, chan, CHAN_MODE_SHARED);
Michal Kaziore4e32452012-06-29 12:47:08 +0200370 if (err)
371 goto out;
372
Johannes Bergf62fab72013-02-21 20:09:09 +0100373 err = rdev_assoc(rdev, dev, req);
Johannes Berg95de8172012-01-20 13:55:25 +0100374
Michal Kaziore4e32452012-06-29 12:47:08 +0200375out:
Johannes Berg95de8172012-01-20 13:55:25 +0100376 if (err) {
377 if (was_connected)
378 wdev->sme_state = CFG80211_SME_CONNECTED;
Johannes Bergf62fab72013-02-21 20:09:09 +0100379 cfg80211_put_bss(&rdev->wiphy, req->bss);
Johannes Berg95de8172012-01-20 13:55:25 +0100380 }
381
Johannes Berg19957bb2009-07-02 17:20:43 +0200382 return err;
383}
384
Johannes Berg91bf9b22013-05-15 17:44:01 +0200385int cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
386 struct net_device *dev, const u8 *bssid,
387 const u8 *ie, int ie_len, u16 reason,
388 bool local_state_change)
Johannes Berg19957bb2009-07-02 17:20:43 +0200389{
390 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg95de8172012-01-20 13:55:25 +0100391 struct cfg80211_deauth_request req = {
392 .bssid = bssid,
393 .reason_code = reason,
394 .ie = ie,
395 .ie_len = ie_len,
Stanislaw Gruszka68632552012-10-15 14:52:41 +0200396 .local_state_change = local_state_change,
Johannes Berg95de8172012-01-20 13:55:25 +0100397 };
Johannes Berg19957bb2009-07-02 17:20:43 +0200398
Johannes Berg667503dd2009-07-07 03:56:11 +0200399 ASSERT_WDEV_LOCK(wdev);
400
Stanislaw Gruszka68632552012-10-15 14:52:41 +0200401 if (local_state_change && (!wdev->current_bss ||
402 !ether_addr_equal(wdev->current_bss->pub.bssid, bssid)))
Johannes Berg95de8172012-01-20 13:55:25 +0100403 return 0;
Johannes Berg19957bb2009-07-02 17:20:43 +0200404
Hila Gonene35e4d22012-06-27 17:19:42 +0300405 return rdev_deauth(rdev, dev, &req);
Johannes Berg19957bb2009-07-02 17:20:43 +0200406}
407
Johannes Berg91bf9b22013-05-15 17:44:01 +0200408int cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
409 struct net_device *dev, const u8 *bssid,
410 const u8 *ie, int ie_len, u16 reason,
411 bool local_state_change)
Johannes Berg19957bb2009-07-02 17:20:43 +0200412{
413 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg7ade7032013-05-13 11:37:30 +0200414 struct cfg80211_disassoc_request req = {
415 .reason_code = reason,
416 .local_state_change = local_state_change,
417 .ie = ie,
418 .ie_len = ie_len,
419 };
Johannes Berg19957bb2009-07-02 17:20:43 +0200420
Johannes Berg667503dd2009-07-07 03:56:11 +0200421 ASSERT_WDEV_LOCK(wdev);
422
Johannes Bergf9d6b402009-07-27 10:22:28 +0200423 if (wdev->sme_state != CFG80211_SME_CONNECTED)
424 return -ENOTCONN;
425
Johannes Berg8dcf0112013-01-26 22:16:08 +0100426 if (WARN(!wdev->current_bss, "sme_state=%d\n", wdev->sme_state))
Johannes Bergf9d6b402009-07-27 10:22:28 +0200427 return -ENOTCONN;
428
Joe Perchesac422d32012-05-08 18:56:55 +0000429 if (ether_addr_equal(wdev->current_bss->pub.bssid, bssid))
Johannes Berg19957bb2009-07-02 17:20:43 +0200430 req.bss = &wdev->current_bss->pub;
431 else
432 return -ENOTCONN;
433
Hila Gonene35e4d22012-06-27 17:19:42 +0300434 return rdev_disassoc(rdev, dev, &req);
Johannes Berg667503dd2009-07-07 03:56:11 +0200435}
436
Johannes Berg19957bb2009-07-02 17:20:43 +0200437void cfg80211_mlme_down(struct cfg80211_registered_device *rdev,
438 struct net_device *dev)
439{
440 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg95de8172012-01-20 13:55:25 +0100441 u8 bssid[ETH_ALEN];
Johannes Berg7ade7032013-05-13 11:37:30 +0200442 struct cfg80211_deauth_request req = {
443 .reason_code = WLAN_REASON_DEAUTH_LEAVING,
444 .bssid = bssid,
445 };
Johannes Berg19957bb2009-07-02 17:20:43 +0200446
Johannes Berg667503dd2009-07-07 03:56:11 +0200447 ASSERT_WDEV_LOCK(wdev);
448
Johannes Berg19957bb2009-07-02 17:20:43 +0200449 if (!rdev->ops->deauth)
450 return;
451
Johannes Berg95de8172012-01-20 13:55:25 +0100452 if (!wdev->current_bss)
453 return;
Johannes Berg19957bb2009-07-02 17:20:43 +0200454
Johannes Berg95de8172012-01-20 13:55:25 +0100455 memcpy(bssid, wdev->current_bss->pub.bssid, ETH_ALEN);
Hila Gonene35e4d22012-06-27 17:19:42 +0300456 rdev_deauth(rdev, dev, &req);
Johannes Berg95de8172012-01-20 13:55:25 +0100457
458 if (wdev->current_bss) {
459 cfg80211_unhold_bss(wdev->current_bss);
Johannes Berg5b112d32013-02-01 01:49:58 +0100460 cfg80211_put_bss(&rdev->wiphy, &wdev->current_bss->pub);
Johannes Berg95de8172012-01-20 13:55:25 +0100461 wdev->current_bss = NULL;
Johannes Berg19957bb2009-07-02 17:20:43 +0200462 }
463}
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100464
Johannes Berg2e161f72010-08-12 15:38:38 +0200465struct cfg80211_mgmt_registration {
Jouni Malinen026331c2010-02-15 12:53:10 +0200466 struct list_head list;
467
Eric W. Biederman15e47302012-09-07 20:12:54 +0000468 u32 nlportid;
Jouni Malinen026331c2010-02-15 12:53:10 +0200469
470 int match_len;
471
Johannes Berg2e161f72010-08-12 15:38:38 +0200472 __le16 frame_type;
473
Jouni Malinen026331c2010-02-15 12:53:10 +0200474 u8 match[];
475};
476
Eric W. Biederman15e47302012-09-07 20:12:54 +0000477int cfg80211_mlme_register_mgmt(struct wireless_dev *wdev, u32 snd_portid,
Johannes Berg2e161f72010-08-12 15:38:38 +0200478 u16 frame_type, const u8 *match_data,
479 int match_len)
Jouni Malinen026331c2010-02-15 12:53:10 +0200480{
Johannes Berg271733c2010-10-13 12:06:23 +0200481 struct wiphy *wiphy = wdev->wiphy;
482 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200483 struct cfg80211_mgmt_registration *reg, *nreg;
Jouni Malinen026331c2010-02-15 12:53:10 +0200484 int err = 0;
Johannes Berg2e161f72010-08-12 15:38:38 +0200485 u16 mgmt_type;
486
487 if (!wdev->wiphy->mgmt_stypes)
488 return -EOPNOTSUPP;
489
490 if ((frame_type & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT)
491 return -EINVAL;
492
493 if (frame_type & ~(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE))
494 return -EINVAL;
495
496 mgmt_type = (frame_type & IEEE80211_FCTL_STYPE) >> 4;
497 if (!(wdev->wiphy->mgmt_stypes[wdev->iftype].rx & BIT(mgmt_type)))
498 return -EINVAL;
Jouni Malinen026331c2010-02-15 12:53:10 +0200499
500 nreg = kzalloc(sizeof(*reg) + match_len, GFP_KERNEL);
501 if (!nreg)
502 return -ENOMEM;
503
Johannes Berg2e161f72010-08-12 15:38:38 +0200504 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200505
Johannes Berg2e161f72010-08-12 15:38:38 +0200506 list_for_each_entry(reg, &wdev->mgmt_registrations, list) {
Jouni Malinen026331c2010-02-15 12:53:10 +0200507 int mlen = min(match_len, reg->match_len);
508
Johannes Berg2e161f72010-08-12 15:38:38 +0200509 if (frame_type != le16_to_cpu(reg->frame_type))
510 continue;
511
Jouni Malinen026331c2010-02-15 12:53:10 +0200512 if (memcmp(reg->match, match_data, mlen) == 0) {
513 err = -EALREADY;
514 break;
515 }
516 }
517
518 if (err) {
519 kfree(nreg);
520 goto out;
521 }
522
523 memcpy(nreg->match, match_data, match_len);
524 nreg->match_len = match_len;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000525 nreg->nlportid = snd_portid;
Johannes Berg2e161f72010-08-12 15:38:38 +0200526 nreg->frame_type = cpu_to_le16(frame_type);
527 list_add(&nreg->list, &wdev->mgmt_registrations);
Jouni Malinen026331c2010-02-15 12:53:10 +0200528
Johannes Berg271733c2010-10-13 12:06:23 +0200529 if (rdev->ops->mgmt_frame_register)
Hila Gonene35e4d22012-06-27 17:19:42 +0300530 rdev_mgmt_frame_register(rdev, wdev, frame_type, true);
Johannes Berg271733c2010-10-13 12:06:23 +0200531
Jouni Malinen026331c2010-02-15 12:53:10 +0200532 out:
Johannes Berg2e161f72010-08-12 15:38:38 +0200533 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Johannes Berg271733c2010-10-13 12:06:23 +0200534
Jouni Malinen026331c2010-02-15 12:53:10 +0200535 return err;
536}
537
Eric W. Biederman15e47302012-09-07 20:12:54 +0000538void cfg80211_mlme_unregister_socket(struct wireless_dev *wdev, u32 nlportid)
Jouni Malinen026331c2010-02-15 12:53:10 +0200539{
Johannes Berg271733c2010-10-13 12:06:23 +0200540 struct wiphy *wiphy = wdev->wiphy;
541 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200542 struct cfg80211_mgmt_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +0200543
Johannes Berg2e161f72010-08-12 15:38:38 +0200544 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200545
Johannes Berg2e161f72010-08-12 15:38:38 +0200546 list_for_each_entry_safe(reg, tmp, &wdev->mgmt_registrations, list) {
Eric W. Biederman15e47302012-09-07 20:12:54 +0000547 if (reg->nlportid != nlportid)
Johannes Berg271733c2010-10-13 12:06:23 +0200548 continue;
549
550 if (rdev->ops->mgmt_frame_register) {
551 u16 frame_type = le16_to_cpu(reg->frame_type);
552
Hila Gonene35e4d22012-06-27 17:19:42 +0300553 rdev_mgmt_frame_register(rdev, wdev,
554 frame_type, false);
Jouni Malinen026331c2010-02-15 12:53:10 +0200555 }
Johannes Berg271733c2010-10-13 12:06:23 +0200556
557 list_del(&reg->list);
558 kfree(reg);
Jouni Malinen026331c2010-02-15 12:53:10 +0200559 }
560
Johannes Berg2e161f72010-08-12 15:38:38 +0200561 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Johannes Berg28946da2011-11-04 11:18:12 +0100562
Arend van Spriel5de17982013-04-18 15:49:00 +0200563 if (nlportid && rdev->crit_proto_nlportid == nlportid) {
564 rdev->crit_proto_nlportid = 0;
565 rdev_crit_proto_stop(rdev, wdev);
566 }
567
Eric W. Biederman15e47302012-09-07 20:12:54 +0000568 if (nlportid == wdev->ap_unexpected_nlportid)
569 wdev->ap_unexpected_nlportid = 0;
Jouni Malinen026331c2010-02-15 12:53:10 +0200570}
571
Johannes Berg2e161f72010-08-12 15:38:38 +0200572void cfg80211_mlme_purge_registrations(struct wireless_dev *wdev)
Jouni Malinen026331c2010-02-15 12:53:10 +0200573{
Johannes Berg2e161f72010-08-12 15:38:38 +0200574 struct cfg80211_mgmt_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +0200575
Johannes Berg2e161f72010-08-12 15:38:38 +0200576 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200577
Johannes Berg2e161f72010-08-12 15:38:38 +0200578 list_for_each_entry_safe(reg, tmp, &wdev->mgmt_registrations, list) {
Jouni Malinen026331c2010-02-15 12:53:10 +0200579 list_del(&reg->list);
580 kfree(reg);
581 }
582
Johannes Berg2e161f72010-08-12 15:38:38 +0200583 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200584}
585
Johannes Berg2e161f72010-08-12 15:38:38 +0200586int cfg80211_mlme_mgmt_tx(struct cfg80211_registered_device *rdev,
Johannes Berg71bbc992012-06-15 15:30:18 +0200587 struct wireless_dev *wdev,
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100588 struct ieee80211_channel *chan, bool offchan,
Johannes Berg42d97a52012-11-08 18:31:02 +0100589 unsigned int wait, const u8 *buf, size_t len,
590 bool no_cck, bool dont_wait_for_ack, u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +0200591{
Jouni Malinen026331c2010-02-15 12:53:10 +0200592 const struct ieee80211_mgmt *mgmt;
Johannes Berg2e161f72010-08-12 15:38:38 +0200593 u16 stype;
Jouni Malinen026331c2010-02-15 12:53:10 +0200594
Johannes Berg2e161f72010-08-12 15:38:38 +0200595 if (!wdev->wiphy->mgmt_stypes)
Jouni Malinen026331c2010-02-15 12:53:10 +0200596 return -EOPNOTSUPP;
Johannes Berg2e161f72010-08-12 15:38:38 +0200597
598 if (!rdev->ops->mgmt_tx)
599 return -EOPNOTSUPP;
600
Jouni Malinen026331c2010-02-15 12:53:10 +0200601 if (len < 24 + 1)
602 return -EINVAL;
603
604 mgmt = (const struct ieee80211_mgmt *) buf;
Johannes Berg2e161f72010-08-12 15:38:38 +0200605
606 if (!ieee80211_is_mgmt(mgmt->frame_control))
Jouni Malinen026331c2010-02-15 12:53:10 +0200607 return -EINVAL;
Johannes Berg2e161f72010-08-12 15:38:38 +0200608
609 stype = le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE;
610 if (!(wdev->wiphy->mgmt_stypes[wdev->iftype].tx & BIT(stype >> 4)))
611 return -EINVAL;
612
613 if (ieee80211_is_action(mgmt->frame_control) &&
614 mgmt->u.action.category != WLAN_CATEGORY_PUBLIC) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200615 int err = 0;
616
Johannes Bergfe100ac2010-08-09 15:52:03 +0200617 wdev_lock(wdev);
618
Johannes Berg663fcaf2010-09-30 21:06:09 +0200619 switch (wdev->iftype) {
620 case NL80211_IFTYPE_ADHOC:
621 case NL80211_IFTYPE_STATION:
622 case NL80211_IFTYPE_P2P_CLIENT:
623 if (!wdev->current_bss) {
624 err = -ENOTCONN;
625 break;
626 }
Johannes Bergfe100ac2010-08-09 15:52:03 +0200627
Joe Perchesac422d32012-05-08 18:56:55 +0000628 if (!ether_addr_equal(wdev->current_bss->pub.bssid,
629 mgmt->bssid)) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200630 err = -ENOTCONN;
631 break;
632 }
633
634 /*
635 * check for IBSS DA must be done by driver as
636 * cfg80211 doesn't track the stations
637 */
638 if (wdev->iftype == NL80211_IFTYPE_ADHOC)
639 break;
640
641 /* for station, check that DA is the AP */
Joe Perchesac422d32012-05-08 18:56:55 +0000642 if (!ether_addr_equal(wdev->current_bss->pub.bssid,
643 mgmt->da)) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200644 err = -ENOTCONN;
645 break;
646 }
647 break;
648 case NL80211_IFTYPE_AP:
649 case NL80211_IFTYPE_P2P_GO:
650 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg98104fde2012-06-16 00:19:54 +0200651 if (!ether_addr_equal(mgmt->bssid, wdev_address(wdev)))
Johannes Berg663fcaf2010-09-30 21:06:09 +0200652 err = -EINVAL;
653 break;
Javier Cardona0778a6a2011-05-03 16:57:08 -0700654 case NL80211_IFTYPE_MESH_POINT:
Joe Perchesac422d32012-05-08 18:56:55 +0000655 if (!ether_addr_equal(mgmt->sa, mgmt->bssid)) {
Javier Cardona0778a6a2011-05-03 16:57:08 -0700656 err = -EINVAL;
657 break;
658 }
659 /*
660 * check for mesh DA must be done by driver as
661 * cfg80211 doesn't track the stations
662 */
663 break;
Johannes Berg98104fde2012-06-16 00:19:54 +0200664 case NL80211_IFTYPE_P2P_DEVICE:
665 /*
666 * fall through, P2P device only supports
667 * public action frames
668 */
Johannes Berg663fcaf2010-09-30 21:06:09 +0200669 default:
670 err = -EOPNOTSUPP;
671 break;
672 }
Johannes Bergfe100ac2010-08-09 15:52:03 +0200673 wdev_unlock(wdev);
Johannes Berg663fcaf2010-09-30 21:06:09 +0200674
675 if (err)
676 return err;
Jouni Malinen026331c2010-02-15 12:53:10 +0200677 }
678
Johannes Berg98104fde2012-06-16 00:19:54 +0200679 if (!ether_addr_equal(mgmt->sa, wdev_address(wdev)))
Jouni Malinen026331c2010-02-15 12:53:10 +0200680 return -EINVAL;
681
682 /* Transmit the Action frame as requested by user space */
Hila Gonene35e4d22012-06-27 17:19:42 +0300683 return rdev_mgmt_tx(rdev, wdev, chan, offchan,
Hila Gonene35e4d22012-06-27 17:19:42 +0300684 wait, buf, len, no_cck, dont_wait_for_ack,
685 cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +0200686}
687
Johannes Berg71bbc992012-06-15 15:30:18 +0200688bool cfg80211_rx_mgmt(struct wireless_dev *wdev, int freq, int sig_mbm,
Johannes Berg804483e2012-03-05 22:18:41 +0100689 const u8 *buf, size_t len, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +0200690{
Jouni Malinen026331c2010-02-15 12:53:10 +0200691 struct wiphy *wiphy = wdev->wiphy;
692 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200693 struct cfg80211_mgmt_registration *reg;
694 const struct ieee80211_txrx_stypes *stypes =
695 &wiphy->mgmt_stypes[wdev->iftype];
696 struct ieee80211_mgmt *mgmt = (void *)buf;
697 const u8 *data;
698 int data_len;
Jouni Malinen026331c2010-02-15 12:53:10 +0200699 bool result = false;
Johannes Berg2e161f72010-08-12 15:38:38 +0200700 __le16 ftype = mgmt->frame_control &
701 cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE);
702 u16 stype;
Jouni Malinen026331c2010-02-15 12:53:10 +0200703
Beni Lev4ee3e062012-08-27 12:49:39 +0300704 trace_cfg80211_rx_mgmt(wdev, freq, sig_mbm);
Johannes Berg2e161f72010-08-12 15:38:38 +0200705 stype = (le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE) >> 4;
Jouni Malinen026331c2010-02-15 12:53:10 +0200706
Beni Lev4ee3e062012-08-27 12:49:39 +0300707 if (!(stypes->rx & BIT(stype))) {
708 trace_cfg80211_return_bool(false);
Johannes Berg2e161f72010-08-12 15:38:38 +0200709 return false;
Beni Lev4ee3e062012-08-27 12:49:39 +0300710 }
Jouni Malinen026331c2010-02-15 12:53:10 +0200711
Johannes Berg2e161f72010-08-12 15:38:38 +0200712 data = buf + ieee80211_hdrlen(mgmt->frame_control);
713 data_len = len - ieee80211_hdrlen(mgmt->frame_control);
Jouni Malinen026331c2010-02-15 12:53:10 +0200714
Johannes Berg2e161f72010-08-12 15:38:38 +0200715 spin_lock_bh(&wdev->mgmt_registrations_lock);
716
717 list_for_each_entry(reg, &wdev->mgmt_registrations, list) {
718 if (reg->frame_type != ftype)
Jouni Malinen026331c2010-02-15 12:53:10 +0200719 continue;
720
Johannes Berg2e161f72010-08-12 15:38:38 +0200721 if (reg->match_len > data_len)
722 continue;
723
724 if (memcmp(reg->match, data, reg->match_len))
Jouni Malinen026331c2010-02-15 12:53:10 +0200725 continue;
726
727 /* found match! */
728
729 /* Indicate the received Action frame to user space */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000730 if (nl80211_send_mgmt(rdev, wdev, reg->nlportid,
Johannes Berg804483e2012-03-05 22:18:41 +0100731 freq, sig_mbm,
Johannes Berg2e161f72010-08-12 15:38:38 +0200732 buf, len, gfp))
Jouni Malinen026331c2010-02-15 12:53:10 +0200733 continue;
734
735 result = true;
736 break;
737 }
738
Johannes Berg2e161f72010-08-12 15:38:38 +0200739 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200740
Beni Lev4ee3e062012-08-27 12:49:39 +0300741 trace_cfg80211_return_bool(result);
Jouni Malinen026331c2010-02-15 12:53:10 +0200742 return result;
743}
Johannes Berg2e161f72010-08-12 15:38:38 +0200744EXPORT_SYMBOL(cfg80211_rx_mgmt);
Jouni Malinen026331c2010-02-15 12:53:10 +0200745
Simon Wunderlich04f39042013-02-08 18:16:19 +0100746void cfg80211_dfs_channels_update_work(struct work_struct *work)
747{
748 struct delayed_work *delayed_work;
749 struct cfg80211_registered_device *rdev;
750 struct cfg80211_chan_def chandef;
751 struct ieee80211_supported_band *sband;
752 struct ieee80211_channel *c;
753 struct wiphy *wiphy;
754 bool check_again = false;
755 unsigned long timeout, next_time = 0;
756 int bandid, i;
757
758 delayed_work = container_of(work, struct delayed_work, work);
759 rdev = container_of(delayed_work, struct cfg80211_registered_device,
760 dfs_update_channels_wk);
761 wiphy = &rdev->wiphy;
762
Johannes Berg5fe231e2013-05-08 21:45:15 +0200763 rtnl_lock();
Simon Wunderlich04f39042013-02-08 18:16:19 +0100764 for (bandid = 0; bandid < IEEE80211_NUM_BANDS; bandid++) {
765 sband = wiphy->bands[bandid];
766 if (!sband)
767 continue;
768
769 for (i = 0; i < sband->n_channels; i++) {
770 c = &sband->channels[i];
771
772 if (c->dfs_state != NL80211_DFS_UNAVAILABLE)
773 continue;
774
775 timeout = c->dfs_state_entered +
776 IEEE80211_DFS_MIN_NOP_TIME_MS;
777
778 if (time_after_eq(jiffies, timeout)) {
779 c->dfs_state = NL80211_DFS_USABLE;
780 cfg80211_chandef_create(&chandef, c,
781 NL80211_CHAN_NO_HT);
782
783 nl80211_radar_notify(rdev, &chandef,
784 NL80211_RADAR_NOP_FINISHED,
785 NULL, GFP_ATOMIC);
786 continue;
787 }
788
789 if (!check_again)
790 next_time = timeout - jiffies;
791 else
792 next_time = min(next_time, timeout - jiffies);
793 check_again = true;
794 }
795 }
Johannes Berg5fe231e2013-05-08 21:45:15 +0200796 rtnl_unlock();
Simon Wunderlich04f39042013-02-08 18:16:19 +0100797
798 /* reschedule if there are other channels waiting to be cleared again */
799 if (check_again)
800 queue_delayed_work(cfg80211_wq, &rdev->dfs_update_channels_wk,
801 next_time);
802}
803
804
805void cfg80211_radar_event(struct wiphy *wiphy,
806 struct cfg80211_chan_def *chandef,
807 gfp_t gfp)
808{
809 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
810 unsigned long timeout;
811
812 trace_cfg80211_radar_event(wiphy, chandef);
813
814 /* only set the chandef supplied channel to unavailable, in
815 * case the radar is detected on only one of multiple channels
816 * spanned by the chandef.
817 */
818 cfg80211_set_dfs_state(wiphy, chandef, NL80211_DFS_UNAVAILABLE);
819
820 timeout = msecs_to_jiffies(IEEE80211_DFS_MIN_NOP_TIME_MS);
821 queue_delayed_work(cfg80211_wq, &rdev->dfs_update_channels_wk,
822 timeout);
823
824 nl80211_radar_notify(rdev, chandef, NL80211_RADAR_DETECTED, NULL, gfp);
825}
826EXPORT_SYMBOL(cfg80211_radar_event);
827
828void cfg80211_cac_event(struct net_device *netdev,
829 enum nl80211_radar_event event, gfp_t gfp)
830{
831 struct wireless_dev *wdev = netdev->ieee80211_ptr;
832 struct wiphy *wiphy = wdev->wiphy;
833 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
834 struct cfg80211_chan_def chandef;
835 unsigned long timeout;
836
837 trace_cfg80211_cac_event(netdev, event);
838
839 if (WARN_ON(!wdev->cac_started))
840 return;
841
842 if (WARN_ON(!wdev->channel))
843 return;
844
845 cfg80211_chandef_create(&chandef, wdev->channel, NL80211_CHAN_NO_HT);
846
847 switch (event) {
848 case NL80211_RADAR_CAC_FINISHED:
849 timeout = wdev->cac_start_time +
850 msecs_to_jiffies(IEEE80211_DFS_MIN_CAC_TIME_MS);
851 WARN_ON(!time_after_eq(jiffies, timeout));
852 cfg80211_set_dfs_state(wiphy, &chandef, NL80211_DFS_AVAILABLE);
853 break;
854 case NL80211_RADAR_CAC_ABORTED:
855 break;
856 default:
857 WARN_ON(1);
858 return;
859 }
860 wdev->cac_started = false;
861
862 nl80211_radar_notify(rdev, &chandef, event, netdev, gfp);
863}
864EXPORT_SYMBOL(cfg80211_cac_event);