2 * SME code for cfg80211's connect emulation.
4 * Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
5 * Copyright (C) 2009 Intel Corporation. All rights reserved.
8 #include <linux/etherdevice.h>
9 #include <linux/if_arp.h>
10 #include <linux/slab.h>
11 #include <linux/workqueue.h>
12 #include <linux/wireless.h>
13 #include <net/iw_handler.h>
14 #include <net/cfg80211.h>
15 #include <net/rtnetlink.h>
19 struct cfg80211_conn
{
20 struct cfg80211_connect_params params
;
21 /* these are sub-states of the _CONNECTING sme_state */
24 CFG80211_CONN_SCANNING
,
25 CFG80211_CONN_SCAN_AGAIN
,
26 CFG80211_CONN_AUTHENTICATE_NEXT
,
27 CFG80211_CONN_AUTHENTICATING
,
28 CFG80211_CONN_ASSOCIATE_NEXT
,
29 CFG80211_CONN_ASSOCIATING
,
30 CFG80211_CONN_DEAUTH_ASSOC_FAIL
,
32 u8 bssid
[ETH_ALEN
], prev_bssid
[ETH_ALEN
];
35 bool auto_auth
, prev_bssid_valid
;
38 static bool cfg80211_is_all_idle(void)
40 struct cfg80211_registered_device
*rdev
;
41 struct wireless_dev
*wdev
;
42 bool is_all_idle
= true;
44 mutex_lock(&cfg80211_mutex
);
47 * All devices must be idle as otherwise if you are actively
48 * scanning some new beacon hints could be learned and would
49 * count as new regulatory hints.
51 list_for_each_entry(rdev
, &cfg80211_rdev_list
, list
) {
52 cfg80211_lock_rdev(rdev
);
53 list_for_each_entry(wdev
, &rdev
->netdev_list
, list
) {
55 if (wdev
->sme_state
!= CFG80211_SME_IDLE
)
59 cfg80211_unlock_rdev(rdev
);
62 mutex_unlock(&cfg80211_mutex
);
67 static void disconnect_work(struct work_struct
*work
)
69 if (!cfg80211_is_all_idle())
72 regulatory_hint_disconnect();
75 static DECLARE_WORK(cfg80211_disconnect_work
, disconnect_work
);
77 static int cfg80211_conn_scan(struct wireless_dev
*wdev
)
79 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
80 struct cfg80211_scan_request
*request
;
84 ASSERT_RDEV_LOCK(rdev
);
85 ASSERT_WDEV_LOCK(wdev
);
90 if (wdev
->conn
->params
.channel
) {
93 enum ieee80211_band band
;
96 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
97 if (!wdev
->wiphy
->bands
[band
])
99 n_channels
+= wdev
->wiphy
->bands
[band
]->n_channels
;
102 request
= kzalloc(sizeof(*request
) + sizeof(request
->ssids
[0]) +
103 sizeof(request
->channels
[0]) * n_channels
,
108 if (wdev
->conn
->params
.channel
)
109 request
->channels
[0] = wdev
->conn
->params
.channel
;
112 enum ieee80211_band band
;
114 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
115 if (!wdev
->wiphy
->bands
[band
])
117 for (j
= 0; j
< wdev
->wiphy
->bands
[band
]->n_channels
;
119 request
->channels
[i
] =
120 &wdev
->wiphy
->bands
[band
]->channels
[j
];
123 request
->n_channels
= n_channels
;
124 request
->ssids
= (void *)&request
->channels
[n_channels
];
125 request
->n_ssids
= 1;
127 memcpy(request
->ssids
[0].ssid
, wdev
->conn
->params
.ssid
,
128 wdev
->conn
->params
.ssid_len
);
129 request
->ssids
[0].ssid_len
= wdev
->conn
->params
.ssid_len
;
131 request
->dev
= wdev
->netdev
;
132 request
->wiphy
= &rdev
->wiphy
;
134 rdev
->scan_req
= request
;
136 err
= rdev
->ops
->scan(wdev
->wiphy
, wdev
->netdev
, request
);
138 wdev
->conn
->state
= CFG80211_CONN_SCANNING
;
139 nl80211_send_scan_start(rdev
, wdev
->netdev
);
140 dev_hold(wdev
->netdev
);
142 rdev
->scan_req
= NULL
;
148 static int cfg80211_conn_do_work(struct wireless_dev
*wdev
)
150 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
151 struct cfg80211_connect_params
*params
;
152 const u8
*prev_bssid
= NULL
;
155 ASSERT_WDEV_LOCK(wdev
);
160 params
= &wdev
->conn
->params
;
162 switch (wdev
->conn
->state
) {
163 case CFG80211_CONN_SCAN_AGAIN
:
164 return cfg80211_conn_scan(wdev
);
165 case CFG80211_CONN_AUTHENTICATE_NEXT
:
166 BUG_ON(!rdev
->ops
->auth
);
167 wdev
->conn
->state
= CFG80211_CONN_AUTHENTICATING
;
168 return __cfg80211_mlme_auth(rdev
, wdev
->netdev
,
169 params
->channel
, params
->auth_type
,
171 params
->ssid
, params
->ssid_len
,
173 params
->key
, params
->key_len
,
174 params
->key_idx
, false);
175 case CFG80211_CONN_ASSOCIATE_NEXT
:
176 BUG_ON(!rdev
->ops
->assoc
);
177 wdev
->conn
->state
= CFG80211_CONN_ASSOCIATING
;
178 if (wdev
->conn
->prev_bssid_valid
)
179 prev_bssid
= wdev
->conn
->prev_bssid
;
180 err
= __cfg80211_mlme_assoc(rdev
, wdev
->netdev
,
181 params
->channel
, params
->bssid
,
183 params
->ssid
, params
->ssid_len
,
184 params
->ie
, params
->ie_len
,
185 false, ¶ms
->crypto
);
187 __cfg80211_mlme_deauth(rdev
, wdev
->netdev
, params
->bssid
,
189 WLAN_REASON_DEAUTH_LEAVING
,
192 case CFG80211_CONN_DEAUTH_ASSOC_FAIL
:
193 __cfg80211_mlme_deauth(rdev
, wdev
->netdev
, params
->bssid
,
195 WLAN_REASON_DEAUTH_LEAVING
, false);
196 /* return an error so that we call __cfg80211_connect_result() */
203 void cfg80211_conn_work(struct work_struct
*work
)
205 struct cfg80211_registered_device
*rdev
=
206 container_of(work
, struct cfg80211_registered_device
, conn_work
);
207 struct wireless_dev
*wdev
;
208 u8 bssid_buf
[ETH_ALEN
], *bssid
= NULL
;
211 cfg80211_lock_rdev(rdev
);
212 mutex_lock(&rdev
->devlist_mtx
);
214 list_for_each_entry(wdev
, &rdev
->netdev_list
, list
) {
216 if (!netif_running(wdev
->netdev
)) {
220 if (wdev
->sme_state
!= CFG80211_SME_CONNECTING
) {
224 if (wdev
->conn
->params
.bssid
) {
225 memcpy(bssid_buf
, wdev
->conn
->params
.bssid
, ETH_ALEN
);
228 if (cfg80211_conn_do_work(wdev
))
229 __cfg80211_connect_result(
232 WLAN_STATUS_UNSPECIFIED_FAILURE
,
237 mutex_unlock(&rdev
->devlist_mtx
);
238 cfg80211_unlock_rdev(rdev
);
242 static struct cfg80211_bss
*cfg80211_get_conn_bss(struct wireless_dev
*wdev
)
244 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
245 struct cfg80211_bss
*bss
;
246 u16 capa
= WLAN_CAPABILITY_ESS
;
248 ASSERT_WDEV_LOCK(wdev
);
250 if (wdev
->conn
->params
.privacy
)
251 capa
|= WLAN_CAPABILITY_PRIVACY
;
253 bss
= cfg80211_get_bss(wdev
->wiphy
, NULL
, wdev
->conn
->params
.bssid
,
254 wdev
->conn
->params
.ssid
,
255 wdev
->conn
->params
.ssid_len
,
256 WLAN_CAPABILITY_ESS
| WLAN_CAPABILITY_PRIVACY
,
261 memcpy(wdev
->conn
->bssid
, bss
->bssid
, ETH_ALEN
);
262 wdev
->conn
->params
.bssid
= wdev
->conn
->bssid
;
263 wdev
->conn
->params
.channel
= bss
->channel
;
264 wdev
->conn
->state
= CFG80211_CONN_AUTHENTICATE_NEXT
;
265 schedule_work(&rdev
->conn_work
);
270 static void __cfg80211_sme_scan_done(struct net_device
*dev
)
272 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
273 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
274 struct cfg80211_bss
*bss
;
276 ASSERT_WDEV_LOCK(wdev
);
278 if (wdev
->sme_state
!= CFG80211_SME_CONNECTING
)
284 if (wdev
->conn
->state
!= CFG80211_CONN_SCANNING
&&
285 wdev
->conn
->state
!= CFG80211_CONN_SCAN_AGAIN
)
288 bss
= cfg80211_get_conn_bss(wdev
);
290 cfg80211_put_bss(bss
);
293 if (wdev
->conn
->state
== CFG80211_CONN_SCAN_AGAIN
)
294 schedule_work(&rdev
->conn_work
);
296 __cfg80211_connect_result(
298 wdev
->conn
->params
.bssid
,
300 WLAN_STATUS_UNSPECIFIED_FAILURE
,
305 void cfg80211_sme_scan_done(struct net_device
*dev
)
307 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
309 mutex_lock(&wiphy_to_dev(wdev
->wiphy
)->devlist_mtx
);
311 __cfg80211_sme_scan_done(dev
);
313 mutex_unlock(&wiphy_to_dev(wdev
->wiphy
)->devlist_mtx
);
316 void cfg80211_sme_rx_auth(struct net_device
*dev
,
317 const u8
*buf
, size_t len
)
319 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
320 struct wiphy
*wiphy
= wdev
->wiphy
;
321 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wiphy
);
322 struct ieee80211_mgmt
*mgmt
= (struct ieee80211_mgmt
*)buf
;
323 u16 status_code
= le16_to_cpu(mgmt
->u
.auth
.status_code
);
325 ASSERT_WDEV_LOCK(wdev
);
327 /* should only RX auth frames when connecting */
328 if (wdev
->sme_state
!= CFG80211_SME_CONNECTING
)
331 if (WARN_ON(!wdev
->conn
))
334 if (status_code
== WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG
&&
335 wdev
->conn
->auto_auth
&&
336 wdev
->conn
->params
.auth_type
!= NL80211_AUTHTYPE_NETWORK_EAP
) {
337 /* select automatically between only open, shared, leap */
338 switch (wdev
->conn
->params
.auth_type
) {
339 case NL80211_AUTHTYPE_OPEN_SYSTEM
:
340 if (wdev
->connect_keys
)
341 wdev
->conn
->params
.auth_type
=
342 NL80211_AUTHTYPE_SHARED_KEY
;
344 wdev
->conn
->params
.auth_type
=
345 NL80211_AUTHTYPE_NETWORK_EAP
;
347 case NL80211_AUTHTYPE_SHARED_KEY
:
348 wdev
->conn
->params
.auth_type
=
349 NL80211_AUTHTYPE_NETWORK_EAP
;
353 wdev
->conn
->params
.auth_type
=
354 NL80211_AUTHTYPE_OPEN_SYSTEM
;
357 wdev
->conn
->state
= CFG80211_CONN_AUTHENTICATE_NEXT
;
358 schedule_work(&rdev
->conn_work
);
359 } else if (status_code
!= WLAN_STATUS_SUCCESS
) {
360 __cfg80211_connect_result(dev
, mgmt
->bssid
, NULL
, 0, NULL
, 0,
361 status_code
, false, NULL
);
362 } else if (wdev
->sme_state
== CFG80211_SME_CONNECTING
&&
363 wdev
->conn
->state
== CFG80211_CONN_AUTHENTICATING
) {
364 wdev
->conn
->state
= CFG80211_CONN_ASSOCIATE_NEXT
;
365 schedule_work(&rdev
->conn_work
);
369 bool cfg80211_sme_failed_reassoc(struct wireless_dev
*wdev
)
371 struct wiphy
*wiphy
= wdev
->wiphy
;
372 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wiphy
);
374 if (WARN_ON(!wdev
->conn
))
377 if (!wdev
->conn
->prev_bssid_valid
)
381 * Some stupid APs don't accept reassoc, so we
382 * need to fall back to trying regular assoc.
384 wdev
->conn
->prev_bssid_valid
= false;
385 wdev
->conn
->state
= CFG80211_CONN_ASSOCIATE_NEXT
;
386 schedule_work(&rdev
->conn_work
);
391 void cfg80211_sme_failed_assoc(struct wireless_dev
*wdev
)
393 struct wiphy
*wiphy
= wdev
->wiphy
;
394 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wiphy
);
396 wdev
->conn
->state
= CFG80211_CONN_DEAUTH_ASSOC_FAIL
;
397 schedule_work(&rdev
->conn_work
);
400 void __cfg80211_connect_result(struct net_device
*dev
, const u8
*bssid
,
401 const u8
*req_ie
, size_t req_ie_len
,
402 const u8
*resp_ie
, size_t resp_ie_len
,
403 u16 status
, bool wextev
,
404 struct cfg80211_bss
*bss
)
406 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
408 #ifdef CONFIG_CFG80211_WEXT
409 union iwreq_data wrqu
;
412 ASSERT_WDEV_LOCK(wdev
);
414 if (WARN_ON(wdev
->iftype
!= NL80211_IFTYPE_STATION
&&
415 wdev
->iftype
!= NL80211_IFTYPE_P2P_CLIENT
))
418 if (wdev
->sme_state
!= CFG80211_SME_CONNECTING
)
421 nl80211_send_connect_result(wiphy_to_dev(wdev
->wiphy
), dev
,
422 bssid
, req_ie
, req_ie_len
,
423 resp_ie
, resp_ie_len
,
426 #ifdef CONFIG_CFG80211_WEXT
428 if (req_ie
&& status
== WLAN_STATUS_SUCCESS
) {
429 memset(&wrqu
, 0, sizeof(wrqu
));
430 wrqu
.data
.length
= req_ie_len
;
431 wireless_send_event(dev
, IWEVASSOCREQIE
, &wrqu
, req_ie
);
434 if (resp_ie
&& status
== WLAN_STATUS_SUCCESS
) {
435 memset(&wrqu
, 0, sizeof(wrqu
));
436 wrqu
.data
.length
= resp_ie_len
;
437 wireless_send_event(dev
, IWEVASSOCRESPIE
, &wrqu
, resp_ie
);
440 memset(&wrqu
, 0, sizeof(wrqu
));
441 wrqu
.ap_addr
.sa_family
= ARPHRD_ETHER
;
442 if (bssid
&& status
== WLAN_STATUS_SUCCESS
) {
443 memcpy(wrqu
.ap_addr
.sa_data
, bssid
, ETH_ALEN
);
444 memcpy(wdev
->wext
.prev_bssid
, bssid
, ETH_ALEN
);
445 wdev
->wext
.prev_bssid_valid
= true;
447 wireless_send_event(dev
, SIOCGIWAP
, &wrqu
, NULL
);
451 if (wdev
->current_bss
) {
452 cfg80211_unhold_bss(wdev
->current_bss
);
453 cfg80211_put_bss(&wdev
->current_bss
->pub
);
454 wdev
->current_bss
= NULL
;
458 wdev
->conn
->state
= CFG80211_CONN_IDLE
;
460 if (status
!= WLAN_STATUS_SUCCESS
) {
461 wdev
->sme_state
= CFG80211_SME_IDLE
;
463 kfree(wdev
->conn
->ie
);
466 kfree(wdev
->connect_keys
);
467 wdev
->connect_keys
= NULL
;
473 bss
= cfg80211_get_bss(wdev
->wiphy
, NULL
, bssid
,
474 wdev
->ssid
, wdev
->ssid_len
,
476 WLAN_CAPABILITY_ESS
);
481 cfg80211_hold_bss(bss_from_pub(bss
));
482 wdev
->current_bss
= bss_from_pub(bss
);
484 wdev
->sme_state
= CFG80211_SME_CONNECTED
;
485 cfg80211_upload_connect_keys(wdev
);
487 country_ie
= (u8
*) ieee80211_bss_get_ie(bss
, WLAN_EID_COUNTRY
);
493 * ieee80211_bss_get_ie() ensures we can access:
494 * - country_ie + 2, the start of the country ie data, and
495 * - and country_ie[1] which is the IE length
497 regulatory_hint_11d(wdev
->wiphy
,
503 void cfg80211_connect_result(struct net_device
*dev
, const u8
*bssid
,
504 const u8
*req_ie
, size_t req_ie_len
,
505 const u8
*resp_ie
, size_t resp_ie_len
,
506 u16 status
, gfp_t gfp
)
508 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
509 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
510 struct cfg80211_event
*ev
;
513 CFG80211_DEV_WARN_ON(wdev
->sme_state
!= CFG80211_SME_CONNECTING
);
515 ev
= kzalloc(sizeof(*ev
) + req_ie_len
+ resp_ie_len
, gfp
);
519 ev
->type
= EVENT_CONNECT_RESULT
;
521 memcpy(ev
->cr
.bssid
, bssid
, ETH_ALEN
);
523 ev
->cr
.req_ie
= ((u8
*)ev
) + sizeof(*ev
);
524 ev
->cr
.req_ie_len
= req_ie_len
;
525 memcpy((void *)ev
->cr
.req_ie
, req_ie
, req_ie_len
);
528 ev
->cr
.resp_ie
= ((u8
*)ev
) + sizeof(*ev
) + req_ie_len
;
529 ev
->cr
.resp_ie_len
= resp_ie_len
;
530 memcpy((void *)ev
->cr
.resp_ie
, resp_ie
, resp_ie_len
);
532 ev
->cr
.status
= status
;
534 spin_lock_irqsave(&wdev
->event_lock
, flags
);
535 list_add_tail(&ev
->list
, &wdev
->event_list
);
536 spin_unlock_irqrestore(&wdev
->event_lock
, flags
);
537 queue_work(cfg80211_wq
, &rdev
->event_work
);
539 EXPORT_SYMBOL(cfg80211_connect_result
);
541 void __cfg80211_roamed(struct wireless_dev
*wdev
, const u8
*bssid
,
542 const u8
*req_ie
, size_t req_ie_len
,
543 const u8
*resp_ie
, size_t resp_ie_len
)
545 struct cfg80211_bss
*bss
;
546 #ifdef CONFIG_CFG80211_WEXT
547 union iwreq_data wrqu
;
550 ASSERT_WDEV_LOCK(wdev
);
552 if (WARN_ON(wdev
->iftype
!= NL80211_IFTYPE_STATION
&&
553 wdev
->iftype
!= NL80211_IFTYPE_P2P_CLIENT
))
556 if (wdev
->sme_state
!= CFG80211_SME_CONNECTED
)
559 /* internal error -- how did we get to CONNECTED w/o BSS? */
560 if (WARN_ON(!wdev
->current_bss
)) {
564 cfg80211_unhold_bss(wdev
->current_bss
);
565 cfg80211_put_bss(&wdev
->current_bss
->pub
);
566 wdev
->current_bss
= NULL
;
568 bss
= cfg80211_get_bss(wdev
->wiphy
, NULL
, bssid
,
569 wdev
->ssid
, wdev
->ssid_len
,
570 WLAN_CAPABILITY_ESS
, WLAN_CAPABILITY_ESS
);
575 cfg80211_hold_bss(bss_from_pub(bss
));
576 wdev
->current_bss
= bss_from_pub(bss
);
578 nl80211_send_roamed(wiphy_to_dev(wdev
->wiphy
), wdev
->netdev
, bssid
,
579 req_ie
, req_ie_len
, resp_ie
, resp_ie_len
,
582 #ifdef CONFIG_CFG80211_WEXT
584 memset(&wrqu
, 0, sizeof(wrqu
));
585 wrqu
.data
.length
= req_ie_len
;
586 wireless_send_event(wdev
->netdev
, IWEVASSOCREQIE
,
591 memset(&wrqu
, 0, sizeof(wrqu
));
592 wrqu
.data
.length
= resp_ie_len
;
593 wireless_send_event(wdev
->netdev
, IWEVASSOCRESPIE
,
597 memset(&wrqu
, 0, sizeof(wrqu
));
598 wrqu
.ap_addr
.sa_family
= ARPHRD_ETHER
;
599 memcpy(wrqu
.ap_addr
.sa_data
, bssid
, ETH_ALEN
);
600 memcpy(wdev
->wext
.prev_bssid
, bssid
, ETH_ALEN
);
601 wdev
->wext
.prev_bssid_valid
= true;
602 wireless_send_event(wdev
->netdev
, SIOCGIWAP
, &wrqu
, NULL
);
606 void cfg80211_roamed(struct net_device
*dev
, const u8
*bssid
,
607 const u8
*req_ie
, size_t req_ie_len
,
608 const u8
*resp_ie
, size_t resp_ie_len
, gfp_t gfp
)
610 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
611 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
612 struct cfg80211_event
*ev
;
615 CFG80211_DEV_WARN_ON(wdev
->sme_state
!= CFG80211_SME_CONNECTED
);
617 ev
= kzalloc(sizeof(*ev
) + req_ie_len
+ resp_ie_len
, gfp
);
621 ev
->type
= EVENT_ROAMED
;
622 memcpy(ev
->rm
.bssid
, bssid
, ETH_ALEN
);
623 ev
->rm
.req_ie
= ((u8
*)ev
) + sizeof(*ev
);
624 ev
->rm
.req_ie_len
= req_ie_len
;
625 memcpy((void *)ev
->rm
.req_ie
, req_ie
, req_ie_len
);
626 ev
->rm
.resp_ie
= ((u8
*)ev
) + sizeof(*ev
) + req_ie_len
;
627 ev
->rm
.resp_ie_len
= resp_ie_len
;
628 memcpy((void *)ev
->rm
.resp_ie
, resp_ie
, resp_ie_len
);
630 spin_lock_irqsave(&wdev
->event_lock
, flags
);
631 list_add_tail(&ev
->list
, &wdev
->event_list
);
632 spin_unlock_irqrestore(&wdev
->event_lock
, flags
);
633 queue_work(cfg80211_wq
, &rdev
->event_work
);
635 EXPORT_SYMBOL(cfg80211_roamed
);
637 void __cfg80211_disconnected(struct net_device
*dev
, const u8
*ie
,
638 size_t ie_len
, u16 reason
, bool from_ap
)
640 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
641 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
643 #ifdef CONFIG_CFG80211_WEXT
644 union iwreq_data wrqu
;
647 ASSERT_WDEV_LOCK(wdev
);
649 if (WARN_ON(wdev
->iftype
!= NL80211_IFTYPE_STATION
&&
650 wdev
->iftype
!= NL80211_IFTYPE_P2P_CLIENT
))
653 if (wdev
->sme_state
!= CFG80211_SME_CONNECTED
)
656 if (wdev
->current_bss
) {
657 cfg80211_unhold_bss(wdev
->current_bss
);
658 cfg80211_put_bss(&wdev
->current_bss
->pub
);
661 wdev
->current_bss
= NULL
;
662 wdev
->sme_state
= CFG80211_SME_IDLE
;
669 kfree(wdev
->conn
->ie
);
670 wdev
->conn
->ie
= NULL
;
675 * If this disconnect was due to a disassoc, we
676 * we might still have an auth BSS around. For
677 * the userspace SME that's currently expected,
678 * but for the kernel SME (nl80211 CONNECT or
679 * wireless extensions) we want to clear up all
682 for (i
= 0; i
< MAX_AUTH_BSSES
; i
++) {
683 if (!wdev
->auth_bsses
[i
])
685 bssid
= wdev
->auth_bsses
[i
]->pub
.bssid
;
686 ret
= __cfg80211_mlme_deauth(rdev
, dev
, bssid
, NULL
, 0,
687 WLAN_REASON_DEAUTH_LEAVING
,
689 WARN(ret
, "deauth failed: %d\n", ret
);
693 nl80211_send_disconnected(rdev
, dev
, reason
, ie
, ie_len
, from_ap
);
696 * Delete all the keys ... pairwise keys can't really
697 * exist any more anyway, but default keys might.
699 if (rdev
->ops
->del_key
)
700 for (i
= 0; i
< 6; i
++)
701 rdev
->ops
->del_key(wdev
->wiphy
, dev
, i
, false, NULL
);
703 #ifdef CONFIG_CFG80211_WEXT
704 memset(&wrqu
, 0, sizeof(wrqu
));
705 wrqu
.ap_addr
.sa_family
= ARPHRD_ETHER
;
706 wireless_send_event(dev
, SIOCGIWAP
, &wrqu
, NULL
);
707 wdev
->wext
.connect
.ssid_len
= 0;
710 schedule_work(&cfg80211_disconnect_work
);
713 void cfg80211_disconnected(struct net_device
*dev
, u16 reason
,
714 u8
*ie
, size_t ie_len
, gfp_t gfp
)
716 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
717 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
718 struct cfg80211_event
*ev
;
721 CFG80211_DEV_WARN_ON(wdev
->sme_state
!= CFG80211_SME_CONNECTED
);
723 ev
= kzalloc(sizeof(*ev
) + ie_len
, gfp
);
727 ev
->type
= EVENT_DISCONNECTED
;
728 ev
->dc
.ie
= ((u8
*)ev
) + sizeof(*ev
);
729 ev
->dc
.ie_len
= ie_len
;
730 memcpy((void *)ev
->dc
.ie
, ie
, ie_len
);
731 ev
->dc
.reason
= reason
;
733 spin_lock_irqsave(&wdev
->event_lock
, flags
);
734 list_add_tail(&ev
->list
, &wdev
->event_list
);
735 spin_unlock_irqrestore(&wdev
->event_lock
, flags
);
736 queue_work(cfg80211_wq
, &rdev
->event_work
);
738 EXPORT_SYMBOL(cfg80211_disconnected
);
740 int __cfg80211_connect(struct cfg80211_registered_device
*rdev
,
741 struct net_device
*dev
,
742 struct cfg80211_connect_params
*connect
,
743 struct cfg80211_cached_keys
*connkeys
,
744 const u8
*prev_bssid
)
746 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
747 struct cfg80211_bss
*bss
= NULL
;
750 ASSERT_WDEV_LOCK(wdev
);
752 if (wdev
->sme_state
!= CFG80211_SME_IDLE
)
755 if (WARN_ON(wdev
->connect_keys
)) {
756 kfree(wdev
->connect_keys
);
757 wdev
->connect_keys
= NULL
;
760 if (connkeys
&& connkeys
->def
>= 0) {
765 cipher
= connkeys
->params
[idx
].cipher
;
766 /* If given a WEP key we may need it for shared key auth */
767 if (cipher
== WLAN_CIPHER_SUITE_WEP40
||
768 cipher
== WLAN_CIPHER_SUITE_WEP104
) {
769 connect
->key_idx
= idx
;
770 connect
->key
= connkeys
->params
[idx
].key
;
771 connect
->key_len
= connkeys
->params
[idx
].key_len
;
774 * If ciphers are not set (e.g. when going through
775 * iwconfig), we have to set them appropriately here.
777 if (connect
->crypto
.cipher_group
== 0)
778 connect
->crypto
.cipher_group
= cipher
;
780 if (connect
->crypto
.n_ciphers_pairwise
== 0) {
781 connect
->crypto
.n_ciphers_pairwise
= 1;
782 connect
->crypto
.ciphers_pairwise
[0] = cipher
;
787 if (!rdev
->ops
->connect
) {
788 if (!rdev
->ops
->auth
|| !rdev
->ops
->assoc
)
791 if (WARN_ON(wdev
->conn
))
794 wdev
->conn
= kzalloc(sizeof(*wdev
->conn
), GFP_KERNEL
);
799 * Copy all parameters, and treat explicitly IEs, BSSID, SSID.
801 memcpy(&wdev
->conn
->params
, connect
, sizeof(*connect
));
802 if (connect
->bssid
) {
803 wdev
->conn
->params
.bssid
= wdev
->conn
->bssid
;
804 memcpy(wdev
->conn
->bssid
, connect
->bssid
, ETH_ALEN
);
808 wdev
->conn
->ie
= kmemdup(connect
->ie
, connect
->ie_len
,
810 wdev
->conn
->params
.ie
= wdev
->conn
->ie
;
811 if (!wdev
->conn
->ie
) {
818 if (connect
->auth_type
== NL80211_AUTHTYPE_AUTOMATIC
) {
819 wdev
->conn
->auto_auth
= true;
820 /* start with open system ... should mostly work */
821 wdev
->conn
->params
.auth_type
=
822 NL80211_AUTHTYPE_OPEN_SYSTEM
;
824 wdev
->conn
->auto_auth
= false;
827 memcpy(wdev
->ssid
, connect
->ssid
, connect
->ssid_len
);
828 wdev
->ssid_len
= connect
->ssid_len
;
829 wdev
->conn
->params
.ssid
= wdev
->ssid
;
830 wdev
->conn
->params
.ssid_len
= connect
->ssid_len
;
832 /* see if we have the bss already */
833 bss
= cfg80211_get_conn_bss(wdev
);
835 wdev
->sme_state
= CFG80211_SME_CONNECTING
;
836 wdev
->connect_keys
= connkeys
;
839 memcpy(wdev
->conn
->prev_bssid
, prev_bssid
, ETH_ALEN
);
840 wdev
->conn
->prev_bssid_valid
= true;
843 /* we're good if we have a matching bss struct */
845 wdev
->conn
->state
= CFG80211_CONN_AUTHENTICATE_NEXT
;
846 err
= cfg80211_conn_do_work(wdev
);
847 cfg80211_put_bss(bss
);
849 /* otherwise we'll need to scan for the AP first */
850 err
= cfg80211_conn_scan(wdev
);
852 * If we can't scan right now, then we need to scan again
853 * after the current scan finished, since the parameters
854 * changed (unless we find a good AP anyway).
858 wdev
->conn
->state
= CFG80211_CONN_SCAN_AGAIN
;
862 kfree(wdev
->conn
->ie
);
865 wdev
->sme_state
= CFG80211_SME_IDLE
;
866 wdev
->connect_keys
= NULL
;
872 wdev
->sme_state
= CFG80211_SME_CONNECTING
;
873 wdev
->connect_keys
= connkeys
;
874 err
= rdev
->ops
->connect(&rdev
->wiphy
, dev
, connect
);
876 wdev
->connect_keys
= NULL
;
877 wdev
->sme_state
= CFG80211_SME_IDLE
;
881 memcpy(wdev
->ssid
, connect
->ssid
, connect
->ssid_len
);
882 wdev
->ssid_len
= connect
->ssid_len
;
888 int cfg80211_connect(struct cfg80211_registered_device
*rdev
,
889 struct net_device
*dev
,
890 struct cfg80211_connect_params
*connect
,
891 struct cfg80211_cached_keys
*connkeys
)
895 mutex_lock(&rdev
->devlist_mtx
);
896 wdev_lock(dev
->ieee80211_ptr
);
897 err
= __cfg80211_connect(rdev
, dev
, connect
, connkeys
, NULL
);
898 wdev_unlock(dev
->ieee80211_ptr
);
899 mutex_unlock(&rdev
->devlist_mtx
);
904 int __cfg80211_disconnect(struct cfg80211_registered_device
*rdev
,
905 struct net_device
*dev
, u16 reason
, bool wextev
)
907 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
910 ASSERT_WDEV_LOCK(wdev
);
912 if (wdev
->sme_state
== CFG80211_SME_IDLE
)
915 kfree(wdev
->connect_keys
);
916 wdev
->connect_keys
= NULL
;
918 if (!rdev
->ops
->disconnect
) {
919 if (!rdev
->ops
->deauth
)
922 /* was it connected by userspace SME? */
924 cfg80211_mlme_down(rdev
, dev
);
928 if (wdev
->sme_state
== CFG80211_SME_CONNECTING
&&
929 (wdev
->conn
->state
== CFG80211_CONN_SCANNING
||
930 wdev
->conn
->state
== CFG80211_CONN_SCAN_AGAIN
)) {
931 wdev
->sme_state
= CFG80211_SME_IDLE
;
932 kfree(wdev
->conn
->ie
);
939 /* wdev->conn->params.bssid must be set if > SCANNING */
940 err
= __cfg80211_mlme_deauth(rdev
, dev
,
941 wdev
->conn
->params
.bssid
,
942 NULL
, 0, reason
, false);
946 err
= rdev
->ops
->disconnect(&rdev
->wiphy
, dev
, reason
);
951 if (wdev
->sme_state
== CFG80211_SME_CONNECTED
)
952 __cfg80211_disconnected(dev
, NULL
, 0, 0, false);
953 else if (wdev
->sme_state
== CFG80211_SME_CONNECTING
)
954 __cfg80211_connect_result(dev
, NULL
, NULL
, 0, NULL
, 0,
955 WLAN_STATUS_UNSPECIFIED_FAILURE
,
961 int cfg80211_disconnect(struct cfg80211_registered_device
*rdev
,
962 struct net_device
*dev
,
963 u16 reason
, bool wextev
)
967 wdev_lock(dev
->ieee80211_ptr
);
968 err
= __cfg80211_disconnect(rdev
, dev
, reason
, wextev
);
969 wdev_unlock(dev
->ieee80211_ptr
);
974 void cfg80211_sme_disassoc(struct net_device
*dev
, int idx
)
976 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
977 struct cfg80211_registered_device
*rdev
= wiphy_to_dev(wdev
->wiphy
);
980 ASSERT_WDEV_LOCK(wdev
);
985 if (wdev
->conn
->state
== CFG80211_CONN_IDLE
)
989 * Ok, so the association was made by this SME -- we don't
990 * want it any more so deauthenticate too.
993 if (!wdev
->auth_bsses
[idx
])
996 memcpy(bssid
, wdev
->auth_bsses
[idx
]->pub
.bssid
, ETH_ALEN
);
997 if (__cfg80211_mlme_deauth(rdev
, dev
, bssid
,
998 NULL
, 0, WLAN_REASON_DEAUTH_LEAVING
,
1000 /* whatever -- assume gone anyway */
1001 cfg80211_unhold_bss(wdev
->auth_bsses
[idx
]);
1002 cfg80211_put_bss(&wdev
->auth_bsses
[idx
]->pub
);
1003 wdev
->auth_bsses
[idx
] = NULL
;