blob: ec7fcee5bad65b2ed8a24de5a2d97d850926d882 [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,
460 };
Johannes Berg19957bb2009-07-02 17:20:43 +0200461
Johannes Berg667503dd2009-07-07 03:56:11 +0200462 ASSERT_WDEV_LOCK(wdev);
463
Johannes Berg95de8172012-01-20 13:55:25 +0100464 if (local_state_change) {
465 if (wdev->current_bss &&
Joe Perchesac422d32012-05-08 18:56:55 +0000466 ether_addr_equal(wdev->current_bss->pub.bssid, bssid)) {
Johannes Berg95de8172012-01-20 13:55:25 +0100467 cfg80211_unhold_bss(wdev->current_bss);
468 cfg80211_put_bss(&wdev->current_bss->pub);
469 wdev->current_bss = NULL;
Johannes Berg19957bb2009-07-02 17:20:43 +0200470 }
Johannes Berg19957bb2009-07-02 17:20:43 +0200471
Johannes Berg95de8172012-01-20 13:55:25 +0100472 return 0;
473 }
Johannes Berg19957bb2009-07-02 17:20:43 +0200474
Johannes Berg63c9c5e2012-02-24 13:50:51 +0100475 return rdev->ops->deauth(&rdev->wiphy, dev, &req);
Johannes Berg19957bb2009-07-02 17:20:43 +0200476}
477
Johannes Berg667503dd2009-07-07 03:56:11 +0200478int cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
479 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300480 const u8 *ie, int ie_len, u16 reason,
481 bool local_state_change)
Johannes Berg667503dd2009-07-07 03:56:11 +0200482{
483 struct wireless_dev *wdev = dev->ieee80211_ptr;
484 int err;
485
486 wdev_lock(wdev);
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300487 err = __cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason,
488 local_state_change);
Johannes Berg667503dd2009-07-07 03:56:11 +0200489 wdev_unlock(wdev);
490
491 return err;
492}
493
494static int __cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
495 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300496 const u8 *ie, int ie_len, u16 reason,
497 bool local_state_change)
Johannes Berg19957bb2009-07-02 17:20:43 +0200498{
499 struct wireless_dev *wdev = dev->ieee80211_ptr;
500 struct cfg80211_disassoc_request req;
501
Johannes Berg667503dd2009-07-07 03:56:11 +0200502 ASSERT_WDEV_LOCK(wdev);
503
Johannes Bergf9d6b402009-07-27 10:22:28 +0200504 if (wdev->sme_state != CFG80211_SME_CONNECTED)
505 return -ENOTCONN;
506
507 if (WARN_ON(!wdev->current_bss))
508 return -ENOTCONN;
509
Johannes Berg19957bb2009-07-02 17:20:43 +0200510 memset(&req, 0, sizeof(req));
511 req.reason_code = reason;
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300512 req.local_state_change = local_state_change;
Johannes Berg19957bb2009-07-02 17:20:43 +0200513 req.ie = ie;
514 req.ie_len = ie_len;
Joe Perchesac422d32012-05-08 18:56:55 +0000515 if (ether_addr_equal(wdev->current_bss->pub.bssid, bssid))
Johannes Berg19957bb2009-07-02 17:20:43 +0200516 req.bss = &wdev->current_bss->pub;
517 else
518 return -ENOTCONN;
519
Johannes Berg63c9c5e2012-02-24 13:50:51 +0100520 return rdev->ops->disassoc(&rdev->wiphy, dev, &req);
Johannes Berg667503dd2009-07-07 03:56:11 +0200521}
522
523int cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
524 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300525 const u8 *ie, int ie_len, u16 reason,
526 bool local_state_change)
Johannes Berg667503dd2009-07-07 03:56:11 +0200527{
528 struct wireless_dev *wdev = dev->ieee80211_ptr;
529 int err;
530
531 wdev_lock(wdev);
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300532 err = __cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason,
533 local_state_change);
Johannes Berg667503dd2009-07-07 03:56:11 +0200534 wdev_unlock(wdev);
535
536 return err;
Johannes Berg19957bb2009-07-02 17:20:43 +0200537}
538
539void cfg80211_mlme_down(struct cfg80211_registered_device *rdev,
540 struct net_device *dev)
541{
542 struct wireless_dev *wdev = dev->ieee80211_ptr;
543 struct cfg80211_deauth_request req;
Johannes Berg95de8172012-01-20 13:55:25 +0100544 u8 bssid[ETH_ALEN];
Johannes Berg19957bb2009-07-02 17:20:43 +0200545
Johannes Berg667503dd2009-07-07 03:56:11 +0200546 ASSERT_WDEV_LOCK(wdev);
547
Johannes Berg19957bb2009-07-02 17:20:43 +0200548 if (!rdev->ops->deauth)
549 return;
550
551 memset(&req, 0, sizeof(req));
552 req.reason_code = WLAN_REASON_DEAUTH_LEAVING;
553 req.ie = NULL;
554 req.ie_len = 0;
555
Johannes Berg95de8172012-01-20 13:55:25 +0100556 if (!wdev->current_bss)
557 return;
Johannes Berg19957bb2009-07-02 17:20:43 +0200558
Johannes Berg95de8172012-01-20 13:55:25 +0100559 memcpy(bssid, wdev->current_bss->pub.bssid, ETH_ALEN);
560 req.bssid = bssid;
Johannes Berg63c9c5e2012-02-24 13:50:51 +0100561 rdev->ops->deauth(&rdev->wiphy, dev, &req);
Johannes Berg95de8172012-01-20 13:55:25 +0100562
563 if (wdev->current_bss) {
564 cfg80211_unhold_bss(wdev->current_bss);
565 cfg80211_put_bss(&wdev->current_bss->pub);
566 wdev->current_bss = NULL;
Johannes Berg19957bb2009-07-02 17:20:43 +0200567 }
568}
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100569
Johannes Berg71bbc992012-06-15 15:30:18 +0200570void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie,
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100571 struct ieee80211_channel *chan,
572 enum nl80211_channel_type channel_type,
573 unsigned int duration, gfp_t gfp)
574{
Johannes Berg71bbc992012-06-15 15:30:18 +0200575 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100576 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
577
Johannes Berg71bbc992012-06-15 15:30:18 +0200578 nl80211_send_remain_on_channel(rdev, wdev, cookie, chan, channel_type,
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100579 duration, gfp);
580}
581EXPORT_SYMBOL(cfg80211_ready_on_channel);
582
Johannes Berg71bbc992012-06-15 15:30:18 +0200583void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie,
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100584 struct ieee80211_channel *chan,
585 enum nl80211_channel_type channel_type,
586 gfp_t gfp)
587{
Johannes Berg71bbc992012-06-15 15:30:18 +0200588 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100589 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
590
Johannes Berg71bbc992012-06-15 15:30:18 +0200591 nl80211_send_remain_on_channel_cancel(rdev, wdev, cookie, chan,
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100592 channel_type, gfp);
593}
594EXPORT_SYMBOL(cfg80211_remain_on_channel_expired);
Johannes Berg98b62182009-12-23 13:15:44 +0100595
596void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
597 struct station_info *sinfo, gfp_t gfp)
598{
599 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
600 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
601
602 nl80211_send_sta_event(rdev, dev, mac_addr, sinfo, gfp);
603}
604EXPORT_SYMBOL(cfg80211_new_sta);
Jouni Malinen026331c2010-02-15 12:53:10 +0200605
Jouni Malinenec15e682011-03-23 15:29:52 +0200606void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp)
607{
608 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
609 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
610
611 nl80211_send_sta_del_event(rdev, dev, mac_addr, gfp);
612}
613EXPORT_SYMBOL(cfg80211_del_sta);
614
Johannes Berg2e161f72010-08-12 15:38:38 +0200615struct cfg80211_mgmt_registration {
Jouni Malinen026331c2010-02-15 12:53:10 +0200616 struct list_head list;
617
Eric W. Biederman15e47302012-09-07 20:12:54 +0000618 u32 nlportid;
Jouni Malinen026331c2010-02-15 12:53:10 +0200619
620 int match_len;
621
Johannes Berg2e161f72010-08-12 15:38:38 +0200622 __le16 frame_type;
623
Jouni Malinen026331c2010-02-15 12:53:10 +0200624 u8 match[];
625};
626
Eric W. Biederman15e47302012-09-07 20:12:54 +0000627int cfg80211_mlme_register_mgmt(struct wireless_dev *wdev, u32 snd_portid,
Johannes Berg2e161f72010-08-12 15:38:38 +0200628 u16 frame_type, const u8 *match_data,
629 int match_len)
Jouni Malinen026331c2010-02-15 12:53:10 +0200630{
Johannes Berg271733c2010-10-13 12:06:23 +0200631 struct wiphy *wiphy = wdev->wiphy;
632 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200633 struct cfg80211_mgmt_registration *reg, *nreg;
Jouni Malinen026331c2010-02-15 12:53:10 +0200634 int err = 0;
Johannes Berg2e161f72010-08-12 15:38:38 +0200635 u16 mgmt_type;
636
637 if (!wdev->wiphy->mgmt_stypes)
638 return -EOPNOTSUPP;
639
640 if ((frame_type & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT)
641 return -EINVAL;
642
643 if (frame_type & ~(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE))
644 return -EINVAL;
645
646 mgmt_type = (frame_type & IEEE80211_FCTL_STYPE) >> 4;
647 if (!(wdev->wiphy->mgmt_stypes[wdev->iftype].rx & BIT(mgmt_type)))
648 return -EINVAL;
Jouni Malinen026331c2010-02-15 12:53:10 +0200649
650 nreg = kzalloc(sizeof(*reg) + match_len, GFP_KERNEL);
651 if (!nreg)
652 return -ENOMEM;
653
Johannes Berg2e161f72010-08-12 15:38:38 +0200654 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200655
Johannes Berg2e161f72010-08-12 15:38:38 +0200656 list_for_each_entry(reg, &wdev->mgmt_registrations, list) {
Jouni Malinen026331c2010-02-15 12:53:10 +0200657 int mlen = min(match_len, reg->match_len);
658
Johannes Berg2e161f72010-08-12 15:38:38 +0200659 if (frame_type != le16_to_cpu(reg->frame_type))
660 continue;
661
Jouni Malinen026331c2010-02-15 12:53:10 +0200662 if (memcmp(reg->match, match_data, mlen) == 0) {
663 err = -EALREADY;
664 break;
665 }
666 }
667
668 if (err) {
669 kfree(nreg);
670 goto out;
671 }
672
673 memcpy(nreg->match, match_data, match_len);
674 nreg->match_len = match_len;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000675 nreg->nlportid = snd_portid;
Johannes Berg2e161f72010-08-12 15:38:38 +0200676 nreg->frame_type = cpu_to_le16(frame_type);
677 list_add(&nreg->list, &wdev->mgmt_registrations);
Jouni Malinen026331c2010-02-15 12:53:10 +0200678
Johannes Berg271733c2010-10-13 12:06:23 +0200679 if (rdev->ops->mgmt_frame_register)
Johannes Berg71bbc992012-06-15 15:30:18 +0200680 rdev->ops->mgmt_frame_register(wiphy, wdev, frame_type, true);
Johannes Berg271733c2010-10-13 12:06:23 +0200681
Jouni Malinen026331c2010-02-15 12:53:10 +0200682 out:
Johannes Berg2e161f72010-08-12 15:38:38 +0200683 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Johannes Berg271733c2010-10-13 12:06:23 +0200684
Jouni Malinen026331c2010-02-15 12:53:10 +0200685 return err;
686}
687
Eric W. Biederman15e47302012-09-07 20:12:54 +0000688void cfg80211_mlme_unregister_socket(struct wireless_dev *wdev, u32 nlportid)
Jouni Malinen026331c2010-02-15 12:53:10 +0200689{
Johannes Berg271733c2010-10-13 12:06:23 +0200690 struct wiphy *wiphy = wdev->wiphy;
691 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200692 struct cfg80211_mgmt_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +0200693
Johannes Berg2e161f72010-08-12 15:38:38 +0200694 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200695
Johannes Berg2e161f72010-08-12 15:38:38 +0200696 list_for_each_entry_safe(reg, tmp, &wdev->mgmt_registrations, list) {
Eric W. Biederman15e47302012-09-07 20:12:54 +0000697 if (reg->nlportid != nlportid)
Johannes Berg271733c2010-10-13 12:06:23 +0200698 continue;
699
700 if (rdev->ops->mgmt_frame_register) {
701 u16 frame_type = le16_to_cpu(reg->frame_type);
702
Johannes Berg71bbc992012-06-15 15:30:18 +0200703 rdev->ops->mgmt_frame_register(wiphy, wdev,
Johannes Berg271733c2010-10-13 12:06:23 +0200704 frame_type, false);
Jouni Malinen026331c2010-02-15 12:53:10 +0200705 }
Johannes Berg271733c2010-10-13 12:06:23 +0200706
707 list_del(&reg->list);
708 kfree(reg);
Jouni Malinen026331c2010-02-15 12:53:10 +0200709 }
710
Johannes Berg2e161f72010-08-12 15:38:38 +0200711 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Johannes Berg28946da2011-11-04 11:18:12 +0100712
Eric W. Biederman15e47302012-09-07 20:12:54 +0000713 if (nlportid == wdev->ap_unexpected_nlportid)
714 wdev->ap_unexpected_nlportid = 0;
Jouni Malinen026331c2010-02-15 12:53:10 +0200715}
716
Johannes Berg2e161f72010-08-12 15:38:38 +0200717void cfg80211_mlme_purge_registrations(struct wireless_dev *wdev)
Jouni Malinen026331c2010-02-15 12:53:10 +0200718{
Johannes Berg2e161f72010-08-12 15:38:38 +0200719 struct cfg80211_mgmt_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +0200720
Johannes Berg2e161f72010-08-12 15:38:38 +0200721 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200722
Johannes Berg2e161f72010-08-12 15:38:38 +0200723 list_for_each_entry_safe(reg, tmp, &wdev->mgmt_registrations, list) {
Jouni Malinen026331c2010-02-15 12:53:10 +0200724 list_del(&reg->list);
725 kfree(reg);
726 }
727
Johannes Berg2e161f72010-08-12 15:38:38 +0200728 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200729}
730
Johannes Berg2e161f72010-08-12 15:38:38 +0200731int cfg80211_mlme_mgmt_tx(struct cfg80211_registered_device *rdev,
Johannes Berg71bbc992012-06-15 15:30:18 +0200732 struct wireless_dev *wdev,
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100733 struct ieee80211_channel *chan, bool offchan,
Johannes Berg2e161f72010-08-12 15:38:38 +0200734 enum nl80211_channel_type channel_type,
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100735 bool channel_type_valid, unsigned int wait,
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +0530736 const u8 *buf, size_t len, bool no_cck,
Johannes Berge247bd902011-11-04 11:18:21 +0100737 bool dont_wait_for_ack, u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +0200738{
Jouni Malinen026331c2010-02-15 12:53:10 +0200739 const struct ieee80211_mgmt *mgmt;
Johannes Berg2e161f72010-08-12 15:38:38 +0200740 u16 stype;
Jouni Malinen026331c2010-02-15 12:53:10 +0200741
Johannes Berg2e161f72010-08-12 15:38:38 +0200742 if (!wdev->wiphy->mgmt_stypes)
Jouni Malinen026331c2010-02-15 12:53:10 +0200743 return -EOPNOTSUPP;
Johannes Berg2e161f72010-08-12 15:38:38 +0200744
745 if (!rdev->ops->mgmt_tx)
746 return -EOPNOTSUPP;
747
Jouni Malinen026331c2010-02-15 12:53:10 +0200748 if (len < 24 + 1)
749 return -EINVAL;
750
751 mgmt = (const struct ieee80211_mgmt *) buf;
Johannes Berg2e161f72010-08-12 15:38:38 +0200752
753 if (!ieee80211_is_mgmt(mgmt->frame_control))
Jouni Malinen026331c2010-02-15 12:53:10 +0200754 return -EINVAL;
Johannes Berg2e161f72010-08-12 15:38:38 +0200755
756 stype = le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE;
757 if (!(wdev->wiphy->mgmt_stypes[wdev->iftype].tx & BIT(stype >> 4)))
758 return -EINVAL;
759
760 if (ieee80211_is_action(mgmt->frame_control) &&
761 mgmt->u.action.category != WLAN_CATEGORY_PUBLIC) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200762 int err = 0;
763
Johannes Bergfe100ac2010-08-09 15:52:03 +0200764 wdev_lock(wdev);
765
Johannes Berg663fcaf2010-09-30 21:06:09 +0200766 switch (wdev->iftype) {
767 case NL80211_IFTYPE_ADHOC:
768 case NL80211_IFTYPE_STATION:
769 case NL80211_IFTYPE_P2P_CLIENT:
770 if (!wdev->current_bss) {
771 err = -ENOTCONN;
772 break;
773 }
Johannes Bergfe100ac2010-08-09 15:52:03 +0200774
Joe Perchesac422d32012-05-08 18:56:55 +0000775 if (!ether_addr_equal(wdev->current_bss->pub.bssid,
776 mgmt->bssid)) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200777 err = -ENOTCONN;
778 break;
779 }
780
781 /*
782 * check for IBSS DA must be done by driver as
783 * cfg80211 doesn't track the stations
784 */
785 if (wdev->iftype == NL80211_IFTYPE_ADHOC)
786 break;
787
788 /* for station, check that DA is the AP */
Joe Perchesac422d32012-05-08 18:56:55 +0000789 if (!ether_addr_equal(wdev->current_bss->pub.bssid,
790 mgmt->da)) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200791 err = -ENOTCONN;
792 break;
793 }
794 break;
795 case NL80211_IFTYPE_AP:
796 case NL80211_IFTYPE_P2P_GO:
797 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg98104fde2012-06-16 00:19:54 +0200798 if (!ether_addr_equal(mgmt->bssid, wdev_address(wdev)))
Johannes Berg663fcaf2010-09-30 21:06:09 +0200799 err = -EINVAL;
800 break;
Javier Cardona0778a6a2011-05-03 16:57:08 -0700801 case NL80211_IFTYPE_MESH_POINT:
Joe Perchesac422d32012-05-08 18:56:55 +0000802 if (!ether_addr_equal(mgmt->sa, mgmt->bssid)) {
Javier Cardona0778a6a2011-05-03 16:57:08 -0700803 err = -EINVAL;
804 break;
805 }
806 /*
807 * check for mesh DA must be done by driver as
808 * cfg80211 doesn't track the stations
809 */
810 break;
Johannes Berg98104fde2012-06-16 00:19:54 +0200811 case NL80211_IFTYPE_P2P_DEVICE:
812 /*
813 * fall through, P2P device only supports
814 * public action frames
815 */
Johannes Berg663fcaf2010-09-30 21:06:09 +0200816 default:
817 err = -EOPNOTSUPP;
818 break;
819 }
Johannes Bergfe100ac2010-08-09 15:52:03 +0200820 wdev_unlock(wdev);
Johannes Berg663fcaf2010-09-30 21:06:09 +0200821
822 if (err)
823 return err;
Jouni Malinen026331c2010-02-15 12:53:10 +0200824 }
825
Johannes Berg98104fde2012-06-16 00:19:54 +0200826 if (!ether_addr_equal(mgmt->sa, wdev_address(wdev)))
Jouni Malinen026331c2010-02-15 12:53:10 +0200827 return -EINVAL;
828
829 /* Transmit the Action frame as requested by user space */
Johannes Berg71bbc992012-06-15 15:30:18 +0200830 return rdev->ops->mgmt_tx(&rdev->wiphy, wdev, chan, offchan,
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100831 channel_type, channel_type_valid,
Johannes Berge247bd902011-11-04 11:18:21 +0100832 wait, buf, len, no_cck, dont_wait_for_ack,
833 cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +0200834}
835
Johannes Berg71bbc992012-06-15 15:30:18 +0200836bool cfg80211_rx_mgmt(struct wireless_dev *wdev, int freq, int sig_mbm,
Johannes Berg804483e2012-03-05 22:18:41 +0100837 const u8 *buf, size_t len, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +0200838{
Jouni Malinen026331c2010-02-15 12:53:10 +0200839 struct wiphy *wiphy = wdev->wiphy;
840 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200841 struct cfg80211_mgmt_registration *reg;
842 const struct ieee80211_txrx_stypes *stypes =
843 &wiphy->mgmt_stypes[wdev->iftype];
844 struct ieee80211_mgmt *mgmt = (void *)buf;
845 const u8 *data;
846 int data_len;
Jouni Malinen026331c2010-02-15 12:53:10 +0200847 bool result = false;
Johannes Berg2e161f72010-08-12 15:38:38 +0200848 __le16 ftype = mgmt->frame_control &
849 cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE);
850 u16 stype;
Jouni Malinen026331c2010-02-15 12:53:10 +0200851
Johannes Berg2e161f72010-08-12 15:38:38 +0200852 stype = (le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE) >> 4;
Jouni Malinen026331c2010-02-15 12:53:10 +0200853
Johannes Berg2e161f72010-08-12 15:38:38 +0200854 if (!(stypes->rx & BIT(stype)))
855 return false;
Jouni Malinen026331c2010-02-15 12:53:10 +0200856
Johannes Berg2e161f72010-08-12 15:38:38 +0200857 data = buf + ieee80211_hdrlen(mgmt->frame_control);
858 data_len = len - ieee80211_hdrlen(mgmt->frame_control);
Jouni Malinen026331c2010-02-15 12:53:10 +0200859
Johannes Berg2e161f72010-08-12 15:38:38 +0200860 spin_lock_bh(&wdev->mgmt_registrations_lock);
861
862 list_for_each_entry(reg, &wdev->mgmt_registrations, list) {
863 if (reg->frame_type != ftype)
Jouni Malinen026331c2010-02-15 12:53:10 +0200864 continue;
865
Johannes Berg2e161f72010-08-12 15:38:38 +0200866 if (reg->match_len > data_len)
867 continue;
868
869 if (memcmp(reg->match, data, reg->match_len))
Jouni Malinen026331c2010-02-15 12:53:10 +0200870 continue;
871
872 /* found match! */
873
874 /* Indicate the received Action frame to user space */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000875 if (nl80211_send_mgmt(rdev, wdev, reg->nlportid,
Johannes Berg804483e2012-03-05 22:18:41 +0100876 freq, sig_mbm,
Johannes Berg2e161f72010-08-12 15:38:38 +0200877 buf, len, gfp))
Jouni Malinen026331c2010-02-15 12:53:10 +0200878 continue;
879
880 result = true;
881 break;
882 }
883
Johannes Berg2e161f72010-08-12 15:38:38 +0200884 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200885
886 return result;
887}
Johannes Berg2e161f72010-08-12 15:38:38 +0200888EXPORT_SYMBOL(cfg80211_rx_mgmt);
Jouni Malinen026331c2010-02-15 12:53:10 +0200889
Johannes Berg71bbc992012-06-15 15:30:18 +0200890void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie,
Johannes Berg2e161f72010-08-12 15:38:38 +0200891 const u8 *buf, size_t len, bool ack, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +0200892{
Jouni Malinen026331c2010-02-15 12:53:10 +0200893 struct wiphy *wiphy = wdev->wiphy;
894 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
895
896 /* Indicate TX status of the Action frame to user space */
Johannes Berg71bbc992012-06-15 15:30:18 +0200897 nl80211_send_mgmt_tx_status(rdev, wdev, cookie, buf, len, ack, gfp);
Jouni Malinen026331c2010-02-15 12:53:10 +0200898}
Johannes Berg2e161f72010-08-12 15:38:38 +0200899EXPORT_SYMBOL(cfg80211_mgmt_tx_status);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +0200900
901void cfg80211_cqm_rssi_notify(struct net_device *dev,
902 enum nl80211_cqm_rssi_threshold_event rssi_event,
903 gfp_t gfp)
904{
905 struct wireless_dev *wdev = dev->ieee80211_ptr;
906 struct wiphy *wiphy = wdev->wiphy;
907 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
908
909 /* Indicate roaming trigger event to user space */
910 nl80211_send_cqm_rssi_notify(rdev, dev, rssi_event, gfp);
911}
912EXPORT_SYMBOL(cfg80211_cqm_rssi_notify);
Johannes Bergc063dbf2010-11-24 08:10:05 +0100913
914void cfg80211_cqm_pktloss_notify(struct net_device *dev,
915 const u8 *peer, u32 num_packets, gfp_t gfp)
916{
917 struct wireless_dev *wdev = dev->ieee80211_ptr;
918 struct wiphy *wiphy = wdev->wiphy;
919 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
920
921 /* Indicate roaming trigger event to user space */
922 nl80211_send_cqm_pktloss_notify(rdev, dev, peer, num_packets, gfp);
923}
924EXPORT_SYMBOL(cfg80211_cqm_pktloss_notify);
Johannes Berge5497d72011-07-05 16:35:40 +0200925
Thomas Pedersen84f10702012-07-12 16:17:33 -0700926void cfg80211_cqm_txe_notify(struct net_device *dev,
927 const u8 *peer, u32 num_packets,
928 u32 rate, u32 intvl, gfp_t gfp)
929{
930 struct wireless_dev *wdev = dev->ieee80211_ptr;
931 struct wiphy *wiphy = wdev->wiphy;
932 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
933
934 nl80211_send_cqm_txe_notify(rdev, dev, peer, num_packets,
935 rate, intvl, gfp);
936}
937EXPORT_SYMBOL(cfg80211_cqm_txe_notify);
938
Johannes Berge5497d72011-07-05 16:35:40 +0200939void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
940 const u8 *replay_ctr, gfp_t gfp)
941{
942 struct wireless_dev *wdev = dev->ieee80211_ptr;
943 struct wiphy *wiphy = wdev->wiphy;
944 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
945
946 nl80211_gtk_rekey_notify(rdev, dev, bssid, replay_ctr, gfp);
947}
948EXPORT_SYMBOL(cfg80211_gtk_rekey_notify);
Jouni Malinenc9df56b2011-09-16 18:56:23 +0300949
950void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
951 const u8 *bssid, bool preauth, gfp_t gfp)
952{
953 struct wireless_dev *wdev = dev->ieee80211_ptr;
954 struct wiphy *wiphy = wdev->wiphy;
955 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
956
957 nl80211_pmksa_candidate_notify(rdev, dev, index, bssid, preauth, gfp);
958}
959EXPORT_SYMBOL(cfg80211_pmksa_candidate_notify);
Johannes Berg28946da2011-11-04 11:18:12 +0100960
Thomas Pedersen53145262012-04-06 13:35:47 -0700961void cfg80211_ch_switch_notify(struct net_device *dev, int freq,
962 enum nl80211_channel_type type)
963{
964 struct wireless_dev *wdev = dev->ieee80211_ptr;
965 struct wiphy *wiphy = wdev->wiphy;
966 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
967 struct ieee80211_channel *chan;
968
969 wdev_lock(wdev);
970
971 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
972 wdev->iftype != NL80211_IFTYPE_P2P_GO))
973 goto out;
974
975 chan = rdev_freq_to_chan(rdev, freq, type);
976 if (WARN_ON(!chan))
977 goto out;
978
Michal Kaziorf4489eb2012-06-29 12:46:58 +0200979 wdev->channel = chan;
Thomas Pedersen53145262012-04-06 13:35:47 -0700980 nl80211_ch_switch_notify(rdev, dev, freq, type, GFP_KERNEL);
981out:
982 wdev_unlock(wdev);
983 return;
984}
985EXPORT_SYMBOL(cfg80211_ch_switch_notify);
986
Johannes Berg28946da2011-11-04 11:18:12 +0100987bool cfg80211_rx_spurious_frame(struct net_device *dev,
988 const u8 *addr, gfp_t gfp)
989{
990 struct wireless_dev *wdev = dev->ieee80211_ptr;
991
992 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
993 wdev->iftype != NL80211_IFTYPE_P2P_GO))
994 return false;
995
996 return nl80211_unexpected_frame(dev, addr, gfp);
997}
998EXPORT_SYMBOL(cfg80211_rx_spurious_frame);
Johannes Bergb92ab5d2011-11-04 11:18:19 +0100999
1000bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
1001 const u8 *addr, gfp_t gfp)
1002{
1003 struct wireless_dev *wdev = dev->ieee80211_ptr;
1004
1005 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
1006 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
1007 wdev->iftype != NL80211_IFTYPE_AP_VLAN))
1008 return false;
1009
1010 return nl80211_unexpected_4addr_frame(dev, addr, gfp);
1011}
1012EXPORT_SYMBOL(cfg80211_rx_unexpected_4addr_frame);