Blame view

net/mac80211/spectmgmt.c 7.49 KB
39192c0bc   Johannes Berg   mac80211: move sp...
1
2
3
4
5
6
7
8
9
10
  /*
   * spectrum management
   *
   * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
   * Copyright 2002-2005, Instant802 Networks, Inc.
   * Copyright 2005-2006, Devicescape Software, Inc.
   * Copyright 2006-2007  Jiri Benc <jbenc@suse.cz>
   * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
   * Copyright 2007-2008, Intel Corporation
   * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
707c81727   Ilan Peer   mac80211: Do not ...
11
   * Copyright (C) 2018        Intel Corporation
39192c0bc   Johannes Berg   mac80211: move sp...
12
13
14
15
16
17
18
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   */
  
  #include <linux/ieee80211.h>
d32365537   Johannes Berg   cfg80211: clean u...
19
  #include <net/cfg80211.h>
39192c0bc   Johannes Berg   mac80211: move sp...
20
21
22
23
  #include <net/mac80211.h>
  #include "ieee80211_i.h"
  #include "sta_info.h"
  #include "wme.h"
e6b7cde4d   Simon Wunderlich   mac80211: split o...
24
  int ieee80211_parse_ch_switch_ie(struct ieee80211_sub_if_data *sdata,
84469a45a   Luciano Coelho   mac80211: use sec...
25
  				 struct ieee802_11_elems *elems,
57fbcce37   Johannes Berg   cfg80211: remove ...
26
  				 enum nl80211_band current_band,
c0f17eb9b   Chun-Yeow Yeoh   mac80211: refacto...
27
28
  				 u32 sta_flags, u8 *bssid,
  				 struct ieee80211_csa_ie *csa_ie)
