blob: e14fdcc1d7cdd852a429a89b101fb7d43fa6c66f [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"
18
Johannes Bergcb0b4be2009-07-07 03:56:07 +020019void cfg80211_send_rx_auth(struct net_device *dev, const u8 *buf, size_t len)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020020{
Johannes Berg19957bb2009-07-02 17:20:43 +020021 struct wireless_dev *wdev = dev->ieee80211_ptr;
22 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen6039f6d2009-03-19 13:39:21 +020023 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg19957bb2009-07-02 17:20:43 +020024
Johannes Berg667503dd2009-07-07 03:56:11 +020025 wdev_lock(wdev);
Johannes Bergcb0b4be2009-07-07 03:56:07 +020026
Johannes Berg95de8172012-01-20 13:55:25 +010027 nl80211_send_rx_auth(rdev, dev, buf, len, GFP_KERNEL);
28 cfg80211_sme_rx_auth(dev, buf, len);
Johannes Berg667503dd2009-07-07 03:56:11 +020029
30 wdev_unlock(wdev);
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
Johannes Berg667503dd2009-07-07 03:56:11 +020045 wdev_lock(wdev);
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)) {
57 cfg80211_put_bss(bss);
Johannes Bergf401a6f2009-08-07 14:51:05 +020058 goto out;
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 Berg95de8172012-01-20 13:55:25 +010069 cfg80211_put_bss(bss);
Johannes Berg7d930bc2009-10-20 15:08:53 +090070 goto out;
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);
Johannes Bergf401a6f2009-08-07 14:51:05 +020086 out:
Johannes Berg667503dd2009-07-07 03:56:11 +020087 wdev_unlock(wdev);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020088}
89EXPORT_SYMBOL(cfg80211_send_rx_assoc);
90
Holger Schurigce470612009-10-13 13:28:13 +020091void __cfg80211_send_deauth(struct net_device *dev,
Johannes Berg667503dd2009-07-07 03:56:11 +020092 const u8 *buf, size_t len)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020093{
Johannes Berg6829c872009-07-02 09:13:27 +020094 struct wireless_dev *wdev = dev->ieee80211_ptr;
95 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen6039f6d2009-03-19 13:39:21 +020096 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6829c872009-07-02 09:13:27 +020097 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)buf;
Johannes Berg19957bb2009-07-02 17:20:43 +020098 const u8 *bssid = mgmt->bssid;
Johannes Berg95de8172012-01-20 13:55:25 +010099 bool was_current = false;
Johannes Berg6829c872009-07-02 09:13:27 +0200100
Johannes Berg667503dd2009-07-07 03:56:11 +0200101 ASSERT_WDEV_LOCK(wdev);
Johannes Bergcb0b4be2009-07-07 03:56:07 +0200102
Johannes Berg19957bb2009-07-02 17:20:43 +0200103 if (wdev->current_bss &&
Felix Fietkauc6fb08a2012-03-18 22:58:04 +0100104 compare_ether_addr(wdev->current_bss->pub.bssid, bssid) == 0) {
Johannes Berg19957bb2009-07-02 17:20:43 +0200105 cfg80211_unhold_bss(wdev->current_bss);
106 cfg80211_put_bss(&wdev->current_bss->pub);
107 wdev->current_bss = NULL;
Johannes Berg3f3b6a82010-08-05 10:20:27 +0200108 was_current = true;
Johannes Berg19957bb2009-07-02 17:20:43 +0200109 }
Johannes Berg19957bb2009-07-02 17:20:43 +0200110
Johannes Berg5fba4af2009-12-02 12:43:42 +0100111 nl80211_send_deauth(rdev, dev, buf, len, GFP_KERNEL);
112
Johannes Berg3f3b6a82010-08-05 10:20:27 +0200113 if (wdev->sme_state == CFG80211_SME_CONNECTED && was_current) {
Johannes Berg6829c872009-07-02 09:13:27 +0200114 u16 reason_code;
115 bool from_ap;
116
117 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
118
Felix Fietkauc6fb08a2012-03-18 22:58:04 +0100119 from_ap = compare_ether_addr(mgmt->sa, dev->dev_addr) != 0;
Johannes Berg667503dd2009-07-07 03:56:11 +0200120 __cfg80211_disconnected(dev, NULL, 0, reason_code, from_ap);
Johannes Berg6829c872009-07-02 09:13:27 +0200121 } else if (wdev->sme_state == CFG80211_SME_CONNECTING) {
Johannes Berg667503dd2009-07-07 03:56:11 +0200122 __cfg80211_connect_result(dev, mgmt->bssid, NULL, 0, NULL, 0,
123 WLAN_STATUS_UNSPECIFIED_FAILURE,
Johannes Bergdf7fc0f2009-07-29 11:23:49 +0200124 false, NULL);
Johannes Berg667503dd2009-07-07 03:56:11 +0200125 }
126}
Holger Schurigce470612009-10-13 13:28:13 +0200127EXPORT_SYMBOL(__cfg80211_send_deauth);
Johannes Berg667503dd2009-07-07 03:56:11 +0200128
Holger Schurigce470612009-10-13 13:28:13 +0200129void cfg80211_send_deauth(struct net_device *dev, const u8 *buf, size_t len)
Johannes Berg667503dd2009-07-07 03:56:11 +0200130{
131 struct wireless_dev *wdev = dev->ieee80211_ptr;
132
Holger Schurigce470612009-10-13 13:28:13 +0200133 wdev_lock(wdev);
134 __cfg80211_send_deauth(dev, buf, len);
135 wdev_unlock(wdev);
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200136}
Jouni Malinen53b46b82009-03-27 20:53:56 +0200137EXPORT_SYMBOL(cfg80211_send_deauth);
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200138
Holger Schurigce470612009-10-13 13:28:13 +0200139void __cfg80211_send_disassoc(struct net_device *dev,
Johannes Berg667503dd2009-07-07 03:56:11 +0200140 const u8 *buf, size_t len)
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200141{
Johannes Berg6829c872009-07-02 09:13:27 +0200142 struct wireless_dev *wdev = dev->ieee80211_ptr;
143 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200144 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6829c872009-07-02 09:13:27 +0200145 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)buf;
Johannes Berg19957bb2009-07-02 17:20:43 +0200146 const u8 *bssid = mgmt->bssid;
Johannes Berg19957bb2009-07-02 17:20:43 +0200147 u16 reason_code;
148 bool from_ap;
Johannes Berg6829c872009-07-02 09:13:27 +0200149
Johannes Berg596a07c2009-07-11 00:17:32 +0200150 ASSERT_WDEV_LOCK(wdev);
Johannes Bergcb0b4be2009-07-07 03:56:07 +0200151
152 nl80211_send_disassoc(rdev, dev, buf, len, GFP_KERNEL);
Johannes Berg6829c872009-07-02 09:13:27 +0200153
Johannes Berg596a07c2009-07-11 00:17:32 +0200154 if (wdev->sme_state != CFG80211_SME_CONNECTED)
155 return;
Johannes Berg6829c872009-07-02 09:13:27 +0200156
Johannes Berg19957bb2009-07-02 17:20:43 +0200157 if (wdev->current_bss &&
Felix Fietkauc6fb08a2012-03-18 22:58:04 +0100158 compare_ether_addr(wdev->current_bss->pub.bssid, bssid) == 0) {
Johannes Berg95de8172012-01-20 13:55:25 +0100159 cfg80211_sme_disassoc(dev, wdev->current_bss);
160 cfg80211_unhold_bss(wdev->current_bss);
161 cfg80211_put_bss(&wdev->current_bss->pub);
162 wdev->current_bss = NULL;
Johannes Berg19957bb2009-07-02 17:20:43 +0200163 } else
164 WARN_ON(1);
Johannes Berg6829c872009-07-02 09:13:27 +0200165
Johannes Berg6829c872009-07-02 09:13:27 +0200166
Johannes Berg19957bb2009-07-02 17:20:43 +0200167 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
168
Felix Fietkauc6fb08a2012-03-18 22:58:04 +0100169 from_ap = compare_ether_addr(mgmt->sa, dev->dev_addr) != 0;
Johannes Berg667503dd2009-07-07 03:56:11 +0200170 __cfg80211_disconnected(dev, NULL, 0, reason_code, from_ap);
Johannes Berg667503dd2009-07-07 03:56:11 +0200171}
Holger Schurigce470612009-10-13 13:28:13 +0200172EXPORT_SYMBOL(__cfg80211_send_disassoc);
Johannes Berg667503dd2009-07-07 03:56:11 +0200173
Holger Schurigce470612009-10-13 13:28:13 +0200174void cfg80211_send_disassoc(struct net_device *dev, const u8 *buf, size_t len)
Johannes Berg667503dd2009-07-07 03:56:11 +0200175{
176 struct wireless_dev *wdev = dev->ieee80211_ptr;
177
Holger Schurigce470612009-10-13 13:28:13 +0200178 wdev_lock(wdev);
179 __cfg80211_send_disassoc(dev, buf, len);
180 wdev_unlock(wdev);
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200181}
Jouni Malinen53b46b82009-03-27 20:53:56 +0200182EXPORT_SYMBOL(cfg80211_send_disassoc);
Jouni Malinena3b8b052009-03-27 21:59:49 +0200183
Jouni Malinencf4e5942010-12-16 00:52:40 +0200184void cfg80211_send_unprot_deauth(struct net_device *dev, const u8 *buf,
185 size_t len)
186{
187 struct wireless_dev *wdev = dev->ieee80211_ptr;
188 struct wiphy *wiphy = wdev->wiphy;
189 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
190
191 nl80211_send_unprot_deauth(rdev, dev, buf, len, GFP_ATOMIC);
192}
193EXPORT_SYMBOL(cfg80211_send_unprot_deauth);
194
195void cfg80211_send_unprot_disassoc(struct net_device *dev, const u8 *buf,
196 size_t len)
197{
198 struct wireless_dev *wdev = dev->ieee80211_ptr;
199 struct wiphy *wiphy = wdev->wiphy;
200 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
201
202 nl80211_send_unprot_disassoc(rdev, dev, buf, len, GFP_ATOMIC);
203}
204EXPORT_SYMBOL(cfg80211_send_unprot_disassoc);
205
Johannes Berga58ce432009-11-19 12:45:42 +0100206void cfg80211_send_auth_timeout(struct net_device *dev, const u8 *addr)
207{
208 struct wireless_dev *wdev = dev->ieee80211_ptr;
209 struct wiphy *wiphy = wdev->wiphy;
210 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
211
212 wdev_lock(wdev);
213
214 nl80211_send_auth_timeout(rdev, dev, addr, GFP_KERNEL);
215 if (wdev->sme_state == CFG80211_SME_CONNECTING)
216 __cfg80211_connect_result(dev, addr, NULL, 0, NULL, 0,
217 WLAN_STATUS_UNSPECIFIED_FAILURE,
218 false, NULL);
219
Johannes Berg667503dd2009-07-07 03:56:11 +0200220 wdev_unlock(wdev);
Jouni Malinen1965c852009-04-22 21:38:25 +0300221}
222EXPORT_SYMBOL(cfg80211_send_auth_timeout);
223
Johannes Bergcb0b4be2009-07-07 03:56:07 +0200224void cfg80211_send_assoc_timeout(struct net_device *dev, const u8 *addr)
Jouni Malinen1965c852009-04-22 21:38:25 +0300225{
Johannes Berg6829c872009-07-02 09:13:27 +0200226 struct wireless_dev *wdev = dev->ieee80211_ptr;
227 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen1965c852009-04-22 21:38:25 +0300228 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg19957bb2009-07-02 17:20:43 +0200229
Johannes Berg667503dd2009-07-07 03:56:11 +0200230 wdev_lock(wdev);
Johannes Bergcb0b4be2009-07-07 03:56:07 +0200231
232 nl80211_send_assoc_timeout(rdev, dev, addr, GFP_KERNEL);
Johannes Berg6829c872009-07-02 09:13:27 +0200233 if (wdev->sme_state == CFG80211_SME_CONNECTING)
Johannes Berg667503dd2009-07-07 03:56:11 +0200234 __cfg80211_connect_result(dev, addr, NULL, 0, NULL, 0,
235 WLAN_STATUS_UNSPECIFIED_FAILURE,
Johannes Bergdf7fc0f2009-07-29 11:23:49 +0200236 false, NULL);
Johannes Berg19957bb2009-07-02 17:20:43 +0200237
Johannes Berg667503dd2009-07-07 03:56:11 +0200238 wdev_unlock(wdev);
Jouni Malinen1965c852009-04-22 21:38:25 +0300239}
240EXPORT_SYMBOL(cfg80211_send_assoc_timeout);
241
Jouni Malinena3b8b052009-03-27 21:59:49 +0200242void cfg80211_michael_mic_failure(struct net_device *dev, const u8 *addr,
243 enum nl80211_key_type key_type, int key_id,
Johannes Berge6d6e342009-07-01 21:26:47 +0200244 const u8 *tsc, gfp_t gfp)
Jouni Malinena3b8b052009-03-27 21:59:49 +0200245{
246 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
247 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg3d23e342009-09-29 23:27:28 +0200248#ifdef CONFIG_CFG80211_WEXT
Johannes Bergf58d4ed2009-06-19 02:45:21 +0200249 union iwreq_data wrqu;
Johannes Berge6d6e342009-07-01 21:26:47 +0200250 char *buf = kmalloc(128, gfp);
Johannes Bergf58d4ed2009-06-19 02:45:21 +0200251
252 if (buf) {
253 sprintf(buf, "MLME-MICHAELMICFAILURE.indication("
254 "keyid=%d %scast addr=%pM)", key_id,
255 key_type == NL80211_KEYTYPE_GROUP ? "broad" : "uni",
256 addr);
257 memset(&wrqu, 0, sizeof(wrqu));
258 wrqu.data.length = strlen(buf);
259 wireless_send_event(dev, IWEVCUSTOM, &wrqu, buf);
260 kfree(buf);
261 }
262#endif
263
Johannes Berge6d6e342009-07-01 21:26:47 +0200264 nl80211_michael_mic_failure(rdev, dev, addr, key_type, key_id, tsc, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +0200265}
266EXPORT_SYMBOL(cfg80211_michael_mic_failure);
Johannes Berg19957bb2009-07-02 17:20:43 +0200267
268/* some MLME handling for userspace SME */
Johannes Berg667503dd2009-07-07 03:56:11 +0200269int __cfg80211_mlme_auth(struct cfg80211_registered_device *rdev,
270 struct net_device *dev,
271 struct ieee80211_channel *chan,
272 enum nl80211_auth_type auth_type,
273 const u8 *bssid,
274 const u8 *ssid, int ssid_len,
Johannes Bergfffd0932009-07-08 14:22:54 +0200275 const u8 *ie, int ie_len,
Johannes Berg95de8172012-01-20 13:55:25 +0100276 const u8 *key, int key_len, int key_idx)
Johannes Berg19957bb2009-07-02 17:20:43 +0200277{
278 struct wireless_dev *wdev = dev->ieee80211_ptr;
279 struct cfg80211_auth_request req;
Johannes Berg95de8172012-01-20 13:55:25 +0100280 int err;
Johannes Berg19957bb2009-07-02 17:20:43 +0200281
Johannes Berg667503dd2009-07-07 03:56:11 +0200282 ASSERT_WDEV_LOCK(wdev);
283
Johannes Bergfffd0932009-07-08 14:22:54 +0200284 if (auth_type == NL80211_AUTHTYPE_SHARED_KEY)
285 if (!key || !key_len || key_idx < 0 || key_idx > 4)
286 return -EINVAL;
287
Johannes Berg0a9b5e12009-07-02 18:26:18 +0200288 if (wdev->current_bss &&
Felix Fietkauc6fb08a2012-03-18 22:58:04 +0100289 compare_ether_addr(bssid, wdev->current_bss->pub.bssid) == 0)
Johannes Berg0a9b5e12009-07-02 18:26:18 +0200290 return -EALREADY;
291
Johannes Berg19957bb2009-07-02 17:20:43 +0200292 memset(&req, 0, sizeof(req));
293
294 req.ie = ie;
295 req.ie_len = ie_len;
296 req.auth_type = auth_type;
297 req.bss = cfg80211_get_bss(&rdev->wiphy, chan, bssid, ssid, ssid_len,
298 WLAN_CAPABILITY_ESS, WLAN_CAPABILITY_ESS);
Johannes Bergfffd0932009-07-08 14:22:54 +0200299 req.key = key;
300 req.key_len = key_len;
301 req.key_idx = key_idx;
Johannes Berg19957bb2009-07-02 17:20:43 +0200302 if (!req.bss)
303 return -ENOENT;
304
Johannes Berg19957bb2009-07-02 17:20:43 +0200305 err = rdev->ops->auth(&rdev->wiphy, dev, &req);
Johannes Berg19957bb2009-07-02 17:20:43 +0200306
Johannes Berg95de8172012-01-20 13:55:25 +0100307 cfg80211_put_bss(req.bss);
Johannes Berg19957bb2009-07-02 17:20:43 +0200308 return err;
309}
310
Johannes Berg667503dd2009-07-07 03:56:11 +0200311int cfg80211_mlme_auth(struct cfg80211_registered_device *rdev,
312 struct net_device *dev, struct ieee80211_channel *chan,
313 enum nl80211_auth_type auth_type, const u8 *bssid,
314 const u8 *ssid, int ssid_len,
Johannes Bergfffd0932009-07-08 14:22:54 +0200315 const u8 *ie, int ie_len,
Johannes Berg95de8172012-01-20 13:55:25 +0100316 const u8 *key, int key_len, int key_idx)
Johannes Berg667503dd2009-07-07 03:56:11 +0200317{
318 int err;
319
320 wdev_lock(dev->ieee80211_ptr);
321 err = __cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid,
Johannes Bergfffd0932009-07-08 14:22:54 +0200322 ssid, ssid_len, ie, ie_len,
Johannes Berg95de8172012-01-20 13:55:25 +0100323 key, key_len, key_idx);
Johannes Berg667503dd2009-07-07 03:56:11 +0200324 wdev_unlock(dev->ieee80211_ptr);
325
326 return err;
327}
328
Ben Greear7e7c8922011-11-18 11:31:59 -0800329/* Do a logical ht_capa &= ht_capa_mask. */
330void cfg80211_oper_and_ht_capa(struct ieee80211_ht_cap *ht_capa,
331 const struct ieee80211_ht_cap *ht_capa_mask)
332{
333 int i;
334 u8 *p1, *p2;
335 if (!ht_capa_mask) {
336 memset(ht_capa, 0, sizeof(*ht_capa));
337 return;
338 }
339
340 p1 = (u8*)(ht_capa);
341 p2 = (u8*)(ht_capa_mask);
342 for (i = 0; i<sizeof(*ht_capa); i++)
343 p1[i] &= p2[i];
344}
345
Johannes Berg667503dd2009-07-07 03:56:11 +0200346int __cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
347 struct net_device *dev,
348 struct ieee80211_channel *chan,
349 const u8 *bssid, const u8 *prev_bssid,
350 const u8 *ssid, int ssid_len,
351 const u8 *ie, int ie_len, bool use_mfp,
Ben Greear7e7c8922011-11-18 11:31:59 -0800352 struct cfg80211_crypto_settings *crypt,
353 u32 assoc_flags, struct ieee80211_ht_cap *ht_capa,
354 struct ieee80211_ht_cap *ht_capa_mask)
Johannes Berg19957bb2009-07-02 17:20:43 +0200355{
356 struct wireless_dev *wdev = dev->ieee80211_ptr;
357 struct cfg80211_assoc_request req;
Johannes Berg95de8172012-01-20 13:55:25 +0100358 int err;
Jouni Malinen24b6b152009-11-17 21:35:38 +0200359 bool was_connected = false;
Johannes Berg19957bb2009-07-02 17:20:43 +0200360
Johannes Berg667503dd2009-07-07 03:56:11 +0200361 ASSERT_WDEV_LOCK(wdev);
362
Johannes Berg19957bb2009-07-02 17:20:43 +0200363 memset(&req, 0, sizeof(req));
364
Jouni Malinen24b6b152009-11-17 21:35:38 +0200365 if (wdev->current_bss && prev_bssid &&
Felix Fietkauc6fb08a2012-03-18 22:58:04 +0100366 compare_ether_addr(wdev->current_bss->pub.bssid, prev_bssid) == 0) {
Jouni Malinen24b6b152009-11-17 21:35:38 +0200367 /*
368 * Trying to reassociate: Allow this to proceed and let the old
369 * association to be dropped when the new one is completed.
370 */
371 if (wdev->sme_state == CFG80211_SME_CONNECTED) {
372 was_connected = true;
373 wdev->sme_state = CFG80211_SME_CONNECTING;
374 }
375 } else if (wdev->current_bss)
Johannes Berg19957bb2009-07-02 17:20:43 +0200376 return -EALREADY;
377
378 req.ie = ie;
379 req.ie_len = ie_len;
380 memcpy(&req.crypto, crypt, sizeof(req.crypto));
381 req.use_mfp = use_mfp;
Johannes Berg3e5d7642009-07-07 14:37:26 +0200382 req.prev_bssid = prev_bssid;
Ben Greear7e7c8922011-11-18 11:31:59 -0800383 req.flags = assoc_flags;
384 if (ht_capa)
385 memcpy(&req.ht_capa, ht_capa, sizeof(req.ht_capa));
386 if (ht_capa_mask)
387 memcpy(&req.ht_capa_mask, ht_capa_mask,
388 sizeof(req.ht_capa_mask));
389 cfg80211_oper_and_ht_capa(&req.ht_capa_mask,
390 rdev->wiphy.ht_capa_mod_mask);
391
Johannes Berg19957bb2009-07-02 17:20:43 +0200392 req.bss = cfg80211_get_bss(&rdev->wiphy, chan, bssid, ssid, ssid_len,
393 WLAN_CAPABILITY_ESS, WLAN_CAPABILITY_ESS);
Jouni Malinen24b6b152009-11-17 21:35:38 +0200394 if (!req.bss) {
395 if (was_connected)
396 wdev->sme_state = CFG80211_SME_CONNECTED;
Johannes Berg19957bb2009-07-02 17:20:43 +0200397 return -ENOENT;
Jouni Malinen24b6b152009-11-17 21:35:38 +0200398 }
Johannes Berg19957bb2009-07-02 17:20:43 +0200399
Johannes Berg19957bb2009-07-02 17:20:43 +0200400 err = rdev->ops->assoc(&rdev->wiphy, dev, &req);
Johannes Berg95de8172012-01-20 13:55:25 +0100401
402 if (err) {
403 if (was_connected)
404 wdev->sme_state = CFG80211_SME_CONNECTED;
405 cfg80211_put_bss(req.bss);
406 }
407
Johannes Berg19957bb2009-07-02 17:20:43 +0200408 return err;
409}
410
Johannes Berg667503dd2009-07-07 03:56:11 +0200411int cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
412 struct net_device *dev,
413 struct ieee80211_channel *chan,
414 const u8 *bssid, const u8 *prev_bssid,
415 const u8 *ssid, int ssid_len,
416 const u8 *ie, int ie_len, bool use_mfp,
Ben Greear7e7c8922011-11-18 11:31:59 -0800417 struct cfg80211_crypto_settings *crypt,
418 u32 assoc_flags, struct ieee80211_ht_cap *ht_capa,
419 struct ieee80211_ht_cap *ht_capa_mask)
Johannes Berg667503dd2009-07-07 03:56:11 +0200420{
421 struct wireless_dev *wdev = dev->ieee80211_ptr;
422 int err;
423
424 wdev_lock(wdev);
425 err = __cfg80211_mlme_assoc(rdev, dev, chan, bssid, prev_bssid,
Ben Greear7e7c8922011-11-18 11:31:59 -0800426 ssid, ssid_len, ie, ie_len, use_mfp, crypt,
427 assoc_flags, ht_capa, ht_capa_mask);
Johannes Berg667503dd2009-07-07 03:56:11 +0200428 wdev_unlock(wdev);
429
430 return err;
431}
432
433int __cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
434 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300435 const u8 *ie, int ie_len, u16 reason,
436 bool local_state_change)
Johannes Berg19957bb2009-07-02 17:20:43 +0200437{
438 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg95de8172012-01-20 13:55:25 +0100439 struct cfg80211_deauth_request req = {
440 .bssid = bssid,
441 .reason_code = reason,
442 .ie = ie,
443 .ie_len = ie_len,
444 };
Johannes Berg19957bb2009-07-02 17:20:43 +0200445
Johannes Berg667503dd2009-07-07 03:56:11 +0200446 ASSERT_WDEV_LOCK(wdev);
447
Johannes Berg95de8172012-01-20 13:55:25 +0100448 if (local_state_change) {
449 if (wdev->current_bss &&
Felix Fietkauc6fb08a2012-03-18 22:58:04 +0100450 compare_ether_addr(wdev->current_bss->pub.bssid, bssid)
451 == 0) {
Johannes Berg95de8172012-01-20 13:55:25 +0100452 cfg80211_unhold_bss(wdev->current_bss);
453 cfg80211_put_bss(&wdev->current_bss->pub);
454 wdev->current_bss = NULL;
Johannes Berg19957bb2009-07-02 17:20:43 +0200455 }
Johannes Berg19957bb2009-07-02 17:20:43 +0200456
Johannes Berg95de8172012-01-20 13:55:25 +0100457 return 0;
458 }
Johannes Berg19957bb2009-07-02 17:20:43 +0200459
Johannes Berg63c9c5e2012-02-24 13:50:51 +0100460 return rdev->ops->deauth(&rdev->wiphy, dev, &req);
Johannes Berg19957bb2009-07-02 17:20:43 +0200461}
462
Johannes Berg667503dd2009-07-07 03:56:11 +0200463int cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
464 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300465 const u8 *ie, int ie_len, u16 reason,
466 bool local_state_change)
Johannes Berg667503dd2009-07-07 03:56:11 +0200467{
468 struct wireless_dev *wdev = dev->ieee80211_ptr;
469 int err;
470
471 wdev_lock(wdev);
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300472 err = __cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason,
473 local_state_change);
Johannes Berg667503dd2009-07-07 03:56:11 +0200474 wdev_unlock(wdev);
475
476 return err;
477}
478
479static int __cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
480 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300481 const u8 *ie, int ie_len, u16 reason,
482 bool local_state_change)
Johannes Berg19957bb2009-07-02 17:20:43 +0200483{
484 struct wireless_dev *wdev = dev->ieee80211_ptr;
485 struct cfg80211_disassoc_request req;
486
Johannes Berg667503dd2009-07-07 03:56:11 +0200487 ASSERT_WDEV_LOCK(wdev);
488
Johannes Bergf9d6b402009-07-27 10:22:28 +0200489 if (wdev->sme_state != CFG80211_SME_CONNECTED)
490 return -ENOTCONN;
491
492 if (WARN_ON(!wdev->current_bss))
493 return -ENOTCONN;
494
Johannes Berg19957bb2009-07-02 17:20:43 +0200495 memset(&req, 0, sizeof(req));
496 req.reason_code = reason;
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300497 req.local_state_change = local_state_change;
Johannes Berg19957bb2009-07-02 17:20:43 +0200498 req.ie = ie;
499 req.ie_len = ie_len;
Felix Fietkauc6fb08a2012-03-18 22:58:04 +0100500 if (compare_ether_addr(wdev->current_bss->pub.bssid, bssid) == 0)
Johannes Berg19957bb2009-07-02 17:20:43 +0200501 req.bss = &wdev->current_bss->pub;
502 else
503 return -ENOTCONN;
504
Johannes Berg63c9c5e2012-02-24 13:50:51 +0100505 return rdev->ops->disassoc(&rdev->wiphy, dev, &req);
Johannes Berg667503dd2009-07-07 03:56:11 +0200506}
507
508int cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
509 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300510 const u8 *ie, int ie_len, u16 reason,
511 bool local_state_change)
Johannes Berg667503dd2009-07-07 03:56:11 +0200512{
513 struct wireless_dev *wdev = dev->ieee80211_ptr;
514 int err;
515
516 wdev_lock(wdev);
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300517 err = __cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason,
518 local_state_change);
Johannes Berg667503dd2009-07-07 03:56:11 +0200519 wdev_unlock(wdev);
520
521 return err;
Johannes Berg19957bb2009-07-02 17:20:43 +0200522}
523
524void cfg80211_mlme_down(struct cfg80211_registered_device *rdev,
525 struct net_device *dev)
526{
527 struct wireless_dev *wdev = dev->ieee80211_ptr;
528 struct cfg80211_deauth_request req;
Johannes Berg95de8172012-01-20 13:55:25 +0100529 u8 bssid[ETH_ALEN];
Johannes Berg19957bb2009-07-02 17:20:43 +0200530
Johannes Berg667503dd2009-07-07 03:56:11 +0200531 ASSERT_WDEV_LOCK(wdev);
532
Johannes Berg19957bb2009-07-02 17:20:43 +0200533 if (!rdev->ops->deauth)
534 return;
535
536 memset(&req, 0, sizeof(req));
537 req.reason_code = WLAN_REASON_DEAUTH_LEAVING;
538 req.ie = NULL;
539 req.ie_len = 0;
540
Johannes Berg95de8172012-01-20 13:55:25 +0100541 if (!wdev->current_bss)
542 return;
Johannes Berg19957bb2009-07-02 17:20:43 +0200543
Johannes Berg95de8172012-01-20 13:55:25 +0100544 memcpy(bssid, wdev->current_bss->pub.bssid, ETH_ALEN);
545 req.bssid = bssid;
Johannes Berg63c9c5e2012-02-24 13:50:51 +0100546 rdev->ops->deauth(&rdev->wiphy, dev, &req);
Johannes Berg95de8172012-01-20 13:55:25 +0100547
548 if (wdev->current_bss) {
549 cfg80211_unhold_bss(wdev->current_bss);
550 cfg80211_put_bss(&wdev->current_bss->pub);
551 wdev->current_bss = NULL;
Johannes Berg19957bb2009-07-02 17:20:43 +0200552 }
553}
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100554
555void cfg80211_ready_on_channel(struct net_device *dev, u64 cookie,
556 struct ieee80211_channel *chan,
557 enum nl80211_channel_type channel_type,
558 unsigned int duration, gfp_t gfp)
559{
560 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
561 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
562
563 nl80211_send_remain_on_channel(rdev, dev, cookie, chan, channel_type,
564 duration, gfp);
565}
566EXPORT_SYMBOL(cfg80211_ready_on_channel);
567
568void cfg80211_remain_on_channel_expired(struct net_device *dev,
569 u64 cookie,
570 struct ieee80211_channel *chan,
571 enum nl80211_channel_type channel_type,
572 gfp_t gfp)
573{
574 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
575 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
576
577 nl80211_send_remain_on_channel_cancel(rdev, dev, cookie, chan,
578 channel_type, gfp);
579}
580EXPORT_SYMBOL(cfg80211_remain_on_channel_expired);
Johannes Berg98b62182009-12-23 13:15:44 +0100581
582void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
583 struct station_info *sinfo, gfp_t gfp)
584{
585 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
586 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
587
588 nl80211_send_sta_event(rdev, dev, mac_addr, sinfo, gfp);
589}
590EXPORT_SYMBOL(cfg80211_new_sta);
Jouni Malinen026331c2010-02-15 12:53:10 +0200591
Jouni Malinenec15e682011-03-23 15:29:52 +0200592void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp)
593{
594 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
595 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
596
597 nl80211_send_sta_del_event(rdev, dev, mac_addr, gfp);
598}
599EXPORT_SYMBOL(cfg80211_del_sta);
600
Johannes Berg2e161f72010-08-12 15:38:38 +0200601struct cfg80211_mgmt_registration {
Jouni Malinen026331c2010-02-15 12:53:10 +0200602 struct list_head list;
603
604 u32 nlpid;
605
606 int match_len;
607
Johannes Berg2e161f72010-08-12 15:38:38 +0200608 __le16 frame_type;
609
Jouni Malinen026331c2010-02-15 12:53:10 +0200610 u8 match[];
611};
612
Johannes Berg2e161f72010-08-12 15:38:38 +0200613int cfg80211_mlme_register_mgmt(struct wireless_dev *wdev, u32 snd_pid,
614 u16 frame_type, const u8 *match_data,
615 int match_len)
Jouni Malinen026331c2010-02-15 12:53:10 +0200616{
Johannes Berg271733c2010-10-13 12:06:23 +0200617 struct wiphy *wiphy = wdev->wiphy;
618 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200619 struct cfg80211_mgmt_registration *reg, *nreg;
Jouni Malinen026331c2010-02-15 12:53:10 +0200620 int err = 0;
Johannes Berg2e161f72010-08-12 15:38:38 +0200621 u16 mgmt_type;
622
623 if (!wdev->wiphy->mgmt_stypes)
624 return -EOPNOTSUPP;
625
626 if ((frame_type & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT)
627 return -EINVAL;
628
629 if (frame_type & ~(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE))
630 return -EINVAL;
631
632 mgmt_type = (frame_type & IEEE80211_FCTL_STYPE) >> 4;
633 if (!(wdev->wiphy->mgmt_stypes[wdev->iftype].rx & BIT(mgmt_type)))
634 return -EINVAL;
Jouni Malinen026331c2010-02-15 12:53:10 +0200635
636 nreg = kzalloc(sizeof(*reg) + match_len, GFP_KERNEL);
637 if (!nreg)
638 return -ENOMEM;
639
Johannes Berg2e161f72010-08-12 15:38:38 +0200640 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200641
Johannes Berg2e161f72010-08-12 15:38:38 +0200642 list_for_each_entry(reg, &wdev->mgmt_registrations, list) {
Jouni Malinen026331c2010-02-15 12:53:10 +0200643 int mlen = min(match_len, reg->match_len);
644
Johannes Berg2e161f72010-08-12 15:38:38 +0200645 if (frame_type != le16_to_cpu(reg->frame_type))
646 continue;
647
Jouni Malinen026331c2010-02-15 12:53:10 +0200648 if (memcmp(reg->match, match_data, mlen) == 0) {
649 err = -EALREADY;
650 break;
651 }
652 }
653
654 if (err) {
655 kfree(nreg);
656 goto out;
657 }
658
659 memcpy(nreg->match, match_data, match_len);
660 nreg->match_len = match_len;
661 nreg->nlpid = snd_pid;
Johannes Berg2e161f72010-08-12 15:38:38 +0200662 nreg->frame_type = cpu_to_le16(frame_type);
663 list_add(&nreg->list, &wdev->mgmt_registrations);
Jouni Malinen026331c2010-02-15 12:53:10 +0200664
Johannes Berg271733c2010-10-13 12:06:23 +0200665 if (rdev->ops->mgmt_frame_register)
666 rdev->ops->mgmt_frame_register(wiphy, wdev->netdev,
667 frame_type, true);
668
Jouni Malinen026331c2010-02-15 12:53:10 +0200669 out:
Johannes Berg2e161f72010-08-12 15:38:38 +0200670 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Johannes Berg271733c2010-10-13 12:06:23 +0200671
Jouni Malinen026331c2010-02-15 12:53:10 +0200672 return err;
673}
674
Johannes Berg2e161f72010-08-12 15:38:38 +0200675void cfg80211_mlme_unregister_socket(struct wireless_dev *wdev, u32 nlpid)
Jouni Malinen026331c2010-02-15 12:53:10 +0200676{
Johannes Berg271733c2010-10-13 12:06:23 +0200677 struct wiphy *wiphy = wdev->wiphy;
678 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200679 struct cfg80211_mgmt_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +0200680
Johannes Berg2e161f72010-08-12 15:38:38 +0200681 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200682
Johannes Berg2e161f72010-08-12 15:38:38 +0200683 list_for_each_entry_safe(reg, tmp, &wdev->mgmt_registrations, list) {
Johannes Berg271733c2010-10-13 12:06:23 +0200684 if (reg->nlpid != nlpid)
685 continue;
686
687 if (rdev->ops->mgmt_frame_register) {
688 u16 frame_type = le16_to_cpu(reg->frame_type);
689
690 rdev->ops->mgmt_frame_register(wiphy, wdev->netdev,
691 frame_type, false);
Jouni Malinen026331c2010-02-15 12:53:10 +0200692 }
Johannes Berg271733c2010-10-13 12:06:23 +0200693
694 list_del(&reg->list);
695 kfree(reg);
Jouni Malinen026331c2010-02-15 12:53:10 +0200696 }
697
Johannes Berg2e161f72010-08-12 15:38:38 +0200698 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Johannes Berg28946da2011-11-04 11:18:12 +0100699
700 if (nlpid == wdev->ap_unexpected_nlpid)
701 wdev->ap_unexpected_nlpid = 0;
Jouni Malinen026331c2010-02-15 12:53:10 +0200702}
703
Johannes Berg2e161f72010-08-12 15:38:38 +0200704void cfg80211_mlme_purge_registrations(struct wireless_dev *wdev)
Jouni Malinen026331c2010-02-15 12:53:10 +0200705{
Johannes Berg2e161f72010-08-12 15:38:38 +0200706 struct cfg80211_mgmt_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +0200707
Johannes Berg2e161f72010-08-12 15:38:38 +0200708 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200709
Johannes Berg2e161f72010-08-12 15:38:38 +0200710 list_for_each_entry_safe(reg, tmp, &wdev->mgmt_registrations, list) {
Jouni Malinen026331c2010-02-15 12:53:10 +0200711 list_del(&reg->list);
712 kfree(reg);
713 }
714
Johannes Berg2e161f72010-08-12 15:38:38 +0200715 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200716}
717
Johannes Berg2e161f72010-08-12 15:38:38 +0200718int cfg80211_mlme_mgmt_tx(struct cfg80211_registered_device *rdev,
719 struct net_device *dev,
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100720 struct ieee80211_channel *chan, bool offchan,
Johannes Berg2e161f72010-08-12 15:38:38 +0200721 enum nl80211_channel_type channel_type,
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100722 bool channel_type_valid, unsigned int wait,
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +0530723 const u8 *buf, size_t len, bool no_cck,
Johannes Berge247bd902011-11-04 11:18:21 +0100724 bool dont_wait_for_ack, u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +0200725{
726 struct wireless_dev *wdev = dev->ieee80211_ptr;
727 const struct ieee80211_mgmt *mgmt;
Johannes Berg2e161f72010-08-12 15:38:38 +0200728 u16 stype;
Jouni Malinen026331c2010-02-15 12:53:10 +0200729
Johannes Berg2e161f72010-08-12 15:38:38 +0200730 if (!wdev->wiphy->mgmt_stypes)
Jouni Malinen026331c2010-02-15 12:53:10 +0200731 return -EOPNOTSUPP;
Johannes Berg2e161f72010-08-12 15:38:38 +0200732
733 if (!rdev->ops->mgmt_tx)
734 return -EOPNOTSUPP;
735
Jouni Malinen026331c2010-02-15 12:53:10 +0200736 if (len < 24 + 1)
737 return -EINVAL;
738
739 mgmt = (const struct ieee80211_mgmt *) buf;
Johannes Berg2e161f72010-08-12 15:38:38 +0200740
741 if (!ieee80211_is_mgmt(mgmt->frame_control))
Jouni Malinen026331c2010-02-15 12:53:10 +0200742 return -EINVAL;
Johannes Berg2e161f72010-08-12 15:38:38 +0200743
744 stype = le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE;
745 if (!(wdev->wiphy->mgmt_stypes[wdev->iftype].tx & BIT(stype >> 4)))
746 return -EINVAL;
747
748 if (ieee80211_is_action(mgmt->frame_control) &&
749 mgmt->u.action.category != WLAN_CATEGORY_PUBLIC) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200750 int err = 0;
751
Johannes Bergfe100ac2010-08-09 15:52:03 +0200752 wdev_lock(wdev);
753
Johannes Berg663fcaf2010-09-30 21:06:09 +0200754 switch (wdev->iftype) {
755 case NL80211_IFTYPE_ADHOC:
756 case NL80211_IFTYPE_STATION:
757 case NL80211_IFTYPE_P2P_CLIENT:
758 if (!wdev->current_bss) {
759 err = -ENOTCONN;
760 break;
761 }
Johannes Bergfe100ac2010-08-09 15:52:03 +0200762
Felix Fietkauc6fb08a2012-03-18 22:58:04 +0100763 if (compare_ether_addr(wdev->current_bss->pub.bssid,
764 mgmt->bssid)) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200765 err = -ENOTCONN;
766 break;
767 }
768
769 /*
770 * check for IBSS DA must be done by driver as
771 * cfg80211 doesn't track the stations
772 */
773 if (wdev->iftype == NL80211_IFTYPE_ADHOC)
774 break;
775
776 /* for station, check that DA is the AP */
Felix Fietkauc6fb08a2012-03-18 22:58:04 +0100777 if (compare_ether_addr(wdev->current_bss->pub.bssid,
778 mgmt->da)) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200779 err = -ENOTCONN;
780 break;
781 }
782 break;
783 case NL80211_IFTYPE_AP:
784 case NL80211_IFTYPE_P2P_GO:
785 case NL80211_IFTYPE_AP_VLAN:
Felix Fietkauc6fb08a2012-03-18 22:58:04 +0100786 if (compare_ether_addr(mgmt->bssid, dev->dev_addr))
Johannes Berg663fcaf2010-09-30 21:06:09 +0200787 err = -EINVAL;
788 break;
Javier Cardona0778a6a2011-05-03 16:57:08 -0700789 case NL80211_IFTYPE_MESH_POINT:
Felix Fietkauc6fb08a2012-03-18 22:58:04 +0100790 if (compare_ether_addr(mgmt->sa, mgmt->bssid)) {
Javier Cardona0778a6a2011-05-03 16:57:08 -0700791 err = -EINVAL;
792 break;
793 }
794 /*
795 * check for mesh DA must be done by driver as
796 * cfg80211 doesn't track the stations
797 */
798 break;
Johannes Berg663fcaf2010-09-30 21:06:09 +0200799 default:
800 err = -EOPNOTSUPP;
801 break;
802 }
Johannes Bergfe100ac2010-08-09 15:52:03 +0200803 wdev_unlock(wdev);
Johannes Berg663fcaf2010-09-30 21:06:09 +0200804
805 if (err)
806 return err;
Jouni Malinen026331c2010-02-15 12:53:10 +0200807 }
808
Felix Fietkauc6fb08a2012-03-18 22:58:04 +0100809 if (compare_ether_addr(mgmt->sa, dev->dev_addr) != 0)
Jouni Malinen026331c2010-02-15 12:53:10 +0200810 return -EINVAL;
811
812 /* Transmit the Action frame as requested by user space */
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100813 return rdev->ops->mgmt_tx(&rdev->wiphy, dev, chan, offchan,
814 channel_type, channel_type_valid,
Johannes Berge247bd902011-11-04 11:18:21 +0100815 wait, buf, len, no_cck, dont_wait_for_ack,
816 cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +0200817}
818
Johannes Berg804483e2012-03-05 22:18:41 +0100819bool cfg80211_rx_mgmt(struct net_device *dev, int freq, int sig_mbm,
820 const u8 *buf, size_t len, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +0200821{
822 struct wireless_dev *wdev = dev->ieee80211_ptr;
823 struct wiphy *wiphy = wdev->wiphy;
824 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200825 struct cfg80211_mgmt_registration *reg;
826 const struct ieee80211_txrx_stypes *stypes =
827 &wiphy->mgmt_stypes[wdev->iftype];
828 struct ieee80211_mgmt *mgmt = (void *)buf;
829 const u8 *data;
830 int data_len;
Jouni Malinen026331c2010-02-15 12:53:10 +0200831 bool result = false;
Johannes Berg2e161f72010-08-12 15:38:38 +0200832 __le16 ftype = mgmt->frame_control &
833 cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE);
834 u16 stype;
Jouni Malinen026331c2010-02-15 12:53:10 +0200835
Johannes Berg2e161f72010-08-12 15:38:38 +0200836 stype = (le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE) >> 4;
Jouni Malinen026331c2010-02-15 12:53:10 +0200837
Johannes Berg2e161f72010-08-12 15:38:38 +0200838 if (!(stypes->rx & BIT(stype)))
839 return false;
Jouni Malinen026331c2010-02-15 12:53:10 +0200840
Johannes Berg2e161f72010-08-12 15:38:38 +0200841 data = buf + ieee80211_hdrlen(mgmt->frame_control);
842 data_len = len - ieee80211_hdrlen(mgmt->frame_control);
Jouni Malinen026331c2010-02-15 12:53:10 +0200843
Johannes Berg2e161f72010-08-12 15:38:38 +0200844 spin_lock_bh(&wdev->mgmt_registrations_lock);
845
846 list_for_each_entry(reg, &wdev->mgmt_registrations, list) {
847 if (reg->frame_type != ftype)
Jouni Malinen026331c2010-02-15 12:53:10 +0200848 continue;
849
Johannes Berg2e161f72010-08-12 15:38:38 +0200850 if (reg->match_len > data_len)
851 continue;
852
853 if (memcmp(reg->match, data, reg->match_len))
Jouni Malinen026331c2010-02-15 12:53:10 +0200854 continue;
855
856 /* found match! */
857
858 /* Indicate the received Action frame to user space */
Johannes Berg804483e2012-03-05 22:18:41 +0100859 if (nl80211_send_mgmt(rdev, dev, reg->nlpid,
860 freq, sig_mbm,
Johannes Berg2e161f72010-08-12 15:38:38 +0200861 buf, len, gfp))
Jouni Malinen026331c2010-02-15 12:53:10 +0200862 continue;
863
864 result = true;
865 break;
866 }
867
Johannes Berg2e161f72010-08-12 15:38:38 +0200868 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200869
870 return result;
871}
Johannes Berg2e161f72010-08-12 15:38:38 +0200872EXPORT_SYMBOL(cfg80211_rx_mgmt);
Jouni Malinen026331c2010-02-15 12:53:10 +0200873
Johannes Berg2e161f72010-08-12 15:38:38 +0200874void cfg80211_mgmt_tx_status(struct net_device *dev, u64 cookie,
875 const u8 *buf, size_t len, bool ack, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +0200876{
877 struct wireless_dev *wdev = dev->ieee80211_ptr;
878 struct wiphy *wiphy = wdev->wiphy;
879 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
880
881 /* Indicate TX status of the Action frame to user space */
Johannes Berg2e161f72010-08-12 15:38:38 +0200882 nl80211_send_mgmt_tx_status(rdev, dev, cookie, buf, len, ack, gfp);
Jouni Malinen026331c2010-02-15 12:53:10 +0200883}
Johannes Berg2e161f72010-08-12 15:38:38 +0200884EXPORT_SYMBOL(cfg80211_mgmt_tx_status);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +0200885
886void cfg80211_cqm_rssi_notify(struct net_device *dev,
887 enum nl80211_cqm_rssi_threshold_event rssi_event,
888 gfp_t gfp)
889{
890 struct wireless_dev *wdev = dev->ieee80211_ptr;
891 struct wiphy *wiphy = wdev->wiphy;
892 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
893
894 /* Indicate roaming trigger event to user space */
895 nl80211_send_cqm_rssi_notify(rdev, dev, rssi_event, gfp);
896}
897EXPORT_SYMBOL(cfg80211_cqm_rssi_notify);
Johannes Bergc063dbf2010-11-24 08:10:05 +0100898
899void cfg80211_cqm_pktloss_notify(struct net_device *dev,
900 const u8 *peer, u32 num_packets, gfp_t gfp)
901{
902 struct wireless_dev *wdev = dev->ieee80211_ptr;
903 struct wiphy *wiphy = wdev->wiphy;
904 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
905
906 /* Indicate roaming trigger event to user space */
907 nl80211_send_cqm_pktloss_notify(rdev, dev, peer, num_packets, gfp);
908}
909EXPORT_SYMBOL(cfg80211_cqm_pktloss_notify);
Johannes Berge5497d72011-07-05 16:35:40 +0200910
911void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
912 const u8 *replay_ctr, gfp_t gfp)
913{
914 struct wireless_dev *wdev = dev->ieee80211_ptr;
915 struct wiphy *wiphy = wdev->wiphy;
916 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
917
918 nl80211_gtk_rekey_notify(rdev, dev, bssid, replay_ctr, gfp);
919}
920EXPORT_SYMBOL(cfg80211_gtk_rekey_notify);
Jouni Malinenc9df56b2011-09-16 18:56:23 +0300921
922void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
923 const u8 *bssid, bool preauth, gfp_t gfp)
924{
925 struct wireless_dev *wdev = dev->ieee80211_ptr;
926 struct wiphy *wiphy = wdev->wiphy;
927 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
928
929 nl80211_pmksa_candidate_notify(rdev, dev, index, bssid, preauth, gfp);
930}
931EXPORT_SYMBOL(cfg80211_pmksa_candidate_notify);
Johannes Berg28946da2011-11-04 11:18:12 +0100932
933bool cfg80211_rx_spurious_frame(struct net_device *dev,
934 const u8 *addr, gfp_t gfp)
935{
936 struct wireless_dev *wdev = dev->ieee80211_ptr;
937
938 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
939 wdev->iftype != NL80211_IFTYPE_P2P_GO))
940 return false;
941
942 return nl80211_unexpected_frame(dev, addr, gfp);
943}
944EXPORT_SYMBOL(cfg80211_rx_spurious_frame);
Johannes Bergb92ab5d2011-11-04 11:18:19 +0100945
946bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
947 const u8 *addr, gfp_t gfp)
948{
949 struct wireless_dev *wdev = dev->ieee80211_ptr;
950
951 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
952 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
953 wdev->iftype != NL80211_IFTYPE_AP_VLAN))
954 return false;
955
956 return nl80211_unexpected_4addr_frame(dev, addr, gfp);
957}
958EXPORT_SYMBOL(cfg80211_rx_unexpected_4addr_frame);