blob: fb846cb047d6c92cb3b949ecd61e0dabcb5fa58f [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 Nemtsov95224fe2014-05-01 10:17:28 +03007 *
8 * This file is GPLv2 as found in COPYING.
9 */
10
11#include <linux/ieee80211.h>
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +030012#include <linux/log2.h>
Arik Nemtsovc887f0d32014-06-11 17:18:25 +030013#include <net/cfg80211.h>
Arik Nemtsov95224fe2014-05-01 10:17:28 +030014#include "ieee80211_i.h"
Arik Nemtsovee10f2c2014-06-11 17:18:27 +030015#include "driver-ops.h"
Arik Nemtsov95224fe2014-05-01 10:17:28 +030016
Arik Nemtsov17e6a592014-06-11 17:18:20 +030017/* give usermode some time for retries in setting up the TDLS session */
18#define TDLS_PEER_SETUP_TIMEOUT (15 * HZ)
19
20void ieee80211_tdls_peer_del_work(struct work_struct *wk)
21{
22 struct ieee80211_sub_if_data *sdata;
23 struct ieee80211_local *local;
24
25 sdata = container_of(wk, struct ieee80211_sub_if_data,
Arik Nemtsov81dd2b82014-07-17 17:14:25 +030026 u.mgd.tdls_peer_del_work.work);
Arik Nemtsov17e6a592014-06-11 17:18:20 +030027 local = sdata->local;
28
29 mutex_lock(&local->mtx);
Arik Nemtsov81dd2b82014-07-17 17:14:25 +030030 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);
Arik Nemtsov17e6a592014-06-11 17:18:20 +030034 }
35 mutex_unlock(&local->mtx);
36}
37
Arik Nemtsovb98fb442015-06-10 20:42:59 +030038static void ieee80211_tdls_add_ext_capab(struct ieee80211_sub_if_data *sdata,
Arik Nemtsov78632a12014-11-09 18:50:14 +020039 struct sk_buff *skb)
Arik Nemtsov95224fe2014-05-01 10:17:28 +030040{
Arik Nemtsovb98fb442015-06-10 20:42:59 +030041 struct ieee80211_local *local = sdata->local;
Arik Nemtsov78632a12014-11-09 18:50:14 +020042 bool chan_switch = local->hw.wiphy->features &
43 NL80211_FEATURE_TDLS_CHANNEL_SWITCH;
Arik Nemtsovb98fb442015-06-10 20:42:59 +030044 bool wider_band = ieee80211_hw_check(&local->hw, TDLS_WIDER_BW);
45 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
46 struct ieee80211_supported_band *sband = local->hw.wiphy->bands[band];
47 bool vht = sband && sband->vht_cap.vht_supported;
48 u8 *pos = (void *)skb_put(skb, 10);
Arik Nemtsov95224fe2014-05-01 10:17:28 +030049
50 *pos++ = WLAN_EID_EXT_CAPABILITY;
Arik Nemtsovb98fb442015-06-10 20:42:59 +030051 *pos++ = 8; /* len */
Arik Nemtsov95224fe2014-05-01 10:17:28 +030052 *pos++ = 0x0;
53 *pos++ = 0x0;
54 *pos++ = 0x0;
Arik Nemtsov78632a12014-11-09 18:50:14 +020055 *pos++ = chan_switch ? WLAN_EXT_CAPA4_TDLS_CHAN_SWITCH : 0;
Arik Nemtsov95224fe2014-05-01 10:17:28 +030056 *pos++ = WLAN_EXT_CAPA5_TDLS_ENABLED;
Arik Nemtsovb98fb442015-06-10 20:42:59 +030057 *pos++ = 0;
58 *pos++ = 0;
59 *pos++ = (vht && wider_band) ? WLAN_EXT_CAPA8_TDLS_WIDE_BW_ENABLED : 0;
Arik Nemtsov95224fe2014-05-01 10:17:28 +030060}
61
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +020062static u8
63ieee80211_tdls_add_subband(struct ieee80211_sub_if_data *sdata,
64 struct sk_buff *skb, u16 start, u16 end,
65 u16 spacing)
66{
67 u8 subband_cnt = 0, ch_cnt = 0;
68 struct ieee80211_channel *ch;
69 struct cfg80211_chan_def chandef;
70 int i, subband_start;
71
72 for (i = start; i <= end; i += spacing) {
73 if (!ch_cnt)
74 subband_start = i;
75
76 ch = ieee80211_get_channel(sdata->local->hw.wiphy, i);
77 if (ch) {
78 /* we will be active on the channel */
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +020079 cfg80211_chandef_create(&chandef, ch,
Arik Nemtsov50075892015-01-07 16:45:07 +020080 NL80211_CHAN_NO_HT);
81 if (cfg80211_reg_can_beacon(sdata->local->hw.wiphy,
82 &chandef,
83 sdata->wdev.iftype)) {
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +020084 ch_cnt++;
Arik Nemtsov50075892015-01-07 16:45:07 +020085 /*
86 * check if the next channel is also part of
87 * this allowed range
88 */
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +020089 continue;
90 }
91 }
92
Arik Nemtsov50075892015-01-07 16:45:07 +020093 /*
94 * we've reached the end of a range, with allowed channels
95 * found
96 */
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +020097 if (ch_cnt) {
98 u8 *pos = skb_put(skb, 2);
99 *pos++ = ieee80211_frequency_to_channel(subband_start);
100 *pos++ = ch_cnt;
101
102 subband_cnt++;
103 ch_cnt = 0;
104 }
105 }
106
Arik Nemtsov50075892015-01-07 16:45:07 +0200107 /* all channels in the requested range are allowed - add them here */
108 if (ch_cnt) {
109 u8 *pos = skb_put(skb, 2);
110 *pos++ = ieee80211_frequency_to_channel(subband_start);
111 *pos++ = ch_cnt;
112
113 subband_cnt++;
114 }
115
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +0200116 return subband_cnt;
117}
118
119static void
120ieee80211_tdls_add_supp_channels(struct ieee80211_sub_if_data *sdata,
121 struct sk_buff *skb)
122{
123 /*
124 * Add possible channels for TDLS. These are channels that are allowed
125 * to be active.
126 */
127 u8 subband_cnt;
128 u8 *pos = skb_put(skb, 2);
129
130 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
131
132 /*
133 * 5GHz and 2GHz channels numbers can overlap. Ignore this for now, as
134 * this doesn't happen in real world scenarios.
135 */
136
137 /* 2GHz, with 5MHz spacing */
138 subband_cnt = ieee80211_tdls_add_subband(sdata, skb, 2412, 2472, 5);
139
140 /* 5GHz, with 20MHz spacing */
141 subband_cnt += ieee80211_tdls_add_subband(sdata, skb, 5000, 5825, 20);
142
143 /* length */
144 *pos = 2 * subband_cnt;
145}
146
Arik Nemtsova38700d2015-03-18 08:46:08 +0200147static void ieee80211_tdls_add_oper_classes(struct ieee80211_sub_if_data *sdata,
148 struct sk_buff *skb)
149{
150 u8 *pos;
151 u8 op_class;
152
153 if (!ieee80211_chandef_to_operating_class(&sdata->vif.bss_conf.chandef,
154 &op_class))
155 return;
156
157 pos = skb_put(skb, 4);
158 *pos++ = WLAN_EID_SUPPORTED_REGULATORY_CLASSES;
159 *pos++ = 2; /* len */
160
161 *pos++ = op_class;
162 *pos++ = op_class; /* give current operating class as alternate too */
163}
164
Arik Nemtsov2cedd872014-11-09 18:50:13 +0200165static void ieee80211_tdls_add_bss_coex_ie(struct sk_buff *skb)
166{
167 u8 *pos = (void *)skb_put(skb, 3);
168
169 *pos++ = WLAN_EID_BSS_COEX_2040;
170 *pos++ = 1; /* len */
171
172 *pos++ = WLAN_BSS_COEX_INFORMATION_REQUEST;
173}
174
Arik Nemtsovdd8c0b02014-07-17 17:14:22 +0300175static u16 ieee80211_get_tdls_sta_capab(struct ieee80211_sub_if_data *sdata,
176 u16 status_code)
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300177{
Arik Nemtsovdd8c0b02014-07-17 17:14:22 +0300178 /* The capability will be 0 when sending a failure code */
179 if (status_code != 0)
180 return 0;
181
Johannes Bergea1b2b452015-06-02 20:15:49 +0200182 if (ieee80211_get_sdata_band(sdata) == IEEE80211_BAND_2GHZ) {
183 return WLAN_CAPABILITY_SHORT_SLOT_TIME |
184 WLAN_CAPABILITY_SHORT_PREAMBLE;
185 }
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300186
Johannes Bergea1b2b452015-06-02 20:15:49 +0200187 return 0;
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300188}
189
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300190static void ieee80211_tdls_add_link_ie(struct ieee80211_sub_if_data *sdata,
191 struct sk_buff *skb, const u8 *peer,
192 bool initiator)
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300193{
194 struct ieee80211_tdls_lnkie *lnkid;
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300195 const u8 *init_addr, *rsp_addr;
196
197 if (initiator) {
198 init_addr = sdata->vif.addr;
199 rsp_addr = peer;
200 } else {
201 init_addr = peer;
202 rsp_addr = sdata->vif.addr;
203 }
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300204
205 lnkid = (void *)skb_put(skb, sizeof(struct ieee80211_tdls_lnkie));
206
207 lnkid->ie_type = WLAN_EID_LINK_ID;
208 lnkid->ie_len = sizeof(struct ieee80211_tdls_lnkie) - 2;
209
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300210 memcpy(lnkid->bssid, sdata->u.mgd.bssid, ETH_ALEN);
211 memcpy(lnkid->init_sta, init_addr, ETH_ALEN);
212 memcpy(lnkid->resp_sta, rsp_addr, ETH_ALEN);
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300213}
214
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200215static void
216ieee80211_tdls_add_aid(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
217{
218 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
219 u8 *pos = (void *)skb_put(skb, 4);
220
221 *pos++ = WLAN_EID_AID;
222 *pos++ = 2; /* len */
223 put_unaligned_le16(ifmgd->aid, pos);
224}
225
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300226/* translate numbering in the WMM parameter IE to the mac80211 notation */
227static enum ieee80211_ac_numbers ieee80211_ac_from_wmm(int ac)
228{
229 switch (ac) {
230 default:
231 WARN_ON_ONCE(1);
232 case 0:
233 return IEEE80211_AC_BE;
234 case 1:
235 return IEEE80211_AC_BK;
236 case 2:
237 return IEEE80211_AC_VI;
238 case 3:
239 return IEEE80211_AC_VO;
240 }
241}
242
243static u8 ieee80211_wmm_aci_aifsn(int aifsn, bool acm, int aci)
244{
245 u8 ret;
246
247 ret = aifsn & 0x0f;
248 if (acm)
249 ret |= 0x10;
250 ret |= (aci << 5) & 0x60;
251 return ret;
252}
253
254static u8 ieee80211_wmm_ecw(u16 cw_min, u16 cw_max)
255{
256 return ((ilog2(cw_min + 1) << 0x0) & 0x0f) |
257 ((ilog2(cw_max + 1) << 0x4) & 0xf0);
258}
259
260static void ieee80211_tdls_add_wmm_param_ie(struct ieee80211_sub_if_data *sdata,
261 struct sk_buff *skb)
262{
263 struct ieee80211_wmm_param_ie *wmm;
264 struct ieee80211_tx_queue_params *txq;
265 int i;
266
267 wmm = (void *)skb_put(skb, sizeof(*wmm));
268 memset(wmm, 0, sizeof(*wmm));
269
270 wmm->element_id = WLAN_EID_VENDOR_SPECIFIC;
271 wmm->len = sizeof(*wmm) - 2;
272
273 wmm->oui[0] = 0x00; /* Microsoft OUI 00:50:F2 */
274 wmm->oui[1] = 0x50;
275 wmm->oui[2] = 0xf2;
276 wmm->oui_type = 2; /* WME */
277 wmm->oui_subtype = 1; /* WME param */
278 wmm->version = 1; /* WME ver */
279 wmm->qos_info = 0; /* U-APSD not in use */
280
281 /*
282 * Use the EDCA parameters defined for the BSS, or default if the AP
283 * doesn't support it, as mandated by 802.11-2012 section 10.22.4
284 */
285 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
286 txq = &sdata->tx_conf[ieee80211_ac_from_wmm(i)];
287 wmm->ac[i].aci_aifsn = ieee80211_wmm_aci_aifsn(txq->aifs,
288 txq->acm, i);
289 wmm->ac[i].cw = ieee80211_wmm_ecw(txq->cw_min, txq->cw_max);
290 wmm->ac[i].txop_limit = cpu_to_le16(txq->txop);
291 }
292}
293
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300294static void
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300295ieee80211_tdls_chandef_vht_upgrade(struct ieee80211_sub_if_data *sdata,
296 struct sta_info *sta)
297{
298 /* IEEE802.11ac-2013 Table E-4 */
299 u16 centers_80mhz[] = { 5210, 5290, 5530, 5610, 5690, 5775 };
300 struct cfg80211_chan_def uc = sta->tdls_chandef;
301 enum nl80211_chan_width max_width = ieee80211_get_sta_bw(&sta->sta);
302 int i;
303
304 /* only support upgrading non-narrow channels up to 80Mhz */
305 if (max_width == NL80211_CHAN_WIDTH_5 ||
306 max_width == NL80211_CHAN_WIDTH_10)
307 return;
308
309 if (max_width > NL80211_CHAN_WIDTH_80)
310 max_width = NL80211_CHAN_WIDTH_80;
311
312 if (uc.width == max_width)
313 return;
314 /*
315 * Channel usage constrains in the IEEE802.11ac-2013 specification only
316 * allow expanding a 20MHz channel to 80MHz in a single way. In
317 * addition, there are no 40MHz allowed channels that are not part of
318 * the allowed 80MHz range in the 5GHz spectrum (the relevant one here).
319 */
320 for (i = 0; i < ARRAY_SIZE(centers_80mhz); i++)
321 if (abs(uc.chan->center_freq - centers_80mhz[i]) <= 30) {
322 uc.center_freq1 = centers_80mhz[i];
323 uc.width = NL80211_CHAN_WIDTH_80;
324 break;
325 }
326
327 if (!uc.center_freq1)
328 return;
329
330 /* proceed to downgrade the chandef until usable or the same */
331 while (uc.width > max_width &&
332 !cfg80211_reg_can_beacon(sdata->local->hw.wiphy,
333 &uc, sdata->wdev.iftype))
334 ieee80211_chandef_downgrade(&uc);
335
336 if (!cfg80211_chandef_identical(&uc, &sta->tdls_chandef)) {
337 tdls_dbg(sdata, "TDLS ch width upgraded %d -> %d\n",
338 sta->tdls_chandef.width, uc.width);
339
340 /*
341 * the station is not yet authorized when BW upgrade is done,
342 * locking is not required
343 */
344 sta->tdls_chandef = uc;
345 }
346}
347
348static void
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300349ieee80211_tdls_add_setup_start_ies(struct ieee80211_sub_if_data *sdata,
350 struct sk_buff *skb, const u8 *peer,
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300351 u8 action_code, bool initiator,
352 const u8 *extra_ies, size_t extra_ies_len)
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300353{
354 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Arik Nemtsov40b861a2014-07-17 17:14:23 +0300355 struct ieee80211_local *local = sdata->local;
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300356 struct ieee80211_supported_band *sband;
357 struct ieee80211_sta_ht_cap ht_cap;
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200358 struct ieee80211_sta_vht_cap vht_cap;
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300359 struct sta_info *sta = NULL;
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300360 size_t offset = 0, noffset;
361 u8 *pos;
362
363 ieee80211_add_srates_ie(sdata, skb, false, band);
364 ieee80211_add_ext_srates_ie(sdata, skb, false, band);
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +0200365 ieee80211_tdls_add_supp_channels(sdata, skb);
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300366
367 /* add any custom IEs that go before Extended Capabilities */
368 if (extra_ies_len) {
369 static const u8 before_ext_cap[] = {
370 WLAN_EID_SUPP_RATES,
371 WLAN_EID_COUNTRY,
372 WLAN_EID_EXT_SUPP_RATES,
373 WLAN_EID_SUPPORTED_CHANNELS,
374 WLAN_EID_RSN,
375 };
376 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
377 before_ext_cap,
378 ARRAY_SIZE(before_ext_cap),
379 offset);
380 pos = skb_put(skb, noffset - offset);
381 memcpy(pos, extra_ies + offset, noffset - offset);
382 offset = noffset;
383 }
384
Arik Nemtsovb98fb442015-06-10 20:42:59 +0300385 ieee80211_tdls_add_ext_capab(sdata, skb);
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300386
Arik Nemtsov40b861a2014-07-17 17:14:23 +0300387 /* add the QoS element if we support it */
388 if (local->hw.queues >= IEEE80211_NUM_ACS &&
389 action_code != WLAN_PUB_ACTION_TDLS_DISCOVER_RES)
390 ieee80211_add_wmm_info_ie(skb_put(skb, 9), 0); /* no U-APSD */
391
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300392 /* add any custom IEs that go before HT capabilities */
393 if (extra_ies_len) {
394 static const u8 before_ht_cap[] = {
395 WLAN_EID_SUPP_RATES,
396 WLAN_EID_COUNTRY,
397 WLAN_EID_EXT_SUPP_RATES,
398 WLAN_EID_SUPPORTED_CHANNELS,
399 WLAN_EID_RSN,
400 WLAN_EID_EXT_CAPABILITY,
401 WLAN_EID_QOS_CAPA,
402 WLAN_EID_FAST_BSS_TRANSITION,
403 WLAN_EID_TIMEOUT_INTERVAL,
404 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
405 };
406 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
407 before_ht_cap,
408 ARRAY_SIZE(before_ht_cap),
409 offset);
410 pos = skb_put(skb, noffset - offset);
411 memcpy(pos, extra_ies + offset, noffset - offset);
412 offset = noffset;
413 }
414
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300415 mutex_lock(&local->sta_mtx);
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +0200416
417 /* we should have the peer STA if we're already responding */
418 if (action_code == WLAN_TDLS_SETUP_RESPONSE) {
419 sta = sta_info_get(sdata, peer);
420 if (WARN_ON_ONCE(!sta)) {
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300421 mutex_unlock(&local->sta_mtx);
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +0200422 return;
423 }
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300424
425 sta->tdls_chandef = sdata->vif.bss_conf.chandef;
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +0200426 }
427
Arik Nemtsova38700d2015-03-18 08:46:08 +0200428 ieee80211_tdls_add_oper_classes(sdata, skb);
429
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300430 /*
431 * with TDLS we can switch channels, and HT-caps are not necessarily
432 * the same on all bands. The specification limits the setup to a
433 * single HT-cap, so use the current band for now.
434 */
435 sband = local->hw.wiphy->bands[band];
436 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300437
Arik Nemtsov070e1762015-03-30 11:16:23 +0300438 if ((action_code == WLAN_TDLS_SETUP_REQUEST ||
439 action_code == WLAN_PUB_ACTION_TDLS_DISCOVER_RES) &&
440 ht_cap.ht_supported) {
Johannes Bergc5309ba2015-01-23 11:42:14 +0100441 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300442
Johannes Bergc5309ba2015-01-23 11:42:14 +0100443 /* disable SMPS in TDLS initiator */
444 ht_cap.cap |= WLAN_HT_CAP_SM_PS_DISABLED
445 << IEEE80211_HT_CAP_SM_PS_SHIFT;
446
447 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
448 ieee80211_ie_build_ht_cap(pos, &ht_cap, ht_cap.cap);
449 } else if (action_code == WLAN_TDLS_SETUP_RESPONSE &&
450 ht_cap.ht_supported && sta->sta.ht_cap.ht_supported) {
451 /* disable SMPS in TDLS responder */
452 sta->sta.ht_cap.cap |= WLAN_HT_CAP_SM_PS_DISABLED
453 << IEEE80211_HT_CAP_SM_PS_SHIFT;
454
455 /* the peer caps are already intersected with our own */
456 memcpy(&ht_cap, &sta->sta.ht_cap, sizeof(ht_cap));
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300457
458 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
459 ieee80211_ie_build_ht_cap(pos, &ht_cap, ht_cap.cap);
460 }
461
Arik Nemtsov2cedd872014-11-09 18:50:13 +0200462 if (ht_cap.ht_supported &&
463 (ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40))
464 ieee80211_tdls_add_bss_coex_ie(skb);
465
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200466 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
467
468 /* add any custom IEs that go before VHT capabilities */
469 if (extra_ies_len) {
470 static const u8 before_vht_cap[] = {
471 WLAN_EID_SUPP_RATES,
472 WLAN_EID_COUNTRY,
473 WLAN_EID_EXT_SUPP_RATES,
474 WLAN_EID_SUPPORTED_CHANNELS,
475 WLAN_EID_RSN,
476 WLAN_EID_EXT_CAPABILITY,
477 WLAN_EID_QOS_CAPA,
478 WLAN_EID_FAST_BSS_TRANSITION,
479 WLAN_EID_TIMEOUT_INTERVAL,
480 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
481 WLAN_EID_MULTI_BAND,
482 };
483 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
484 before_vht_cap,
485 ARRAY_SIZE(before_vht_cap),
486 offset);
487 pos = skb_put(skb, noffset - offset);
488 memcpy(pos, extra_ies + offset, noffset - offset);
489 offset = noffset;
490 }
491
492 /* build the VHT-cap similarly to the HT-cap */
493 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
Arik Nemtsov070e1762015-03-30 11:16:23 +0300494 if ((action_code == WLAN_TDLS_SETUP_REQUEST ||
495 action_code == WLAN_PUB_ACTION_TDLS_DISCOVER_RES) &&
496 vht_cap.vht_supported) {
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200497 ieee80211_apply_vhtcap_overrides(sdata, &vht_cap);
498
499 /* the AID is present only when VHT is implemented */
Arik Nemtsov070e1762015-03-30 11:16:23 +0300500 if (action_code == WLAN_TDLS_SETUP_REQUEST)
501 ieee80211_tdls_add_aid(sdata, skb);
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200502
503 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
504 ieee80211_ie_build_vht_cap(pos, &vht_cap, vht_cap.cap);
505 } else if (action_code == WLAN_TDLS_SETUP_RESPONSE &&
506 vht_cap.vht_supported && sta->sta.vht_cap.vht_supported) {
507 /* the peer caps are already intersected with our own */
508 memcpy(&vht_cap, &sta->sta.vht_cap, sizeof(vht_cap));
509
510 /* the AID is present only when VHT is implemented */
511 ieee80211_tdls_add_aid(sdata, skb);
512
513 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
514 ieee80211_ie_build_vht_cap(pos, &vht_cap, vht_cap.cap);
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300515
516 /*
517 * if both peers support WIDER_BW, we can expand the chandef to
518 * a wider compatible one, up to 80MHz
519 */
520 if (test_sta_flag(sta, WLAN_STA_TDLS_WIDER_BW))
521 ieee80211_tdls_chandef_vht_upgrade(sdata, sta);
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200522 }
523
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300524 mutex_unlock(&local->sta_mtx);
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200525
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300526 /* add any remaining IEs */
527 if (extra_ies_len) {
528 noffset = extra_ies_len;
529 pos = skb_put(skb, noffset - offset);
530 memcpy(pos, extra_ies + offset, noffset - offset);
531 }
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300532
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300533}
534
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300535static void
536ieee80211_tdls_add_setup_cfm_ies(struct ieee80211_sub_if_data *sdata,
537 struct sk_buff *skb, const u8 *peer,
538 bool initiator, const u8 *extra_ies,
539 size_t extra_ies_len)
540{
541 struct ieee80211_local *local = sdata->local;
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300542 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300543 size_t offset = 0, noffset;
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300544 struct sta_info *sta, *ap_sta;
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200545 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300546 u8 *pos;
547
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300548 mutex_lock(&local->sta_mtx);
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300549
550 sta = sta_info_get(sdata, peer);
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300551 ap_sta = sta_info_get(sdata, ifmgd->bssid);
552 if (WARN_ON_ONCE(!sta || !ap_sta)) {
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300553 mutex_unlock(&local->sta_mtx);
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300554 return;
555 }
556
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300557 sta->tdls_chandef = sdata->vif.bss_conf.chandef;
558
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300559 /* add any custom IEs that go before the QoS IE */
560 if (extra_ies_len) {
561 static const u8 before_qos[] = {
562 WLAN_EID_RSN,
563 };
564 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
565 before_qos,
566 ARRAY_SIZE(before_qos),
567 offset);
568 pos = skb_put(skb, noffset - offset);
569 memcpy(pos, extra_ies + offset, noffset - offset);
570 offset = noffset;
571 }
572
573 /* add the QoS param IE if both the peer and we support it */
Johannes Berga74a8c82014-07-22 14:50:47 +0200574 if (local->hw.queues >= IEEE80211_NUM_ACS && sta->sta.wme)
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300575 ieee80211_tdls_add_wmm_param_ie(sdata, skb);
576
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300577 /* add any custom IEs that go before HT operation */
578 if (extra_ies_len) {
579 static const u8 before_ht_op[] = {
580 WLAN_EID_RSN,
581 WLAN_EID_QOS_CAPA,
582 WLAN_EID_FAST_BSS_TRANSITION,
583 WLAN_EID_TIMEOUT_INTERVAL,
584 };
585 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
586 before_ht_op,
587 ARRAY_SIZE(before_ht_op),
588 offset);
589 pos = skb_put(skb, noffset - offset);
590 memcpy(pos, extra_ies + offset, noffset - offset);
591 offset = noffset;
592 }
593
594 /* if HT support is only added in TDLS, we need an HT-operation IE */
595 if (!ap_sta->sta.ht_cap.ht_supported && sta->sta.ht_cap.ht_supported) {
Arik Nemtsov890b7872015-05-07 15:30:41 +0300596 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_operation));
597 /* send an empty HT operation IE */
598 ieee80211_ie_build_ht_oper(pos, &sta->sta.ht_cap,
599 &sdata->vif.bss_conf.chandef, 0);
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300600 }
601
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200602 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
603
604 /* only include VHT-operation if not on the 2.4GHz band */
Arik Nemtsov890b7872015-05-07 15:30:41 +0300605 if (band != IEEE80211_BAND_2GHZ && sta->sta.vht_cap.vht_supported) {
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300606 /*
607 * if both peers support WIDER_BW, we can expand the chandef to
608 * a wider compatible one, up to 80MHz
609 */
610 if (test_sta_flag(sta, WLAN_STA_TDLS_WIDER_BW))
611 ieee80211_tdls_chandef_vht_upgrade(sdata, sta);
612
Arik Nemtsov890b7872015-05-07 15:30:41 +0300613 pos = skb_put(skb, 2 + sizeof(struct ieee80211_vht_operation));
614 ieee80211_ie_build_vht_oper(pos, &sta->sta.vht_cap,
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300615 &sta->tdls_chandef);
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200616 }
617
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +0300618 mutex_unlock(&local->sta_mtx);
Arik Nemtsov13cc8a42014-07-17 17:14:26 +0300619
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300620 /* add any remaining IEs */
621 if (extra_ies_len) {
622 noffset = extra_ies_len;
623 pos = skb_put(skb, noffset - offset);
624 memcpy(pos, extra_ies + offset, noffset - offset);
625 }
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300626}
627
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +0200628static void
629ieee80211_tdls_add_chan_switch_req_ies(struct ieee80211_sub_if_data *sdata,
630 struct sk_buff *skb, const u8 *peer,
631 bool initiator, const u8 *extra_ies,
632 size_t extra_ies_len, u8 oper_class,
633 struct cfg80211_chan_def *chandef)
634{
635 struct ieee80211_tdls_data *tf;
636 size_t offset = 0, noffset;
637 u8 *pos;
638
639 if (WARN_ON_ONCE(!chandef))
640 return;
641
642 tf = (void *)skb->data;
643 tf->u.chan_switch_req.target_channel =
644 ieee80211_frequency_to_channel(chandef->chan->center_freq);
645 tf->u.chan_switch_req.oper_class = oper_class;
646
647 if (extra_ies_len) {
648 static const u8 before_lnkie[] = {
649 WLAN_EID_SECONDARY_CHANNEL_OFFSET,
650 };
651 noffset = ieee80211_ie_split(extra_ies, extra_ies_len,
652 before_lnkie,
653 ARRAY_SIZE(before_lnkie),
654 offset);
655 pos = skb_put(skb, noffset - offset);
656 memcpy(pos, extra_ies + offset, noffset - offset);
657 offset = noffset;
658 }
659
660 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
661
662 /* add any remaining IEs */
663 if (extra_ies_len) {
664 noffset = extra_ies_len;
665 pos = skb_put(skb, noffset - offset);
666 memcpy(pos, extra_ies + offset, noffset - offset);
667 }
668}
669
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +0200670static void
671ieee80211_tdls_add_chan_switch_resp_ies(struct ieee80211_sub_if_data *sdata,
672 struct sk_buff *skb, const u8 *peer,
673 u16 status_code, bool initiator,
674 const u8 *extra_ies,
675 size_t extra_ies_len)
676{
677 if (status_code == 0)
678 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
679
680 if (extra_ies_len)
681 memcpy(skb_put(skb, extra_ies_len), extra_ies, extra_ies_len);
682}
683
Arik Nemtsov46792a22014-07-17 17:14:19 +0300684static void ieee80211_tdls_add_ies(struct ieee80211_sub_if_data *sdata,
685 struct sk_buff *skb, const u8 *peer,
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300686 u8 action_code, u16 status_code,
687 bool initiator, const u8 *extra_ies,
Arik Nemtsovc2733902014-11-09 18:50:16 +0200688 size_t extra_ies_len, u8 oper_class,
689 struct cfg80211_chan_def *chandef)
Arik Nemtsov46792a22014-07-17 17:14:19 +0300690{
Arik Nemtsov46792a22014-07-17 17:14:19 +0300691 switch (action_code) {
692 case WLAN_TDLS_SETUP_REQUEST:
693 case WLAN_TDLS_SETUP_RESPONSE:
694 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300695 if (status_code == 0)
696 ieee80211_tdls_add_setup_start_ies(sdata, skb, peer,
697 action_code,
698 initiator,
699 extra_ies,
700 extra_ies_len);
Arik Nemtsov46792a22014-07-17 17:14:19 +0300701 break;
702 case WLAN_TDLS_SETUP_CONFIRM:
Arik Nemtsov6f7eaa42014-07-17 17:14:24 +0300703 if (status_code == 0)
704 ieee80211_tdls_add_setup_cfm_ies(sdata, skb, peer,
705 initiator, extra_ies,
706 extra_ies_len);
707 break;
Arik Nemtsov46792a22014-07-17 17:14:19 +0300708 case WLAN_TDLS_TEARDOWN:
709 case WLAN_TDLS_DISCOVERY_REQUEST:
Arik Nemtsovf09a87d2014-07-17 17:14:20 +0300710 if (extra_ies_len)
711 memcpy(skb_put(skb, extra_ies_len), extra_ies,
712 extra_ies_len);
Arik Nemtsov1606ef42014-07-17 17:14:21 +0300713 if (status_code == 0 || action_code == WLAN_TDLS_TEARDOWN)
714 ieee80211_tdls_add_link_ie(sdata, skb, peer, initiator);
Arik Nemtsov46792a22014-07-17 17:14:19 +0300715 break;
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +0200716 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
717 ieee80211_tdls_add_chan_switch_req_ies(sdata, skb, peer,
718 initiator, extra_ies,
719 extra_ies_len,
720 oper_class, chandef);
721 break;
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +0200722 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
723 ieee80211_tdls_add_chan_switch_resp_ies(sdata, skb, peer,
724 status_code,
725 initiator, extra_ies,
726 extra_ies_len);
727 break;
Arik Nemtsov46792a22014-07-17 17:14:19 +0300728 }
729
Arik Nemtsov46792a22014-07-17 17:14:19 +0300730}
731
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300732static int
733ieee80211_prep_tdls_encap_data(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200734 const u8 *peer, u8 action_code, u8 dialog_token,
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300735 u16 status_code, struct sk_buff *skb)
736{
737 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300738 struct ieee80211_tdls_data *tf;
739
740 tf = (void *)skb_put(skb, offsetof(struct ieee80211_tdls_data, u));
741
742 memcpy(tf->da, peer, ETH_ALEN);
743 memcpy(tf->sa, sdata->vif.addr, ETH_ALEN);
744 tf->ether_type = cpu_to_be16(ETH_P_TDLS);
745 tf->payload_type = WLAN_TDLS_SNAP_RFTYPE;
746
Arik Nemtsov59cd85c2014-09-09 17:11:02 +0300747 /* network header is after the ethernet header */
748 skb_set_network_header(skb, ETH_HLEN);
749
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300750 switch (action_code) {
751 case WLAN_TDLS_SETUP_REQUEST:
752 tf->category = WLAN_CATEGORY_TDLS;
753 tf->action_code = WLAN_TDLS_SETUP_REQUEST;
754
755 skb_put(skb, sizeof(tf->u.setup_req));
756 tf->u.setup_req.dialog_token = dialog_token;
757 tf->u.setup_req.capability =
Arik Nemtsovdd8c0b02014-07-17 17:14:22 +0300758 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata,
759 status_code));
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300760 break;
761 case WLAN_TDLS_SETUP_RESPONSE:
762 tf->category = WLAN_CATEGORY_TDLS;
763 tf->action_code = WLAN_TDLS_SETUP_RESPONSE;
764
765 skb_put(skb, sizeof(tf->u.setup_resp));
766 tf->u.setup_resp.status_code = cpu_to_le16(status_code);
767 tf->u.setup_resp.dialog_token = dialog_token;
768 tf->u.setup_resp.capability =
Arik Nemtsovdd8c0b02014-07-17 17:14:22 +0300769 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata,
770 status_code));
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300771 break;
772 case WLAN_TDLS_SETUP_CONFIRM:
773 tf->category = WLAN_CATEGORY_TDLS;
774 tf->action_code = WLAN_TDLS_SETUP_CONFIRM;
775
776 skb_put(skb, sizeof(tf->u.setup_cfm));
777 tf->u.setup_cfm.status_code = cpu_to_le16(status_code);
778 tf->u.setup_cfm.dialog_token = dialog_token;
779 break;
780 case WLAN_TDLS_TEARDOWN:
781 tf->category = WLAN_CATEGORY_TDLS;
782 tf->action_code = WLAN_TDLS_TEARDOWN;
783
784 skb_put(skb, sizeof(tf->u.teardown));
785 tf->u.teardown.reason_code = cpu_to_le16(status_code);
786 break;
787 case WLAN_TDLS_DISCOVERY_REQUEST:
788 tf->category = WLAN_CATEGORY_TDLS;
789 tf->action_code = WLAN_TDLS_DISCOVERY_REQUEST;
790
791 skb_put(skb, sizeof(tf->u.discover_req));
792 tf->u.discover_req.dialog_token = dialog_token;
793 break;
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +0200794 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
795 tf->category = WLAN_CATEGORY_TDLS;
796 tf->action_code = WLAN_TDLS_CHANNEL_SWITCH_REQUEST;
797
798 skb_put(skb, sizeof(tf->u.chan_switch_req));
799 break;
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +0200800 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
801 tf->category = WLAN_CATEGORY_TDLS;
802 tf->action_code = WLAN_TDLS_CHANNEL_SWITCH_RESPONSE;
803
804 skb_put(skb, sizeof(tf->u.chan_switch_resp));
805 tf->u.chan_switch_resp.status_code = cpu_to_le16(status_code);
806 break;
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300807 default:
808 return -EINVAL;
809 }
810
811 return 0;
812}
813
814static int
815ieee80211_prep_tdls_direct(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200816 const u8 *peer, u8 action_code, u8 dialog_token,
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300817 u16 status_code, struct sk_buff *skb)
818{
819 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300820 struct ieee80211_mgmt *mgmt;
821
822 mgmt = (void *)skb_put(skb, 24);
823 memset(mgmt, 0, 24);
824 memcpy(mgmt->da, peer, ETH_ALEN);
825 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
826 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
827
828 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
829 IEEE80211_STYPE_ACTION);
830
831 switch (action_code) {
832 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
833 skb_put(skb, 1 + sizeof(mgmt->u.action.u.tdls_discover_resp));
834 mgmt->u.action.category = WLAN_CATEGORY_PUBLIC;
835 mgmt->u.action.u.tdls_discover_resp.action_code =
836 WLAN_PUB_ACTION_TDLS_DISCOVER_RES;
837 mgmt->u.action.u.tdls_discover_resp.dialog_token =
838 dialog_token;
839 mgmt->u.action.u.tdls_discover_resp.capability =
Arik Nemtsovdd8c0b02014-07-17 17:14:22 +0300840 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata,
841 status_code));
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300842 break;
843 default:
844 return -EINVAL;
845 }
846
847 return 0;
848}
849
Arik Nemtsovc2733902014-11-09 18:50:16 +0200850static struct sk_buff *
851ieee80211_tdls_build_mgmt_packet_data(struct ieee80211_sub_if_data *sdata,
852 const u8 *peer, u8 action_code,
853 u8 dialog_token, u16 status_code,
854 bool initiator, const u8 *extra_ies,
855 size_t extra_ies_len, u8 oper_class,
856 struct cfg80211_chan_def *chandef)
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300857{
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300858 struct ieee80211_local *local = sdata->local;
Arik Nemtsovc2733902014-11-09 18:50:16 +0200859 struct sk_buff *skb;
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300860 int ret;
861
Arik Nemtsovc2733902014-11-09 18:50:16 +0200862 skb = netdev_alloc_skb(sdata->dev,
Liad Kaufman1277b4a2014-11-09 18:50:08 +0200863 local->hw.extra_tx_headroom +
864 max(sizeof(struct ieee80211_mgmt),
865 sizeof(struct ieee80211_tdls_data)) +
866 50 + /* supported rates */
Arik Nemtsovb98fb442015-06-10 20:42:59 +0300867 10 + /* ext capab */
Liad Kaufman1277b4a2014-11-09 18:50:08 +0200868 26 + /* max(WMM-info, WMM-param) */
869 2 + max(sizeof(struct ieee80211_ht_cap),
870 sizeof(struct ieee80211_ht_operation)) +
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200871 2 + max(sizeof(struct ieee80211_vht_cap),
872 sizeof(struct ieee80211_vht_operation)) +
Arik Nemtsovf0d29cb2014-11-09 18:50:12 +0200873 50 + /* supported channels */
Arik Nemtsov2cedd872014-11-09 18:50:13 +0200874 3 + /* 40/20 BSS coex */
Arik Nemtsovfb28ec02015-03-01 09:10:02 +0200875 4 + /* AID */
Arik Nemtsova38700d2015-03-18 08:46:08 +0200876 4 + /* oper classes */
Liad Kaufman1277b4a2014-11-09 18:50:08 +0200877 extra_ies_len +
878 sizeof(struct ieee80211_tdls_lnkie));
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300879 if (!skb)
Arik Nemtsovc2733902014-11-09 18:50:16 +0200880 return NULL;
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300881
882 skb_reserve(skb, local->hw.extra_tx_headroom);
883
884 switch (action_code) {
885 case WLAN_TDLS_SETUP_REQUEST:
886 case WLAN_TDLS_SETUP_RESPONSE:
887 case WLAN_TDLS_SETUP_CONFIRM:
888 case WLAN_TDLS_TEARDOWN:
889 case WLAN_TDLS_DISCOVERY_REQUEST:
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +0200890 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +0200891 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
Arik Nemtsovc2733902014-11-09 18:50:16 +0200892 ret = ieee80211_prep_tdls_encap_data(local->hw.wiphy,
893 sdata->dev, peer,
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300894 action_code, dialog_token,
895 status_code, skb);
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300896 break;
897 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
Arik Nemtsovc2733902014-11-09 18:50:16 +0200898 ret = ieee80211_prep_tdls_direct(local->hw.wiphy, sdata->dev,
899 peer, action_code,
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300900 dialog_token, status_code,
901 skb);
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300902 break;
903 default:
904 ret = -ENOTSUPP;
905 break;
906 }
907
908 if (ret < 0)
909 goto fail;
910
Arik Nemtsovc2733902014-11-09 18:50:16 +0200911 ieee80211_tdls_add_ies(sdata, skb, peer, action_code, status_code,
912 initiator, extra_ies, extra_ies_len, oper_class,
913 chandef);
914 return skb;
915
916fail:
917 dev_kfree_skb(skb);
918 return NULL;
919}
920
921static int
922ieee80211_tdls_prep_mgmt_packet(struct wiphy *wiphy, struct net_device *dev,
923 const u8 *peer, u8 action_code, u8 dialog_token,
924 u16 status_code, u32 peer_capability,
925 bool initiator, const u8 *extra_ies,
926 size_t extra_ies_len, u8 oper_class,
927 struct cfg80211_chan_def *chandef)
928{
929 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
930 struct sk_buff *skb = NULL;
931 struct sta_info *sta;
932 u32 flags = 0;
933 int ret = 0;
934
Arik Nemtsov626911c2014-07-17 17:14:17 +0300935 rcu_read_lock();
936 sta = sta_info_get(sdata, peer);
937
938 /* infer the initiator if we can, to support old userspace */
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300939 switch (action_code) {
940 case WLAN_TDLS_SETUP_REQUEST:
Arik Nemtsov8b941482014-10-22 12:32:48 +0300941 if (sta) {
Arik Nemtsov626911c2014-07-17 17:14:17 +0300942 set_sta_flag(sta, WLAN_STA_TDLS_INITIATOR);
Arik Nemtsov8b941482014-10-22 12:32:48 +0300943 sta->sta.tdls_initiator = false;
944 }
Arik Nemtsov626911c2014-07-17 17:14:17 +0300945 /* fall-through */
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300946 case WLAN_TDLS_SETUP_CONFIRM:
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300947 case WLAN_TDLS_DISCOVERY_REQUEST:
Arik Nemtsov626911c2014-07-17 17:14:17 +0300948 initiator = true;
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300949 break;
950 case WLAN_TDLS_SETUP_RESPONSE:
Arik Nemtsov626911c2014-07-17 17:14:17 +0300951 /*
952 * In some testing scenarios, we send a request and response.
953 * Make the last packet sent take effect for the initiator
954 * value.
955 */
Arik Nemtsov8b941482014-10-22 12:32:48 +0300956 if (sta) {
Arik Nemtsov626911c2014-07-17 17:14:17 +0300957 clear_sta_flag(sta, WLAN_STA_TDLS_INITIATOR);
Arik Nemtsov8b941482014-10-22 12:32:48 +0300958 sta->sta.tdls_initiator = true;
959 }
Arik Nemtsov626911c2014-07-17 17:14:17 +0300960 /* fall-through */
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300961 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
Arik Nemtsov626911c2014-07-17 17:14:17 +0300962 initiator = false;
Arik Nemtsov2fb6b9b2014-06-11 17:18:22 +0300963 break;
964 case WLAN_TDLS_TEARDOWN:
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +0200965 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +0200966 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
Arik Nemtsov2fb6b9b2014-06-11 17:18:22 +0300967 /* any value is ok */
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300968 break;
969 default:
970 ret = -ENOTSUPP;
Arik Nemtsov626911c2014-07-17 17:14:17 +0300971 break;
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300972 }
973
Arik Nemtsov46792a22014-07-17 17:14:19 +0300974 if (sta && test_sta_flag(sta, WLAN_STA_TDLS_INITIATOR))
975 initiator = true;
Arik Nemtsov2fb6b9b2014-06-11 17:18:22 +0300976
Arik Nemtsov626911c2014-07-17 17:14:17 +0300977 rcu_read_unlock();
978 if (ret < 0)
979 goto fail;
980
Arik Nemtsovc2733902014-11-09 18:50:16 +0200981 skb = ieee80211_tdls_build_mgmt_packet_data(sdata, peer, action_code,
982 dialog_token, status_code,
983 initiator, extra_ies,
984 extra_ies_len, oper_class,
985 chandef);
986 if (!skb) {
987 ret = -EINVAL;
988 goto fail;
989 }
990
991 if (action_code == WLAN_PUB_ACTION_TDLS_DISCOVER_RES) {
Arik Nemtsov95224fe2014-05-01 10:17:28 +0300992 ieee80211_tx_skb(sdata, skb);
993 return 0;
994 }
995
996 /*
997 * According to 802.11z: Setup req/resp are sent in AC_BK, otherwise
998 * we should default to AC_VI.
999 */
1000 switch (action_code) {
1001 case WLAN_TDLS_SETUP_REQUEST:
1002 case WLAN_TDLS_SETUP_RESPONSE:
1003 skb_set_queue_mapping(skb, IEEE80211_AC_BK);
1004 skb->priority = 2;
1005 break;
1006 default:
1007 skb_set_queue_mapping(skb, IEEE80211_AC_VI);
1008 skb->priority = 5;
1009 break;
1010 }
1011
Liad Kaufman1277b4a2014-11-09 18:50:08 +02001012 /*
1013 * Set the WLAN_TDLS_TEARDOWN flag to indicate a teardown in progress.
1014 * Later, if no ACK is returned from peer, we will re-send the teardown
1015 * packet through the AP.
1016 */
1017 if ((action_code == WLAN_TDLS_TEARDOWN) &&
Johannes Berg30686bf2015-06-02 21:39:54 +02001018 ieee80211_hw_check(&sdata->local->hw, REPORTS_TX_ACK_STATUS)) {
Liad Kaufman1277b4a2014-11-09 18:50:08 +02001019 bool try_resend; /* Should we keep skb for possible resend */
1020
1021 /* If not sending directly to peer - no point in keeping skb */
1022 rcu_read_lock();
1023 sta = sta_info_get(sdata, peer);
1024 try_resend = sta && test_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH);
1025 rcu_read_unlock();
1026
1027 spin_lock_bh(&sdata->u.mgd.teardown_lock);
1028 if (try_resend && !sdata->u.mgd.teardown_skb) {
1029 /* Mark it as requiring TX status callback */
1030 flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
1031 IEEE80211_TX_INTFL_MLME_CONN_TX;
1032
1033 /*
1034 * skb is copied since mac80211 will later set
1035 * properties that might not be the same as the AP,
1036 * such as encryption, QoS, addresses, etc.
1037 *
1038 * No problem if skb_copy() fails, so no need to check.
1039 */
1040 sdata->u.mgd.teardown_skb = skb_copy(skb, GFP_ATOMIC);
1041 sdata->u.mgd.orig_teardown_skb = skb;
1042 }
1043 spin_unlock_bh(&sdata->u.mgd.teardown_lock);
1044 }
1045
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001046 /* disable bottom halves when entering the Tx path */
1047 local_bh_disable();
Liad Kaufman1277b4a2014-11-09 18:50:08 +02001048 __ieee80211_subif_start_xmit(skb, dev, flags);
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001049 local_bh_enable();
1050
1051 return ret;
1052
1053fail:
1054 dev_kfree_skb(skb);
1055 return ret;
1056}
1057
Arik Nemtsov191dd462014-06-11 17:18:23 +03001058static int
1059ieee80211_tdls_mgmt_setup(struct wiphy *wiphy, struct net_device *dev,
1060 const u8 *peer, u8 action_code, u8 dialog_token,
1061 u16 status_code, u32 peer_capability, bool initiator,
1062 const u8 *extra_ies, size_t extra_ies_len)
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001063{
1064 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1065 struct ieee80211_local *local = sdata->local;
1066 int ret;
1067
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001068 mutex_lock(&local->mtx);
1069
1070 /* we don't support concurrent TDLS peer setups */
Arik Nemtsov81dd2b82014-07-17 17:14:25 +03001071 if (!is_zero_ether_addr(sdata->u.mgd.tdls_peer) &&
1072 !ether_addr_equal(sdata->u.mgd.tdls_peer, peer)) {
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001073 ret = -EBUSY;
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +02001074 goto out_unlock;
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001075 }
1076
Arik Nemtsov7adc3e42014-06-11 17:18:26 +03001077 /*
1078 * make sure we have a STA representing the peer so we drop or buffer
1079 * non-TDLS-setup frames to the peer. We can't send other packets
Arik Nemtsov6ae32e52014-07-17 17:14:18 +03001080 * during setup through the AP path.
1081 * Allow error packets to be sent - sometimes we don't even add a STA
1082 * before failing the setup.
Arik Nemtsov7adc3e42014-06-11 17:18:26 +03001083 */
Arik Nemtsov6ae32e52014-07-17 17:14:18 +03001084 if (status_code == 0) {
1085 rcu_read_lock();
1086 if (!sta_info_get(sdata, peer)) {
1087 rcu_read_unlock();
1088 ret = -ENOLINK;
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +02001089 goto out_unlock;
Arik Nemtsov6ae32e52014-07-17 17:14:18 +03001090 }
Arik Nemtsov7adc3e42014-06-11 17:18:26 +03001091 rcu_read_unlock();
Arik Nemtsov7adc3e42014-06-11 17:18:26 +03001092 }
Arik Nemtsov7adc3e42014-06-11 17:18:26 +03001093
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +02001094 ieee80211_flush_queues(local, sdata, false);
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +02001095 memcpy(sdata->u.mgd.tdls_peer, peer, ETH_ALEN);
1096 mutex_unlock(&local->mtx);
Arik Nemtsovdb67d662014-06-11 17:18:24 +03001097
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +02001098 /* we cannot take the mutex while preparing the setup packet */
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001099 ret = ieee80211_tdls_prep_mgmt_packet(wiphy, dev, peer, action_code,
1100 dialog_token, status_code,
Arik Nemtsov2fb6b9b2014-06-11 17:18:22 +03001101 peer_capability, initiator,
Arik Nemtsovc2733902014-11-09 18:50:16 +02001102 extra_ies, extra_ies_len, 0,
1103 NULL);
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +02001104 if (ret < 0) {
1105 mutex_lock(&local->mtx);
1106 eth_zero_addr(sdata->u.mgd.tdls_peer);
1107 mutex_unlock(&local->mtx);
1108 return ret;
1109 }
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001110
Arik Nemtsov191dd462014-06-11 17:18:23 +03001111 ieee80211_queue_delayed_work(&sdata->local->hw,
Arik Nemtsov81dd2b82014-07-17 17:14:25 +03001112 &sdata->u.mgd.tdls_peer_del_work,
Arik Nemtsov191dd462014-06-11 17:18:23 +03001113 TDLS_PEER_SETUP_TIMEOUT);
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +02001114 return 0;
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001115
Arik Nemtsovae2e9fb2015-03-01 09:10:09 +02001116out_unlock:
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001117 mutex_unlock(&local->mtx);
Arik Nemtsov191dd462014-06-11 17:18:23 +03001118 return ret;
1119}
1120
Arik Nemtsovdb67d662014-06-11 17:18:24 +03001121static int
1122ieee80211_tdls_mgmt_teardown(struct wiphy *wiphy, struct net_device *dev,
1123 const u8 *peer, u8 action_code, u8 dialog_token,
1124 u16 status_code, u32 peer_capability,
1125 bool initiator, const u8 *extra_ies,
1126 size_t extra_ies_len)
1127{
1128 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1129 struct ieee80211_local *local = sdata->local;
1130 struct sta_info *sta;
1131 int ret;
1132
1133 /*
1134 * No packets can be transmitted to the peer via the AP during setup -
1135 * the STA is set as a TDLS peer, but is not authorized.
1136 * During teardown, we prevent direct transmissions by stopping the
1137 * queues and flushing all direct packets.
1138 */
1139 ieee80211_stop_vif_queues(local, sdata,
1140 IEEE80211_QUEUE_STOP_REASON_TDLS_TEARDOWN);
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +02001141 ieee80211_flush_queues(local, sdata, false);
Arik Nemtsovdb67d662014-06-11 17:18:24 +03001142
1143 ret = ieee80211_tdls_prep_mgmt_packet(wiphy, dev, peer, action_code,
1144 dialog_token, status_code,
1145 peer_capability, initiator,
Arik Nemtsovc2733902014-11-09 18:50:16 +02001146 extra_ies, extra_ies_len, 0,
1147 NULL);
Arik Nemtsovdb67d662014-06-11 17:18:24 +03001148 if (ret < 0)
1149 sdata_err(sdata, "Failed sending TDLS teardown packet %d\n",
1150 ret);
1151
1152 /*
1153 * Remove the STA AUTH flag to force further traffic through the AP. If
1154 * the STA was unreachable, it was already removed.
1155 */
1156 rcu_read_lock();
1157 sta = sta_info_get(sdata, peer);
1158 if (sta)
1159 clear_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH);
1160 rcu_read_unlock();
1161
1162 ieee80211_wake_vif_queues(local, sdata,
1163 IEEE80211_QUEUE_STOP_REASON_TDLS_TEARDOWN);
1164
1165 return 0;
1166}
1167
Arik Nemtsov191dd462014-06-11 17:18:23 +03001168int ieee80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
1169 const u8 *peer, u8 action_code, u8 dialog_token,
1170 u16 status_code, u32 peer_capability,
1171 bool initiator, const u8 *extra_ies,
1172 size_t extra_ies_len)
1173{
1174 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1175 int ret;
1176
1177 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
1178 return -ENOTSUPP;
1179
1180 /* make sure we are in managed mode, and associated */
1181 if (sdata->vif.type != NL80211_IFTYPE_STATION ||
1182 !sdata->u.mgd.associated)
1183 return -EINVAL;
1184
1185 switch (action_code) {
1186 case WLAN_TDLS_SETUP_REQUEST:
1187 case WLAN_TDLS_SETUP_RESPONSE:
1188 ret = ieee80211_tdls_mgmt_setup(wiphy, dev, peer, action_code,
1189 dialog_token, status_code,
1190 peer_capability, initiator,
1191 extra_ies, extra_ies_len);
1192 break;
1193 case WLAN_TDLS_TEARDOWN:
Arik Nemtsovdb67d662014-06-11 17:18:24 +03001194 ret = ieee80211_tdls_mgmt_teardown(wiphy, dev, peer,
1195 action_code, dialog_token,
1196 status_code,
1197 peer_capability, initiator,
1198 extra_ies, extra_ies_len);
1199 break;
Arik Nemtsov191dd462014-06-11 17:18:23 +03001200 case WLAN_TDLS_DISCOVERY_REQUEST:
Arik Nemtsovee10f2c2014-06-11 17:18:27 +03001201 /*
1202 * Protect the discovery so we can hear the TDLS discovery
1203 * response frame. It is transmitted directly and not buffered
1204 * by the AP.
1205 */
1206 drv_mgd_protect_tdls_discover(sdata->local, sdata);
1207 /* fall-through */
1208 case WLAN_TDLS_SETUP_CONFIRM:
Arik Nemtsov191dd462014-06-11 17:18:23 +03001209 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
1210 /* no special handling */
1211 ret = ieee80211_tdls_prep_mgmt_packet(wiphy, dev, peer,
1212 action_code,
1213 dialog_token,
1214 status_code,
1215 peer_capability,
1216 initiator, extra_ies,
Arik Nemtsovc2733902014-11-09 18:50:16 +02001217 extra_ies_len, 0, NULL);
Arik Nemtsov191dd462014-06-11 17:18:23 +03001218 break;
1219 default:
1220 ret = -EOPNOTSUPP;
1221 break;
1222 }
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001223
1224 tdls_dbg(sdata, "TDLS mgmt action %d peer %pM status %d\n",
1225 action_code, peer, ret);
1226 return ret;
1227}
1228
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +03001229static void iee80211_tdls_recalc_chanctx(struct ieee80211_sub_if_data *sdata)
1230{
1231 struct ieee80211_local *local = sdata->local;
1232 struct ieee80211_chanctx_conf *conf;
1233 struct ieee80211_chanctx *ctx;
1234
1235 mutex_lock(&local->chanctx_mtx);
1236 conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
1237 lockdep_is_held(&local->chanctx_mtx));
1238 if (conf) {
1239 ctx = container_of(conf, struct ieee80211_chanctx, conf);
1240 ieee80211_recalc_chanctx_chantype(local, ctx);
1241 }
1242 mutex_unlock(&local->chanctx_mtx);
1243}
1244
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001245int ieee80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001246 const u8 *peer, enum nl80211_tdls_operation oper)
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001247{
1248 struct sta_info *sta;
1249 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001250 struct ieee80211_local *local = sdata->local;
1251 int ret;
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001252
1253 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
1254 return -ENOTSUPP;
1255
1256 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1257 return -EINVAL;
1258
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001259 switch (oper) {
1260 case NL80211_TDLS_ENABLE_LINK:
1261 case NL80211_TDLS_DISABLE_LINK:
1262 break;
1263 case NL80211_TDLS_TEARDOWN:
1264 case NL80211_TDLS_SETUP:
1265 case NL80211_TDLS_DISCOVERY_REQ:
1266 /* We don't support in-driver setup/teardown/discovery */
1267 return -ENOTSUPP;
1268 }
1269
1270 mutex_lock(&local->mtx);
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001271 tdls_dbg(sdata, "TDLS oper %d peer %pM\n", oper, peer);
1272
1273 switch (oper) {
1274 case NL80211_TDLS_ENABLE_LINK:
Arik Nemtsovc5a71682015-05-19 14:36:48 +03001275 if (sdata->vif.csa_active) {
1276 tdls_dbg(sdata, "TDLS: disallow link during CSA\n");
1277 ret = -EBUSY;
1278 break;
1279 }
1280
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +03001281 iee80211_tdls_recalc_chanctx(sdata);
1282
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001283 rcu_read_lock();
1284 sta = sta_info_get(sdata, peer);
1285 if (!sta) {
1286 rcu_read_unlock();
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001287 ret = -ENOLINK;
1288 break;
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001289 }
1290
1291 set_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH);
1292 rcu_read_unlock();
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001293
Arik Nemtsov81dd2b82014-07-17 17:14:25 +03001294 WARN_ON_ONCE(is_zero_ether_addr(sdata->u.mgd.tdls_peer) ||
1295 !ether_addr_equal(sdata->u.mgd.tdls_peer, peer));
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001296 ret = 0;
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001297 break;
1298 case NL80211_TDLS_DISABLE_LINK:
Liad Kaufmanbb3f8482014-07-17 17:14:31 +03001299 /*
1300 * The teardown message in ieee80211_tdls_mgmt_teardown() was
1301 * created while the queues were stopped, so it might still be
1302 * pending. Before flushing the queues we need to be sure the
1303 * message is handled by the tasklet handling pending messages,
1304 * otherwise we might start destroying the station before
1305 * sending the teardown packet.
1306 * Note that this only forces the tasklet to flush pendings -
1307 * not to stop the tasklet from rescheduling itself.
1308 */
1309 tasklet_kill(&local->tx_pending_tasklet);
Arik Nemtsovdb67d662014-06-11 17:18:24 +03001310 /* flush a potentially queued teardown packet */
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +02001311 ieee80211_flush_queues(local, sdata, false);
Arik Nemtsovdb67d662014-06-11 17:18:24 +03001312
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001313 ret = sta_info_destroy_addr(sdata, peer);
Arik Nemtsov0fabfaa2015-06-10 20:41:23 +03001314 iee80211_tdls_recalc_chanctx(sdata);
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001315 break;
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001316 default:
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001317 ret = -ENOTSUPP;
1318 break;
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001319 }
1320
Arik Nemtsov81dd2b82014-07-17 17:14:25 +03001321 if (ret == 0 && ether_addr_equal(sdata->u.mgd.tdls_peer, peer)) {
1322 cancel_delayed_work(&sdata->u.mgd.tdls_peer_del_work);
1323 eth_zero_addr(sdata->u.mgd.tdls_peer);
Arik Nemtsov17e6a592014-06-11 17:18:20 +03001324 }
1325
1326 mutex_unlock(&local->mtx);
1327 return ret;
Arik Nemtsov95224fe2014-05-01 10:17:28 +03001328}
Arik Nemtsovc887f0d32014-06-11 17:18:25 +03001329
1330void ieee80211_tdls_oper_request(struct ieee80211_vif *vif, const u8 *peer,
1331 enum nl80211_tdls_operation oper,
1332 u16 reason_code, gfp_t gfp)
1333{
1334 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1335
1336 if (vif->type != NL80211_IFTYPE_STATION || !vif->bss_conf.assoc) {
1337 sdata_err(sdata, "Discarding TDLS oper %d - not STA or disconnected\n",
1338 oper);
1339 return;
1340 }
1341
1342 cfg80211_tdls_oper_request(sdata->dev, peer, oper, reason_code, gfp);
1343}
1344EXPORT_SYMBOL(ieee80211_tdls_oper_request);
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +02001345
1346static void
1347iee80211_tdls_add_ch_switch_timing(u8 *buf, u16 switch_time, u16 switch_timeout)
1348{
1349 struct ieee80211_ch_switch_timing *ch_sw;
1350
1351 *buf++ = WLAN_EID_CHAN_SWITCH_TIMING;
1352 *buf++ = sizeof(struct ieee80211_ch_switch_timing);
1353
1354 ch_sw = (void *)buf;
1355 ch_sw->switch_time = cpu_to_le16(switch_time);
1356 ch_sw->switch_timeout = cpu_to_le16(switch_timeout);
1357}
1358
1359/* find switch timing IE in SKB ready for Tx */
1360static const u8 *ieee80211_tdls_find_sw_timing_ie(struct sk_buff *skb)
1361{
1362 struct ieee80211_tdls_data *tf;
1363 const u8 *ie_start;
1364
1365 /*
1366 * Get the offset for the new location of the switch timing IE.
1367 * The SKB network header will now point to the "payload_type"
1368 * element of the TDLS data frame struct.
1369 */
1370 tf = container_of(skb->data + skb_network_offset(skb),
1371 struct ieee80211_tdls_data, payload_type);
1372 ie_start = tf->u.chan_switch_req.variable;
1373 return cfg80211_find_ie(WLAN_EID_CHAN_SWITCH_TIMING, ie_start,
1374 skb->len - (ie_start - skb->data));
1375}
1376
1377static struct sk_buff *
1378ieee80211_tdls_ch_sw_tmpl_get(struct sta_info *sta, u8 oper_class,
1379 struct cfg80211_chan_def *chandef,
1380 u32 *ch_sw_tm_ie_offset)
1381{
1382 struct ieee80211_sub_if_data *sdata = sta->sdata;
1383 u8 extra_ies[2 + sizeof(struct ieee80211_sec_chan_offs_ie) +
1384 2 + sizeof(struct ieee80211_ch_switch_timing)];
1385 int extra_ies_len = 2 + sizeof(struct ieee80211_ch_switch_timing);
1386 u8 *pos = extra_ies;
1387 struct sk_buff *skb;
1388
1389 /*
1390 * if chandef points to a wide channel add a Secondary-Channel
1391 * Offset information element
1392 */
1393 if (chandef->width == NL80211_CHAN_WIDTH_40) {
1394 struct ieee80211_sec_chan_offs_ie *sec_chan_ie;
1395 bool ht40plus;
1396
1397 *pos++ = WLAN_EID_SECONDARY_CHANNEL_OFFSET;
1398 *pos++ = sizeof(*sec_chan_ie);
1399 sec_chan_ie = (void *)pos;
1400
1401 ht40plus = cfg80211_get_chandef_type(chandef) ==
1402 NL80211_CHAN_HT40PLUS;
1403 sec_chan_ie->sec_chan_offs = ht40plus ?
1404 IEEE80211_HT_PARAM_CHA_SEC_ABOVE :
1405 IEEE80211_HT_PARAM_CHA_SEC_BELOW;
1406 pos += sizeof(*sec_chan_ie);
1407
1408 extra_ies_len += 2 + sizeof(struct ieee80211_sec_chan_offs_ie);
1409 }
1410
1411 /* just set the values to 0, this is a template */
1412 iee80211_tdls_add_ch_switch_timing(pos, 0, 0);
1413
1414 skb = ieee80211_tdls_build_mgmt_packet_data(sdata, sta->sta.addr,
1415 WLAN_TDLS_CHANNEL_SWITCH_REQUEST,
1416 0, 0, !sta->sta.tdls_initiator,
1417 extra_ies, extra_ies_len,
1418 oper_class, chandef);
1419 if (!skb)
1420 return NULL;
1421
1422 skb = ieee80211_build_data_template(sdata, skb, 0);
1423 if (IS_ERR(skb)) {
1424 tdls_dbg(sdata, "Failed building TDLS channel switch frame\n");
1425 return NULL;
1426 }
1427
1428 if (ch_sw_tm_ie_offset) {
1429 const u8 *tm_ie = ieee80211_tdls_find_sw_timing_ie(skb);
1430
1431 if (!tm_ie) {
1432 tdls_dbg(sdata, "No switch timing IE in TDLS switch\n");
1433 dev_kfree_skb_any(skb);
1434 return NULL;
1435 }
1436
1437 *ch_sw_tm_ie_offset = tm_ie - skb->data;
1438 }
1439
1440 tdls_dbg(sdata,
1441 "TDLS channel switch request template for %pM ch %d width %d\n",
1442 sta->sta.addr, chandef->chan->center_freq, chandef->width);
1443 return skb;
1444}
1445
1446int
1447ieee80211_tdls_channel_switch(struct wiphy *wiphy, struct net_device *dev,
1448 const u8 *addr, u8 oper_class,
1449 struct cfg80211_chan_def *chandef)
1450{
1451 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1452 struct ieee80211_local *local = sdata->local;
1453 struct sta_info *sta;
1454 struct sk_buff *skb = NULL;
1455 u32 ch_sw_tm_ie;
1456 int ret;
1457
1458 mutex_lock(&local->sta_mtx);
1459 sta = sta_info_get(sdata, addr);
1460 if (!sta) {
1461 tdls_dbg(sdata,
1462 "Invalid TDLS peer %pM for channel switch request\n",
1463 addr);
1464 ret = -ENOENT;
1465 goto out;
1466 }
1467
1468 if (!test_sta_flag(sta, WLAN_STA_TDLS_CHAN_SWITCH)) {
1469 tdls_dbg(sdata, "TDLS channel switch unsupported by %pM\n",
1470 addr);
1471 ret = -ENOTSUPP;
1472 goto out;
1473 }
1474
1475 skb = ieee80211_tdls_ch_sw_tmpl_get(sta, oper_class, chandef,
1476 &ch_sw_tm_ie);
1477 if (!skb) {
1478 ret = -ENOENT;
1479 goto out;
1480 }
1481
1482 ret = drv_tdls_channel_switch(local, sdata, &sta->sta, oper_class,
1483 chandef, skb, ch_sw_tm_ie);
1484 if (!ret)
1485 set_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL);
1486
1487out:
1488 mutex_unlock(&local->sta_mtx);
1489 dev_kfree_skb_any(skb);
1490 return ret;
1491}
1492
1493void
1494ieee80211_tdls_cancel_channel_switch(struct wiphy *wiphy,
1495 struct net_device *dev,
1496 const u8 *addr)
1497{
1498 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1499 struct ieee80211_local *local = sdata->local;
1500 struct sta_info *sta;
1501
1502 mutex_lock(&local->sta_mtx);
1503 sta = sta_info_get(sdata, addr);
1504 if (!sta) {
1505 tdls_dbg(sdata,
1506 "Invalid TDLS peer %pM for channel switch cancel\n",
1507 addr);
1508 goto out;
1509 }
1510
1511 if (!test_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL)) {
1512 tdls_dbg(sdata, "TDLS channel switch not initiated by %pM\n",
1513 addr);
1514 goto out;
1515 }
1516
1517 drv_tdls_cancel_channel_switch(local, sdata, &sta->sta);
1518 clear_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL);
1519
1520out:
1521 mutex_unlock(&local->sta_mtx);
1522}
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02001523
1524static struct sk_buff *
1525ieee80211_tdls_ch_sw_resp_tmpl_get(struct sta_info *sta,
1526 u32 *ch_sw_tm_ie_offset)
1527{
1528 struct ieee80211_sub_if_data *sdata = sta->sdata;
1529 struct sk_buff *skb;
1530 u8 extra_ies[2 + sizeof(struct ieee80211_ch_switch_timing)];
1531
1532 /* initial timing are always zero in the template */
1533 iee80211_tdls_add_ch_switch_timing(extra_ies, 0, 0);
1534
1535 skb = ieee80211_tdls_build_mgmt_packet_data(sdata, sta->sta.addr,
1536 WLAN_TDLS_CHANNEL_SWITCH_RESPONSE,
1537 0, 0, !sta->sta.tdls_initiator,
1538 extra_ies, sizeof(extra_ies), 0, NULL);
1539 if (!skb)
1540 return NULL;
1541
1542 skb = ieee80211_build_data_template(sdata, skb, 0);
1543 if (IS_ERR(skb)) {
1544 tdls_dbg(sdata,
1545 "Failed building TDLS channel switch resp 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,
1554 "No switch timing IE in TDLS switch resp\n");
1555 dev_kfree_skb_any(skb);
1556 return NULL;
1557 }
1558
1559 *ch_sw_tm_ie_offset = tm_ie - skb->data;
1560 }
1561
1562 tdls_dbg(sdata, "TDLS get channel switch response template for %pM\n",
1563 sta->sta.addr);
1564 return skb;
1565}
1566
1567static int
1568ieee80211_process_tdls_channel_switch_resp(struct ieee80211_sub_if_data *sdata,
1569 struct sk_buff *skb)
1570{
1571 struct ieee80211_local *local = sdata->local;
1572 struct ieee802_11_elems elems;
1573 struct sta_info *sta;
1574 struct ieee80211_tdls_data *tf = (void *)skb->data;
1575 bool local_initiator;
1576 struct ieee80211_rx_status *rx_status = IEEE80211_SKB_RXCB(skb);
1577 int baselen = offsetof(typeof(*tf), u.chan_switch_resp.variable);
1578 struct ieee80211_tdls_ch_sw_params params = {};
1579 int ret;
1580
1581 params.action_code = WLAN_TDLS_CHANNEL_SWITCH_RESPONSE;
1582 params.timestamp = rx_status->device_timestamp;
1583
1584 if (skb->len < baselen) {
1585 tdls_dbg(sdata, "TDLS channel switch resp too short: %d\n",
1586 skb->len);
1587 return -EINVAL;
1588 }
1589
1590 mutex_lock(&local->sta_mtx);
1591 sta = sta_info_get(sdata, tf->sa);
1592 if (!sta || !test_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH)) {
1593 tdls_dbg(sdata, "TDLS chan switch from non-peer sta %pM\n",
1594 tf->sa);
1595 ret = -EINVAL;
1596 goto out;
1597 }
1598
1599 params.sta = &sta->sta;
1600 params.status = le16_to_cpu(tf->u.chan_switch_resp.status_code);
1601 if (params.status != 0) {
1602 ret = 0;
1603 goto call_drv;
1604 }
1605
1606 ieee802_11_parse_elems(tf->u.chan_switch_resp.variable,
1607 skb->len - baselen, false, &elems);
1608 if (elems.parse_error) {
1609 tdls_dbg(sdata, "Invalid IEs in TDLS channel switch resp\n");
1610 ret = -EINVAL;
1611 goto out;
1612 }
1613
1614 if (!elems.ch_sw_timing || !elems.lnk_id) {
1615 tdls_dbg(sdata, "TDLS channel switch resp - missing IEs\n");
1616 ret = -EINVAL;
1617 goto out;
1618 }
1619
1620 /* validate the initiator is set correctly */
1621 local_initiator =
1622 !memcmp(elems.lnk_id->init_sta, sdata->vif.addr, ETH_ALEN);
1623 if (local_initiator == sta->sta.tdls_initiator) {
1624 tdls_dbg(sdata, "TDLS chan switch invalid lnk-id initiator\n");
1625 ret = -EINVAL;
1626 goto out;
1627 }
1628
1629 params.switch_time = le16_to_cpu(elems.ch_sw_timing->switch_time);
1630 params.switch_timeout = le16_to_cpu(elems.ch_sw_timing->switch_timeout);
1631
1632 params.tmpl_skb =
1633 ieee80211_tdls_ch_sw_resp_tmpl_get(sta, &params.ch_sw_tm_ie);
1634 if (!params.tmpl_skb) {
1635 ret = -ENOENT;
1636 goto out;
1637 }
1638
1639call_drv:
1640 drv_tdls_recv_channel_switch(sdata->local, sdata, &params);
1641
1642 tdls_dbg(sdata,
1643 "TDLS channel switch response received from %pM status %d\n",
1644 tf->sa, params.status);
1645
1646out:
1647 mutex_unlock(&local->sta_mtx);
1648 dev_kfree_skb_any(params.tmpl_skb);
1649 return ret;
1650}
1651
1652static int
1653ieee80211_process_tdls_channel_switch_req(struct ieee80211_sub_if_data *sdata,
1654 struct sk_buff *skb)
1655{
1656 struct ieee80211_local *local = sdata->local;
1657 struct ieee802_11_elems elems;
1658 struct cfg80211_chan_def chandef;
1659 struct ieee80211_channel *chan;
1660 enum nl80211_channel_type chan_type;
1661 int freq;
1662 u8 target_channel, oper_class;
1663 bool local_initiator;
1664 struct sta_info *sta;
1665 enum ieee80211_band band;
1666 struct ieee80211_tdls_data *tf = (void *)skb->data;
1667 struct ieee80211_rx_status *rx_status = IEEE80211_SKB_RXCB(skb);
1668 int baselen = offsetof(typeof(*tf), u.chan_switch_req.variable);
1669 struct ieee80211_tdls_ch_sw_params params = {};
1670 int ret = 0;
1671
1672 params.action_code = WLAN_TDLS_CHANNEL_SWITCH_REQUEST;
1673 params.timestamp = rx_status->device_timestamp;
1674
1675 if (skb->len < baselen) {
1676 tdls_dbg(sdata, "TDLS channel switch req too short: %d\n",
1677 skb->len);
1678 return -EINVAL;
1679 }
1680
1681 target_channel = tf->u.chan_switch_req.target_channel;
1682 oper_class = tf->u.chan_switch_req.oper_class;
1683
1684 /*
1685 * We can't easily infer the channel band. The operating class is
1686 * ambiguous - there are multiple tables (US/Europe/JP/Global). The
1687 * solution here is to treat channels with number >14 as 5GHz ones,
1688 * and specifically check for the (oper_class, channel) combinations
1689 * where this doesn't hold. These are thankfully unique according to
1690 * IEEE802.11-2012.
1691 * We consider only the 2GHz and 5GHz bands and 20MHz+ channels as
1692 * valid here.
1693 */
1694 if ((oper_class == 112 || oper_class == 2 || oper_class == 3 ||
1695 oper_class == 4 || oper_class == 5 || oper_class == 6) &&
1696 target_channel < 14)
1697 band = IEEE80211_BAND_5GHZ;
1698 else
1699 band = target_channel < 14 ? IEEE80211_BAND_2GHZ :
1700 IEEE80211_BAND_5GHZ;
1701
1702 freq = ieee80211_channel_to_frequency(target_channel, band);
1703 if (freq == 0) {
1704 tdls_dbg(sdata, "Invalid channel in TDLS chan switch: %d\n",
1705 target_channel);
1706 return -EINVAL;
1707 }
1708
1709 chan = ieee80211_get_channel(sdata->local->hw.wiphy, freq);
1710 if (!chan) {
1711 tdls_dbg(sdata,
1712 "Unsupported channel for TDLS chan switch: %d\n",
1713 target_channel);
1714 return -EINVAL;
1715 }
1716
1717 ieee802_11_parse_elems(tf->u.chan_switch_req.variable,
1718 skb->len - baselen, false, &elems);
1719 if (elems.parse_error) {
1720 tdls_dbg(sdata, "Invalid IEs in TDLS channel switch req\n");
1721 return -EINVAL;
1722 }
1723
1724 if (!elems.ch_sw_timing || !elems.lnk_id) {
1725 tdls_dbg(sdata, "TDLS channel switch req - missing IEs\n");
1726 return -EINVAL;
1727 }
1728
1729 mutex_lock(&local->sta_mtx);
1730 sta = sta_info_get(sdata, tf->sa);
1731 if (!sta || !test_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH)) {
1732 tdls_dbg(sdata, "TDLS chan switch from non-peer sta %pM\n",
1733 tf->sa);
1734 ret = -EINVAL;
1735 goto out;
1736 }
1737
1738 params.sta = &sta->sta;
1739
1740 /* validate the initiator is set correctly */
1741 local_initiator =
1742 !memcmp(elems.lnk_id->init_sta, sdata->vif.addr, ETH_ALEN);
1743 if (local_initiator == sta->sta.tdls_initiator) {
1744 tdls_dbg(sdata, "TDLS chan switch invalid lnk-id initiator\n");
1745 ret = -EINVAL;
1746 goto out;
1747 }
1748
1749 if (!sta->sta.ht_cap.ht_supported) {
1750 chan_type = NL80211_CHAN_NO_HT;
1751 } else if (!elems.sec_chan_offs) {
1752 chan_type = NL80211_CHAN_HT20;
1753 } else {
1754 switch (elems.sec_chan_offs->sec_chan_offs) {
1755 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
1756 chan_type = NL80211_CHAN_HT40PLUS;
1757 break;
1758 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
1759 chan_type = NL80211_CHAN_HT40MINUS;
1760 break;
1761 default:
1762 chan_type = NL80211_CHAN_HT20;
1763 break;
1764 }
1765 }
1766
1767 cfg80211_chandef_create(&chandef, chan, chan_type);
1768 params.chandef = &chandef;
1769
1770 params.switch_time = le16_to_cpu(elems.ch_sw_timing->switch_time);
1771 params.switch_timeout = le16_to_cpu(elems.ch_sw_timing->switch_timeout);
1772
1773 params.tmpl_skb =
1774 ieee80211_tdls_ch_sw_resp_tmpl_get(sta,
1775 &params.ch_sw_tm_ie);
1776 if (!params.tmpl_skb) {
1777 ret = -ENOENT;
1778 goto out;
1779 }
1780
1781 drv_tdls_recv_channel_switch(sdata->local, sdata, &params);
1782
1783 tdls_dbg(sdata,
1784 "TDLS ch switch request received from %pM ch %d width %d\n",
1785 tf->sa, params.chandef->chan->center_freq,
1786 params.chandef->width);
1787out:
1788 mutex_unlock(&local->sta_mtx);
1789 dev_kfree_skb_any(params.tmpl_skb);
1790 return ret;
1791}
1792
1793void ieee80211_process_tdls_channel_switch(struct ieee80211_sub_if_data *sdata,
1794 struct sk_buff *skb)
1795{
1796 struct ieee80211_tdls_data *tf = (void *)skb->data;
1797 struct wiphy *wiphy = sdata->local->hw.wiphy;
1798
1799 /* make sure the driver supports it */
1800 if (!(wiphy->features & NL80211_FEATURE_TDLS_CHANNEL_SWITCH))
1801 return;
1802
1803 /* we want to access the entire packet */
1804 if (skb_linearize(skb))
1805 return;
1806 /*
1807 * The packet/size was already validated by mac80211 Rx path, only look
1808 * at the action type.
1809 */
1810 switch (tf->action_code) {
1811 case WLAN_TDLS_CHANNEL_SWITCH_REQUEST:
1812 ieee80211_process_tdls_channel_switch_req(sdata, skb);
1813 break;
1814 case WLAN_TDLS_CHANNEL_SWITCH_RESPONSE:
1815 ieee80211_process_tdls_channel_switch_resp(sdata, skb);
1816 break;
1817 default:
1818 WARN_ON_ONCE(1);
1819 return;
1820 }
1821}