blob: 863f92c087014491996e2d6c4702112dd10cb0b4 [file] [log] [blame]
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001/*
2 * mac80211 TDLS handling code
3 *
4 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
5 * Copyright 2014, Intel Corporation
Johannes Bergd98ad832014-09-03 15:24:57 +03006 * Copyright 2014 Intel Mobile Communications GmbH
Arik Nemtsov59021c62016-03-02 23:28:32 +02007 * Copyright 2015 - 2016 Intel Deutschland GmbH
Arik Nemtsov95224fe2014-05-01 10:17:28 +03008 *
9 * This file is GPLv2 as found in COPYING.
10 */
11
12#include <linux/ieee80211.h>
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +030013#include <linux/log2.h>
Arik Nemtsovc887f0d32014-06-11 17:18:25 +030014#include <net/cfg80211.h>
Arik Nemtsovc8ff71e2015-07-08 15:41:45 +030015#include <linux/rtnetlink.h>
Arik Nemtsov95224fe2014-05-01 10:17:28 +030016#include "ieee80211_i.h"
Arik Nemtsovee10f2c2014-06-11 17:18:27 +030017#include "driver-ops.h"
Arik Nemtsov59021c62016-03-02 23:28:32 +020018#include "rate.h"
Johannes Berge36e7b02018-09-05 13:34:02 +020019#include "wme.h"
Arik Nemtsov95224fe2014-05-01 10:17:28 +030020
Arik Nemtsov17e6a592014-06-11 17:18:20 +030021/* give usermode some time for retries in setting up the TDLS session */
22#define TDLS_PEER_SETUP_TIMEOUT (15 * HZ)
23
24void ieee80211_tdls_peer_del_work(struct work_struct *wk)
25{
26 struct ieee80211_sub_if_data *sdata;
27 struct ieee80211_local *local;
28
29 sdata = container_of(wk, struct ieee80211_sub_if_data,
Arik Nemtsov81dd2b82014-07-17 17:14:25 +030030 u.mgd.tdls_peer_del_work.work);
Arik Nemtsov17e6a592014-06-11 17:18:20 +030031 local = sdata->local;
32
33 mutex_lock(&local->mtx);
Arik Nemtsov81dd2b82014-07-17 17:14:25 +030034 if (!is_zero_ether_addr(sdata->u.mgd.tdls_peer)) {
35 tdls_dbg(sdata, "TDLS del peer %pM\n", sdata->u.mgd.tdls_peer);
36 sta_info_destroy_addr(sdata, sdata->u.mgd.tdls_peer);
37 eth_zero_addr(sdata->u.mgd.tdls_peer);
Arik Nemtsov17e6a592014-06-11 17:18:20 +030038 }
39 mutex_unlock(&local->mtx);
40}
41
Arik Nemtsovb98fb442015-06-10 20:42:59 +030042static void ieee80211_tdls_add_ext_capab(struct ieee80211_sub_if_data *sdata,
Arik Nemtsov78632a12014-11-09 18:50:14 +020043 struct sk_buff *skb)
Arik Nemtsov95224fe2014-05-01 10:17:28 +030044{
Arik Nemtsovb98fb442015-06-10 20:42:59 +030045 struct ieee80211_local *local = sdata->local;
Arik Nemtsov82c0cc92015-08-15 22:39:46 +030046 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Arik Nemtsov78632a12014-11-09 18:50:14 +020047 bool chan_switch = local->hw.wiphy->features &
48 NL80211_FEATURE_TDLS_CHANNEL_SWITCH;
Arik Nemtsov82c0cc92015-08-15 22:39:46 +030049 bool wider_band = ieee80211_hw_check(&local->hw, TDLS_WIDER_BW) &&
50 !ifmgd->tdls_wider_bw_prohibited;
Mohammed Shafi Shajakhan92db8072017-04-27 12:45:38 +053051 struct ieee80211_supported_band *sband = ieee80211_get_sband(sdata);
Arik Nemtsovb98fb442015-06-10 20:42:59 +030052 bool vht = sband && sband->vht_cap.vht_supported;
53 u8 *pos = (void *)skb_put(skb, 10);
Arik Nemtsov95224fe2014-05-01 10:17:28 +030054
55 *pos++ = WLAN_EID_EXT_CAPABILITY;
Arik Nemtsovb98fb442015-06-10 20:42:59 +030056 *pos++ = 8; /* len */
Arik Nemtsov95224fe2014-05-01 10:17:28 +030057 *pos++ = 0x0;
58 *pos++ = 0x0;
59 *pos++ = 0x0;
Arik Nemtsov78632a12014-11-09 18:50:14 +020060 *pos++ = chan_switch ? WLAN_EXT_CAPA4_TDLS_CHAN_SWITCH : 0;
Arik Nemtsov95224fe2014-05-01 10:17:28 +030061 *pos++ = WLAN_EXT_CAPA5_TDLS_ENABLED;
Arik Nemtsovb98fb442015-06-10 20:42:59 +030062 *pos++ = 0;
63 *pos++ = 0;
64 *pos++ = (vht && wider_band) ? WLAN_EXT_CAPA8_TDLS_WIDE_BW_ENABLED : 0;
Arik Nemtsov95224fe2014-05-01 10:17:28 +030065}
66
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +020067static u8
68ieee80211_tdls_add_subband(struct ieee80211_sub_if_data *sdata,
69 struct sk_buff *skb, u16 start, u16 end,
70 u16 spacing)
71{
72 u8 subband_cnt = 0, ch_cnt = 0;
73 struct ieee80211_channel *ch;
74 struct cfg80211_chan_def chandef;
75 int i, subband_start;
Arik Nemtsov923b3522015-07-08 15:41:44 +030076 struct wiphy *wiphy = sdata->local->hw.wiphy;
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +020077
78 for (i = start; i <= end; i += spacing) {
79 if (!ch_cnt)
80 subband_start = i;
81
82 ch = ieee80211_get_channel(sdata->local->hw.wiphy, i);
83 if (ch) {
84 /* we will be active on the channel */
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +020085 cfg80211_chandef_create(&chandef, ch,
Arik Nemtsov50075892015-01-07 16:45:07 +020086 NL80211_CHAN_NO_HT);
Arik Nemtsov923b3522015-07-08 15:41:44 +030087 if (cfg80211_reg_can_beacon_relax(wiphy, &chandef,
88 sdata->wdev.iftype)) {
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +020089 ch_cnt++;
Arik Nemtsov50075892015-01-07 16:45:07 +020090 /*
91 * check if the next channel is also part of
92 * this allowed range
93 */
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +020094 continue;
95 }
96 }
97
Arik Nemtsov50075892015-01-07 16:45:07 +020098 /*
99 * we've reached the end of a range, with allowed channels
100 * found
101 */
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +0200102 if (ch_cnt) {
103 u8 *pos = skb_put(skb, 2);
104 *pos++ = ieee80211_frequency_to_channel(subband_start);
105 *pos++ = ch_cnt;
106
107 subband_cnt++;
108 ch_cnt = 0;
109 }
110 }
111
Arik Nemtsov50075892015-01-07 16:45:07 +0200112 /* all channels in the requested range are allowed - add them here */
113 if (ch_cnt) {
114 u8 *pos = skb_put(skb, 2);
115 *pos++ = ieee80211_frequency_to_channel(subband_start);
116 *pos++ = ch_cnt;
117
118 subband_cnt++;
119 }
120
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +0200121 return subband_cnt;
122}
123
124static void
125ieee80211_tdls_add_supp_channels(struct ieee80211_sub_if_data *sdata,
126 struct sk_buff *skb)
127{
128 /*
129 * Add possible channels for TDLS. These are channels that are allowed
130 * to be active.
131 */
132 u8 subband_cnt;
133 u8 *pos = skb_put(skb, 2);
134
135 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
136
137 /*
138 * 5GHz and 2GHz channels numbers can overlap. Ignore this for now, as
139 * this doesn't happen in real world scenarios.
140 */
141
142 /* 2GHz, with 5MHz spacing */
143 subband_cnt = ieee80211_tdls_add_subband(sdata, skb, 2412, 2472, 5);
144
145 /* 5GHz, with 20MHz spacing */
146 subband_cnt += ieee80211_tdls_add_subband(sdata, skb, 5000, 5825, 20);
147
148 /* length */
149 *pos = 2 * subband_cnt;
150}
151
Arik Nemtsova38700d2015-03-18 08:46:08 +0200152static void ieee80211_tdls_add_oper_classes(struct ieee80211_sub_if_data *sdata,
153 struct sk_buff *skb)
154{
155 u8 *pos;
156 u8 op_class;
157
158 if (!ieee80211_chandef_to_operating_class(&sdata->vif.bss_conf.chandef,
159 &op_class))
160 return;
161
162 pos = skb_put(skb, 4);
163 *pos++ = WLAN_EID_SUPPORTED_REGULATORY_CLASSES;
164 *pos++ = 2; /* len */
165
166 *pos++ = op_class;
167 *pos++ = op_class; /* give current operating class as alternate too */
168}
169
Arik Nemtsov2cedd872014-11-09 18:50:13 +0200170static void ieee80211_tdls_add_bss_coex_ie(struct sk_buff *skb)
171{
172 u8 *pos = (void *)skb_put(skb, 3);
173
174 *pos++ = WLAN_EID_BSS_COEX_2040;
175 *pos++ = 1; /* len */
176
177 *pos++ = WLAN_BSS_COEX_INFORMATION_REQUEST;
178}
179
Arik Nemtsovdd8c0b02014-07-17 17:14:22 +0300180static u16 ieee80211_get_tdls_sta_capab(struct ieee80211_sub_if_data *sdata,
181 u16 status_code)
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300182{
Mohammed Shafi Shajakhan92db8072017-04-27 12:45:38 +0530183 struct ieee80211_supported_band *sband;
184
Arik Nemtsovdd8c0b02014-07-17 17:14:22 +0300185 /* The capability will be 0 when sending a failure code */
186 if (status_code != 0)
187 return 0;
188
Mohammed Shafi Shajakhan92db8072017-04-27 12:45:38 +0530189 sband = ieee80211_get_sband(sdata);
190 if (sband && sband->band == NL80211_BAND_2GHZ) {
Johannes Bergea1b2b452015-06-02 20:15:49 +0200191 return WLAN_CAPABILITY_SHORT_SLOT_TIME |
192 WLAN_CAPABILITY_SHORT_PREAMBLE;
193 }
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300194
Johannes Bergea1b2b452015-06-02 20:15:49 +0200195 return 0;
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300196}
197
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300198static void ieee80211_tdls_add_link_ie(struct ieee80211_sub_if_data *sdata,
199 struct sk_buff *skb, const u8 *peer,
200 bool initiator)
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300201{
202 struct ieee80211_tdls_lnkie *lnkid;
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300203 const u8 *init_addr, *rsp_addr;
204
205 if (initiator) {
206 init_addr = sdata->vif.addr;
207 rsp_addr = peer;
208 } else {
209 init_addr = peer;
210 rsp_addr = sdata->vif.addr;
211 }
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300212
213 lnkid = (void *)skb_put(skb, sizeof(struct ieee80211_tdls_lnkie));
214
215 lnkid->ie_type = WLAN_EID_LINK_ID;
216 lnkid->ie_len = sizeof(struct ieee80211_tdls_lnkie) - 2;
217
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300218 memcpy(lnkid->bssid, sdata->u.mgd.bssid, ETH_ALEN);
219 memcpy(lnkid->init_sta, init_addr, ETH_ALEN);
220 memcpy(lnkid->resp_sta, rsp_addr, ETH_ALEN);
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300221}
222
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200223static void
224ieee80211_tdls_add_aid(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
225{
226 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
227 u8 *pos = (void *)skb_put(skb, 4);
228
229 *pos++ = WLAN_EID_AID;
230 *pos++ = 2; /* len */
231 put_unaligned_le16(ifmgd->aid, pos);
232}
233
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300234/* translate numbering in the WMM parameter IE to the mac80211 notation */
235static enum ieee80211_ac_numbers ieee80211_ac_from_wmm(int ac)
236{
237 switch (ac) {
238 default:
239 WARN_ON_ONCE(1);
240 case 0:
241 return IEEE80211_AC_BE;
242 case 1:
243 return IEEE80211_AC_BK;
244 case 2:
245 return IEEE80211_AC_VI;
246 case 3:
247 return IEEE80211_AC_VO;
248 }
249}
250
251static u8 ieee80211_wmm_aci_aifsn(int aifsn, bool acm, int aci)
252{
253 u8 ret;
254
255 ret = aifsn & 0x0f;
256 if (acm)
257 ret |= 0x10;
258 ret |= (aci << 5) & 0x60;
259 return ret;
260}
261
262static u8 ieee80211_wmm_ecw(u16 cw_min, u16 cw_max)
263{
264 return ((ilog2(cw_min + 1) << 0x0) & 0x0f) |
265 ((ilog2(cw_max + 1) << 0x4) & 0xf0);
266}
267
268static void ieee80211_tdls_add_wmm_param_ie(struct ieee80211_sub_if_data *sdata,
269 struct sk_buff *skb)
270{
271 struct ieee80211_wmm_param_ie *wmm;
272 struct ieee80211_tx_queue_params *txq;
273 int i;
274
275 wmm = (void *)skb_put(skb, sizeof(*wmm));
276 memset(wmm, 0, sizeof(*wmm));
277
278 wmm->element_id = WLAN_EID_VENDOR_SPECIFIC;
279 wmm->len = sizeof(*wmm) - 2;
280
281 wmm->oui[0] = 0x00; /* Microsoft OUI 00:50:F2 */
282 wmm->oui[1] = 0x50;
283 wmm->oui[2] = 0xf2;
284 wmm->oui_type = 2; /* WME */
285 wmm->oui_subtype = 1; /* WME param */
286 wmm->version = 1; /* WME ver */
287 wmm->qos_info = 0; /* U-APSD not in use */
288
289 /*
290 * Use the EDCA parameters defined for the BSS, or default if the AP
291 * doesn't support it, as mandated by 802.11-2012 section 10.22.4
292 */
293 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
294 txq = &sdata->tx_conf[ieee80211_ac_from_wmm(i)];
295 wmm->ac[i].aci_aifsn = ieee80211_wmm_aci_aifsn(txq->aifs,
296 txq->acm, i);
297 wmm->ac[i].cw = ieee80211_wmm_ecw(txq->cw_min, txq->cw_max);
298 wmm->ac[i].txop_limit = cpu_to_le16(txq->txop);
299 }
300}
301
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300302static void
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300303ieee80211_tdls_chandef_vht_upgrade(struct ieee80211_sub_if_data *sdata,
304 struct sta_info *sta)
305{
306 /* IEEE802.11ac-2013 Table E-4 */
307 u16 centers_80mhz[] = { 5210, 5290, 5530, 5610, 5690, 5775 };
308 struct cfg80211_chan_def uc = sta->tdls_chandef;
Arik Nemtsov59021c62016-03-02 23:28:32 +0200309 enum nl80211_chan_width max_width = ieee80211_sta_cap_chan_bw(sta);
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300310 int i;
311
312 /* only support upgrading non-narrow channels up to 80Mhz */
313 if (max_width == NL80211_CHAN_WIDTH_5 ||
314 max_width == NL80211_CHAN_WIDTH_10)
315 return;
316
317 if (max_width > NL80211_CHAN_WIDTH_80)
318 max_width = NL80211_CHAN_WIDTH_80;
319
Ilan Peer4b559ec2016-03-08 13:35:31 +0200320 if (uc.width >= max_width)
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300321 return;
322 /*
323 * Channel usage constrains in the IEEE802.11ac-2013 specification only
324 * allow expanding a 20MHz channel to 80MHz in a single way. In
325 * addition, there are no 40MHz allowed channels that are not part of
326 * the allowed 80MHz range in the 5GHz spectrum (the relevant one here).
327 */
328 for (i = 0; i < ARRAY_SIZE(centers_80mhz); i++)
329 if (abs(uc.chan->center_freq - centers_80mhz[i]) <= 30) {
330 uc.center_freq1 = centers_80mhz[i];
Ilan Peer4b559ec2016-03-08 13:35:31 +0200331 uc.center_freq2 = 0;
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300332 uc.width = NL80211_CHAN_WIDTH_80;
333 break;
334 }
335
336 if (!uc.center_freq1)
337 return;
338
Arik Nemtsov554d0722016-08-29 12:37:35 +0300339 /* proceed to downgrade the chandef until usable or the same as AP BW */
Arik Nemtsovdb8d9972016-03-02 23:28:31 +0200340 while (uc.width > max_width ||
Arik Nemtsov554d0722016-08-29 12:37:35 +0300341 (uc.width > sta->tdls_chandef.width &&
342 !cfg80211_reg_can_beacon_relax(sdata->local->hw.wiphy, &uc,
343 sdata->wdev.iftype)))
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300344 ieee80211_chandef_downgrade(&uc);
345
346 if (!cfg80211_chandef_identical(&uc, &sta->tdls_chandef)) {
347 tdls_dbg(sdata, "TDLS ch width upgraded %d -> %d\n",
348 sta->tdls_chandef.width, uc.width);
349
350 /*
351 * the station is not yet authorized when BW upgrade is done,
352 * locking is not required
353 */
354 sta->tdls_chandef = uc;
355 }
356}
357
358static void
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300359ieee80211_tdls_add_setup_start_ies(struct ieee80211_sub_if_data *sdata,
360 struct sk_buff *skb, const u8 *peer,
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300361 u8 action_code, bool initiator,
362 const u8 *extra_ies, size_t extra_ies_len)
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300363{
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300364 struct ieee80211_supported_band *sband;
Mohammed Shafi Shajakhan92db8072017-04-27 12:45:38 +0530365 struct ieee80211_local *local = sdata->local;
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300366 struct ieee80211_sta_ht_cap ht_cap;
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200367 struct ieee80211_sta_vht_cap vht_cap;
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300368 struct sta_info *sta = NULL;
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300369 size_t offset = 0, noffset;
370 u8 *pos;
371
Mohammed Shafi Shajakhan92db8072017-04-27 12:45:38 +0530372 sband = ieee80211_get_sband(sdata);
373 if (!sband)
374 return;
375
376 ieee80211_add_srates_ie(sdata, skb, false, sband->band);
377 ieee80211_add_ext_srates_ie(sdata, skb, false, sband->band);
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +0200378 ieee80211_tdls_add_supp_channels(sdata, skb);
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300379
380 /* add any custom IEs that go before Extended Capabilities */
381 if (extra_ies_len) {
382 static const u8 before_ext_cap[] = {
383 WLAN_EID_SUPP_RATES,
384 WLAN_EID_COUNTRY,
385 WLAN_EID_EXT_SUPP_RATES,
386 WLAN_EID_SUPPORTED_CHANNELS,
387 WLAN_EID_RSN,
388 };
389 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
390 before_ext_cap,
391 ARRAY_SIZE(before_ext_cap),
392 offset);
393 pos = skb_put(skb, noffset - offset);
394 memcpy(pos, extra_ies + offset, noffset - offset);
395 offset = noffset;
396 }
397
Arik Nemtsovb98fb442015-06-10 20:42:59 +0300398 ieee80211_tdls_add_ext_capab(sdata, skb);
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300399
Arik Nemtsov40b861a2014-07-17 17:14:23 +0300400 /* add the QoS element if we support it */
401 if (local->hw.queues >= IEEE80211_NUM_ACS &&
402 action_code != WLAN_PUB_ACTION_TDLS_DISCOVER_RES)
403 ieee80211_add_wmm_info_ie(skb_put(skb, 9), 0); /* no U-APSD */
404
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300405 /* add any custom IEs that go before HT capabilities */
406 if (extra_ies_len) {
407 static const u8 before_ht_cap[] = {
408 WLAN_EID_SUPP_RATES,
409 WLAN_EID_COUNTRY,
410 WLAN_EID_EXT_SUPP_RATES,
411 WLAN_EID_SUPPORTED_CHANNELS,
412 WLAN_EID_RSN,
413 WLAN_EID_EXT_CAPABILITY,
414 WLAN_EID_QOS_CAPA,
415 WLAN_EID_FAST_BSS_TRANSITION,
416 WLAN_EID_TIMEOUT_INTERVAL,
417 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
418 };
419 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
420 before_ht_cap,
421 ARRAY_SIZE(before_ht_cap),
422 offset);
423 pos = skb_put(skb, noffset - offset);
424 memcpy(pos, extra_ies + offset, noffset - offset);
425 offset = noffset;
426 }
427
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300428 mutex_lock(&local->sta_mtx);
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +0200429
430 /* we should have the peer STA if we're already responding */
431 if (action_code == WLAN_TDLS_SETUP_RESPONSE) {
432 sta = sta_info_get(sdata, peer);
433 if (WARN_ON_ONCE(!sta)) {
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300434 mutex_unlock(&local->sta_mtx);
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +0200435 return;
436 }
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300437
438 sta->tdls_chandef = sdata->vif.bss_conf.chandef;
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +0200439 }
440
Arik Nemtsova38700d2015-03-18 08:46:08 +0200441 ieee80211_tdls_add_oper_classes(sdata, skb);
442
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300443 /*
444 * with TDLS we can switch channels, and HT-caps are not necessarily
445 * the same on all bands. The specification limits the setup to a
446 * single HT-cap, so use the current band for now.
447 */
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300448 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300449
Arik Nemtsov070e1762015-03-30 11:16:23 +0300450 if ((action_code == WLAN_TDLS_SETUP_REQUEST ||
451 action_code == WLAN_PUB_ACTION_TDLS_DISCOVER_RES) &&
452 ht_cap.ht_supported) {
Johannes Bergc5309ba2015-01-23 11:42:14 +0100453 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300454
Johannes Bergc5309ba2015-01-23 11:42:14 +0100455 /* disable SMPS in TDLS initiator */
456 ht_cap.cap |= WLAN_HT_CAP_SM_PS_DISABLED
457 << IEEE80211_HT_CAP_SM_PS_SHIFT;
458
459 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
460 ieee80211_ie_build_ht_cap(pos, &ht_cap, ht_cap.cap);
461 } else if (action_code == WLAN_TDLS_SETUP_RESPONSE &&
462 ht_cap.ht_supported && sta->sta.ht_cap.ht_supported) {
Johannes Bergc5309ba2015-01-23 11:42:14 +0100463 /* the peer caps are already intersected with our own */
464 memcpy(&ht_cap, &sta->sta.ht_cap, sizeof(ht_cap));
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300465
466 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
467 ieee80211_ie_build_ht_cap(pos, &ht_cap, ht_cap.cap);
468 }
469
Arik Nemtsov2cedd872014-11-09 18:50:13 +0200470 if (ht_cap.ht_supported &&
471 (ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40))
472 ieee80211_tdls_add_bss_coex_ie(skb);
473
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200474 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
475
476 /* add any custom IEs that go before VHT capabilities */
477 if (extra_ies_len) {
478 static const u8 before_vht_cap[] = {
479 WLAN_EID_SUPP_RATES,
480 WLAN_EID_COUNTRY,
481 WLAN_EID_EXT_SUPP_RATES,
482 WLAN_EID_SUPPORTED_CHANNELS,
483 WLAN_EID_RSN,
484 WLAN_EID_EXT_CAPABILITY,
485 WLAN_EID_QOS_CAPA,
486 WLAN_EID_FAST_BSS_TRANSITION,
487 WLAN_EID_TIMEOUT_INTERVAL,
488 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
489 WLAN_EID_MULTI_BAND,
490 };
491 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
492 before_vht_cap,
493 ARRAY_SIZE(before_vht_cap),
494 offset);
495 pos = skb_put(skb, noffset - offset);
496 memcpy(pos, extra_ies + offset, noffset - offset);
497 offset = noffset;
498 }
499
500 /* build the VHT-cap similarly to the HT-cap */
501 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
Arik Nemtsov070e1762015-03-30 11:16:23 +0300502 if ((action_code == WLAN_TDLS_SETUP_REQUEST ||
503 action_code == WLAN_PUB_ACTION_TDLS_DISCOVER_RES) &&
504 vht_cap.vht_supported) {
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200505 ieee80211_apply_vhtcap_overrides(sdata, &vht_cap);
506
507 /* the AID is present only when VHT is implemented */
Arik Nemtsov070e1762015-03-30 11:16:23 +0300508 if (action_code == WLAN_TDLS_SETUP_REQUEST)
509 ieee80211_tdls_add_aid(sdata, skb);
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200510
511 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
512 ieee80211_ie_build_vht_cap(pos, &vht_cap, vht_cap.cap);
513 } else if (action_code == WLAN_TDLS_SETUP_RESPONSE &&
514 vht_cap.vht_supported && sta->sta.vht_cap.vht_supported) {
515 /* the peer caps are already intersected with our own */
516 memcpy(&vht_cap, &sta->sta.vht_cap, sizeof(vht_cap));
517
518 /* the AID is present only when VHT is implemented */
519 ieee80211_tdls_add_aid(sdata, skb);
520
521 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
522 ieee80211_ie_build_vht_cap(pos, &vht_cap, vht_cap.cap);
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300523
524 /*
525 * if both peers support WIDER_BW, we can expand the chandef to
526 * a wider compatible one, up to 80MHz
527 */
528 if (test_sta_flag(sta, WLAN_STA_TDLS_WIDER_BW))
529 ieee80211_tdls_chandef_vht_upgrade(sdata, sta);
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200530 }
531
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300532 mutex_unlock(&local->sta_mtx);
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200533
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300534 /* add any remaining IEs */
535 if (extra_ies_len) {
536 noffset = extra_ies_len;
537 pos = skb_put(skb, noffset - offset);
538 memcpy(pos, extra_ies + offset, noffset - offset);
539 }
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300540
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300541}
542
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300543static void
544ieee80211_tdls_add_setup_cfm_ies(struct ieee80211_sub_if_data *sdata,
545 struct sk_buff *skb, const u8 *peer,
546 bool initiator, const u8 *extra_ies,
547 size_t extra_ies_len)
548{
549 struct ieee80211_local *local = sdata->local;
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300550 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300551 size_t offset = 0, noffset;
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300552 struct sta_info *sta, *ap_sta;
Mohammed Shafi Shajakhan92db8072017-04-27 12:45:38 +0530553 struct ieee80211_supported_band *sband;
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300554 u8 *pos;
555
Mohammed Shafi Shajakhan92db8072017-04-27 12:45:38 +0530556 sband = ieee80211_get_sband(sdata);
557 if (!sband)
558 return;
559
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300560 mutex_lock(&local->sta_mtx);
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300561
562 sta = sta_info_get(sdata, peer);
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300563 ap_sta = sta_info_get(sdata, ifmgd->bssid);
564 if (WARN_ON_ONCE(!sta || !ap_sta)) {
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300565 mutex_unlock(&local->sta_mtx);
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300566 return;
567 }
568
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300569 sta->tdls_chandef = sdata->vif.bss_conf.chandef;
570
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300571 /* add any custom IEs that go before the QoS IE */
572 if (extra_ies_len) {
573 static const u8 before_qos[] = {
574 WLAN_EID_RSN,
575 };
576 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
577 before_qos,
578 ARRAY_SIZE(before_qos),
579 offset);
580 pos = skb_put(skb, noffset - offset);
581 memcpy(pos, extra_ies + offset, noffset - offset);
582 offset = noffset;
583 }
584
585 /* add the QoS param IE if both the peer and we support it */
Johannes Berga74a8c82014-07-22 14:50:47 +0200586 if (local->hw.queues >= IEEE80211_NUM_ACS && sta->sta.wme)
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300587 ieee80211_tdls_add_wmm_param_ie(sdata, skb);
588
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300589 /* add any custom IEs that go before HT operation */
590 if (extra_ies_len) {
591 static const u8 before_ht_op[] = {
592 WLAN_EID_RSN,
593 WLAN_EID_QOS_CAPA,
594 WLAN_EID_FAST_BSS_TRANSITION,
595 WLAN_EID_TIMEOUT_INTERVAL,
596 };
597 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
598 before_ht_op,
599 ARRAY_SIZE(before_ht_op),
600 offset);
601 pos = skb_put(skb, noffset - offset);
602 memcpy(pos, extra_ies + offset, noffset - offset);
603 offset = noffset;
604 }
605
Arik Nemtsov57f255f2015-10-25 10:59:34 +0200606 /*
607 * if HT support is only added in TDLS, we need an HT-operation IE.
608 * add the IE as required by IEEE802.11-2012 9.23.3.2.
609 */
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300610 if (!ap_sta->sta.ht_cap.ht_supported && sta->sta.ht_cap.ht_supported) {
Arik Nemtsov57f255f2015-10-25 10:59:34 +0200611 u16 prot = IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED |
612 IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT |
613 IEEE80211_HT_OP_MODE_NON_HT_STA_PRSNT;
614
Arik Nemtsov890b7872015-05-07 15:30:41 +0300615 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_operation));
Arik Nemtsov890b7872015-05-07 15:30:41 +0300616 ieee80211_ie_build_ht_oper(pos, &sta->sta.ht_cap,
Arik Nemtsov57f255f2015-10-25 10:59:34 +0200617 &sdata->vif.bss_conf.chandef, prot,
618 true);
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300619 }
620
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200621 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
622
623 /* only include VHT-operation if not on the 2.4GHz band */
Mohammed Shafi Shajakhan92db8072017-04-27 12:45:38 +0530624 if (sband->band != NL80211_BAND_2GHZ &&
625 sta->sta.vht_cap.vht_supported) {
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300626 /*
627 * if both peers support WIDER_BW, we can expand the chandef to
628 * a wider compatible one, up to 80MHz
629 */
630 if (test_sta_flag(sta, WLAN_STA_TDLS_WIDER_BW))
631 ieee80211_tdls_chandef_vht_upgrade(sdata, sta);
632
Arik Nemtsov890b7872015-05-07 15:30:41 +0300633 pos = skb_put(skb, 2 + sizeof(struct ieee80211_vht_operation));
634 ieee80211_ie_build_vht_oper(pos, &sta->sta.vht_cap,
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300635 &sta->tdls_chandef);
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200636 }
637
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300638 mutex_unlock(&local->sta_mtx);
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300639
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300640 /* add any remaining IEs */
641 if (extra_ies_len) {
642 noffset = extra_ies_len;
643 pos = skb_put(skb, noffset - offset);
644 memcpy(pos, extra_ies + offset, noffset - offset);
645 }
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300646}
647
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +0200648static void
649ieee80211_tdls_add_chan_switch_req_ies(struct ieee80211_sub_if_data *sdata,
650 struct sk_buff *skb, const u8 *peer,
651 bool initiator, const u8 *extra_ies,
652 size_t extra_ies_len, u8 oper_class,
653 struct cfg80211_chan_def *chandef)
654{
655 struct ieee80211_tdls_data *tf;
656 size_t offset = 0, noffset;
657 u8 *pos;
658
659 if (WARN_ON_ONCE(!chandef))
660 return;
661
662 tf = (void *)skb->data;
663 tf->u.chan_switch_req.target_channel =
664 ieee80211_frequency_to_channel(chandef->chan->center_freq);
665 tf->u.chan_switch_req.oper_class = oper_class;
666
667 if (extra_ies_len) {
668 static const u8 before_lnkie[] = {
669 WLAN_EID_SECONDARY_CHANNEL_OFFSET,
670 };
671 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
672 before_lnkie,
673 ARRAY_SIZE(before_lnkie),
674 offset);
675 pos = skb_put(skb, noffset - offset);
676 memcpy(pos, extra_ies + offset, noffset - offset);
677 offset = noffset;
678 }
679
680 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
681
682 /* add any remaining IEs */
683 if (extra_ies_len) {
684 noffset = extra_ies_len;
685 pos = skb_put(skb, noffset - offset);
686 memcpy(pos, extra_ies + offset, noffset - offset);
687 }
688}
689
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +0200690static void
691ieee80211_tdls_add_chan_switch_resp_ies(struct ieee80211_sub_if_data *sdata,
692 struct sk_buff *skb, const u8 *peer,
693 u16 status_code, bool initiator,
694 const u8 *extra_ies,
695 size_t extra_ies_len)
696{
697 if (status_code == 0)
698 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
699
700 if (extra_ies_len)
701 memcpy(skb_put(skb, extra_ies_len), extra_ies, extra_ies_len);
702}
703
Arik Nemtsov46792a22014-07-17 17:14:19 +0300704static void ieee80211_tdls_add_ies(struct ieee80211_sub_if_data *sdata,
705 struct sk_buff *skb, const u8 *peer,
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300706 u8 action_code, u16 status_code,
707 bool initiator, const u8 *extra_ies,
Arik Nemtsovc2733902014-11-09 18:50:16 +0200708 size_t extra_ies_len, u8 oper_class,
709 struct cfg80211_chan_def *chandef)
Arik Nemtsov46792a22014-07-17 17:14:19 +0300710{
Arik Nemtsov46792a22014-07-17 17:14:19 +0300711 switch (action_code) {
712 case WLAN_TDLS_SETUP_REQUEST:
713 case WLAN_TDLS_SETUP_RESPONSE:
714 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300715 if (status_code == 0)
716 ieee80211_tdls_add_setup_start_ies(sdata, skb, peer,
717 action_code,
718 initiator,
719 extra_ies,
720 extra_ies_len);
Arik Nemtsov46792a22014-07-17 17:14:19 +0300721 break;
722 case WLAN_TDLS_SETUP_CONFIRM:
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300723 if (status_code == 0)
724 ieee80211_tdls_add_setup_cfm_ies(sdata, skb, peer,
725 initiator, extra_ies,
726 extra_ies_len);
727 break;
Arik Nemtsov46792a22014-07-17 17:14:19 +0300728 case WLAN_TDLS_TEARDOWN:
729 case WLAN_TDLS_DISCOVERY_REQUEST:
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300730 if (extra_ies_len)
731 memcpy(skb_put(skb, extra_ies_len), extra_ies,
732 extra_ies_len);
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300733 if (status_code == 0 || action_code == WLAN_TDLS_TEARDOWN)
734 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
Arik Nemtsov46792a22014-07-17 17:14:19 +0300735 break;
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +0200736 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
737 ieee80211_tdls_add_chan_switch_req_ies(sdata, skb, peer,
738 initiator, extra_ies,
739 extra_ies_len,
740 oper_class, chandef);
741 break;
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +0200742 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
743 ieee80211_tdls_add_chan_switch_resp_ies(sdata, skb, peer,
744 status_code,
745 initiator, extra_ies,
746 extra_ies_len);
747 break;
Arik Nemtsov46792a22014-07-17 17:14:19 +0300748 }
749
Arik Nemtsov46792a22014-07-17 17:14:19 +0300750}
751
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300752static int
753ieee80211_prep_tdls_encap_data(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200754 const u8 *peer, u8 action_code, u8 dialog_token,
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300755 u16 status_code, struct sk_buff *skb)
756{
757 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300758 struct ieee80211_tdls_data *tf;
759
760 tf = (void *)skb_put(skb, offsetof(struct ieee80211_tdls_data, u));
761
762 memcpy(tf->da, peer, ETH_ALEN);
763 memcpy(tf->sa, sdata->vif.addr, ETH_ALEN);
764 tf->ether_type = cpu_to_be16(ETH_P_TDLS);
765 tf->payload_type = WLAN_TDLS_SNAP_RFTYPE;
766
Arik Nemtsov59cd85c2014-09-09 17:11:02 +0300767 /* network header is after the ethernet header */
768 skb_set_network_header(skb, ETH_HLEN);
769
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300770 switch (action_code) {
771 case WLAN_TDLS_SETUP_REQUEST:
772 tf->category = WLAN_CATEGORY_TDLS;
773 tf->action_code = WLAN_TDLS_SETUP_REQUEST;
774
775 skb_put(skb, sizeof(tf->u.setup_req));
776 tf->u.setup_req.dialog_token = dialog_token;
777 tf->u.setup_req.capability =
Arik Nemtsovdd8c0b02014-07-17 17:14:22 +0300778 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata,
779 status_code));
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300780 break;
781 case WLAN_TDLS_SETUP_RESPONSE:
782 tf->category = WLAN_CATEGORY_TDLS;
783 tf->action_code = WLAN_TDLS_SETUP_RESPONSE;
784
785 skb_put(skb, sizeof(tf->u.setup_resp));
786 tf->u.setup_resp.status_code = cpu_to_le16(status_code);
787 tf->u.setup_resp.dialog_token = dialog_token;
788 tf->u.setup_resp.capability =
Arik Nemtsovdd8c0b02014-07-17 17:14:22 +0300789 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata,
790 status_code));
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300791 break;
792 case WLAN_TDLS_SETUP_CONFIRM:
793 tf->category = WLAN_CATEGORY_TDLS;
794 tf->action_code = WLAN_TDLS_SETUP_CONFIRM;
795
796 skb_put(skb, sizeof(tf->u.setup_cfm));
797 tf->u.setup_cfm.status_code = cpu_to_le16(status_code);
798 tf->u.setup_cfm.dialog_token = dialog_token;
799 break;
800 case WLAN_TDLS_TEARDOWN:
801 tf->category = WLAN_CATEGORY_TDLS;
802 tf->action_code = WLAN_TDLS_TEARDOWN;
803
804 skb_put(skb, sizeof(tf->u.teardown));
805 tf->u.teardown.reason_code = cpu_to_le16(status_code);
806 break;
807 case WLAN_TDLS_DISCOVERY_REQUEST:
808 tf->category = WLAN_CATEGORY_TDLS;
809 tf->action_code = WLAN_TDLS_DISCOVERY_REQUEST;
810
811 skb_put(skb, sizeof(tf->u.discover_req));
812 tf->u.discover_req.dialog_token = dialog_token;
813 break;
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +0200814 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
815 tf->category = WLAN_CATEGORY_TDLS;
816 tf->action_code = WLAN_TDLS_CHANNEL_SWITCH_REQUEST;
817
818 skb_put(skb, sizeof(tf->u.chan_switch_req));
819 break;
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +0200820 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
821 tf->category = WLAN_CATEGORY_TDLS;
822 tf->action_code = WLAN_TDLS_CHANNEL_SWITCH_RESPONSE;
823
824 skb_put(skb, sizeof(tf->u.chan_switch_resp));
825 tf->u.chan_switch_resp.status_code = cpu_to_le16(status_code);
826 break;
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300827 default:
828 return -EINVAL;
829 }
830
831 return 0;
832}
833
834static int
835ieee80211_prep_tdls_direct(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200836 const u8 *peer, u8 action_code, u8 dialog_token,
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300837 u16 status_code, struct sk_buff *skb)
838{
839 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300840 struct ieee80211_mgmt *mgmt;
841
842 mgmt = (void *)skb_put(skb, 24);
843 memset(mgmt, 0, 24);
844 memcpy(mgmt->da, peer, ETH_ALEN);
845 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
846 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
847
848 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
849 IEEE80211_STYPE_ACTION);
850
851 switch (action_code) {
852 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
853 skb_put(skb, 1 + sizeof(mgmt->u.action.u.tdls_discover_resp));
854 mgmt->u.action.category = WLAN_CATEGORY_PUBLIC;
855 mgmt->u.action.u.tdls_discover_resp.action_code =
856 WLAN_PUB_ACTION_TDLS_DISCOVER_RES;
857 mgmt->u.action.u.tdls_discover_resp.dialog_token =
858 dialog_token;
859 mgmt->u.action.u.tdls_discover_resp.capability =
Arik Nemtsovdd8c0b02014-07-17 17:14:22 +0300860 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata,
861 status_code));
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300862 break;
863 default:
864 return -EINVAL;
865 }
866
867 return 0;
868}
869
Arik Nemtsovc2733902014-11-09 18:50:16 +0200870static struct sk_buff *
871ieee80211_tdls_build_mgmt_packet_data(struct ieee80211_sub_if_data *sdata,
872 const u8 *peer, u8 action_code,
873 u8 dialog_token, u16 status_code,
874 bool initiator, const u8 *extra_ies,
875 size_t extra_ies_len, u8 oper_class,
876 struct cfg80211_chan_def *chandef)
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300877{
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300878 struct ieee80211_local *local = sdata->local;
Arik Nemtsovc2733902014-11-09 18:50:16 +0200879 struct sk_buff *skb;
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300880 int ret;
881
Arik Nemtsovc2733902014-11-09 18:50:16 +0200882 skb = netdev_alloc_skb(sdata->dev,
Liad Kaufman1277b4a2014-11-09 18:50:08 +0200883 local->hw.extra_tx_headroom +
884 max(sizeof(struct ieee80211_mgmt),
885 sizeof(struct ieee80211_tdls_data)) +
886 50 + /* supported rates */
Arik Nemtsovb98fb442015-06-10 20:42:59 +0300887 10 + /* ext capab */
Liad Kaufman1277b4a2014-11-09 18:50:08 +0200888 26 + /* max(WMM-info, WMM-param) */
889 2 + max(sizeof(struct ieee80211_ht_cap),
890 sizeof(struct ieee80211_ht_operation)) +
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200891 2 + max(sizeof(struct ieee80211_vht_cap),
892 sizeof(struct ieee80211_vht_operation)) +
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +0200893 50 + /* supported channels */
Arik Nemtsov2cedd872014-11-09 18:50:13 +0200894 3 + /* 40/20 BSS coex */
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200895 4 + /* AID */
Arik Nemtsova38700d2015-03-18 08:46:08 +0200896 4 + /* oper classes */
Liad Kaufman1277b4a2014-11-09 18:50:08 +0200897 extra_ies_len +
898 sizeof(struct ieee80211_tdls_lnkie));
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300899 if (!skb)
Arik Nemtsovc2733902014-11-09 18:50:16 +0200900 return NULL;
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300901
902 skb_reserve(skb, local->hw.extra_tx_headroom);
903
904 switch (action_code) {
905 case WLAN_TDLS_SETUP_REQUEST:
906 case WLAN_TDLS_SETUP_RESPONSE:
907 case WLAN_TDLS_SETUP_CONFIRM:
908 case WLAN_TDLS_TEARDOWN:
909 case WLAN_TDLS_DISCOVERY_REQUEST:
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +0200910 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +0200911 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
Arik Nemtsovc2733902014-11-09 18:50:16 +0200912 ret = ieee80211_prep_tdls_encap_data(local->hw.wiphy,
913 sdata->dev, peer,
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300914 action_code, dialog_token,
915 status_code, skb);
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300916 break;
917 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
Arik Nemtsovc2733902014-11-09 18:50:16 +0200918 ret = ieee80211_prep_tdls_direct(local->hw.wiphy, sdata->dev,
919 peer, action_code,
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300920 dialog_token, status_code,
921 skb);
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300922 break;
923 default:
924 ret = -ENOTSUPP;
925 break;
926 }
927
928 if (ret < 0)
929 goto fail;
930
Arik Nemtsovc2733902014-11-09 18:50:16 +0200931 ieee80211_tdls_add_ies(sdata, skb, peer, action_code, status_code,
932 initiator, extra_ies, extra_ies_len, oper_class,
933 chandef);
934 return skb;
935
936fail:
937 dev_kfree_skb(skb);
938 return NULL;
939}
940
941static int
942ieee80211_tdls_prep_mgmt_packet(struct wiphy *wiphy, struct net_device *dev,
943 const u8 *peer, u8 action_code, u8 dialog_token,
944 u16 status_code, u32 peer_capability,
945 bool initiator, const u8 *extra_ies,
946 size_t extra_ies_len, u8 oper_class,
947 struct cfg80211_chan_def *chandef)
948{
949 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
950 struct sk_buff *skb = NULL;
951 struct sta_info *sta;
952 u32 flags = 0;
953 int ret = 0;
954
Arik Nemtsov626911c2014-07-17 17:14:17 +0300955 rcu_read_lock();
956 sta = sta_info_get(sdata, peer);
957
958 /* infer the initiator if we can, to support old userspace */
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300959 switch (action_code) {
960 case WLAN_TDLS_SETUP_REQUEST:
Arik Nemtsov8b941482014-10-22 12:32:48 +0300961 if (sta) {
Arik Nemtsov626911c2014-07-17 17:14:17 +0300962 set_sta_flag(sta, WLAN_STA_TDLS_INITIATOR);
Arik Nemtsov8b941482014-10-22 12:32:48 +0300963 sta->sta.tdls_initiator = false;
964 }
Arik Nemtsov626911c2014-07-17 17:14:17 +0300965 /* fall-through */
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300966 case WLAN_TDLS_SETUP_CONFIRM:
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300967 case WLAN_TDLS_DISCOVERY_REQUEST:
Arik Nemtsov626911c2014-07-17 17:14:17 +0300968 initiator = true;
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300969 break;
970 case WLAN_TDLS_SETUP_RESPONSE:
Arik Nemtsov626911c2014-07-17 17:14:17 +0300971 /*
972 * In some testing scenarios, we send a request and response.
973 * Make the last packet sent take effect for the initiator
974 * value.
975 */
Arik Nemtsov8b941482014-10-22 12:32:48 +0300976 if (sta) {
Arik Nemtsov626911c2014-07-17 17:14:17 +0300977 clear_sta_flag(sta, WLAN_STA_TDLS_INITIATOR);
Arik Nemtsov8b941482014-10-22 12:32:48 +0300978 sta->sta.tdls_initiator = true;
979 }
Arik Nemtsov626911c2014-07-17 17:14:17 +0300980 /* fall-through */
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300981 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
Arik Nemtsov626911c2014-07-17 17:14:17 +0300982 initiator = false;
Arik Nemtsov2fb6b9b2014-06-11 17:18:22 +0300983 break;
984 case WLAN_TDLS_TEARDOWN:
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +0200985 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +0200986 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
Arik Nemtsov2fb6b9b2014-06-11 17:18:22 +0300987 /* any value is ok */
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300988 break;
989 default:
990 ret = -ENOTSUPP;
Arik Nemtsov626911c2014-07-17 17:14:17 +0300991 break;
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300992 }
993
Arik Nemtsov46792a22014-07-17 17:14:19 +0300994 if (sta && test_sta_flag(sta, WLAN_STA_TDLS_INITIATOR))
995 initiator = true;
Arik Nemtsov2fb6b9b2014-06-11 17:18:22 +0300996
Arik Nemtsov626911c2014-07-17 17:14:17 +0300997 rcu_read_unlock();
998 if (ret < 0)
999 goto fail;
1000
Arik Nemtsovc2733902014-11-09 18:50:16 +02001001 skb = ieee80211_tdls_build_mgmt_packet_data(sdata, peer, action_code,
1002 dialog_token, status_code,
1003 initiator, extra_ies,
1004 extra_ies_len, oper_class,
1005 chandef);
1006 if (!skb) {
1007 ret = -EINVAL;
1008 goto fail;
1009 }
1010
1011 if (action_code == WLAN_PUB_ACTION_TDLS_DISCOVER_RES) {
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001012 ieee80211_tx_skb(sdata, skb);
1013 return 0;
1014 }
1015
1016 /*
1017 * According to 802.11z: Setup req/resp are sent in AC_BK, otherwise
1018 * we should default to AC_VI.
1019 */
1020 switch (action_code) {
1021 case WLAN_TDLS_SETUP_REQUEST:
1022 case WLAN_TDLS_SETUP_RESPONSE:
Johannes Berge36e7b02018-09-05 13:34:02 +02001023 skb->priority = 256 + 2;
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001024 break;
1025 default:
Johannes Berge36e7b02018-09-05 13:34:02 +02001026 skb->priority = 256 + 5;
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001027 break;
1028 }
Johannes Berge36e7b02018-09-05 13:34:02 +02001029 skb_set_queue_mapping(skb, ieee80211_select_queue(sdata, skb));
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001030
Liad Kaufman1277b4a2014-11-09 18:50:08 +02001031 /*
1032 * Set the WLAN_TDLS_TEARDOWN flag to indicate a teardown in progress.
1033 * Later, if no ACK is returned from peer, we will re-send the teardown
1034 * packet through the AP.
1035 */
1036 if ((action_code == WLAN_TDLS_TEARDOWN) &&
Johannes Berg30686bf2015-06-02 21:39:54 +02001037 ieee80211_hw_check(&sdata->local->hw, REPORTS_TX_ACK_STATUS)) {
Liad Kaufman1277b4a2014-11-09 18:50:08 +02001038 bool try_resend; /* Should we keep skb for possible resend */
1039
1040 /* If not sending directly to peer - no point in keeping skb */
1041 rcu_read_lock();
1042 sta = sta_info_get(sdata, peer);
1043 try_resend = sta && test_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH);
1044 rcu_read_unlock();
1045
1046 spin_lock_bh(&sdata->u.mgd.teardown_lock);
1047 if (try_resend && !sdata->u.mgd.teardown_skb) {
1048 /* Mark it as requiring TX status callback */
1049 flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
1050 IEEE80211_TX_INTFL_MLME_CONN_TX;
1051
1052 /*
1053 * skb is copied since mac80211 will later set
1054 * properties that might not be the same as the AP,
1055 * such as encryption, QoS, addresses, etc.
1056 *
1057 * No problem if skb_copy() fails, so no need to check.
1058 */
1059 sdata->u.mgd.teardown_skb = skb_copy(skb, GFP_ATOMIC);
1060 sdata->u.mgd.orig_teardown_skb = skb;
1061 }
1062 spin_unlock_bh(&sdata->u.mgd.teardown_lock);
1063 }
1064
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001065 /* disable bottom halves when entering the Tx path */
1066 local_bh_disable();
Liad Kaufman1277b4a2014-11-09 18:50:08 +02001067 __ieee80211_subif_start_xmit(skb, dev, flags);
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001068 local_bh_enable();
1069
1070 return ret;
1071
1072fail:
1073 dev_kfree_skb(skb);
1074 return ret;
1075}
1076
Arik Nemtsov191dd462014-06-11 17:18:23 +03001077static int
1078ieee80211_tdls_mgmt_setup(struct wiphy *wiphy, struct net_device *dev,
1079 const u8 *peer, u8 action_code, u8 dialog_token,
1080 u16 status_code, u32 peer_capability, bool initiator,
1081 const u8 *extra_ies, size_t extra_ies_len)
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001082{
1083 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1084 struct ieee80211_local *local = sdata->local;
Arik Nemtsovd51c2ea2015-06-14 16:53:46 +03001085 enum ieee80211_smps_mode smps_mode = sdata->u.mgd.driver_smps_mode;
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001086 int ret;
1087
Arik Nemtsovd51c2ea2015-06-14 16:53:46 +03001088 /* don't support setup with forced SMPS mode that's not off */
1089 if (smps_mode != IEEE80211_SMPS_AUTOMATIC &&
1090 smps_mode != IEEE80211_SMPS_OFF) {
1091 tdls_dbg(sdata, "Aborting TDLS setup due to SMPS mode %d\n",
1092 smps_mode);
1093 return -ENOTSUPP;
1094 }
1095
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001096 mutex_lock(&local->mtx);
1097
1098 /* we don't support concurrent TDLS peer setups */
Arik Nemtsov81dd2b82014-07-17 17:14:25 +03001099 if (!is_zero_ether_addr(sdata->u.mgd.tdls_peer) &&
1100 !ether_addr_equal(sdata->u.mgd.tdls_peer, peer)) {
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001101 ret = -EBUSY;
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +02001102 goto out_unlock;
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001103 }
1104
Arik Nemtsov7adc3e42014-06-11 17:18:26 +03001105 /*
1106 * make sure we have a STA representing the peer so we drop or buffer
1107 * non-TDLS-setup frames to the peer. We can't send other packets
Arik Nemtsov6ae32e52014-07-17 17:14:18 +03001108 * during setup through the AP path.
1109 * Allow error packets to be sent - sometimes we don't even add a STA
1110 * before failing the setup.
Arik Nemtsov7adc3e42014-06-11 17:18:26 +03001111 */
Arik Nemtsov6ae32e52014-07-17 17:14:18 +03001112 if (status_code == 0) {
1113 rcu_read_lock();
1114 if (!sta_info_get(sdata, peer)) {
1115 rcu_read_unlock();
1116 ret = -ENOLINK;
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +02001117 goto out_unlock;
Arik Nemtsov6ae32e52014-07-17 17:14:18 +03001118 }
Arik Nemtsov7adc3e42014-06-11 17:18:26 +03001119 rcu_read_unlock();
Arik Nemtsov7adc3e42014-06-11 17:18:26 +03001120 }
Arik Nemtsov7adc3e42014-06-11 17:18:26 +03001121
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +02001122 ieee80211_flush_queues(local, sdata, false);
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +02001123 memcpy(sdata->u.mgd.tdls_peer, peer, ETH_ALEN);
1124 mutex_unlock(&local->mtx);
Arik Nemtsovdb67d662014-06-11 17:18:24 +03001125
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +02001126 /* we cannot take the mutex while preparing the setup packet */
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001127 ret = ieee80211_tdls_prep_mgmt_packet(wiphy, dev, peer, action_code,
1128 dialog_token, status_code,
Arik Nemtsov2fb6b9b2014-06-11 17:18:22 +03001129 peer_capability, initiator,
Arik Nemtsovc2733902014-11-09 18:50:16 +02001130 extra_ies, extra_ies_len, 0,
1131 NULL);
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +02001132 if (ret < 0) {
1133 mutex_lock(&local->mtx);
1134 eth_zero_addr(sdata->u.mgd.tdls_peer);
1135 mutex_unlock(&local->mtx);
1136 return ret;
1137 }
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001138
Arik Nemtsov191dd462014-06-11 17:18:23 +03001139 ieee80211_queue_delayed_work(&sdata->local->hw,
Arik Nemtsov81dd2b82014-07-17 17:14:25 +03001140 &sdata->u.mgd.tdls_peer_del_work,
Arik Nemtsov191dd462014-06-11 17:18:23 +03001141 TDLS_PEER_SETUP_TIMEOUT);
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +02001142 return 0;
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001143
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +02001144out_unlock:
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001145 mutex_unlock(&local->mtx);
Arik Nemtsov191dd462014-06-11 17:18:23 +03001146 return ret;
1147}
1148
Arik Nemtsovdb67d662014-06-11 17:18:24 +03001149static int
1150ieee80211_tdls_mgmt_teardown(struct wiphy *wiphy, struct net_device *dev,
1151 const u8 *peer, u8 action_code, u8 dialog_token,
1152 u16 status_code, u32 peer_capability,
1153 bool initiator, const u8 *extra_ies,
1154 size_t extra_ies_len)
1155{
1156 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1157 struct ieee80211_local *local = sdata->local;
1158 struct sta_info *sta;
1159 int ret;
1160
1161 /*
1162 * No packets can be transmitted to the peer via the AP during setup -
1163 * the STA is set as a TDLS peer, but is not authorized.
1164 * During teardown, we prevent direct transmissions by stopping the
1165 * queues and flushing all direct packets.
1166 */
1167 ieee80211_stop_vif_queues(local, sdata,
1168 IEEE80211_QUEUE_STOP_REASON_TDLS_TEARDOWN);
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +02001169 ieee80211_flush_queues(local, sdata, false);
Arik Nemtsovdb67d662014-06-11 17:18:24 +03001170
1171 ret = ieee80211_tdls_prep_mgmt_packet(wiphy, dev, peer, action_code,
1172 dialog_token, status_code,
1173 peer_capability, initiator,
Arik Nemtsovc2733902014-11-09 18:50:16 +02001174 extra_ies, extra_ies_len, 0,
1175 NULL);
Arik Nemtsovdb67d662014-06-11 17:18:24 +03001176 if (ret < 0)
1177 sdata_err(sdata, "Failed sending TDLS teardown packet %d\n",
1178 ret);
1179
1180 /*
1181 * Remove the STA AUTH flag to force further traffic through the AP. If
1182 * the STA was unreachable, it was already removed.
1183 */
1184 rcu_read_lock();
1185 sta = sta_info_get(sdata, peer);
1186 if (sta)
1187 clear_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH);
1188 rcu_read_unlock();
1189
1190 ieee80211_wake_vif_queues(local, sdata,
1191 IEEE80211_QUEUE_STOP_REASON_TDLS_TEARDOWN);
1192
1193 return 0;
1194}
1195
Arik Nemtsov191dd462014-06-11 17:18:23 +03001196int ieee80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
1197 const u8 *peer, u8 action_code, u8 dialog_token,
1198 u16 status_code, u32 peer_capability,
1199 bool initiator, const u8 *extra_ies,
1200 size_t extra_ies_len)
1201{
1202 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1203 int ret;
1204
1205 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
1206 return -ENOTSUPP;
1207
1208 /* make sure we are in managed mode, and associated */
1209 if (sdata->vif.type != NL80211_IFTYPE_STATION ||
1210 !sdata->u.mgd.associated)
1211 return -EINVAL;
1212
1213 switch (action_code) {
1214 case WLAN_TDLS_SETUP_REQUEST:
1215 case WLAN_TDLS_SETUP_RESPONSE:
1216 ret = ieee80211_tdls_mgmt_setup(wiphy, dev, peer, action_code,
1217 dialog_token, status_code,
1218 peer_capability, initiator,
1219 extra_ies, extra_ies_len);
1220 break;
1221 case WLAN_TDLS_TEARDOWN:
Arik Nemtsovdb67d662014-06-11 17:18:24 +03001222 ret = ieee80211_tdls_mgmt_teardown(wiphy, dev, peer,
1223 action_code, dialog_token,
1224 status_code,
1225 peer_capability, initiator,
1226 extra_ies, extra_ies_len);
1227 break;
Arik Nemtsov191dd462014-06-11 17:18:23 +03001228 case WLAN_TDLS_DISCOVERY_REQUEST:
Arik Nemtsovee10f2c2014-06-11 17:18:27 +03001229 /*
1230 * Protect the discovery so we can hear the TDLS discovery
1231 * response frame. It is transmitted directly and not buffered
1232 * by the AP.
1233 */
1234 drv_mgd_protect_tdls_discover(sdata->local, sdata);
1235 /* fall-through */
1236 case WLAN_TDLS_SETUP_CONFIRM:
Arik Nemtsov191dd462014-06-11 17:18:23 +03001237 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
1238 /* no special handling */
1239 ret = ieee80211_tdls_prep_mgmt_packet(wiphy, dev, peer,
1240 action_code,
1241 dialog_token,
1242 status_code,
1243 peer_capability,
1244 initiator, extra_ies,
Arik Nemtsovc2733902014-11-09 18:50:16 +02001245 extra_ies_len, 0, NULL);
Arik Nemtsov191dd462014-06-11 17:18:23 +03001246 break;
1247 default:
1248 ret = -EOPNOTSUPP;
1249 break;
1250 }
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001251
1252 tdls_dbg(sdata, "TDLS mgmt action %d peer %pM status %d\n",
1253 action_code, peer, ret);
1254 return ret;
1255}
1256
Arik Nemtsov59021c62016-03-02 23:28:32 +02001257static void iee80211_tdls_recalc_chanctx(struct ieee80211_sub_if_data *sdata,
1258 struct sta_info *sta)
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +03001259{
1260 struct ieee80211_local *local = sdata->local;
1261 struct ieee80211_chanctx_conf *conf;
1262 struct ieee80211_chanctx *ctx;
Arik Nemtsov59021c62016-03-02 23:28:32 +02001263 enum nl80211_chan_width width;
1264 struct ieee80211_supported_band *sband;
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +03001265
1266 mutex_lock(&local->chanctx_mtx);
1267 conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
1268 lockdep_is_held(&local->chanctx_mtx));
1269 if (conf) {
Arik Nemtsov59021c62016-03-02 23:28:32 +02001270 width = conf->def.width;
1271 sband = local->hw.wiphy->bands[conf->def.chan->band];
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +03001272 ctx = container_of(conf, struct ieee80211_chanctx, conf);
1273 ieee80211_recalc_chanctx_chantype(local, ctx);
Arik Nemtsov59021c62016-03-02 23:28:32 +02001274
1275 /* if width changed and a peer is given, update its BW */
1276 if (width != conf->def.width && sta &&
1277 test_sta_flag(sta, WLAN_STA_TDLS_WIDER_BW)) {
1278 enum ieee80211_sta_rx_bandwidth bw;
1279
1280 bw = ieee80211_chan_width_to_rx_bw(conf->def.width);
1281 bw = min(bw, ieee80211_sta_cap_rx_bw(sta));
1282 if (bw != sta->sta.bandwidth) {
1283 sta->sta.bandwidth = bw;
1284 rate_control_rate_update(local, sband, sta,
1285 IEEE80211_RC_BW_CHANGED);
1286 /*
1287 * if a TDLS peer BW was updated, we need to
1288 * recalc the chandef width again, to get the
1289 * correct chanctx min_def
1290 */
1291 ieee80211_recalc_chanctx_chantype(local, ctx);
1292 }
1293 }
1294
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +03001295 }
1296 mutex_unlock(&local->chanctx_mtx);
1297}
1298
Avri Altman22f66892015-08-18 16:52:07 +03001299static int iee80211_tdls_have_ht_peers(struct ieee80211_sub_if_data *sdata)
1300{
1301 struct sta_info *sta;
1302 bool result = false;
1303
1304 rcu_read_lock();
1305 list_for_each_entry_rcu(sta, &sdata->local->sta_list, list) {
1306 if (!sta->sta.tdls || sta->sdata != sdata || !sta->uploaded ||
1307 !test_sta_flag(sta, WLAN_STA_AUTHORIZED) ||
1308 !test_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH) ||
1309 !sta->sta.ht_cap.ht_supported)
1310 continue;
1311 result = true;
1312 break;
1313 }
1314 rcu_read_unlock();
1315
1316 return result;
1317}
1318
1319static void
1320iee80211_tdls_recalc_ht_protection(struct ieee80211_sub_if_data *sdata,
1321 struct sta_info *sta)
1322{
1323 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1324 bool tdls_ht;
1325 u16 protection = IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED |
1326 IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT |
1327 IEEE80211_HT_OP_MODE_NON_HT_STA_PRSNT;
1328 u16 opmode;
1329
1330 /* Nothing to do if the BSS connection uses HT */
1331 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
1332 return;
1333
1334 tdls_ht = (sta && sta->sta.ht_cap.ht_supported) ||
1335 iee80211_tdls_have_ht_peers(sdata);
1336
1337 opmode = sdata->vif.bss_conf.ht_operation_mode;
1338
1339 if (tdls_ht)
1340 opmode |= protection;
1341 else
1342 opmode &= ~protection;
1343
1344 if (opmode == sdata->vif.bss_conf.ht_operation_mode)
1345 return;
1346
1347 sdata->vif.bss_conf.ht_operation_mode = opmode;
1348 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1349}
1350
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001351int ieee80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001352 const u8 *peer, enum nl80211_tdls_operation oper)
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001353{
1354 struct sta_info *sta;
1355 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001356 struct ieee80211_local *local = sdata->local;
1357 int ret;
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001358
1359 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
1360 return -ENOTSUPP;
1361
1362 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1363 return -EINVAL;
1364
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001365 switch (oper) {
1366 case NL80211_TDLS_ENABLE_LINK:
1367 case NL80211_TDLS_DISABLE_LINK:
1368 break;
1369 case NL80211_TDLS_TEARDOWN:
1370 case NL80211_TDLS_SETUP:
1371 case NL80211_TDLS_DISCOVERY_REQ:
1372 /* We don't support in-driver setup/teardown/discovery */
1373 return -ENOTSUPP;
1374 }
1375
Avri Altman22f66892015-08-18 16:52:07 +03001376 /* protect possible bss_conf changes and avoid concurrency in
1377 * ieee80211_bss_info_change_notify()
1378 */
1379 sdata_lock(sdata);
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001380 mutex_lock(&local->mtx);
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001381 tdls_dbg(sdata, "TDLS oper %d peer %pM\n", oper, peer);
1382
1383 switch (oper) {
1384 case NL80211_TDLS_ENABLE_LINK:
Arik Nemtsovc5a71682015-05-19 14:36:48 +03001385 if (sdata->vif.csa_active) {
1386 tdls_dbg(sdata, "TDLS: disallow link during CSA\n");
1387 ret = -EBUSY;
1388 break;
1389 }
1390
Avri Altman22f66892015-08-18 16:52:07 +03001391 mutex_lock(&local->sta_mtx);
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001392 sta = sta_info_get(sdata, peer);
1393 if (!sta) {
Avri Altman22f66892015-08-18 16:52:07 +03001394 mutex_unlock(&local->sta_mtx);
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001395 ret = -ENOLINK;
1396 break;
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001397 }
1398
Arik Nemtsov59021c62016-03-02 23:28:32 +02001399 iee80211_tdls_recalc_chanctx(sdata, sta);
Avri Altman22f66892015-08-18 16:52:07 +03001400 iee80211_tdls_recalc_ht_protection(sdata, sta);
1401
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001402 set_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH);
Avri Altman22f66892015-08-18 16:52:07 +03001403 mutex_unlock(&local->sta_mtx);
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001404
Arik Nemtsov81dd2b82014-07-17 17:14:25 +03001405 WARN_ON_ONCE(is_zero_ether_addr(sdata->u.mgd.tdls_peer) ||
1406 !ether_addr_equal(sdata->u.mgd.tdls_peer, peer));
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001407 ret = 0;
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001408 break;
1409 case NL80211_TDLS_DISABLE_LINK:
Liad Kaufmanbb3f8482014-07-17 17:14:31 +03001410 /*
1411 * The teardown message in ieee80211_tdls_mgmt_teardown() was
1412 * created while the queues were stopped, so it might still be
1413 * pending. Before flushing the queues we need to be sure the
1414 * message is handled by the tasklet handling pending messages,
1415 * otherwise we might start destroying the station before
1416 * sending the teardown packet.
1417 * Note that this only forces the tasklet to flush pendings -
1418 * not to stop the tasklet from rescheduling itself.
1419 */
1420 tasklet_kill(&local->tx_pending_tasklet);
Arik Nemtsovdb67d662014-06-11 17:18:24 +03001421 /* flush a potentially queued teardown packet */
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +02001422 ieee80211_flush_queues(local, sdata, false);
Arik Nemtsovdb67d662014-06-11 17:18:24 +03001423
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001424 ret = sta_info_destroy_addr(sdata, peer);
Avri Altman22f66892015-08-18 16:52:07 +03001425
1426 mutex_lock(&local->sta_mtx);
1427 iee80211_tdls_recalc_ht_protection(sdata, NULL);
1428 mutex_unlock(&local->sta_mtx);
1429
Arik Nemtsov59021c62016-03-02 23:28:32 +02001430 iee80211_tdls_recalc_chanctx(sdata, NULL);
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001431 break;
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001432 default:
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001433 ret = -ENOTSUPP;
1434 break;
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001435 }
1436
Arik Nemtsov81dd2b82014-07-17 17:14:25 +03001437 if (ret == 0 && ether_addr_equal(sdata->u.mgd.tdls_peer, peer)) {
1438 cancel_delayed_work(&sdata->u.mgd.tdls_peer_del_work);
1439 eth_zero_addr(sdata->u.mgd.tdls_peer);
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001440 }
1441
Arik Nemtsovd51c2ea2015-06-14 16:53:46 +03001442 if (ret == 0)
1443 ieee80211_queue_work(&sdata->local->hw,
1444 &sdata->u.mgd.request_smps_work);
1445
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001446 mutex_unlock(&local->mtx);
Avri Altman22f66892015-08-18 16:52:07 +03001447 sdata_unlock(sdata);
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001448 return ret;
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001449}
Arik Nemtsovc887f0d32014-06-11 17:18:25 +03001450
1451void ieee80211_tdls_oper_request(struct ieee80211_vif *vif, const u8 *peer,
1452 enum nl80211_tdls_operation oper,
1453 u16 reason_code, gfp_t gfp)
1454{
1455 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1456
1457 if (vif->type != NL80211_IFTYPE_STATION || !vif->bss_conf.assoc) {
1458 sdata_err(sdata, "Discarding TDLS oper %d - not STA or disconnected\n",
1459 oper);
1460 return;
1461 }
1462
1463 cfg80211_tdls_oper_request(sdata->dev, peer, oper, reason_code, gfp);
1464}
1465EXPORT_SYMBOL(ieee80211_tdls_oper_request);
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +02001466
1467static void
1468iee80211_tdls_add_ch_switch_timing(u8 *buf, u16 switch_time, u16 switch_timeout)
1469{
1470 struct ieee80211_ch_switch_timing *ch_sw;
1471
1472 *buf++ = WLAN_EID_CHAN_SWITCH_TIMING;
1473 *buf++ = sizeof(struct ieee80211_ch_switch_timing);
1474
1475 ch_sw = (void *)buf;
1476 ch_sw->switch_time = cpu_to_le16(switch_time);
1477 ch_sw->switch_timeout = cpu_to_le16(switch_timeout);
1478}
1479
1480/* find switch timing IE in SKB ready for Tx */
1481static const u8 *ieee80211_tdls_find_sw_timing_ie(struct sk_buff *skb)
1482{
1483 struct ieee80211_tdls_data *tf;
1484 const u8 *ie_start;
1485
1486 /*
1487 * Get the offset for the new location of the switch timing IE.
1488 * The SKB network header will now point to the "payload_type"
1489 * element of the TDLS data frame struct.
1490 */
1491 tf = container_of(skb->data + skb_network_offset(skb),
1492 struct ieee80211_tdls_data, payload_type);
1493 ie_start = tf->u.chan_switch_req.variable;
1494 return cfg80211_find_ie(WLAN_EID_CHAN_SWITCH_TIMING, ie_start,
1495 skb->len - (ie_start - skb->data));
1496}
1497
1498static struct sk_buff *
1499ieee80211_tdls_ch_sw_tmpl_get(struct sta_info *sta, u8 oper_class,
1500 struct cfg80211_chan_def *chandef,
1501 u32 *ch_sw_tm_ie_offset)
1502{
1503 struct ieee80211_sub_if_data *sdata = sta->sdata;
1504 u8 extra_ies[2 + sizeof(struct ieee80211_sec_chan_offs_ie) +
1505 2 + sizeof(struct ieee80211_ch_switch_timing)];
1506 int extra_ies_len = 2 + sizeof(struct ieee80211_ch_switch_timing);
1507 u8 *pos = extra_ies;
1508 struct sk_buff *skb;
1509
1510 /*
1511 * if chandef points to a wide channel add a Secondary-Channel
1512 * Offset information element
1513 */
1514 if (chandef->width == NL80211_CHAN_WIDTH_40) {
1515 struct ieee80211_sec_chan_offs_ie *sec_chan_ie;
1516 bool ht40plus;
1517
1518 *pos++ = WLAN_EID_SECONDARY_CHANNEL_OFFSET;
1519 *pos++ = sizeof(*sec_chan_ie);
1520 sec_chan_ie = (void *)pos;
1521
1522 ht40plus = cfg80211_get_chandef_type(chandef) ==
1523 NL80211_CHAN_HT40PLUS;
1524 sec_chan_ie->sec_chan_offs = ht40plus ?
1525 IEEE80211_HT_PARAM_CHA_SEC_ABOVE :
1526 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
1527 pos += sizeof(*sec_chan_ie);
1528
1529 extra_ies_len += 2 + sizeof(struct ieee80211_sec_chan_offs_ie);
1530 }
1531
1532 /* just set the values to 0, this is a template */
1533 iee80211_tdls_add_ch_switch_timing(pos, 0, 0);
1534
1535 skb = ieee80211_tdls_build_mgmt_packet_data(sdata, sta->sta.addr,
1536 WLAN_TDLS_CHANNEL_SWITCH_REQUEST,
1537 0, 0, !sta->sta.tdls_initiator,
1538 extra_ies, extra_ies_len,
1539 oper_class, chandef);
1540 if (!skb)
1541 return NULL;
1542
1543 skb = ieee80211_build_data_template(sdata, skb, 0);
1544 if (IS_ERR(skb)) {
1545 tdls_dbg(sdata, "Failed building TDLS channel switch frame\n");
1546 return NULL;
1547 }
1548
1549 if (ch_sw_tm_ie_offset) {
1550 const u8 *tm_ie = ieee80211_tdls_find_sw_timing_ie(skb);
1551
1552 if (!tm_ie) {
1553 tdls_dbg(sdata, "No switch timing IE in TDLS switch\n");
1554 dev_kfree_skb_any(skb);
1555 return NULL;
1556 }
1557
1558 *ch_sw_tm_ie_offset = tm_ie - skb->data;
1559 }
1560
1561 tdls_dbg(sdata,
1562 "TDLS channel switch request template for %pM ch %d width %d\n",
1563 sta->sta.addr, chandef->chan->center_freq, chandef->width);
1564 return skb;
1565}
1566
1567int
1568ieee80211_tdls_channel_switch(struct wiphy *wiphy, struct net_device *dev,
1569 const u8 *addr, u8 oper_class,
1570 struct cfg80211_chan_def *chandef)
1571{
1572 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1573 struct ieee80211_local *local = sdata->local;
1574 struct sta_info *sta;
1575 struct sk_buff *skb = NULL;
1576 u32 ch_sw_tm_ie;
1577 int ret;
1578
1579 mutex_lock(&local->sta_mtx);
1580 sta = sta_info_get(sdata, addr);
1581 if (!sta) {
1582 tdls_dbg(sdata,
1583 "Invalid TDLS peer %pM for channel switch request\n",
1584 addr);
1585 ret = -ENOENT;
1586 goto out;
1587 }
1588
1589 if (!test_sta_flag(sta, WLAN_STA_TDLS_CHAN_SWITCH)) {
1590 tdls_dbg(sdata, "TDLS channel switch unsupported by %pM\n",
1591 addr);
1592 ret = -ENOTSUPP;
1593 goto out;
1594 }
1595
1596 skb = ieee80211_tdls_ch_sw_tmpl_get(sta, oper_class, chandef,
1597 &ch_sw_tm_ie);
1598 if (!skb) {
1599 ret = -ENOENT;
1600 goto out;
1601 }
1602
1603 ret = drv_tdls_channel_switch(local, sdata, &sta->sta, oper_class,
1604 chandef, skb, ch_sw_tm_ie);
1605 if (!ret)
1606 set_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL);
1607
1608out:
1609 mutex_unlock(&local->sta_mtx);
1610 dev_kfree_skb_any(skb);
1611 return ret;
1612}
1613
1614void
1615ieee80211_tdls_cancel_channel_switch(struct wiphy *wiphy,
1616 struct net_device *dev,
1617 const u8 *addr)
1618{
1619 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1620 struct ieee80211_local *local = sdata->local;
1621 struct sta_info *sta;
1622
1623 mutex_lock(&local->sta_mtx);
1624 sta = sta_info_get(sdata, addr);
1625 if (!sta) {
1626 tdls_dbg(sdata,
1627 "Invalid TDLS peer %pM for channel switch cancel\n",
1628 addr);
1629 goto out;
1630 }
1631
1632 if (!test_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL)) {
1633 tdls_dbg(sdata, "TDLS channel switch not initiated by %pM\n",
1634 addr);
1635 goto out;
1636 }
1637
1638 drv_tdls_cancel_channel_switch(local, sdata, &sta->sta);
1639 clear_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL);
1640
1641out:
1642 mutex_unlock(&local->sta_mtx);
1643}
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02001644
1645static struct sk_buff *
1646ieee80211_tdls_ch_sw_resp_tmpl_get(struct sta_info *sta,
1647 u32 *ch_sw_tm_ie_offset)
1648{
1649 struct ieee80211_sub_if_data *sdata = sta->sdata;
1650 struct sk_buff *skb;
1651 u8 extra_ies[2 + sizeof(struct ieee80211_ch_switch_timing)];
1652
1653 /* initial timing are always zero in the template */
1654 iee80211_tdls_add_ch_switch_timing(extra_ies, 0, 0);
1655
1656 skb = ieee80211_tdls_build_mgmt_packet_data(sdata, sta->sta.addr,
1657 WLAN_TDLS_CHANNEL_SWITCH_RESPONSE,
1658 0, 0, !sta->sta.tdls_initiator,
1659 extra_ies, sizeof(extra_ies), 0, NULL);
1660 if (!skb)
1661 return NULL;
1662
1663 skb = ieee80211_build_data_template(sdata, skb, 0);
1664 if (IS_ERR(skb)) {
1665 tdls_dbg(sdata,
1666 "Failed building TDLS channel switch resp frame\n");
1667 return NULL;
1668 }
1669
1670 if (ch_sw_tm_ie_offset) {
1671 const u8 *tm_ie = ieee80211_tdls_find_sw_timing_ie(skb);
1672
1673 if (!tm_ie) {
1674 tdls_dbg(sdata,
1675 "No switch timing IE in TDLS switch resp\n");
1676 dev_kfree_skb_any(skb);
1677 return NULL;
1678 }
1679
1680 *ch_sw_tm_ie_offset = tm_ie - skb->data;
1681 }
1682
1683 tdls_dbg(sdata, "TDLS get channel switch response template for %pM\n",
1684 sta->sta.addr);
1685 return skb;
1686}
1687
1688static int
1689ieee80211_process_tdls_channel_switch_resp(struct ieee80211_sub_if_data *sdata,
1690 struct sk_buff *skb)
1691{
1692 struct ieee80211_local *local = sdata->local;
1693 struct ieee802_11_elems elems;
1694 struct sta_info *sta;
1695 struct ieee80211_tdls_data *tf = (void *)skb->data;
1696 bool local_initiator;
1697 struct ieee80211_rx_status *rx_status = IEEE80211_SKB_RXCB(skb);
1698 int baselen = offsetof(typeof(*tf), u.chan_switch_resp.variable);
1699 struct ieee80211_tdls_ch_sw_params params = {};
1700 int ret;
1701
1702 params.action_code = WLAN_TDLS_CHANNEL_SWITCH_RESPONSE;
1703 params.timestamp = rx_status->device_timestamp;
1704
1705 if (skb->len < baselen) {
1706 tdls_dbg(sdata, "TDLS channel switch resp too short: %d\n",
1707 skb->len);
1708 return -EINVAL;
1709 }
1710
1711 mutex_lock(&local->sta_mtx);
1712 sta = sta_info_get(sdata, tf->sa);
1713 if (!sta || !test_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH)) {
1714 tdls_dbg(sdata, "TDLS chan switch from non-peer sta %pM\n",
1715 tf->sa);
1716 ret = -EINVAL;
1717 goto out;
1718 }
1719
1720 params.sta = &sta->sta;
1721 params.status = le16_to_cpu(tf->u.chan_switch_resp.status_code);
1722 if (params.status != 0) {
1723 ret = 0;
1724 goto call_drv;
1725 }
1726
1727 ieee802_11_parse_elems(tf->u.chan_switch_resp.variable,
1728 skb->len - baselen, false, &elems);
1729 if (elems.parse_error) {
1730 tdls_dbg(sdata, "Invalid IEs in TDLS channel switch resp\n");
1731 ret = -EINVAL;
1732 goto out;
1733 }
1734
1735 if (!elems.ch_sw_timing || !elems.lnk_id) {
1736 tdls_dbg(sdata, "TDLS channel switch resp - missing IEs\n");
1737 ret = -EINVAL;
1738 goto out;
1739 }
1740
1741 /* validate the initiator is set correctly */
1742 local_initiator =
1743 !memcmp(elems.lnk_id->init_sta, sdata->vif.addr, ETH_ALEN);
1744 if (local_initiator == sta->sta.tdls_initiator) {
1745 tdls_dbg(sdata, "TDLS chan switch invalid lnk-id initiator\n");
1746 ret = -EINVAL;
1747 goto out;
1748 }
1749
1750 params.switch_time = le16_to_cpu(elems.ch_sw_timing->switch_time);
1751 params.switch_timeout = le16_to_cpu(elems.ch_sw_timing->switch_timeout);
1752
1753 params.tmpl_skb =
1754 ieee80211_tdls_ch_sw_resp_tmpl_get(sta, &params.ch_sw_tm_ie);
1755 if (!params.tmpl_skb) {
1756 ret = -ENOENT;
1757 goto out;
1758 }
1759
Dan Carpenter49708e32016-06-27 17:31:18 +03001760 ret = 0;
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02001761call_drv:
1762 drv_tdls_recv_channel_switch(sdata->local, sdata, &params);
1763
1764 tdls_dbg(sdata,
1765 "TDLS channel switch response received from %pM status %d\n",
1766 tf->sa, params.status);
1767
1768out:
1769 mutex_unlock(&local->sta_mtx);
1770 dev_kfree_skb_any(params.tmpl_skb);
1771 return ret;
1772}
1773
1774static int
1775ieee80211_process_tdls_channel_switch_req(struct ieee80211_sub_if_data *sdata,
1776 struct sk_buff *skb)
1777{
1778 struct ieee80211_local *local = sdata->local;
1779 struct ieee802_11_elems elems;
1780 struct cfg80211_chan_def chandef;
1781 struct ieee80211_channel *chan;
1782 enum nl80211_channel_type chan_type;
1783 int freq;
1784 u8 target_channel, oper_class;
1785 bool local_initiator;
1786 struct sta_info *sta;
Johannes Berg57fbcce2016-04-12 15:56:15 +02001787 enum nl80211_band band;
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02001788 struct ieee80211_tdls_data *tf = (void *)skb->data;
1789 struct ieee80211_rx_status *rx_status = IEEE80211_SKB_RXCB(skb);
1790 int baselen = offsetof(typeof(*tf), u.chan_switch_req.variable);
1791 struct ieee80211_tdls_ch_sw_params params = {};
1792 int ret = 0;
1793
1794 params.action_code = WLAN_TDLS_CHANNEL_SWITCH_REQUEST;
1795 params.timestamp = rx_status->device_timestamp;
1796
1797 if (skb->len < baselen) {
1798 tdls_dbg(sdata, "TDLS channel switch req too short: %d\n",
1799 skb->len);
1800 return -EINVAL;
1801 }
1802
1803 target_channel = tf->u.chan_switch_req.target_channel;
1804 oper_class = tf->u.chan_switch_req.oper_class;
1805
1806 /*
1807 * We can't easily infer the channel band. The operating class is
1808 * ambiguous - there are multiple tables (US/Europe/JP/Global). The
1809 * solution here is to treat channels with number >14 as 5GHz ones,
1810 * and specifically check for the (oper_class, channel) combinations
1811 * where this doesn't hold. These are thankfully unique according to
1812 * IEEE802.11-2012.
1813 * We consider only the 2GHz and 5GHz bands and 20MHz+ channels as
1814 * valid here.
1815 */
1816 if ((oper_class == 112 || oper_class == 2 || oper_class == 3 ||
1817 oper_class == 4 || oper_class == 5 || oper_class == 6) &&
1818 target_channel < 14)
Johannes Berg57fbcce2016-04-12 15:56:15 +02001819 band = NL80211_BAND_5GHZ;
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02001820 else
Johannes Berg57fbcce2016-04-12 15:56:15 +02001821 band = target_channel < 14 ? NL80211_BAND_2GHZ :
1822 NL80211_BAND_5GHZ;
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02001823
1824 freq = ieee80211_channel_to_frequency(target_channel, band);
1825 if (freq == 0) {
1826 tdls_dbg(sdata, "Invalid channel in TDLS chan switch: %d\n",
1827 target_channel);
1828 return -EINVAL;
1829 }
1830
1831 chan = ieee80211_get_channel(sdata->local->hw.wiphy, freq);
1832 if (!chan) {
1833 tdls_dbg(sdata,
1834 "Unsupported channel for TDLS chan switch: %d\n",
1835 target_channel);
1836 return -EINVAL;
1837 }
1838
1839 ieee802_11_parse_elems(tf->u.chan_switch_req.variable,
1840 skb->len - baselen, false, &elems);
1841 if (elems.parse_error) {
1842 tdls_dbg(sdata, "Invalid IEs in TDLS channel switch req\n");
1843 return -EINVAL;
1844 }
1845
1846 if (!elems.ch_sw_timing || !elems.lnk_id) {
1847 tdls_dbg(sdata, "TDLS channel switch req - missing IEs\n");
1848 return -EINVAL;
1849 }
1850
Arik Nemtsov42d8d782015-07-08 15:41:46 +03001851 if (!elems.sec_chan_offs) {
1852 chan_type = NL80211_CHAN_HT20;
1853 } else {
1854 switch (elems.sec_chan_offs->sec_chan_offs) {
1855 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
1856 chan_type = NL80211_CHAN_HT40PLUS;
1857 break;
1858 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
1859 chan_type = NL80211_CHAN_HT40MINUS;
1860 break;
1861 default:
1862 chan_type = NL80211_CHAN_HT20;
1863 break;
1864 }
1865 }
1866
1867 cfg80211_chandef_create(&chandef, chan, chan_type);
1868
1869 /* we will be active on the TDLS link */
1870 if (!cfg80211_reg_can_beacon_relax(sdata->local->hw.wiphy, &chandef,
1871 sdata->wdev.iftype)) {
1872 tdls_dbg(sdata, "TDLS chan switch to forbidden channel\n");
1873 return -EINVAL;
1874 }
1875
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02001876 mutex_lock(&local->sta_mtx);
1877 sta = sta_info_get(sdata, tf->sa);
1878 if (!sta || !test_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH)) {
1879 tdls_dbg(sdata, "TDLS chan switch from non-peer sta %pM\n",
1880 tf->sa);
1881 ret = -EINVAL;
1882 goto out;
1883 }
1884
1885 params.sta = &sta->sta;
1886
1887 /* validate the initiator is set correctly */
1888 local_initiator =
1889 !memcmp(elems.lnk_id->init_sta, sdata->vif.addr, ETH_ALEN);
1890 if (local_initiator == sta->sta.tdls_initiator) {
1891 tdls_dbg(sdata, "TDLS chan switch invalid lnk-id initiator\n");
1892 ret = -EINVAL;
1893 goto out;
1894 }
1895
Arik Nemtsov42d8d782015-07-08 15:41:46 +03001896 /* peer should have known better */
1897 if (!sta->sta.ht_cap.ht_supported && elems.sec_chan_offs &&
1898 elems.sec_chan_offs->sec_chan_offs) {
1899 tdls_dbg(sdata, "TDLS chan switch - wide chan unsupported\n");
1900 ret = -ENOTSUPP;
1901 goto out;
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02001902 }
1903
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02001904 params.chandef = &chandef;
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02001905 params.switch_time = le16_to_cpu(elems.ch_sw_timing->switch_time);
1906 params.switch_timeout = le16_to_cpu(elems.ch_sw_timing->switch_timeout);
1907
1908 params.tmpl_skb =
1909 ieee80211_tdls_ch_sw_resp_tmpl_get(sta,
1910 &params.ch_sw_tm_ie);
1911 if (!params.tmpl_skb) {
1912 ret = -ENOENT;
1913 goto out;
1914 }
1915
1916 drv_tdls_recv_channel_switch(sdata->local, sdata, &params);
1917
1918 tdls_dbg(sdata,
1919 "TDLS ch switch request received from %pM ch %d width %d\n",
1920 tf->sa, params.chandef->chan->center_freq,
1921 params.chandef->width);
1922out:
1923 mutex_unlock(&local->sta_mtx);
1924 dev_kfree_skb_any(params.tmpl_skb);
1925 return ret;
1926}
1927
Arik Nemtsovc8ff71e2015-07-08 15:41:45 +03001928static void
1929ieee80211_process_tdls_channel_switch(struct ieee80211_sub_if_data *sdata,
1930 struct sk_buff *skb)
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02001931{
1932 struct ieee80211_tdls_data *tf = (void *)skb->data;
1933 struct wiphy *wiphy = sdata->local->hw.wiphy;
1934
Arik Nemtsovc8ff71e2015-07-08 15:41:45 +03001935 ASSERT_RTNL();
1936
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02001937 /* make sure the driver supports it */
1938 if (!(wiphy->features & NL80211_FEATURE_TDLS_CHANNEL_SWITCH))
1939 return;
1940
1941 /* we want to access the entire packet */
1942 if (skb_linearize(skb))
1943 return;
1944 /*
1945 * The packet/size was already validated by mac80211 Rx path, only look
1946 * at the action type.
1947 */
1948 switch (tf->action_code) {
1949 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
1950 ieee80211_process_tdls_channel_switch_req(sdata, skb);
1951 break;
1952 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
1953 ieee80211_process_tdls_channel_switch_resp(sdata, skb);
1954 break;
1955 default:
1956 WARN_ON_ONCE(1);
1957 return;
1958 }
1959}
Arik Nemtsovd51c2ea2015-06-14 16:53:46 +03001960
1961void ieee80211_teardown_tdls_peers(struct ieee80211_sub_if_data *sdata)
1962{
1963 struct sta_info *sta;
1964 u16 reason = WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED;
1965
1966 rcu_read_lock();
1967 list_for_each_entry_rcu(sta, &sdata->local->sta_list, list) {
1968 if (!sta->sta.tdls || sta->sdata != sdata || !sta->uploaded ||
1969 !test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1970 continue;
1971
1972 ieee80211_tdls_oper_request(&sdata->vif, sta->sta.addr,
1973 NL80211_TDLS_TEARDOWN, reason,
1974 GFP_ATOMIC);
1975 }
1976 rcu_read_unlock();
1977}
Arik Nemtsovc8ff71e2015-07-08 15:41:45 +03001978
1979void ieee80211_tdls_chsw_work(struct work_struct *wk)
1980{
1981 struct ieee80211_local *local =
1982 container_of(wk, struct ieee80211_local, tdls_chsw_work);
1983 struct ieee80211_sub_if_data *sdata;
1984 struct sk_buff *skb;
1985 struct ieee80211_tdls_data *tf;
1986
1987 rtnl_lock();
1988 while ((skb = skb_dequeue(&local->skb_queue_tdls_chsw))) {
1989 tf = (struct ieee80211_tdls_data *)skb->data;
1990 list_for_each_entry(sdata, &local->interfaces, list) {
1991 if (!ieee80211_sdata_running(sdata) ||
1992 sdata->vif.type != NL80211_IFTYPE_STATION ||
1993 !ether_addr_equal(tf->da, sdata->vif.addr))
1994 continue;
1995
1996 ieee80211_process_tdls_channel_switch(sdata, skb);
1997 break;
1998 }
1999
2000 kfree_skb(skb);
2001 }
2002 rtnl_unlock();
2003}
Yu Wang7b1f4ff2019-05-10 17:04:52 +08002004
2005void ieee80211_tdls_handle_disconnect(struct ieee80211_sub_if_data *sdata,
2006 const u8 *peer, u16 reason)
2007{
2008 struct ieee80211_sta *sta;
2009
2010 rcu_read_lock();
2011 sta = ieee80211_find_sta(&sdata->vif, peer);
2012 if (!sta || !sta->tdls) {
2013 rcu_read_unlock();
2014 return;
2015 }
2016 rcu_read_unlock();
2017
2018 tdls_dbg(sdata, "disconnected from TDLS peer %pM (Reason: %u=%s)\n",
2019 peer, reason,
2020 ieee80211_get_reason_code_string(reason));
2021
2022 ieee80211_tdls_oper_request(&sdata->vif, peer,
2023 NL80211_TDLS_TEARDOWN,
2024 WLAN_REASON_TDLS_TEARDOWN_UNREACHABLE,
2025 GFP_ATOMIC);
2026}