2 * mac80211 TDLS handling code
4 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
5 * Copyright 2014, Intel Corporation
6 * Copyright 2014 Intel Mobile Communications GmbH
8 * This file is GPLv2 as found in COPYING.
11 #include <linux/ieee80211.h>
12 #include <linux/log2.h>
13 #include <net/cfg80211.h>
14 #include "ieee80211_i.h"
15 #include "driver-ops.h"
17 /* give usermode some time for retries in setting up the TDLS session */
18 #define TDLS_PEER_SETUP_TIMEOUT (15 * HZ)
20 void ieee80211_tdls_peer_del_work(struct work_struct *wk)
22 struct ieee80211_sub_if_data *sdata;
23 struct ieee80211_local *local;
25 sdata = container_of(wk, struct ieee80211_sub_if_data,
26 u.mgd.tdls_peer_del_work.work);
29 mutex_lock(&local->mtx);
30 if (!is_zero_ether_addr(sdata->u.mgd.tdls_peer)) {
31 tdls_dbg(sdata, "TDLS del peer %pM\n", sdata->u.mgd.tdls_peer);
32 sta_info_destroy_addr(sdata, sdata->u.mgd.tdls_peer);
33 eth_zero_addr(sdata->u.mgd.tdls_peer);
35 mutex_unlock(&local->mtx);
38 static void ieee80211_tdls_add_ext_capab(struct ieee80211_local *local,
41 u8 *pos = (void *)skb_put(skb, 7);
42 bool chan_switch = local->hw.wiphy->features &
43 NL80211_FEATURE_TDLS_CHANNEL_SWITCH;
45 *pos++ = WLAN_EID_EXT_CAPABILITY;
50 *pos++ = chan_switch ? WLAN_EXT_CAPA4_TDLS_CHAN_SWITCH : 0;
51 *pos++ = WLAN_EXT_CAPA5_TDLS_ENABLED;
55 ieee80211_tdls_add_subband(struct ieee80211_sub_if_data *sdata,
56 struct sk_buff *skb, u16 start, u16 end,
59 u8 subband_cnt = 0, ch_cnt = 0;
60 struct ieee80211_channel *ch;
61 struct cfg80211_chan_def chandef;
64 for (i = start; i <= end; i += spacing) {
68 ch = ieee80211_get_channel(sdata->local->hw.wiphy, i);
70 /* we will be active on the channel */
71 cfg80211_chandef_create(&chandef, ch,
73 if (cfg80211_reg_can_beacon(sdata->local->hw.wiphy,
75 sdata->wdev.iftype)) {
78 * check if the next channel is also part of
86 * we've reached the end of a range, with allowed channels
90 u8 *pos = skb_put(skb, 2);
91 *pos++ = ieee80211_frequency_to_channel(subband_start);
99 /* all channels in the requested range are allowed - add them here */
101 u8 *pos = skb_put(skb, 2);
102 *pos++ = ieee80211_frequency_to_channel(subband_start);
112 ieee80211_tdls_add_supp_channels(struct ieee80211_sub_if_data *sdata,
116 * Add possible channels for TDLS. These are channels that are allowed
120 u8 *pos = skb_put(skb, 2);
122 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
125 * 5GHz and 2GHz channels numbers can overlap. Ignore this for now, as
126 * this doesn't happen in real world scenarios.
129 /* 2GHz, with 5MHz spacing */
130 subband_cnt = ieee80211_tdls_add_subband(sdata, skb, 2412, 2472, 5);
132 /* 5GHz, with 20MHz spacing */
133 subband_cnt += ieee80211_tdls_add_subband(sdata, skb, 5000, 5825, 20);
136 *pos = 2 * subband_cnt;
139 static void ieee80211_tdls_add_oper_classes(struct ieee80211_sub_if_data *sdata,
145 if (!ieee80211_chandef_to_operating_class(&sdata->vif.bss_conf.chandef,
149 pos = skb_put(skb, 4);
150 *pos++ = WLAN_EID_SUPPORTED_REGULATORY_CLASSES;
151 *pos++ = 2; /* len */
154 *pos++ = op_class; /* give current operating class as alternate too */
157 static void ieee80211_tdls_add_bss_coex_ie(struct sk_buff *skb)
159 u8 *pos = (void *)skb_put(skb, 3);
161 *pos++ = WLAN_EID_BSS_COEX_2040;
162 *pos++ = 1; /* len */
164 *pos++ = WLAN_BSS_COEX_INFORMATION_REQUEST;
167 static u16 ieee80211_get_tdls_sta_capab(struct ieee80211_sub_if_data *sdata,
170 struct ieee80211_local *local = sdata->local;
173 /* The capability will be 0 when sending a failure code */
174 if (status_code != 0)
178 if (ieee80211_get_sdata_band(sdata) != IEEE80211_BAND_2GHZ)
181 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
182 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
183 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
184 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
189 static void ieee80211_tdls_add_link_ie(struct ieee80211_sub_if_data *sdata,
190 struct sk_buff *skb, const u8 *peer,
193 struct ieee80211_tdls_lnkie *lnkid;
194 const u8 *init_addr, *rsp_addr;
197 init_addr = sdata->vif.addr;
201 rsp_addr = sdata->vif.addr;
204 lnkid = (void *)skb_put(skb, sizeof(struct ieee80211_tdls_lnkie));
206 lnkid->ie_type = WLAN_EID_LINK_ID;
207 lnkid->ie_len = sizeof(struct ieee80211_tdls_lnkie) - 2;
209 memcpy(lnkid->bssid, sdata->u.mgd.bssid, ETH_ALEN);
210 memcpy(lnkid->init_sta, init_addr, ETH_ALEN);
211 memcpy(lnkid->resp_sta, rsp_addr, ETH_ALEN);
215 ieee80211_tdls_add_aid(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
217 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
218 u8 *pos = (void *)skb_put(skb, 4);
220 *pos++ = WLAN_EID_AID;
221 *pos++ = 2; /* len */
222 put_unaligned_le16(ifmgd->aid, pos);
225 /* translate numbering in the WMM parameter IE to the mac80211 notation */
226 static enum ieee80211_ac_numbers ieee80211_ac_from_wmm(int ac)
232 return IEEE80211_AC_BE;
234 return IEEE80211_AC_BK;
236 return IEEE80211_AC_VI;
238 return IEEE80211_AC_VO;
242 static u8 ieee80211_wmm_aci_aifsn(int aifsn, bool acm, int aci)
249 ret |= (aci << 5) & 0x60;
253 static u8 ieee80211_wmm_ecw(u16 cw_min, u16 cw_max)
255 return ((ilog2(cw_min + 1) << 0x0) & 0x0f) |
256 ((ilog2(cw_max + 1) << 0x4) & 0xf0);
259 static void ieee80211_tdls_add_wmm_param_ie(struct ieee80211_sub_if_data *sdata,
262 struct ieee80211_wmm_param_ie *wmm;
263 struct ieee80211_tx_queue_params *txq;
266 wmm = (void *)skb_put(skb, sizeof(*wmm));
267 memset(wmm, 0, sizeof(*wmm));
269 wmm->element_id = WLAN_EID_VENDOR_SPECIFIC;
270 wmm->len = sizeof(*wmm) - 2;
272 wmm->oui[0] = 0x00; /* Microsoft OUI 00:50:F2 */
275 wmm->oui_type = 2; /* WME */
276 wmm->oui_subtype = 1; /* WME param */
277 wmm->version = 1; /* WME ver */
278 wmm->qos_info = 0; /* U-APSD not in use */
281 * Use the EDCA parameters defined for the BSS, or default if the AP
282 * doesn't support it, as mandated by 802.11-2012 section 10.22.4
284 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
285 txq = &sdata->tx_conf[ieee80211_ac_from_wmm(i)];
286 wmm->ac[i].aci_aifsn = ieee80211_wmm_aci_aifsn(txq->aifs,
288 wmm->ac[i].cw = ieee80211_wmm_ecw(txq->cw_min, txq->cw_max);
289 wmm->ac[i].txop_limit = cpu_to_le16(txq->txop);
294 ieee80211_tdls_add_setup_start_ies(struct ieee80211_sub_if_data *sdata,
295 struct sk_buff *skb, const u8 *peer,
296 u8 action_code, bool initiator,
297 const u8 *extra_ies, size_t extra_ies_len)
299 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
300 struct ieee80211_local *local = sdata->local;
301 struct ieee80211_supported_band *sband;
302 struct ieee80211_sta_ht_cap ht_cap;
303 struct ieee80211_sta_vht_cap vht_cap;
304 struct sta_info *sta = NULL;
305 size_t offset = 0, noffset;
308 ieee80211_add_srates_ie(sdata, skb, false, band);
309 ieee80211_add_ext_srates_ie(sdata, skb, false, band);
310 ieee80211_tdls_add_supp_channels(sdata, skb);
312 /* add any custom IEs that go before Extended Capabilities */
314 static const u8 before_ext_cap[] = {
317 WLAN_EID_EXT_SUPP_RATES,
318 WLAN_EID_SUPPORTED_CHANNELS,
321 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
323 ARRAY_SIZE(before_ext_cap),
325 pos = skb_put(skb, noffset - offset);
326 memcpy(pos, extra_ies + offset, noffset - offset);
330 ieee80211_tdls_add_ext_capab(local, skb);
332 /* add the QoS element if we support it */
333 if (local->hw.queues >= IEEE80211_NUM_ACS &&
334 action_code != WLAN_PUB_ACTION_TDLS_DISCOVER_RES)
335 ieee80211_add_wmm_info_ie(skb_put(skb, 9), 0); /* no U-APSD */
337 /* add any custom IEs that go before HT capabilities */
339 static const u8 before_ht_cap[] = {
342 WLAN_EID_EXT_SUPP_RATES,
343 WLAN_EID_SUPPORTED_CHANNELS,
345 WLAN_EID_EXT_CAPABILITY,
347 WLAN_EID_FAST_BSS_TRANSITION,
348 WLAN_EID_TIMEOUT_INTERVAL,
349 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
351 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
353 ARRAY_SIZE(before_ht_cap),
355 pos = skb_put(skb, noffset - offset);
356 memcpy(pos, extra_ies + offset, noffset - offset);
362 /* we should have the peer STA if we're already responding */
363 if (action_code == WLAN_TDLS_SETUP_RESPONSE) {
364 sta = sta_info_get(sdata, peer);
365 if (WARN_ON_ONCE(!sta)) {
371 ieee80211_tdls_add_oper_classes(sdata, skb);
374 * with TDLS we can switch channels, and HT-caps are not necessarily
375 * the same on all bands. The specification limits the setup to a
376 * single HT-cap, so use the current band for now.
378 sband = local->hw.wiphy->bands[band];
379 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
381 if ((action_code == WLAN_TDLS_SETUP_REQUEST ||
382 action_code == WLAN_PUB_ACTION_TDLS_DISCOVER_RES) &&
383 ht_cap.ht_supported) {
384 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
386 /* disable SMPS in TDLS initiator */
387 ht_cap.cap |= WLAN_HT_CAP_SM_PS_DISABLED
388 << IEEE80211_HT_CAP_SM_PS_SHIFT;
390 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
391 ieee80211_ie_build_ht_cap(pos, &ht_cap, ht_cap.cap);
392 } else if (action_code == WLAN_TDLS_SETUP_RESPONSE &&
393 ht_cap.ht_supported && sta->sta.ht_cap.ht_supported) {
394 /* disable SMPS in TDLS responder */
395 sta->sta.ht_cap.cap |= WLAN_HT_CAP_SM_PS_DISABLED
396 << IEEE80211_HT_CAP_SM_PS_SHIFT;
398 /* the peer caps are already intersected with our own */
399 memcpy(&ht_cap, &sta->sta.ht_cap, sizeof(ht_cap));
401 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
402 ieee80211_ie_build_ht_cap(pos, &ht_cap, ht_cap.cap);
405 if (ht_cap.ht_supported &&
406 (ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40))
407 ieee80211_tdls_add_bss_coex_ie(skb);
409 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
411 /* add any custom IEs that go before VHT capabilities */
413 static const u8 before_vht_cap[] = {
416 WLAN_EID_EXT_SUPP_RATES,
417 WLAN_EID_SUPPORTED_CHANNELS,
419 WLAN_EID_EXT_CAPABILITY,
421 WLAN_EID_FAST_BSS_TRANSITION,
422 WLAN_EID_TIMEOUT_INTERVAL,
423 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
426 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
428 ARRAY_SIZE(before_vht_cap),
430 pos = skb_put(skb, noffset - offset);
431 memcpy(pos, extra_ies + offset, noffset - offset);
435 /* build the VHT-cap similarly to the HT-cap */
436 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
437 if ((action_code == WLAN_TDLS_SETUP_REQUEST ||
438 action_code == WLAN_PUB_ACTION_TDLS_DISCOVER_RES) &&
439 vht_cap.vht_supported) {
440 ieee80211_apply_vhtcap_overrides(sdata, &vht_cap);
442 /* the AID is present only when VHT is implemented */
443 if (action_code == WLAN_TDLS_SETUP_REQUEST)
444 ieee80211_tdls_add_aid(sdata, skb);
446 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
447 ieee80211_ie_build_vht_cap(pos, &vht_cap, vht_cap.cap);
448 } else if (action_code == WLAN_TDLS_SETUP_RESPONSE &&
449 vht_cap.vht_supported && sta->sta.vht_cap.vht_supported) {
450 /* the peer caps are already intersected with our own */
451 memcpy(&vht_cap, &sta->sta.vht_cap, sizeof(vht_cap));
453 /* the AID is present only when VHT is implemented */
454 ieee80211_tdls_add_aid(sdata, skb);
456 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
457 ieee80211_ie_build_vht_cap(pos, &vht_cap, vht_cap.cap);
462 /* add any remaining IEs */
464 noffset = extra_ies_len;
465 pos = skb_put(skb, noffset - offset);
466 memcpy(pos, extra_ies + offset, noffset - offset);
472 ieee80211_tdls_add_setup_cfm_ies(struct ieee80211_sub_if_data *sdata,
473 struct sk_buff *skb, const u8 *peer,
474 bool initiator, const u8 *extra_ies,
475 size_t extra_ies_len)
477 struct ieee80211_local *local = sdata->local;
478 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
479 size_t offset = 0, noffset;
480 struct sta_info *sta, *ap_sta;
481 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
486 sta = sta_info_get(sdata, peer);
487 ap_sta = sta_info_get(sdata, ifmgd->bssid);
488 if (WARN_ON_ONCE(!sta || !ap_sta)) {
493 /* add any custom IEs that go before the QoS IE */
495 static const u8 before_qos[] = {
498 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
500 ARRAY_SIZE(before_qos),
502 pos = skb_put(skb, noffset - offset);
503 memcpy(pos, extra_ies + offset, noffset - offset);
507 /* add the QoS param IE if both the peer and we support it */
508 if (local->hw.queues >= IEEE80211_NUM_ACS && sta->sta.wme)
509 ieee80211_tdls_add_wmm_param_ie(sdata, skb);
511 /* add any custom IEs that go before HT operation */
513 static const u8 before_ht_op[] = {
516 WLAN_EID_FAST_BSS_TRANSITION,
517 WLAN_EID_TIMEOUT_INTERVAL,
519 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
521 ARRAY_SIZE(before_ht_op),
523 pos = skb_put(skb, noffset - offset);
524 memcpy(pos, extra_ies + offset, noffset - offset);
528 /* if HT support is only added in TDLS, we need an HT-operation IE */
529 if (!ap_sta->sta.ht_cap.ht_supported && sta->sta.ht_cap.ht_supported) {
530 struct ieee80211_chanctx_conf *chanctx_conf =
531 rcu_dereference(sdata->vif.chanctx_conf);
532 if (!WARN_ON(!chanctx_conf)) {
533 pos = skb_put(skb, 2 +
534 sizeof(struct ieee80211_ht_operation));
535 /* send an empty HT operation IE */
536 ieee80211_ie_build_ht_oper(pos, &sta->sta.ht_cap,
537 &chanctx_conf->def, 0);
541 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
543 /* only include VHT-operation if not on the 2.4GHz band */
544 if (band != IEEE80211_BAND_2GHZ && !ap_sta->sta.vht_cap.vht_supported &&
545 sta->sta.vht_cap.vht_supported) {
546 struct ieee80211_chanctx_conf *chanctx_conf =
547 rcu_dereference(sdata->vif.chanctx_conf);
548 if (!WARN_ON(!chanctx_conf)) {
549 pos = skb_put(skb, 2 +
550 sizeof(struct ieee80211_vht_operation));
551 ieee80211_ie_build_vht_oper(pos, &sta->sta.vht_cap,
558 /* add any remaining IEs */
560 noffset = extra_ies_len;
561 pos = skb_put(skb, noffset - offset);
562 memcpy(pos, extra_ies + offset, noffset - offset);
567 ieee80211_tdls_add_chan_switch_req_ies(struct ieee80211_sub_if_data *sdata,
568 struct sk_buff *skb, const u8 *peer,
569 bool initiator, const u8 *extra_ies,
570 size_t extra_ies_len, u8 oper_class,
571 struct cfg80211_chan_def *chandef)
573 struct ieee80211_tdls_data *tf;
574 size_t offset = 0, noffset;
577 if (WARN_ON_ONCE(!chandef))
580 tf = (void *)skb->data;
581 tf->u.chan_switch_req.target_channel =
582 ieee80211_frequency_to_channel(chandef->chan->center_freq);
583 tf->u.chan_switch_req.oper_class = oper_class;
586 static const u8 before_lnkie[] = {
587 WLAN_EID_SECONDARY_CHANNEL_OFFSET,
589 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
591 ARRAY_SIZE(before_lnkie),
593 pos = skb_put(skb, noffset - offset);
594 memcpy(pos, extra_ies + offset, noffset - offset);
598 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
600 /* add any remaining IEs */
602 noffset = extra_ies_len;
603 pos = skb_put(skb, noffset - offset);
604 memcpy(pos, extra_ies + offset, noffset - offset);
609 ieee80211_tdls_add_chan_switch_resp_ies(struct ieee80211_sub_if_data *sdata,
610 struct sk_buff *skb, const u8 *peer,
611 u16 status_code, bool initiator,
613 size_t extra_ies_len)
615 if (status_code == 0)
616 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
619 memcpy(skb_put(skb, extra_ies_len), extra_ies, extra_ies_len);
622 static void ieee80211_tdls_add_ies(struct ieee80211_sub_if_data *sdata,
623 struct sk_buff *skb, const u8 *peer,
624 u8 action_code, u16 status_code,
625 bool initiator, const u8 *extra_ies,
626 size_t extra_ies_len, u8 oper_class,
627 struct cfg80211_chan_def *chandef)
629 switch (action_code) {
630 case WLAN_TDLS_SETUP_REQUEST:
631 case WLAN_TDLS_SETUP_RESPONSE:
632 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
633 if (status_code == 0)
634 ieee80211_tdls_add_setup_start_ies(sdata, skb, peer,
640 case WLAN_TDLS_SETUP_CONFIRM:
641 if (status_code == 0)
642 ieee80211_tdls_add_setup_cfm_ies(sdata, skb, peer,
643 initiator, extra_ies,
646 case WLAN_TDLS_TEARDOWN:
647 case WLAN_TDLS_DISCOVERY_REQUEST:
649 memcpy(skb_put(skb, extra_ies_len), extra_ies,
651 if (status_code == 0 || action_code == WLAN_TDLS_TEARDOWN)
652 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
654 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
655 ieee80211_tdls_add_chan_switch_req_ies(sdata, skb, peer,
656 initiator, extra_ies,
658 oper_class, chandef);
660 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
661 ieee80211_tdls_add_chan_switch_resp_ies(sdata, skb, peer,
663 initiator, extra_ies,
671 ieee80211_prep_tdls_encap_data(struct wiphy *wiphy, struct net_device *dev,
672 const u8 *peer, u8 action_code, u8 dialog_token,
673 u16 status_code, struct sk_buff *skb)
675 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
676 struct ieee80211_tdls_data *tf;
678 tf = (void *)skb_put(skb, offsetof(struct ieee80211_tdls_data, u));
680 memcpy(tf->da, peer, ETH_ALEN);
681 memcpy(tf->sa, sdata->vif.addr, ETH_ALEN);
682 tf->ether_type = cpu_to_be16(ETH_P_TDLS);
683 tf->payload_type = WLAN_TDLS_SNAP_RFTYPE;
685 /* network header is after the ethernet header */
686 skb_set_network_header(skb, ETH_HLEN);
688 switch (action_code) {
689 case WLAN_TDLS_SETUP_REQUEST:
690 tf->category = WLAN_CATEGORY_TDLS;
691 tf->action_code = WLAN_TDLS_SETUP_REQUEST;
693 skb_put(skb, sizeof(tf->u.setup_req));
694 tf->u.setup_req.dialog_token = dialog_token;
695 tf->u.setup_req.capability =
696 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata,
699 case WLAN_TDLS_SETUP_RESPONSE:
700 tf->category = WLAN_CATEGORY_TDLS;
701 tf->action_code = WLAN_TDLS_SETUP_RESPONSE;
703 skb_put(skb, sizeof(tf->u.setup_resp));
704 tf->u.setup_resp.status_code = cpu_to_le16(status_code);
705 tf->u.setup_resp.dialog_token = dialog_token;
706 tf->u.setup_resp.capability =
707 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata,
710 case WLAN_TDLS_SETUP_CONFIRM:
711 tf->category = WLAN_CATEGORY_TDLS;
712 tf->action_code = WLAN_TDLS_SETUP_CONFIRM;
714 skb_put(skb, sizeof(tf->u.setup_cfm));
715 tf->u.setup_cfm.status_code = cpu_to_le16(status_code);
716 tf->u.setup_cfm.dialog_token = dialog_token;
718 case WLAN_TDLS_TEARDOWN:
719 tf->category = WLAN_CATEGORY_TDLS;
720 tf->action_code = WLAN_TDLS_TEARDOWN;
722 skb_put(skb, sizeof(tf->u.teardown));
723 tf->u.teardown.reason_code = cpu_to_le16(status_code);
725 case WLAN_TDLS_DISCOVERY_REQUEST:
726 tf->category = WLAN_CATEGORY_TDLS;
727 tf->action_code = WLAN_TDLS_DISCOVERY_REQUEST;
729 skb_put(skb, sizeof(tf->u.discover_req));
730 tf->u.discover_req.dialog_token = dialog_token;
732 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
733 tf->category = WLAN_CATEGORY_TDLS;
734 tf->action_code = WLAN_TDLS_CHANNEL_SWITCH_REQUEST;
736 skb_put(skb, sizeof(tf->u.chan_switch_req));
738 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
739 tf->category = WLAN_CATEGORY_TDLS;
740 tf->action_code = WLAN_TDLS_CHANNEL_SWITCH_RESPONSE;
742 skb_put(skb, sizeof(tf->u.chan_switch_resp));
743 tf->u.chan_switch_resp.status_code = cpu_to_le16(status_code);
753 ieee80211_prep_tdls_direct(struct wiphy *wiphy, struct net_device *dev,
754 const u8 *peer, u8 action_code, u8 dialog_token,
755 u16 status_code, struct sk_buff *skb)
757 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
758 struct ieee80211_mgmt *mgmt;
760 mgmt = (void *)skb_put(skb, 24);
762 memcpy(mgmt->da, peer, ETH_ALEN);
763 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
764 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
766 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
767 IEEE80211_STYPE_ACTION);
769 switch (action_code) {
770 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
771 skb_put(skb, 1 + sizeof(mgmt->u.action.u.tdls_discover_resp));
772 mgmt->u.action.category = WLAN_CATEGORY_PUBLIC;
773 mgmt->u.action.u.tdls_discover_resp.action_code =
774 WLAN_PUB_ACTION_TDLS_DISCOVER_RES;
775 mgmt->u.action.u.tdls_discover_resp.dialog_token =
777 mgmt->u.action.u.tdls_discover_resp.capability =
778 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata,
788 static struct sk_buff *
789 ieee80211_tdls_build_mgmt_packet_data(struct ieee80211_sub_if_data *sdata,
790 const u8 *peer, u8 action_code,
791 u8 dialog_token, u16 status_code,
792 bool initiator, const u8 *extra_ies,
793 size_t extra_ies_len, u8 oper_class,
794 struct cfg80211_chan_def *chandef)
796 struct ieee80211_local *local = sdata->local;
800 skb = netdev_alloc_skb(sdata->dev,
801 local->hw.extra_tx_headroom +
802 max(sizeof(struct ieee80211_mgmt),
803 sizeof(struct ieee80211_tdls_data)) +
804 50 + /* supported rates */
806 26 + /* max(WMM-info, WMM-param) */
807 2 + max(sizeof(struct ieee80211_ht_cap),
808 sizeof(struct ieee80211_ht_operation)) +
809 2 + max(sizeof(struct ieee80211_vht_cap),
810 sizeof(struct ieee80211_vht_operation)) +
811 50 + /* supported channels */
812 3 + /* 40/20 BSS coex */
814 4 + /* oper classes */
816 sizeof(struct ieee80211_tdls_lnkie));
820 skb_reserve(skb, local->hw.extra_tx_headroom);
822 switch (action_code) {
823 case WLAN_TDLS_SETUP_REQUEST:
824 case WLAN_TDLS_SETUP_RESPONSE:
825 case WLAN_TDLS_SETUP_CONFIRM:
826 case WLAN_TDLS_TEARDOWN:
827 case WLAN_TDLS_DISCOVERY_REQUEST:
828 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
829 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
830 ret = ieee80211_prep_tdls_encap_data(local->hw.wiphy,
832 action_code, dialog_token,
835 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
836 ret = ieee80211_prep_tdls_direct(local->hw.wiphy, sdata->dev,
838 dialog_token, status_code,
849 ieee80211_tdls_add_ies(sdata, skb, peer, action_code, status_code,
850 initiator, extra_ies, extra_ies_len, oper_class,
860 ieee80211_tdls_prep_mgmt_packet(struct wiphy *wiphy, struct net_device *dev,
861 const u8 *peer, u8 action_code, u8 dialog_token,
862 u16 status_code, u32 peer_capability,
863 bool initiator, const u8 *extra_ies,
864 size_t extra_ies_len, u8 oper_class,
865 struct cfg80211_chan_def *chandef)
867 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
868 struct sk_buff *skb = NULL;
869 struct sta_info *sta;
874 sta = sta_info_get(sdata, peer);
876 /* infer the initiator if we can, to support old userspace */
877 switch (action_code) {
878 case WLAN_TDLS_SETUP_REQUEST:
880 set_sta_flag(sta, WLAN_STA_TDLS_INITIATOR);
881 sta->sta.tdls_initiator = false;
884 case WLAN_TDLS_SETUP_CONFIRM:
885 case WLAN_TDLS_DISCOVERY_REQUEST:
888 case WLAN_TDLS_SETUP_RESPONSE:
890 * In some testing scenarios, we send a request and response.
891 * Make the last packet sent take effect for the initiator
895 clear_sta_flag(sta, WLAN_STA_TDLS_INITIATOR);
896 sta->sta.tdls_initiator = true;
899 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
902 case WLAN_TDLS_TEARDOWN:
903 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
904 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
905 /* any value is ok */
912 if (sta && test_sta_flag(sta, WLAN_STA_TDLS_INITIATOR))
919 skb = ieee80211_tdls_build_mgmt_packet_data(sdata, peer, action_code,
920 dialog_token, status_code,
921 initiator, extra_ies,
922 extra_ies_len, oper_class,
929 if (action_code == WLAN_PUB_ACTION_TDLS_DISCOVER_RES) {
930 ieee80211_tx_skb(sdata, skb);
935 * According to 802.11z: Setup req/resp are sent in AC_BK, otherwise
936 * we should default to AC_VI.
938 switch (action_code) {
939 case WLAN_TDLS_SETUP_REQUEST:
940 case WLAN_TDLS_SETUP_RESPONSE:
941 skb_set_queue_mapping(skb, IEEE80211_AC_BK);
945 skb_set_queue_mapping(skb, IEEE80211_AC_VI);
951 * Set the WLAN_TDLS_TEARDOWN flag to indicate a teardown in progress.
952 * Later, if no ACK is returned from peer, we will re-send the teardown
953 * packet through the AP.
955 if ((action_code == WLAN_TDLS_TEARDOWN) &&
956 (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)) {
957 bool try_resend; /* Should we keep skb for possible resend */
959 /* If not sending directly to peer - no point in keeping skb */
961 sta = sta_info_get(sdata, peer);
962 try_resend = sta && test_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH);
965 spin_lock_bh(&sdata->u.mgd.teardown_lock);
966 if (try_resend && !sdata->u.mgd.teardown_skb) {
967 /* Mark it as requiring TX status callback */
968 flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
969 IEEE80211_TX_INTFL_MLME_CONN_TX;
972 * skb is copied since mac80211 will later set
973 * properties that might not be the same as the AP,
974 * such as encryption, QoS, addresses, etc.
976 * No problem if skb_copy() fails, so no need to check.
978 sdata->u.mgd.teardown_skb = skb_copy(skb, GFP_ATOMIC);
979 sdata->u.mgd.orig_teardown_skb = skb;
981 spin_unlock_bh(&sdata->u.mgd.teardown_lock);
984 /* disable bottom halves when entering the Tx path */
986 __ieee80211_subif_start_xmit(skb, dev, flags);
997 ieee80211_tdls_mgmt_setup(struct wiphy *wiphy, struct net_device *dev,
998 const u8 *peer, u8 action_code, u8 dialog_token,
999 u16 status_code, u32 peer_capability, bool initiator,
1000 const u8 *extra_ies, size_t extra_ies_len)
1002 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1003 struct ieee80211_local *local = sdata->local;
1006 mutex_lock(&local->mtx);
1008 /* we don't support concurrent TDLS peer setups */
1009 if (!is_zero_ether_addr(sdata->u.mgd.tdls_peer) &&
1010 !ether_addr_equal(sdata->u.mgd.tdls_peer, peer)) {
1016 * make sure we have a STA representing the peer so we drop or buffer
1017 * non-TDLS-setup frames to the peer. We can't send other packets
1018 * during setup through the AP path.
1019 * Allow error packets to be sent - sometimes we don't even add a STA
1020 * before failing the setup.
1022 if (status_code == 0) {
1024 if (!sta_info_get(sdata, peer)) {
1032 ieee80211_flush_queues(local, sdata, false);
1033 memcpy(sdata->u.mgd.tdls_peer, peer, ETH_ALEN);
1034 mutex_unlock(&local->mtx);
1036 /* we cannot take the mutex while preparing the setup packet */
1037 ret = ieee80211_tdls_prep_mgmt_packet(wiphy, dev, peer, action_code,
1038 dialog_token, status_code,
1039 peer_capability, initiator,
1040 extra_ies, extra_ies_len, 0,
1043 mutex_lock(&local->mtx);
1044 eth_zero_addr(sdata->u.mgd.tdls_peer);
1045 mutex_unlock(&local->mtx);
1049 ieee80211_queue_delayed_work(&sdata->local->hw,
1050 &sdata->u.mgd.tdls_peer_del_work,
1051 TDLS_PEER_SETUP_TIMEOUT);
1055 mutex_unlock(&local->mtx);
1060 ieee80211_tdls_mgmt_teardown(struct wiphy *wiphy, struct net_device *dev,
1061 const u8 *peer, u8 action_code, u8 dialog_token,
1062 u16 status_code, u32 peer_capability,
1063 bool initiator, const u8 *extra_ies,
1064 size_t extra_ies_len)
1066 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1067 struct ieee80211_local *local = sdata->local;
1068 struct sta_info *sta;
1072 * No packets can be transmitted to the peer via the AP during setup -
1073 * the STA is set as a TDLS peer, but is not authorized.
1074 * During teardown, we prevent direct transmissions by stopping the
1075 * queues and flushing all direct packets.
1077 ieee80211_stop_vif_queues(local, sdata,
1078 IEEE80211_QUEUE_STOP_REASON_TDLS_TEARDOWN);
1079 ieee80211_flush_queues(local, sdata, false);
1081 ret = ieee80211_tdls_prep_mgmt_packet(wiphy, dev, peer, action_code,
1082 dialog_token, status_code,
1083 peer_capability, initiator,
1084 extra_ies, extra_ies_len, 0,
1087 sdata_err(sdata, "Failed sending TDLS teardown packet %d\n",
1091 * Remove the STA AUTH flag to force further traffic through the AP. If
1092 * the STA was unreachable, it was already removed.
1095 sta = sta_info_get(sdata, peer);
1097 clear_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH);
1100 ieee80211_wake_vif_queues(local, sdata,
1101 IEEE80211_QUEUE_STOP_REASON_TDLS_TEARDOWN);
1106 int ieee80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
1107 const u8 *peer, u8 action_code, u8 dialog_token,
1108 u16 status_code, u32 peer_capability,
1109 bool initiator, const u8 *extra_ies,
1110 size_t extra_ies_len)
1112 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1115 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
1118 /* make sure we are in managed mode, and associated */
1119 if (sdata->vif.type != NL80211_IFTYPE_STATION ||
1120 !sdata->u.mgd.associated)
1123 switch (action_code) {
1124 case WLAN_TDLS_SETUP_REQUEST:
1125 case WLAN_TDLS_SETUP_RESPONSE:
1126 ret = ieee80211_tdls_mgmt_setup(wiphy, dev, peer, action_code,
1127 dialog_token, status_code,
1128 peer_capability, initiator,
1129 extra_ies, extra_ies_len);
1131 case WLAN_TDLS_TEARDOWN:
1132 ret = ieee80211_tdls_mgmt_teardown(wiphy, dev, peer,
1133 action_code, dialog_token,
1135 peer_capability, initiator,
1136 extra_ies, extra_ies_len);
1138 case WLAN_TDLS_DISCOVERY_REQUEST:
1140 * Protect the discovery so we can hear the TDLS discovery
1141 * response frame. It is transmitted directly and not buffered
1144 drv_mgd_protect_tdls_discover(sdata->local, sdata);
1146 case WLAN_TDLS_SETUP_CONFIRM:
1147 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
1148 /* no special handling */
1149 ret = ieee80211_tdls_prep_mgmt_packet(wiphy, dev, peer,
1154 initiator, extra_ies,
1155 extra_ies_len, 0, NULL);
1162 tdls_dbg(sdata, "TDLS mgmt action %d peer %pM status %d\n",
1163 action_code, peer, ret);
1167 int ieee80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
1168 const u8 *peer, enum nl80211_tdls_operation oper)
1170 struct sta_info *sta;
1171 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1172 struct ieee80211_local *local = sdata->local;
1175 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
1178 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1182 case NL80211_TDLS_ENABLE_LINK:
1183 case NL80211_TDLS_DISABLE_LINK:
1185 case NL80211_TDLS_TEARDOWN:
1186 case NL80211_TDLS_SETUP:
1187 case NL80211_TDLS_DISCOVERY_REQ:
1188 /* We don't support in-driver setup/teardown/discovery */
1192 mutex_lock(&local->mtx);
1193 tdls_dbg(sdata, "TDLS oper %d peer %pM\n", oper, peer);
1196 case NL80211_TDLS_ENABLE_LINK:
1198 sta = sta_info_get(sdata, peer);
1205 set_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH);
1208 WARN_ON_ONCE(is_zero_ether_addr(sdata->u.mgd.tdls_peer) ||
1209 !ether_addr_equal(sdata->u.mgd.tdls_peer, peer));
1212 case NL80211_TDLS_DISABLE_LINK:
1214 * The teardown message in ieee80211_tdls_mgmt_teardown() was
1215 * created while the queues were stopped, so it might still be
1216 * pending. Before flushing the queues we need to be sure the
1217 * message is handled by the tasklet handling pending messages,
1218 * otherwise we might start destroying the station before
1219 * sending the teardown packet.
1220 * Note that this only forces the tasklet to flush pendings -
1221 * not to stop the tasklet from rescheduling itself.
1223 tasklet_kill(&local->tx_pending_tasklet);
1224 /* flush a potentially queued teardown packet */
1225 ieee80211_flush_queues(local, sdata, false);
1227 ret = sta_info_destroy_addr(sdata, peer);
1234 if (ret == 0 && ether_addr_equal(sdata->u.mgd.tdls_peer, peer)) {
1235 cancel_delayed_work(&sdata->u.mgd.tdls_peer_del_work);
1236 eth_zero_addr(sdata->u.mgd.tdls_peer);
1239 mutex_unlock(&local->mtx);
1243 void ieee80211_tdls_oper_request(struct ieee80211_vif *vif, const u8 *peer,
1244 enum nl80211_tdls_operation oper,
1245 u16 reason_code, gfp_t gfp)
1247 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1249 if (vif->type != NL80211_IFTYPE_STATION || !vif->bss_conf.assoc) {
1250 sdata_err(sdata, "Discarding TDLS oper %d - not STA or disconnected\n",
1255 cfg80211_tdls_oper_request(sdata->dev, peer, oper, reason_code, gfp);
1257 EXPORT_SYMBOL(ieee80211_tdls_oper_request);
1260 iee80211_tdls_add_ch_switch_timing(u8 *buf, u16 switch_time, u16 switch_timeout)
1262 struct ieee80211_ch_switch_timing *ch_sw;
1264 *buf++ = WLAN_EID_CHAN_SWITCH_TIMING;
1265 *buf++ = sizeof(struct ieee80211_ch_switch_timing);
1267 ch_sw = (void *)buf;
1268 ch_sw->switch_time = cpu_to_le16(switch_time);
1269 ch_sw->switch_timeout = cpu_to_le16(switch_timeout);
1272 /* find switch timing IE in SKB ready for Tx */
1273 static const u8 *ieee80211_tdls_find_sw_timing_ie(struct sk_buff *skb)
1275 struct ieee80211_tdls_data *tf;
1279 * Get the offset for the new location of the switch timing IE.
1280 * The SKB network header will now point to the "payload_type"
1281 * element of the TDLS data frame struct.
1283 tf = container_of(skb->data + skb_network_offset(skb),
1284 struct ieee80211_tdls_data, payload_type);
1285 ie_start = tf->u.chan_switch_req.variable;
1286 return cfg80211_find_ie(WLAN_EID_CHAN_SWITCH_TIMING, ie_start,
1287 skb->len - (ie_start - skb->data));
1290 static struct sk_buff *
1291 ieee80211_tdls_ch_sw_tmpl_get(struct sta_info *sta, u8 oper_class,
1292 struct cfg80211_chan_def *chandef,
1293 u32 *ch_sw_tm_ie_offset)
1295 struct ieee80211_sub_if_data *sdata = sta->sdata;
1296 u8 extra_ies[2 + sizeof(struct ieee80211_sec_chan_offs_ie) +
1297 2 + sizeof(struct ieee80211_ch_switch_timing)];
1298 int extra_ies_len = 2 + sizeof(struct ieee80211_ch_switch_timing);
1299 u8 *pos = extra_ies;
1300 struct sk_buff *skb;
1303 * if chandef points to a wide channel add a Secondary-Channel
1304 * Offset information element
1306 if (chandef->width == NL80211_CHAN_WIDTH_40) {
1307 struct ieee80211_sec_chan_offs_ie *sec_chan_ie;
1310 *pos++ = WLAN_EID_SECONDARY_CHANNEL_OFFSET;
1311 *pos++ = sizeof(*sec_chan_ie);
1312 sec_chan_ie = (void *)pos;
1314 ht40plus = cfg80211_get_chandef_type(chandef) ==
1315 NL80211_CHAN_HT40PLUS;
1316 sec_chan_ie->sec_chan_offs = ht40plus ?
1317 IEEE80211_HT_PARAM_CHA_SEC_ABOVE :
1318 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
1319 pos += sizeof(*sec_chan_ie);
1321 extra_ies_len += 2 + sizeof(struct ieee80211_sec_chan_offs_ie);
1324 /* just set the values to 0, this is a template */
1325 iee80211_tdls_add_ch_switch_timing(pos, 0, 0);
1327 skb = ieee80211_tdls_build_mgmt_packet_data(sdata, sta->sta.addr,
1328 WLAN_TDLS_CHANNEL_SWITCH_REQUEST,
1329 0, 0, !sta->sta.tdls_initiator,
1330 extra_ies, extra_ies_len,
1331 oper_class, chandef);
1335 skb = ieee80211_build_data_template(sdata, skb, 0);
1337 tdls_dbg(sdata, "Failed building TDLS channel switch frame\n");
1341 if (ch_sw_tm_ie_offset) {
1342 const u8 *tm_ie = ieee80211_tdls_find_sw_timing_ie(skb);
1345 tdls_dbg(sdata, "No switch timing IE in TDLS switch\n");
1346 dev_kfree_skb_any(skb);
1350 *ch_sw_tm_ie_offset = tm_ie - skb->data;
1354 "TDLS channel switch request template for %pM ch %d width %d\n",
1355 sta->sta.addr, chandef->chan->center_freq, chandef->width);
1360 ieee80211_tdls_channel_switch(struct wiphy *wiphy, struct net_device *dev,
1361 const u8 *addr, u8 oper_class,
1362 struct cfg80211_chan_def *chandef)
1364 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1365 struct ieee80211_local *local = sdata->local;
1366 struct sta_info *sta;
1367 struct sk_buff *skb = NULL;
1371 mutex_lock(&local->sta_mtx);
1372 sta = sta_info_get(sdata, addr);
1375 "Invalid TDLS peer %pM for channel switch request\n",
1381 if (!test_sta_flag(sta, WLAN_STA_TDLS_CHAN_SWITCH)) {
1382 tdls_dbg(sdata, "TDLS channel switch unsupported by %pM\n",
1388 skb = ieee80211_tdls_ch_sw_tmpl_get(sta, oper_class, chandef,
1395 ret = drv_tdls_channel_switch(local, sdata, &sta->sta, oper_class,
1396 chandef, skb, ch_sw_tm_ie);
1398 set_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL);
1401 mutex_unlock(&local->sta_mtx);
1402 dev_kfree_skb_any(skb);
1407 ieee80211_tdls_cancel_channel_switch(struct wiphy *wiphy,
1408 struct net_device *dev,
1411 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1412 struct ieee80211_local *local = sdata->local;
1413 struct sta_info *sta;
1415 mutex_lock(&local->sta_mtx);
1416 sta = sta_info_get(sdata, addr);
1419 "Invalid TDLS peer %pM for channel switch cancel\n",
1424 if (!test_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL)) {
1425 tdls_dbg(sdata, "TDLS channel switch not initiated by %pM\n",
1430 drv_tdls_cancel_channel_switch(local, sdata, &sta->sta);
1431 clear_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL);
1434 mutex_unlock(&local->sta_mtx);
1437 static struct sk_buff *
1438 ieee80211_tdls_ch_sw_resp_tmpl_get(struct sta_info *sta,
1439 u32 *ch_sw_tm_ie_offset)
1441 struct ieee80211_sub_if_data *sdata = sta->sdata;
1442 struct sk_buff *skb;
1443 u8 extra_ies[2 + sizeof(struct ieee80211_ch_switch_timing)];
1445 /* initial timing are always zero in the template */
1446 iee80211_tdls_add_ch_switch_timing(extra_ies, 0, 0);
1448 skb = ieee80211_tdls_build_mgmt_packet_data(sdata, sta->sta.addr,
1449 WLAN_TDLS_CHANNEL_SWITCH_RESPONSE,
1450 0, 0, !sta->sta.tdls_initiator,
1451 extra_ies, sizeof(extra_ies), 0, NULL);
1455 skb = ieee80211_build_data_template(sdata, skb, 0);
1458 "Failed building TDLS channel switch resp frame\n");
1462 if (ch_sw_tm_ie_offset) {
1463 const u8 *tm_ie = ieee80211_tdls_find_sw_timing_ie(skb);
1467 "No switch timing IE in TDLS switch resp\n");
1468 dev_kfree_skb_any(skb);
1472 *ch_sw_tm_ie_offset = tm_ie - skb->data;
1475 tdls_dbg(sdata, "TDLS get channel switch response template for %pM\n",
1481 ieee80211_process_tdls_channel_switch_resp(struct ieee80211_sub_if_data *sdata,
1482 struct sk_buff *skb)
1484 struct ieee80211_local *local = sdata->local;
1485 struct ieee802_11_elems elems;
1486 struct sta_info *sta;
1487 struct ieee80211_tdls_data *tf = (void *)skb->data;
1488 bool local_initiator;
1489 struct ieee80211_rx_status *rx_status = IEEE80211_SKB_RXCB(skb);
1490 int baselen = offsetof(typeof(*tf), u.chan_switch_resp.variable);
1491 struct ieee80211_tdls_ch_sw_params params = {};
1494 params.action_code = WLAN_TDLS_CHANNEL_SWITCH_RESPONSE;
1495 params.timestamp = rx_status->device_timestamp;
1497 if (skb->len < baselen) {
1498 tdls_dbg(sdata, "TDLS channel switch resp too short: %d\n",
1503 mutex_lock(&local->sta_mtx);
1504 sta = sta_info_get(sdata, tf->sa);
1505 if (!sta || !test_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH)) {
1506 tdls_dbg(sdata, "TDLS chan switch from non-peer sta %pM\n",
1512 params.sta = &sta->sta;
1513 params.status = le16_to_cpu(tf->u.chan_switch_resp.status_code);
1514 if (params.status != 0) {
1519 ieee802_11_parse_elems(tf->u.chan_switch_resp.variable,
1520 skb->len - baselen, false, &elems);
1521 if (elems.parse_error) {
1522 tdls_dbg(sdata, "Invalid IEs in TDLS channel switch resp\n");
1527 if (!elems.ch_sw_timing || !elems.lnk_id) {
1528 tdls_dbg(sdata, "TDLS channel switch resp - missing IEs\n");
1533 /* validate the initiator is set correctly */
1535 !memcmp(elems.lnk_id->init_sta, sdata->vif.addr, ETH_ALEN);
1536 if (local_initiator == sta->sta.tdls_initiator) {
1537 tdls_dbg(sdata, "TDLS chan switch invalid lnk-id initiator\n");
1542 params.switch_time = le16_to_cpu(elems.ch_sw_timing->switch_time);
1543 params.switch_timeout = le16_to_cpu(elems.ch_sw_timing->switch_timeout);
1546 ieee80211_tdls_ch_sw_resp_tmpl_get(sta, ¶ms.ch_sw_tm_ie);
1547 if (!params.tmpl_skb) {
1553 drv_tdls_recv_channel_switch(sdata->local, sdata, ¶ms);
1556 "TDLS channel switch response received from %pM status %d\n",
1557 tf->sa, params.status);
1560 mutex_unlock(&local->sta_mtx);
1561 dev_kfree_skb_any(params.tmpl_skb);
1566 ieee80211_process_tdls_channel_switch_req(struct ieee80211_sub_if_data *sdata,
1567 struct sk_buff *skb)
1569 struct ieee80211_local *local = sdata->local;
1570 struct ieee802_11_elems elems;
1571 struct cfg80211_chan_def chandef;
1572 struct ieee80211_channel *chan;
1573 enum nl80211_channel_type chan_type;
1575 u8 target_channel, oper_class;
1576 bool local_initiator;
1577 struct sta_info *sta;
1578 enum ieee80211_band band;
1579 struct ieee80211_tdls_data *tf = (void *)skb->data;
1580 struct ieee80211_rx_status *rx_status = IEEE80211_SKB_RXCB(skb);
1581 int baselen = offsetof(typeof(*tf), u.chan_switch_req.variable);
1582 struct ieee80211_tdls_ch_sw_params params = {};
1585 params.action_code = WLAN_TDLS_CHANNEL_SWITCH_REQUEST;
1586 params.timestamp = rx_status->device_timestamp;
1588 if (skb->len < baselen) {
1589 tdls_dbg(sdata, "TDLS channel switch req too short: %d\n",
1594 target_channel = tf->u.chan_switch_req.target_channel;
1595 oper_class = tf->u.chan_switch_req.oper_class;
1598 * We can't easily infer the channel band. The operating class is
1599 * ambiguous - there are multiple tables (US/Europe/JP/Global). The
1600 * solution here is to treat channels with number >14 as 5GHz ones,
1601 * and specifically check for the (oper_class, channel) combinations
1602 * where this doesn't hold. These are thankfully unique according to
1604 * We consider only the 2GHz and 5GHz bands and 20MHz+ channels as
1607 if ((oper_class == 112 || oper_class == 2 || oper_class == 3 ||
1608 oper_class == 4 || oper_class == 5 || oper_class == 6) &&
1609 target_channel < 14)
1610 band = IEEE80211_BAND_5GHZ;
1612 band = target_channel < 14 ? IEEE80211_BAND_2GHZ :
1613 IEEE80211_BAND_5GHZ;
1615 freq = ieee80211_channel_to_frequency(target_channel, band);
1617 tdls_dbg(sdata, "Invalid channel in TDLS chan switch: %d\n",
1622 chan = ieee80211_get_channel(sdata->local->hw.wiphy, freq);
1625 "Unsupported channel for TDLS chan switch: %d\n",
1630 ieee802_11_parse_elems(tf->u.chan_switch_req.variable,
1631 skb->len - baselen, false, &elems);
1632 if (elems.parse_error) {
1633 tdls_dbg(sdata, "Invalid IEs in TDLS channel switch req\n");
1637 if (!elems.ch_sw_timing || !elems.lnk_id) {
1638 tdls_dbg(sdata, "TDLS channel switch req - missing IEs\n");
1642 mutex_lock(&local->sta_mtx);
1643 sta = sta_info_get(sdata, tf->sa);
1644 if (!sta || !test_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH)) {
1645 tdls_dbg(sdata, "TDLS chan switch from non-peer sta %pM\n",
1651 params.sta = &sta->sta;
1653 /* validate the initiator is set correctly */
1655 !memcmp(elems.lnk_id->init_sta, sdata->vif.addr, ETH_ALEN);
1656 if (local_initiator == sta->sta.tdls_initiator) {
1657 tdls_dbg(sdata, "TDLS chan switch invalid lnk-id initiator\n");
1662 if (!sta->sta.ht_cap.ht_supported) {
1663 chan_type = NL80211_CHAN_NO_HT;
1664 } else if (!elems.sec_chan_offs) {
1665 chan_type = NL80211_CHAN_HT20;
1667 switch (elems.sec_chan_offs->sec_chan_offs) {
1668 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
1669 chan_type = NL80211_CHAN_HT40PLUS;
1671 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
1672 chan_type = NL80211_CHAN_HT40MINUS;
1675 chan_type = NL80211_CHAN_HT20;
1680 cfg80211_chandef_create(&chandef, chan, chan_type);
1681 params.chandef = &chandef;
1683 params.switch_time = le16_to_cpu(elems.ch_sw_timing->switch_time);
1684 params.switch_timeout = le16_to_cpu(elems.ch_sw_timing->switch_timeout);
1687 ieee80211_tdls_ch_sw_resp_tmpl_get(sta,
1688 ¶ms.ch_sw_tm_ie);
1689 if (!params.tmpl_skb) {
1694 drv_tdls_recv_channel_switch(sdata->local, sdata, ¶ms);
1697 "TDLS ch switch request received from %pM ch %d width %d\n",
1698 tf->sa, params.chandef->chan->center_freq,
1699 params.chandef->width);
1701 mutex_unlock(&local->sta_mtx);
1702 dev_kfree_skb_any(params.tmpl_skb);
1706 void ieee80211_process_tdls_channel_switch(struct ieee80211_sub_if_data *sdata,
1707 struct sk_buff *skb)
1709 struct ieee80211_tdls_data *tf = (void *)skb->data;
1710 struct wiphy *wiphy = sdata->local->hw.wiphy;
1712 /* make sure the driver supports it */
1713 if (!(wiphy->features & NL80211_FEATURE_TDLS_CHANNEL_SWITCH))
1716 /* we want to access the entire packet */
1717 if (skb_linearize(skb))
1720 * The packet/size was already validated by mac80211 Rx path, only look
1721 * at the action type.
1723 switch (tf->action_code) {
1724 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
1725 ieee80211_process_tdls_channel_switch_req(sdata, skb);
1727 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
1728 ieee80211_process_tdls_channel_switch_resp(sdata, skb);