|
@@ -193,6 +193,17 @@ static void ieee80211_tdls_add_link_ie(struct ieee80211_sub_if_data *sdata,
|
|
|
memcpy(lnkid->resp_sta, rsp_addr, ETH_ALEN);
|
|
|
}
|
|
|
|
|
|
+static void
|
|
|
+ieee80211_tdls_add_aid(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
|
|
|
+{
|
|
|
+ struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
|
|
|
+ u8 *pos = (void *)skb_put(skb, 4);
|
|
|
+
|
|
|
+ *pos++ = WLAN_EID_AID;
|
|
|
+ *pos++ = 2; /* len */
|
|
|
+ put_unaligned_le16(ifmgd->aid, pos);
|
|
|
+}
|
|
|
+
|
|
|
/* translate numbering in the WMM parameter IE to the mac80211 notation */
|
|
|
static enum ieee80211_ac_numbers ieee80211_ac_from_wmm(int ac)
|
|
|
{
|
|
@@ -271,6 +282,7 @@ ieee80211_tdls_add_setup_start_ies(struct ieee80211_sub_if_data *sdata,
|
|
|
struct ieee80211_local *local = sdata->local;
|
|
|
struct ieee80211_supported_band *sband;
|
|
|
struct ieee80211_sta_ht_cap ht_cap;
|
|
|
+ struct ieee80211_sta_vht_cap vht_cap;
|
|
|
struct sta_info *sta = NULL;
|
|
|
size_t offset = 0, noffset;
|
|
|
u8 *pos;
|
|
@@ -368,12 +380,60 @@ ieee80211_tdls_add_setup_start_ies(struct ieee80211_sub_if_data *sdata,
|
|
|
ieee80211_ie_build_ht_cap(pos, &ht_cap, ht_cap.cap);
|
|
|
}
|
|
|
|
|
|
- rcu_read_unlock();
|
|
|
-
|
|
|
if (ht_cap.ht_supported &&
|
|
|
(ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40))
|
|
|
ieee80211_tdls_add_bss_coex_ie(skb);
|
|
|
|
|
|
+ ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
|
|
|
+
|
|
|
+ /* add any custom IEs that go before VHT capabilities */
|
|
|
+ if (extra_ies_len) {
|
|
|
+ static const u8 before_vht_cap[] = {
|
|
|
+ WLAN_EID_SUPP_RATES,
|
|
|
+ WLAN_EID_COUNTRY,
|
|
|
+ WLAN_EID_EXT_SUPP_RATES,
|
|
|
+ WLAN_EID_SUPPORTED_CHANNELS,
|
|
|
+ WLAN_EID_RSN,
|
|
|
+ WLAN_EID_EXT_CAPABILITY,
|
|
|
+ WLAN_EID_QOS_CAPA,
|
|
|
+ WLAN_EID_FAST_BSS_TRANSITION,
|
|
|
+ WLAN_EID_TIMEOUT_INTERVAL,
|
|
|
+ WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
|
|
|
+ WLAN_EID_MULTI_BAND,
|
|
|
+ };
|
|
|
+ noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
|
|
|
+ before_vht_cap,
|
|
|
+ ARRAY_SIZE(before_vht_cap),
|
|
|
+ offset);
|
|
|
+ pos = skb_put(skb, noffset - offset);
|
|
|
+ memcpy(pos, extra_ies + offset, noffset - offset);
|
|
|
+ offset = noffset;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* build the VHT-cap similarly to the HT-cap */
|
|
|
+ memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
|
|
|
+ if (action_code == WLAN_TDLS_SETUP_REQUEST && vht_cap.vht_supported) {
|
|
|
+ ieee80211_apply_vhtcap_overrides(sdata, &vht_cap);
|
|
|
+
|
|
|
+ /* the AID is present only when VHT is implemented */
|
|
|
+ ieee80211_tdls_add_aid(sdata, skb);
|
|
|
+
|
|
|
+ pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
|
|
|
+ ieee80211_ie_build_vht_cap(pos, &vht_cap, vht_cap.cap);
|
|
|
+ } else if (action_code == WLAN_TDLS_SETUP_RESPONSE &&
|
|
|
+ vht_cap.vht_supported && sta->sta.vht_cap.vht_supported) {
|
|
|
+ /* the peer caps are already intersected with our own */
|
|
|
+ memcpy(&vht_cap, &sta->sta.vht_cap, sizeof(vht_cap));
|
|
|
+
|
|
|
+ /* the AID is present only when VHT is implemented */
|
|
|
+ ieee80211_tdls_add_aid(sdata, skb);
|
|
|
+
|
|
|
+ pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
|
|
|
+ ieee80211_ie_build_vht_cap(pos, &vht_cap, vht_cap.cap);
|
|
|
+ }
|
|
|
+
|
|
|
+ rcu_read_unlock();
|
|
|
+
|
|
|
/* add any remaining IEs */
|
|
|
if (extra_ies_len) {
|
|
|
noffset = extra_ies_len;
|
|
@@ -381,7 +441,6 @@ ieee80211_tdls_add_setup_start_ies(struct ieee80211_sub_if_data *sdata,
|
|
|
memcpy(pos, extra_ies + offset, noffset - offset);
|
|
|
}
|
|
|
|
|
|
- ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
|
|
|
}
|
|
|
|
|
|
static void
|
|
@@ -394,6 +453,7 @@ ieee80211_tdls_add_setup_cfm_ies(struct ieee80211_sub_if_data *sdata,
|
|
|
struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
|
|
|
size_t offset = 0, noffset;
|
|
|
struct sta_info *sta, *ap_sta;
|
|
|
+ enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
|
|
|
u8 *pos;
|
|
|
|
|
|
rcu_read_lock();
|
|
@@ -453,6 +513,21 @@ ieee80211_tdls_add_setup_cfm_ies(struct ieee80211_sub_if_data *sdata,
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
|
|
|
+
|
|
|
+ /* only include VHT-operation if not on the 2.4GHz band */
|
|
|
+ if (band != IEEE80211_BAND_2GHZ && !ap_sta->sta.vht_cap.vht_supported &&
|
|
|
+ sta->sta.vht_cap.vht_supported) {
|
|
|
+ struct ieee80211_chanctx_conf *chanctx_conf =
|
|
|
+ rcu_dereference(sdata->vif.chanctx_conf);
|
|
|
+ if (!WARN_ON(!chanctx_conf)) {
|
|
|
+ pos = skb_put(skb, 2 +
|
|
|
+ sizeof(struct ieee80211_vht_operation));
|
|
|
+ ieee80211_ie_build_vht_oper(pos, &sta->sta.vht_cap,
|
|
|
+ &chanctx_conf->def);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
rcu_read_unlock();
|
|
|
|
|
|
/* add any remaining IEs */
|
|
@@ -461,8 +536,6 @@ ieee80211_tdls_add_setup_cfm_ies(struct ieee80211_sub_if_data *sdata,
|
|
|
pos = skb_put(skb, noffset - offset);
|
|
|
memcpy(pos, extra_ies + offset, noffset - offset);
|
|
|
}
|
|
|
-
|
|
|
- ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
|
|
|
}
|
|
|
|
|
|
static void
|
|
@@ -708,8 +781,11 @@ ieee80211_tdls_build_mgmt_packet_data(struct ieee80211_sub_if_data *sdata,
|
|
|
26 + /* max(WMM-info, WMM-param) */
|
|
|
2 + max(sizeof(struct ieee80211_ht_cap),
|
|
|
sizeof(struct ieee80211_ht_operation)) +
|
|
|
+ 2 + max(sizeof(struct ieee80211_vht_cap),
|
|
|
+ sizeof(struct ieee80211_vht_operation)) +
|
|
|
50 + /* supported channels */
|
|
|
3 + /* 40/20 BSS coex */
|
|
|
+ 4 + /* AID */
|
|
|
extra_ies_len +
|
|
|
sizeof(struct ieee80211_tdls_lnkie));
|
|
|
if (!skb)
|