blob: 904a7f36832531cbe2fa3d50f220b94775eaf8a9 [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 &&
Joe Perchesac422d32012-05-08 18:56:55 +0000104 ether_addr_equal(wdev->current_bss->pub.bssid, bssid)) {
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
Joe Perchesac422d32012-05-08 18:56:55 +0000119 from_ap = !ether_addr_equal(mgmt->sa, dev->dev_addr);
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 &&
Joe Perchesac422d32012-05-08 18:56:55 +0000158 ether_addr_equal(wdev->current_bss->pub.bssid, bssid)) {
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
Joe Perchesac422d32012-05-08 18:56:55 +0000169 from_ap = !ether_addr_equal(mgmt->sa, dev->dev_addr);
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 &&
Joe Perchesac422d32012-05-08 18:56:55 +0000289 ether_addr_equal(bssid, wdev->current_bss->pub.bssid))
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
Michal Kaziore4e32452012-06-29 12:47:08 +0200305 err = cfg80211_can_use_chan(rdev, wdev, req.bss->channel,
306 CHAN_MODE_SHARED);
307 if (err)
308 goto out;
309
Johannes Berg19957bb2009-07-02 17:20:43 +0200310 err = rdev->ops->auth(&rdev->wiphy, dev, &req);
Johannes Berg19957bb2009-07-02 17:20:43 +0200311
Michal Kaziore4e32452012-06-29 12:47:08 +0200312out:
Johannes Berg95de8172012-01-20 13:55:25 +0100313 cfg80211_put_bss(req.bss);
Johannes Berg19957bb2009-07-02 17:20:43 +0200314 return err;
315}
316
Johannes Berg667503dd2009-07-07 03:56:11 +0200317int cfg80211_mlme_auth(struct cfg80211_registered_device *rdev,
318 struct net_device *dev, struct ieee80211_channel *chan,
319 enum nl80211_auth_type auth_type, const u8 *bssid,
320 const u8 *ssid, int ssid_len,
Johannes Bergfffd0932009-07-08 14:22:54 +0200321 const u8 *ie, int ie_len,
Johannes Berg95de8172012-01-20 13:55:25 +0100322 const u8 *key, int key_len, int key_idx)
Johannes Berg667503dd2009-07-07 03:56:11 +0200323{
324 int err;
325
Michal Kaziore4e32452012-06-29 12:47:08 +0200326 mutex_lock(&rdev->devlist_mtx);
Johannes Berg667503dd2009-07-07 03:56:11 +0200327 wdev_lock(dev->ieee80211_ptr);
328 err = __cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid,
Johannes Bergfffd0932009-07-08 14:22:54 +0200329 ssid, ssid_len, ie, ie_len,
Johannes Berg95de8172012-01-20 13:55:25 +0100330 key, key_len, key_idx);
Johannes Berg667503dd2009-07-07 03:56:11 +0200331 wdev_unlock(dev->ieee80211_ptr);
Michal Kaziore4e32452012-06-29 12:47:08 +0200332 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg667503dd2009-07-07 03:56:11 +0200333
334 return err;
335}
336
Ben Greear7e7c8922011-11-18 11:31:59 -0800337/* Do a logical ht_capa &= ht_capa_mask. */
338void cfg80211_oper_and_ht_capa(struct ieee80211_ht_cap *ht_capa,
339 const struct ieee80211_ht_cap *ht_capa_mask)
340{
341 int i;
342 u8 *p1, *p2;
343 if (!ht_capa_mask) {
344 memset(ht_capa, 0, sizeof(*ht_capa));
345 return;
346 }
347
348 p1 = (u8*)(ht_capa);
349 p2 = (u8*)(ht_capa_mask);
350 for (i = 0; i<sizeof(*ht_capa); i++)
351 p1[i] &= p2[i];
352}
353
Johannes Berg667503dd2009-07-07 03:56:11 +0200354int __cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
355 struct net_device *dev,
356 struct ieee80211_channel *chan,
357 const u8 *bssid, const u8 *prev_bssid,
358 const u8 *ssid, int ssid_len,
359 const u8 *ie, int ie_len, bool use_mfp,
Ben Greear7e7c8922011-11-18 11:31:59 -0800360 struct cfg80211_crypto_settings *crypt,
361 u32 assoc_flags, struct ieee80211_ht_cap *ht_capa,
362 struct ieee80211_ht_cap *ht_capa_mask)
Johannes Berg19957bb2009-07-02 17:20:43 +0200363{
364 struct wireless_dev *wdev = dev->ieee80211_ptr;
365 struct cfg80211_assoc_request req;
Johannes Berg95de8172012-01-20 13:55:25 +0100366 int err;
Jouni Malinen24b6b152009-11-17 21:35:38 +0200367 bool was_connected = false;
Johannes Berg19957bb2009-07-02 17:20:43 +0200368
Johannes Berg667503dd2009-07-07 03:56:11 +0200369 ASSERT_WDEV_LOCK(wdev);
370
Johannes Berg19957bb2009-07-02 17:20:43 +0200371 memset(&req, 0, sizeof(req));
372
Jouni Malinen24b6b152009-11-17 21:35:38 +0200373 if (wdev->current_bss && prev_bssid &&
Joe Perchesac422d32012-05-08 18:56:55 +0000374 ether_addr_equal(wdev->current_bss->pub.bssid, prev_bssid)) {
Jouni Malinen24b6b152009-11-17 21:35:38 +0200375 /*
376 * Trying to reassociate: Allow this to proceed and let the old
377 * association to be dropped when the new one is completed.
378 */
379 if (wdev->sme_state == CFG80211_SME_CONNECTED) {
380 was_connected = true;
381 wdev->sme_state = CFG80211_SME_CONNECTING;
382 }
383 } else if (wdev->current_bss)
Johannes Berg19957bb2009-07-02 17:20:43 +0200384 return -EALREADY;
385
386 req.ie = ie;
387 req.ie_len = ie_len;
388 memcpy(&req.crypto, crypt, sizeof(req.crypto));
389 req.use_mfp = use_mfp;
Johannes Berg3e5d7642009-07-07 14:37:26 +0200390 req.prev_bssid = prev_bssid;
Ben Greear7e7c8922011-11-18 11:31:59 -0800391 req.flags = assoc_flags;
392 if (ht_capa)
393 memcpy(&req.ht_capa, ht_capa, sizeof(req.ht_capa));
394 if (ht_capa_mask)
395 memcpy(&req.ht_capa_mask, ht_capa_mask,
396 sizeof(req.ht_capa_mask));
397 cfg80211_oper_and_ht_capa(&req.ht_capa_mask,
398 rdev->wiphy.ht_capa_mod_mask);
399
Johannes Berg19957bb2009-07-02 17:20:43 +0200400 req.bss = cfg80211_get_bss(&rdev->wiphy, chan, bssid, ssid, ssid_len,
401 WLAN_CAPABILITY_ESS, WLAN_CAPABILITY_ESS);
Jouni Malinen24b6b152009-11-17 21:35:38 +0200402 if (!req.bss) {
403 if (was_connected)
404 wdev->sme_state = CFG80211_SME_CONNECTED;
Johannes Berg19957bb2009-07-02 17:20:43 +0200405 return -ENOENT;
Jouni Malinen24b6b152009-11-17 21:35:38 +0200406 }
Johannes Berg19957bb2009-07-02 17:20:43 +0200407
Michal Kaziore4e32452012-06-29 12:47:08 +0200408 err = cfg80211_can_use_chan(rdev, wdev, req.bss->channel,
409 CHAN_MODE_SHARED);
410 if (err)
411 goto out;
412
Johannes Berg19957bb2009-07-02 17:20:43 +0200413 err = rdev->ops->assoc(&rdev->wiphy, dev, &req);
Johannes Berg95de8172012-01-20 13:55:25 +0100414
Michal Kaziore4e32452012-06-29 12:47:08 +0200415out:
Johannes Berg95de8172012-01-20 13:55:25 +0100416 if (err) {
417 if (was_connected)
418 wdev->sme_state = CFG80211_SME_CONNECTED;
419 cfg80211_put_bss(req.bss);
420 }
421
Johannes Berg19957bb2009-07-02 17:20:43 +0200422 return err;
423}
424
Johannes Berg667503dd2009-07-07 03:56:11 +0200425int cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
426 struct net_device *dev,
427 struct ieee80211_channel *chan,
428 const u8 *bssid, const u8 *prev_bssid,
429 const u8 *ssid, int ssid_len,
430 const u8 *ie, int ie_len, bool use_mfp,
Ben Greear7e7c8922011-11-18 11:31:59 -0800431 struct cfg80211_crypto_settings *crypt,
432 u32 assoc_flags, struct ieee80211_ht_cap *ht_capa,
433 struct ieee80211_ht_cap *ht_capa_mask)
Johannes Berg667503dd2009-07-07 03:56:11 +0200434{
435 struct wireless_dev *wdev = dev->ieee80211_ptr;
436 int err;
437
Michal Kaziore4e32452012-06-29 12:47:08 +0200438 mutex_lock(&rdev->devlist_mtx);
Johannes Berg667503dd2009-07-07 03:56:11 +0200439 wdev_lock(wdev);
440 err = __cfg80211_mlme_assoc(rdev, dev, chan, bssid, prev_bssid,
Ben Greear7e7c8922011-11-18 11:31:59 -0800441 ssid, ssid_len, ie, ie_len, use_mfp, crypt,
442 assoc_flags, ht_capa, ht_capa_mask);
Johannes Berg667503dd2009-07-07 03:56:11 +0200443 wdev_unlock(wdev);
Michal Kaziore4e32452012-06-29 12:47:08 +0200444 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg667503dd2009-07-07 03:56:11 +0200445
446 return err;
447}
448
449int __cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
450 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300451 const u8 *ie, int ie_len, u16 reason,
452 bool local_state_change)
Johannes Berg19957bb2009-07-02 17:20:43 +0200453{
454 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg95de8172012-01-20 13:55:25 +0100455 struct cfg80211_deauth_request req = {
456 .bssid = bssid,
457 .reason_code = reason,
458 .ie = ie,
459 .ie_len = ie_len,
Stanislaw Gruszka68632552012-10-15 14:52:41 +0200460 .local_state_change = local_state_change,
Johannes Berg95de8172012-01-20 13:55:25 +0100461 };
Johannes Berg19957bb2009-07-02 17:20:43 +0200462
Johannes Berg667503dd2009-07-07 03:56:11 +0200463 ASSERT_WDEV_LOCK(wdev);
464
Stanislaw Gruszka68632552012-10-15 14:52:41 +0200465 if (local_state_change && (!wdev->current_bss ||
466 !ether_addr_equal(wdev->current_bss->pub.bssid, bssid)))
Johannes Berg95de8172012-01-20 13:55:25 +0100467 return 0;
Johannes Berg19957bb2009-07-02 17:20:43 +0200468
Johannes Berg63c9c5e2012-02-24 13:50:51 +0100469 return rdev->ops->deauth(&rdev->wiphy, dev, &req);
Johannes Berg19957bb2009-07-02 17:20:43 +0200470}
471
Johannes Berg667503dd2009-07-07 03:56:11 +0200472int cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
473 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300474 const u8 *ie, int ie_len, u16 reason,
475 bool local_state_change)
Johannes Berg667503dd2009-07-07 03:56:11 +0200476{
477 struct wireless_dev *wdev = dev->ieee80211_ptr;
478 int err;
479
480 wdev_lock(wdev);
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300481 err = __cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason,
482 local_state_change);
Johannes Berg667503dd2009-07-07 03:56:11 +0200483 wdev_unlock(wdev);
484
485 return err;
486}
487
488static int __cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
489 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300490 const u8 *ie, int ie_len, u16 reason,
491 bool local_state_change)
Johannes Berg19957bb2009-07-02 17:20:43 +0200492{
493 struct wireless_dev *wdev = dev->ieee80211_ptr;
494 struct cfg80211_disassoc_request req;
495
Johannes Berg667503dd2009-07-07 03:56:11 +0200496 ASSERT_WDEV_LOCK(wdev);
497
Johannes Bergf9d6b402009-07-27 10:22:28 +0200498 if (wdev->sme_state != CFG80211_SME_CONNECTED)
499 return -ENOTCONN;
500
501 if (WARN_ON(!wdev->current_bss))
502 return -ENOTCONN;
503
Johannes Berg19957bb2009-07-02 17:20:43 +0200504 memset(&req, 0, sizeof(req));
505 req.reason_code = reason;
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300506 req.local_state_change = local_state_change;
Johannes Berg19957bb2009-07-02 17:20:43 +0200507 req.ie = ie;
508 req.ie_len = ie_len;
Joe Perchesac422d32012-05-08 18:56:55 +0000509 if (ether_addr_equal(wdev->current_bss->pub.bssid, bssid))
Johannes Berg19957bb2009-07-02 17:20:43 +0200510 req.bss = &wdev->current_bss->pub;
511 else
512 return -ENOTCONN;
513
Johannes Berg63c9c5e2012-02-24 13:50:51 +0100514 return rdev->ops->disassoc(&rdev->wiphy, dev, &req);
Johannes Berg667503dd2009-07-07 03:56:11 +0200515}
516
517int cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
518 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300519 const u8 *ie, int ie_len, u16 reason,
520 bool local_state_change)
Johannes Berg667503dd2009-07-07 03:56:11 +0200521{
522 struct wireless_dev *wdev = dev->ieee80211_ptr;
523 int err;
524
525 wdev_lock(wdev);
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300526 err = __cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason,
527 local_state_change);
Johannes Berg667503dd2009-07-07 03:56:11 +0200528 wdev_unlock(wdev);
529
530 return err;
Johannes Berg19957bb2009-07-02 17:20:43 +0200531}
532
533void cfg80211_mlme_down(struct cfg80211_registered_device *rdev,
534 struct net_device *dev)
535{
536 struct wireless_dev *wdev = dev->ieee80211_ptr;
537 struct cfg80211_deauth_request req;
Johannes Berg95de8172012-01-20 13:55:25 +0100538 u8 bssid[ETH_ALEN];
Johannes Berg19957bb2009-07-02 17:20:43 +0200539
Johannes Berg667503dd2009-07-07 03:56:11 +0200540 ASSERT_WDEV_LOCK(wdev);
541
Johannes Berg19957bb2009-07-02 17:20:43 +0200542 if (!rdev->ops->deauth)
543 return;
544
545 memset(&req, 0, sizeof(req));
546 req.reason_code = WLAN_REASON_DEAUTH_LEAVING;
547 req.ie = NULL;
548 req.ie_len = 0;
549
Johannes Berg95de8172012-01-20 13:55:25 +0100550 if (!wdev->current_bss)
551 return;
Johannes Berg19957bb2009-07-02 17:20:43 +0200552
Johannes Berg95de8172012-01-20 13:55:25 +0100553 memcpy(bssid, wdev->current_bss->pub.bssid, ETH_ALEN);
554 req.bssid = bssid;
Johannes Berg63c9c5e2012-02-24 13:50:51 +0100555 rdev->ops->deauth(&rdev->wiphy, dev, &req);
Johannes Berg95de8172012-01-20 13:55:25 +0100556
557 if (wdev->current_bss) {
558 cfg80211_unhold_bss(wdev->current_bss);
559 cfg80211_put_bss(&wdev->current_bss->pub);
560 wdev->current_bss = NULL;
Johannes Berg19957bb2009-07-02 17:20:43 +0200561 }
562}
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100563
Johannes Berg71bbc992012-06-15 15:30:18 +0200564void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie,
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100565 struct ieee80211_channel *chan,
566 enum nl80211_channel_type channel_type,
567 unsigned int duration, gfp_t gfp)
568{
Johannes Berg71bbc992012-06-15 15:30:18 +0200569 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100570 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
571
Johannes Berg71bbc992012-06-15 15:30:18 +0200572 nl80211_send_remain_on_channel(rdev, wdev, cookie, chan, channel_type,
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100573 duration, gfp);
574}
575EXPORT_SYMBOL(cfg80211_ready_on_channel);
576
Johannes Berg71bbc992012-06-15 15:30:18 +0200577void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie,
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100578 struct ieee80211_channel *chan,
579 enum nl80211_channel_type channel_type,
580 gfp_t gfp)
581{
Johannes Berg71bbc992012-06-15 15:30:18 +0200582 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100583 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
584
Johannes Berg71bbc992012-06-15 15:30:18 +0200585 nl80211_send_remain_on_channel_cancel(rdev, wdev, cookie, chan,
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100586 channel_type, gfp);
587}
588EXPORT_SYMBOL(cfg80211_remain_on_channel_expired);
Johannes Berg98b62182009-12-23 13:15:44 +0100589
590void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
591 struct station_info *sinfo, gfp_t gfp)
592{
593 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
594 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
595
596 nl80211_send_sta_event(rdev, dev, mac_addr, sinfo, gfp);
597}
598EXPORT_SYMBOL(cfg80211_new_sta);
Jouni Malinen026331c2010-02-15 12:53:10 +0200599
Jouni Malinenec15e682011-03-23 15:29:52 +0200600void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp)
601{
602 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
603 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
604
605 nl80211_send_sta_del_event(rdev, dev, mac_addr, gfp);
606}
607EXPORT_SYMBOL(cfg80211_del_sta);
608
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +0530609void cfg80211_conn_failed(struct net_device *dev, const u8 *mac_addr,
610 enum nl80211_connect_failed_reason reason,
611 gfp_t gfp)
612{
613 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
614 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
615
616 nl80211_send_conn_failed_event(rdev, dev, mac_addr, reason, gfp);
617}
618EXPORT_SYMBOL(cfg80211_conn_failed);
619
Johannes Berg2e161f72010-08-12 15:38:38 +0200620struct cfg80211_mgmt_registration {
Jouni Malinen026331c2010-02-15 12:53:10 +0200621 struct list_head list;
622
Eric W. Biederman15e47302012-09-07 20:12:54 +0000623 u32 nlportid;
Jouni Malinen026331c2010-02-15 12:53:10 +0200624
625 int match_len;
626
Johannes Berg2e161f72010-08-12 15:38:38 +0200627 __le16 frame_type;
628
Jouni Malinen026331c2010-02-15 12:53:10 +0200629 u8 match[];
630};
631
Eric W. Biederman15e47302012-09-07 20:12:54 +0000632int cfg80211_mlme_register_mgmt(struct wireless_dev *wdev, u32 snd_portid,
Johannes Berg2e161f72010-08-12 15:38:38 +0200633 u16 frame_type, const u8 *match_data,
634 int match_len)
Jouni Malinen026331c2010-02-15 12:53:10 +0200635{
Johannes Berg271733c2010-10-13 12:06:23 +0200636 struct wiphy *wiphy = wdev->wiphy;
637 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200638 struct cfg80211_mgmt_registration *reg, *nreg;
Jouni Malinen026331c2010-02-15 12:53:10 +0200639 int err = 0;
Johannes Berg2e161f72010-08-12 15:38:38 +0200640 u16 mgmt_type;
641
642 if (!wdev->wiphy->mgmt_stypes)
643 return -EOPNOTSUPP;
644
645 if ((frame_type & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT)
646 return -EINVAL;
647
648 if (frame_type & ~(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE))
649 return -EINVAL;
650
651 mgmt_type = (frame_type & IEEE80211_FCTL_STYPE) >> 4;
652 if (!(wdev->wiphy->mgmt_stypes[wdev->iftype].rx & BIT(mgmt_type)))
653 return -EINVAL;
Jouni Malinen026331c2010-02-15 12:53:10 +0200654
655 nreg = kzalloc(sizeof(*reg) + match_len, GFP_KERNEL);
656 if (!nreg)
657 return -ENOMEM;
658
Johannes Berg2e161f72010-08-12 15:38:38 +0200659 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200660
Johannes Berg2e161f72010-08-12 15:38:38 +0200661 list_for_each_entry(reg, &wdev->mgmt_registrations, list) {
Jouni Malinen026331c2010-02-15 12:53:10 +0200662 int mlen = min(match_len, reg->match_len);
663
Johannes Berg2e161f72010-08-12 15:38:38 +0200664 if (frame_type != le16_to_cpu(reg->frame_type))
665 continue;
666
Jouni Malinen026331c2010-02-15 12:53:10 +0200667 if (memcmp(reg->match, match_data, mlen) == 0) {
668 err = -EALREADY;
669 break;
670 }
671 }
672
673 if (err) {
674 kfree(nreg);
675 goto out;
676 }
677
678 memcpy(nreg->match, match_data, match_len);
679 nreg->match_len = match_len;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000680 nreg->nlportid = snd_portid;
Johannes Berg2e161f72010-08-12 15:38:38 +0200681 nreg->frame_type = cpu_to_le16(frame_type);
682 list_add(&nreg->list, &wdev->mgmt_registrations);
Jouni Malinen026331c2010-02-15 12:53:10 +0200683
Johannes Berg271733c2010-10-13 12:06:23 +0200684 if (rdev->ops->mgmt_frame_register)
Johannes Berg71bbc992012-06-15 15:30:18 +0200685 rdev->ops->mgmt_frame_register(wiphy, wdev, frame_type, true);
Johannes Berg271733c2010-10-13 12:06:23 +0200686
Jouni Malinen026331c2010-02-15 12:53:10 +0200687 out:
Johannes Berg2e161f72010-08-12 15:38:38 +0200688 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Johannes Berg271733c2010-10-13 12:06:23 +0200689
Jouni Malinen026331c2010-02-15 12:53:10 +0200690 return err;
691}
692
Eric W. Biederman15e47302012-09-07 20:12:54 +0000693void cfg80211_mlme_unregister_socket(struct wireless_dev *wdev, u32 nlportid)
Jouni Malinen026331c2010-02-15 12:53:10 +0200694{
Johannes Berg271733c2010-10-13 12:06:23 +0200695 struct wiphy *wiphy = wdev->wiphy;
696 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200697 struct cfg80211_mgmt_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +0200698
Johannes Berg2e161f72010-08-12 15:38:38 +0200699 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200700
Johannes Berg2e161f72010-08-12 15:38:38 +0200701 list_for_each_entry_safe(reg, tmp, &wdev->mgmt_registrations, list) {
Eric W. Biederman15e47302012-09-07 20:12:54 +0000702 if (reg->nlportid != nlportid)
Johannes Berg271733c2010-10-13 12:06:23 +0200703 continue;
704
705 if (rdev->ops->mgmt_frame_register) {
706 u16 frame_type = le16_to_cpu(reg->frame_type);
707
Johannes Berg71bbc992012-06-15 15:30:18 +0200708 rdev->ops->mgmt_frame_register(wiphy, wdev,
Johannes Berg271733c2010-10-13 12:06:23 +0200709 frame_type, false);
Jouni Malinen026331c2010-02-15 12:53:10 +0200710 }
Johannes Berg271733c2010-10-13 12:06:23 +0200711
712 list_del(&reg->list);
713 kfree(reg);
Jouni Malinen026331c2010-02-15 12:53:10 +0200714 }
715
Johannes Berg2e161f72010-08-12 15:38:38 +0200716 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Johannes Berg28946da2011-11-04 11:18:12 +0100717
Eric W. Biederman15e47302012-09-07 20:12:54 +0000718 if (nlportid == wdev->ap_unexpected_nlportid)
719 wdev->ap_unexpected_nlportid = 0;
Jouni Malinen026331c2010-02-15 12:53:10 +0200720}
721
Johannes Berg2e161f72010-08-12 15:38:38 +0200722void cfg80211_mlme_purge_registrations(struct wireless_dev *wdev)
Jouni Malinen026331c2010-02-15 12:53:10 +0200723{
Johannes Berg2e161f72010-08-12 15:38:38 +0200724 struct cfg80211_mgmt_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +0200725
Johannes Berg2e161f72010-08-12 15:38:38 +0200726 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200727
Johannes Berg2e161f72010-08-12 15:38:38 +0200728 list_for_each_entry_safe(reg, tmp, &wdev->mgmt_registrations, list) {
Jouni Malinen026331c2010-02-15 12:53:10 +0200729 list_del(&reg->list);
730 kfree(reg);
731 }
732
Johannes Berg2e161f72010-08-12 15:38:38 +0200733 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200734}
735
Johannes Berg2e161f72010-08-12 15:38:38 +0200736int cfg80211_mlme_mgmt_tx(struct cfg80211_registered_device *rdev,
Johannes Berg71bbc992012-06-15 15:30:18 +0200737 struct wireless_dev *wdev,
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100738 struct ieee80211_channel *chan, bool offchan,
Johannes Berg2e161f72010-08-12 15:38:38 +0200739 enum nl80211_channel_type channel_type,
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100740 bool channel_type_valid, unsigned int wait,
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +0530741 const u8 *buf, size_t len, bool no_cck,
Johannes Berge247bd902011-11-04 11:18:21 +0100742 bool dont_wait_for_ack, u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +0200743{
Jouni Malinen026331c2010-02-15 12:53:10 +0200744 const struct ieee80211_mgmt *mgmt;
Johannes Berg2e161f72010-08-12 15:38:38 +0200745 u16 stype;
Jouni Malinen026331c2010-02-15 12:53:10 +0200746
Johannes Berg2e161f72010-08-12 15:38:38 +0200747 if (!wdev->wiphy->mgmt_stypes)
Jouni Malinen026331c2010-02-15 12:53:10 +0200748 return -EOPNOTSUPP;
Johannes Berg2e161f72010-08-12 15:38:38 +0200749
750 if (!rdev->ops->mgmt_tx)
751 return -EOPNOTSUPP;
752
Jouni Malinen026331c2010-02-15 12:53:10 +0200753 if (len < 24 + 1)
754 return -EINVAL;
755
756 mgmt = (const struct ieee80211_mgmt *) buf;
Johannes Berg2e161f72010-08-12 15:38:38 +0200757
758 if (!ieee80211_is_mgmt(mgmt->frame_control))
Jouni Malinen026331c2010-02-15 12:53:10 +0200759 return -EINVAL;
Johannes Berg2e161f72010-08-12 15:38:38 +0200760
761 stype = le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE;
762 if (!(wdev->wiphy->mgmt_stypes[wdev->iftype].tx & BIT(stype >> 4)))
763 return -EINVAL;
764
765 if (ieee80211_is_action(mgmt->frame_control) &&
766 mgmt->u.action.category != WLAN_CATEGORY_PUBLIC) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200767 int err = 0;
768
Johannes Bergfe100ac2010-08-09 15:52:03 +0200769 wdev_lock(wdev);
770
Johannes Berg663fcaf2010-09-30 21:06:09 +0200771 switch (wdev->iftype) {
772 case NL80211_IFTYPE_ADHOC:
773 case NL80211_IFTYPE_STATION:
774 case NL80211_IFTYPE_P2P_CLIENT:
775 if (!wdev->current_bss) {
776 err = -ENOTCONN;
777 break;
778 }
Johannes Bergfe100ac2010-08-09 15:52:03 +0200779
Joe Perchesac422d32012-05-08 18:56:55 +0000780 if (!ether_addr_equal(wdev->current_bss->pub.bssid,
781 mgmt->bssid)) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200782 err = -ENOTCONN;
783 break;
784 }
785
786 /*
787 * check for IBSS DA must be done by driver as
788 * cfg80211 doesn't track the stations
789 */
790 if (wdev->iftype == NL80211_IFTYPE_ADHOC)
791 break;
792
793 /* for station, check that DA is the AP */
Joe Perchesac422d32012-05-08 18:56:55 +0000794 if (!ether_addr_equal(wdev->current_bss->pub.bssid,
795 mgmt->da)) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200796 err = -ENOTCONN;
797 break;
798 }
799 break;
800 case NL80211_IFTYPE_AP:
801 case NL80211_IFTYPE_P2P_GO:
802 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg98104fde2012-06-16 00:19:54 +0200803 if (!ether_addr_equal(mgmt->bssid, wdev_address(wdev)))
Johannes Berg663fcaf2010-09-30 21:06:09 +0200804 err = -EINVAL;
805 break;
Javier Cardona0778a6a2011-05-03 16:57:08 -0700806 case NL80211_IFTYPE_MESH_POINT:
Joe Perchesac422d32012-05-08 18:56:55 +0000807 if (!ether_addr_equal(mgmt->sa, mgmt->bssid)) {
Javier Cardona0778a6a2011-05-03 16:57:08 -0700808 err = -EINVAL;
809 break;
810 }
811 /*
812 * check for mesh DA must be done by driver as
813 * cfg80211 doesn't track the stations
814 */
815 break;
Johannes Berg98104fde2012-06-16 00:19:54 +0200816 case NL80211_IFTYPE_P2P_DEVICE:
817 /*
818 * fall through, P2P device only supports
819 * public action frames
820 */
Johannes Berg663fcaf2010-09-30 21:06:09 +0200821 default:
822 err = -EOPNOTSUPP;
823 break;
824 }
Johannes Bergfe100ac2010-08-09 15:52:03 +0200825 wdev_unlock(wdev);
Johannes Berg663fcaf2010-09-30 21:06:09 +0200826
827 if (err)
828 return err;
Jouni Malinen026331c2010-02-15 12:53:10 +0200829 }
830
Johannes Berg98104fde2012-06-16 00:19:54 +0200831 if (!ether_addr_equal(mgmt->sa, wdev_address(wdev)))
Jouni Malinen026331c2010-02-15 12:53:10 +0200832 return -EINVAL;
833
834 /* Transmit the Action frame as requested by user space */
Johannes Berg71bbc992012-06-15 15:30:18 +0200835 return rdev->ops->mgmt_tx(&rdev->wiphy, wdev, chan, offchan,
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100836 channel_type, channel_type_valid,
Johannes Berge247bd902011-11-04 11:18:21 +0100837 wait, buf, len, no_cck, dont_wait_for_ack,
838 cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +0200839}
840
Johannes Berg71bbc992012-06-15 15:30:18 +0200841bool cfg80211_rx_mgmt(struct wireless_dev *wdev, int freq, int sig_mbm,
Johannes Berg804483e2012-03-05 22:18:41 +0100842 const u8 *buf, size_t len, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +0200843{
Jouni Malinen026331c2010-02-15 12:53:10 +0200844 struct wiphy *wiphy = wdev->wiphy;
845 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200846 struct cfg80211_mgmt_registration *reg;
847 const struct ieee80211_txrx_stypes *stypes =
848 &wiphy->mgmt_stypes[wdev->iftype];
849 struct ieee80211_mgmt *mgmt = (void *)buf;
850 const u8 *data;
851 int data_len;
Jouni Malinen026331c2010-02-15 12:53:10 +0200852 bool result = false;
Johannes Berg2e161f72010-08-12 15:38:38 +0200853 __le16 ftype = mgmt->frame_control &
854 cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE);
855 u16 stype;
Jouni Malinen026331c2010-02-15 12:53:10 +0200856
Johannes Berg2e161f72010-08-12 15:38:38 +0200857 stype = (le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE) >> 4;
Jouni Malinen026331c2010-02-15 12:53:10 +0200858
Johannes Berg2e161f72010-08-12 15:38:38 +0200859 if (!(stypes->rx & BIT(stype)))
860 return false;
Jouni Malinen026331c2010-02-15 12:53:10 +0200861
Johannes Berg2e161f72010-08-12 15:38:38 +0200862 data = buf + ieee80211_hdrlen(mgmt->frame_control);
863 data_len = len - ieee80211_hdrlen(mgmt->frame_control);
Jouni Malinen026331c2010-02-15 12:53:10 +0200864
Johannes Berg2e161f72010-08-12 15:38:38 +0200865 spin_lock_bh(&wdev->mgmt_registrations_lock);
866
867 list_for_each_entry(reg, &wdev->mgmt_registrations, list) {
868 if (reg->frame_type != ftype)
Jouni Malinen026331c2010-02-15 12:53:10 +0200869 continue;
870
Johannes Berg2e161f72010-08-12 15:38:38 +0200871 if (reg->match_len > data_len)
872 continue;
873
874 if (memcmp(reg->match, data, reg->match_len))
Jouni Malinen026331c2010-02-15 12:53:10 +0200875 continue;
876
877 /* found match! */
878
879 /* Indicate the received Action frame to user space */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000880 if (nl80211_send_mgmt(rdev, wdev, reg->nlportid,
Johannes Berg804483e2012-03-05 22:18:41 +0100881 freq, sig_mbm,
Johannes Berg2e161f72010-08-12 15:38:38 +0200882 buf, len, gfp))
Jouni Malinen026331c2010-02-15 12:53:10 +0200883 continue;
884
885 result = true;
886 break;
887 }
888
Johannes Berg2e161f72010-08-12 15:38:38 +0200889 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200890
891 return result;
892}
Johannes Berg2e161f72010-08-12 15:38:38 +0200893EXPORT_SYMBOL(cfg80211_rx_mgmt);
Jouni Malinen026331c2010-02-15 12:53:10 +0200894
Johannes Berg71bbc992012-06-15 15:30:18 +0200895void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie,
Johannes Berg2e161f72010-08-12 15:38:38 +0200896 const u8 *buf, size_t len, bool ack, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +0200897{
Jouni Malinen026331c2010-02-15 12:53:10 +0200898 struct wiphy *wiphy = wdev->wiphy;
899 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
900
901 /* Indicate TX status of the Action frame to user space */
Johannes Berg71bbc992012-06-15 15:30:18 +0200902 nl80211_send_mgmt_tx_status(rdev, wdev, cookie, buf, len, ack, gfp);
Jouni Malinen026331c2010-02-15 12:53:10 +0200903}
Johannes Berg2e161f72010-08-12 15:38:38 +0200904EXPORT_SYMBOL(cfg80211_mgmt_tx_status);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +0200905
906void cfg80211_cqm_rssi_notify(struct net_device *dev,
907 enum nl80211_cqm_rssi_threshold_event rssi_event,
908 gfp_t gfp)
909{
910 struct wireless_dev *wdev = dev->ieee80211_ptr;
911 struct wiphy *wiphy = wdev->wiphy;
912 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
913
914 /* Indicate roaming trigger event to user space */
915 nl80211_send_cqm_rssi_notify(rdev, dev, rssi_event, gfp);
916}
917EXPORT_SYMBOL(cfg80211_cqm_rssi_notify);
Johannes Bergc063dbf2010-11-24 08:10:05 +0100918
919void cfg80211_cqm_pktloss_notify(struct net_device *dev,
920 const u8 *peer, u32 num_packets, gfp_t gfp)
921{
922 struct wireless_dev *wdev = dev->ieee80211_ptr;
923 struct wiphy *wiphy = wdev->wiphy;
924 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
925
926 /* Indicate roaming trigger event to user space */
927 nl80211_send_cqm_pktloss_notify(rdev, dev, peer, num_packets, gfp);
928}
929EXPORT_SYMBOL(cfg80211_cqm_pktloss_notify);
Johannes Berge5497d72011-07-05 16:35:40 +0200930
Thomas Pedersen84f10702012-07-12 16:17:33 -0700931void cfg80211_cqm_txe_notify(struct net_device *dev,
932 const u8 *peer, u32 num_packets,
933 u32 rate, u32 intvl, gfp_t gfp)
934{
935 struct wireless_dev *wdev = dev->ieee80211_ptr;
936 struct wiphy *wiphy = wdev->wiphy;
937 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
938
939 nl80211_send_cqm_txe_notify(rdev, dev, peer, num_packets,
940 rate, intvl, gfp);
941}
942EXPORT_SYMBOL(cfg80211_cqm_txe_notify);
943
Johannes Berge5497d72011-07-05 16:35:40 +0200944void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
945 const u8 *replay_ctr, gfp_t gfp)
946{
947 struct wireless_dev *wdev = dev->ieee80211_ptr;
948 struct wiphy *wiphy = wdev->wiphy;
949 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
950
951 nl80211_gtk_rekey_notify(rdev, dev, bssid, replay_ctr, gfp);
952}
953EXPORT_SYMBOL(cfg80211_gtk_rekey_notify);
Jouni Malinenc9df56b2011-09-16 18:56:23 +0300954
955void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
956 const u8 *bssid, bool preauth, gfp_t gfp)
957{
958 struct wireless_dev *wdev = dev->ieee80211_ptr;
959 struct wiphy *wiphy = wdev->wiphy;
960 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
961
962 nl80211_pmksa_candidate_notify(rdev, dev, index, bssid, preauth, gfp);
963}
964EXPORT_SYMBOL(cfg80211_pmksa_candidate_notify);
Johannes Berg28946da2011-11-04 11:18:12 +0100965
Thomas Pedersen53145262012-04-06 13:35:47 -0700966void cfg80211_ch_switch_notify(struct net_device *dev, int freq,
967 enum nl80211_channel_type type)
968{
969 struct wireless_dev *wdev = dev->ieee80211_ptr;
970 struct wiphy *wiphy = wdev->wiphy;
971 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
972 struct ieee80211_channel *chan;
973
974 wdev_lock(wdev);
975
976 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
977 wdev->iftype != NL80211_IFTYPE_P2P_GO))
978 goto out;
979
980 chan = rdev_freq_to_chan(rdev, freq, type);
981 if (WARN_ON(!chan))
982 goto out;
983
Michal Kaziorf4489eb2012-06-29 12:46:58 +0200984 wdev->channel = chan;
Thomas Pedersen53145262012-04-06 13:35:47 -0700985 nl80211_ch_switch_notify(rdev, dev, freq, type, GFP_KERNEL);
986out:
987 wdev_unlock(wdev);
988 return;
989}
990EXPORT_SYMBOL(cfg80211_ch_switch_notify);
991
Johannes Berg28946da2011-11-04 11:18:12 +0100992bool cfg80211_rx_spurious_frame(struct net_device *dev,
993 const u8 *addr, gfp_t gfp)
994{
995 struct wireless_dev *wdev = dev->ieee80211_ptr;
996
997 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
998 wdev->iftype != NL80211_IFTYPE_P2P_GO))
999 return false;
1000
1001 return nl80211_unexpected_frame(dev, addr, gfp);
1002}
1003EXPORT_SYMBOL(cfg80211_rx_spurious_frame);
Johannes Bergb92ab5d2011-11-04 11:18:19 +01001004
1005bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
1006 const u8 *addr, gfp_t gfp)
1007{
1008 struct wireless_dev *wdev = dev->ieee80211_ptr;
1009
1010 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
1011 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
1012 wdev->iftype != NL80211_IFTYPE_AP_VLAN))
1013 return false;
1014
1015 return nl80211_unexpected_4addr_frame(dev, addr, gfp);
1016}
1017EXPORT_SYMBOL(cfg80211_rx_unexpected_4addr_frame);