e6b7cde4d   Simon Wunderlich   mac80211: split o...
29
  {
707c81727   Ilan Peer   mac80211: Do not ...
30
  	enum nl80211_band new_band = current_band;
e6b7cde4d   Simon Wunderlich   mac80211: split o...
31
32
33
34
35
36
  	int new_freq;
  	u8 new_chan_no;
  	struct ieee80211_channel *new_chan;
  	struct cfg80211_chan_def new_vht_chandef = {};
  	const struct ieee80211_sec_chan_offs_ie *sec_chan_offs;
  	const struct ieee80211_wide_bw_chansw_ie *wide_bw_chansw_ie;
e6b7cde4d   Simon Wunderlich   mac80211: split o...
37
  	int secondary_channel_offset = -1;
61b81b401   Johannes Berg   mac80211: move cl...
38
  	memset(csa_ie, 0, sizeof(*csa_ie));
e6b7cde4d   Simon Wunderlich   mac80211: split o...
39
40
  	sec_chan_offs = elems->sec_chan_offs;
  	wide_bw_chansw_ie = elems->wide_bw_chansw_ie;
e6b7cde4d   Simon Wunderlich   mac80211: split o...
41
42
43
44
45
  
  	if (sta_flags & (IEEE80211_STA_DISABLE_HT |
  			 IEEE80211_STA_DISABLE_40MHZ)) {
  		sec_chan_offs = NULL;
  		wide_bw_chansw_ie = NULL;
e6b7cde4d   Simon Wunderlich   mac80211: split o...
46
47
48
49
50
51
52
53
54
55
  	}
  
  	if (sta_flags & IEEE80211_STA_DISABLE_VHT)
  		wide_bw_chansw_ie = NULL;
  
  	if (elems->ext_chansw_ie) {
  		if (!ieee80211_operating_class_to_band(
  				elems->ext_chansw_ie->new_operating_class,
  				&new_band)) {
  			sdata_info(sdata,
707c81727   Ilan Peer   mac80211: Do not ...
56
57
  				   "cannot understand ECSA IE operating class, %d, ignoring
  ",
e6b7cde4d   Simon Wunderlich   mac80211: split o...
58
  				   elems->ext_chansw_ie->new_operating_class);
e6b7cde4d   Simon Wunderlich   mac80211: split o...
59
60
  		}
  		new_chan_no = elems->ext_chansw_ie->new_ch_num;
c0f17eb9b   Chun-Yeow Yeoh   mac80211: refacto...
61
62
  		csa_ie->count = elems->ext_chansw_ie->count;
  		csa_ie->mode = elems->ext_chansw_ie->mode;
e6b7cde4d   Simon Wunderlich   mac80211: split o...
63
  	} else if (elems->ch_switch_ie) {
e6b7cde4d   Simon Wunderlich   mac80211: split o...
64
  		new_chan_no = elems->ch_switch_ie->new_ch_num;
c0f17eb9b   Chun-Yeow Yeoh   mac80211: refacto...
65
66
  		csa_ie->count = elems->ch_switch_ie->count;
  		csa_ie->mode = elems->ch_switch_ie->mode;
e6b7cde4d   Simon Wunderlich   mac80211: split o...
67
68
69
70
  	} else {
  		/* nothing here we understand */
  		return 1;
  	}
33a45867c   Chun-Yeow Yeoh   mac80211: process...
71
72
73
74
  	/* Mesh Channel Switch Parameters Element */
  	if (elems->mesh_chansw_params_ie) {
  		csa_ie->ttl = elems->mesh_chansw_params_ie->mesh_ttl;
  		csa_ie->mode = elems->mesh_chansw_params_ie->mesh_flags;
3f718fd84   Chun-Yeow Yeoh   mac80211: fix the...
75
76
  		csa_ie->pre_value = le16_to_cpu(
  				elems->mesh_chansw_params_ie->mesh_pre_value);
5d55371b2   Benjamin Berg   mac80211: mesh: m...
77
78
79
80
81
  
  		if (elems->mesh_chansw_params_ie->mesh_flags &
  				WLAN_EID_CHAN_SWITCH_PARAM_REASON)
  			csa_ie->reason_code = le16_to_cpu(
  				elems->mesh_chansw_params_ie->mesh_reason);
33a45867c   Chun-Yeow Yeoh   mac80211: process...
82
  	}
e6b7cde4d   Simon Wunderlich   mac80211: split o...
83
84
85
86
87
88
89
90
91
  	new_freq = ieee80211_channel_to_frequency(new_chan_no, new_band);
  	new_chan = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
  	if (!new_chan || new_chan->flags & IEEE80211_CHAN_DISABLED) {
  		sdata_info(sdata,
  			   "BSS %pM switches to unsupported channel (%d MHz), disconnecting
  ",
  			   bssid, new_freq);
  		return -EINVAL;
  	}
84469a45a   Luciano Coelho   mac80211: use sec...
92
  	if (sec_chan_offs) {
e6b7cde4d   Simon Wunderlich   mac80211: split o...
93
  		secondary_channel_offset = sec_chan_offs->sec_chan_offs;
e6b7cde4d   Simon Wunderlich   mac80211: split o...
94
  	} else if (!(sta_flags & IEEE80211_STA_DISABLE_HT)) {
84469a45a   Luciano Coelho   mac80211: use sec...
95
96
97
98
  		/* If the secondary channel offset IE is not present,
  		 * we can't know what's the post-CSA offset, so the
  		 * best we can do is use 20MHz.
  		*/
e6b7cde4d   Simon Wunderlich   mac80211: split o...
99
100
101
102
103
104
105
  		secondary_channel_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE;
  	}
  
  	switch (secondary_channel_offset) {
  	default:
  		/* secondary_channel_offset was present but is invalid */
  	case IEEE80211_HT_PARAM_CHA_SEC_NONE:
c0f17eb9b   Chun-Yeow Yeoh   mac80211: refacto...
106
  		cfg80211_chandef_create(&csa_ie->chandef, new_chan,
e6b7cde4d   Simon Wunderlich   mac80211: split o...
107
108
109
  					NL80211_CHAN_HT20);
  		break;
  	case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
c0f17eb9b   Chun-Yeow Yeoh   mac80211: refacto...
110
  		cfg80211_chandef_create(&csa_ie->chandef, new_chan,
e6b7cde4d   Simon Wunderlich   mac80211: split o...
111
112
113
  					NL80211_CHAN_HT40PLUS);
  		break;
  	case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
c0f17eb9b   Chun-Yeow Yeoh   mac80211: refacto...
114
  		cfg80211_chandef_create(&csa_ie->chandef, new_chan,
e6b7cde4d   Simon Wunderlich   mac80211: split o...
115
116
117
  					NL80211_CHAN_HT40MINUS);
  		break;
  	case -1:
c0f17eb9b   Chun-Yeow Yeoh   mac80211: refacto...
118
  		cfg80211_chandef_create(&csa_ie->chandef, new_chan,
e6b7cde4d   Simon Wunderlich   mac80211: split o...
119
120
121
122
123
  					NL80211_CHAN_NO_HT);
  		/* keep width for 5/10 MHz channels */
  		switch (sdata->vif.bss_conf.chandef.width) {
  		case NL80211_CHAN_WIDTH_5:
  		case NL80211_CHAN_WIDTH_10:
c0f17eb9b   Chun-Yeow Yeoh   mac80211: refacto...
124
125
  			csa_ie->chandef.width =
  				sdata->vif.bss_conf.chandef.width;
e6b7cde4d   Simon Wunderlich   mac80211: split o...
126
127
128
129
130
131
132
133
  			break;
  		default:
  			break;
  		}
  		break;
  	}
  
  	if (wide_bw_chansw_ie) {
92b3a28a2   Johannes Berg   mac80211: parse w...
134
135
136
  		struct ieee80211_vht_operation vht_oper = {
  			.chan_width =
  				wide_bw_chansw_ie->new_channel_width,
2fb51c358   Johannes Berg   ieee80211: rename...
137
  			.center_freq_seg0_idx =
e6b7cde4d   Simon Wunderlich   mac80211: split o...
138
  				wide_bw_chansw_ie->new_center_freq_seg0,
2fb51c358   Johannes Berg   ieee80211: rename...
139
  			.center_freq_seg1_idx =
92b3a28a2   Johannes Berg   mac80211: parse w...
140
141
142
  				wide_bw_chansw_ie->new_center_freq_seg1,
  			/* .basic_mcs_set doesn't matter */
  		};
e6b7cde4d   Simon Wunderlich   mac80211: split o...
143

92b3a28a2   Johannes Berg   mac80211: parse w...
144
145
146
147
148
149
150
  		/* default, for the case of IEEE80211_VHT_CHANWIDTH_USE_HT,
  		 * to the previously parsed chandef
  		 */
  		new_vht_chandef = csa_ie->chandef;
  
  		/* ignore if parsing fails */
  		if (!ieee80211_chandef_vht_oper(&vht_oper, &new_vht_chandef))
e6b7cde4d   Simon Wunderlich   mac80211: split o...
151
  			new_vht_chandef.chan = NULL;
92b3a28a2   Johannes Berg   mac80211: parse w...
152

e6b7cde4d   Simon Wunderlich   mac80211: split o...
153
154
155
156
157
158
  		if (sta_flags & IEEE80211_STA_DISABLE_80P80MHZ &&
  		    new_vht_chandef.width == NL80211_CHAN_WIDTH_80P80)
  			ieee80211_chandef_downgrade(&new_vht_chandef);
  		if (sta_flags & IEEE80211_STA_DISABLE_160MHZ &&
  		    new_vht_chandef.width == NL80211_CHAN_WIDTH_160)
  			ieee80211_chandef_downgrade(&new_vht_chandef);
e6b7cde4d   Simon Wunderlich   mac80211: split o...
159
160
161
162
163
  	}
  
  	/* if VHT data is there validate & use it */
  	if (new_vht_chandef.chan) {
  		if (!cfg80211_chandef_compatible(&new_vht_chandef,
c0f17eb9b   Chun-Yeow Yeoh   mac80211: refacto...
164
  						 &csa_ie->chandef)) {
e6b7cde4d   Simon Wunderlich   mac80211: split o...
165
166
167
168
169
170
  			sdata_info(sdata,
  				   "BSS %pM: CSA has inconsistent channel data, disconnecting
  ",
  				   bssid);
  			return -EINVAL;
  		}
c0f17eb9b   Chun-Yeow Yeoh   mac80211: refacto...
171
  		csa_ie->chandef = new_vht_chandef;
e6b7cde4d   Simon Wunderlich   mac80211: split o...
172
173
174
175
  	}
  
  	return 0;
  }
