2b5bb380414b6c05eb15d3467a16e9be7f108cbd
[GitHub/MotorolaMobilityLLC/kernel-slsi.git] / net / wireless / sme.c
1 /*
2 * SME code for cfg80211
3 * both driver SME event handling and the SME implementation
4 * (for nl80211's connect() and wext)
5 *
6 * Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
7 * Copyright (C) 2009 Intel Corporation. All rights reserved.
8 */
9
10 #include <linux/etherdevice.h>
11 #include <linux/if_arp.h>
12 #include <linux/slab.h>
13 #include <linux/workqueue.h>
14 #include <linux/wireless.h>
15 #include <linux/export.h>
16 #include <net/iw_handler.h>
17 #include <net/cfg80211.h>
18 #include <net/rtnetlink.h>
19 #include "nl80211.h"
20 #include "reg.h"
21 #include "rdev-ops.h"
22
23 /*
24 * Software SME in cfg80211, using auth/assoc/deauth calls to the
25 * driver. This is is for implementing nl80211's connect/disconnect
26 * and wireless extensions (if configured.)
27 */
28
29 struct cfg80211_conn {
30 struct cfg80211_connect_params params;
31 /* these are sub-states of the _CONNECTING sme_state */
32 enum {
33 CFG80211_CONN_SCANNING,
34 CFG80211_CONN_SCAN_AGAIN,
35 CFG80211_CONN_AUTHENTICATE_NEXT,
36 CFG80211_CONN_AUTHENTICATING,
37 CFG80211_CONN_AUTH_FAILED,
38 CFG80211_CONN_ASSOCIATE_NEXT,
39 CFG80211_CONN_ASSOCIATING,
40 CFG80211_CONN_ASSOC_FAILED,
41 CFG80211_CONN_DEAUTH,
42 CFG80211_CONN_CONNECTED,
43 } state;
44 u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
45 const u8 *ie;
46 size_t ie_len;
47 bool auto_auth, prev_bssid_valid;
48 };
49
50 static void cfg80211_sme_free(struct wireless_dev *wdev)
51 {
52 if (!wdev->conn)
53 return;
54
55 kfree(wdev->conn->ie);
56 kfree(wdev->conn);
57 wdev->conn = NULL;
58 }
59
60 static int cfg80211_conn_scan(struct wireless_dev *wdev)
61 {
62 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
63 struct cfg80211_scan_request *request;
64 int n_channels, err;
65
66 ASSERT_RTNL();
67 ASSERT_WDEV_LOCK(wdev);
68
69 if (rdev->scan_req || rdev->scan_msg)
70 return -EBUSY;
71
72 if (wdev->conn->params.channel)
73 n_channels = 1;
74 else
75 n_channels = ieee80211_get_num_supported_channels(wdev->wiphy);
76
77 request = kzalloc(sizeof(*request) + sizeof(request->ssids[0]) +
78 sizeof(request->channels[0]) * n_channels,
79 GFP_KERNEL);
80 if (!request)
81 return -ENOMEM;
82
83 if (wdev->conn->params.channel) {
84 enum nl80211_band band = wdev->conn->params.channel->band;
85 struct ieee80211_supported_band *sband =
86 wdev->wiphy->bands[band];
87
88 if (!sband) {
89 kfree(request);
90 return -EINVAL;
91 }
92 request->channels[0] = wdev->conn->params.channel;
93 request->rates[band] = (1 << sband->n_bitrates) - 1;
94 } else {
95 int i = 0, j;
96 enum nl80211_band band;
97 struct ieee80211_supported_band *bands;
98 struct ieee80211_channel *channel;
99
100 for (band = 0; band < NUM_NL80211_BANDS; band++) {
101 bands = wdev->wiphy->bands[band];
102 if (!bands)
103 continue;
104 for (j = 0; j < bands->n_channels; j++) {
105 channel = &bands->channels[j];
106 if (channel->flags & IEEE80211_CHAN_DISABLED)
107 continue;
108 request->channels[i++] = channel;
109 }
110 request->rates[band] = (1 << bands->n_bitrates) - 1;
111 }
112 n_channels = i;
113 }
114 request->n_channels = n_channels;
115 request->ssids = (void *)&request->channels[n_channels];
116 request->n_ssids = 1;
117
118 memcpy(request->ssids[0].ssid, wdev->conn->params.ssid,
119 wdev->conn->params.ssid_len);
120 request->ssids[0].ssid_len = wdev->conn->params.ssid_len;
121
122 eth_broadcast_addr(request->bssid);
123
124 request->wdev = wdev;
125 request->wiphy = &rdev->wiphy;
126 request->scan_start = jiffies;
127
128 rdev->scan_req = request;
129
130 err = rdev_scan(rdev, request);
131 if (!err) {
132 wdev->conn->state = CFG80211_CONN_SCANNING;
133 nl80211_send_scan_start(rdev, wdev);
134 dev_hold(wdev->netdev);
135 } else {
136 rdev->scan_req = NULL;
137 kfree(request);
138 }
139 return err;
140 }
141
142 static int cfg80211_conn_do_work(struct wireless_dev *wdev)
143 {
144 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
145 struct cfg80211_connect_params *params;
146 struct cfg80211_assoc_request req = {};
147 int err;
148
149 ASSERT_WDEV_LOCK(wdev);
150
151 if (!wdev->conn)
152 return 0;
153
154 params = &wdev->conn->params;
155
156 switch (wdev->conn->state) {
157 case CFG80211_CONN_SCANNING:
158 /* didn't find it during scan ... */
159 return -ENOENT;
160 case CFG80211_CONN_SCAN_AGAIN:
161 return cfg80211_conn_scan(wdev);
162 case CFG80211_CONN_AUTHENTICATE_NEXT:
163 if (WARN_ON(!rdev->ops->auth))
164 return -EOPNOTSUPP;
165 wdev->conn->state = CFG80211_CONN_AUTHENTICATING;
166 return cfg80211_mlme_auth(rdev, wdev->netdev,
167 params->channel, params->auth_type,
168 params->bssid,
169 params->ssid, params->ssid_len,
170 NULL, 0,
171 params->key, params->key_len,
172 params->key_idx, NULL, 0);
173 case CFG80211_CONN_AUTH_FAILED:
174 return -ENOTCONN;
175 case CFG80211_CONN_ASSOCIATE_NEXT:
176 if (WARN_ON(!rdev->ops->assoc))
177 return -EOPNOTSUPP;
178 wdev->conn->state = CFG80211_CONN_ASSOCIATING;
179 if (wdev->conn->prev_bssid_valid)
180 req.prev_bssid = wdev->conn->prev_bssid;
181 req.ie = params->ie;
182 req.ie_len = params->ie_len;
183 req.use_mfp = params->mfp != NL80211_MFP_NO;
184 req.crypto = params->crypto;
185 req.flags = params->flags;
186 req.ht_capa = params->ht_capa;
187 req.ht_capa_mask = params->ht_capa_mask;
188 req.vht_capa = params->vht_capa;
189 req.vht_capa_mask = params->vht_capa_mask;
190
191 err = cfg80211_mlme_assoc(rdev, wdev->netdev, params->channel,
192 params->bssid, params->ssid,
193 params->ssid_len, &req);
194 if (err)
195 cfg80211_mlme_deauth(rdev, wdev->netdev, params->bssid,
196 NULL, 0,
197 WLAN_REASON_DEAUTH_LEAVING,
198 false);
199 return err;
200 case CFG80211_CONN_ASSOC_FAILED:
201 cfg80211_mlme_deauth(rdev, wdev->netdev, params->bssid,
202 NULL, 0,
203 WLAN_REASON_DEAUTH_LEAVING, false);
204 return -ENOTCONN;
205 case CFG80211_CONN_DEAUTH:
206 cfg80211_mlme_deauth(rdev, wdev->netdev, params->bssid,
207 NULL, 0,
208 WLAN_REASON_DEAUTH_LEAVING, false);
209 /* free directly, disconnected event already sent */
210 cfg80211_sme_free(wdev);
211 return 0;
212 default:
213 return 0;
214 }
215 }
216
217 void cfg80211_conn_work(struct work_struct *work)
218 {
219 struct cfg80211_registered_device *rdev =
220 container_of(work, struct cfg80211_registered_device, conn_work);
221 struct wireless_dev *wdev;
222 u8 bssid_buf[ETH_ALEN], *bssid = NULL;
223
224 rtnl_lock();
225
226 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) {
227 if (!wdev->netdev)
228 continue;
229
230 wdev_lock(wdev);
231 if (!netif_running(wdev->netdev)) {
232 wdev_unlock(wdev);
233 continue;
234 }
235 if (!wdev->conn ||
236 wdev->conn->state == CFG80211_CONN_CONNECTED) {
237 wdev_unlock(wdev);
238 continue;
239 }
240 if (wdev->conn->params.bssid) {
241 memcpy(bssid_buf, wdev->conn->params.bssid, ETH_ALEN);
242 bssid = bssid_buf;
243 }
244 if (cfg80211_conn_do_work(wdev)) {
245 __cfg80211_connect_result(
246 wdev->netdev, bssid,
247 NULL, 0, NULL, 0, -1, false, NULL);
248 }
249 wdev_unlock(wdev);
250 }
251
252 rtnl_unlock();
253 }
254
255 /* Returned bss is reference counted and must be cleaned up appropriately. */
256 static struct cfg80211_bss *cfg80211_get_conn_bss(struct wireless_dev *wdev)
257 {
258 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
259 struct cfg80211_bss *bss;
260
261 ASSERT_WDEV_LOCK(wdev);
262
263 bss = cfg80211_get_bss(wdev->wiphy, wdev->conn->params.channel,
264 wdev->conn->params.bssid,
265 wdev->conn->params.ssid,
266 wdev->conn->params.ssid_len,
267 wdev->conn_bss_type,
268 IEEE80211_PRIVACY(wdev->conn->params.privacy));
269 if (!bss)
270 return NULL;
271
272 memcpy(wdev->conn->bssid, bss->bssid, ETH_ALEN);
273 wdev->conn->params.bssid = wdev->conn->bssid;
274 wdev->conn->params.channel = bss->channel;
275 wdev->conn->state = CFG80211_CONN_AUTHENTICATE_NEXT;
276 schedule_work(&rdev->conn_work);
277
278 return bss;
279 }
280
281 static void __cfg80211_sme_scan_done(struct net_device *dev)
282 {
283 struct wireless_dev *wdev = dev->ieee80211_ptr;
284 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
285 struct cfg80211_bss *bss;
286
287 ASSERT_WDEV_LOCK(wdev);
288
289 if (!wdev->conn)
290 return;
291
292 if (wdev->conn->state != CFG80211_CONN_SCANNING &&
293 wdev->conn->state != CFG80211_CONN_SCAN_AGAIN)
294 return;
295
296 bss = cfg80211_get_conn_bss(wdev);
297 if (bss)
298 cfg80211_put_bss(&rdev->wiphy, bss);
299 else
300 schedule_work(&rdev->conn_work);
301 }
302
303 void cfg80211_sme_scan_done(struct net_device *dev)
304 {
305 struct wireless_dev *wdev = dev->ieee80211_ptr;
306
307 wdev_lock(wdev);
308 __cfg80211_sme_scan_done(dev);
309 wdev_unlock(wdev);
310 }
311
312 void cfg80211_sme_rx_auth(struct wireless_dev *wdev, const u8 *buf, size_t len)
313 {
314 struct wiphy *wiphy = wdev->wiphy;
315 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
316 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)buf;
317 u16 status_code = le16_to_cpu(mgmt->u.auth.status_code);
318
319 ASSERT_WDEV_LOCK(wdev);
320
321 if (!wdev->conn || wdev->conn->state == CFG80211_CONN_CONNECTED)
322 return;
323
324 if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG &&
325 wdev->conn->auto_auth &&
326 wdev->conn->params.auth_type != NL80211_AUTHTYPE_NETWORK_EAP) {
327 /* select automatically between only open, shared, leap */
328 switch (wdev->conn->params.auth_type) {
329 case NL80211_AUTHTYPE_OPEN_SYSTEM:
330 if (wdev->connect_keys)
331 wdev->conn->params.auth_type =
332 NL80211_AUTHTYPE_SHARED_KEY;
333 else
334 wdev->conn->params.auth_type =
335 NL80211_AUTHTYPE_NETWORK_EAP;
336 break;
337 case NL80211_AUTHTYPE_SHARED_KEY:
338 wdev->conn->params.auth_type =
339 NL80211_AUTHTYPE_NETWORK_EAP;
340 break;
341 default:
342 /* huh? */
343 wdev->conn->params.auth_type =
344 NL80211_AUTHTYPE_OPEN_SYSTEM;
345 break;
346 }
347 wdev->conn->state = CFG80211_CONN_AUTHENTICATE_NEXT;
348 schedule_work(&rdev->conn_work);
349 } else if (status_code != WLAN_STATUS_SUCCESS) {
350 __cfg80211_connect_result(wdev->netdev, mgmt->bssid,
351 NULL, 0, NULL, 0,
352 status_code, false, NULL);
353 } else if (wdev->conn->state == CFG80211_CONN_AUTHENTICATING) {
354 wdev->conn->state = CFG80211_CONN_ASSOCIATE_NEXT;
355 schedule_work(&rdev->conn_work);
356 }
357 }
358
359 bool cfg80211_sme_rx_assoc_resp(struct wireless_dev *wdev, u16 status)
360 {
361 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
362
363 if (!wdev->conn)
364 return false;
365
366 if (status == WLAN_STATUS_SUCCESS) {
367 wdev->conn->state = CFG80211_CONN_CONNECTED;
368 return false;
369 }
370
371 if (wdev->conn->prev_bssid_valid) {
372 /*
373 * Some stupid APs don't accept reassoc, so we
374 * need to fall back to trying regular assoc;
375 * return true so no event is sent to userspace.
376 */
377 wdev->conn->prev_bssid_valid = false;
378 wdev->conn->state = CFG80211_CONN_ASSOCIATE_NEXT;
379 schedule_work(&rdev->conn_work);
380 return true;
381 }
382
383 wdev->conn->state = CFG80211_CONN_ASSOC_FAILED;
384 schedule_work(&rdev->conn_work);
385 return false;
386 }
387
388 void cfg80211_sme_deauth(struct wireless_dev *wdev)
389 {
390 cfg80211_sme_free(wdev);
391 }
392
393 void cfg80211_sme_auth_timeout(struct wireless_dev *wdev)
394 {
395 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
396
397 if (!wdev->conn)
398 return;
399
400 wdev->conn->state = CFG80211_CONN_AUTH_FAILED;
401 schedule_work(&rdev->conn_work);
402 }
403
404 void cfg80211_sme_disassoc(struct wireless_dev *wdev)
405 {
406 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
407
408 if (!wdev->conn)
409 return;
410
411 wdev->conn->state = CFG80211_CONN_DEAUTH;
412 schedule_work(&rdev->conn_work);
413 }
414
415 void cfg80211_sme_assoc_timeout(struct wireless_dev *wdev)
416 {
417 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
418
419 if (!wdev->conn)
420 return;
421
422 wdev->conn->state = CFG80211_CONN_ASSOC_FAILED;
423 schedule_work(&rdev->conn_work);
424 }
425
426 static int cfg80211_sme_get_conn_ies(struct wireless_dev *wdev,
427 const u8 *ies, size_t ies_len,
428 const u8 **out_ies, size_t *out_ies_len)
429 {
430 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
431 u8 *buf;
432 size_t offs;
433
434 if (!rdev->wiphy.extended_capabilities_len ||
435 (ies && cfg80211_find_ie(WLAN_EID_EXT_CAPABILITY, ies, ies_len))) {
436 *out_ies = kmemdup(ies, ies_len, GFP_KERNEL);
437 if (!*out_ies)
438 return -ENOMEM;
439 *out_ies_len = ies_len;
440 return 0;
441 }
442
443 buf = kmalloc(ies_len + rdev->wiphy.extended_capabilities_len + 2,
444 GFP_KERNEL);
445 if (!buf)
446 return -ENOMEM;
447
448 if (ies_len) {
449 static const u8 before_extcapa[] = {
450 /* not listing IEs expected to be created by driver */
451 WLAN_EID_RSN,
452 WLAN_EID_QOS_CAPA,
453 WLAN_EID_RRM_ENABLED_CAPABILITIES,
454 WLAN_EID_MOBILITY_DOMAIN,
455 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
456 WLAN_EID_BSS_COEX_2040,
457 };
458
459 offs = ieee80211_ie_split(ies, ies_len, before_extcapa,
460 ARRAY_SIZE(before_extcapa), 0);
461 memcpy(buf, ies, offs);
462 /* leave a whole for extended capabilities IE */
463 memcpy(buf + offs + rdev->wiphy.extended_capabilities_len + 2,
464 ies + offs, ies_len - offs);
465 } else {
466 offs = 0;
467 }
468
469 /* place extended capabilities IE (with only driver capabilities) */
470 buf[offs] = WLAN_EID_EXT_CAPABILITY;
471 buf[offs + 1] = rdev->wiphy.extended_capabilities_len;
472 memcpy(buf + offs + 2,
473 rdev->wiphy.extended_capabilities,
474 rdev->wiphy.extended_capabilities_len);
475
476 *out_ies = buf;
477 *out_ies_len = ies_len + rdev->wiphy.extended_capabilities_len + 2;
478
479 return 0;
480 }
481
482 static int cfg80211_sme_connect(struct wireless_dev *wdev,
483 struct cfg80211_connect_params *connect,
484 const u8 *prev_bssid)
485 {
486 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
487 struct cfg80211_bss *bss;
488 int err;
489
490 if (!rdev->ops->auth || !rdev->ops->assoc)
491 return -EOPNOTSUPP;
492
493 if (wdev->current_bss) {
494 if (!prev_bssid)
495 return -EALREADY;
496 if (prev_bssid &&
497 !ether_addr_equal(prev_bssid, wdev->current_bss->pub.bssid))
498 return -ENOTCONN;
499 cfg80211_unhold_bss(wdev->current_bss);
500 cfg80211_put_bss(wdev->wiphy, &wdev->current_bss->pub);
501 wdev->current_bss = NULL;
502
503 cfg80211_sme_free(wdev);
504 }
505
506 if (WARN_ON(wdev->conn))
507 return -EINPROGRESS;
508
509 wdev->conn = kzalloc(sizeof(*wdev->conn), GFP_KERNEL);
510 if (!wdev->conn)
511 return -ENOMEM;
512
513 /*
514 * Copy all parameters, and treat explicitly IEs, BSSID, SSID.
515 */
516 memcpy(&wdev->conn->params, connect, sizeof(*connect));
517 if (connect->bssid) {
518 wdev->conn->params.bssid = wdev->conn->bssid;
519 memcpy(wdev->conn->bssid, connect->bssid, ETH_ALEN);
520 }
521
522 if (cfg80211_sme_get_conn_ies(wdev, connect->ie, connect->ie_len,
523 &wdev->conn->ie,
524 &wdev->conn->params.ie_len)) {
525 kfree(wdev->conn);
526 wdev->conn = NULL;
527 return -ENOMEM;
528 }
529 wdev->conn->params.ie = wdev->conn->ie;
530
531 if (connect->auth_type == NL80211_AUTHTYPE_AUTOMATIC) {
532 wdev->conn->auto_auth = true;
533 /* start with open system ... should mostly work */
534 wdev->conn->params.auth_type =
535 NL80211_AUTHTYPE_OPEN_SYSTEM;
536 } else {
537 wdev->conn->auto_auth = false;
538 }
539
540 wdev->conn->params.ssid = wdev->ssid;
541 wdev->conn->params.ssid_len = wdev->ssid_len;
542
543 /* see if we have the bss already */
544 bss = cfg80211_get_conn_bss(wdev);
545
546 if (prev_bssid) {
547 memcpy(wdev->conn->prev_bssid, prev_bssid, ETH_ALEN);
548 wdev->conn->prev_bssid_valid = true;
549 }
550
551 /* we're good if we have a matching bss struct */
552 if (bss) {
553 err = cfg80211_conn_do_work(wdev);
554 cfg80211_put_bss(wdev->wiphy, bss);
555 } else {
556 /* otherwise we'll need to scan for the AP first */
557 err = cfg80211_conn_scan(wdev);
558
559 /*
560 * If we can't scan right now, then we need to scan again
561 * after the current scan finished, since the parameters
562 * changed (unless we find a good AP anyway).
563 */
564 if (err == -EBUSY) {
565 err = 0;
566 wdev->conn->state = CFG80211_CONN_SCAN_AGAIN;
567 }
568 }
569
570 if (err)
571 cfg80211_sme_free(wdev);
572
573 return err;
574 }
575
576 static int cfg80211_sme_disconnect(struct wireless_dev *wdev, u16 reason)
577 {
578 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
579 int err;
580
581 if (!wdev->conn)
582 return 0;
583
584 if (!rdev->ops->deauth)
585 return -EOPNOTSUPP;
586
587 if (wdev->conn->state == CFG80211_CONN_SCANNING ||
588 wdev->conn->state == CFG80211_CONN_SCAN_AGAIN) {
589 err = 0;
590 goto out;
591 }
592
593 /* wdev->conn->params.bssid must be set if > SCANNING */
594 err = cfg80211_mlme_deauth(rdev, wdev->netdev,
595 wdev->conn->params.bssid,
596 NULL, 0, reason, false);
597 out:
598 cfg80211_sme_free(wdev);
599 return err;
600 }
601
602 /*
603 * code shared for in-device and software SME
604 */
605
606 static bool cfg80211_is_all_idle(void)
607 {
608 struct cfg80211_registered_device *rdev;
609 struct wireless_dev *wdev;
610 bool is_all_idle = true;
611
612 /*
613 * All devices must be idle as otherwise if you are actively
614 * scanning some new beacon hints could be learned and would
615 * count as new regulatory hints.
616 */
617 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
618 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) {
619 wdev_lock(wdev);
620 if (wdev->conn || wdev->current_bss)
621 is_all_idle = false;
622 wdev_unlock(wdev);
623 }
624 }
625
626 return is_all_idle;
627 }
628
629 static void disconnect_work(struct work_struct *work)
630 {
631 rtnl_lock();
632 if (cfg80211_is_all_idle())
633 regulatory_hint_disconnect();
634 rtnl_unlock();
635 }
636
637 static DECLARE_WORK(cfg80211_disconnect_work, disconnect_work);
638
639
640 /*
641 * API calls for drivers implementing connect/disconnect and
642 * SME event handling
643 */
644
645 /* This method must consume bss one way or another */
646 void __cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
647 const u8 *req_ie, size_t req_ie_len,
648 const u8 *resp_ie, size_t resp_ie_len,
649 int status, bool wextev,
650 struct cfg80211_bss *bss)
651 {
652 struct wireless_dev *wdev = dev->ieee80211_ptr;
653 const u8 *country_ie;
654 #ifdef CONFIG_CFG80211_WEXT
655 union iwreq_data wrqu;
656 #endif
657
658 ASSERT_WDEV_LOCK(wdev);
659
660 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION &&
661 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)) {
662 cfg80211_put_bss(wdev->wiphy, bss);
663 return;
664 }
665
666 nl80211_send_connect_result(wiphy_to_rdev(wdev->wiphy), dev,
667 bssid, req_ie, req_ie_len,
668 resp_ie, resp_ie_len,
669 status, GFP_KERNEL);
670
671 #ifdef CONFIG_CFG80211_WEXT
672 if (wextev) {
673 if (req_ie && status == WLAN_STATUS_SUCCESS) {
674 memset(&wrqu, 0, sizeof(wrqu));
675 wrqu.data.length = req_ie_len;
676 wireless_send_event(dev, IWEVASSOCREQIE, &wrqu, req_ie);
677 }
678
679 if (resp_ie && status == WLAN_STATUS_SUCCESS) {
680 memset(&wrqu, 0, sizeof(wrqu));
681 wrqu.data.length = resp_ie_len;
682 wireless_send_event(dev, IWEVASSOCRESPIE, &wrqu, resp_ie);
683 }
684
685 memset(&wrqu, 0, sizeof(wrqu));
686 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
687 if (bssid && status == WLAN_STATUS_SUCCESS) {
688 memcpy(wrqu.ap_addr.sa_data, bssid, ETH_ALEN);
689 memcpy(wdev->wext.prev_bssid, bssid, ETH_ALEN);
690 wdev->wext.prev_bssid_valid = true;
691 }
692 wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
693 }
694 #endif
695
696 if (!bss && (status == WLAN_STATUS_SUCCESS)) {
697 WARN_ON_ONCE(!wiphy_to_rdev(wdev->wiphy)->ops->connect);
698 bss = cfg80211_get_bss(wdev->wiphy, NULL, bssid,
699 wdev->ssid, wdev->ssid_len,
700 wdev->conn_bss_type,
701 IEEE80211_PRIVACY_ANY);
702 if (bss)
703 cfg80211_hold_bss(bss_from_pub(bss));
704 }
705
706 if (wdev->current_bss) {
707 cfg80211_unhold_bss(wdev->current_bss);
708 cfg80211_put_bss(wdev->wiphy, &wdev->current_bss->pub);
709 wdev->current_bss = NULL;
710 }
711
712 if (status != WLAN_STATUS_SUCCESS) {
713 kzfree(wdev->connect_keys);
714 wdev->connect_keys = NULL;
715 wdev->ssid_len = 0;
716 if (bss) {
717 cfg80211_unhold_bss(bss_from_pub(bss));
718 cfg80211_put_bss(wdev->wiphy, bss);
719 }
720 cfg80211_sme_free(wdev);
721 return;
722 }
723
724 if (WARN_ON(!bss))
725 return;
726
727 wdev->current_bss = bss_from_pub(bss);
728
729 if (!(wdev->wiphy->flags & WIPHY_FLAG_HAS_STATIC_WEP))
730 cfg80211_upload_connect_keys(wdev);
731
732 rcu_read_lock();
733 country_ie = ieee80211_bss_get_ie(bss, WLAN_EID_COUNTRY);
734 if (!country_ie) {
735 rcu_read_unlock();
736 return;
737 }
738
739 country_ie = kmemdup(country_ie, 2 + country_ie[1], GFP_ATOMIC);
740 rcu_read_unlock();
741
742 if (!country_ie)
743 return;
744
745 /*
746 * ieee80211_bss_get_ie() ensures we can access:
747 * - country_ie + 2, the start of the country ie data, and
748 * - and country_ie[1] which is the IE length
749 */
750 regulatory_hint_country_ie(wdev->wiphy, bss->channel->band,
751 country_ie + 2, country_ie[1]);
752 kfree(country_ie);
753 }
754
755 /* Consumes bss object one way or another */
756 void cfg80211_connect_bss(struct net_device *dev, const u8 *bssid,
757 struct cfg80211_bss *bss, const u8 *req_ie,
758 size_t req_ie_len, const u8 *resp_ie,
759 size_t resp_ie_len, int status, gfp_t gfp)
760 {
761 struct wireless_dev *wdev = dev->ieee80211_ptr;
762 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
763 struct cfg80211_event *ev;
764 unsigned long flags;
765
766 if (bss) {
767 /* Make sure the bss entry provided by the driver is valid. */
768 struct cfg80211_internal_bss *ibss = bss_from_pub(bss);
769
770 if (WARN_ON(list_empty(&ibss->list))) {
771 cfg80211_put_bss(wdev->wiphy, bss);
772 return;
773 }
774 }
775
776 ev = kzalloc(sizeof(*ev) + req_ie_len + resp_ie_len, gfp);
777 if (!ev) {
778 cfg80211_put_bss(wdev->wiphy, bss);
779 return;
780 }
781
782 ev->type = EVENT_CONNECT_RESULT;
783 if (bssid)
784 memcpy(ev->cr.bssid, bssid, ETH_ALEN);
785 if (req_ie_len) {
786 ev->cr.req_ie = ((u8 *)ev) + sizeof(*ev);
787 ev->cr.req_ie_len = req_ie_len;
788 memcpy((void *)ev->cr.req_ie, req_ie, req_ie_len);
789 }
790 if (resp_ie_len) {
791 ev->cr.resp_ie = ((u8 *)ev) + sizeof(*ev) + req_ie_len;
792 ev->cr.resp_ie_len = resp_ie_len;
793 memcpy((void *)ev->cr.resp_ie, resp_ie, resp_ie_len);
794 }
795 if (bss)
796 cfg80211_hold_bss(bss_from_pub(bss));
797 ev->cr.bss = bss;
798 ev->cr.status = status;
799
800 spin_lock_irqsave(&wdev->event_lock, flags);
801 list_add_tail(&ev->list, &wdev->event_list);
802 spin_unlock_irqrestore(&wdev->event_lock, flags);
803 queue_work(cfg80211_wq, &rdev->event_work);
804 }
805 EXPORT_SYMBOL(cfg80211_connect_bss);
806
807 /* Consumes bss object one way or another */
808 void __cfg80211_roamed(struct wireless_dev *wdev,
809 struct cfg80211_bss *bss,
810 const u8 *req_ie, size_t req_ie_len,
811 const u8 *resp_ie, size_t resp_ie_len)
812 {
813 #ifdef CONFIG_CFG80211_WEXT
814 union iwreq_data wrqu;
815 #endif
816 ASSERT_WDEV_LOCK(wdev);
817
818 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION &&
819 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT))
820 goto out;
821
822 if (WARN_ON(!wdev->current_bss))
823 goto out;
824
825 cfg80211_unhold_bss(wdev->current_bss);
826 cfg80211_put_bss(wdev->wiphy, &wdev->current_bss->pub);
827 wdev->current_bss = NULL;
828
829 cfg80211_hold_bss(bss_from_pub(bss));
830 wdev->current_bss = bss_from_pub(bss);
831
832 nl80211_send_roamed(wiphy_to_rdev(wdev->wiphy),
833 wdev->netdev, bss->bssid,
834 req_ie, req_ie_len, resp_ie, resp_ie_len,
835 GFP_KERNEL);
836
837 #ifdef CONFIG_CFG80211_WEXT
838 if (req_ie) {
839 memset(&wrqu, 0, sizeof(wrqu));
840 wrqu.data.length = req_ie_len;
841 wireless_send_event(wdev->netdev, IWEVASSOCREQIE,
842 &wrqu, req_ie);
843 }
844
845 if (resp_ie) {
846 memset(&wrqu, 0, sizeof(wrqu));
847 wrqu.data.length = resp_ie_len;
848 wireless_send_event(wdev->netdev, IWEVASSOCRESPIE,
849 &wrqu, resp_ie);
850 }
851
852 memset(&wrqu, 0, sizeof(wrqu));
853 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
854 memcpy(wrqu.ap_addr.sa_data, bss->bssid, ETH_ALEN);
855 memcpy(wdev->wext.prev_bssid, bss->bssid, ETH_ALEN);
856 wdev->wext.prev_bssid_valid = true;
857 wireless_send_event(wdev->netdev, SIOCGIWAP, &wrqu, NULL);
858 #endif
859
860 return;
861 out:
862 cfg80211_put_bss(wdev->wiphy, bss);
863 }
864
865 void cfg80211_roamed(struct net_device *dev,
866 struct ieee80211_channel *channel,
867 const u8 *bssid,
868 const u8 *req_ie, size_t req_ie_len,
869 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp)
870 {
871 struct wireless_dev *wdev = dev->ieee80211_ptr;
872 struct cfg80211_bss *bss;
873
874 bss = cfg80211_get_bss(wdev->wiphy, channel, bssid, wdev->ssid,
875 wdev->ssid_len,
876 wdev->conn_bss_type, IEEE80211_PRIVACY_ANY);
877 if (WARN_ON(!bss))
878 return;
879
880 cfg80211_roamed_bss(dev, bss, req_ie, req_ie_len, resp_ie,
881 resp_ie_len, gfp);
882 }
883 EXPORT_SYMBOL(cfg80211_roamed);
884
885 /* Consumes bss object one way or another */
886 void cfg80211_roamed_bss(struct net_device *dev,
887 struct cfg80211_bss *bss, const u8 *req_ie,
888 size_t req_ie_len, const u8 *resp_ie,
889 size_t resp_ie_len, gfp_t gfp)
890 {
891 struct wireless_dev *wdev = dev->ieee80211_ptr;
892 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
893 struct cfg80211_event *ev;
894 unsigned long flags;
895
896 if (WARN_ON(!bss))
897 return;
898
899 ev = kzalloc(sizeof(*ev) + req_ie_len + resp_ie_len, gfp);
900 if (!ev) {
901 cfg80211_put_bss(wdev->wiphy, bss);
902 return;
903 }
904
905 ev->type = EVENT_ROAMED;
906 ev->rm.req_ie = ((u8 *)ev) + sizeof(*ev);
907 ev->rm.req_ie_len = req_ie_len;
908 memcpy((void *)ev->rm.req_ie, req_ie, req_ie_len);
909 ev->rm.resp_ie = ((u8 *)ev) + sizeof(*ev) + req_ie_len;
910 ev->rm.resp_ie_len = resp_ie_len;
911 memcpy((void *)ev->rm.resp_ie, resp_ie, resp_ie_len);
912 ev->rm.bss = bss;
913
914 spin_lock_irqsave(&wdev->event_lock, flags);
915 list_add_tail(&ev->list, &wdev->event_list);
916 spin_unlock_irqrestore(&wdev->event_lock, flags);
917 queue_work(cfg80211_wq, &rdev->event_work);
918 }
919 EXPORT_SYMBOL(cfg80211_roamed_bss);
920
921 void __cfg80211_disconnected(struct net_device *dev, const u8 *ie,
922 size_t ie_len, u16 reason, bool from_ap)
923 {
924 struct wireless_dev *wdev = dev->ieee80211_ptr;
925 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
926 int i;
927 #ifdef CONFIG_CFG80211_WEXT
928 union iwreq_data wrqu;
929 #endif
930
931 ASSERT_WDEV_LOCK(wdev);
932
933 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION &&
934 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT))
935 return;
936
937 if (wdev->current_bss) {
938 cfg80211_unhold_bss(wdev->current_bss);
939 cfg80211_put_bss(wdev->wiphy, &wdev->current_bss->pub);
940 }
941
942 wdev->current_bss = NULL;
943 wdev->ssid_len = 0;
944
945 nl80211_send_disconnected(rdev, dev, reason, ie, ie_len, from_ap);
946
947 /* stop critical protocol if supported */
948 if (rdev->ops->crit_proto_stop && rdev->crit_proto_nlportid) {
949 rdev->crit_proto_nlportid = 0;
950 rdev_crit_proto_stop(rdev, wdev);
951 }
952
953 /*
954 * Delete all the keys ... pairwise keys can't really
955 * exist any more anyway, but default keys might.
956 */
957 if (rdev->ops->del_key)
958 for (i = 0; i < 6; i++)
959 rdev_del_key(rdev, dev, i, false, NULL);
960
961 rdev_set_qos_map(rdev, dev, NULL);
962
963 #ifdef CONFIG_CFG80211_WEXT
964 memset(&wrqu, 0, sizeof(wrqu));
965 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
966 wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
967 wdev->wext.connect.ssid_len = 0;
968 #endif
969
970 schedule_work(&cfg80211_disconnect_work);
971 }
972
973 void cfg80211_disconnected(struct net_device *dev, u16 reason,
974 const u8 *ie, size_t ie_len,
975 bool locally_generated, gfp_t gfp)
976 {
977 struct wireless_dev *wdev = dev->ieee80211_ptr;
978 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
979 struct cfg80211_event *ev;
980 unsigned long flags;
981
982 ev = kzalloc(sizeof(*ev) + ie_len, gfp);
983 if (!ev)
984 return;
985
986 ev->type = EVENT_DISCONNECTED;
987 ev->dc.ie = ((u8 *)ev) + sizeof(*ev);
988 ev->dc.ie_len = ie_len;
989 memcpy((void *)ev->dc.ie, ie, ie_len);
990 ev->dc.reason = reason;
991 ev->dc.locally_generated = locally_generated;
992
993 spin_lock_irqsave(&wdev->event_lock, flags);
994 list_add_tail(&ev->list, &wdev->event_list);
995 spin_unlock_irqrestore(&wdev->event_lock, flags);
996 queue_work(cfg80211_wq, &rdev->event_work);
997 }
998 EXPORT_SYMBOL(cfg80211_disconnected);
999
1000 /*
1001 * API calls for nl80211/wext compatibility code
1002 */
1003 int cfg80211_connect(struct cfg80211_registered_device *rdev,
1004 struct net_device *dev,
1005 struct cfg80211_connect_params *connect,
1006 struct cfg80211_cached_keys *connkeys,
1007 const u8 *prev_bssid)
1008 {
1009 struct wireless_dev *wdev = dev->ieee80211_ptr;
1010 int err;
1011
1012 ASSERT_WDEV_LOCK(wdev);
1013
1014 if (WARN_ON(wdev->connect_keys)) {
1015 kzfree(wdev->connect_keys);
1016 wdev->connect_keys = NULL;
1017 }
1018
1019 cfg80211_oper_and_ht_capa(&connect->ht_capa_mask,
1020 rdev->wiphy.ht_capa_mod_mask);
1021
1022 if (connkeys && connkeys->def >= 0) {
1023 int idx;
1024 u32 cipher;
1025
1026 idx = connkeys->def;
1027 cipher = connkeys->params[idx].cipher;
1028 /* If given a WEP key we may need it for shared key auth */
1029 if (cipher == WLAN_CIPHER_SUITE_WEP40 ||
1030 cipher == WLAN_CIPHER_SUITE_WEP104) {
1031 connect->key_idx = idx;
1032 connect->key = connkeys->params[idx].key;
1033 connect->key_len = connkeys->params[idx].key_len;
1034
1035 /*
1036 * If ciphers are not set (e.g. when going through
1037 * iwconfig), we have to set them appropriately here.
1038 */
1039 if (connect->crypto.cipher_group == 0)
1040 connect->crypto.cipher_group = cipher;
1041
1042 if (connect->crypto.n_ciphers_pairwise == 0) {
1043 connect->crypto.n_ciphers_pairwise = 1;
1044 connect->crypto.ciphers_pairwise[0] = cipher;
1045 }
1046 }
1047
1048 connect->crypto.wep_keys = connkeys->params;
1049 connect->crypto.wep_tx_key = connkeys->def;
1050 } else {
1051 if (WARN_ON(connkeys))
1052 return -EINVAL;
1053 }
1054
1055 wdev->connect_keys = connkeys;
1056 memcpy(wdev->ssid, connect->ssid, connect->ssid_len);
1057 wdev->ssid_len = connect->ssid_len;
1058
1059 wdev->conn_bss_type = connect->pbss ? IEEE80211_BSS_TYPE_PBSS :
1060 IEEE80211_BSS_TYPE_ESS;
1061
1062 if (!rdev->ops->connect)
1063 err = cfg80211_sme_connect(wdev, connect, prev_bssid);
1064 else
1065 err = rdev_connect(rdev, dev, connect);
1066
1067 if (err) {
1068 wdev->connect_keys = NULL;
1069 wdev->ssid_len = 0;
1070 return err;
1071 }
1072
1073 return 0;
1074 }
1075
1076 int cfg80211_disconnect(struct cfg80211_registered_device *rdev,
1077 struct net_device *dev, u16 reason, bool wextev)
1078 {
1079 struct wireless_dev *wdev = dev->ieee80211_ptr;
1080 int err = 0;
1081
1082 ASSERT_WDEV_LOCK(wdev);
1083
1084 kzfree(wdev->connect_keys);
1085 wdev->connect_keys = NULL;
1086
1087 if (wdev->conn)
1088 err = cfg80211_sme_disconnect(wdev, reason);
1089 else if (!rdev->ops->disconnect)
1090 cfg80211_mlme_down(rdev, dev);
1091 else if (wdev->ssid_len)
1092 err = rdev_disconnect(rdev, dev, reason);
1093
1094 return err;
1095 }