diff options
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r-- | net/mac80211/mlme.c | 53 |
1 files changed, 39 insertions, 14 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index dc5049d58c51..6dc7b5ad9a41 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c | |||
@@ -426,7 +426,8 @@ static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata, | |||
426 | memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs)); | 426 | memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs)); |
427 | } | 427 | } |
428 | 428 | ||
429 | ieee80211_tx_skb(sdata, skb, 0); | 429 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
430 | ieee80211_tx_skb(sdata, skb); | ||
430 | } | 431 | } |
431 | 432 | ||
432 | 433 | ||
@@ -458,10 +459,18 @@ static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata, | |||
458 | mgmt->u.deauth.reason_code = cpu_to_le16(reason); | 459 | mgmt->u.deauth.reason_code = cpu_to_le16(reason); |
459 | 460 | ||
460 | if (stype == IEEE80211_STYPE_DEAUTH) | 461 | if (stype == IEEE80211_STYPE_DEAUTH) |
461 | cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len, cookie); | 462 | if (cookie) |
463 | __cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len); | ||
464 | else | ||
465 | cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len); | ||
462 | else | 466 | else |
463 | cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len, cookie); | 467 | if (cookie) |
464 | ieee80211_tx_skb(sdata, skb, ifmgd->flags & IEEE80211_STA_MFP_ENABLED); | 468 | __cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len); |
469 | else | ||
470 | cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len); | ||
471 | if (!(ifmgd->flags & IEEE80211_STA_MFP_ENABLED)) | ||
472 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; | ||
473 | ieee80211_tx_skb(sdata, skb); | ||
465 | } | 474 | } |
466 | 475 | ||
467 | void ieee80211_send_pspoll(struct ieee80211_local *local, | 476 | void ieee80211_send_pspoll(struct ieee80211_local *local, |
@@ -492,7 +501,8 @@ void ieee80211_send_pspoll(struct ieee80211_local *local, | |||
492 | memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN); | 501 | memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN); |
493 | memcpy(pspoll->ta, sdata->dev->dev_addr, ETH_ALEN); | 502 | memcpy(pspoll->ta, sdata->dev->dev_addr, ETH_ALEN); |
494 | 503 | ||
495 | ieee80211_tx_skb(sdata, skb, 0); | 504 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
505 | ieee80211_tx_skb(sdata, skb); | ||
496 | } | 506 | } |
497 | 507 | ||
498 | void ieee80211_send_nullfunc(struct ieee80211_local *local, | 508 | void ieee80211_send_nullfunc(struct ieee80211_local *local, |
@@ -525,7 +535,8 @@ void ieee80211_send_nullfunc(struct ieee80211_local *local, | |||
525 | memcpy(nullfunc->addr2, sdata->dev->dev_addr, ETH_ALEN); | 535 | memcpy(nullfunc->addr2, sdata->dev->dev_addr, ETH_ALEN); |
526 | memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN); | 536 | memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN); |
527 | 537 | ||
528 | ieee80211_tx_skb(sdata, skb, 0); | 538 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
539 | ieee80211_tx_skb(sdata, skb); | ||
529 | } | 540 | } |
530 | 541 | ||
531 | /* spectrum management related things */ | 542 | /* spectrum management related things */ |
@@ -923,7 +934,7 @@ static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata, | |||
923 | ieee80211_recalc_ps(local, -1); | 934 | ieee80211_recalc_ps(local, -1); |
924 | mutex_unlock(&local->iflist_mtx); | 935 | mutex_unlock(&local->iflist_mtx); |
925 | 936 | ||
926 | netif_tx_start_all_queues(sdata->dev); | 937 | netif_start_queue(sdata->dev); |
927 | netif_carrier_on(sdata->dev); | 938 | netif_carrier_on(sdata->dev); |
928 | } | 939 | } |
929 | 940 | ||
@@ -1055,7 +1066,7 @@ static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata, | |||
1055 | * time -- we don't want the scan code to enable queues. | 1066 | * time -- we don't want the scan code to enable queues. |
1056 | */ | 1067 | */ |
1057 | 1068 | ||
1058 | netif_tx_stop_all_queues(sdata->dev); | 1069 | netif_stop_queue(sdata->dev); |
1059 | netif_carrier_off(sdata->dev); | 1070 | netif_carrier_off(sdata->dev); |
1060 | 1071 | ||
1061 | rcu_read_lock(); | 1072 | rcu_read_lock(); |
@@ -1892,7 +1903,6 @@ ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata, | |||
1892 | fc = le16_to_cpu(mgmt->frame_control); | 1903 | fc = le16_to_cpu(mgmt->frame_control); |
1893 | 1904 | ||
1894 | switch (fc & IEEE80211_FCTL_STYPE) { | 1905 | switch (fc & IEEE80211_FCTL_STYPE) { |
1895 | case IEEE80211_STYPE_PROBE_REQ: | ||
1896 | case IEEE80211_STYPE_PROBE_RESP: | 1906 | case IEEE80211_STYPE_PROBE_RESP: |
1897 | case IEEE80211_STYPE_BEACON: | 1907 | case IEEE80211_STYPE_BEACON: |
1898 | case IEEE80211_STYPE_AUTH: | 1908 | case IEEE80211_STYPE_AUTH: |
@@ -1958,12 +1968,10 @@ static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata, | |||
1958 | /* no action */ | 1968 | /* no action */ |
1959 | break; | 1969 | break; |
1960 | case RX_MGMT_CFG80211_DEAUTH: | 1970 | case RX_MGMT_CFG80211_DEAUTH: |
1961 | cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len, | 1971 | cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len); |
1962 | NULL); | ||
1963 | break; | 1972 | break; |
1964 | case RX_MGMT_CFG80211_DISASSOC: | 1973 | case RX_MGMT_CFG80211_DISASSOC: |
1965 | cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len, | 1974 | cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len); |
1966 | NULL); | ||
1967 | break; | 1975 | break; |
1968 | default: | 1976 | default: |
1969 | WARN(1, "unexpected: %d", rma); | 1977 | WARN(1, "unexpected: %d", rma); |
@@ -2018,7 +2026,7 @@ static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata, | |||
2018 | cfg80211_send_rx_assoc(sdata->dev, (u8 *) mgmt, skb->len); | 2026 | cfg80211_send_rx_assoc(sdata->dev, (u8 *) mgmt, skb->len); |
2019 | break; | 2027 | break; |
2020 | case RX_MGMT_CFG80211_DEAUTH: | 2028 | case RX_MGMT_CFG80211_DEAUTH: |
2021 | cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len, NULL); | 2029 | cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len); |
2022 | break; | 2030 | break; |
2023 | default: | 2031 | default: |
2024 | WARN(1, "unexpected: %d", rma); | 2032 | WARN(1, "unexpected: %d", rma); |
@@ -2500,6 +2508,7 @@ int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata, | |||
2500 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; | 2508 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
2501 | struct ieee80211_mgd_work *wk; | 2509 | struct ieee80211_mgd_work *wk; |
2502 | const u8 *bssid = NULL; | 2510 | const u8 *bssid = NULL; |
2511 | bool not_auth_yet = false; | ||
2503 | 2512 | ||
2504 | mutex_lock(&ifmgd->mtx); | 2513 | mutex_lock(&ifmgd->mtx); |
2505 | 2514 | ||
@@ -2509,6 +2518,8 @@ int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata, | |||
2509 | } else list_for_each_entry(wk, &ifmgd->work_list, list) { | 2518 | } else list_for_each_entry(wk, &ifmgd->work_list, list) { |
2510 | if (&wk->bss->cbss == req->bss) { | 2519 | if (&wk->bss->cbss == req->bss) { |
2511 | bssid = req->bss->bssid; | 2520 | bssid = req->bss->bssid; |
2521 | if (wk->state == IEEE80211_MGD_STATE_PROBE) | ||
2522 | not_auth_yet = true; | ||
2512 | list_del(&wk->list); | 2523 | list_del(&wk->list); |
2513 | kfree(wk); | 2524 | kfree(wk); |
2514 | break; | 2525 | break; |
@@ -2516,6 +2527,20 @@ int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata, | |||
2516 | } | 2527 | } |
2517 | 2528 | ||
2518 | /* | 2529 | /* |
2530 | * If somebody requests authentication and we haven't | ||
2531 | * sent out an auth frame yet there's no need to send | ||
2532 | * out a deauth frame either. If the state was PROBE, | ||
2533 | * then this is the case. If it's AUTH we have sent a | ||
2534 | * frame, and if it's IDLE we have completed the auth | ||
2535 | * process already. | ||
2536 | */ | ||
2537 | if (not_auth_yet) { | ||
2538 | mutex_unlock(&ifmgd->mtx); | ||
2539 | __cfg80211_auth_canceled(sdata->dev, bssid); | ||
2540 | return 0; | ||
2541 | } | ||
2542 | |||
2543 | /* | ||
2519 | * cfg80211 should catch this ... but it's racy since | 2544 | * cfg80211 should catch this ... but it's racy since |
2520 | * we can receive a deauth frame, process it, hand it | 2545 | * we can receive a deauth frame, process it, hand it |
2521 | * to cfg80211 while that's in a locked section already | 2546 | * to cfg80211 while that's in a locked section already |