blob: 80ffb0138919b4555ded0f465039b4341544f737 [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 Bergcb0b4be2009-07-07 03:56:07 +020021void cfg80211_send_rx_auth(struct net_device *dev, const u8 *buf, size_t len)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020022{
Johannes Berg19957bb2009-07-02 17:20:43 +020023 struct wireless_dev *wdev = dev->ieee80211_ptr;
24 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen6039f6d2009-03-19 13:39:21 +020025 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg19957bb2009-07-02 17:20:43 +020026
Beni Lev4ee3e062012-08-27 12:49:39 +030027 trace_cfg80211_send_rx_auth(dev);
Johannes Bergcb0b4be2009-07-07 03:56:07 +020028
Johannes Berg95de8172012-01-20 13:55:25 +010029 nl80211_send_rx_auth(rdev, dev, buf, len, GFP_KERNEL);
30 cfg80211_sme_rx_auth(dev, buf, len);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020031}
32EXPORT_SYMBOL(cfg80211_send_rx_auth);
33
Johannes Berg95de8172012-01-20 13:55:25 +010034void cfg80211_send_rx_assoc(struct net_device *dev, struct cfg80211_bss *bss,
35 const u8 *buf, size_t len)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020036{
Johannes Berg6829c872009-07-02 09:13:27 +020037 u16 status_code;
38 struct wireless_dev *wdev = dev->ieee80211_ptr;
39 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen6039f6d2009-03-19 13:39:21 +020040 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6829c872009-07-02 09:13:27 +020041 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)buf;
42 u8 *ie = mgmt->u.assoc_resp.variable;
Johannes Berg95de8172012-01-20 13:55:25 +010043 int ieoffs = offsetof(struct ieee80211_mgmt, u.assoc_resp.variable);
Johannes Berg6829c872009-07-02 09:13:27 +020044
Beni Lev4ee3e062012-08-27 12:49:39 +030045 trace_cfg80211_send_rx_assoc(dev, bss);
Johannes Bergcb0b4be2009-07-07 03:56:07 +020046
Johannes Berg6829c872009-07-02 09:13:27 +020047 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
48
Johannes Bergf401a6f2009-08-07 14:51:05 +020049 /*
50 * This is a bit of a hack, we don't notify userspace of
51 * a (re-)association reply if we tried to send a reassoc
52 * and got a reject -- we only try again with an assoc
53 * frame instead of reassoc.
54 */
55 if (status_code != WLAN_STATUS_SUCCESS && wdev->conn &&
Johannes Berg95de8172012-01-20 13:55:25 +010056 cfg80211_sme_failed_reassoc(wdev)) {
Johannes Berg5b112d32013-02-01 01:49:58 +010057 cfg80211_put_bss(wiphy, bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +020058 return;
Johannes Berg95de8172012-01-20 13:55:25 +010059 }
Johannes Bergf401a6f2009-08-07 14:51:05 +020060
Johannes Bergcb0b4be2009-07-07 03:56:07 +020061 nl80211_send_rx_assoc(rdev, dev, buf, len, GFP_KERNEL);
Johannes Berg6829c872009-07-02 09:13:27 +020062
Johannes Berg95de8172012-01-20 13:55:25 +010063 if (status_code != WLAN_STATUS_SUCCESS && wdev->conn) {
Johannes Berg7d930bc2009-10-20 15:08:53 +090064 cfg80211_sme_failed_assoc(wdev);
Johannes Berg7d930bc2009-10-20 15:08:53 +090065 /*
66 * do not call connect_result() now because the
67 * sme will schedule work that does it later.
68 */
Johannes Berg5b112d32013-02-01 01:49:58 +010069 cfg80211_put_bss(wiphy, bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +020070 return;
Johannes Bergdf7fc0f2009-07-29 11:23:49 +020071 }
72
Johannes Bergea416a72009-08-17 12:22:14 +020073 if (!wdev->conn && wdev->sme_state == CFG80211_SME_IDLE) {
74 /*
75 * This is for the userspace SME, the CONNECTING
76 * state will be changed to CONNECTED by
77 * __cfg80211_connect_result() below.
78 */
79 wdev->sme_state = CFG80211_SME_CONNECTING;
80 }
81
Johannes Berg95de8172012-01-20 13:55:25 +010082 /* this consumes the bss reference */
Johannes Bergdf7fc0f2009-07-29 11:23:49 +020083 __cfg80211_connect_result(dev, mgmt->bssid, NULL, 0, ie, len - ieoffs,
84 status_code,
Johannes Berg95de8172012-01-20 13:55:25 +010085 status_code == WLAN_STATUS_SUCCESS, bss);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020086}
87EXPORT_SYMBOL(cfg80211_send_rx_assoc);
88
Johannes Berg8d61ffa2013-05-10 12:32:47 +020089void cfg80211_send_deauth(struct net_device *dev,
90 const u8 *buf, size_t len)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020091{
Johannes Berg6829c872009-07-02 09:13:27 +020092 struct wireless_dev *wdev = dev->ieee80211_ptr;
93 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen6039f6d2009-03-19 13:39:21 +020094 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6829c872009-07-02 09:13:27 +020095 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)buf;
Johannes Berg19957bb2009-07-02 17:20:43 +020096 const u8 *bssid = mgmt->bssid;
Johannes Berg95de8172012-01-20 13:55:25 +010097 bool was_current = false;
Johannes Berg6829c872009-07-02 09:13:27 +020098
Johannes Berg8d61ffa2013-05-10 12:32:47 +020099 trace_cfg80211_send_deauth(dev);
Johannes Berg667503dd2009-07-07 03:56:11 +0200100 ASSERT_WDEV_LOCK(wdev);
Johannes Bergcb0b4be2009-07-07 03:56:07 +0200101
Johannes Berg19957bb2009-07-02 17:20:43 +0200102 if (wdev->current_bss &&
Joe Perchesac422d32012-05-08 18:56:55 +0000103 ether_addr_equal(wdev->current_bss->pub.bssid, bssid)) {
Johannes Berg19957bb2009-07-02 17:20:43 +0200104 cfg80211_unhold_bss(wdev->current_bss);
Johannes Berg5b112d32013-02-01 01:49:58 +0100105 cfg80211_put_bss(wiphy, &wdev->current_bss->pub);
Johannes Berg19957bb2009-07-02 17:20:43 +0200106 wdev->current_bss = NULL;
Johannes Berg3f3b6a82010-08-05 10:20:27 +0200107 was_current = true;
Johannes Berg19957bb2009-07-02 17:20:43 +0200108 }
Johannes Berg19957bb2009-07-02 17:20:43 +0200109
Johannes Berg5fba4af2009-12-02 12:43:42 +0100110 nl80211_send_deauth(rdev, dev, buf, len, GFP_KERNEL);
111
Johannes Berg3f3b6a82010-08-05 10:20:27 +0200112 if (wdev->sme_state == CFG80211_SME_CONNECTED && was_current) {
Johannes Berg6829c872009-07-02 09:13:27 +0200113 u16 reason_code;
114 bool from_ap;
115
116 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
117
Joe Perchesac422d32012-05-08 18:56:55 +0000118 from_ap = !ether_addr_equal(mgmt->sa, dev->dev_addr);
Johannes Berg667503dd2009-07-07 03:56:11 +0200119 __cfg80211_disconnected(dev, NULL, 0, reason_code, from_ap);
Johannes Berg6829c872009-07-02 09:13:27 +0200120 } else if (wdev->sme_state == CFG80211_SME_CONNECTING) {
Johannes Berg667503dd2009-07-07 03:56:11 +0200121 __cfg80211_connect_result(dev, mgmt->bssid, NULL, 0, NULL, 0,
122 WLAN_STATUS_UNSPECIFIED_FAILURE,
Johannes Bergdf7fc0f2009-07-29 11:23:49 +0200123 false, NULL);
Johannes Berg667503dd2009-07-07 03:56:11 +0200124 }
125}
Jouni Malinen53b46b82009-03-27 20:53:56 +0200126EXPORT_SYMBOL(cfg80211_send_deauth);
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200127
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200128void cfg80211_send_disassoc(struct net_device *dev,
129 const u8 *buf, size_t len)
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200130{
Johannes Berg6829c872009-07-02 09:13:27 +0200131 struct wireless_dev *wdev = dev->ieee80211_ptr;
132 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200133 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6829c872009-07-02 09:13:27 +0200134 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)buf;
Johannes Berg19957bb2009-07-02 17:20:43 +0200135 const u8 *bssid = mgmt->bssid;
Johannes Berg19957bb2009-07-02 17:20:43 +0200136 u16 reason_code;
137 bool from_ap;
Johannes Berg6829c872009-07-02 09:13:27 +0200138
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200139 trace_cfg80211_send_disassoc(dev);
Johannes Berg596a07c2009-07-11 00:17:32 +0200140 ASSERT_WDEV_LOCK(wdev);
Johannes Bergcb0b4be2009-07-07 03:56:07 +0200141
142 nl80211_send_disassoc(rdev, dev, buf, len, GFP_KERNEL);
Johannes Berg6829c872009-07-02 09:13:27 +0200143
Johannes Berg596a07c2009-07-11 00:17:32 +0200144 if (wdev->sme_state != CFG80211_SME_CONNECTED)
145 return;
Johannes Berg6829c872009-07-02 09:13:27 +0200146
Johannes Berg19957bb2009-07-02 17:20:43 +0200147 if (wdev->current_bss &&
Joe Perchesac422d32012-05-08 18:56:55 +0000148 ether_addr_equal(wdev->current_bss->pub.bssid, bssid)) {
Johannes Berg95de8172012-01-20 13:55:25 +0100149 cfg80211_sme_disassoc(dev, wdev->current_bss);
150 cfg80211_unhold_bss(wdev->current_bss);
Johannes Berg5b112d32013-02-01 01:49:58 +0100151 cfg80211_put_bss(wiphy, &wdev->current_bss->pub);
Johannes Berg95de8172012-01-20 13:55:25 +0100152 wdev->current_bss = NULL;
Johannes Berg19957bb2009-07-02 17:20:43 +0200153 } else
154 WARN_ON(1);
Johannes Berg6829c872009-07-02 09:13:27 +0200155
Johannes Berg6829c872009-07-02 09:13:27 +0200156
Johannes Berg19957bb2009-07-02 17:20:43 +0200157 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
158
Joe Perchesac422d32012-05-08 18:56:55 +0000159 from_ap = !ether_addr_equal(mgmt->sa, dev->dev_addr);
Johannes Berg667503dd2009-07-07 03:56:11 +0200160 __cfg80211_disconnected(dev, NULL, 0, reason_code, from_ap);
Johannes Berg667503dd2009-07-07 03:56:11 +0200161}
Jouni Malinen53b46b82009-03-27 20:53:56 +0200162EXPORT_SYMBOL(cfg80211_send_disassoc);
Jouni Malinena3b8b052009-03-27 21:59:49 +0200163
Johannes Berga58ce432009-11-19 12:45:42 +0100164void cfg80211_send_auth_timeout(struct net_device *dev, const u8 *addr)
165{
166 struct wireless_dev *wdev = dev->ieee80211_ptr;
167 struct wiphy *wiphy = wdev->wiphy;
168 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
169
Beni Lev4ee3e062012-08-27 12:49:39 +0300170 trace_cfg80211_send_auth_timeout(dev, addr);
Johannes Berga58ce432009-11-19 12:45:42 +0100171
172 nl80211_send_auth_timeout(rdev, dev, addr, GFP_KERNEL);
173 if (wdev->sme_state == CFG80211_SME_CONNECTING)
174 __cfg80211_connect_result(dev, addr, NULL, 0, NULL, 0,
175 WLAN_STATUS_UNSPECIFIED_FAILURE,
176 false, NULL);
Jouni Malinen1965c852009-04-22 21:38:25 +0300177}
178EXPORT_SYMBOL(cfg80211_send_auth_timeout);
179
Johannes Bergcb0b4be2009-07-07 03:56:07 +0200180void cfg80211_send_assoc_timeout(struct net_device *dev, const u8 *addr)
Jouni Malinen1965c852009-04-22 21:38:25 +0300181{
Johannes Berg6829c872009-07-02 09:13:27 +0200182 struct wireless_dev *wdev = dev->ieee80211_ptr;
183 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen1965c852009-04-22 21:38:25 +0300184 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg19957bb2009-07-02 17:20:43 +0200185
Beni Lev4ee3e062012-08-27 12:49:39 +0300186 trace_cfg80211_send_assoc_timeout(dev, addr);
Johannes Bergcb0b4be2009-07-07 03:56:07 +0200187
188 nl80211_send_assoc_timeout(rdev, dev, addr, GFP_KERNEL);
Johannes Berg6829c872009-07-02 09:13:27 +0200189 if (wdev->sme_state == CFG80211_SME_CONNECTING)
Johannes Berg667503dd2009-07-07 03:56:11 +0200190 __cfg80211_connect_result(dev, addr, NULL, 0, NULL, 0,
191 WLAN_STATUS_UNSPECIFIED_FAILURE,
Johannes Bergdf7fc0f2009-07-29 11:23:49 +0200192 false, NULL);
Jouni Malinen1965c852009-04-22 21:38:25 +0300193}
194EXPORT_SYMBOL(cfg80211_send_assoc_timeout);
195
Jouni Malinena3b8b052009-03-27 21:59:49 +0200196void cfg80211_michael_mic_failure(struct net_device *dev, const u8 *addr,
197 enum nl80211_key_type key_type, int key_id,
Johannes Berge6d6e342009-07-01 21:26:47 +0200198 const u8 *tsc, gfp_t gfp)
Jouni Malinena3b8b052009-03-27 21:59:49 +0200199{
200 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
201 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg3d23e342009-09-29 23:27:28 +0200202#ifdef CONFIG_CFG80211_WEXT
Johannes Bergf58d4ed2009-06-19 02:45:21 +0200203 union iwreq_data wrqu;
Johannes Berge6d6e342009-07-01 21:26:47 +0200204 char *buf = kmalloc(128, gfp);
Johannes Bergf58d4ed2009-06-19 02:45:21 +0200205
206 if (buf) {
207 sprintf(buf, "MLME-MICHAELMICFAILURE.indication("
208 "keyid=%d %scast addr=%pM)", key_id,
209 key_type == NL80211_KEYTYPE_GROUP ? "broad" : "uni",
210 addr);
211 memset(&wrqu, 0, sizeof(wrqu));
212 wrqu.data.length = strlen(buf);
213 wireless_send_event(dev, IWEVCUSTOM, &wrqu, buf);
214 kfree(buf);
215 }
216#endif
217
Beni Lev4ee3e062012-08-27 12:49:39 +0300218 trace_cfg80211_michael_mic_failure(dev, addr, key_type, key_id, tsc);
Johannes Berge6d6e342009-07-01 21:26:47 +0200219 nl80211_michael_mic_failure(rdev, dev, addr, key_type, key_id, tsc, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +0200220}
221EXPORT_SYMBOL(cfg80211_michael_mic_failure);
Johannes Berg19957bb2009-07-02 17:20:43 +0200222
223/* some MLME handling for userspace SME */
Johannes Berg667503dd2009-07-07 03:56:11 +0200224int __cfg80211_mlme_auth(struct cfg80211_registered_device *rdev,
225 struct net_device *dev,
226 struct ieee80211_channel *chan,
227 enum nl80211_auth_type auth_type,
228 const u8 *bssid,
229 const u8 *ssid, int ssid_len,
Johannes Bergfffd0932009-07-08 14:22:54 +0200230 const u8 *ie, int ie_len,
Jouni Malinene39e5b52012-09-30 19:29:39 +0300231 const u8 *key, int key_len, int key_idx,
232 const u8 *sae_data, int sae_data_len)
Johannes Berg19957bb2009-07-02 17:20:43 +0200233{
234 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg7ade7032013-05-13 11:37:30 +0200235 struct cfg80211_auth_request req = {
236 .ie = ie,
237 .ie_len = ie_len,
238 .sae_data = sae_data,
239 .sae_data_len = sae_data_len,
240 .auth_type = auth_type,
241 .key = key,
242 .key_len = key_len,
243 .key_idx = key_idx,
244 };
Johannes Berg95de8172012-01-20 13:55:25 +0100245 int err;
Johannes Berg19957bb2009-07-02 17:20:43 +0200246
Johannes Berg667503dd2009-07-07 03:56:11 +0200247 ASSERT_WDEV_LOCK(wdev);
248
Johannes Bergfffd0932009-07-08 14:22:54 +0200249 if (auth_type == NL80211_AUTHTYPE_SHARED_KEY)
250 if (!key || !key_len || key_idx < 0 || key_idx > 4)
251 return -EINVAL;
252
Johannes Berg0a9b5e12009-07-02 18:26:18 +0200253 if (wdev->current_bss &&
Joe Perchesac422d32012-05-08 18:56:55 +0000254 ether_addr_equal(bssid, wdev->current_bss->pub.bssid))
Johannes Berg0a9b5e12009-07-02 18:26:18 +0200255 return -EALREADY;
256
Johannes Berg19957bb2009-07-02 17:20:43 +0200257 req.bss = cfg80211_get_bss(&rdev->wiphy, chan, bssid, ssid, ssid_len,
258 WLAN_CAPABILITY_ESS, WLAN_CAPABILITY_ESS);
259 if (!req.bss)
260 return -ENOENT;
261
Michal Kaziore4e32452012-06-29 12:47:08 +0200262 err = cfg80211_can_use_chan(rdev, wdev, req.bss->channel,
263 CHAN_MODE_SHARED);
264 if (err)
265 goto out;
266
Hila Gonene35e4d22012-06-27 17:19:42 +0300267 err = rdev_auth(rdev, dev, &req);
Johannes Berg19957bb2009-07-02 17:20:43 +0200268
Michal Kaziore4e32452012-06-29 12:47:08 +0200269out:
Johannes Berg5b112d32013-02-01 01:49:58 +0100270 cfg80211_put_bss(&rdev->wiphy, req.bss);
Johannes Berg19957bb2009-07-02 17:20:43 +0200271 return err;
272}
273
Johannes Berg667503dd2009-07-07 03:56:11 +0200274int cfg80211_mlme_auth(struct cfg80211_registered_device *rdev,
275 struct net_device *dev, struct ieee80211_channel *chan,
276 enum nl80211_auth_type auth_type, const u8 *bssid,
277 const u8 *ssid, int ssid_len,
Johannes Bergfffd0932009-07-08 14:22:54 +0200278 const u8 *ie, int ie_len,
Jouni Malinene39e5b52012-09-30 19:29:39 +0300279 const u8 *key, int key_len, int key_idx,
280 const u8 *sae_data, int sae_data_len)
Johannes Berg667503dd2009-07-07 03:56:11 +0200281{
282 int err;
283
Johannes Berg5fe231e2013-05-08 21:45:15 +0200284 ASSERT_RTNL();
285
Johannes Berg667503dd2009-07-07 03:56:11 +0200286 wdev_lock(dev->ieee80211_ptr);
287 err = __cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid,
Johannes Bergfffd0932009-07-08 14:22:54 +0200288 ssid, ssid_len, ie, ie_len,
Jouni Malinene39e5b52012-09-30 19:29:39 +0300289 key, key_len, key_idx,
290 sae_data, sae_data_len);
Johannes Berg667503dd2009-07-07 03:56:11 +0200291 wdev_unlock(dev->ieee80211_ptr);
292
293 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 Berg667503dd2009-07-07 03:56:11 +0200330int __cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
331 struct net_device *dev,
332 struct ieee80211_channel *chan,
Johannes Bergf62fab72013-02-21 20:09:09 +0100333 const u8 *bssid,
Johannes Berg667503dd2009-07-07 03:56:11 +0200334 const u8 *ssid, int ssid_len,
Johannes Bergf62fab72013-02-21 20:09:09 +0100335 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 Berg667503dd2009-07-07 03:56:11 +0200385int cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
386 struct net_device *dev,
387 struct ieee80211_channel *chan,
Johannes Bergf62fab72013-02-21 20:09:09 +0100388 const u8 *bssid,
Johannes Berg667503dd2009-07-07 03:56:11 +0200389 const u8 *ssid, int ssid_len,
Johannes Bergf62fab72013-02-21 20:09:09 +0100390 struct cfg80211_assoc_request *req)
Johannes Berg667503dd2009-07-07 03:56:11 +0200391{
392 struct wireless_dev *wdev = dev->ieee80211_ptr;
393 int err;
394
Johannes Berg5fe231e2013-05-08 21:45:15 +0200395 ASSERT_RTNL();
396
Johannes Berg667503dd2009-07-07 03:56:11 +0200397 wdev_lock(wdev);
Johannes Bergf62fab72013-02-21 20:09:09 +0100398 err = __cfg80211_mlme_assoc(rdev, dev, chan, bssid,
399 ssid, ssid_len, req);
Johannes Berg667503dd2009-07-07 03:56:11 +0200400 wdev_unlock(wdev);
401
402 return err;
403}
404
405int __cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
406 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300407 const u8 *ie, int ie_len, u16 reason,
408 bool local_state_change)
Johannes Berg19957bb2009-07-02 17:20:43 +0200409{
410 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg95de8172012-01-20 13:55:25 +0100411 struct cfg80211_deauth_request req = {
412 .bssid = bssid,
413 .reason_code = reason,
414 .ie = ie,
415 .ie_len = ie_len,
Stanislaw Gruszka68632552012-10-15 14:52:41 +0200416 .local_state_change = local_state_change,
Johannes Berg95de8172012-01-20 13:55:25 +0100417 };
Johannes Berg19957bb2009-07-02 17:20:43 +0200418
Johannes Berg667503dd2009-07-07 03:56:11 +0200419 ASSERT_WDEV_LOCK(wdev);
420
Stanislaw Gruszka68632552012-10-15 14:52:41 +0200421 if (local_state_change && (!wdev->current_bss ||
422 !ether_addr_equal(wdev->current_bss->pub.bssid, bssid)))
Johannes Berg95de8172012-01-20 13:55:25 +0100423 return 0;
Johannes Berg19957bb2009-07-02 17:20:43 +0200424
Hila Gonene35e4d22012-06-27 17:19:42 +0300425 return rdev_deauth(rdev, dev, &req);
Johannes Berg19957bb2009-07-02 17:20:43 +0200426}
427
Johannes Berg667503dd2009-07-07 03:56:11 +0200428int cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
429 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300430 const u8 *ie, int ie_len, u16 reason,
431 bool local_state_change)
Johannes Berg667503dd2009-07-07 03:56:11 +0200432{
433 struct wireless_dev *wdev = dev->ieee80211_ptr;
434 int err;
435
436 wdev_lock(wdev);
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300437 err = __cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason,
438 local_state_change);
Johannes Berg667503dd2009-07-07 03:56:11 +0200439 wdev_unlock(wdev);
440
441 return err;
442}
443
444static int __cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
445 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300446 const u8 *ie, int ie_len, u16 reason,
447 bool local_state_change)
Johannes Berg19957bb2009-07-02 17:20:43 +0200448{
449 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg7ade7032013-05-13 11:37:30 +0200450 struct cfg80211_disassoc_request req = {
451 .reason_code = reason,
452 .local_state_change = local_state_change,
453 .ie = ie,
454 .ie_len = ie_len,
455 };
Johannes Berg19957bb2009-07-02 17:20:43 +0200456
Johannes Berg667503dd2009-07-07 03:56:11 +0200457 ASSERT_WDEV_LOCK(wdev);
458
Johannes Bergf9d6b402009-07-27 10:22:28 +0200459 if (wdev->sme_state != CFG80211_SME_CONNECTED)
460 return -ENOTCONN;
461
Johannes Berg8dcf0112013-01-26 22:16:08 +0100462 if (WARN(!wdev->current_bss, "sme_state=%d\n", wdev->sme_state))
Johannes Bergf9d6b402009-07-27 10:22:28 +0200463 return -ENOTCONN;
464
Joe Perchesac422d32012-05-08 18:56:55 +0000465 if (ether_addr_equal(wdev->current_bss->pub.bssid, bssid))
Johannes Berg19957bb2009-07-02 17:20:43 +0200466 req.bss = &wdev->current_bss->pub;
467 else
468 return -ENOTCONN;
469
Hila Gonene35e4d22012-06-27 17:19:42 +0300470 return rdev_disassoc(rdev, dev, &req);
Johannes Berg667503dd2009-07-07 03:56:11 +0200471}
472
473int cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
474 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300475 const u8 *ie, int ie_len, u16 reason,
476 bool local_state_change)
Johannes Berg667503dd2009-07-07 03:56:11 +0200477{
478 struct wireless_dev *wdev = dev->ieee80211_ptr;
479 int err;
480
481 wdev_lock(wdev);
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300482 err = __cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason,
483 local_state_change);
Johannes Berg667503dd2009-07-07 03:56:11 +0200484 wdev_unlock(wdev);
485
486 return err;
Johannes Berg19957bb2009-07-02 17:20:43 +0200487}
488
489void cfg80211_mlme_down(struct cfg80211_registered_device *rdev,
490 struct net_device *dev)
491{
492 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg95de8172012-01-20 13:55:25 +0100493 u8 bssid[ETH_ALEN];
Johannes Berg7ade7032013-05-13 11:37:30 +0200494 struct cfg80211_deauth_request req = {
495 .reason_code = WLAN_REASON_DEAUTH_LEAVING,
496 .bssid = bssid,
497 };
Johannes Berg19957bb2009-07-02 17:20:43 +0200498
Johannes Berg667503dd2009-07-07 03:56:11 +0200499 ASSERT_WDEV_LOCK(wdev);
500
Johannes Berg19957bb2009-07-02 17:20:43 +0200501 if (!rdev->ops->deauth)
502 return;
503
Johannes Berg95de8172012-01-20 13:55:25 +0100504 if (!wdev->current_bss)
505 return;
Johannes Berg19957bb2009-07-02 17:20:43 +0200506
Johannes Berg95de8172012-01-20 13:55:25 +0100507 memcpy(bssid, wdev->current_bss->pub.bssid, ETH_ALEN);
Hila Gonene35e4d22012-06-27 17:19:42 +0300508 rdev_deauth(rdev, dev, &req);
Johannes Berg95de8172012-01-20 13:55:25 +0100509
510 if (wdev->current_bss) {
511 cfg80211_unhold_bss(wdev->current_bss);
Johannes Berg5b112d32013-02-01 01:49:58 +0100512 cfg80211_put_bss(&rdev->wiphy, &wdev->current_bss->pub);
Johannes Berg95de8172012-01-20 13:55:25 +0100513 wdev->current_bss = NULL;
Johannes Berg19957bb2009-07-02 17:20:43 +0200514 }
515}
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100516
Johannes Berg2e161f72010-08-12 15:38:38 +0200517struct cfg80211_mgmt_registration {
Jouni Malinen026331c2010-02-15 12:53:10 +0200518 struct list_head list;
519
Eric W. Biederman15e47302012-09-07 20:12:54 +0000520 u32 nlportid;
Jouni Malinen026331c2010-02-15 12:53:10 +0200521
522 int match_len;
523
Johannes Berg2e161f72010-08-12 15:38:38 +0200524 __le16 frame_type;
525
Jouni Malinen026331c2010-02-15 12:53:10 +0200526 u8 match[];
527};
528
Eric W. Biederman15e47302012-09-07 20:12:54 +0000529int cfg80211_mlme_register_mgmt(struct wireless_dev *wdev, u32 snd_portid,
Johannes Berg2e161f72010-08-12 15:38:38 +0200530 u16 frame_type, const u8 *match_data,
531 int match_len)
Jouni Malinen026331c2010-02-15 12:53:10 +0200532{
Johannes Berg271733c2010-10-13 12:06:23 +0200533 struct wiphy *wiphy = wdev->wiphy;
534 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200535 struct cfg80211_mgmt_registration *reg, *nreg;
Jouni Malinen026331c2010-02-15 12:53:10 +0200536 int err = 0;
Johannes Berg2e161f72010-08-12 15:38:38 +0200537 u16 mgmt_type;
538
539 if (!wdev->wiphy->mgmt_stypes)
540 return -EOPNOTSUPP;
541
542 if ((frame_type & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT)
543 return -EINVAL;
544
545 if (frame_type & ~(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE))
546 return -EINVAL;
547
548 mgmt_type = (frame_type & IEEE80211_FCTL_STYPE) >> 4;
549 if (!(wdev->wiphy->mgmt_stypes[wdev->iftype].rx & BIT(mgmt_type)))
550 return -EINVAL;
Jouni Malinen026331c2010-02-15 12:53:10 +0200551
552 nreg = kzalloc(sizeof(*reg) + match_len, GFP_KERNEL);
553 if (!nreg)
554 return -ENOMEM;
555
Johannes Berg2e161f72010-08-12 15:38:38 +0200556 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200557
Johannes Berg2e161f72010-08-12 15:38:38 +0200558 list_for_each_entry(reg, &wdev->mgmt_registrations, list) {
Jouni Malinen026331c2010-02-15 12:53:10 +0200559 int mlen = min(match_len, reg->match_len);
560
Johannes Berg2e161f72010-08-12 15:38:38 +0200561 if (frame_type != le16_to_cpu(reg->frame_type))
562 continue;
563
Jouni Malinen026331c2010-02-15 12:53:10 +0200564 if (memcmp(reg->match, match_data, mlen) == 0) {
565 err = -EALREADY;
566 break;
567 }
568 }
569
570 if (err) {
571 kfree(nreg);
572 goto out;
573 }
574
575 memcpy(nreg->match, match_data, match_len);
576 nreg->match_len = match_len;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000577 nreg->nlportid = snd_portid;
Johannes Berg2e161f72010-08-12 15:38:38 +0200578 nreg->frame_type = cpu_to_le16(frame_type);
579 list_add(&nreg->list, &wdev->mgmt_registrations);
Jouni Malinen026331c2010-02-15 12:53:10 +0200580
Johannes Berg271733c2010-10-13 12:06:23 +0200581 if (rdev->ops->mgmt_frame_register)
Hila Gonene35e4d22012-06-27 17:19:42 +0300582 rdev_mgmt_frame_register(rdev, wdev, frame_type, true);
Johannes Berg271733c2010-10-13 12:06:23 +0200583
Jouni Malinen026331c2010-02-15 12:53:10 +0200584 out:
Johannes Berg2e161f72010-08-12 15:38:38 +0200585 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Johannes Berg271733c2010-10-13 12:06:23 +0200586
Jouni Malinen026331c2010-02-15 12:53:10 +0200587 return err;
588}
589
Eric W. Biederman15e47302012-09-07 20:12:54 +0000590void cfg80211_mlme_unregister_socket(struct wireless_dev *wdev, u32 nlportid)
Jouni Malinen026331c2010-02-15 12:53:10 +0200591{
Johannes Berg271733c2010-10-13 12:06:23 +0200592 struct wiphy *wiphy = wdev->wiphy;
593 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200594 struct cfg80211_mgmt_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +0200595
Johannes Berg2e161f72010-08-12 15:38:38 +0200596 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200597
Johannes Berg2e161f72010-08-12 15:38:38 +0200598 list_for_each_entry_safe(reg, tmp, &wdev->mgmt_registrations, list) {
Eric W. Biederman15e47302012-09-07 20:12:54 +0000599 if (reg->nlportid != nlportid)
Johannes Berg271733c2010-10-13 12:06:23 +0200600 continue;
601
602 if (rdev->ops->mgmt_frame_register) {
603 u16 frame_type = le16_to_cpu(reg->frame_type);
604
Hila Gonene35e4d22012-06-27 17:19:42 +0300605 rdev_mgmt_frame_register(rdev, wdev,
606 frame_type, false);
Jouni Malinen026331c2010-02-15 12:53:10 +0200607 }
Johannes Berg271733c2010-10-13 12:06:23 +0200608
609 list_del(&reg->list);
610 kfree(reg);
Jouni Malinen026331c2010-02-15 12:53:10 +0200611 }
612
Johannes Berg2e161f72010-08-12 15:38:38 +0200613 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Johannes Berg28946da2011-11-04 11:18:12 +0100614
Arend van Spriel5de17982013-04-18 15:49:00 +0200615 if (nlportid && rdev->crit_proto_nlportid == nlportid) {
616 rdev->crit_proto_nlportid = 0;
617 rdev_crit_proto_stop(rdev, wdev);
618 }
619
Eric W. Biederman15e47302012-09-07 20:12:54 +0000620 if (nlportid == wdev->ap_unexpected_nlportid)
621 wdev->ap_unexpected_nlportid = 0;
Jouni Malinen026331c2010-02-15 12:53:10 +0200622}
623
Johannes Berg2e161f72010-08-12 15:38:38 +0200624void cfg80211_mlme_purge_registrations(struct wireless_dev *wdev)
Jouni Malinen026331c2010-02-15 12:53:10 +0200625{
Johannes Berg2e161f72010-08-12 15:38:38 +0200626 struct cfg80211_mgmt_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +0200627
Johannes Berg2e161f72010-08-12 15:38:38 +0200628 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200629
Johannes Berg2e161f72010-08-12 15:38:38 +0200630 list_for_each_entry_safe(reg, tmp, &wdev->mgmt_registrations, list) {
Jouni Malinen026331c2010-02-15 12:53:10 +0200631 list_del(&reg->list);
632 kfree(reg);
633 }
634
Johannes Berg2e161f72010-08-12 15:38:38 +0200635 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200636}
637
Johannes Berg2e161f72010-08-12 15:38:38 +0200638int cfg80211_mlme_mgmt_tx(struct cfg80211_registered_device *rdev,
Johannes Berg71bbc992012-06-15 15:30:18 +0200639 struct wireless_dev *wdev,
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100640 struct ieee80211_channel *chan, bool offchan,
Johannes Berg42d97a52012-11-08 18:31:02 +0100641 unsigned int wait, const u8 *buf, size_t len,
642 bool no_cck, bool dont_wait_for_ack, u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +0200643{
Jouni Malinen026331c2010-02-15 12:53:10 +0200644 const struct ieee80211_mgmt *mgmt;
Johannes Berg2e161f72010-08-12 15:38:38 +0200645 u16 stype;
Jouni Malinen026331c2010-02-15 12:53:10 +0200646
Johannes Berg2e161f72010-08-12 15:38:38 +0200647 if (!wdev->wiphy->mgmt_stypes)
Jouni Malinen026331c2010-02-15 12:53:10 +0200648 return -EOPNOTSUPP;
Johannes Berg2e161f72010-08-12 15:38:38 +0200649
650 if (!rdev->ops->mgmt_tx)
651 return -EOPNOTSUPP;
652
Jouni Malinen026331c2010-02-15 12:53:10 +0200653 if (len < 24 + 1)
654 return -EINVAL;
655
656 mgmt = (const struct ieee80211_mgmt *) buf;
Johannes Berg2e161f72010-08-12 15:38:38 +0200657
658 if (!ieee80211_is_mgmt(mgmt->frame_control))
Jouni Malinen026331c2010-02-15 12:53:10 +0200659 return -EINVAL;
Johannes Berg2e161f72010-08-12 15:38:38 +0200660
661 stype = le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE;
662 if (!(wdev->wiphy->mgmt_stypes[wdev->iftype].tx & BIT(stype >> 4)))
663 return -EINVAL;
664
665 if (ieee80211_is_action(mgmt->frame_control) &&
666 mgmt->u.action.category != WLAN_CATEGORY_PUBLIC) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200667 int err = 0;
668
Johannes Bergfe100ac2010-08-09 15:52:03 +0200669 wdev_lock(wdev);
670
Johannes Berg663fcaf2010-09-30 21:06:09 +0200671 switch (wdev->iftype) {
672 case NL80211_IFTYPE_ADHOC:
673 case NL80211_IFTYPE_STATION:
674 case NL80211_IFTYPE_P2P_CLIENT:
675 if (!wdev->current_bss) {
676 err = -ENOTCONN;
677 break;
678 }
Johannes Bergfe100ac2010-08-09 15:52:03 +0200679
Joe Perchesac422d32012-05-08 18:56:55 +0000680 if (!ether_addr_equal(wdev->current_bss->pub.bssid,
681 mgmt->bssid)) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200682 err = -ENOTCONN;
683 break;
684 }
685
686 /*
687 * check for IBSS DA must be done by driver as
688 * cfg80211 doesn't track the stations
689 */
690 if (wdev->iftype == NL80211_IFTYPE_ADHOC)
691 break;
692
693 /* for station, check that DA is the AP */
Joe Perchesac422d32012-05-08 18:56:55 +0000694 if (!ether_addr_equal(wdev->current_bss->pub.bssid,
695 mgmt->da)) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200696 err = -ENOTCONN;
697 break;
698 }
699 break;
700 case NL80211_IFTYPE_AP:
701 case NL80211_IFTYPE_P2P_GO:
702 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg98104fde2012-06-16 00:19:54 +0200703 if (!ether_addr_equal(mgmt->bssid, wdev_address(wdev)))
Johannes Berg663fcaf2010-09-30 21:06:09 +0200704 err = -EINVAL;
705 break;
Javier Cardona0778a6a2011-05-03 16:57:08 -0700706 case NL80211_IFTYPE_MESH_POINT:
Joe Perchesac422d32012-05-08 18:56:55 +0000707 if (!ether_addr_equal(mgmt->sa, mgmt->bssid)) {
Javier Cardona0778a6a2011-05-03 16:57:08 -0700708 err = -EINVAL;
709 break;
710 }
711 /*
712 * check for mesh DA must be done by driver as
713 * cfg80211 doesn't track the stations
714 */
715 break;
Johannes Berg98104fde2012-06-16 00:19:54 +0200716 case NL80211_IFTYPE_P2P_DEVICE:
717 /*
718 * fall through, P2P device only supports
719 * public action frames
720 */
Johannes Berg663fcaf2010-09-30 21:06:09 +0200721 default:
722 err = -EOPNOTSUPP;
723 break;
724 }
Johannes Bergfe100ac2010-08-09 15:52:03 +0200725 wdev_unlock(wdev);
Johannes Berg663fcaf2010-09-30 21:06:09 +0200726
727 if (err)
728 return err;
Jouni Malinen026331c2010-02-15 12:53:10 +0200729 }
730
Johannes Berg98104fde2012-06-16 00:19:54 +0200731 if (!ether_addr_equal(mgmt->sa, wdev_address(wdev)))
Jouni Malinen026331c2010-02-15 12:53:10 +0200732 return -EINVAL;
733
734 /* Transmit the Action frame as requested by user space */
Hila Gonene35e4d22012-06-27 17:19:42 +0300735 return rdev_mgmt_tx(rdev, wdev, chan, offchan,
Hila Gonene35e4d22012-06-27 17:19:42 +0300736 wait, buf, len, no_cck, dont_wait_for_ack,
737 cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +0200738}
739
Johannes Berg71bbc992012-06-15 15:30:18 +0200740bool cfg80211_rx_mgmt(struct wireless_dev *wdev, int freq, int sig_mbm,
Johannes Berg804483e2012-03-05 22:18:41 +0100741 const u8 *buf, size_t len, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +0200742{
Jouni Malinen026331c2010-02-15 12:53:10 +0200743 struct wiphy *wiphy = wdev->wiphy;
744 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200745 struct cfg80211_mgmt_registration *reg;
746 const struct ieee80211_txrx_stypes *stypes =
747 &wiphy->mgmt_stypes[wdev->iftype];
748 struct ieee80211_mgmt *mgmt = (void *)buf;
749 const u8 *data;
750 int data_len;
Jouni Malinen026331c2010-02-15 12:53:10 +0200751 bool result = false;
Johannes Berg2e161f72010-08-12 15:38:38 +0200752 __le16 ftype = mgmt->frame_control &
753 cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE);
754 u16 stype;
Jouni Malinen026331c2010-02-15 12:53:10 +0200755
Beni Lev4ee3e062012-08-27 12:49:39 +0300756 trace_cfg80211_rx_mgmt(wdev, freq, sig_mbm);
Johannes Berg2e161f72010-08-12 15:38:38 +0200757 stype = (le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE) >> 4;
Jouni Malinen026331c2010-02-15 12:53:10 +0200758
Beni Lev4ee3e062012-08-27 12:49:39 +0300759 if (!(stypes->rx & BIT(stype))) {
760 trace_cfg80211_return_bool(false);
Johannes Berg2e161f72010-08-12 15:38:38 +0200761 return false;
Beni Lev4ee3e062012-08-27 12:49:39 +0300762 }
Jouni Malinen026331c2010-02-15 12:53:10 +0200763
Johannes Berg2e161f72010-08-12 15:38:38 +0200764 data = buf + ieee80211_hdrlen(mgmt->frame_control);
765 data_len = len - ieee80211_hdrlen(mgmt->frame_control);
Jouni Malinen026331c2010-02-15 12:53:10 +0200766
Johannes Berg2e161f72010-08-12 15:38:38 +0200767 spin_lock_bh(&wdev->mgmt_registrations_lock);
768
769 list_for_each_entry(reg, &wdev->mgmt_registrations, list) {
770 if (reg->frame_type != ftype)
Jouni Malinen026331c2010-02-15 12:53:10 +0200771 continue;
772
Johannes Berg2e161f72010-08-12 15:38:38 +0200773 if (reg->match_len > data_len)
774 continue;
775
776 if (memcmp(reg->match, data, reg->match_len))
Jouni Malinen026331c2010-02-15 12:53:10 +0200777 continue;
778
779 /* found match! */
780
781 /* Indicate the received Action frame to user space */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000782 if (nl80211_send_mgmt(rdev, wdev, reg->nlportid,
Johannes Berg804483e2012-03-05 22:18:41 +0100783 freq, sig_mbm,
Johannes Berg2e161f72010-08-12 15:38:38 +0200784 buf, len, gfp))
Jouni Malinen026331c2010-02-15 12:53:10 +0200785 continue;
786
787 result = true;
788 break;
789 }
790
Johannes Berg2e161f72010-08-12 15:38:38 +0200791 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200792
Beni Lev4ee3e062012-08-27 12:49:39 +0300793 trace_cfg80211_return_bool(result);
Jouni Malinen026331c2010-02-15 12:53:10 +0200794 return result;
795}
Johannes Berg2e161f72010-08-12 15:38:38 +0200796EXPORT_SYMBOL(cfg80211_rx_mgmt);
Jouni Malinen026331c2010-02-15 12:53:10 +0200797
Simon Wunderlich04f39042013-02-08 18:16:19 +0100798void cfg80211_dfs_channels_update_work(struct work_struct *work)
799{
800 struct delayed_work *delayed_work;
801 struct cfg80211_registered_device *rdev;
802 struct cfg80211_chan_def chandef;
803 struct ieee80211_supported_band *sband;
804 struct ieee80211_channel *c;
805 struct wiphy *wiphy;
806 bool check_again = false;
807 unsigned long timeout, next_time = 0;
808 int bandid, i;
809
810 delayed_work = container_of(work, struct delayed_work, work);
811 rdev = container_of(delayed_work, struct cfg80211_registered_device,
812 dfs_update_channels_wk);
813 wiphy = &rdev->wiphy;
814
Johannes Berg5fe231e2013-05-08 21:45:15 +0200815 rtnl_lock();
Simon Wunderlich04f39042013-02-08 18:16:19 +0100816 for (bandid = 0; bandid < IEEE80211_NUM_BANDS; bandid++) {
817 sband = wiphy->bands[bandid];
818 if (!sband)
819 continue;
820
821 for (i = 0; i < sband->n_channels; i++) {
822 c = &sband->channels[i];
823
824 if (c->dfs_state != NL80211_DFS_UNAVAILABLE)
825 continue;
826
827 timeout = c->dfs_state_entered +
828 IEEE80211_DFS_MIN_NOP_TIME_MS;
829
830 if (time_after_eq(jiffies, timeout)) {
831 c->dfs_state = NL80211_DFS_USABLE;
832 cfg80211_chandef_create(&chandef, c,
833 NL80211_CHAN_NO_HT);
834
835 nl80211_radar_notify(rdev, &chandef,
836 NL80211_RADAR_NOP_FINISHED,
837 NULL, GFP_ATOMIC);
838 continue;
839 }
840
841 if (!check_again)
842 next_time = timeout - jiffies;
843 else
844 next_time = min(next_time, timeout - jiffies);
845 check_again = true;
846 }
847 }
Johannes Berg5fe231e2013-05-08 21:45:15 +0200848 rtnl_unlock();
Simon Wunderlich04f39042013-02-08 18:16:19 +0100849
850 /* reschedule if there are other channels waiting to be cleared again */
851 if (check_again)
852 queue_delayed_work(cfg80211_wq, &rdev->dfs_update_channels_wk,
853 next_time);
854}
855
856
857void cfg80211_radar_event(struct wiphy *wiphy,
858 struct cfg80211_chan_def *chandef,
859 gfp_t gfp)
860{
861 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
862 unsigned long timeout;
863
864 trace_cfg80211_radar_event(wiphy, chandef);
865
866 /* only set the chandef supplied channel to unavailable, in
867 * case the radar is detected on only one of multiple channels
868 * spanned by the chandef.
869 */
870 cfg80211_set_dfs_state(wiphy, chandef, NL80211_DFS_UNAVAILABLE);
871
872 timeout = msecs_to_jiffies(IEEE80211_DFS_MIN_NOP_TIME_MS);
873 queue_delayed_work(cfg80211_wq, &rdev->dfs_update_channels_wk,
874 timeout);
875
876 nl80211_radar_notify(rdev, chandef, NL80211_RADAR_DETECTED, NULL, gfp);
877}
878EXPORT_SYMBOL(cfg80211_radar_event);
879
880void cfg80211_cac_event(struct net_device *netdev,
881 enum nl80211_radar_event event, gfp_t gfp)
882{
883 struct wireless_dev *wdev = netdev->ieee80211_ptr;
884 struct wiphy *wiphy = wdev->wiphy;
885 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
886 struct cfg80211_chan_def chandef;
887 unsigned long timeout;
888
889 trace_cfg80211_cac_event(netdev, event);
890
891 if (WARN_ON(!wdev->cac_started))
892 return;
893
894 if (WARN_ON(!wdev->channel))
895 return;
896
897 cfg80211_chandef_create(&chandef, wdev->channel, NL80211_CHAN_NO_HT);
898
899 switch (event) {
900 case NL80211_RADAR_CAC_FINISHED:
901 timeout = wdev->cac_start_time +
902 msecs_to_jiffies(IEEE80211_DFS_MIN_CAC_TIME_MS);
903 WARN_ON(!time_after_eq(jiffies, timeout));
904 cfg80211_set_dfs_state(wiphy, &chandef, NL80211_DFS_AVAILABLE);
905 break;
906 case NL80211_RADAR_CAC_ABORTED:
907 break;
908 default:
909 WARN_ON(1);
910 return;
911 }
912 wdev->cac_started = false;
913
914 nl80211_radar_notify(rdev, &chandef, event, netdev, gfp);
915}
916EXPORT_SYMBOL(cfg80211_cac_event);