39192c0bc   Johannes Berg   mac80211: move sp...
176
177
178
179
180
181
182
183
184
185
186
  static void ieee80211_send_refuse_measurement_request(struct ieee80211_sub_if_data *sdata,
  					struct ieee80211_msrment_ie *request_ie,
  					const u8 *da, const u8 *bssid,
  					u8 dialog_token)
  {
  	struct ieee80211_local *local = sdata->local;
  	struct sk_buff *skb;
  	struct ieee80211_mgmt *msr_report;
  
  	skb = dev_alloc_skb(sizeof(*msr_report) + local->hw.extra_tx_headroom +
  				sizeof(struct ieee80211_msrment_ie));
d15b84590   Joe Perches   mac80211: Remove ...
187
  	if (!skb)
39192c0bc   Johannes Berg   mac80211: move sp...
188
  		return;
39192c0bc   Johannes Berg   mac80211: move sp...
189
190
  
  	skb_reserve(skb, local->hw.extra_tx_headroom);
b080db585   Johannes Berg   networking: conve...
191
  	msr_report = skb_put_zero(skb, 24);
39192c0bc   Johannes Berg   mac80211: move sp...
192
  	memcpy(msr_report->da, da, ETH_ALEN);
47846c9b0   Johannes Berg   mac80211: reduce ...
193
  	memcpy(msr_report->sa, sdata->vif.addr, ETH_ALEN);
39192c0bc   Johannes Berg   mac80211: move sp...
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
  	memcpy(msr_report->bssid, bssid, ETH_ALEN);
  	msr_report->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  						IEEE80211_STYPE_ACTION);
  
  	skb_put(skb, 1 + sizeof(msr_report->u.action.u.measurement));
  	msr_report->u.action.category = WLAN_CATEGORY_SPECTRUM_MGMT;
  	msr_report->u.action.u.measurement.action_code =
  				WLAN_ACTION_SPCT_MSR_RPRT;
  	msr_report->u.action.u.measurement.dialog_token = dialog_token;
  
  	msr_report->u.action.u.measurement.element_id = WLAN_EID_MEASURE_REPORT;
  	msr_report->u.action.u.measurement.length =
  			sizeof(struct ieee80211_msrment_ie);
  
  	memset(&msr_report->u.action.u.measurement.msr_elem, 0,
  		sizeof(struct ieee80211_msrment_ie));
  	msr_report->u.action.u.measurement.msr_elem.token = request_ie->token;
  	msr_report->u.action.u.measurement.msr_elem.mode |=
  			IEEE80211_SPCT_MSR_RPRT_MODE_REFUSED;
  	msr_report->u.action.u.measurement.msr_elem.type = request_ie->type;
62ae67be3   Johannes Berg   mac80211: remove ...
214
  	ieee80211_tx_skb(sdata, skb);
39192c0bc   Johannes Berg   mac80211: move sp...
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
  }
  
  void ieee80211_process_measurement_req(struct ieee80211_sub_if_data *sdata,
  				       struct ieee80211_mgmt *mgmt,
  				       size_t len)
  {
  	/*
  	 * Ignoring measurement request is spec violation.
  	 * Mandatory measurements must be reported optional
  	 * measurements might be refused or reported incapable
  	 * For now just refuse
  	 * TODO: Answer basic measurement as unmeasured
  	 */
  	ieee80211_send_refuse_measurement_request(sdata,
  			&mgmt->u.action.u.measurement.msr_elem,
  			mgmt->sa, mgmt->bssid,
  			mgmt->u.action.u.measurement.dialog_token);
  }