blob: 46aeafce08d0275991703e0047fd1d907e8f8a42 [file] [log] [blame]
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001/*
2 * cfg80211 MLME SAP interface
3 *
4 * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
5 */
6
7#include <linux/kernel.h>
8#include <linux/module.h>
Felix Fietkauc6fb08a2012-03-18 22:58:04 +01009#include <linux/etherdevice.h>
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010#include <linux/netdevice.h>
11#include <linux/nl80211.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Johannes Berga9a11622009-07-27 12:01:53 +020013#include <linux/wireless.h>
Jouni Malinen6039f6d2009-03-19 13:39:21 +020014#include <net/cfg80211.h>
Johannes Berga9a11622009-07-27 12:01:53 +020015#include <net/iw_handler.h>
Jouni Malinen6039f6d2009-03-19 13:39:21 +020016#include "core.h"
17#include "nl80211.h"
Hila Gonene35e4d22012-06-27 17:19:42 +030018#include "rdev-ops.h"
19
Jouni Malinen6039f6d2009-03-19 13:39:21 +020020
Johannes Bergcb0b4be2009-07-07 03:56:07 +020021void cfg80211_send_rx_auth(struct net_device *dev, const u8 *buf, size_t len)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020022{
Johannes Berg19957bb2009-07-02 17:20:43 +020023 struct wireless_dev *wdev = dev->ieee80211_ptr;
24 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen6039f6d2009-03-19 13:39:21 +020025 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg19957bb2009-07-02 17:20:43 +020026
Beni Lev4ee3e062012-08-27 12:49:39 +030027 trace_cfg80211_send_rx_auth(dev);
Johannes Berg667503dd2009-07-07 03:56:11 +020028 wdev_lock(wdev);
Johannes Bergcb0b4be2009-07-07 03:56:07 +020029
Johannes Berg95de8172012-01-20 13:55:25 +010030 nl80211_send_rx_auth(rdev, dev, buf, len, GFP_KERNEL);
31 cfg80211_sme_rx_auth(dev, buf, len);
Johannes Berg667503dd2009-07-07 03:56:11 +020032
33 wdev_unlock(wdev);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020034}
35EXPORT_SYMBOL(cfg80211_send_rx_auth);
36
Johannes Berg95de8172012-01-20 13:55:25 +010037void cfg80211_send_rx_assoc(struct net_device *dev, struct cfg80211_bss *bss,
38 const u8 *buf, size_t len)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020039{
Johannes Berg6829c872009-07-02 09:13:27 +020040 u16 status_code;
41 struct wireless_dev *wdev = dev->ieee80211_ptr;
42 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen6039f6d2009-03-19 13:39:21 +020043 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6829c872009-07-02 09:13:27 +020044 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)buf;
45 u8 *ie = mgmt->u.assoc_resp.variable;
Johannes Berg95de8172012-01-20 13:55:25 +010046 int ieoffs = offsetof(struct ieee80211_mgmt, u.assoc_resp.variable);
Johannes Berg6829c872009-07-02 09:13:27 +020047
Beni Lev4ee3e062012-08-27 12:49:39 +030048 trace_cfg80211_send_rx_assoc(dev, bss);
Johannes Berg667503dd2009-07-07 03:56:11 +020049 wdev_lock(wdev);
Johannes Bergcb0b4be2009-07-07 03:56:07 +020050
Johannes Berg6829c872009-07-02 09:13:27 +020051 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
52
Johannes Bergf401a6f2009-08-07 14:51:05 +020053 /*
54 * This is a bit of a hack, we don't notify userspace of
55 * a (re-)association reply if we tried to send a reassoc
56 * and got a reject -- we only try again with an assoc
57 * frame instead of reassoc.
58 */
59 if (status_code != WLAN_STATUS_SUCCESS && wdev->conn &&
Johannes Berg95de8172012-01-20 13:55:25 +010060 cfg80211_sme_failed_reassoc(wdev)) {
61 cfg80211_put_bss(bss);
Johannes Bergf401a6f2009-08-07 14:51:05 +020062 goto out;
Johannes Berg95de8172012-01-20 13:55:25 +010063 }
Johannes Bergf401a6f2009-08-07 14:51:05 +020064
Johannes Bergcb0b4be2009-07-07 03:56:07 +020065 nl80211_send_rx_assoc(rdev, dev, buf, len, GFP_KERNEL);
Johannes Berg6829c872009-07-02 09:13:27 +020066
Johannes Berg95de8172012-01-20 13:55:25 +010067 if (status_code != WLAN_STATUS_SUCCESS && wdev->conn) {
Johannes Berg7d930bc2009-10-20 15:08:53 +090068 cfg80211_sme_failed_assoc(wdev);
Johannes Berg7d930bc2009-10-20 15:08:53 +090069 /*
70 * do not call connect_result() now because the
71 * sme will schedule work that does it later.
72 */
Johannes Berg95de8172012-01-20 13:55:25 +010073 cfg80211_put_bss(bss);
Johannes Berg7d930bc2009-10-20 15:08:53 +090074 goto out;
Johannes Bergdf7fc0f2009-07-29 11:23:49 +020075 }
76
Johannes Bergea416a72009-08-17 12:22:14 +020077 if (!wdev->conn && wdev->sme_state == CFG80211_SME_IDLE) {
78 /*
79 * This is for the userspace SME, the CONNECTING
80 * state will be changed to CONNECTED by
81 * __cfg80211_connect_result() below.
82 */
83 wdev->sme_state = CFG80211_SME_CONNECTING;
84 }
85
Johannes Berg95de8172012-01-20 13:55:25 +010086 /* this consumes the bss reference */
Johannes Bergdf7fc0f2009-07-29 11:23:49 +020087 __cfg80211_connect_result(dev, mgmt->bssid, NULL, 0, ie, len - ieoffs,
88 status_code,
Johannes Berg95de8172012-01-20 13:55:25 +010089 status_code == WLAN_STATUS_SUCCESS, bss);
Johannes Bergf401a6f2009-08-07 14:51:05 +020090 out:
Johannes Berg667503dd2009-07-07 03:56:11 +020091 wdev_unlock(wdev);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020092}
93EXPORT_SYMBOL(cfg80211_send_rx_assoc);
94
Holger Schurigce470612009-10-13 13:28:13 +020095void __cfg80211_send_deauth(struct net_device *dev,
Johannes Berg667503dd2009-07-07 03:56:11 +020096 const u8 *buf, size_t len)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020097{
Johannes Berg6829c872009-07-02 09:13:27 +020098 struct wireless_dev *wdev = dev->ieee80211_ptr;
99 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200100 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6829c872009-07-02 09:13:27 +0200101 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)buf;
Johannes Berg19957bb2009-07-02 17:20:43 +0200102 const u8 *bssid = mgmt->bssid;
Johannes Berg95de8172012-01-20 13:55:25 +0100103 bool was_current = false;
Johannes Berg6829c872009-07-02 09:13:27 +0200104
Beni Lev4ee3e062012-08-27 12:49:39 +0300105 trace___cfg80211_send_deauth(dev);
Johannes Berg667503dd2009-07-07 03:56:11 +0200106 ASSERT_WDEV_LOCK(wdev);
Johannes Bergcb0b4be2009-07-07 03:56:07 +0200107
Johannes Berg19957bb2009-07-02 17:20:43 +0200108 if (wdev->current_bss &&
Joe Perchesac422d32012-05-08 18:56:55 +0000109 ether_addr_equal(wdev->current_bss->pub.bssid, bssid)) {
Johannes Berg19957bb2009-07-02 17:20:43 +0200110 cfg80211_unhold_bss(wdev->current_bss);
111 cfg80211_put_bss(&wdev->current_bss->pub);
112 wdev->current_bss = NULL;
Johannes Berg3f3b6a82010-08-05 10:20:27 +0200113 was_current = true;
Johannes Berg19957bb2009-07-02 17:20:43 +0200114 }
Johannes Berg19957bb2009-07-02 17:20:43 +0200115
Johannes Berg5fba4af2009-12-02 12:43:42 +0100116 nl80211_send_deauth(rdev, dev, buf, len, GFP_KERNEL);
117
Johannes Berg3f3b6a82010-08-05 10:20:27 +0200118 if (wdev->sme_state == CFG80211_SME_CONNECTED && was_current) {
Johannes Berg6829c872009-07-02 09:13:27 +0200119 u16 reason_code;
120 bool from_ap;
121
122 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
123
Joe Perchesac422d32012-05-08 18:56:55 +0000124 from_ap = !ether_addr_equal(mgmt->sa, dev->dev_addr);
Johannes Berg667503dd2009-07-07 03:56:11 +0200125 __cfg80211_disconnected(dev, NULL, 0, reason_code, from_ap);
Johannes Berg6829c872009-07-02 09:13:27 +0200126 } else if (wdev->sme_state == CFG80211_SME_CONNECTING) {
Johannes Berg667503dd2009-07-07 03:56:11 +0200127 __cfg80211_connect_result(dev, mgmt->bssid, NULL, 0, NULL, 0,
128 WLAN_STATUS_UNSPECIFIED_FAILURE,
Johannes Bergdf7fc0f2009-07-29 11:23:49 +0200129 false, NULL);
Johannes Berg667503dd2009-07-07 03:56:11 +0200130 }
131}
Holger Schurigce470612009-10-13 13:28:13 +0200132EXPORT_SYMBOL(__cfg80211_send_deauth);
Johannes Berg667503dd2009-07-07 03:56:11 +0200133
Holger Schurigce470612009-10-13 13:28:13 +0200134void cfg80211_send_deauth(struct net_device *dev, const u8 *buf, size_t len)
Johannes Berg667503dd2009-07-07 03:56:11 +0200135{
136 struct wireless_dev *wdev = dev->ieee80211_ptr;
137
Holger Schurigce470612009-10-13 13:28:13 +0200138 wdev_lock(wdev);
139 __cfg80211_send_deauth(dev, buf, len);
140 wdev_unlock(wdev);
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200141}
Jouni Malinen53b46b82009-03-27 20:53:56 +0200142EXPORT_SYMBOL(cfg80211_send_deauth);
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200143
Holger Schurigce470612009-10-13 13:28:13 +0200144void __cfg80211_send_disassoc(struct net_device *dev,
Johannes Berg667503dd2009-07-07 03:56:11 +0200145 const u8 *buf, size_t len)
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200146{
Johannes Berg6829c872009-07-02 09:13:27 +0200147 struct wireless_dev *wdev = dev->ieee80211_ptr;
148 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200149 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6829c872009-07-02 09:13:27 +0200150 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)buf;
Johannes Berg19957bb2009-07-02 17:20:43 +0200151 const u8 *bssid = mgmt->bssid;
Johannes Berg19957bb2009-07-02 17:20:43 +0200152 u16 reason_code;
153 bool from_ap;
Johannes Berg6829c872009-07-02 09:13:27 +0200154
Beni Lev4ee3e062012-08-27 12:49:39 +0300155 trace___cfg80211_send_disassoc(dev);
Johannes Berg596a07c2009-07-11 00:17:32 +0200156 ASSERT_WDEV_LOCK(wdev);
Johannes Bergcb0b4be2009-07-07 03:56:07 +0200157
158 nl80211_send_disassoc(rdev, dev, buf, len, GFP_KERNEL);
Johannes Berg6829c872009-07-02 09:13:27 +0200159
Johannes Berg596a07c2009-07-11 00:17:32 +0200160 if (wdev->sme_state != CFG80211_SME_CONNECTED)
161 return;
Johannes Berg6829c872009-07-02 09:13:27 +0200162
Johannes Berg19957bb2009-07-02 17:20:43 +0200163 if (wdev->current_bss &&
Joe Perchesac422d32012-05-08 18:56:55 +0000164 ether_addr_equal(wdev->current_bss->pub.bssid, bssid)) {
Johannes Berg95de8172012-01-20 13:55:25 +0100165 cfg80211_sme_disassoc(dev, wdev->current_bss);
166 cfg80211_unhold_bss(wdev->current_bss);
167 cfg80211_put_bss(&wdev->current_bss->pub);
168 wdev->current_bss = NULL;
Johannes Berg19957bb2009-07-02 17:20:43 +0200169 } else
170 WARN_ON(1);
Johannes Berg6829c872009-07-02 09:13:27 +0200171
Johannes Berg6829c872009-07-02 09:13:27 +0200172
Johannes Berg19957bb2009-07-02 17:20:43 +0200173 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
174
Joe Perchesac422d32012-05-08 18:56:55 +0000175 from_ap = !ether_addr_equal(mgmt->sa, dev->dev_addr);
Johannes Berg667503dd2009-07-07 03:56:11 +0200176 __cfg80211_disconnected(dev, NULL, 0, reason_code, from_ap);
Johannes Berg667503dd2009-07-07 03:56:11 +0200177}
Holger Schurigce470612009-10-13 13:28:13 +0200178EXPORT_SYMBOL(__cfg80211_send_disassoc);
Johannes Berg667503dd2009-07-07 03:56:11 +0200179
Holger Schurigce470612009-10-13 13:28:13 +0200180void cfg80211_send_disassoc(struct net_device *dev, const u8 *buf, size_t len)
Johannes Berg667503dd2009-07-07 03:56:11 +0200181{
182 struct wireless_dev *wdev = dev->ieee80211_ptr;
183
Holger Schurigce470612009-10-13 13:28:13 +0200184 wdev_lock(wdev);
185 __cfg80211_send_disassoc(dev, buf, len);
186 wdev_unlock(wdev);
Jouni Malinen6039f6d2009-03-19 13:39:21 +0200187}
Jouni Malinen53b46b82009-03-27 20:53:56 +0200188EXPORT_SYMBOL(cfg80211_send_disassoc);
Jouni Malinena3b8b052009-03-27 21:59:49 +0200189
Jouni Malinencf4e5942010-12-16 00:52:40 +0200190void cfg80211_send_unprot_deauth(struct net_device *dev, const u8 *buf,
191 size_t len)
192{
193 struct wireless_dev *wdev = dev->ieee80211_ptr;
194 struct wiphy *wiphy = wdev->wiphy;
195 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
196
Beni Lev4ee3e062012-08-27 12:49:39 +0300197 trace_cfg80211_send_unprot_deauth(dev);
Jouni Malinencf4e5942010-12-16 00:52:40 +0200198 nl80211_send_unprot_deauth(rdev, dev, buf, len, GFP_ATOMIC);
199}
200EXPORT_SYMBOL(cfg80211_send_unprot_deauth);
201
202void cfg80211_send_unprot_disassoc(struct net_device *dev, const u8 *buf,
203 size_t len)
204{
205 struct wireless_dev *wdev = dev->ieee80211_ptr;
206 struct wiphy *wiphy = wdev->wiphy;
207 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
208
Beni Lev4ee3e062012-08-27 12:49:39 +0300209 trace_cfg80211_send_unprot_disassoc(dev);
Jouni Malinencf4e5942010-12-16 00:52:40 +0200210 nl80211_send_unprot_disassoc(rdev, dev, buf, len, GFP_ATOMIC);
211}
212EXPORT_SYMBOL(cfg80211_send_unprot_disassoc);
213
Johannes Berga58ce432009-11-19 12:45:42 +0100214void cfg80211_send_auth_timeout(struct net_device *dev, const u8 *addr)
215{
216 struct wireless_dev *wdev = dev->ieee80211_ptr;
217 struct wiphy *wiphy = wdev->wiphy;
218 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
219
Beni Lev4ee3e062012-08-27 12:49:39 +0300220 trace_cfg80211_send_auth_timeout(dev, addr);
Johannes Berga58ce432009-11-19 12:45:42 +0100221 wdev_lock(wdev);
222
223 nl80211_send_auth_timeout(rdev, dev, addr, GFP_KERNEL);
224 if (wdev->sme_state == CFG80211_SME_CONNECTING)
225 __cfg80211_connect_result(dev, addr, NULL, 0, NULL, 0,
226 WLAN_STATUS_UNSPECIFIED_FAILURE,
227 false, NULL);
228
Johannes Berg667503dd2009-07-07 03:56:11 +0200229 wdev_unlock(wdev);
Jouni Malinen1965c852009-04-22 21:38:25 +0300230}
231EXPORT_SYMBOL(cfg80211_send_auth_timeout);
232
Johannes Bergcb0b4be2009-07-07 03:56:07 +0200233void cfg80211_send_assoc_timeout(struct net_device *dev, const u8 *addr)
Jouni Malinen1965c852009-04-22 21:38:25 +0300234{
Johannes Berg6829c872009-07-02 09:13:27 +0200235 struct wireless_dev *wdev = dev->ieee80211_ptr;
236 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen1965c852009-04-22 21:38:25 +0300237 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg19957bb2009-07-02 17:20:43 +0200238
Beni Lev4ee3e062012-08-27 12:49:39 +0300239 trace_cfg80211_send_assoc_timeout(dev, addr);
Johannes Berg667503dd2009-07-07 03:56:11 +0200240 wdev_lock(wdev);
Johannes Bergcb0b4be2009-07-07 03:56:07 +0200241
242 nl80211_send_assoc_timeout(rdev, dev, addr, GFP_KERNEL);
Johannes Berg6829c872009-07-02 09:13:27 +0200243 if (wdev->sme_state == CFG80211_SME_CONNECTING)
Johannes Berg667503dd2009-07-07 03:56:11 +0200244 __cfg80211_connect_result(dev, addr, NULL, 0, NULL, 0,
245 WLAN_STATUS_UNSPECIFIED_FAILURE,
Johannes Bergdf7fc0f2009-07-29 11:23:49 +0200246 false, NULL);
Johannes Berg19957bb2009-07-02 17:20:43 +0200247
Johannes Berg667503dd2009-07-07 03:56:11 +0200248 wdev_unlock(wdev);
Jouni Malinen1965c852009-04-22 21:38:25 +0300249}
250EXPORT_SYMBOL(cfg80211_send_assoc_timeout);
251
Jouni Malinena3b8b052009-03-27 21:59:49 +0200252void cfg80211_michael_mic_failure(struct net_device *dev, const u8 *addr,
253 enum nl80211_key_type key_type, int key_id,
Johannes Berge6d6e342009-07-01 21:26:47 +0200254 const u8 *tsc, gfp_t gfp)
Jouni Malinena3b8b052009-03-27 21:59:49 +0200255{
256 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
257 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg3d23e342009-09-29 23:27:28 +0200258#ifdef CONFIG_CFG80211_WEXT
Johannes Bergf58d4ed2009-06-19 02:45:21 +0200259 union iwreq_data wrqu;
Johannes Berge6d6e342009-07-01 21:26:47 +0200260 char *buf = kmalloc(128, gfp);
Johannes Bergf58d4ed2009-06-19 02:45:21 +0200261
262 if (buf) {
263 sprintf(buf, "MLME-MICHAELMICFAILURE.indication("
264 "keyid=%d %scast addr=%pM)", key_id,
265 key_type == NL80211_KEYTYPE_GROUP ? "broad" : "uni",
266 addr);
267 memset(&wrqu, 0, sizeof(wrqu));
268 wrqu.data.length = strlen(buf);
269 wireless_send_event(dev, IWEVCUSTOM, &wrqu, buf);
270 kfree(buf);
271 }
272#endif
273
Beni Lev4ee3e062012-08-27 12:49:39 +0300274 trace_cfg80211_michael_mic_failure(dev, addr, key_type, key_id, tsc);
Johannes Berge6d6e342009-07-01 21:26:47 +0200275 nl80211_michael_mic_failure(rdev, dev, addr, key_type, key_id, tsc, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +0200276}
277EXPORT_SYMBOL(cfg80211_michael_mic_failure);
Johannes Berg19957bb2009-07-02 17:20:43 +0200278
279/* some MLME handling for userspace SME */
Johannes Berg667503dd2009-07-07 03:56:11 +0200280int __cfg80211_mlme_auth(struct cfg80211_registered_device *rdev,
281 struct net_device *dev,
282 struct ieee80211_channel *chan,
283 enum nl80211_auth_type auth_type,
284 const u8 *bssid,
285 const u8 *ssid, int ssid_len,
Johannes Bergfffd0932009-07-08 14:22:54 +0200286 const u8 *ie, int ie_len,
Jouni Malinene39e5b52012-09-30 19:29:39 +0300287 const u8 *key, int key_len, int key_idx,
288 const u8 *sae_data, int sae_data_len)
Johannes Berg19957bb2009-07-02 17:20:43 +0200289{
290 struct wireless_dev *wdev = dev->ieee80211_ptr;
291 struct cfg80211_auth_request req;
Johannes Berg95de8172012-01-20 13:55:25 +0100292 int err;
Johannes Berg19957bb2009-07-02 17:20:43 +0200293
Johannes Berg667503dd2009-07-07 03:56:11 +0200294 ASSERT_WDEV_LOCK(wdev);
295
Johannes Bergfffd0932009-07-08 14:22:54 +0200296 if (auth_type == NL80211_AUTHTYPE_SHARED_KEY)
297 if (!key || !key_len || key_idx < 0 || key_idx > 4)
298 return -EINVAL;
299
Johannes Berg0a9b5e12009-07-02 18:26:18 +0200300 if (wdev->current_bss &&
Joe Perchesac422d32012-05-08 18:56:55 +0000301 ether_addr_equal(bssid, wdev->current_bss->pub.bssid))
Johannes Berg0a9b5e12009-07-02 18:26:18 +0200302 return -EALREADY;
303
Johannes Berg19957bb2009-07-02 17:20:43 +0200304 memset(&req, 0, sizeof(req));
305
306 req.ie = ie;
307 req.ie_len = ie_len;
Jouni Malinene39e5b52012-09-30 19:29:39 +0300308 req.sae_data = sae_data;
309 req.sae_data_len = sae_data_len;
Johannes Berg19957bb2009-07-02 17:20:43 +0200310 req.auth_type = auth_type;
311 req.bss = cfg80211_get_bss(&rdev->wiphy, chan, bssid, ssid, ssid_len,
312 WLAN_CAPABILITY_ESS, WLAN_CAPABILITY_ESS);
Johannes Bergfffd0932009-07-08 14:22:54 +0200313 req.key = key;
314 req.key_len = key_len;
315 req.key_idx = key_idx;
Johannes Berg19957bb2009-07-02 17:20:43 +0200316 if (!req.bss)
317 return -ENOENT;
318
Michal Kaziore4e32452012-06-29 12:47:08 +0200319 err = cfg80211_can_use_chan(rdev, wdev, req.bss->channel,
320 CHAN_MODE_SHARED);
321 if (err)
322 goto out;
323
Hila Gonene35e4d22012-06-27 17:19:42 +0300324 err = rdev_auth(rdev, dev, &req);
Johannes Berg19957bb2009-07-02 17:20:43 +0200325
Michal Kaziore4e32452012-06-29 12:47:08 +0200326out:
Johannes Berg95de8172012-01-20 13:55:25 +0100327 cfg80211_put_bss(req.bss);
Johannes Berg19957bb2009-07-02 17:20:43 +0200328 return err;
329}
330
Johannes Berg667503dd2009-07-07 03:56:11 +0200331int cfg80211_mlme_auth(struct cfg80211_registered_device *rdev,
332 struct net_device *dev, struct ieee80211_channel *chan,
333 enum nl80211_auth_type auth_type, const u8 *bssid,
334 const u8 *ssid, int ssid_len,
Johannes Bergfffd0932009-07-08 14:22:54 +0200335 const u8 *ie, int ie_len,
Jouni Malinene39e5b52012-09-30 19:29:39 +0300336 const u8 *key, int key_len, int key_idx,
337 const u8 *sae_data, int sae_data_len)
Johannes Berg667503dd2009-07-07 03:56:11 +0200338{
339 int err;
340
Michal Kaziore4e32452012-06-29 12:47:08 +0200341 mutex_lock(&rdev->devlist_mtx);
Johannes Berg667503dd2009-07-07 03:56:11 +0200342 wdev_lock(dev->ieee80211_ptr);
343 err = __cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid,
Johannes Bergfffd0932009-07-08 14:22:54 +0200344 ssid, ssid_len, ie, ie_len,
Jouni Malinene39e5b52012-09-30 19:29:39 +0300345 key, key_len, key_idx,
346 sae_data, sae_data_len);
Johannes Berg667503dd2009-07-07 03:56:11 +0200347 wdev_unlock(dev->ieee80211_ptr);
Michal Kaziore4e32452012-06-29 12:47:08 +0200348 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg667503dd2009-07-07 03:56:11 +0200349
350 return err;
351}
352
Ben Greear7e7c8922011-11-18 11:31:59 -0800353/* Do a logical ht_capa &= ht_capa_mask. */
354void cfg80211_oper_and_ht_capa(struct ieee80211_ht_cap *ht_capa,
355 const struct ieee80211_ht_cap *ht_capa_mask)
356{
357 int i;
358 u8 *p1, *p2;
359 if (!ht_capa_mask) {
360 memset(ht_capa, 0, sizeof(*ht_capa));
361 return;
362 }
363
364 p1 = (u8*)(ht_capa);
365 p2 = (u8*)(ht_capa_mask);
366 for (i = 0; i<sizeof(*ht_capa); i++)
367 p1[i] &= p2[i];
368}
369
Johannes Berg667503dd2009-07-07 03:56:11 +0200370int __cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
371 struct net_device *dev,
372 struct ieee80211_channel *chan,
373 const u8 *bssid, const u8 *prev_bssid,
374 const u8 *ssid, int ssid_len,
375 const u8 *ie, int ie_len, bool use_mfp,
Ben Greear7e7c8922011-11-18 11:31:59 -0800376 struct cfg80211_crypto_settings *crypt,
377 u32 assoc_flags, struct ieee80211_ht_cap *ht_capa,
378 struct ieee80211_ht_cap *ht_capa_mask)
Johannes Berg19957bb2009-07-02 17:20:43 +0200379{
380 struct wireless_dev *wdev = dev->ieee80211_ptr;
381 struct cfg80211_assoc_request req;
Johannes Berg95de8172012-01-20 13:55:25 +0100382 int err;
Jouni Malinen24b6b152009-11-17 21:35:38 +0200383 bool was_connected = false;
Johannes Berg19957bb2009-07-02 17:20:43 +0200384
Johannes Berg667503dd2009-07-07 03:56:11 +0200385 ASSERT_WDEV_LOCK(wdev);
386
Johannes Berg19957bb2009-07-02 17:20:43 +0200387 memset(&req, 0, sizeof(req));
388
Jouni Malinen24b6b152009-11-17 21:35:38 +0200389 if (wdev->current_bss && prev_bssid &&
Joe Perchesac422d32012-05-08 18:56:55 +0000390 ether_addr_equal(wdev->current_bss->pub.bssid, prev_bssid)) {
Jouni Malinen24b6b152009-11-17 21:35:38 +0200391 /*
392 * Trying to reassociate: Allow this to proceed and let the old
393 * association to be dropped when the new one is completed.
394 */
395 if (wdev->sme_state == CFG80211_SME_CONNECTED) {
396 was_connected = true;
397 wdev->sme_state = CFG80211_SME_CONNECTING;
398 }
399 } else if (wdev->current_bss)
Johannes Berg19957bb2009-07-02 17:20:43 +0200400 return -EALREADY;
401
402 req.ie = ie;
403 req.ie_len = ie_len;
404 memcpy(&req.crypto, crypt, sizeof(req.crypto));
405 req.use_mfp = use_mfp;
Johannes Berg3e5d7642009-07-07 14:37:26 +0200406 req.prev_bssid = prev_bssid;
Ben Greear7e7c8922011-11-18 11:31:59 -0800407 req.flags = assoc_flags;
408 if (ht_capa)
409 memcpy(&req.ht_capa, ht_capa, sizeof(req.ht_capa));
410 if (ht_capa_mask)
411 memcpy(&req.ht_capa_mask, ht_capa_mask,
412 sizeof(req.ht_capa_mask));
413 cfg80211_oper_and_ht_capa(&req.ht_capa_mask,
414 rdev->wiphy.ht_capa_mod_mask);
415
Johannes Berg19957bb2009-07-02 17:20:43 +0200416 req.bss = cfg80211_get_bss(&rdev->wiphy, chan, bssid, ssid, ssid_len,
417 WLAN_CAPABILITY_ESS, WLAN_CAPABILITY_ESS);
Jouni Malinen24b6b152009-11-17 21:35:38 +0200418 if (!req.bss) {
419 if (was_connected)
420 wdev->sme_state = CFG80211_SME_CONNECTED;
Johannes Berg19957bb2009-07-02 17:20:43 +0200421 return -ENOENT;
Jouni Malinen24b6b152009-11-17 21:35:38 +0200422 }
Johannes Berg19957bb2009-07-02 17:20:43 +0200423
Michal Kaziore4e32452012-06-29 12:47:08 +0200424 err = cfg80211_can_use_chan(rdev, wdev, req.bss->channel,
425 CHAN_MODE_SHARED);
426 if (err)
427 goto out;
428
Hila Gonene35e4d22012-06-27 17:19:42 +0300429 err = rdev_assoc(rdev, dev, &req);
Johannes Berg95de8172012-01-20 13:55:25 +0100430
Michal Kaziore4e32452012-06-29 12:47:08 +0200431out:
Johannes Berg95de8172012-01-20 13:55:25 +0100432 if (err) {
433 if (was_connected)
434 wdev->sme_state = CFG80211_SME_CONNECTED;
435 cfg80211_put_bss(req.bss);
436 }
437
Johannes Berg19957bb2009-07-02 17:20:43 +0200438 return err;
439}
440
Johannes Berg667503dd2009-07-07 03:56:11 +0200441int cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
442 struct net_device *dev,
443 struct ieee80211_channel *chan,
444 const u8 *bssid, const u8 *prev_bssid,
445 const u8 *ssid, int ssid_len,
446 const u8 *ie, int ie_len, bool use_mfp,
Ben Greear7e7c8922011-11-18 11:31:59 -0800447 struct cfg80211_crypto_settings *crypt,
448 u32 assoc_flags, struct ieee80211_ht_cap *ht_capa,
449 struct ieee80211_ht_cap *ht_capa_mask)
Johannes Berg667503dd2009-07-07 03:56:11 +0200450{
451 struct wireless_dev *wdev = dev->ieee80211_ptr;
452 int err;
453
Michal Kaziore4e32452012-06-29 12:47:08 +0200454 mutex_lock(&rdev->devlist_mtx);
Johannes Berg667503dd2009-07-07 03:56:11 +0200455 wdev_lock(wdev);
456 err = __cfg80211_mlme_assoc(rdev, dev, chan, bssid, prev_bssid,
Ben Greear7e7c8922011-11-18 11:31:59 -0800457 ssid, ssid_len, ie, ie_len, use_mfp, crypt,
458 assoc_flags, ht_capa, ht_capa_mask);
Johannes Berg667503dd2009-07-07 03:56:11 +0200459 wdev_unlock(wdev);
Michal Kaziore4e32452012-06-29 12:47:08 +0200460 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg667503dd2009-07-07 03:56:11 +0200461
462 return err;
463}
464
465int __cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
466 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300467 const u8 *ie, int ie_len, u16 reason,
468 bool local_state_change)
Johannes Berg19957bb2009-07-02 17:20:43 +0200469{
470 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg95de8172012-01-20 13:55:25 +0100471 struct cfg80211_deauth_request req = {
472 .bssid = bssid,
473 .reason_code = reason,
474 .ie = ie,
475 .ie_len = ie_len,
476 };
Johannes Berg19957bb2009-07-02 17:20:43 +0200477
Johannes Berg667503dd2009-07-07 03:56:11 +0200478 ASSERT_WDEV_LOCK(wdev);
479
Johannes Berg95de8172012-01-20 13:55:25 +0100480 if (local_state_change) {
481 if (wdev->current_bss &&
Joe Perchesac422d32012-05-08 18:56:55 +0000482 ether_addr_equal(wdev->current_bss->pub.bssid, bssid)) {
Johannes Berg95de8172012-01-20 13:55:25 +0100483 cfg80211_unhold_bss(wdev->current_bss);
484 cfg80211_put_bss(&wdev->current_bss->pub);
485 wdev->current_bss = NULL;
Johannes Berg19957bb2009-07-02 17:20:43 +0200486 }
Johannes Berg19957bb2009-07-02 17:20:43 +0200487
Johannes Berg95de8172012-01-20 13:55:25 +0100488 return 0;
489 }
Johannes Berg19957bb2009-07-02 17:20:43 +0200490
Hila Gonene35e4d22012-06-27 17:19:42 +0300491 return rdev_deauth(rdev, dev, &req);
Johannes Berg19957bb2009-07-02 17:20:43 +0200492}
493
Johannes Berg667503dd2009-07-07 03:56:11 +0200494int cfg80211_mlme_deauth(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 Berg667503dd2009-07-07 03:56:11 +0200498{
499 struct wireless_dev *wdev = dev->ieee80211_ptr;
500 int err;
501
502 wdev_lock(wdev);
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300503 err = __cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason,
504 local_state_change);
Johannes Berg667503dd2009-07-07 03:56:11 +0200505 wdev_unlock(wdev);
506
507 return err;
508}
509
510static int __cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
511 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300512 const u8 *ie, int ie_len, u16 reason,
513 bool local_state_change)
Johannes Berg19957bb2009-07-02 17:20:43 +0200514{
515 struct wireless_dev *wdev = dev->ieee80211_ptr;
516 struct cfg80211_disassoc_request req;
517
Johannes Berg667503dd2009-07-07 03:56:11 +0200518 ASSERT_WDEV_LOCK(wdev);
519
Johannes Bergf9d6b402009-07-27 10:22:28 +0200520 if (wdev->sme_state != CFG80211_SME_CONNECTED)
521 return -ENOTCONN;
522
523 if (WARN_ON(!wdev->current_bss))
524 return -ENOTCONN;
525
Johannes Berg19957bb2009-07-02 17:20:43 +0200526 memset(&req, 0, sizeof(req));
527 req.reason_code = reason;
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300528 req.local_state_change = local_state_change;
Johannes Berg19957bb2009-07-02 17:20:43 +0200529 req.ie = ie;
530 req.ie_len = ie_len;
Joe Perchesac422d32012-05-08 18:56:55 +0000531 if (ether_addr_equal(wdev->current_bss->pub.bssid, bssid))
Johannes Berg19957bb2009-07-02 17:20:43 +0200532 req.bss = &wdev->current_bss->pub;
533 else
534 return -ENOTCONN;
535
Hila Gonene35e4d22012-06-27 17:19:42 +0300536 return rdev_disassoc(rdev, dev, &req);
Johannes Berg667503dd2009-07-07 03:56:11 +0200537}
538
539int cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
540 struct net_device *dev, const u8 *bssid,
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300541 const u8 *ie, int ie_len, u16 reason,
542 bool local_state_change)
Johannes Berg667503dd2009-07-07 03:56:11 +0200543{
544 struct wireless_dev *wdev = dev->ieee80211_ptr;
545 int err;
546
547 wdev_lock(wdev);
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300548 err = __cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason,
549 local_state_change);
Johannes Berg667503dd2009-07-07 03:56:11 +0200550 wdev_unlock(wdev);
551
552 return err;
Johannes Berg19957bb2009-07-02 17:20:43 +0200553}
554
555void cfg80211_mlme_down(struct cfg80211_registered_device *rdev,
556 struct net_device *dev)
557{
558 struct wireless_dev *wdev = dev->ieee80211_ptr;
559 struct cfg80211_deauth_request req;
Johannes Berg95de8172012-01-20 13:55:25 +0100560 u8 bssid[ETH_ALEN];
Johannes Berg19957bb2009-07-02 17:20:43 +0200561
Johannes Berg667503dd2009-07-07 03:56:11 +0200562 ASSERT_WDEV_LOCK(wdev);
563
Johannes Berg19957bb2009-07-02 17:20:43 +0200564 if (!rdev->ops->deauth)
565 return;
566
567 memset(&req, 0, sizeof(req));
568 req.reason_code = WLAN_REASON_DEAUTH_LEAVING;
569 req.ie = NULL;
570 req.ie_len = 0;
571
Johannes Berg95de8172012-01-20 13:55:25 +0100572 if (!wdev->current_bss)
573 return;
Johannes Berg19957bb2009-07-02 17:20:43 +0200574
Johannes Berg95de8172012-01-20 13:55:25 +0100575 memcpy(bssid, wdev->current_bss->pub.bssid, ETH_ALEN);
576 req.bssid = bssid;
Hila Gonene35e4d22012-06-27 17:19:42 +0300577 rdev_deauth(rdev, dev, &req);
Johannes Berg95de8172012-01-20 13:55:25 +0100578
579 if (wdev->current_bss) {
580 cfg80211_unhold_bss(wdev->current_bss);
581 cfg80211_put_bss(&wdev->current_bss->pub);
582 wdev->current_bss = NULL;
Johannes Berg19957bb2009-07-02 17:20:43 +0200583 }
584}
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100585
Johannes Berg71bbc992012-06-15 15:30:18 +0200586void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie,
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100587 struct ieee80211_channel *chan,
588 enum nl80211_channel_type channel_type,
589 unsigned int duration, gfp_t gfp)
590{
Johannes Berg71bbc992012-06-15 15:30:18 +0200591 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100592 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
593
Beni Lev4ee3e062012-08-27 12:49:39 +0300594 trace_cfg80211_ready_on_channel(wdev, cookie, chan, channel_type,
595 duration);
Johannes Berg71bbc992012-06-15 15:30:18 +0200596 nl80211_send_remain_on_channel(rdev, wdev, cookie, chan, channel_type,
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100597 duration, gfp);
598}
599EXPORT_SYMBOL(cfg80211_ready_on_channel);
600
Johannes Berg71bbc992012-06-15 15:30:18 +0200601void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie,
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100602 struct ieee80211_channel *chan,
603 enum nl80211_channel_type channel_type,
604 gfp_t gfp)
605{
Johannes Berg71bbc992012-06-15 15:30:18 +0200606 struct wiphy *wiphy = wdev->wiphy;
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100607 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
608
Beni Lev4ee3e062012-08-27 12:49:39 +0300609 trace_cfg80211_ready_on_channel_expired(wdev, cookie, chan,
610 channel_type);
Johannes Berg71bbc992012-06-15 15:30:18 +0200611 nl80211_send_remain_on_channel_cancel(rdev, wdev, cookie, chan,
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100612 channel_type, gfp);
613}
614EXPORT_SYMBOL(cfg80211_remain_on_channel_expired);
Johannes Berg98b62182009-12-23 13:15:44 +0100615
616void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
617 struct station_info *sinfo, gfp_t gfp)
618{
619 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
620 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
621
Beni Lev4ee3e062012-08-27 12:49:39 +0300622 trace_cfg80211_new_sta(dev, mac_addr, sinfo);
Johannes Berg98b62182009-12-23 13:15:44 +0100623 nl80211_send_sta_event(rdev, dev, mac_addr, sinfo, gfp);
624}
625EXPORT_SYMBOL(cfg80211_new_sta);
Jouni Malinen026331c2010-02-15 12:53:10 +0200626
Jouni Malinenec15e682011-03-23 15:29:52 +0200627void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp)
628{
629 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
630 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
631
Beni Lev4ee3e062012-08-27 12:49:39 +0300632 trace_cfg80211_del_sta(dev, mac_addr);
Jouni Malinenec15e682011-03-23 15:29:52 +0200633 nl80211_send_sta_del_event(rdev, dev, mac_addr, gfp);
634}
635EXPORT_SYMBOL(cfg80211_del_sta);
636
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +0530637void cfg80211_conn_failed(struct net_device *dev, const u8 *mac_addr,
638 enum nl80211_connect_failed_reason reason,
639 gfp_t gfp)
640{
641 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
642 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
643
644 nl80211_send_conn_failed_event(rdev, dev, mac_addr, reason, gfp);
645}
646EXPORT_SYMBOL(cfg80211_conn_failed);
647
Johannes Berg2e161f72010-08-12 15:38:38 +0200648struct cfg80211_mgmt_registration {
Jouni Malinen026331c2010-02-15 12:53:10 +0200649 struct list_head list;
650
Eric W. Biederman15e47302012-09-07 20:12:54 +0000651 u32 nlportid;
Jouni Malinen026331c2010-02-15 12:53:10 +0200652
653 int match_len;
654
Johannes Berg2e161f72010-08-12 15:38:38 +0200655 __le16 frame_type;
656
Jouni Malinen026331c2010-02-15 12:53:10 +0200657 u8 match[];
658};
659
Eric W. Biederman15e47302012-09-07 20:12:54 +0000660int cfg80211_mlme_register_mgmt(struct wireless_dev *wdev, u32 snd_portid,
Johannes Berg2e161f72010-08-12 15:38:38 +0200661 u16 frame_type, const u8 *match_data,
662 int match_len)
Jouni Malinen026331c2010-02-15 12:53:10 +0200663{
Johannes Berg271733c2010-10-13 12:06:23 +0200664 struct wiphy *wiphy = wdev->wiphy;
665 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200666 struct cfg80211_mgmt_registration *reg, *nreg;
Jouni Malinen026331c2010-02-15 12:53:10 +0200667 int err = 0;
Johannes Berg2e161f72010-08-12 15:38:38 +0200668 u16 mgmt_type;
669
670 if (!wdev->wiphy->mgmt_stypes)
671 return -EOPNOTSUPP;
672
673 if ((frame_type & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT)
674 return -EINVAL;
675
676 if (frame_type & ~(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE))
677 return -EINVAL;
678
679 mgmt_type = (frame_type & IEEE80211_FCTL_STYPE) >> 4;
680 if (!(wdev->wiphy->mgmt_stypes[wdev->iftype].rx & BIT(mgmt_type)))
681 return -EINVAL;
Jouni Malinen026331c2010-02-15 12:53:10 +0200682
683 nreg = kzalloc(sizeof(*reg) + match_len, GFP_KERNEL);
684 if (!nreg)
685 return -ENOMEM;
686
Johannes Berg2e161f72010-08-12 15:38:38 +0200687 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200688
Johannes Berg2e161f72010-08-12 15:38:38 +0200689 list_for_each_entry(reg, &wdev->mgmt_registrations, list) {
Jouni Malinen026331c2010-02-15 12:53:10 +0200690 int mlen = min(match_len, reg->match_len);
691
Johannes Berg2e161f72010-08-12 15:38:38 +0200692 if (frame_type != le16_to_cpu(reg->frame_type))
693 continue;
694
Jouni Malinen026331c2010-02-15 12:53:10 +0200695 if (memcmp(reg->match, match_data, mlen) == 0) {
696 err = -EALREADY;
697 break;
698 }
699 }
700
701 if (err) {
702 kfree(nreg);
703 goto out;
704 }
705
706 memcpy(nreg->match, match_data, match_len);
707 nreg->match_len = match_len;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000708 nreg->nlportid = snd_portid;
Johannes Berg2e161f72010-08-12 15:38:38 +0200709 nreg->frame_type = cpu_to_le16(frame_type);
710 list_add(&nreg->list, &wdev->mgmt_registrations);
Jouni Malinen026331c2010-02-15 12:53:10 +0200711
Johannes Berg271733c2010-10-13 12:06:23 +0200712 if (rdev->ops->mgmt_frame_register)
Hila Gonene35e4d22012-06-27 17:19:42 +0300713 rdev_mgmt_frame_register(rdev, wdev, frame_type, true);
Johannes Berg271733c2010-10-13 12:06:23 +0200714
Jouni Malinen026331c2010-02-15 12:53:10 +0200715 out:
Johannes Berg2e161f72010-08-12 15:38:38 +0200716 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Johannes Berg271733c2010-10-13 12:06:23 +0200717
Jouni Malinen026331c2010-02-15 12:53:10 +0200718 return err;
719}
720
Eric W. Biederman15e47302012-09-07 20:12:54 +0000721void cfg80211_mlme_unregister_socket(struct wireless_dev *wdev, u32 nlportid)
Jouni Malinen026331c2010-02-15 12:53:10 +0200722{
Johannes Berg271733c2010-10-13 12:06:23 +0200723 struct wiphy *wiphy = wdev->wiphy;
724 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200725 struct cfg80211_mgmt_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +0200726
Johannes Berg2e161f72010-08-12 15:38:38 +0200727 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200728
Johannes Berg2e161f72010-08-12 15:38:38 +0200729 list_for_each_entry_safe(reg, tmp, &wdev->mgmt_registrations, list) {
Eric W. Biederman15e47302012-09-07 20:12:54 +0000730 if (reg->nlportid != nlportid)
Johannes Berg271733c2010-10-13 12:06:23 +0200731 continue;
732
733 if (rdev->ops->mgmt_frame_register) {
734 u16 frame_type = le16_to_cpu(reg->frame_type);
735
Hila Gonene35e4d22012-06-27 17:19:42 +0300736 rdev_mgmt_frame_register(rdev, wdev,
737 frame_type, false);
Jouni Malinen026331c2010-02-15 12:53:10 +0200738 }
Johannes Berg271733c2010-10-13 12:06:23 +0200739
740 list_del(&reg->list);
741 kfree(reg);
Jouni Malinen026331c2010-02-15 12:53:10 +0200742 }
743
Johannes Berg2e161f72010-08-12 15:38:38 +0200744 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Johannes Berg28946da2011-11-04 11:18:12 +0100745
Eric W. Biederman15e47302012-09-07 20:12:54 +0000746 if (nlportid == wdev->ap_unexpected_nlportid)
747 wdev->ap_unexpected_nlportid = 0;
Jouni Malinen026331c2010-02-15 12:53:10 +0200748}
749
Johannes Berg2e161f72010-08-12 15:38:38 +0200750void cfg80211_mlme_purge_registrations(struct wireless_dev *wdev)
Jouni Malinen026331c2010-02-15 12:53:10 +0200751{
Johannes Berg2e161f72010-08-12 15:38:38 +0200752 struct cfg80211_mgmt_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +0200753
Johannes Berg2e161f72010-08-12 15:38:38 +0200754 spin_lock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200755
Johannes Berg2e161f72010-08-12 15:38:38 +0200756 list_for_each_entry_safe(reg, tmp, &wdev->mgmt_registrations, list) {
Jouni Malinen026331c2010-02-15 12:53:10 +0200757 list_del(&reg->list);
758 kfree(reg);
759 }
760
Johannes Berg2e161f72010-08-12 15:38:38 +0200761 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200762}
763
Johannes Berg2e161f72010-08-12 15:38:38 +0200764int cfg80211_mlme_mgmt_tx(struct cfg80211_registered_device *rdev,
Johannes Berg71bbc992012-06-15 15:30:18 +0200765 struct wireless_dev *wdev,
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100766 struct ieee80211_channel *chan, bool offchan,
Johannes Berg2e161f72010-08-12 15:38:38 +0200767 enum nl80211_channel_type channel_type,
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100768 bool channel_type_valid, unsigned int wait,
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +0530769 const u8 *buf, size_t len, bool no_cck,
Johannes Berge247bd902011-11-04 11:18:21 +0100770 bool dont_wait_for_ack, u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +0200771{
Jouni Malinen026331c2010-02-15 12:53:10 +0200772 const struct ieee80211_mgmt *mgmt;
Johannes Berg2e161f72010-08-12 15:38:38 +0200773 u16 stype;
Jouni Malinen026331c2010-02-15 12:53:10 +0200774
Johannes Berg2e161f72010-08-12 15:38:38 +0200775 if (!wdev->wiphy->mgmt_stypes)
Jouni Malinen026331c2010-02-15 12:53:10 +0200776 return -EOPNOTSUPP;
Johannes Berg2e161f72010-08-12 15:38:38 +0200777
778 if (!rdev->ops->mgmt_tx)
779 return -EOPNOTSUPP;
780
Jouni Malinen026331c2010-02-15 12:53:10 +0200781 if (len < 24 + 1)
782 return -EINVAL;
783
784 mgmt = (const struct ieee80211_mgmt *) buf;
Johannes Berg2e161f72010-08-12 15:38:38 +0200785
786 if (!ieee80211_is_mgmt(mgmt->frame_control))
Jouni Malinen026331c2010-02-15 12:53:10 +0200787 return -EINVAL;
Johannes Berg2e161f72010-08-12 15:38:38 +0200788
789 stype = le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE;
790 if (!(wdev->wiphy->mgmt_stypes[wdev->iftype].tx & BIT(stype >> 4)))
791 return -EINVAL;
792
793 if (ieee80211_is_action(mgmt->frame_control) &&
794 mgmt->u.action.category != WLAN_CATEGORY_PUBLIC) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200795 int err = 0;
796
Johannes Bergfe100ac2010-08-09 15:52:03 +0200797 wdev_lock(wdev);
798
Johannes Berg663fcaf2010-09-30 21:06:09 +0200799 switch (wdev->iftype) {
800 case NL80211_IFTYPE_ADHOC:
801 case NL80211_IFTYPE_STATION:
802 case NL80211_IFTYPE_P2P_CLIENT:
803 if (!wdev->current_bss) {
804 err = -ENOTCONN;
805 break;
806 }
Johannes Bergfe100ac2010-08-09 15:52:03 +0200807
Joe Perchesac422d32012-05-08 18:56:55 +0000808 if (!ether_addr_equal(wdev->current_bss->pub.bssid,
809 mgmt->bssid)) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200810 err = -ENOTCONN;
811 break;
812 }
813
814 /*
815 * check for IBSS DA must be done by driver as
816 * cfg80211 doesn't track the stations
817 */
818 if (wdev->iftype == NL80211_IFTYPE_ADHOC)
819 break;
820
821 /* for station, check that DA is the AP */
Joe Perchesac422d32012-05-08 18:56:55 +0000822 if (!ether_addr_equal(wdev->current_bss->pub.bssid,
823 mgmt->da)) {
Johannes Berg663fcaf2010-09-30 21:06:09 +0200824 err = -ENOTCONN;
825 break;
826 }
827 break;
828 case NL80211_IFTYPE_AP:
829 case NL80211_IFTYPE_P2P_GO:
830 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg98104fde2012-06-16 00:19:54 +0200831 if (!ether_addr_equal(mgmt->bssid, wdev_address(wdev)))
Johannes Berg663fcaf2010-09-30 21:06:09 +0200832 err = -EINVAL;
833 break;
Javier Cardona0778a6a2011-05-03 16:57:08 -0700834 case NL80211_IFTYPE_MESH_POINT:
Joe Perchesac422d32012-05-08 18:56:55 +0000835 if (!ether_addr_equal(mgmt->sa, mgmt->bssid)) {
Javier Cardona0778a6a2011-05-03 16:57:08 -0700836 err = -EINVAL;
837 break;
838 }
839 /*
840 * check for mesh DA must be done by driver as
841 * cfg80211 doesn't track the stations
842 */
843 break;
Johannes Berg98104fde2012-06-16 00:19:54 +0200844 case NL80211_IFTYPE_P2P_DEVICE:
845 /*
846 * fall through, P2P device only supports
847 * public action frames
848 */
Johannes Berg663fcaf2010-09-30 21:06:09 +0200849 default:
850 err = -EOPNOTSUPP;
851 break;
852 }
Johannes Bergfe100ac2010-08-09 15:52:03 +0200853 wdev_unlock(wdev);
Johannes Berg663fcaf2010-09-30 21:06:09 +0200854
855 if (err)
856 return err;
Jouni Malinen026331c2010-02-15 12:53:10 +0200857 }
858
Johannes Berg98104fde2012-06-16 00:19:54 +0200859 if (!ether_addr_equal(mgmt->sa, wdev_address(wdev)))
Jouni Malinen026331c2010-02-15 12:53:10 +0200860 return -EINVAL;
861
862 /* Transmit the Action frame as requested by user space */
Hila Gonene35e4d22012-06-27 17:19:42 +0300863 return rdev_mgmt_tx(rdev, wdev, chan, offchan,
864 channel_type, channel_type_valid,
865 wait, buf, len, no_cck, dont_wait_for_ack,
866 cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +0200867}
868
Johannes Berg71bbc992012-06-15 15:30:18 +0200869bool cfg80211_rx_mgmt(struct wireless_dev *wdev, int freq, int sig_mbm,
Johannes Berg804483e2012-03-05 22:18:41 +0100870 const u8 *buf, size_t len, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +0200871{
Jouni Malinen026331c2010-02-15 12:53:10 +0200872 struct wiphy *wiphy = wdev->wiphy;
873 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg2e161f72010-08-12 15:38:38 +0200874 struct cfg80211_mgmt_registration *reg;
875 const struct ieee80211_txrx_stypes *stypes =
876 &wiphy->mgmt_stypes[wdev->iftype];
877 struct ieee80211_mgmt *mgmt = (void *)buf;
878 const u8 *data;
879 int data_len;
Jouni Malinen026331c2010-02-15 12:53:10 +0200880 bool result = false;
Johannes Berg2e161f72010-08-12 15:38:38 +0200881 __le16 ftype = mgmt->frame_control &
882 cpu_to_le16(IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE);
883 u16 stype;
Jouni Malinen026331c2010-02-15 12:53:10 +0200884
Beni Lev4ee3e062012-08-27 12:49:39 +0300885 trace_cfg80211_rx_mgmt(wdev, freq, sig_mbm);
Johannes Berg2e161f72010-08-12 15:38:38 +0200886 stype = (le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE) >> 4;
Jouni Malinen026331c2010-02-15 12:53:10 +0200887
Beni Lev4ee3e062012-08-27 12:49:39 +0300888 if (!(stypes->rx & BIT(stype))) {
889 trace_cfg80211_return_bool(false);
Johannes Berg2e161f72010-08-12 15:38:38 +0200890 return false;
Beni Lev4ee3e062012-08-27 12:49:39 +0300891 }
Jouni Malinen026331c2010-02-15 12:53:10 +0200892
Johannes Berg2e161f72010-08-12 15:38:38 +0200893 data = buf + ieee80211_hdrlen(mgmt->frame_control);
894 data_len = len - ieee80211_hdrlen(mgmt->frame_control);
Jouni Malinen026331c2010-02-15 12:53:10 +0200895
Johannes Berg2e161f72010-08-12 15:38:38 +0200896 spin_lock_bh(&wdev->mgmt_registrations_lock);
897
898 list_for_each_entry(reg, &wdev->mgmt_registrations, list) {
899 if (reg->frame_type != ftype)
Jouni Malinen026331c2010-02-15 12:53:10 +0200900 continue;
901
Johannes Berg2e161f72010-08-12 15:38:38 +0200902 if (reg->match_len > data_len)
903 continue;
904
905 if (memcmp(reg->match, data, reg->match_len))
Jouni Malinen026331c2010-02-15 12:53:10 +0200906 continue;
907
908 /* found match! */
909
910 /* Indicate the received Action frame to user space */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000911 if (nl80211_send_mgmt(rdev, wdev, reg->nlportid,
Johannes Berg804483e2012-03-05 22:18:41 +0100912 freq, sig_mbm,
Johannes Berg2e161f72010-08-12 15:38:38 +0200913 buf, len, gfp))
Jouni Malinen026331c2010-02-15 12:53:10 +0200914 continue;
915
916 result = true;
917 break;
918 }
919
Johannes Berg2e161f72010-08-12 15:38:38 +0200920 spin_unlock_bh(&wdev->mgmt_registrations_lock);
Jouni Malinen026331c2010-02-15 12:53:10 +0200921
Beni Lev4ee3e062012-08-27 12:49:39 +0300922 trace_cfg80211_return_bool(result);
Jouni Malinen026331c2010-02-15 12:53:10 +0200923 return result;
924}
Johannes Berg2e161f72010-08-12 15:38:38 +0200925EXPORT_SYMBOL(cfg80211_rx_mgmt);
Jouni Malinen026331c2010-02-15 12:53:10 +0200926
Johannes Berg71bbc992012-06-15 15:30:18 +0200927void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie,
Johannes Berg2e161f72010-08-12 15:38:38 +0200928 const u8 *buf, size_t len, bool ack, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +0200929{
Jouni Malinen026331c2010-02-15 12:53:10 +0200930 struct wiphy *wiphy = wdev->wiphy;
931 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
932
Beni Lev4ee3e062012-08-27 12:49:39 +0300933 trace_cfg80211_mgmt_tx_status(wdev, cookie, ack);
934
Jouni Malinen026331c2010-02-15 12:53:10 +0200935 /* Indicate TX status of the Action frame to user space */
Johannes Berg71bbc992012-06-15 15:30:18 +0200936 nl80211_send_mgmt_tx_status(rdev, wdev, cookie, buf, len, ack, gfp);
Jouni Malinen026331c2010-02-15 12:53:10 +0200937}
Johannes Berg2e161f72010-08-12 15:38:38 +0200938EXPORT_SYMBOL(cfg80211_mgmt_tx_status);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +0200939
940void cfg80211_cqm_rssi_notify(struct net_device *dev,
941 enum nl80211_cqm_rssi_threshold_event rssi_event,
942 gfp_t gfp)
943{
944 struct wireless_dev *wdev = dev->ieee80211_ptr;
945 struct wiphy *wiphy = wdev->wiphy;
946 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
947
Beni Lev4ee3e062012-08-27 12:49:39 +0300948 trace_cfg80211_cqm_rssi_notify(dev, rssi_event);
949
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +0200950 /* Indicate roaming trigger event to user space */
951 nl80211_send_cqm_rssi_notify(rdev, dev, rssi_event, gfp);
952}
953EXPORT_SYMBOL(cfg80211_cqm_rssi_notify);
Johannes Bergc063dbf2010-11-24 08:10:05 +0100954
955void cfg80211_cqm_pktloss_notify(struct net_device *dev,
956 const u8 *peer, u32 num_packets, 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
Beni Lev4ee3e062012-08-27 12:49:39 +0300962 trace_cfg80211_cqm_pktloss_notify(dev, peer, num_packets);
963
Johannes Bergc063dbf2010-11-24 08:10:05 +0100964 /* Indicate roaming trigger event to user space */
965 nl80211_send_cqm_pktloss_notify(rdev, dev, peer, num_packets, gfp);
966}
967EXPORT_SYMBOL(cfg80211_cqm_pktloss_notify);
Johannes Berge5497d72011-07-05 16:35:40 +0200968
Thomas Pedersen84f10702012-07-12 16:17:33 -0700969void cfg80211_cqm_txe_notify(struct net_device *dev,
970 const u8 *peer, u32 num_packets,
971 u32 rate, u32 intvl, gfp_t gfp)
972{
973 struct wireless_dev *wdev = dev->ieee80211_ptr;
974 struct wiphy *wiphy = wdev->wiphy;
975 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
976
977 nl80211_send_cqm_txe_notify(rdev, dev, peer, num_packets,
978 rate, intvl, gfp);
979}
980EXPORT_SYMBOL(cfg80211_cqm_txe_notify);
981
Johannes Berge5497d72011-07-05 16:35:40 +0200982void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
983 const u8 *replay_ctr, gfp_t gfp)
984{
985 struct wireless_dev *wdev = dev->ieee80211_ptr;
986 struct wiphy *wiphy = wdev->wiphy;
987 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
988
Beni Lev4ee3e062012-08-27 12:49:39 +0300989 trace_cfg80211_gtk_rekey_notify(dev, bssid);
Johannes Berge5497d72011-07-05 16:35:40 +0200990 nl80211_gtk_rekey_notify(rdev, dev, bssid, replay_ctr, gfp);
991}
992EXPORT_SYMBOL(cfg80211_gtk_rekey_notify);
Jouni Malinenc9df56b2011-09-16 18:56:23 +0300993
994void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
995 const u8 *bssid, bool preauth, gfp_t gfp)
996{
997 struct wireless_dev *wdev = dev->ieee80211_ptr;
998 struct wiphy *wiphy = wdev->wiphy;
999 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
1000
Beni Lev4ee3e062012-08-27 12:49:39 +03001001 trace_cfg80211_pmksa_candidate_notify(dev, index, bssid, preauth);
Jouni Malinenc9df56b2011-09-16 18:56:23 +03001002 nl80211_pmksa_candidate_notify(rdev, dev, index, bssid, preauth, gfp);
1003}
1004EXPORT_SYMBOL(cfg80211_pmksa_candidate_notify);
Johannes Berg28946da2011-11-04 11:18:12 +01001005
Thomas Pedersen53145262012-04-06 13:35:47 -07001006void cfg80211_ch_switch_notify(struct net_device *dev, int freq,
1007 enum nl80211_channel_type type)
1008{
1009 struct wireless_dev *wdev = dev->ieee80211_ptr;
1010 struct wiphy *wiphy = wdev->wiphy;
1011 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
1012 struct ieee80211_channel *chan;
1013
Beni Lev4ee3e062012-08-27 12:49:39 +03001014 trace_cfg80211_ch_switch_notify(dev, freq, type);
1015
Thomas Pedersen53145262012-04-06 13:35:47 -07001016 wdev_lock(wdev);
1017
1018 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
1019 wdev->iftype != NL80211_IFTYPE_P2P_GO))
1020 goto out;
1021
1022 chan = rdev_freq_to_chan(rdev, freq, type);
1023 if (WARN_ON(!chan))
1024 goto out;
1025
Michal Kaziorf4489eb2012-06-29 12:46:58 +02001026 wdev->channel = chan;
Thomas Pedersen53145262012-04-06 13:35:47 -07001027 nl80211_ch_switch_notify(rdev, dev, freq, type, GFP_KERNEL);
1028out:
1029 wdev_unlock(wdev);
1030 return;
1031}
1032EXPORT_SYMBOL(cfg80211_ch_switch_notify);
1033
Johannes Berg28946da2011-11-04 11:18:12 +01001034bool cfg80211_rx_spurious_frame(struct net_device *dev,
1035 const u8 *addr, gfp_t gfp)
1036{
1037 struct wireless_dev *wdev = dev->ieee80211_ptr;
Beni Lev4ee3e062012-08-27 12:49:39 +03001038 bool ret;
1039
1040 trace_cfg80211_rx_spurious_frame(dev, addr);
Johannes Berg28946da2011-11-04 11:18:12 +01001041
1042 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
Beni Lev4ee3e062012-08-27 12:49:39 +03001043 wdev->iftype != NL80211_IFTYPE_P2P_GO)) {
1044 trace_cfg80211_return_bool(false);
Johannes Berg28946da2011-11-04 11:18:12 +01001045 return false;
Beni Lev4ee3e062012-08-27 12:49:39 +03001046 }
1047 ret = nl80211_unexpected_frame(dev, addr, gfp);
1048 trace_cfg80211_return_bool(ret);
1049 return ret;
Johannes Berg28946da2011-11-04 11:18:12 +01001050}
1051EXPORT_SYMBOL(cfg80211_rx_spurious_frame);
Johannes Bergb92ab5d2011-11-04 11:18:19 +01001052
1053bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
1054 const u8 *addr, gfp_t gfp)
1055{
1056 struct wireless_dev *wdev = dev->ieee80211_ptr;
Beni Lev4ee3e062012-08-27 12:49:39 +03001057 bool ret;
1058
1059 trace_cfg80211_rx_unexpected_4addr_frame(dev, addr);
Johannes Bergb92ab5d2011-11-04 11:18:19 +01001060
1061 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
1062 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
Beni Lev4ee3e062012-08-27 12:49:39 +03001063 wdev->iftype != NL80211_IFTYPE_AP_VLAN)) {
1064 trace_cfg80211_return_bool(false);
Johannes Bergb92ab5d2011-11-04 11:18:19 +01001065 return false;
Beni Lev4ee3e062012-08-27 12:49:39 +03001066 }
1067 ret = nl80211_unexpected_4addr_frame(dev, addr, gfp);
1068 trace_cfg80211_return_bool(ret);
1069 return ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +01001070}
1071EXPORT_SYMBOL(cfg80211_rx_unexpected_4addr_frame);